@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:700&subset=latin-ext');

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #7F7F7F;
    background-color: #fff;
}
header{
    background-color: rgba(50,46,64, 0.9);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    overflow: hidden;
}
h1.home-hl{
    color: #FFF;
    font-size: 50px;
    text-transform: uppercase;
    text-align: right;
    position: relative;
    top: 16vw;
    font-weight: bold;
    padding-left: 120px;
    padding-right: 40px;
    z-index: 1;
    font-family: 'PT Sans', sans-serif;
    
}
h1.home-hl:before{
    position: absolute;
    z-index: -1;
    right: -1000%;
    top: -45px;
    left: 47%;
    content:"";
    bottom: -45px;
    display: block;
    background-color: rgba(46,46,46,0.8);

}
h1.home-hl:after{
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    content:"";
    bottom: 0;
    border-right: 3px solid #f29104;
}
h1.home-hl span{
    display: block;
}
h1{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFF;
}
h2{
    color: #2e3841;
    font-size: 30px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 80px;
    display: inline-block;
}
h2:after{
    position: absolute;
    border-left: 3px solid #ffc000;
    border-bottom: 3px solid #ffc000;
    content: "";
    display: block;
    height: 120%;
    left: 0;
    top: 4px;
    width: 160px;
}
h3{
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}
h4{
    color: #F29104;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}
h5{
    color: #2e3841;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}
h6{
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
p{
    line-height: 2;
}
a.link{
    color: #F29104;
}
a.link:hover{
    color: #322e40;
    text-decoration: none;
}
ul li{
    list-style-type: none;
}
ul{
    padding: 0;
    margin: 0;
}
.btn-primary{
    background-color: #f29104;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 18px;
    -webkit-border-radius: 0;
            border-radius: 0;
    border:none;
    text-transform: uppercase;
}
.btn-primary:hover{
    background-color: #322E40;
}
span.orange{
    color: #f29104;
}
.container{
    position: relative;
}
@media (min-width: 1400px){
    .container.w1390{
        min-width: 1400px;
    }
}



/* Navbar */

.header-top a {
    color: #FFF;
    opacity: 0.5;
    font-size: 14px;
}
.nav-link{
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;

}
.nav-item{
    padding-left: 10px;
    padding-right: 10px;
}
.nav-item:last-child{
    padding-right: 0;
}

.active .nav-link, .nav-link:hover{
    color: #f29104;
}
.navbar-nav{
    margin-right: -20px;
}
.navbar{
    padding-bottom: 15px;
}
.divider{
    padding-left: 10px;
    padding-right: 10px;
}
.icon-bar {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 1px;
    background-color: #FFF;
    transition: all 0.3s;
    position: relative;
}
.icon-bar+.icon-bar {
    margin-top: 4px;
}
.navbar-toggler:focus, .navbar-toggler:active {
    outline:none;
    box-shadow:none;
}
.navbar-toggler.active .icon-bar:nth-of-type(1) {
      top: 8px;
      transform: rotate(45deg);
}

.navbar-toggler.active .icon-bar:nth-of-type(2) {
      background-color: transparent;
}

.navbar-toggler.active .icon-bar:nth-of-type(3) {
      top: -8px;
      transform: rotate(-45deg);
}
.navbar-toggler {
    padding: 10px 0;
}

/* Main */

.banner{
    height: 45vw;
    background-image: url(../images/banner.jpg);
    overflow: hidden;
    position: relative;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}
.services-block p{
    color: #8D8D8D;
}
.interaction-btn{
    position: absolute;
    left: 50%;
    text-align: center;
    padding-left: 0;
    bottom: 10%;
    margin-left: -40px;
    cursor: pointer;
}
.interaction-btn .fa-angle-down{
    color: #f29104;
    font-size: 42px;
    top: 2px;
}
.interaction-btn .fa-circle{
    color: #2e2e2ecc;
}
.interaction-btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}


/* Services */


.service .icon{
    margin-bottom: 40px;
    max-width: 75px;
    margin-left: auto;
    margin-right: auto;
}
.service .icon img{
    -webkit-transition: 0.3s all;
       -moz-transition: 0.3s all;
        -ms-transition: 0.3s all;
         -o-transition: 0.3s all;
            transition: 0.3s all;
}
.services{
    background-color: #322e40;
}
.service{
    padding: 70px 45px 50px;
    text-align: center;
}
.service p{
    color: #8D8D8D;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

.services .service a:hover{
    text-decoration: none;
    color: #f29104;
}
.services .service a a:hover{
    text-decoration: underline;
}
.services .service a:hover .icon img{
    transform: scale(1.2);
    -webkit-transition: 0.3s all;
       -moz-transition: 0.3s all;
        -ms-transition: 0.3s all;
         -o-transition: 0.3s all;
            transition: 0.3s all;
}

/* Introduction */

.introduction{
    overflow: hidden;
    background-color: #EBEBEB;
    background-position: left 50% top 0%;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
         -o-background-size: 100%;
            background-size: 100%;
    position: relative;
}

.introduction .intro-text{
    padding-top: 80px;
    padding-bottom: 80px;
}

.introduction .intro-bg{
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../images/intro.jpg");
    -webkit-background-size: contain;
         -o-background-size: contain;
            background-size: contain;
}


/* References */

.references{
    padding-top: 0px;
    padding-bottom: 100px;
}
.references p{
    color: #fff;
}
.references .ref-box{
    position: relative;
    overflow: hidden;
}
.references .ref-box:hover .detail-overlay:hover, .references .ref-box:hover .detail-overlay:focus{
    text-decoration: none!important;
}
.references .detail-overlay{
    background-color: rgba(46,56,65, 0.85);
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    -webkit-transition: 0.5s all;
       -moz-transition: 0.5s all;
        -ms-transition: 0.5s all;
         -o-transition: 0.5s all;
            transition: 0.5s all;
}
.references .detail-overlay p{
    line-height: 1.6;
    font-size: 14px;
}
.references .ref-box:hover .detail-overlay{
    bottom: 0;
}
.references .nav-tabs .nav-item {
    padding: 0;
}
.references .nav-tabs .nav-link{
    color: #b0b0b0;
}
.references .nav-tabs .nav-link.active {
    color: #f29104;
}



/* Contact */



.contact{
    background-image: url("../images/contact.jpg");
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 5vw;
    padding-bottom: 5vw;
}
.msg-form{
    background-color: rgba(255,255,255,0.9);
    padding: 80px 100px;
}
.form-group{
    position: relative;
}
.form-control{
    padding: 18px 20px 18px 75px;
    font-size: 18px;
    color: #B7B7B7;
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    height: auto;
}

.form-group i{
    position: absolute;
    font-size: 20px;
    color: #969BA0;
    left: 30px;
    top: 22px;
}
textarea.form-control{
    padding: 18px 25px;
}

span.has-error{
    display: inline-block;
    color: red;
    margin-top: 2px;
    bottom: 0;
}
.has-error .form-control{
    border: 1px solid red;
}


/* Partners */

.partners{
    padding-top: 80px;
    padding-bottom: 70px;
}
.partners a{
    padding: 15px;
    display: block;
}
.partners a img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
      opacity: 0.5;
}
.partners a:hover img{
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
      opacity: 1;
}

/* Page */


.breadcrumbs{
    padding: 20px 0;
}
.breadcrumbs a{
    color: #7F7F7F;
}

.page-header{
    height: 400px;
    padding-top: 230px;
    background-image: url("../images/services_banner.jpg");
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}
.page-header h1{
    letter-spacing: 2px;
}

.service-intro-bg{
    position: absolute;
    width: 50%;
    left: 53.3333333333%;
    top: 0;
    bottom: 0;
    background-image: url("../images/services_intro.jpg");
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
}
.services-intro{
    overflow: hidden;
    background-color: #EBEBEB;
    background-position: left 50% top 0%;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
         -o-background-size: 100%;
            background-size: 100%;
    position: relative;
    font-size: 16px;
}
.services-intro h2{
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 70px;
}
.services-intro  h2:after {
    position: absolute;
    border-left: 3px solid #ffc000;
    border-bottom: 3px solid #ffc000;
    content: "";
    display: block;
    height: 115%;
    left: 0;
    top: 4px;
    width: 160px;
}
.acronyms{
    background-color: #d7d7d7;
    border-left: 5px solid #ffc000;
    padding: 35px 60px;
    margin-bottom: 20px;
    color: #474747;
    font-size: 16px;
}
.acronyms li{
    line-height: 1.8;
}
.acronyms strong{
    display: inline-block;
    width: 65px;
}

.process{
    padding-top: 80px;
    padding-bottom: 80px;
}
.process a.link{
    font-size: 16px;
}
.process a.link i{
    margin-left: 5px;
}
.process .nr img{
    max-width: 100px;
}

.danger-section{
    background-image: url("../images/danger.jpg");
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    background-position: center top;
    color: #FFF;
    text-transform: uppercase;
    padding-top: 40px;
    padding-bottom: 60px;
}
.danger-section p{
    text-align: center;
    line-height: 1.5;
}
.danger-section p:first-child{
    font-size: 72px;
}
.danger-section p:nth-child(2){
    font-size: 20px;
    font-weight: 600;
}.danger-section p:nth-child(3){
    font-size: 28px;
    font-weight: 700;
}



.comparison{
    padding-bottom: 180px;
}
.emoji{
    font-size: 140px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.behavior-card{
    background-color: #ebebeb;
    border: 2px solid #e1e1e1;
    height: 100%;
-webkit-box-shadow: 20px 20px 101px -20px rgba(0,0,0,0.7);
-moz-box-shadow: 20px 20px 101px -20px rgba(0,0,0,0.7);
box-shadow: 20px 20px 101px -20px rgba(0,0,0,0.7);
}
.behavior-card-img{
    background-color: #FFF;
}
.correct-use .behavior-card-header{
    background-color: #80d284;
    margin-left: -1px;
    margin-right: -1px;
}
.wrong-use .behavior-card-header{
    background-color: #e8501d;
    margin-left: -1px;
    margin-right: -1px;
}
.correct-use .emoji{
    color: #80d284;
}
.wrong-use .emoji{
    color: #e8501d;
}
.behavior-card ul{
    padding: 20px;
    line-height: 2;
}
.behavior-card ul li{
    padding: 12px 0;
    border-bottom: 1px solid #cccccc;
}
.behavior-card ul li strong{
    display: inline-block;
    margin-right: 5px;
}
.behavior-card ul li:last-child{
    padding: 12px 0;
    border-bottom: none;
}
.behavior-card ul li:first-child{
    padding-top: 0;
}
.behavior-card-header{
    padding: 30px;
}
.behavior-card-img{
    padding: 40px 20px;
}


.contact-intro{
    position: relative;
}
.map{
    height: 350px;
    background-image: url("../images/map.jpg");
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    margin-bottom: 100px;
}

.article{
    padding-bottom: 100px;
}
.summary{
    border-left: 3px solid #F29104;
    background-color: #EBEBEB;
    padding: 20px 15px;
    color: #474747;
}
.summary ul li{
    list-style-type:disc;
    margin-left: 18px;
    margin-bottom: 8px;
    line-height: 1.8;
}
.service-link{
    color: #7F7F7F;
    font-weight: bold;
}
.service-link:hover{
    color: #ffc000;
    text-decoration: none;
}
.service-link i{
    color: #ffc000;
    font-size: 22px;
    top: 3px;
    position: relative;
    margin-right: 5px;
}

.common-list li {
    list-style-type: circle;
    margin-left: 18px;
    margin-bottom: 12px;
    line-height: 2;
}
.contact-box li{
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.contact-box li a i, .contact-box li i{
    color: #f29104;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0px;
}
.contact-box li a{
    color: #7F7F7F;
}



/* Footer */

footer{
    background-color: #322E40;
    color: #B7B7B7;
}

footer p{
    line-height: 1.3;
}

footer small{
    font-size: 10px;
}
footer h3{
    margin-bottom: 40px;
}
footer i{
    color: #ffc000;
    margin-right: 5px;
    font-size: 16px;
}
footer .footer-inner{
    padding: 70px 0px;
}
footer .footer-inner li{
    margin-bottom: 15px;
    font-size: 14px;
}
footer .footer-inner a{
    color: #B7B7B7;
}
footer .footer-inner a:hover{
    color: #FFC000;
    text-decoration: none;
}
footer .footer-bottom{
    font-size: 15px;
    background-color: #22202C;
    padding: 30px 0px;
}
footer .footer-bottom a{
    color: #FFC000;
}
footer .footer-bottom a:hover{
    color: #FFC000;
    text-decoration: none;
}
footer .footer-references >div{
    border: 1px solid #322e40;
}


@media (max-width: 1199px){
    h1.home-hl {
        top: 40%;
    }
    h1.home-hl:before {
        left: 30%;
    }
    .banner {
        height: 600px;
    }
}
@media (max-width: 991px){
    header {
        background-color: rgba(50,46,64, 1);
    }
    .navbar{
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-nav{
        margin-right: 0;
        padding-top: 30px;
    }
    .nav-item {
        text-align: center;
    }
    .nav-link {
        font-size: 25px;
        padding: 15px 0;
    }
    .references .nav-tabs .nav-link {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .introduction .intro-bg{
        height: 350px;
        position: relative;
        left: auto;
        bottom: auto;
    }
    .msg-form {
        background-color: rgba(255,255,255,0.9);
        padding: 20px;
    }
    .banner {
        height: 600px;
    }
    h1.home-hl {
        top: 40%;
    }
    h1.home-hl:before {
        left: 17%;
    }
    .introduction .intro-bg{
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
    }
    .service-intro-bg{
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        bottom: auto;
        height: 300px;
    }

}
@media (max-width: 767px){
    h1{
        font-size: 28px;
    }
    .page-header {
        height: 300px;
        padding-top: 200px;
    }
    h1.home-hl {
        font-size: 32px;
        padding-left: 60px;
        padding-right: 20px;
    }
    h1.home-hl:before {
        left: 6%;
    }
    h2{
        font-size: 26px;
    }
    .correct-use .behavior-card{
        display: none;
    }
    .references h2{
        margin-bottom: 40px;
    }
    .references-filter{
        margin-bottom: 40px;
    }
    footer h3 {
        margin-bottom: 15px;
    }
    footer .footer-bottom{
        font-size: 12px;
    }
}
@media (max-width: 574px){
    .banner {
        height: calc(100vh);
    }
    .introduction .intro-bg{
        background-position: left -80px top;
        background-repeat: no-repeat;
        -webkit-background-size: auto;
             -o-background-size: auto;
                background-size: auto;
    }
    .acronyms {
        padding: 20px 15px;
        font-size: 14px;
        margin-left: -15px;
        margin-right: -15px;

    }
    .acronyms strong {
        display: inline-block;
        width: 50px;
    }
    .emoji {
        font-size: 70px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .emoji.inactive {
        opacity: 0.6;
    }
    .process .nr img{
        max-width: 60px;
    }

}
@media (max-width: 360px){
    .introduction .intro-bg {
        background-position: left -69px top;
        background-repeat: no-repeat;
        background-size: 260%;
    }
    .navbar-brand{
        max-width: 210px;
    }
}


/* recaptcha hide */

.grecaptcha-badge{
    display: none;
}