/*------------------
# STYLE JUMPGRAM #
-------------------*/
body{
    font-family: "Lato", sans-serif;
}
a:hover, a:active, a:focus{
    color: #00afdf;
}
@font-face {
    font-family: 'BrightsDiamond';
    src: url('../lib/font-brights/Brights Diamond Demo.eot');
    src: url('../lib/font-brights/Brights Diamond Demo.eot?#iefix') format('embedded-opentype'),
        url('../lib/font-brights/Brights Diamond Demo.woff2') format('woff2'),
        url('../lib/font-brights/BrightsDiamond.woff') format('woff'),
        url('../lib/font-brights/BrightsDiamond.ttf') format('truetype'),
        url('../lib/font-brights/BrightsDiamond.svg#BrightsDiamond') format('svg');
    font-weight: normal;
    font-style: normal;
}
.section-header h3 {
    font-family: 'BrightsDiamond', cursive;
    text-transform: inherit;
    font-size: 90px;
    font-weight: normal;
    color: #24bdd9;
    letter-spacing: 1px;
}
.btn-jump{
    background: rgb(0,202,211);
    background: linear-gradient(180deg, rgba(0,202,211,1) 0%, rgba(0,175,223,1) 100%);
    padding: 14px 30px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s all;
}
.btn-jump:hover, .btn-jump:active, .btn-jump:focus{
    color: #fff;
    padding: 16px 42px;
}
/*---------------
# header
----------------*/
#header{
    height: auto;
    padding: 20px 0;
}
#header.header-scrolled{
    background: rgba(255, 255, 255, 0.9);
    height: auto;
    padding: 12px 0;
}
#header #logo img {
    max-height: 100px;
    transition: 1s linear all;
}
#header.header-scrolled #logo img{
    max-height: 50px;
}
#mobile-nav-toggle i{
    color: #00afdf;
}
.nav-menu a{
    color: #5d5d5d;
    position: relative;
}
.nav-menu li:hover > a{
    color: #111;
}
.nav-menu > .menu-active > a{
    color: #5d5d5d;
}
.activeBar {
    width: 10px;
    height: 10px;
    visibility: hidden;
    display: inline-block;
    background: #77e5ea;
    position: absolute;
    bottom: 9px;
    left: 0;
    border-radius: 5px;
    z-index: -1;
    transition: 0.5s all;
}
.nav-menu ul li:hover > a{
    color: #3dd0d8;
}
.nav-menu > .menu-active > a > .activeBar{
    width: 100%;
    visibility: visible;
}
#langMenu i{
    font-size: 20px;
}
#langMenu > a{
    padding-right: 22px;
}
#langMenu > a span{
    position: absolute;
    top: 5px;
    right: 0;
}
.nav-menu ul{
    left: inherit;
    right: 0;
}
.nav-menu ul li{
    min-width: auto;
}
/*---------------
# animation
----------------*/
#intro{
    background: #fff url('../img/bg_intro.jpg') center center/cover no-repeat;
    position: relative;
    cursor: default;
}
#intro::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
}
.intro-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-wrap: wrap;
    padding: 60px 40px 20px;
}
#introGroupLogo {
    width: 100%;
    text-align: center;
}
#introGroupLogo > svg {
    max-width: 90vh;
    height: auto;
    width: 100%;
    z-index: 1;
    -webkit-animation: loop 6s linear infinite;
    -moz-animation: loop 6s linear infinite;
    -ms-animation: loop 6s linear infinite;
    -o-animation: loop 6s linear infinite;
    animation: loop 6s linear infinite;
}
#start_1 {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: animation 1s linear forwards 1.2s;
}
#start_2 {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: animation 1s linear forwards 2s;
}
@-moz-keyframes animation {
    to{
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes animation {
    to{
        stroke-dashoffset: 0;
    }
}
@-ms-keyframes animation {
    to{
        stroke-dashoffset: 0;
    }
}
@-o-keyframes animation {
    to{
        stroke-dashoffset: 0;
    }
}
@keyframes animation {
    to{
        stroke-dashoffset: 0;
    }

}
@-moz-keyframes loop {
    0% {transform: translate(-5px, 0);}
    25%{transform: translate(-5px, -5px);}
    50%{transform: translate(0, -5px);}
    75%{transform: translate(0, 0);}
    100% {transform: translate(-5px, 0);}
}
@-webkit-keyframes loop {
    0% {transform: translate(-5px, 0);}
    25%{transform: translate(-5px, -5px);}
    50%{transform: translate(0, -5px);}
    75%{transform: translate(0, 0);}
    100% {transform: translate(-5px, 0);}
}
@-ms-keyframes loop {
    0% {transform: translate(-5px, 0);}
    25%{transform: translate(-5px, -5px);}
    50%{transform: translate(0, -5px);}
    75%{transform: translate(0, 0);}
    100% {transform: translate(-5px, 0);}
}
@-o-keyframes loop {
    0% {transform: translate(-5px, 0);}
    25%{transform: translate(-5px, -5px);}
    50%{transform: translate(0, -5px);}
    75%{transform: translate(0, 0);}
    100% {transform: translate(-5px, 0);}
}
@keyframes loop {
    0% {transform: translate(-5px, 0);}
    25%{transform: translate(-5px, -5px);}
    50%{transform: translate(0, -5px);}
    75%{transform: translate(0, 0);}
    100% {transform: translate(-5px, 0);}
}
/*---------------
# intro
----------------*/
#buttonIntroGroup {
    z-index: 2;
    width: 100%;
    text-align: center;
    display: inline-block;
}
.boxBtn:first-child {
    display: inline-block;
    width: 100%;
    height: 60px;
}
.arrowIntro .icon > i:before{
    font-size: 60px;
    margin-top: 40px;
    background: rgb(0,202,211);
    background: linear-gradient(to bottom, rgba(0,202,211,1) 0%, rgb(0, 148, 223) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: upDown 2s infinite;
    -moz-animation: upDown 2s infinite;
    -ms-animation: upDown 2s infinite;
    -o-animation: upDown 2s infinite;
    animation: upDown 2s infinite;
}
@keyframes upDown {
    0%{transform: translate(0, 0);}
    50%{transform: translate(0, -10px);}
    100%{transform: translate(0, 0);}

}
/*---------------
# about
----------------*/

#animBackground{
    position: absolute;
    top: 0;
}
#cross_1 > path{
    -webkit-animation: colorChangeCross 10s infinite;
    -moz-animation: colorChangeCross 10s infinite;
    -ms-animation: colorChangeCross 10s infinite;
    -o-animation: colorChangeCross 10s infinite;
    animation: colorChangeCross 10s infinite;
}
#cross_2 > path{
    -webkit-animation: colorChangeCross 4s infinite 2s;
    -moz-animation: colorChangeCross 4s infinite 2s;
    -ms-animation: colorChangeCross 4s infinite 2s;
    -o-animation: colorChangeCross 4s infinite 2s;
    animation: colorChangeCross 4s infinite 2s;
}
#cross_3 > path{
    -webkit-animation: colorChangeCross 8s infinite 5s;
    -moz-animation: colorChangeCross 8s infinite 5s;
    -ms-animation: colorChangeCross 8s infinite 5s;
    -o-animation: colorChangeCross 8s infinite 5s;
    animation: colorChangeCross 8s infinite 5s;
}
#cross_4 > path{
    -webkit-animation: colorChangeCross 4s infinite 7s;
    -moz-animation: colorChangeCross 4s infinite 7s;
    -ms-animation: colorChangeCross 4s infinite 7s;
    -o-animation: colorChangeCross 4s infinite 7s;
    animation: colorChangeCross 4s infinite 7s;
}

