@charset "UTF-8";
a.with-arrow:before, span.with-arrow:before {
    content: '';
    background-image: url("../img/icons/arrow-link.svg");
    background-repeat: no-repeat;
    width: 8px;
    height: 7px;
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    margin-right: 4px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

a.with-arrow:hover:before, span.with-arrow:hover:before {
    margin-right: 2px;
    margin-left: 2px;
}

a {
    color: #D30053;
    font-size: 12px;
}

a:hover {
    color: #A90057;
    text-decoration: none;
}

.forgot-password-link {
    font-size: 16px;
    text-align: right;
    display: block;
    margin-bottom: 13px;
    color: #68696a;
}

.forgot-password-link:hover {
    color: #233b3f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
}

.section-header {
    color: #233b3f;
    text-transform: uppercase;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    line-height: 50px;
    padding: 60px 0;
    margin: 0;
}

.section-header:after {
    content: '.............';
    display: block;
    line-height: 0px;
    font-size: 28px;
}

.section-header.small-space {
    font-size: 26px;
    padding: 30px;
}

.section-header.no-dots:after {
    content: '';
    display: none;
}

@media (max-width: 650px) {
    .section-header {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 28px;
        line-height: 35px;
    }
}

.section-subheader {
    font-size: 26px;
    line-height: 28px;
    font-weight: 300;
    text-transform: capitalize;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.container-form {
    max-width: 594px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .container-form {
        padding: 0 10px;
    }
}

.cta-li a, .cta {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    line-height: 22px;
}

.cta-li a.cta-full-width, .cta.cta-full-width {
    text-align: center;
    width: 100%;
}

.cta-border-r {
    border: 1px solid #D30053;
    background: transparent;
    color: #D30053;
}

.cta-border-r:hover, .cta-border-r:active, .cta-border-r:focus {
    /*background: -webkit-linear-gradient(top, #BF0044 0%, #950047 70%);*/
    /*background: linear-gradient(to bottom, #BF0044 0%, #950047 70%);*/
    border-color: #950047;
    color: #ffffff;
}

.cta-border-w {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.cta-border-w:hover, .cta-border-w:active, .cta-border-w:focus {
    background-color: #ffffff;
    color: #233b3f;
}

.cta-primary {
    /*background: -webkit-linear-gradient(top, #D30053 0%, #A90057 70%);*/
    /*background: linear-gradient(to bottom, #D30053 0%, #A90057 70%);*/
    border: none;
    padding: 10px 15px;
    color: #ffffff;
}



.cta-secondary {
    background: #233b3f;
    color: #ffffff;
    border: none;
}

.cta-secondary:hover {
    background: #003d4c;
    color: #ffffff;
}

.btn {
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:focus, .btn:active, .btn:active:focus {
    outline: none;
}

.btn-primary {
    background: #233b3f;
    color: #ffffff;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    border: none;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:hover:active {
    background: #003d4c;
}

.call-btn {
    width: 56px;
    height: 56px;
    display: block;
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: 12px;
    background-color: #D30053;
    background-image: url("../img/icons/phone-white.svg");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 4px 38px rgba(1, 1, 9, 0.45);
}

@media (min-width: 530px) {
    .call-btn {
        display: none;
        visibility: hidden;
    }
}

.cta-progress-wrapper {
    overflow: hidden;
    max-width: 322px;
    margin: 0 auto;
}

.cta-progress-wrapper .cta {
    float: left;
    position: relative;
}

.cta-progress-wrapper .cta:after {
    content: '';
    width: 10px;
    height: 22px;
    background-repeat: no-repeat;
    position: absolute;
    top: 10px;
}

.cta-progress-wrapper .cta-prev {
    width: 42px;
    border-radius: 6px 0 0 6px;
    font-size: 0;
    background: #e7e7e7;
}

.cta-progress-wrapper .cta-prev:after {
    left: 15px;
    background-image: url("../img/icons/arrow-slider-left-white.svg");
}

.cta-progress-wrapper .cta-prev:hover {
    background: #e1e1e1;
}

.cta-progress-wrapper .cta-next {
    border-radius: 0 6px 6px 0;
    width: calc(100% - 42px);
    text-align: center;
}

.cta-progress-wrapper .cta-next:after {
    right: 15px;
    background-image: url("../img/icons/arrow-slider-right-white.svg");
}

.card-container .card {
    background: #f6f6f6;
    text-align: center;
    border-radius: 5px;
}

.card-container .card:focus {
    outline: none;
}

.card-container .card h3 {
    font-weight: 400;
    font-size: 18px;
    color: #233b3f;
    text-transform: uppercase;
}

.card-container .card figure:not(.image) {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px auto;
}

.card-container .card figure:not(.image) img {
    width: 40%;
}

.card-container .card img {
    max-width: 100%;
}

.card-container .card p {
    color: #898989;
    margin: 0 auto;
    font-size: initial;
    font-weight: 400;
    line-height: 18px;
    font-size: 15px;
}

.card-container .card > a, .card-container .card span {
    font-size: 12px;
    font-weight: 400;
    margin-top: 20px;
    text-transform: uppercase;
    display: inline-block;
}

.card-container .card:not(div):hover .with-arrow:before {
    margin-right: 2px;
    margin-left: 2px;
}

.card-container .card-solution, .card-container .card-industry {
    box-shadow: 0 2px 21px rgba(92, 95, 101, 0.23);
    margin: 18px;
}

.language-solutions-cards .card-container, .translation-solutions-cards .card-container, .industry-cards .card-container, .interpretation-cards .card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 35px;
}

.card-container .card-solution {
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
    max-width: 250px;
    height: 370px;
    width: 250px;
}

.card-container .card-solution h3, .card-container .card-solution p {
    max-width: 185px;
}

.card-container .card-solution h3 {
    margin: 45px auto 0;
    height: 54px;
}

.card-container .card-solution.slick-slide {
    opacity: 0.6;
}

.card-container .card-solution.slick-slide.slick-center {
    opacity: 1;
    box-shadow: 0px 19px 29px rgba(92, 95, 101, 0.23);
}

.card-container .card-industry {
    -ms-flex-preferred-size: 255px;
    flex-basis: 255px;
    max-width: 255px;
}

.card-container .card-industry figure:not(.image) {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
}

.card-container .card-industry figure.image {
    max-height: 80px;
    overflow: hidden;
}

.card-container .card-industry figure.image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card-container .card-industry:hover .image img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

.card-container .card-industry h3, .card-container .card-industry p {
    padding: 0 20px;
}

.card-container .card-industry h3 {
    margin: 20px auto;
    line-height: 20px;
    height: 40px;
}

.card-container .card-industry p {
    height: 80px;
}

.card-container .card-industry .cta {
    margin: 30px 0;
    font-size: 14px;
    padding: 10px 15px;
}

.card-container .card-industry .with-arrow {
    margin: 30px 0;
}

.language-solutions-cards .card-container {
    max-width: 860px;
}

.translation-solutions-cards .card-container {
    max-width: 1145px;
}

.language-solutions .card:hover {
    cursor: pointer;
}

.industry-cards .card-container {
    max-width: 875px;
}

.interpretation-cards .card-container {
    max-width: 1165px;
}

.case-item {
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.case-item:before {
    content: '';
    background: -webkit-linear-gradient(top, transparent 0%, black 100%);
    background: linear-gradient(to bottom, transparent 0%, black 100%);
    position: absolute;
    width: 100%;
    height: 100%;
}

.case-item .section-header, .case-item p {
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.case-item figure {
    margin: 0 auto 35px;
    text-align: center;
    position: relative;
}

.case-item p {
    max-width: 550px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 20px;
    height: 100px;
    max-height: 100px;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.case-item img {
    display: inline-block;
    height: 45px;
}

.case-item .cta {
    margin-bottom: 45px;
    position: relative;
}

@media (max-width: 530px) {
    .case-item figure {
        margin-bottom: 20px;
    }

    .case-item p {
        padding: 0 10px;
    }
}

.easy-talq-contact-form.container {
    display: block;
    margin: 0 auto !important;
    overflow: hidden;
}

.easy-talq-contact-form .column-text {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.easy-talq-contact-form .column-image {
    margin-top: 35px;
}

.easy-talq-contact-form form {
    max-width: 325px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.easy-talq-contact-form form input, .easy-talq-contact-form form textarea {
    width: 100%;
}

.easy-talq-contact-form form textarea {
    max-width: 325px;
    padding-top: 7px;
}

.easy-talq-contact-form img {
    max-height: 700px;
    width: auto;
}

.easy-talq-contact-form .btn-container .wpb_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.easy-talq-contact-form .logo-description p {
    font-size: 12px;
    color: #d0d0ce;
    text-align: center;
}

.footer-v3 {
    background: #f6f6f6;
    position: relative;
    z-index: 1;
}

.footer-v3 .list-unstyled a {
    font-size: 14px;
    font-weight: 400;
    color: #898989;
    line-height: 25px;
}

.footer-v3 .list-unstyled a:hover {
    font-weight: 400;
    color: #233E3B;
}

.footer-v3 .col-md-3 {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-v3 .inner-wrapper-about {
    width: 200px;
}

.footer-v3 .inner-wrapper-audio {
    width: 132px;
}

.thumb-headline h2 {
    color: #26272d;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.footer-nav-bottom {
    list-style: none;
    margin-top: 40px;
    padding-left: 0;
}

.footer-nav-bottom li {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    color: #68696a;
}

.footer-nav-bottom li:after {
    content: '|';
    margin: 0 25px;
}

.footer-nav-bottom li:last-child:after {
    content: '';
    margin: 0;
}

.footer-nav-bottom p {
    display: inherit;
}

.footer-nav-bottom a, .footer-nav-bottom p {
    color: #68696a;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-nav-bottom a:hover {
    color: #233E3B;
}

.footer-nav-bottom .choose-country:after {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url("../img/icons/earth-gray.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin: 1px 0 0 10px;
    vertical-align: top;
}

.footer-nav-bottom .choose-country:hover:after {
    background-image: url("../img/icons/earth.svg");
}

.footer-info {
    color: #68696a;
    margin-bottom: 0;
    line-height: 20px;
}

.footer-info + p {
    margin-bottom: 30px;
}

.footer-contact-with-us {
    background: #e7e7e7;
}

.footer-contact-with-us-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    height: 85px;
    line-height: 85px;
}

.footer-contact-with-us-list li {
    display: inline-block;
}

.footer-contact-with-us-list a {
    color: #233b3f;
    font-size: 14px;
}

.footer-contact-with-us-list .footer-phone:before {
    content: '';
    width: 16px;
    height: 24px;
    background-image: url("../img/icons/smartphone-call.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    background-position: center;
}

.footer-contact-with-us-list .footer-email:before {
    content: '';
    width: 24px;
    height: 22px;
    background-image: url("../img/icons/close-envelope.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    background-position: center;
}

.footer-contact-with-us-list .footer-email:hover {
    color: inherit;
    text-decoration: underline;
}

.footer-contact-with-us-list .border-dotted:after {
    content: '';
    width: 3px;
    height: 26px;
    background-image: url("../img/border-dotted.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin: 0 42px;
}

.footer-contact-with-us-list .footer-social {
    font-size: 0;
    color: transparent;
    margin: 0 12px;
}

.footer-contact-with-us-list .footer-facebook {
    width: 9px;
    height: 16px;
    background-image: url("../img/icons/facebook-logo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    background-position: center;
}

.footer-contact-with-us-list .footer-linkedin {
    width: 19px;
    height: 17px;
    background-image: url("../img/icons/linkedin-logo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
}

.footer-contact-with-us-list .footer-instagram {
    width: 17px;
    height: 17px;
    background-image: url("../img/icons/instagram-logo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
}

.footer-subscribe {
    background-color: #ffffff;
    background-image: url("../img/bg-dot.png");
    background-repeat:repeat;
    height: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.footer-subscribe h3, .footer-subscribe p {
    color: #233b3f;
}

.footer-subscribe h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px;
}

.footer-subscribe p {
    margin-bottom: 30px;
}

.footer-subscribe .subscribe-input {
    border-bottom: 2px solid #233b3f;
    width: 264px;
    margin-right: 12px;
}

.footer-subscribe .subscribe-submit {
    height: 42px;
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: top;
}

@media (max-width: 650px) {
    .footer-contact-with-us-list .border-dotted {
        font-size: 0;
        color: transparent;
    }

    .footer-contact-with-us-list .border-dotted:before {
        margin-right: 0;
    }

    .footer-contact-with-us-list .border-dotted:after {
        margin: 0 20px;
    }

    .footer-contact-with-us-list a {
        font-size: 0;
        color: transparent;
    }

    .footer-v3 .col-md-3 {
        display: inline-block;
    }

    .footer-v3 .inner-wrapper-about,
    .footer-v3 .inner-wrapper-audio {
        width: auto;
    }

    .footer-nav-bottom li:first-child {
        display: block;
    }

    .footer-nav-bottom li:first-child:after {
        content: '';
        margin: 0;
    }

    .footer-menu .col-md-3 {
        margin-top: 0;
    }

    .footer-menu .col-md-3:nth-child(1),
    .footer-menu .col-md-3:nth-child(2) {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer-nav-bottom p, .footer-nav-bottom a {
        font-size: 11px;
    }
}

@media (max-width: 530px) {

    .footer-subscribe {
        height: 250px;
    }

    .footer-subscribe .subscribe-input {
        margin-right: 0;
    }

    .footer-subscribe .subscribe-submit {
        display: block;
        margin: 23px auto 0;
    }
}

.header {
    border-bottom: none;
}

.header.header-sticky {
    background: #ffffff;
    height: 90px;
}

.header.header-sticky .show-on-scroll {
    display: none;
}

.header .logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
    width: 185px;
    margin: 0;
}

.header .cta-li a {
    width: 140px;
    height: 42px;
    text-align: center;
}

.header .cta-li a:hover a {
    font-weight: 300;
}

.header .topbar ul.loginbar > li > a {
    font-weight: 400;
    font-size: 12px;
    color: #7c8082;
}

.header .topbar ul.loginbar > li > a:hover {
    font-size: 12px;
    color: #233E3B;
}

.header .topbar-phone {
    color: #7c8082;
    font-weight: 400;
    font-size: 12px;
}

.header .mega-menu .dropdown-menu {
    padding-top: 35px;
    padding-bottom: 35px;
    margin-top: -2px;
    border-bottom: none;
    box-shadow: none;
}

.header .mega-menu .dropdown-menu .inner-container {
    max-width: 900px;
    margin: 0 auto;
}

.header .mega-menu .dropdown-menu li {
    float: left;
    width: 26%;
}

.header .mega-menu .dropdown-menu li:nth-child(4n) {
    width: 20%;
}

.header .mega-menu .dropdown-menu a {
    line-height: 20px;
    display: inline-block;
    border-bottom: none;
    font-weight: 300;
    padding: 0;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 400;
    color: #898989;
}

.header .mega-menu .dropdown-menu a:hover {
    color: #003D4C;
    cursor: pointer;
    font-weight: 400;
    background: none !important;
}

.header .mega-menu .dropdown-menu .first-line {
    margin-bottom: 20px;
}

.header .mega-menu .dropdown-menu .new-line {
    display: block;
}

.header .dropdown-menu a:before {
    content: '';
}

@media (max-width: 992px) {
    .header .dropdown-menu a:before {
        display: none;
    }
}

.header .aside-menu {
    float: right;
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.header .aside-menu li {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .header.header-fixed-shrink .show-on-scroll {
        display: inline-block;
    }

    .header.header-fixed-shrink .hide-on-scroll {
        display: none;
    }

    .header .mobile-languages,
    .header .mobile-login {
        display: none;
    }

    .header .help-number {
        text-align: right;
        margin-top: 10px;
        margin-left: 25px;
        float: right;
    }

    .header .help-number span {
        display: block;
        font-size: 12px;
        font-weight: 300;
        text-transform: uppercase;
    }

    .header .dropdown-menu {
        border-top: 0;
    }

    .header .close-mobile-menu {
        display: none;
    }

    .header .navbar-collapse.mega-menu {
        top: -10px;
    }

    .header .mega-menu .container {
        position: static;
    }

    .header .navbar-nav > li > a {
        padding-right: 20px;
        font-weight: 300;
        text-align: center;
    }

    .header .navbar-nav > li > a:after {
        content: '';
        display: inherit;
        height: 3px;
        width: 0;
        margin: 5px auto 0;
        top: 0;
        background: transparent;
        position: static;
        -webkit-transition: width .5s ease, background-color .5s ease;
        transition: width .5s ease, background-color .5s ease;
    }

    .header .menu-platform a {
        width: 119px;
    }

    .header .menu-language > a {
        width: 208px;
    }

    .header .menu-references a {
        width: 134px;
    }

    .header .menu-about a {
        width: 115px;
    }

    .header .navbar-nav > li:hover > a,
    .header .navbar-nav > .current-menu-item a,
    .header .navbar-nav > li > a.current {
        border-bottom: none;
        font-weight: 400;
        cursor: pointer;
    }

    .header .navbar-nav > li:hover > a:after,
    .header .navbar-nav > .current-menu-item a:after,
    .header .navbar-nav > li > a.current:after {
        background: #233b3f;
        width: 50%;
    }

    .header .navbar-nav > .cta-li:hover a {
        font-weight: 300;
    }

    .header .navbar-nav > li:hover > a {
        color: inherit !important;
    }

    .header .navbar-nav > .cta-li a {
        border: 1px solid #D30053;
        color: #D30053;
        /*line-height: 40px;*/
        /*padding: 0 !important;*/
        margin-top: -1px;
    }

    .header .navbar-nav > .cta-li a:after {
        content: none;
    }

    .header .navbar-nav > .cta-li a:hover {
        /*border: none;*/
        background-color: #b30046;
        /*background: -webkit-linear-gradient(top, #BF0044 0%, #950047 70%);*/
        /*background: linear-gradient(to bottom, #BF0044 0%, #950047 70%);*/
        color: white !important;
    }
}

.header .topbar ul.languages {
    left: -15px;
    background: #ffffff;
    box-shadow: 0px 0px 2px #d9d9d9;
}

.header .topbar ul.languages:after {
    left: 35px;
    border-bottom-color: #ffffff;
}

.header .topbar ul.languages li a {
    color: #8C8F94;
    font-size: 12px;
    font-weight: 400;
}

.header .topbar ul.languages li a:hover {
    background: transparent;
    color: #233b3f;
    cursor: pointer;
}

.header .topbar ul.languages li.active a {
    background: transparent;
}

@media (min-width: 992px) {
    .header-fixed .header.header-fixed-shrink {
        margin-top: 0;
        height: 60px;
        background: #ffffff;
        box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.65);
    }

    .header-fixed .header.header-fixed-shrink .logo img {
        margin: 0;
        height: 60px;
        max-width: none;
    }

    .header-fixed .header.header-fixed-shrink .dropdown-menu {
        top: 60px;
    }

    .header-fixed .header.header-fixed-shrink .navbar-collapse.mega-menu {
        top: -14px;
    }

    .header-fixed .header.header-fixed-shrink .navbar-nav > .cta-li a {
        padding: 10px 15px;
        background-color: #D30053;
        /*background: -webkit-linear-gradient(top, #D30053 0%, #A90057 70%);*/
        /*background: linear-gradient(to bottom, #D30053 0%, #A90057 70%);*/
        border: none;
        color: #ffffff;
        margin-top: 8px;
    }

    .header-fixed .header.header-fixed-shrink .navbar-nav > .cta-li a:hover {
        /*background: -webkit-linear-gradient(top, #BF0044 0%, #950047 70%);*/
        /*background: linear-gradient(to bottom, #BF0044 0%, #950047 70%);*/
        background-color: #b30046;
    }

    .header-fixed .header.header-fixed-shrink .navbar-nav > .cta-li a:after {
        background: transparent;
    }

    .mobile-top {
        display: none;
    }

    .get-quote-mobile {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-fixed .header.header-sticky {
        position: fixed;
    }

    .header .navbar-toggle {
        background: transparent;
        border: none;
        margin-top: 13px;
    }

    .header .navbar-toggle:hover {
        background: none !important;
    }

    .header .navbar-toggle .fa-bars {
        color: #233b3f;
    }

    .header.header-sticky {
        height: 60px;
        box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.65);
    }

    .header.header-sticky .logo {
        vertical-align: top;
    }

    .header.header-sticky .logo img {
        height: 60px;
    }

    .header .topbar {
        display: none;
    }

    .header .header-container {
        position: relative;
    }

    .header .btn-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 0;
    }

    .header .navbar-responsive-collapse {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 12;
    }

    .header .navbar-responsive-collapse .container {
        margin: 0;
        background: #ffffff;
        box-shadow: inset 3px 0px 5px 0px rgba(0, 0, 0, 0.5);
        padding: 20px 30px;
        height: 100vh;
        overflow-y: scroll;
    }

    .header .navbar-nav {
        clear: both;
    }

    .header .navbar-nav > li > a {
        font-size: 23px;
        line-height: 39px;
        font-weight: 300;
        border-bottom: none;
        text-align: right;
        padding: 0;
    }

    .header .navbar-nav > li > a:hover {
        color: inherit;
        border-bottom: none;
    }

    .header .dropdown > a:after {
        content: '';
    }

    .header .mega-menu .dropdown-menu {
        display: block;
        position: relative;
        width: 100%;
        border: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }

    .header .mega-menu .dropdown-menu li {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
    }

    .header .mega-menu .dropdown-menu li:last-child, .header .mega-menu .dropdown-menu li:nth-child(4) {
        width: 100%;
    }

    .header .mega-menu .dropdown-menu a {
        font-size: 16px;
        line-height: 30px;
    }

    .header .mega-menu .dropdown-menu .first-line {
        margin-bottom: 0;
    }

    .header .mega-menu .dropdown-menu .ico {
        display: none;
    }

    .header .navbar-nav .mobile-languages,
    .header .navbar-nav .mobile-login {
        float: right;
        margin-top: 20px;
    }

    .header .navbar-nav .mobile-languages a,
    .header .navbar-nav .mobile-login a {
        font-size: 14px;
    }

    .header .mobile-languages > a:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #898989;
        display: inline-block;
        vertical-align: top;
        margin-top: 7px;
        margin-left: 3px;
    }

    .header .mobile-languages ul {
        display: none;
        list-style: none;
        padding-left: 0;
    }

    .header .mobile-languages ul a {
        border: none;
        text-transform: uppercase;
        line-height: 20px;
    }

    .header .navbar-nav .cta-li a {
        border: none;
        width: 100%;
    }

    .header.header-sticky .help-number {
        display: none;
        clear: both;
        text-align: right;
    }

    .header.header-sticky .help-number:before {
        content: '';
        width: 17px;
        height: 17px;
        background-image: url("../img/icons/phone.svg");
        background-repeat: no-repeat;
        background-size: cover;
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 0 0;
    }

    .header.header-sticky .help-number span {
        display: none;
        visibility: hidden;
    }

    .logo {
        width: 200px;
    }

    .get-quote-mobile {
        display: inline-block;
    }

    .navbar-nav {
        background: #ffffff;
    }

    .navbar-collapse {
        display: none;
    }

    .close-mobile-menu {
        float: right;
        margin-bottom: 35px;
        background-image: url("../img/close.png");
        background-repeat: no-repeat;
        background-size: cover;
        width: 18px;
        height: 18px;
    }

    .mobile-top {
        position: absolute;
        color: #898989;
        font-size: 14px;
    }

    .mobile-top ul {
        list-style-type: none;
        padding-left: 0;
    }

    .mobile-top a {
        color: #898989;
        text-transform: uppercase;
    }
}

@media (max-width: 530px) {
    .header .logo .hide-on-scroll {
        display: none;
    }

    .header .logo .show-on-scroll {
        display: block;
    }

    .header .topbar .loginbar li:last-child {
        display: none;
    }

    .header .topbar .loginbar li.topbar-devider-phone {
        display: none;
    }
}

.homepage-banner {
    overflow: hidden;
    height: 0;
    padding-bottom: calc(100vh - 60px);
    padding-top: 60px;
}

.homepage-banner:before {
    content: '';
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.homepage-banner .img {
    margin-top: 60px;
    width: 100%;
    max-width: none;
    position: static;
    top: 0;
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    /* margin-left: -1px; */
}

.homepage-banner .layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    margin-top: -60px;
}

.homepage-banner h2, .homepage-banner p {
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    position: absolute;
    z-index: 1;
    width: 100%;
    opacity: 0;
}

.homepage-banner h2 {
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    max-width: 750px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.homepage-banner .button-container {
    opacity: 0;
    z-index: 1;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.homepage-banner .cta-primary {
    margin-right: 15px;
}

.homepage-banner .cta-border-w {
    padding-top: 9px;
    padding-bottom: 9px;
}

.homepage-banner .header-2 {
    font-weight: 400;
}

.homepage-banner.zoom-me .img {
    position: fixed;
}

@media (max-width: 650px) {
    .homepage-banner .header-1 {
        font-size: 32px;
    }

    .homepage-banner p {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 530px) {
    .homepage-banner .header-1, .homepage-banner .header-2, .homepage-banner .button-container {
        margin-top: -50px;
    }
}

@media (max-width: 340px) {
    .homepage-banner .header-1, .homepage-banner .header-2 {
        margin-top: -80px;
    }

    .homepage-banner .button-container {
        margin-top: -95px;
    }

    .homepage-banner .cta-primary {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.main-section {
    position: relative;
    background: #ffffff;
}

.homepage .clients, .homepage .language-solutions {
    background: white;
    position: relative;
}

.homepage .clients {
    z-index: 1;
}

.dropdown-menu a:before, a .ico {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    background-color: #e7e7e7;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
}

.dropdown-menu a:hover:before, a:hover .ico {
    background-color: #233b3f;
}

.dropdown-menu .ico-professional a:before {
    background-image: url(../img/icons/professionaltranslation.svg);
}

.dropdown-menu .ico-professional a:hover:before {
    background-image: url(../img/icons/professionaltranslation-white.svg);
}

.dropdown-menu .ico-local a:before {
    background-image: url(../img/icons/localisation.svg);
}

.dropdown-menu .ico-local a:hover:before {
    background-image: url(../img/icons/localisation-white.svg);
}

.dropdown-menu .ico-certified a:before {
    background-image: url(../img/icons/certifiedtranslation.svg);
}

.dropdown-menu .ico-certified a:hover:before {
    background-image: url(../img/icons/certifiedtranslation-white.svg);
}

.dropdown-menu .ico-industrial a:before {
    background-image: url(../img/icons/industryspecific.svg);
}

.dropdown-menu .ico-industrial a:hover:before {
    background-image: url(../img/icons/industryspecific-white.svg);
}

.dropdown-menu .ico-audio a:before {
    background-image: url(../img/icons/audiovideoservices.svg);
}

.dropdown-menu .ico-audio a:hover:before {
    background-image: url(../img/icons/audiovideoservices-white.svg);
}

.dropdown-menu .ico-interpretation a:before {
    background-image: url(../img/icons/interpretation.svg);
}

.dropdown-menu .ico-interpretation a:hover:before {
    background-image: url(../img/icons/interpretation-white.svg);
}

.dropdown-menu .ico-website a:before {
    background-image: url(../img/icons/websitetranslation.svg);
}

.dropdown-menu .ico-website a:hover:before {
    background-image: url(../img/icons/websitetranslation-white.svg);
}

.dropdown-menu .ico-proofreading a:before {
    background-image: url(../img/icons/proofreading.svg);
}

.dropdown-menu .ico-proofreading a:hover:before {
    background-image: url(../img/icons/proofreading-white.svg);
}

.ico-flag {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 7px;
}

.ico-flag-austria {
    background-image: url("../img/flags/austria.png");
}

.ico-flag-belgium {
    background-image: url("../img/flags/belgium.png");
}

.ico-flag-denmark {
    background-image: url("../img/flags/denmark.png");
}

.ico-flag-france {
    background-image: url("../img/flags/france.png");
}

.ico-flag-germany {
    background-image: url("../img/flags/germany.png");
}

.ico-flag-luxembourg {
    background-image: url("../img/flags/luxembourg.png");
}

.ico-flag-netherlands {
    background-image: url("../img/flags/netherlands.png");
}

.ico-flag-norway {
    background-image: url("../img/flags/norway.png");
}

.ico-flag-sweden {
    background-image: url("../img/flags/sweden.png");
}

.ico-flag-switzerland {
    background-image: url("../img/flags/switzerland.png");
}

.ico-flag-uk {
    background-image: url("../img/flags/uk.png");
}


.ico-flag-it {
    background-image: url("../img/flags/italy.png");
}

.ico-flag-es {
    background-image: url("../img/flags/spain.png");
}
.ico-flag-portugal {
    background-image: url("../img/flags/portugal.png");
}

.ico-flag-other {
    display: inline-block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url("../img/icons/earth-gray.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.ico-how {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background-color: #ffffff;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.ico-how-book {
    background-image: url("../img/icons/easytalq-book.svg");
}

.ico-how-meet {
    background-image: url("../img/icons/easytalq-meet.svg");
}

.ico-how-save {
    background-image: url("../img/icons/easytalq-save.svg");
}

.country-list {
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 20px;
    max-width: 90%;
}

.country-list li {
    width: 25%;
    margin-bottom: 25px;
}

.country-list a {
    color: #233b3f;
    font-size: 16px;
    -webkit-transition: font-weight 0.3s;
    transition: font-weight 0.3s;
}

.country-list a:hover {
    font-weight: 400;
    color: inherit;
}

@media (max-width: 1200px) {
    .country-list li {
        width: 33%;
    }
}

@media (max-width: 992px) {
    .country-list li {
        width: 50%;
    }
}

.modal {
    background: rgba(35, 59, 63, 0.92);
}

.modal .modal-content {
    border-radius: 0;
}

.modal .modal-header {
    border-bottom: none;
    text-align: center;
    padding: 35px 0;
}

.modal .modal-title {
    font-size: 32px;
    line-height: 35px;
    color: #26272d;
    text-transform: uppercase;
    font-weight: 300;
}

.modal .modal-title:after {
    content: '';
    width: 67px;
    height: 3px;
    background-image: url("../img/border-dotted-bottom.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin: 15px auto;
    display: block;
}

.modal .close {
    background: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: none;
    font-weight: 300;
    margin-top: -52px;
    margin-right: -18px;
    box-shadow: 2px 2px 20px rgba(92, 95, 101, 0.23);
}

.modal .close span {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    display: inline-block;
}

.modal .close:hover span {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.modal-body {
    margin-top: 0;
}

@media (min-width: 768px) {
    .modal-dialog {
        margin-top: 90px;
        width: 50%;
    }
}

.references {
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.references .reference-item {
    width: 33%;
    margin: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.references .reference-item img {
    max-width: 100%;
}

.references .reference-item.logos {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.references .reference-item.text {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.references .reference-item.text:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    box-shadow: 0 2px 21px rgba(92, 95, 101, 0.23);
}

.references .reference-item.text:hover .reference-text {
    -webkit-transform: scale(1.002);
    transform: scale(1.002);
}

.references .reference-logo {
    background-color: #f6f6f6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 49%;
    height: 49%;
}

.references .reference-logo:nth-child(1) {
    margin-right: 2%;
}

.references .reference-logo:nth-child(1), .references .reference-logo:nth-child(2) {
    margin-bottom: 2%;
}

.references .reference-logo:nth-child(3) {
    margin-right: 2%;
}

.references .reference-logo img {
    max-width: 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    object-fit: scale-down;
}

.references .reference-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45%;
}

.references .reference-image img {
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    object-fit: scale-down;
}

.references .reference-text {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 15px;
    height: 55%;
}

.references p {
    font-size: 16px;
    max-height: 110px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.references .with-arrow {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .references .reference-item:nth-child(3n) {
        margin-right: 0;
    }

    .references .reference-item:nth-child(3n+1) {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .references .reference-item {
        width: 49%;
    }

    .references .reference-item:nth-child(odd) {
        margin-right: 1.4%;
    }

    .references .reference-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 530px) {
    .references {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .references .reference-item {
        width: 302px;
    }

    .references .reference-item:nth-child(even), .references .reference-item:nth-child(odd) {
        margin: 0 0 1% 0;
    }

    .references .reference-logo {
        width: 150px;
        height: 150px;
    }

    .references .reference-logo:nth-child(1), .references .reference-logo:nth-child(2) {
        margin-bottom: 2px;
    }

    .references .reference-logo:nth-child(1), .references .reference-logo:nth-child(3) {
        margin-right: 2px;
    }
}

@media (min-width: 530px) {
    .references .reference-item.logos {
        height: 350px;
    }
}

.text-image-section {
    background-repeat: no-repeat;
}

.text-image-section h3 {
    color: #233b3f;
    margin: 25px 0;
}

.text-image-section ul {
    margin-bottom: 25px;
}

.text-image-section li {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #898989;
}

.text-image-section a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
}

.text-image-section p {
    line-height: 22px;
}

.text-image-section img {
    width: 100%;
    margin-bottom: 65px;
}

.text-image-section .cta {
    margin-top: 20px;
}

.text-image-section .max-width {
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .text-image-section .container > .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .text-image-section a {
        margin-bottom: 45px;
    }
}

.background-section {
    background-position: center;
    background-size: cover;
}

.background-section.parallax {
    padding: 0;
    background-attachment: fixed;
    background-repeat: repeat;
    width: 100%;
    height: auto;
    position: relative;
}

.background-section h2, .background-section p {
    color: #ffffff;
}

.background-section h2 {
    padding-bottom: 25px;
}

.background-section p {
    text-align: center;
    max-width: 450px;
    margin: 0 auto 55px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

.background-section h2 + p {
    margin-top: 16px;
}

.background-section h3 {
    text-align: center;
    color: #ffffff;
    font-size: 23px;
    font-weight: 400;
}

.background-section .cta {
    margin-bottom: 45px;
}

@media (max-width: 768px) {
    .background-section h2 {
        line-height: 50px;
    }

    .background-section.parallax {
        background-attachment: inherit;
    }
}

.center-section {
    text-align: center;
}

.center-section p {
    line-height: 20px;
}

.center-section p, .center-section button {
    margin-bottom: 40px;
}

.center-section .cta {
    display: inline-block;
}

.counter-section .counter, .counter-section .text, .counter-section h4 {
    color: #ffffff;
}

.counter-section .counter, .counter-section .text {
    text-align: center;
    display: block;
    font-size: 35px;
    font-weight: 400;
    line-height: 35px;
}

.counter-section .counter:after, .counter-section .text:after {
    content: '.............';
    display: block;
    line-height: 0px;
    font-size: 18px;
    margin-top: 8px;
    letter-spacing: 1px;
}

.counter-section h4 {
    font-size: 15px;
    font-weight: 400;
    margin: 15px 0 0;
    text-align: center;
}

@media (max-width: 480px) {
    .counter-section .counter, .counter-section .text {
        font-size: 28px;
    }
}

.top-banner {
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.top-banner:before {
    content: '';
    background: -webkit-linear-gradient(top, transparent 0%, rgba(51, 51, 51, 0.9) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(51, 51, 51, 0.9) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-banner .container {
    position: relative;
}

.top-banner h2, .top-banner p, .top-banner li {
    color: #ffffff;
}

.top-banner h2 {
    font-size: 35px;
    font-weight: 300;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
}

.top-banner h2.featured {
    font-weight: 400;
}

.top-banner p, .top-banner li {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    white-space: normal;
}

.top-banner p {
    margin: 25px 0;
}

.top-banner p + ul {
    margin-top: -25px;
}

.top-banner ul {
    margin-bottom: 25px;
    padding-left: 18px;
}

.top-banner .button-container {
    margin-top: 30px;
}

.top-banner .button-container .cta:first-child {
    margin-right: 20px;
}

.top-banner.customers .container {
    text-align: center;
}

.top-banner.customers img {
    max-width: 140px;
}

.top-banner.customers p {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .top-banner {
        height: 65vh;
        margin-top: 60px;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .top-banner {
        height: 85vh;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .top-banner {
        height: calc(100vh - 60px);
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .top-banner {
        height: 100vh;
    }
}

.testimonials {
    margin-bottom: 0;
}

.testimonials img {
    display: inline-block;
    margin-right: 17px;
}

.testimonials p {
    max-width: 225px;
}

.testimonials p:before {
    content: "“";
}

.testimonials p:after {
    content: "”";
}

.testimonials a {
    text-transform: uppercase;
    font-weight: 400;
}

.testimonials .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 155px;
}

.benefits .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
}

.benefits .icon {
    background: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.benefits .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.benefits h4 {
    color: #003d4c;
    font-size: 18px;
    font-weight: 400;
    margin: 15px 0;
    text-align: center;
}

.benefits p {
    color: #898989;
    width: 232px;
    line-height: 18px;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
}

@media (min-width: 480px) and (max-width: 992px) {
    .benefits h4 {
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .benefits .row {
        display: block;
    }
}

@media (max-width: 480px) {
    .benefits .col-xs-6 {
        width: 100%;
    }

    .benefits .col-xs-6:nth-last-child(-n+3) {
        display: none;
    }
}

.revolutionising-interpretation {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.revolutionising-interpretation .col-md-6 {
    padding-bottom: 85px;
    position: relative;
    z-index: 2;
}

.revolutionising-interpretation h3 {
    text-transform: capitalize;
}

.revolutionising-interpretation .parallax-image {
    width: 50%;
    height: 320px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 530px) {
    .revolutionising-interpretation {
        padding-bottom: 100px;
    }

    .revolutionising-interpretation .parallax-image {
        width: 60%;
        left: 50%;
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
    }
}

.how-works {
    background: #f3f3f3;
}

.how-works img {
    max-width: 100%;
    margin-top: -20px;
}

.how-works .cta {
    margin-bottom: 40px;
    margin-top: 35px;
}

.how-works .blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0;
}

.how-works .block {
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
    width: 65%;
}

.how-works .block h3 {
    margin-top: 15px;
    margin-bottom: 0;
    display: block;
    margin-right: 20px;
    font-size: 24px;
    font-weight: 400;
    color: #233b3f;
}

.how-works .block:nth-child(2n) h3 {
    margin-right: 0;
}

.how-works .ico-how {
    margin-right: 20px;
    float: left;
}

@media (max-width: 650px) {
    .how-works .block {
        width: 100%;
        padding-left: 50px;
    }
}

.samples-works-parallax .cta {
    margin-top: 30px;
}

.samples-works-parallax p {
    max-width: 670px;
}

.samples-works-parallax figure {
    margin: 25px auto;
}

.samples-works-parallax figure img {
    max-width: 60px;
}

.customer-case {
    padding-top: 65px;
    padding-bottom: 65px;
}

.customer-case .col-md-4 {
    padding-left: 20px;
    padding-right: 20px;
}

.customer-case h3 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 24px;
}

.customer-case p {
    text-align: justify;
    line-height: 22px;
}

.customer-case figure {
    width: 85px;
    height: 85px;
    background-color: #f3f3f3;
    border-radius: 50%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.customer-case figure img {
    max-width: 40%;
}

@media (max-width: 480px) {
    .customer-case .col-md-4 {
        padding-bottom: 40px;
    }
}

.specialists .specialist {
    box-shadow: 0px 2px 30px 1px rgba(92, 95, 101, 0.2);
    padding: 30px 25px;
    height: 100%;
}

.specialists .specialist-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
}

.specialists h4 {
    font-size: 22px;
    color: #233b3f;
}

.specialists img {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    margin-right: 20px;
}

.specialists .cta {
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .specialists .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 992px) {
    .specialists .col-sm-12 {
        margin-bottom: 50px;
    }

    .specialists .col-sm-12:last-child {
        margin-bottom: 0;
    }
}

.tp-dottedoverlay.twoxtwo {
    background: none;
}

.slick-track .solution-card {
    margin: 0 15px;
}

.slick-slide:focus, .slick-slide:active {
    outline: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-arrow {
    background-repeat: no-repeat;
    background-size: 200%;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 76px;
    width: 47px;
}

.slick-arrow:before {
    content: '';
}

.slick-arrow:hover, .slick-arrow:focus {
    background-size: 175%;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-arrow.slick-next {
    background-position: left center;
}

.slick-arrow.slick-prev {
    background-position: right center;
}

.slick-slider-dark .slick-arrow {
    background-image: url("../img/icons/icon-arrows-dark.svg");
}

.slick-slider-bright .slick-arrow {
    background-image: url("../img/icons/icon-arrows.svg");
}

.fixed-background-slider {
    position: relative;
}

.fixed-background-slider .slider-item {
    position: relative;
    height: calc(100vh - 60px);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fixed-background-slider .slider-item.static {
    background-attachment: inherit;
}

.fixed-background-slider.full-slider {
    overflow: hidden;
}

.fixed-background-slider.full-slider .container-fluid {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.fixed-background-slider.full-slider .container-fluid .col-sm-6 {
    height: 100vh;
    background-position: left top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    overflow: hidden;
}

.fixed-background-slider.full-slider .slider-item.static {
    background-attachment: fixed;
}

.fixed-background-slider.full-slider .slider-item.static:not:first-child .col-sm-6 {
    background-i: none !important;
}

.fixed-background-slider.full-slider .slider-item.static img {
    display: block;
    position: absolute;
    top: -60px;
    left: -30px;
    height: 100vh;
    max-width: none;
}

.fixed-background-slider.full-slider .slider-item .col-sm-6 + .col-sm-6 {
    background: #ffffff;
}

.fixed-background-slider.full-slider img {
    display: none;
}

.fixed-background-slider .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.fixed-background-slider .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.fixed-background-slider .col-sm-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fixed-background-slider .slider-content {
    padding-left: 30px;
    max-width: 90%;
}

.fixed-background-slider h3 {
    margin: 0 0 20px;
    max-width: 500px;
    font-weight: 300;
    font-size: 26px;
    text-transform: inherit;
    color: #233b3f;
}

.fixed-background-slider p {
    line-height: 20px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 400;
    color: #898989;
}

.fixed-background-slider .with-arrow {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.fixed-background-slider .with-arrow:hover {
    cursor: pointer;
}

.fixed-background-slider .with-arrow:before {
    margin-top: 6px;
}

.fixed-background-slider .slider-nav-circle {
    width: 10px;
    height: 10px;
    margin-bottom: 5px;
    border-radius: 50%;
    border: 1px solid #233b3f;
}

.fixed-background-slider .slider-nav-circle.active {
    background-color: #233b3f;
}

.fixed-background-slider .slider-nav-circle:last-child {
    margin-bottom: 0;
}

.fixed-background-slider .slider-nav-circle:hover {
    cursor: pointer;
}

.fixed-background-slider .slider-nav {
    position: fixed;
    z-index: 2;
    right: 4%;
    top: calc(50% - 10px);
    bottom: auto;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.fixed-background-slider .slider-nav.hidden {
    display: none;
}

@media (max-width: 767px) {
    .fixed-background-slider .slider-item {
        height: auto;
    }

    .fixed-background-slider .slider-item:first-child {
        background-attachment: inherit;
        background-position: left top;
        padding: 370px 0 25px;
    }

    .fixed-background-slider .slider-item:not(:first-child) {
        background-image: none !important;
        padding: 25px 0;
    }

    .fixed-background-slider.full-slider .slider-item:first-child {
        padding-top: 0;
    }

    .fixed-background-slider.full-slider .slider-item:first-child .container-fluid {
        position: static;
        padding: 0;
        height: 350px;
        margin-bottom: 20px;
    }

    .fixed-background-slider.full-slider .slider-item:first-child .container-fluid .row {
        margin: 0;
    }

    .fixed-background-slider.full-slider .slider-item:first-child .container-fluid .col-sm-6 {
        background-attachment: inherit;
        background-position: center;
        position: static;
        height: 350px;
        width: 100%;
    }

    .fixed-background-slider.full-slider .slider-item:not(:first-child) .container-fluid {
        display: none;
    }

    .fixed-background-slider.full-slider .slider-item:not(:first-child) .container-fluid .col-sm-6 {
        background-image: none !important;
    }

    .fixed-background-slider.full-slider .slider-item img {
        display: none !important;
    }

    .fixed-background-slider .slider-nav {
        display: none;
    }
}

@media (max-width: 650px) {
    .fixed-background-slider .slider-item:first-child {
        background-size: 200%;
        padding-top: 350px;
    }
}

@media (max-width: 530px) {
    .fixed-background-slider .slider-item:first-child {
        padding-top: 320px;
    }

    .fixed-background-slider .slider-content {
        padding-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .fixed-background-slider .slider-item:first-child {
        padding-top: 250px;
    }
}

@media (max-width: 1024px) {
    .fixed-background-slider.full-slider .slider-item .container-fluid .col-sm-6 {
        background-size: cover;
    }
}

.slider-section {
    background: -webkit-linear-gradient(top, #f9f9f9 0%, #efefef 100%);
    background: linear-gradient(to bottom, #f9f9f9 0%, #efefef 100%);
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.slider-section .slider-item {
    background-color: #ffffff;
}

.form-container {
    width: 325px;
    margin: 0 auto 52px;
}

@media (max-width: 480px) {
    .form-container {
        width: 100%;
    }
}

.form-container-wide {
    width: 100%;
    padding: 0 50px 52px;
}

@media (max-width: 480px) {
    .form-container-wide {
        padding: 0 10px 52px;
    }
}

.form-group {
    margin-bottom: 13px;
    position: relative;
}

.form-group.form-group-animation {
    overflow: hidden;
}

.form-group.form-group-animation input:focus, .form-group.form-group-animation textarea:focus {
    border-color: #d0d0ce;
}

.form-group.form-group-animation textarea + .form-animation {
    bottom: 3px;
}

.form-group.form-group-animation input[type='file'] + label {
    position: relative;
}

.form-group.form-group-animation input[type='file'] + label:before {
    content: '';
    position: absolute;
    left: -100%;
    bottom: -2px;
    border-bottom: 2px solid #003d4c;
    width: 100%;
    display: block;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.form-group.form-group-animation input[type='file'] + label:hover:before {
    left: 0;
}

.form-group .form-animation {
    content: '';
    border-bottom: 2px solid #003d4c;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: -100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.form-group .form-animation.animate {
    left: 0;
}

.form-group select {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
    background-image: url(../img/select-arrow.png);
    background-size: 16px 9px;
    color: #7d7d7d;
}

.form-group textarea {
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 100%;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
}

.form-group.has-value input, .form-group.has-value select, .form-group.has-value textarea,
.form-group.has-value input[type='file'] + label,
.form-group.has-value .select2.select2-container, .form-group.has-value span.add-on.input-group-addon,
.form-group.has-value .select2.select2-container .select2-selection__rendered {
    border-bottom-color: #003d4c;
}

.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea,
.form-group.has-error input[type='file'] + label,
.form-group.has-error .select2.select2-container, .form-group.has-error span.add-on.input-group-addon,
.form-group.has-error .select2.select2-container .select2-selection__rendered {
    border-bottom-color: #BF0044;
}

.form-group-container {
    width: 325px;
    margin: 0 auto;
}

.form-group-container .checkbox {
    margin-top: 20px;
    margin-left: 10px;
}

.form-group-container .checkbox:last-child {
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .form-group-container {
        width: 100%;
    }
}

.radio-inline-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.radio-inline-container .radio {
    margin-right: 35px;
}

.radio-inline-container .radio:last-child {
    margin-right: 0;
}

.radio-inline-container .radio + .radio {
    margin-top: 10px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
input[type="file"] + label, input[type="search"], select, textarea {
    background-color: #f3f3f3;
    border: none;
    border-bottom: 2px solid #d0d0ce;
    height: 42px;
    padding-left: 10px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus,
input[type="file"] + label:focus, input[type="search"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #003d4c;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder,
input[type="file"] + label::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #7d7d7d;
}

input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="tel"]:-moz-placeholder,
input[type="file"] + label:-moz-placeholder, input[type="search"]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
    color: #7d7d7d;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="tel"]::-moz-placeholder,
input[type="file"] + label::-moz-placeholder, input[type="search"]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    color: #7d7d7d;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder,
input[type="file"] + label:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #7d7d7d;
}

.file-upload {
    display: none !important;
}

.file-upload + label {
    background-image: url("../img/icons/png-temp/upload.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    line-height: 42px;
    font-weight: 300;
    width: 100%;
    color: #7d7d7d;
}

.checkbox > input, .radio > input {
    display: none;
}

.checkbox > input:checked + label:before, .radio > input:checked + label:before {
    background-position: top center;
}

.checkbox label, .radio label {
    color: #003d4c;
    padding-left: 0;
    font-size: 14px;
}

.checkbox label:before, .radio label:before {
    content: '';
    background-position: bottom center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
}

.checkbox label span, .radio label span {
    color: #68696a;
    display: block;
    margin-left: 27px;
}

.checkbox a, .radio a {
    color: #233b3f;
    font-size: 14px;
}

.checkbox.checkbox-light label {
    color: #7d7d7d;
}

.checkbox + .checkbox {
    margin-top: inherit;
}

.checkbox label:before {
    content: '';
    background-image: url("../img/checkbox.png");
    width: 14px;
    height: 14px;
    margin-top: 3px;
    margin-right: 10px;
    float: left;
    margin-bottom: 2px;
}

.radio label {
    text-transform: uppercase;
}

.radio label span {
    text-transform: initial;
}

.radio label:before {
    background-image: url("../img/radio.png");
    width: 12px;
    height: 12px;
    margin-top: 3px;
    margin-right: 10px;
}

.input-datepicker {
    width: 325px;
    margin: 20px auto 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.input-datepicker .clear-input {
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    background-image: url("../img/close.png");
    background-size: 100%;
    width: 15px;
    height: 15px;
}

.input-datepicker input {
    width: 100%;
}

@media (max-width: 480px) {
    .input-datepicker {
        width: 100%;
    }
}

.show-password-group .input-group-addon {
    background-color: #f3f3f3;
    border: 0;
    border-bottom: 2px solid #d0d0ce;
}

.show-password-group .input-group-addon:focus {
    outline: none;
}

body {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #898989;
}

body.header-fixed.modal-open .header {
    display: none;
}



.who-we-are {
    overflow: hidden;
}

.who-we-are p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.about-us-purpose {
    background-color: #f3f3f3;
    padding-right: 0;
}

.about-us-purpose .row {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-us-purpose .col-md-8 {
    padding-left: 5%;
    padding-right: 45px;
}

.about-us-purpose .col-md-4 {
    padding-right: 0;
}

.about-us-purpose h2 {
    background-image: url(../img/about-us-quote-bg.png);
    background-repeat: no-repeat;
    background-size: 100px;
    text-align: left;
    line-height: 40px;
}

.about-us-purpose p {
    line-height: 20px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .about-us-purpose {
        padding-left: 0;
    }

    .about-us-purpose .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
    }

    .about-us-purpose .col-md-8 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
    }

    .about-us-purpose .col-md-4 {
        padding-left: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.about-us-text-image img {
    margin-bottom: 0;
}

.about-us-text-image h3 {
    margin-bottom: 15px;
    margin-top: 0;
}

.about-us-text-image p {
    max-width: 450px;
    margin: 0 auto 15px;
}

@media (max-width: 992px) {
    .about-us-text-image .container > .flex-center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about-us-our-team {
    background-color: #f3f3f3;
}

.about-us-our-team p {
    padding-bottom: 15px;
}

.about-us-our-team .counter-section {
    margin-top: 65px;
}

.about-us-our-team .counter-section h4 {
    color: #233b3f;
}

.about-us-our-team .counter {
    color: #233b3f;
}

.about-us-our-team .cta {
    margin-top: 40px;
    margin-bottom: 70px;
}

.about-us-network .about-us-network-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about-us-network .about-us-text-image {
    position: relative;
    width: 30%;
}

.about-us-network .about-us-text-image:before {
    content: '';
    background: -webkit-linear-gradient(top, transparent 50%, rgba(51, 51, 51, 0.9) 100%);
    background: linear-gradient(to bottom, transparent 50%, rgba(51, 51, 51, 0.9) 100%);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.about-us-network .about-us-text-image .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 680px;
}

.about-us-network .about-us-text-image p {
    position: absolute;
    z-index: 2;
    padding: 25px;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
}

.about-us-network .wrapper {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #f3f3f3;
}

.about-us-network .about-us-text {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-us-network .about-us-text p {
    margin-bottom: 0;
    padding: 0 30px;
    color: #020202;
}

.about-us-network .about-us-image {
    width: calc(60% - 3px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: 3px;
}

.about-us-network .about-us-image:nth-child(2) {
    margin-bottom: 3px;
}

.about-us-network .cta {
    margin: 45px 0;
}

@media (max-width: 768px) {
    .about-us-network .about-us-network-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about-us-network .about-us-text-image, .about-us-network .wrapper {
        width: 100%;
    }

    .about-us-network .about-us-text-image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #f3f3f3;
    }

    .about-us-network .about-us-text-image:before {
        display: none;
    }

    .about-us-network .about-us-text-image .image {
        border-right: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
        height: 400px;
        width: calc(60% - 3px);
    }

    .about-us-network .about-us-text-image p {
        position: static;
        color: #020202;
        padding: 30px;
        width: 40%;
    }

    .about-us-network .about-us-image:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .about-us-network .about-us-image:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .about-us-network .about-us-text {
        height: 200px;
    }

    .about-us-network .about-us-text:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .about-us-network .about-us-text:nth-child(4) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .about-us-network .about-us-image {
        margin-left: 0;
        border-right: 3px solid #ffffff;
    }
}

@media (max-width: 480px) {
    .about-us-network .about-us-text-image {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about-us-network .about-us-text-image .image, .about-us-network .about-us-text-image p {
        width: 100%;
    }

    .about-us-network .about-us-text-image .image {
        border-right: 0;
    }

    .about-us-network .about-us-image, .about-us-network .about-us-text {
        width: 100%;
    }

    .about-us-network .about-us-image {
        height: 200px;
        border-right: 0;
        border-top: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
    }
}

.job-post .job-intro {
    margin-bottom: 30px;
}

.job-post p {
    text-align: justify;
}

.job-post .cta-container {
    text-align: center;
    margin: 30px 0 45px;
}

.career-intro img {
    margin-top: 50px;
}

.career-roles {
    padding-bottom: 85px;
}

.career-roles .role {
    padding: 35px 40px;
    box-shadow: 0px 2px 30px 1px rgba(92, 95, 101, 0.2);
    height: 100%;
    margin-bottom: 30px;
}

.career-roles h3 {
    margin-top: 0;
    margin-bottom: 25px;
}

.career-roles dt, .career-roles dd {
    display: inline-block;
    color: #233b3f;
}

.career-roles dt, .career-roles strong {
    text-transform: uppercase;
}

.career-roles .with-arrow {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
}

.career-roles .with-arrow:before {
    margin-top: 6px;
}

.career-roles a:not(.with-arrow) {
    font-size: 16px;
    font-weight: 400;
    color: #233b3f;
}

@media (min-width: 768px) {
    .career-roles .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .career-roles .role {
        margin-bottom: 0;
    }
}

.carrer-top-banner .cta.cta-border-r:hover,
.carrer-top-banner .cta.cta-border-r:focus,
.carrer-top-banner .cta.cta-border-r:active {
    background: #ffffff;
    color: #233b3f;
    border-color: #ffffff;
}

.interactive-slider-v2 {
    background: url(https://s3-eu-west-1.amazonaws.com/easytranslate-wordpress/wp-content/uploads/2019/01/23121342/homepage-top-bg.jpg);
    background-size: cover;
    background-position: center 20%;
}

.interactive-slider-v2:after {
    background: none;
}

.homepage-slider h2, .homepage-slider p {
    color: #ffffff;
    font-weight: 300;
    text-align: center;
}

.homepage-slider h2 {
    font-size: 45px;
    line-height: 50px;
}

.homepage-slider h2:after {
    content: '.............';
    display: block;
}

.homepage-slider p {
    font-size: 16px !important;
    line-height: 18px !important;
    width: 100% !important;
    white-space: normal;
}

.homepage-slider p span {
    max-width: 420px;
}

@media (max-width: 992px) {
    .homepage-slider h2.zoom span {
        font-size: 30px !important;
        line-height: 30px;
    }

    .homepage-slider h2.zoom:after {
        font-size: 25px !important;
        line-height: 0;
        margin-top: 10px;
    }

    .homepage-slider p.zoom span {
        max-width: 250px;
        display: block;
        margin: 25px auto 0;
    }
}

.clients {
    padding: 20px 0;
    margin-top: 0;
    border-bottom: 2px solid #f6f9fc;
}

.clients .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.clients img {
    max-height: 60px;
}

.clients .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
}

.clients .clients-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 480px) {
    .clients .item {
        display: none;
    }

    .clients .item:nth-child(1),
    .clients .item:nth-child(2) {
        display: block;
    }
}

@media (min-width: 481px) and (max-width: 720px) {
    .clients .item {
        display: none;
    }

    .clients .item:nth-child(1),
    .clients .item:nth-child(2),
    .clients .item:nth-child(3) {
        display: block;
    }
}

@media (min-width: 721px) and (max-width: 920px) {
    .clients .item {
        display: none;
    }

    .clients .item:nth-child(1),
    .clients .item:nth-child(2),
    .clients .item:nth-child(3),
    .clients .item:nth-child(4) {
        display: block;
    }
}

.language-solutions .card-container {
    width: 85%;
    margin: 0 auto;
}

.language-solutions .card {
    margin-bottom: 40px;
}

.language-solutions .solutions-carousel {
    padding-bottom: 80px;
}

.language-solutions .solutions-nav-container {
    text-align: center;
}

.language-solutions .slick-arrow {
    margin-top: -73px;
}

.language-solutions .slick-list:before,
.language-solutions .slick-list:after {
    content: '';
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100px;
    height: 100%;
}

.language-solutions .slick-list:before {
    left: 0;
    background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.language-solutions .slick-list:after {
    right: 0;
    background: -webkit-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.language-solutions .slick-dots {
    margin-top: 20px;
    padding-bottom: 55px;
    position: static;
}

.language-solutions .slick-dots li {
    width: auto;
    margin: 0 0 15px;
}

.language-solutions .slick-dots li.slick-active a {
    color: #233b3f;
}

.language-solutions .slick-dots li.slick-active:after {
    content: '';
    display: block;
    background: #233b3f;
    height: 2px;
    width: 20px;
    margin-top: 10px;
    margin-left: calc(50% - 10px);
}

.language-solutions .slick-dots a {
    font-size: 14px;
    color: #8C8F94;
    text-transform: uppercase;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .language-solutions .slick-arrow {
        top: 0;
        margin-top: 162px;
    }
}

@media (max-width: 530px) {
    .language-solutions .slick-list:before,
    .language-solutions .slick-list:after {
        background: none;
    }
}

.all-in-one-platform .with-arrow {
    padding-left: 24px;
}

@media (max-width: 1200px) {
    .all-in-one-platform h3 {
        margin-top: 0;
    }

    .all-in-one-platform .with-arrow {
        margin-bottom: 30px;
    }
}

.get-started {
    background: #f3f3f3;
}

.case-studies-slider {
    position: relative;
}

.case-studies-slider ul {
    padding-left: 0;
    margin: 0;
}

.case-studies-slider .slick-prev.slick-arrow {
    left: 25px;
}

.case-studies-slider .slick-next.slick-arrow {
    right: 25px;
}

@media (max-width: 650px) {
    .case-studies-slider .slick-arrow {
        top: 40%;
    }
}

.get-to-know p {
    font-size: 16px;
    max-width: 430px;
    line-height: 20px;
    margin: 0 auto 25px;
}

.get-to-know img {
    padding: 30px;
}

.get-to-know .cta {
    padding: 10px 15px;
}

@media (max-width: 480px) {
    .get-to-know p {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.support-map {
    background: #233b3f;
    padding-bottom: 65px;
    position: relative;
    z-index: 1;
}

.support-map h2 {
    color: #ffffff;
}

.support-map img {
    max-width: 100%;
}

.support-map .counter-section {
    margin-top: 35px;
}

.our-platform-section {
    background: #f6f6f6;
}

.integration-api-section {
    background: #f3f3f3;
}

.integration-api-section img {
    max-width: 80%;
    margin-bottom: 0;
}

.integration-api-section p {
    padding-right: 20px;
}

.integration-api-section .container {
    padding-bottom: 65px;
}

@media (min-width: 992px) {
    .integration-api-section h3 {
        margin-top: 0;
    }
}

.data-security-section {
    background: #233b3f;
    height: 225px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.data-security-section .icon {
    width: 125px;
    height: 125px;
    background-image: url("../img/icons/security.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    background-color: #ffffff;
    background-position: center;
    background-size: 30%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    margin-right: 45px;
}

.data-security-section .content {
    padding: 0;
    max-width: 490px;
    display: inline-block;
    vertical-align: top;
}

.data-security-section h3, .data-security-section p {
    color: #ffffff;
}

.data-security-section h3 {
    font-size: 23px;
    font-weight: 400;
    margin: 0 0 13px;
}

.data-security-section p {
    margin-bottom: 13px;
}

.data-security-section a {
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
}

.data-security-section a:before {
    margin-top: 7px;
    background-image: url("../img/icons/arrow-link-white.svg");
}

.data-security-section a:hover {
    color: #D30053;
}

.data-security-section a:hover:before {
    background-image: url("../img/icons/arrow-link.svg");
}

@media (max-width: 650px) {
    .data-security-section {
        height: auto;
    }

    .data-security-section .icon {
        display: block;
        margin: 25px auto;
    }

    .data-security-section .content {
        margin: 0 20px 25px;
    }
}

.terms {
    margin-top: 60px;
    margin-bottom: 40px;
}

.terms .terms-list, .terms .terms-list ol {
    counter-reset: item;
}

.terms .terms-list {
    padding-left: 0;
    list-style-type: none;
}

.terms .terms-list li, .terms .terms-list p {
    color: #000000;
    margin-bottom: 20px;
    line-height: 22px;
}

.terms .terms-list ol {
    padding-left: 0;
    list-style-type: none;
}

.terms .terms-list ul {
    list-style-type: disc;
}

.terms .terms-list ul li {
    margin-bottom: 0;
}

.terms .terms-list > li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
    font-size: 20px;
    font-weight: 400;
}

.terms .terms-list ol > li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    font-size: 16px;
}

.terms .terms-list h3 + ol {
    margin-top: 20px;
}

.terms .terms-list .bold:before {
    font-weight: 400;
    font-size: 16px;
}

.terms .terms-small > li:before {
    font-size: 18px;
}

.terms h3, .terms h4 {
    display: inline-block;
    color: #233b3f;
    margin: 0;
}

.terms h4 {
    font-size: 16px;
}

.privacy li:before {
    font-weight: 400;
}

.sitemap {
    margin-top: 60px;
    margin-bottom: 80px;
}

.sitemap a {
    font-size: 14px;
    color: #000000;
    line-height: 25px;
}

.sitemap a:hover {
    font-weight: 400;
    color: #233b3f;
}


.footer-v3 .hiring {
    background-color: #D30053;
    color: white;
    padding: 1px 3px;
    border-radius: 3px;
    font-size: 12px;
}



.cta-primary {
    background-color: #D30053;
    border: none;
    padding: 10px 15px;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #b30046;
    color: #ffffff;
}



.homepage .clients {
    z-index: 1;
}

.homepage .clients, .homepage .language-solutions {
    background: white;
    position: relative;
}
.clients {
    padding: 20px 0;
    margin-top: 0;
    border-bottom: 2px solid #f6f9fc;
}
.clients {
    border: 0;
    overflow: hidden;
    box-shadow: none !important;
}


.clients .items {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
    filter: url(data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter);
    -webkit-filter: blur(0);
    filter: blur(0);
}

.clients .cta {
    transition: all .15s ease;
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translate(-50%, 5px) scale(0.95);
    transform: translate(-50%, 5px) scale(0.95);
    opacity: 0;
    transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.clients .clients-container {
    display: block;
}

.clients .clients-container:hover .cta {
    opacity: 1;
    -webkit-transform: translate(-50%, 5px);
    transform: translate(-50%, 5px);
}

.clients .item {
    margin: 0;
    background: none;
}

.clients li {
    overflow: hidden;
    position: relative;
}

.clients li img {
    filter: gray;
    float: none !important;
    margin: 0 auto !important;
    vertical-align: middle;
}

.clients img {
    max-height: 60px;
}

.clients .clients-container {
    display: block;
}

.clients .clients-container:hover .items {
    opacity: .6;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    filter: url(data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><f…ter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter);
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.clients-link {
    background: white;
    border: 1px solid #233b3f;
    color: #233b3f;
}
.clients-link:hover {
    background: #233b3f;
    border: 1px solid #233b3f;
    color: white;
}