@keyframes colorChangeCross {
    0%{
        fill: #e2e2e2;
    }
    50%{
        fill: #3dd0d8;
    }
    100%{
        fill: #e2e2e2;
    }
}

.boxAbout{
    margin-bottom: 20px;
}
/** ver 2.1 **/
#about .about-col p{
    font-size: 1em;
    text-align: center;
    padding-top: 15px;
}
/*---------------
# maps
----------------*/
.contentMaps {
    display: inline-block;
    border-radius: 50%;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

#map {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

/*---------------
# footer
----------------*/
.social-links {
    margin: 20px 0 30px;
}
#footer p{
    margin: 20px 0 0;
}

/* Case History Section
--------------------------------*/
#casehistory {
    padding: 60px 0;
}

#casehistory .briefbox {
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px 2px #ccc;
    position: relative;
}
#casehistory .briefbox.briefMain{
    border: 1px solid #00b2d8;
    background: #f0f7f9;
}
.briefbox h2.title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #666;
}
.briefMain p{
    margin-bottom: 10px;
}
.briefMain h2.title{
    color: #265c71;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.imageBox{
    margin-bottom: 20px;
}

/*---------------
# how it work - section
----------------*/
#howitwork {
    background: #f9f9f9 center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}
#howitwork .boxAbout{
    margin-bottom: 40px;
}
#howitwork  .about-col {
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px 2px #ccc;
    position: relative;
    height: 100%;
}
span.stepsHow {
    font-size: 1.8em;
    color: #fff;
    position: absolute;
    z-index: 0;
    top: -23px;
    left: -9px;
}

span.stepsHow:before {
    content: '';
    display: inline-block;
    height: 40px;
    width: 40px;
    background: rgb(0,202,211);
    background: linear-gradient(120deg, rgba(0,202,211,1) 0%, rgba(0,175,223,1) 100%);
    border-radius: 8px;
    position: absolute;
    left: -11px;
    top: 2px;
    z-index: -1;
    transform: rotate(45deg);
}
.about-col h2.title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #666;
}
/*---------------
# pricing -> section
----------------*/
#pricing{
    background: #fff center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}
.priceCard {
    border: 1px solid #c9ecf3;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    background: #fff;
}
.priceCard .icon {
    font-size: 5em;
}
.priceCard .icon > i:before {
    background: linear-gradient(to bottom, rgba(0,202,211,1) 0%, rgb(0, 148, 223) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.priceCard .title {
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    color: #265c71;
}
.price {
    font-size: 1.6em;
}
.price > span{
    font-size: 2em;
    font-weight: bold;
}
.stripe {
    background: #01a6db;
    margin: 20px -10px;
    padding: 5px 10px;
    color: #f1f1f1;
}
.priceCard ul {
    padding: 0;
    list-style: none;
    text-align: left;
    padding-left: 20px;
}

.priceCard ul > li {
    margin: 0 0 10px 0;
    position: relative;
}
.priceCard ul > li:before{
    content: "\f3fe";
    font-family: "Ionicons";
    position: absolute;
    left: -18px;
    color: #00b2d8;
}
.btn-price {
    display: inline-block;
    margin-bottom: 15px;
}
#animBgProd{
    position: absolute;
    top:0;
    left: 0;
}
#big_dots #group1 > path{
    -webkit-animation: colorChangeCross 4s infinite 7s;
    -moz-animation: colorChangeCross 4s infinite 7s;
    -ms-animation: colorChangeCross 4s infinite 7s;
    -o-animation: colorChangeCross 4s infinite 7s;
    animation: colorChangeCross 4s infinite 7s;
}
#big_dots #group2 > path{
    -webkit-animation: colorChangeCross 8s infinite 2s;
    -moz-animation: colorChangeCross 8s infinite 2s;
    -ms-animation: colorChangeCross 8s infinite 2s;
    -o-animation: colorChangeCross 8s infinite 2s;
    animation: colorChangeCross 8s infinite 2s;
}
/*---------------
# faqs
----------------*/
#faq{
    background: #f8f9fa center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}
.questionGroup {
    padding-left: 15px;
    border-left: 1px solid #25bdd9;
}
.question {
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}
/*****FORM****/
#submitMail:disabled{
	cursor:not-allowed !important;
}
/*---------------
# media
----------------*/
@media (max-width: 768px){

    /* nav mobile */
    #langMenu > a span{
        position: absolute;
        top: 15px;
        left: 25px;
    }
    #mobile-nav ul .menu-has-children i{
        position: inherit;
        padding: 0;
    }

    #langMenu {
        border-top: 1px solid #2f2f2f;
        margin: 20px 15px 0;
    }
    #langMenu > ul{
        display: block !important;
    }
    a#subNavToggle {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
    }
    #mobile-nav ul li li{
        padding-left: 10px;
    }
    #mobile-nav ul li ul li a{
        padding: 5px 10px 5px 10px;
    }
    #mobile-nav ul li ul li a:before {
        content: '_';
        padding-right: 7px;
        color: #21afdf;
    }

    /** member **/
    #team .member .member-info{
        background: rgba(2, 56, 74, 0.8);
        opacity: 1;
        position: absolute;
        height: 40px;
        bottom: 0;
        top: auto;
    }
    #team .member .member-info-content{
        margin-top: 0;
    }
    #team .member h4{
        font-size: 15px;
        margin-bottom: 0;
    }
    #team .member span{
        font-size: 11px;
    }

    /* form */
    .contentForm{
        margin-bottom: 40px;
    }

    /* sections */
    .section-header h3{
        font-size: 70px;
    }

    /* how it work */
    #howitwork .boxAbout{
        margin-left: 20px;
    }

    /* pricing */
    .priceCard{
        margin-bottom: 20px;
    }
}
