

@font-face {
    font-family: "Riposte";
    src: url("../fonts/Riposte-Light.woff");
}
@font-face {
    font-family: "Riposte";
    src: url("../fonts/Riposte-Light.woff");
    font-weight: 300;
}
@font-face {
    font-family: "Riposte";
    src: url("../fonts/Riposte-Medium.woff");
    font-weight: 500;
}

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'Riposte', 'Roboto', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1272px;
    padding-left: 60px;
    padding-right: 60px;
}

.row.row-intro {
    max-width: 1040px;
}
.row.row-sm {
    max-width: 825px;
}
.row.row-xs {
    max-width: 650px;
}
.row.row-full {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}
.row.row-full.nopad {
    padding-left: 0;
    padding-right: 0;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.invi {
	visibility: hidden;
	opacity: 0;
}

/*   hamburger   */

.hamburger {
    font: inherit;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    width: 26px;
    height: 30px;
    float: right;
    transition: 0.2s;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 26px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -9px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 40ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 40ms ease .12s, opacity 40ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 40ms ease .12s, transform 40ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 40ms ease, opacity 40ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 40ms ease, transform 40ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.hamburger-inner:before {
    display: none;
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 300;
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 1;
    transition: background 0.2s, padding 0.2s, opacity 0.1s;
}
/*.header.close {
    opacity: 0;
}*/
.header.nav-triggered {
    background: #000;
}

.header.nav-triggered .logo {
    opacity: 0;
}
.header.header-sticky {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #000;
}

.logo img {
    max-width: 270px;
    transition: 0.2s;
}

.nav ul {
    float: right;
}

.nav ul li {
    float: left;
    margin-right: 60px;
    position: relative;
}

.nav ul li:last-child {
    margin-right: 0px;
}

.nav ul li a {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    white-space: nowrap;
    color: #ffffff;
    display: inline-block;
    padding: 17px 0;
    transition: 0.2s;
    position: relative;
}

/* .nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 18px;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: 0.2s;
}

.nav ul li:hover a:before {
    opacity: 1;
} */

.nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 16px;
    width: 0;
    height: 0px;
    background: #fff;
    -webkit-animation: lineOut 0.2s ease-out forwards;
    animation: lineOut 0.2s ease-out forwards;
}

.header.close .nav ul li a:before {
    height: 2px;
}


.nav ul li:hover a:before {
    content: '';
    display: block;
    position: absolute;
    -webkit-animation: lineIn 0.4s ease-out forwards;
    animation: lineIn 0.4s ease-out forwards;
    background: #fff;
}

@-webkit-keyframes lineIn {
    0% {
        width: 0;
        left: 0;
        right: auto
    }
    100% {
        width: 100%;
        left: 0;
        right: auto
    }
}

@keyframes lineIn {
    0% {
        width: 0;
        left: 0;
        right: auto
    }
    100% {
        width: 100%;
        left: 0;
        right: auto
    }
}

@-webkit-keyframes lineOut {
    0% {
        width: 100%;
        left: auto;
        right: 0
    }
    100% {
        width: 0;
        left: auto;
        right: 0
    }
}

@keyframes lineOut {
    0% {
        width: 100%;
        left: auto;
        right: 0
    }
    100% {
        width: 0;
        left: auto;
        right: 0
    }
}

.nav ul li.menu-item-has-children a:after {
    content: '';
    display: inline-block;
    position: relative;
    top: -3px;
    width: 9px;
    height: 5px;
    background: url(../img/arrow-white-down.svg) no-repeat center center;
    margin-left: 12px;
    transition: 0.2s;
}

.nav ul li.menu-item-has-children:hover a:after {
    transform: rotate(180deg);
}

.nav ul li ul {
    position: absolute;
    margin: 0;
    padding: 0;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px 50px 50px;
    top: 100%;
    left: -80px;
    min-width: 340px;
    transform: translateY(-20px);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    transition: 0.2s;
}
.nav ul li:hover ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.nav ul li ul li {
   float: none;
   margin: 0;
}
.nav ul li ul li a {
   color: #000;
   padding: 3px 0;
   padding-right: 32px;
}
.nav ul li ul li.current-menu-item a {
   color: #765bff;
}

.nav ul li ul li.subnav-title a {
   color: #b2b2b2;
   font-size: 15px;
   position: relative;
   padding: 18px 0 10px;
}
.nav ul li ul li.subnav-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.nav ul li.menu-item-has-children ul li a:after {
   position: absolute;
   width: 21px;
   height: 21px;
   background: #765bff url(../img/arrow-white-right.svg) no-repeat center center;
   border-radius: 50%;
   right: 0;
   top: 7px;
   transform: rotate(0) !important;
   opacity: 0;
   transition: opacity 0.2s;
}
.nav ul li.menu-item-has-children ul li a:hover:after {
   opacity: 1;
   transform: rotate(0);
}
.nav ul li.menu-item-has-children ul li.subnav-title a:after {
   display: none;
}

.nav ul li ul li a:before {
   display: none !important;
}

.nav ul li ul li a:hover {
   color: #765bff;
}


/* footer */

.footer {
    background: #151516;
    color: #fff;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 2.57%;
    background: url(../img/orn-footer.svg) no-repeat bottom center / 103% 103%;
    bottom: calc(100% - 2px);
}

.footer-top-hold {
    padding: 195px 0 125px;
    border-bottom: 1px solid #313132;
}

.footer-bottom-hold {
    padding: 95px 0 110px;
}

.footer-logo img {
    max-width: 230px;
}

.footer-nav-title {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #ffffff;
    margin-bottom: 28px;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li:last-child {
    margin-bottom: 0px;
}

.footer-nav ul li a {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    padding-bottom: 2px;
    display: inline-block;
    color: #ffffff;
    position: relative;
    transition: 0.2s;
}

.footer-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-animation: lineOut 0.2s ease-out forwards;
    animation: lineOut 0.2s ease-out forwards;
}

.footer-nav ul li:hover a:before,
.footer-nav ul li.current-menu-item a:before {
    content: '';
    display: block;
    position: absolute;
    -webkit-animation: lineIn 0.4s ease-out forwards;
    animation: lineIn 0.4s ease-out forwards;
    background: #fff;
}


.footer-socials {
    margin-bottom: 60px;
    text-align: center;
}

.footer-socials ul li {
    float: left;
    margin-right: 45px;
}

.footer-socials ul li:last-child {
    margin-right: 0px;
}

.footer-socials ul li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    display: inline-block;
    padding-bottom: 2px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    transition: 0.2s;
}

.footer-socials ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-animation: lineOut 0.2s ease-out forwards;
    animation: lineOut 0.2s ease-out forwards;
}

.footer-socials ul li:hover a:before {
    content: '';
    display: block;
    position: absolute;
    -webkit-animation: lineIn 0.4s ease-out forwards;
    animation: lineIn 0.4s ease-out forwards;
    background: #fff;
}

.footer-text {
    position: relative;
    padding-left: 300px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.09px;
    color: #dcdcdc;
}

.footer-text .footer-text-flag {
    position: absolute;
    top: 20px;
    left: 0;
    max-width: 75px;
}
.footer-text .footer-text-logo {
    position: absolute;
    top: 20px;
    left: 100px;
    max-width: 148px;
}

.copyrights {
    color: #7d7d7e;
    font-size: 12px;
    font-weight: 300;
}

.copyrights a {
    color: #fff;
    margin-left: 10px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    transition: 0.2s;
}

.copyrights a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-animation: lineOut 0.2s ease-out forwards;
    animation: lineOut 0.2s ease-out forwards;
}

.copyrights a:hover:before {
    content: '';
    display: block;
    position: absolute;
    -webkit-animation: lineIn 0.4s ease-out forwards;
    animation: lineIn 0.4s ease-out forwards;
    background: #fff;
}

/* intro simple */

.intro-simple {
    background: #000;
    padding-top: 200px;
    padding-bottom: 155px;
    color: #fff;
}

.intro-simple-pretitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.15px;
    margin-bottom: 20px;
    position: relative;
}

.intro-simple-pretitle > span {
    color: #fff;
    display: inline-block;
    padding-bottom: 20px;
    padding-right: 30px;
    position: relative;
    z-index: 30;
    transition: 0.2s;
}
.intro-simple-pretitle > span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 21px;
    height: 20px;
    border-radius: 50%;
    background: #fff url(../img/arrow-black-down.svg) no-repeat center center;
    transition: 0.2s;
}

.intro-simple-pretitle > span:hover:after {
    transform: rotate(180deg);
}

.intro-simple-pretitle-sublinks {
    text-align: left;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -20px);
    min-width: 340px;
    background: #fff;
    padding: 50px 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 10;
}

.intro-simple-pretitle > span:hover .intro-simple-pretitle-sublinks {
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
}

.intro-simple-pretitle-sublinks-title {
    opacity: 0.3;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 15px;
}

.intro-simple-pretitle-sublinks-nav ul li a {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #000000;
    padding: 3px 0;
    padding-right: 32px;
    display: inline-block;
    position: relative;
}
.intro-simple-pretitle-sublinks-nav ul li.active a {
    color: #765bff;
}
.intro-simple-pretitle-sublinks-nav ul li a:after {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    transform: translateY(0%) rotate(0);
    background: #765bff url(../img/arrow-white-right.svg) no-repeat center center;
    border-radius: 50%;
    right: 0;
    top: 7px;
    opacity: 0;
    transition: 0.2s;
}
.intro-simple-pretitle-sublinks-nav ul li a:hover {
    color: #765bff;
}
.intro-simple-pretitle-sublinks-nav ul li a:hover:after {
    opacity: 1;
    transform: translateY(0%) rotate(0);
}

.section-title-lg {
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    margin-bottom: 28px;
}

.intro-simple .section-title-lg {
    margin-bottom: 0;
}

.title-white {
    color: #fff !important;
}

/* our companies */

.our-companies-hold {
    background: #000;
    padding-bottom: 200px;
}

.our-companies-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.our-companies-list ul li {
    width: 50%;
    border-bottom: 1px solid #383838;
    position: relative;
}

.our-companies-list ul li a {
    padding: 100px 16% 115px;
    float: left;
    width: 100%;
}

.our-companies-list ul li:before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    height: calc(100% - 60px);
    width: 1px;
    background: #3c3c3c;
    right: 0px;
}

.our-companies-list ul li:nth-child(2n):before {
    display: none;
}

.our-companies-list ul li:nth-last-child(-n+2) {
    border-color: transparent;
}

.our-companies-list ul li:nth-last-child(2):not(:nth-child(odd)) {
    border-bottom: 1px solid #383838;
}

.our-companies-list ul li:after {
    content: '';
    display: block;
    clear: both;
}

.our-company-logo {
    height: 70px;
    position: relative;
    margin-bottom: 40px;
}

.our-company-logo img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    max-width: 180px;
    max-height: 46px;
}

.our-company-text {
    opacity: 0.5;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #ffffff;
    margin-bottom: 25px;
}

.our-company-link {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #ffffff;
    transition: 0.2s;
}
.our-company-link:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff url(../img/arrow-black-right.svg) no-repeat center center;
    position: relative;
    top: 4px;
    margin-left: 10px;
    opacity: 0;
    transition: 0.2s;
}

.our-company-link a:hover {
}
.our-companies-list ul li a:hover .our-company-link:after {
    opacity: 1;
}

/* our explorers */

.our-explorers-hold {
    background: #000;
    padding: 0 0 80px;
}

.our-explorers-list ul li {
    float: left;
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 120px;
}

.our-explorers-list ul li:nth-child(3n) {
    margin-right: 0;
}

.our-explorers-list ul li:nth-child(3n+1) {
    clear: both;
}

.our-explorers-list ul li a {
    float: left;
    width: 100%;
}
.our-explorers-list ul li a:hover .our-explorer-image {
    transform: scale(1.03);
}

.our-explorer-image {
    background-size: cover !important;
    padding-bottom: 128%;
    margin-bottom: 35px;
    position: relative;
    transition: 0.2s;
}
.our-explorer-image:after {
    position: absolute;
    content: '';
    width: 38px;
    height: 38px;
    background: #fff url(../img/arrow-black-right-lg.svg) no-repeat center center;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: 0.2s;
}

.our-explorers-list ul li a:hover .our-explorer-image:after {
    opacity: 1;
    transform: scale(0.94);
}

.our-explorer-title {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #ffffff;
    margin-bottom: 8px;
}

.our-explorer-position {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #767676;
}

.reveal-explorer {
    background: #000;
    padding: 90px 0 50px;
}

.our-explorer-modal-image-hold .our-explorer-image {
    margin-bottom: 10px;
}

.our-explorer-quote {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.25px;
    color: #ffffff;
    margin-bottom: 55px;
}

.our-explorer-content-padd {
    padding-left: 70px;
}

.our-explorer-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #767676;
    margin-bottom: 30px;
}

.our-explorer-modal-content {
    padding-left: 9%;
    padding-right: 2%;
    padding-bottom: 34px;
}

.explorers-carousel-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.explorers-carousel-item:after {
    content: '';
    display: block;
    clear: both;
}

.nav-trigger {
    padding-top: 10px;
    transition: 0.2s;
}
.hamburger--squeeze.is-active .hamburger-box {
    transform: translateY(5px);
}

/* mob-nav */

.mob-nav-hold {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 135px 50px 35px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    /* display: none; */
    transition: 0.2s;
}
.mob-nav-hold.close {
    opacity: 1;
    visibility: visible;
}

.mob-nav-sec-hold {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 135px 50px 35px;
    z-index: 201;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    overflow: auto;
    transition: 0.4s 0.1s;
}
.mob-nav-sec-hold.close {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    transition: 0.4s 0.3s;
}

.mob-nav-trigger {
    margin-bottom: 55px;
    position: relative;
}
.mob-nav-trigger:after {
    content: '';
    display: block;
    clear: both;
}

.mob-nav-trigger a {
    position: relative;
    top: 0;
    left: 0;
    color: #fff;
    padding-left: 32px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
}
.mob-nav-trigger a:before {
    position: absolute;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff url(../img/arrow-black-left.svg) no-repeat center center;
}

.mob-nav-trigger:after {
    content: '';
    display: block;
    clear: both;
}

.mob-nav {
    padding-left: 10%;
}
.mob-nav-hold .mob-nav {
    transform: translateY(-40px);
    transition: 0.3s 0.06s ease-out;
}

.mob-nav-hold.close .mob-nav {
    transform: translateY(0px);
}
.mob-nav-hold.slide-left .mob-nav {
    transform: translateX(-50px);
    opacity: 0;
    visibility: hidden;
}

.mob-nav ul li {
    margin-bottom: 20px;
}

.mob-nav ul li:last-child {
    margin-bottom: 0px;
}

.mob-nav ul li {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    color: #666666;
}
.mob-nav ul li.mob-nav-title {
    position: relative;
}
.mob-nav ul li.mob-nav-title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.mob-nav ul li.mob-nav-title a {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    color: #666666;
}
.mob-nav ul li a {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    color: #ffffff;
    display: inline-block;
    position: relative;
}
.mob-nav ul li.menu-item-has-children a {
    padding-right: 50px;
}
.mob-nav ul li.menu-item-has-children a:after{
    content: '';
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff url(../img/arrow-black-right.svg) no-repeat center center;
}

.explorers-carousel.owl-carousel .owl-nav button.owl-next, 
.explorers-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    outline: none;
    transition: 0.2s;
}
.explorers-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.explorers-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    transform: translateY(-50%) scale(1.08);
}
.explorers-carousel.owl-carousel .owl-nav button.owl-next span, 
.explorers-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.explorers-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -106px;
    background: #fff url(../img/arrow-black-left-lg.svg) no-repeat left 13px center;
}
.explorers-carousel.owl-carousel .owl-nav button.owl-next {
    right: -106px;
    background: #fff url(../img/arrow-black-right-lg.svg) no-repeat right 13px center;
}

.counter-explorers {
    color: #bbbbbb;
    font-size: 14px;
}

.explorer-current {
    color: #fff;
}

.explorer-mob-arrows {
    position: absolute;
    left: 20px;
    display: none;
    bottom: -19px;
}
.explorer-mob-arrows a {
    float: left;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
}

.explorer-mob-arrows a.explorer-prev {
    margin-right: 15px;
    background: #fff url(../img/arrow-black-left-lg.svg) no-repeat center center;
}
.explorer-mob-arrows a.explorer-next {
    background: #fff url(../img/arrow-black-right-lg.svg) no-repeat center center;
}

.reveal-explorer .close-button {
    font-weight: 300;
    color: #fff;
    opacity: 1;
    right: 25px;
    top: 20px;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: url(../img/close-white.svg) no-repeat center center;
    transition: 0.2s;
}
.reveal-explorer .close-button span {
    display: inline-block;
    transform: rotate(-90deg);
    position: absolute;
    top: 48px;
    left: -3px;
    font-size: 14px;
    padding-right: 10px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: -0.08px;
}
.reveal-explorer .close-button:hover {
    background: #fff url(../img/close-black.svg) no-repeat center center;
}

/* contact */

.intro-simple-bg {
    padding-top: 210px;
    padding-bottom: 220px;
    background: #000;
    background-size: contain !important;
}

.intro-simple-bg .section-title-lg {
    margin-bottom: 0;
}

.contacts-top {
    background: #765bff;
    position: relative;
    padding: 100px 8%;
    padding-right: 42%;
    margin-top: -70px;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    color: #ffffff;
    margin-bottom: 120px;
}

.contacts-top a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
}


.btn-black,
.btn-black:focus,
.btn-black:active {
    display: inline-block;
    line-height: 1.5;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    color: #ffffff;
    background: #000;
    padding: 18px 40px;
    border-radius: 40px;
    transition: 0.2s;
}

.btn-black:hover {
    color: #ffffff;
    background: #2e2e32;
}

.btn-black.btn-sm,
.btn-black.btn-sm:focus,
.btn-black.btn-sm:active {
    font-size: 12px;
    padding: 5px 20px 7px;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    display: inline-block;
    line-height: 1.5;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    color: #ffffff;
    background: #765bff;
    padding: 18px 40px;
    border-radius: 40px;
    transition: 0.2s;
}

.btn-blue:hover {
    color: #ffffff;
    background: #866eff;
}

.contacts-list {
    margin-bottom: 160px;
}

.contact-list-item {
    padding: 100px 8%;
    border-bottom: 1px solid #e5e5e5;
}

.contact-list-item:last-child {
    border-bottom: none;
}

.contact-list-left {
    padding-right: 15%;
}
.contact-list-left h3 {
    opacity: 0.9;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
}

.contact-list-left p {
    opacity: 0.5;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #000000;
}

.contact-list-right {
    padding-left: 5%;
}
.contact-list-right p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.34;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 15px;
}

.contact-list-right p:last-child {
    margin-bottom: 0px;
}

.contact-list-right p a {
    color: #000000;
    
    transition: 0.2s;
}
.contact-list-right p a:hover {
    color: #765bff;
}

.contact-list-right p:first-child a {
    border-bottom: 2px solid #765bff;
}

/* faq */

.faq-answers-block {
    background: #f3f3f3;
    padding: 90px 90px;
    margin-bottom: 80px;
}

.faq-answers-block:last-child {
    margin-bottom: 0;
} 

.faq-answers-block-title {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 35px;
}
.faq-answers-block-title:before {
    content: "0" counters(item, "") "";
    counter-increment: item;
    display: inline-block;
    margin-right: 3px;
}
.faq-answers-block:nth-child(n+10) .faq-answers-block-title:before {
    content: "" counters(item, "") "";
}

.faq-accordion .accordion {
    background: transparent;
}

.faq-accordion .accordion-title {
    border: none;
    padding: 15px 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    padding-right: 40px;
    color: #000000;
    transition: 0.2s;
}

.faq-accordion .accordion-item.is-active .accordion-title {
    color: #765bff
}

.faq-accordion :last-child:not(.is-active)>.accordion-title {
    border-bottom: none;
}

.faq-accordion .accordion-item {
    margin-bottom: 5px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0px;
}

.faq-accordion .accordion-title:focus, 
.faq-accordion .accordion-title:hover {
    background-color: transparent;
}
.faq-accordion .accordion-title:hover {
    color: #765bff;
    padding-left: 6px;
}

.faq-accordion .accordion-content {
    padding: 30px 0 15px;
    padding-right: 80px;
    border: none;
    background-color: transparent;
    color: #0a0a0a;
    opacity: 0.5;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #000000;
}

.faq-accordion .accordion-title:before {
    content: '';
    position: absolute;
    right: 0px;
    top: 22px;
    margin-top: 0;
    width: 20px; 
    height: 20px;
    background: #000 url(../img/arrow-white-down.svg) no-repeat center center / 8px;
    border-radius: 50%;
    transition: 0.2s;
}

.faq-accordion .accordion-title:hover:before {
    background: #765bff url(../img/arrow-white-down.svg) no-repeat center center / 8px;
}
.faq-accordion .accordion-item.is-active .accordion-title:before {
    transform: rotate(180deg);
}

.faq-topics-hold .sticky.is-at-top.is-stuck {
    margin-top: 110px !important;;
}

.faq-topics ul li {
    margin-bottom: 10px;
}

.faq-topics ul li:last-child {
    margin-bottom: 0px;
}

.faq-topics ul li a {
    opacity: 0.4;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.56;
    letter-spacing: -0.1px;
    color: #000000;
    transition: 0.2s;
    position: relative;
}
.faq-topics ul li a:hover {
    color: #765bff;
    opacity: 1;
}

.faq-topics ul li a:after {
    content: '';
    position: absolute;
    bottom: 8px;
    /* top:50%; */
    /* transform: translateY(-50%); */
    left: calc(100% + 13px);
    width: 15px;
    height: 1px;
    background: #000;
    opacity: 0;
    transition: 0.2s;
}

.faq-topics ul li.current a {
    opacity: 1;
}
.faq-topics ul li.current a:after {
    opacity: 1;
}

.faq-hold {
    margin-bottom: 240px;
    counter-reset: item;
}

.faq-carousel-hold {
    margin-top: -70px;
    margin-bottom: 50px;
}

.faq-carousel-item a {
    display: block;
    background: #765bff;
    color: #fff;
    padding: 50px 50px 80px;
    min-height: 470px;
    position: relative;
    transition: 0.2s;
}
.faq-carousel-item a:hover {
    background: #866eff;
}

.faq-carousel-topic {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.1px;
    margin-bottom: 25px;
}

.faq-carousel-title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.36;
    letter-spacing: -0.1px;
}

.faq-carousel-link {
    position: absolute;
    left: 50px;
    bottom: 40px;
    font-size: 17px;
    font-weight: 300;
    padding-right: 30px;
    letter-spacing: -0.1px;
}
.faq-carousel-link:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 21px;
    height: 21px;
    background: #fff url(../img/arrow-black-right.svg) no-repeat center center;
    border-radius: 50%;
    opacity: 0;
    transition: 0.2s;
}

.faq-carousel-item a:hover .faq-carousel-link:after {
    opacity: 1;
}

.faq-carousel.owl-carousel .owl-nav button.owl-next, 
.faq-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    outline: none;
    transition: 0.2s;
}
.faq-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.faq-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    transform: translateY(-50%) scale(1.08);
}
.faq-carousel.owl-carousel .owl-nav button.owl-next span, 
.faq-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.faq-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -106px;
    background: #000 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}
.faq-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: #2e2e32 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}
.faq-carousel.owl-carousel .owl-nav button.owl-next {
    right: -106px;
    background: #000 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}
.faq-carousel.owl-carousel .owl-nav button.owl-next:hover {
    background: #2e2e32 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}

/* .owl-carousel button.owl-dot span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 10px;
    background: #000;
    opacity: 0.3;
}
.owl-carousel button.owl-dot.active span {
    opacity: 1;
} */



.carousel-progress {
    margin-bottom: 140px;
    background: #e6e6e6
}
.carousel-progress ul li {
    float: left;
    height: 1px;
    background: #000;
    transition: 0.2s;
}
.carousel-progress ul li.current {
    background: #000;
}

/* about */

.intro-full {
    min-height: calc(100vh + 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 220px;
    position: relative;
    overflow: hidden;
}

.intro-full .row {
    width: 100%;
}

.intro-bg-simple {
    background-size: cover !important;
}

.intro-bg-simple .row {
    position: relative;
    z-index: 11;
}

.intro-bg-simple:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    background: url(../img/hero-bottom.svg) no-repeat bottom center / 101% ;
    padding-bottom: 11%;
    z-index: 10;
}

.intro-link,
.intro-link:focus,
.intro-link:active {
    display: inline-block;
    line-height: 1.5;
    color: #fff;
    padding-left: 32px;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.1px;
    position: relative;
    position: absolute;
    bottom: 180px;
    left: calc((100vw - 1162px) / 2);
    z-index: 20;
}

.intro-link:hover {
    color: #fff;
}
.intro-link:hover:before {
    transform: translateY(-50%) scale(1.15);;
}

.intro-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff url(../img/arrow-black-down.svg) no-repeat center center;
    transition: 0.2s;
}

.intro-text {
    color: #fff;
}
.intro-text h3 {
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    margin-bottom: 28px;
}

.home .intro-text h3 {
    font-size: 88px;
}
.intro-text p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #ffffff;
}

.about-companies-list .our-company-text {
    color: #000000;
}
.about-companies-list .our-company-link {
    color: #000
}
.about-companies-list .our-company-link:after {
    background: #000 url(../img/arrow-white-right.svg) no-repeat center center;
}
.about-companies-list.our-companies-list ul li:before {
    background: #e6e6e6;
}
.about-companies-list.our-companies-list ul li {
    border-color: #e6e6e6;
}
.about-companies-list.our-companies-list ul li:nth-last-child(2):not(:nth-child(odd)) {
    border-bottom: 1px solid #e6e6e6;
}

.about-companies-list.our-companies-list ul li:nth-last-child(-n+2) {
    border-color: transparent;
}

.about-companies-list.our-companies-list .our-company-logo img {
    max-height: 60px;
}


.section-title {
    margin-bottom: 120px;
}
.section-title.title-white * {
    color: #fff;
}

.section-title h3 {
    opacity: 0.9;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: #000000;
}
.section-title p {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #7f7f7f;
}
.section-title h4 {
    margin-top: 35px;
}

.about-intro-title {
    padding-top: 140px;
}

.about-team-hold {
    padding-top: 215px;
    position: relative;
}
.about-team-hold:before {
    content: '';
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    top: 100px;
    width: 838px;
    height: 640px;
    background: url(../img/orn-two-shapes.svg) no-repeat center center / 100% 100%;
}

.team-carousel-hold {
    margin-bottom: 50px;
}

.team-carousel-item:hover .team-carousel-image a {
    opacity: 1;
}

.team-carousel-image {
    padding-bottom: 128%;
    background-size: cover !important;
    margin-bottom: 35px;
    position: relative;
}

.team-carousel-image a {
    position: absolute;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: 0.2s;
}

.team-carousel-image a:hover {
    background: #765bff;
}

.team-carousel-image a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team-carousel-image a svg path {
    transition: 0.2s;
}

.team-carousel-image a:hover svg path {
    fill: #fff;
}

.team-carousel-name {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 4px;
}

.team-carousel-info {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #767676;
}

.team-carousel.owl-carousel .owl-nav button.owl-next, 
.team-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    outline: none;
    transition: 0.2s;
}
.team-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.team-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    transform: translateY(-50%) scale(1.08);
}
.team-carousel.owl-carousel .owl-nav button.owl-next span, 
.team-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.team-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -106px;
    background: #000 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}
.team-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: #2e2e32 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}

.team-carousel.owl-carousel .owl-nav button.owl-next {
    right: -106px;
    background: #000 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}
.team-carousel.owl-carousel .owl-nav button.owl-next:hover {
    background: #2e2e32 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}

.carousel-progress.team-carousel-progress {
    margin-bottom: 240px;
}

/* how it works companies */

.how-it-works-companies-hold {
    padding-top: 200px;
}

.hiw-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 220px;
}

.hiw-companies-item-content {
    padding-left: 11%;
    z-index: 2;
}
.hiw-companies-item-content.large-pull-6 {
    padding-left: 0%;
    padding-right: 12%;
}

.hiw-companies-item-content h3 {
    opacity: 0.9;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: #000000;
    margin-bottom: 20px;
}

.hiw-companies-item-content h4 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 15px;
}

.hiw-companies-item-content p {
    color: #7f7f7f;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    margin-bottom: 40px;
}

.hiw-companies-item-content.has-video-button p {
    margin-bottom: 50px;
}
.hiw-companies-item-content.has-video-button p:last-child {
    margin-bottom: 0px;
}

.hiw-companies-item-content ul {
    margin-bottom: 35px;
}

.hiw-companies-item-content ul li {
    color: #7f7f7f;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    margin-bottom: 15px;
    padding-left: 41px;
    position: relative;
}

.hiw-companies-item-content ul li:last-child {
    margin-bottom: 0px;
}

.hiw-companies-item-content ul li:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 13px;
    height: 26px;
    background: url(../img/icon-bullet.svg) no-repeat center center;
}

.hiw-item {
    position: relative;
}

.hiw-companies-features .hiw-item:last-child:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -190px;
    width: 838px;
    height: 640px;
    background: url(../img/orn-two-shapes-mirror.svg) no-repeat center center / 100% 100%;
    z-index: -1;
}
.hiw-companies-features .hiw-companies-item-image,
.hiw-companies-features .hiw-companies-item-content {
    position: relative;
    z-index: 2;
}

/* optional blue */

.optional-blue-section {
    background-size: cover !important;
    padding-top: 540px;
    padding-bottom: 300px;
}

.optional-blue-section .section-title {
    margin-bottom: 45px;
}
.optional-blue-section .section-title h3 {
    opacity: 1;
}
.optional-blue-section .section-title p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    opacity: 1;
}

.hiw-companies-item-image {
    padding-right: 20px;
}

.hiw-companies-item-image.large-push-6 {
    padding-right: 0;
    padding-left: 20px;
}

.hiw-participans-image {
    padding-bottom: 125%;
    background-size: cover !important;
}

.hiw-participants-features {
    counter-reset: item;
}

.hiw-participants-features .hiw-companies-item-content:before {
    content: "0"counters(item, "") "";
    counter-increment: item;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 15px;
}

.content-overflow {
    position: relative;
    overflow: hidden;
}

.de-features-hold {
    padding-top: 100px;
    position: relative;
}

.de-features-hold:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -440px;
    width: 838px;
    height: 640px;
    background: url(../img/orn-two-shapes.svg) no-repeat center center / 100% 100%;
    z-index: -1;
}
.page-template-hiw-tech-talents .de-features-hold:before {
    z-index: 0;
}



.de-features {
    margin-bottom: 200px;
}
.de-features ul {
    counter-reset: item;
}

.de-features ul li {
    float: left;
    width: 21%;
    margin-right: 18%;
    margin-bottom: 60px;
}

.de-features ul li:nth-child(3n) {
    margin-right: 0%;
}
.de-features ul li:nth-child(3n+1) {
    clear: both;
}

.page-template-hiw-tech-talents .de-features ul li {
    width: 30%;
    margin-right: 5%;
}
.page-template-hiw-tech-talents .de-features ul li:nth-child(3n) {
    margin-right: 0%;
}


.de-feature-icon {
    min-height: 170px;
}
.de-feature-icon > div {
    height: 130px;
}
.de-feature-icon img {
    max-height: 113px;
}

.de-feature-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    margin-bottom: 25px;
}
.de-feature-title:before {
    content: "0"counters(item, "") "";
    counter-increment: item;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #000000;
    margin-bottom: 7px;
}

.de-feature-text {
    opacity: 0.5;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    color: #767676;
}

.intro-button {
    margin-top: 25px;
}

.intro-button a,
.intro-button a:focus,
.intro-button a:active {
    margin-right: 20px;
    min-width: 200px;
    text-align: center;
}
.intro-button a:last-child {
    margin-right: 0px;
}

/* projects */

.fit-carousel-hold {
    margin-bottom: 50px;
}

.fit-carousel-item {
    background: #765bff url(../img/icon-fit-carousel.svg) no-repeat top 40px left 50px;
    min-height: 455px;
    position: relative;
}

.fit-carousel-text {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 50px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.36;
    letter-spacing: -0.15px;
    color: #ffffff;
}

.fit-carousel.owl-carousel .owl-nav button.owl-next, 
.fit-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    outline: none;
    transition: 0.2s;
}
.fit-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.fit-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    transform: translateY(-50%) scale(1.08);
}
.fit-carousel.owl-carousel .owl-nav button.owl-next span, 
.fit-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.fit-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -106px;
    background: #000 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}
.fit-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: #2e2e32 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}

.fit-carousel.owl-carousel .owl-nav button.owl-next {
    right: -106px;
    background: #000 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}
.fit-carousel.owl-carousel .owl-nav button.owl-next:hover {
    background: #2e2e32 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}

.full-image {
    min-height: 125vh;
    background-size: cover !important;
    position: relative;
    margin-bottom: 200px;
}
.full-image:before,
.full-image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

.full-image:before {
    padding-bottom: 12.6%;
    top: -7px;
    background: url(../img/orn-white-top.svg) no-repeat top center / 102% 102%;
}

.full-image:after {
    padding-bottom: 20.2%;
    bottom: -1px;
    background: url(../img/orn-white-bottom.svg) no-repeat top center / 102% 102%;
}

.onboard-block {
    background-color: #f3f3f3;
    padding: 120px 90px;
    position: relative;
    z-index: 2;
}

.onboard-button {
    margin-top: 60px;
}

.onboard-block .faq-answers-block-title:before {
    display: none;
}

.onboard-block .accordion {
    counter-reset: item;
}

.onboard-block .accordion-item {
    position: relative;
}
.onboard-block .accordion-item span {
    position: absolute;
    left: -66%;
    top: 15px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.15px;
    color: #765bff;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.onboard-block .accordion-item span:before  {
    content: '';
    position: absolute;
    background: #765bff;
    width: 50px;
    height: 2px;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
}
.onboard-block .accordion-item span:after {
    content: counters(item, "") "";
    counter-increment: item;
    display: inline-block;
    margin-left: 5px;
}
.onboard-block .accordion-item.is-active span,
.onboard-block .accordion-item:hover span {
    opacity: 1;
    visibility: visible;
}

.join-hold {
    background: #ffda24;
    margin-top: -150px;
    padding-top: 350px;
    padding-bottom: 24%;
    position: relative;
    margin-bottom: 200px;
}
.join-hold:after  {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 20%;
    bottom: -1px;
    background: url(../img/orn-white-bottom.svg) no-repeat top center / 102% 102%;
}

.join-hold .section-title p {
    color: #66570e;
}

.join-features ol {
    counter-reset: item;
}

.join-features ol li {
    position: relative;
    padding-left: 210px;
    margin-bottom: 60px;
    background: url(../img/number-frame.svg) no-repeat left top;
    min-height: 140px;
}

.join-features ol li:last-child {
    margin-bottom: 0px;
}

.join-features ol li:after {
    content: "0"counters(item, "") "";
    counter-increment: item;
    position: absolute;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.15px;
    left: 45px;
    top: 50px;
}

.join-features ol li h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 15px;
}

.join-features ol li p {
    opacity: 0.6;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
}

.perfect-match-list {
    margin-bottom: 200px;
}

.perfect-match-list ul li {
    float: left;
    width: 25%;
    text-align: center;
    margin-bottom: 120px;
}
.perfect-match-list ul li a {
    float: left;
    width: 100%;
    height: 50px;
    transition: 0.2s;
}
.perfect-match-list ul li a:hover {
    opacity: 0.6;
}
.perfect-match-list ul li a img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80px;
    max-width: 220px;
}

.projects-community-hold {
    position: relative;
}

.projects-community-hold {
    position: relative;
}
.projects-community-hold .row {
    position: relative;
    z-index: 2;
}

.projects-community-hold:after {
    position: absolute;
    content: '';
    top: 0;
    right: -2px;
    width: 785px;
    height: 1161px;
    background: url(../img/orn-green-shape2.svg) no-repeat center center / 100% 100%;
}

.projects-community-hold {
    margin-bottom: 220px;
}

.projects-community-hold .section-title {
    margin-bottom: 210px;
}

.projects-community-hold .our-explorer-quote {
    color: #000;
}
.projects-community-hold .our-explorer-title {
    color: #000;
}

.projects-community-hold .explorers-carousel.owl-carousel .owl-nav button.owl-next {
    background: #000 url(../img/arrow-white-right-lg.svg) no-repeat right 13px center;
}
.projects-community-hold .explorers-carousel.owl-carousel .owl-nav button.owl-prev {
    background: #000 url(../img/arrow-white-left-lg.svg) no-repeat left 13px center;
}

.projects-community-hold .explorer-current {
    color: #000;
} 

.projects-community-hold .explorer-mob-arrows a {
    background:#000;
}

.projects-community-hold .explorer-mob-arrows a.explorer-prev {
    background: #000 url(../img/arrow-white-left-lg.svg) no-repeat center center;
}
.projects-community-hold .explorer-mob-arrows a.explorer-next {
    background: #000 url(../img/arrow-white-right-lg.svg) no-repeat center center;
}

.project-optional-hold .hiw-companies-item-content p {
    margin-bottom: 20px;
}

.project-summary {
    margin-bottom: 240px;
}

.project-summary ul li {
    float: left;
    width: 33.333%;
    text-align: center;
    padding: 0 5%;
    margin-bottom: 40px;
}

.project-summary-counter {
    font-size: 70px;
    font-weight: 300;
    letter-spacing: -0.41px;
    color: #000000;
    min-height: 200px;
    line-height: 200px;
    margin-bottom: 55px;
}

.project-summary ul li:nth-child(3n+1) .project-summary-counter {
    background: url(../img/summary-1.svg) no-repeat center center;
}
.project-summary ul li:nth-child(3n+2) .project-summary-counter {
    background: url(../img/summary-2.svg) no-repeat center center;
}
.project-summary ul li:nth-child(3n+3) .project-summary-counter {
    background: url(../img/summary-3.svg) no-repeat center center;
}

.project-summary-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.41;
    letter-spacing: -0.15px;
}

/* home */

.home-intro {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    padding: 150px 0;
}

.de-features.home-features .de-feature-title {
    padding-right: 30%;
}

.home-hiw-companies-features.hiw-companies-features .hiw-item:last-child:before {
    top: -320px;
}


.btn-circle,
.btn-circle:focus,
.btn-circle:active {
    display: inline-block;
    line-height: 1.5;
    color: #000;
    font-size: 20px;
    padding-left: 60px;
    position: relative;
    transition: 0.2s;
}

.btn-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000 url(../img/icon-video.svg) no-repeat center center;
    transition: 0.2s;
}

.btn-circle:hover {
    color: #000;
    opacity: 0.8;
}

.btn-circle:hover:before {
    transform: translateY(-50%) scale(1.15);
}

.home-become-de-hold {
    position: relative;
    background-size: cover !important;
    margin-bottom: 240px;
    padding: 500px 0 400px;
    margin-top: -100px;
}

.home-become-de-hold .row {
    position: relative;
    z-index: 5;
}

.home-become-de-image {
    position: absolute;
    top: 100px;
    bottom: 50px;
    right: 0px;
    text-align: right;
    width: 200%;
    overflow: hidden;

}
.home-become-de-image img {
    height: 100%;
    width: auto;
    margin-right: -50px;
}

.home-become-de-hold:before, 
.home-become-de-hold:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.home-become-de-hold:before {
    padding-bottom: 12.6%;
    top: -7px;
    background: url(../img/orn-white-top.svg) no-repeat top center / 102% 102%;
}

.home-become-de-hold:after {
    padding-bottom: 20.2%;
    bottom: -1px;
    background: url(../img/orn-white-bottom.svg) no-repeat top center / 102% 102%;
}

.home-become-de-hold .hiw-companies-item-content {
    padding-left: 0;
}
.home-become-de-hold .hiw-companies-item-content h4 {
    color: #fff;
}
.home-become-de-hold .hiw-companies-item-content h3 {
    color: #fff;
    opacity: 1;
}
.home-become-de-hold .hiw-companies-item-content p {
    color: #dbd4ff;
}

.home-for-companies-hold {
    position: relative;
    margin-top: 6%;
    margin-bottom: 20%;
}
.home-for-companies-hold:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 80.76%;
    background: url(../img/bg-companies.svg) no-repeat center center / 100% 100%;
}
.home-for-companies-hold .row {
    position: relative;
    z-index: 2;
}

.home-for-companies-hold .hiw-companies-item-content p {
    color: #656565;
}

.home-brands-hold {
    position: relative;
    margin-bottom: 240px;
}
.home-brands-hold:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -190px;
    width: 838px;
    height: 640px;
    background: url(../img/orn-two-shapes.svg) no-repeat center center / 100% 100%;
    z-index: -1;
}



.brands-carousel-title {
    padding-right: 46%;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.25px;
    color: #0f0f0f;
    margin-bottom: 150px;
}

.brands-carousel-item img {
    max-height: 80px;
    max-width: 220px;
}

.video-hold {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-hold iframe, 
.video-hold object, 
.video-hold video, 
.video-hold embed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.reveal-video {

}





.cookies-hold {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 15px;
    z-index: 99;
    background: #e88683;
    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;
}

.cookies-hold a {
    white-space: nowrap;
}
.cookies-hold p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: -0.1px;
    margin-right: 20px;
}

.cookies-hold p a {
    color: #505050;
    transition: 0.2s;
}
.cookies-hold p a:hover {
    color: #000;
}

.intro-error {
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: 100vh;
    background-size: cover !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.error404 .footer {
    display: none;
}

.text-page-intro {
    padding: 220px 0 100px;
    border-bottom: 1px solid #313132;
    background: #000;
}

.simple-page-hold {
    background: #000;
    padding: 150px 0 200px;
    color: #fff;
}

.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.entry h1 {
    font-size: 60px;
}

.entry h2 {
    font-size: 46px;
}

.entry h3 {
    font-size: 40px;
}

.entry h4 {
    font-size: 28px;
}

.entry h5 {
    font-size: 24px;
}

.entry p {
    opacity: 0.7;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    margin-bottom: 60px;
}

.entry ol {
    counter-reset: item;
    margin-bottom: 60px;
}

.entry ol ol {
    margin-bottom: 0;
}

.entry ol li {
    opacity: 0.7;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
}

.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    display: inline-block;
}

.entry ul {
    margin-bottom: 60px;
}

.entry ul ul {
    margin: 0;
}

.entry ul li {
    opacity: 0.7;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.1px;
    padding-left: 20px;
    position: relative;
}

.entry ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.brands-carousel.owl-carousel .owl-nav button.owl-next, 
.brands-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -210px;
    width: 21px;
    height: 21px;
    background: #000;
    border-radius: 50%;
    outline: none;
    transition: 0.2s;
}
.brands-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.brands-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    transform: scale(1.08);
}
.brands-carousel.owl-carousel .owl-nav button.owl-next span, 
.brands-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}
.brands-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.brands-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}
.brands-carousel.owl-carousel .owl-nav button.owl-next.disabled:hover, 
.brands-carousel.owl-carousel .owl-nav button.owl-prev.disabled:hover {
    transform: scale(1);
}

.brands-carousel.owl-carousel .owl-nav button.owl-prev {
    right: calc(((100vw - 1172px) / 2) + 30px);
    background: #000 url(../img/arrow-white-left.svg) no-repeat center center;
}
.brands-carousel.owl-carousel .owl-nav button.owl-next {
    right: calc((100vw - 1172px) / 2);
    background: #000 url(../img/arrow-white-right.svg) no-repeat center center;
}


.brands-carousel.owl-carousel .owl-nav.disabled {
    display: block;
}

.intro-simple-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    text-align: right;
    width: 200%;

}
.intro-simple-image img {
    height: 100%;
    width: auto;
}

.black-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #181623;
    opacity: 0.4;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.black-overlay.close {
    opacity: 0.4;
    visibility: visible;
}

.de-feature-icon svg {
    width: auto !important;
}

.intro-text-companies {
    width: 56%;
}

.reveal-explorer {
    top: 0 !important;
}

.error-button {
    margin-top: 32px;
}

.onboard-hold :last-child>.accordion-content:last-child {
    border-bottom: none;
}

.intro-button.project-intro-button {
    margin-top: 35px;
}

.intro-button.project-intro-button a {
    min-width: 10px;
}

.home-become-de-hold .hiw-companies-item-content {
    padding-right: 2%;
}

.owl-item.active .our-explorer-modal-content {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: 0.3s 0.3s;
    -webkit-transition: 0.3s 0.3s;
    -moz-transition: 0.3s 0.3s;
    -ms-transition: 0.3s 0.3s;
    -o-transition: 0.3s 0.3s;
}
.our-explorer-modal-content {
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
}

.wrapper-overflow {
    position: relative;
    overflow: hidden;
}

.owl-carousel.explorers-carousel .animated {
    animation-duration: 0.3s !important;
}

.intro-simple-pretitle-hold {
    z-index: 20;
}

.faq-topics-hold {
    padding-right: 30px;
}

@media only screen and (min-width: 1920px) {
    .home-for-companies-hold {
        position: relative;
        margin-top: 15%;
    }
}

@media only screen and (max-width: 1800px) {
    .home .intro-text h3 {
        font-size: 70px;
    }
    .home-become-de-hold {
        padding: 350px 0 340px;
    }
    .optional-blue-section {
        padding-top: 350px;
        padding-bottom: 250px;
    }
    .home .intro-text {
        width: 65%;
    }
}

@media only screen and (max-width: 1440px) {
    .faq-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -80px;
    }
    .faq-carousel.owl-carousel .owl-nav button.owl-next {
        right: -80px;
    }
    .explorers-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -80px;
    }
    .explorers-carousel.owl-carousel .owl-nav button.owl-next {
        right: -80px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -80px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-next {
        right: -80px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -80px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-next {
        right: -80px;
    }
}
@media only screen and (max-width: 1366px) {
    .faq-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    .faq-carousel.owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
    .explorers-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    .explorers-carousel.owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
}

@media only screen and (max-width: 1280px) {
    .de-features.home-features {
        margin-bottom: 120px;
    }
    .brands-carousel.owl-carousel .owl-nav button.owl-prev {
        right: calc(10% + 30px);
    }
    .brands-carousel.owl-carousel .owl-nav button.owl-next {
        right: 10%;
    }
    .home-become-de-hold {
        margin-bottom: 200px;
        margin-top: -50px;
        padding: 300px 0 300px;
    }
    .home-brands-hold {
        margin-bottom: 200px;
    }
    .brands-carousel.owl-carousel .owl-nav button.owl-next, .brands-carousel.owl-carousel .owl-nav button.owl-prev {
        top: -160px;
    }
    .brands-carousel-title {
        font-size: 40px;
        margin-bottom: 100px;
    }
    .de-features.home-features .de-feature-title {
        padding-right: 17%;
    }
    .home-intro {
        font-size: 34px;
        padding: 120px 0;
    }
    .simple-page-hold {
        padding: 120px 0 160px;
    }
    .text-page-intro {
        padding: 180px 0 90px;
    }
    .project-summary {
        margin-bottom: 180px;
    }
    .projects-community-hold {
        margin-bottom: 180px;
    }
    .projects-community-hold:after {
        top: 50px;
        width: 400px;
        height: 600px;
    }
    .projects-community-hold .section-title {
        margin-bottom: 150px;
    }
    .join-hold {
        padding-top: 260px;
    }
    .full-image {
        margin-bottom: 160px;
    }
    .about-team-hold:before {
        top: 0px;
    }
    .hiw-companies-features .hiw-item:last-child:before {
        top: -90px;
    }
    .de-features-hold:before {
        top: -300px;
    }
    .optional-blue-section {
        padding-top: 320px;
        padding-bottom: 220px;
    }
    .hiw-companies-item-content.large-pull-6 {
        padding-right: 12%;
    }
    .hiw-item {
        margin-bottom: 160px;
    }
    .how-it-works-companies-hold {
        padding-top: 120px;
    }
    .hiw-companies-item-content {
        padding-left: 8%;
    }
    .hiw-companies-item-content h3 {
        font-size: 54px;
    }
    .about-team-hold {
        padding-top: 150px;
    }
    .faq-answers-block {
        padding: 60px 60px;
        margin-bottom: 60px;
    }
    .intro-simple-bg {
        padding-top: 200px;
        padding-bottom: 180px;
    }
    .our-explorer-modal-content {
        padding-left: 8%;
        padding-right: 0%;
    }
    .our-explorer-content-padd {
        padding-left: 40px;
    }
    .our-explorer-quote {
        font-size: 38px;
        margin-bottom: 40px;
    }
    .section-title-lg {
        font-size: 60px;
    }
    .row {
        padding-left: 10%;
        padding-right: 10%;
    }
    .footer-top-hold {
        padding: 130px 0 90px;
    }
    .footer-bottom-hold {
        padding: 70px 0 90px;
    }
    .our-companies-hold {
        padding-bottom: 150px;
    }
    .intro-simple {
        padding-top: 170px;
        padding-bottom: 120px;
    }
    .our-companies-list ul li a {
        padding: 80px 16% 90px;
    }
    .contacts-top {
        margin-bottom: 80px;
    }
    .contacts-list {
        margin-bottom: 120px;
    }
    .intro-text h3 {
        font-size: 60px;
    }
    .home .intro-text h3 {
        font-size: 60px;
    }
    .section-title h3 {
        font-size: 54px;
    }
    .intro-text p {
        font-size: 22px;
    }
    .intro-link, .intro-link:focus, .intro-link:active {
        left: 10%;
    }
    .carousel-progress.team-carousel-progress {
        margin-bottom: 180px;
    }
    .perfect-match-list {
        margin-bottom: 120px;
    }
}

#animationIntro {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

/* animations */

.animation-element.fade-up {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
	-moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.animation-element.fade-up.in-view {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.animation-element.fade-up-absolute {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
	-moz-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animation-element.fade-up-absolute.in-view {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.animation-element.fade-up-later {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
	-moz-transition: all 0.6s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition: all 0.6s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-o-transition: all 0.6s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.6s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.animation-element.fade-up-later.in-view {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.animation-element.intro-image {
    opacity: 0;
    -webkit-transform: translate(50px, 0px);
    -moz-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
	-moz-transition: all 718.471ms 0.5s cubic-bezier(0.25, 0.79, 0.45, 0.94);
	-webkit-transition: all 718.471ms 0.5s cubic-bezier(0.25, 0.79, 0.45, 0.94);
	-o-transition: all 718.471ms 0.5s cubic-bezier(0.25, 0.79, 0.45, 0.94);
	transition: all 718.471ms 0.5s cubic-bezier(0.25, 0.79, 0.45, 0.94);
}

.animation-element.intro-image.in-view {
    opacity: 1;
    -webkit-transform: translate(0px, -50px);
    -moz-transform: translate(0px, -50px);
    transform: translate(0px, -50px);
}


@media only screen and (max-width: 1100px) {
    .copyrights {
        width: 100%;
        text-align: left;
    }
    .footer-text {
        width: 100%;
        margin-bottom: 65px;
    }
    .error-button {
        margin-top: 20px;
    }
    .intro-text-companies {
        width: 100%;
    }
    .home-become-de-image img {
        margin-right: -120px;
    }
    .home-become-de-image {
        top: 70px;
    }
    .home-become-de-hold .hiw-companies-item-content {
        width: 50%;
    }
    .intro-simple-image {
        display: none;
    }
    .home-brands-hold {
        margin-bottom: 140px;
    }
    .brands-carousel.owl-carousel .owl-nav button.owl-next, .brands-carousel.owl-carousel .owl-nav button.owl-prev {
        top: -135px;
    }
    .brands-carousel-title {
        padding-right: 25%;
        font-size: 36px;
        margin-bottom: 80px;
    }
    .home-become-de-hold {
        margin-bottom: 140px;
        padding: 220px 0 220px;
    }
    .de-features.home-features {
        margin-bottom: 80px;
    }
    .home-intro {
        font-size: 32px;
        padding: 100px 0 110px;
    }
    .project-summary ul li {
        padding: 0 2%;
    }
    .projects-community-hold {
        margin-bottom: 140px;
    }
    .projects-community-hold .section-title {
        margin-bottom: 120px;
    }
    .perfect-match-list ul li {
        width: 33%;
        margin-bottom: 50px;
    }
    .join-hold {
        margin-bottom: 160px;
    }
    .faq-accordion .accordion-title:before {
        top: 20px;
    }
    .onboard-block {
        padding: 80px 70px;
    }
    .full-image {
        margin-bottom: 120px;
    }
    .fit-carousel-item {
        min-height: 380px;
    }
    .fit-carousel-text {
        bottom: 40px;
        padding: 0px 40px;
        font-size: 20px;
    }
    .onboard-block .accordion-item span {
        font-size: 22px;
    }
    .hiw-participants-features .hiw-companies-item-content:before {
        font-size: 18px;
    }
    .optional-blue-section .section-title p {
        font-size: 22px;
    }
    .optional-blue-section {
        padding-top: 230px;
        padding-bottom: 170px;
    }
    .how-it-works-companies-hold {
        padding-top: 100px;
    }
    .hiw-item {
        margin-bottom: 100px;
    }
    .hiw-companies-item-content h3 {
        font-size: 44px;
    }
    .nav ul li {
        margin-right: 50px;
    }
    .team-carousel-hold {
        margin-bottom: 40px;
    }
    .intro-text p {
        font-size: 20px;
    }
    .section-title h3 {
        font-size: 44px;
    }
    .intro-text h3 {
        font-size: 70px;
        line-height: 1.1
    }
    .home .intro-text h3 {
        font-size: 70px;
    }
    .about-intro-title {
        padding-top: 100px;
    }
    .section-title {
        margin-bottom: 80px;
    }
    .faq-answers-block-title {
        margin-bottom: 25px;
    }
    .faq-accordion .accordion-title {
        font-size: 22px;
    }
    .faq-accordion .accordion-content {
        padding: 20px 0 0px;
        padding-right: 40px;
    }
    .faq-answers-block {
        padding: 50px 50px;
        margin-bottom: 50px;
    }
    .faq-carousel-link {
        left: 40px;
    }
    .faq-carousel-item a {
        padding: 50px 40px 80px;
        min-height: 380px;
    }
    .contacts-list {
        margin-bottom: 100px;
    }
    .contact-list-item {
        padding: 70px 8%;
    }
    .contacts-top {
        padding: 90px 8%;
        padding-right: 35%;
        margin-bottom: 60px;
    }
    .intro-simple-bg {
        padding-top: 180px;
        padding-bottom: 160px;
    }
    .our-explorer-content-padd {
        padding-left: 0px;
    }
    .our-explorer-quote {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .our-explorers-list ul li {
        margin-bottom: 100px;
    }
    .our-explorer-image {
        margin-bottom: 25px;
    }
    .section-title-lg {
        font-size: 50px;
    }
    .intro-simple-pretitle {
        margin-bottom: 30px;
        font-size: 22px;
    }
    .our-companies-hold {
        padding-bottom: 120px;
    }
    .intro-simple {
        padding-bottom: 90px;
    }
    .our-companies-list ul li:nth-child(2n) a {
        padding-right: 0;
    }
    .our-companies-list ul li:nth-child(2n+1) a {
        padding-left: 0;
    }
    .contact-list-left {
        padding-right: 10%;
    }
    .contact-list-right p {
        font-size: 20px;
    }
    .carousel-progress {
        margin-bottom: 100px;
    }
    .intro-full {
        min-height: 1px;
        padding-top: 205px;
        padding-bottom: 300px;
    }
    #animationIntro {
        top: auto;
        bottom: 0;
    }
    .home .intro-text {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) {
    .mob-nav-sec-hold,
    .mob-nav-hold {
        display: none !important;
    }
}


@media only screen and (max-width: 1023px) {
    .home-brands-hold:before {
        top: -90px;
        width: 420px;
        height: 320px;
    }
    .home-become-de-hold .hiw-companies-item-content {
        width: 60%;
    }
    .home-become-de-image img {
        margin-right: -150px;
    }
    .home-become-de-image {
        top: 0px;
        bottom: 0px;
    }
    .intro-bg-simple:after {
        bottom: -6px;
    }
    .home-become-de-hold-mob {
        margin-bottom: 100px;
    }
    .home-become-de-hold {
        min-height: 700px;
        margin-bottom: 80px;
    }
    .brands-carousel.owl-carousel .owl-nav button.owl-next, .brands-carousel.owl-carousel .owl-nav button.owl-prev {
        top: -105px;
    }
    .brands-carousel-title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    .home-for-companies-hold:before {
        top: 45%;
        padding-bottom: 130%;
        background: url(../img/bg-companies.svg) no-repeat center center / 150%;
    }
    .home-for-companies-hold {
        margin-top: 0%;
        margin-bottom: 0%;
    }
    .home-become-de-hold {
        padding: 190px 0 190px;
    }
    .home-hiw-companies-features.hiw-companies-features .hiw-item:last-child:before {
        top: -170px;
    }
    .home-intro {
        font-size: 26px;
        padding: 80px 0 100px;
    }
    .project-summary {
        margin-bottom: 140px;
    }
    .project-summary-title {
        font-size: 20px;
    }
    .project-summary-counter {
        margin-bottom: 25px;
        font-size: 50px;
        background-size: contain !important;
    }
    .projects-community-hold .section-title {
        margin-bottom: 100px;
    }
    .projects-community-hold {
        margin-bottom: 120px;
    }
    .perfect-match-list ul li {
        margin-bottom: 40px;
    }
    .perfect-match-list ul li a img {
        max-height: 50px;
        max-width: 140px;
    }
    .join-features ol li {
        padding-left: 170px;
        min-height: 140px;
    }
    .full-image {
        margin-bottom: 100px;
    }
    .fit-carousel-hold {
        margin-bottom: 40px;
    }
    .onboard-block .accordion-item span {
        display: none;
    }
    .about-team-hold:before {
        top: -40px;
        width: 419px;
        height: 320px;
    }
    .hiw-companies-features .hiw-item:last-child:before {
        top: auto;
        bottom: 250px;
        left: 20%;
        width: 419px;
        height: 320px;
    }
    .de-features-hold:before {
        top: -120px;
        left: 35%;
        width: 419px;
        height: 320px;
    }
    .de-features-hold .section-title {
        margin-bottom: 80px;
    }
    .de-features-hold {
        padding-top: 50px;
    }
    .de-features {
        margin-bottom: 120px;
    }
    .de-feature-icon {
        min-height: 140px;
    }
    .de-features ul li {
        width: 100%;
        margin-right: 0%;
    }
    .page-template-hiw-tech-talents .de-features ul li {
        width: 100%;
        margin-right: 0%;
    }
    .de-feature-icon > div svg {
        width: auto !important;;
    }
    .hiw-companies-item-image {
        padding-right: 0px;
    }
    .hiw-companies-item-image.large-push-6 {
        padding-left: 0px;
    }
    .optional-blue-section .section-title p {
        font-size: 20px;
    }
    .hiw-companies-item-content.large-pull-6 {
        padding-right: 0%;
    }
    .hiw-companies-item-content {
        padding-left: 0%;
    }
    .hiw-companies-item-image {
        text-align: center;
        margin-bottom: 50px;
    }

    .hiw-companies-item-image img {
       max-width: 560px;
       max-height: 600px;
    }
    .hiw-item {
        display: block;
    }
    .hiw-companies-item-content h3 {
        font-size: 38px;
    }
    .header {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .header.header-sticky .logo img {
        max-width: 200px;
    }
    .header.header-sticky .nav-trigger {
        padding-top: 4px;
    }
    .intro-text p {
        font-size: 17px;
        line-height: 1.65;
    }
    .section-title h3 {
        font-size: 38px;
    }
    .row.row-full {
        padding-left: 50px;
        padding-right: 50px;
    }
    .faq-accordion .accordion-title:before {
        top: 17px;
    }
    .faq-accordion .accordion-content {
        font-size: 15px;
        padding: 15px 0 0px;
        padding-right: 0;
    }
    .faq-accordion .accordion-title {
        font-size: 17px;
    }
    .faq-answers-block {
        padding: 50px 30px 60px;
        margin-bottom: 40px;
    }
    .faq-carousel-hold {
        margin-bottom: 40px;
    }
    .carousel-progress {
        margin-bottom: 80px;
    }
    .faq-carousel-item a {
        min-height: 320px;
    }
    .contacts-list {
        margin-bottom: 80px;
    }
    .intro-simple-bg {
        padding-top: 160px;
        padding-bottom: 150px;
    }
    .contact-list-right p {
        font-size: 18px;
    }
    .contact-list-right {
        padding-left: 0%;
    }
    .contact-list-left p {
        font-size: 15px;
    }
    .contact-list-left h3 {
        font-size: 30px;
    }
    .contact-list-item {
        padding: 50px 0;
    }
    .contacts-top {
        font-size: 20px;
        padding: 60px 8%;
        text-align: center;
        padding-bottom: 130px;
        margin-bottom: 50px;
        line-height: 1.65;
    }
    .contacts-top a {
        position: absolute;
        top: auto;
        transform: translateY(0%);
        bottom: 40px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .our-explorer-quote {
        font-size: 28px;
    }
    .our-explorer-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .our-explorers-hold {
        padding: 0 0 50px;
    }
    .our-explorers-list ul li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 80px;
    }
    .our-explorers-list ul li:nth-child(3n) {
        margin-right: 4%;
    }
    .our-explorers-list ul li:nth-child(2n) {
        margin-right: 0%;
    }
    .our-explorers-list ul li:nth-child(3n+1) {
        clear: none;
    }
    .our-explorers-list ul li:nth-child(2n+1) {
        clear: both;
    }
    .our-companies-list ul li a {
        padding: 60px 16% 60px;
    }
    .footer-top-hold {
        padding: 90px 0 80px;
    }
    .footer-logo {
        margin-bottom: 40px;
    }
    .footer-bottom-hold {
        padding: 60px 0 70px;
    }
    .our-companies-hold {
        padding-bottom: 90px;
    }
    .section-title-lg {
        font-size: 44px;
    }
    .our-company-text {
        font-size: 15px;
    }
    .our-company-link a {
        font-size: 15px;
    }
    .faq-answers-block-title {
        margin-bottom: 15px;
    }
    .team-carousel-image {
        margin-bottom: 20px;
    }
    .carousel-progress.team-carousel-progress {
        margin-bottom: 160px;
    }
    .section-title {
        margin-bottom: 60px;
    }
    .about-team-hold {
        padding-top: 100px;
    }
    .onboard-block {
        padding: 70px 50px;
    }
    .onboard-button {
        margin-top: 40px;
    }
    .join-hold {
        margin-bottom: 140px;
        margin-bottom: 30%;
        padding-bottom: 35%;
    }
    .join-hold:after {
        padding-bottom: 21%;
        bottom: -5px;
    }
    .join-features ol li h3 {
        font-size: 24px;
    }
    .entry h1, .entry h2, .entry h3, .entry h4, .entry h5 {
        margin-bottom: 10px;
    }
    .entry h1 {
        font-size: 32px;
    }
    .entry h2 {
        font-size: 28px;
    }
    .entry h3 {
        font-size: 24px;
    }
    .entry h4 {
        font-size: 20px;
    }
    .entry h5 {
        font-size: 18px;
    }
    .simple-page-hold {
        padding: 100px 0 120px;
    }
    .text-page-intro {
        padding: 160px 0 80px;
    }
}

@media screen and (max-width:639px) {
    .footer-logos {
        margin-bottom: 25px;
    }
    .footer-text .footer-text-flag {
        max-width: 56px;
        position: static;
        margin-right: 10px;
    }
    .footer-text .footer-text-logo {
        max-width: 110px;
        position: static;
        margin-left: 10px;
    }
    .page-template-meet-companies .black-overlay,
    .page-template-meet-explorers .black-overlay {
        display: none;
    }
    .intro-simple-pretitle > span:hover .intro-simple-pretitle-sublinks {
        transform: translate(-50%, 0px);
        opacity: 0;
        visibility: hidden;
    }
    .intro-simple-pretitle > span.active .intro-simple-pretitle-sublinks {
        transform: translate(-50%, 0px);
        opacity: 1;
        visibility: visible;
    }
    .intro-simple-pretitle > span:hover:after {
        transform: rotate(0deg);
    }
    .intro-simple-pretitle > span.active:after {
        transform: rotate(180deg);
    }
    .copyrights a:before {
        display: none;
    }
    .copyrights a:hover:before {
        display: none;
    }
    .about-companies-list.our-companies-list ul li:nth-last-child(-n+2) {
        border-color: #e6e6e6;
    }
    .home-become-de-image img {
        margin-right: -40px;
    }
    .home .intro-button {
        margin-top: 0px;
    }
    .home-brands-hold:before {
        display: none;
    }
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-next, 
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        top: -105px;
        width: 21px;
        height: 21px;
        background: #000;
        border-radius: 50%;
        outline: none;
        transition: 0.2s;
    }
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-next {
        right: 10%;
        background: #000 url(../img/arrow-white-right.svg) no-repeat center center;
    }
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-prev {
        right: calc(10% + 30px);
        background: #000 url(../img/arrow-white-left.svg) no-repeat center center;
    }
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-next span, 
    .brands-mob-carousel.owl-carousel .owl-nav button.owl-prev span {
        display: none;
    }
    .brands-carousel-item img {
        max-width: 100%;
    }
    .brands-carousel-item-mob {
        width: 160px;
        padding-left: 20px;
    }
    .fit-item-mob {
        font-size: 17px;
        font-weight: 300;
        line-height: 1.65;
        margin-bottom: 40px;
        color: #fff;
        padding-top: 100px;
        background: url(../img/icon-fit-carousel.svg) no-repeat top left / 70px;
    }
    .single-project .full-image:before {
        background: url(../img/orn-purple-top.svg) no-repeat top center / 102% 102%;
    }
    .fit-wrapper {
        background: #765bff;
        padding: 95px 0 50px;
    }
    .fit-wrapper .section-title h3 {
        color: #fff;
    }
    .join-hold {
        padding-bottom: 40%;
    }
    .error-button {
        margin-top: 10px;
    }
    .our-explorers-list ul li a:hover .our-explorer-image {
        transform: scale(1);
    }
    .intro-link, .intro-link:focus, .intro-link:active {
        left: 8%;
    }
    .de-feature-icon > div {
        height: 90px;
    }
    .intro-link, .intro-link:focus, .intro-link:active {
        bottom: 90px;
    }
    .intro-full {
        padding-top: 95px;
        padding-bottom: 150px;
    }
    .intro-bg-simple:after {
        bottom: -4px;
    }
    .home-become-de-hold:before {
        padding-bottom: 14.6%;
        top: -7px;
    }
    .home-become-de-hold {
        min-height: 560px;
        margin-top: 0;
    }
    .home-become-de-hold-mob {
        margin-bottom: 70px;
    }
    .home-brands-hold {
        margin-bottom: 120px;
    }
    .brands-carousel.owl-carousel .owl-item img {
        max-width: 130px;
        max-height: 40px;

    }
    .brands-carousel-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .home-for-companies-hold {
        margin-bottom: 80px;
    }
    .home-for-companies-hold:before {
        top: 58%;
        padding-bottom: 248%;
        background: url(../img/bg-companies.svg) no-repeat center center / 340%;
    }
    .de-features.home-features {
        margin-bottom: 40px;
    }
    .de-features.home-features ul li {
        margin-bottom: 40px;
    }
    .home-intro {
        font-size: 20px;
        text-align: left;
        padding: 70px 0 80px;
    }
    .intro-button a,
    .intro-button a:focus,
    .intro-button a:active {
        margin-right: 10px;
        min-width: 10px;
        float: left;
        width: calc(50% - 5px);
        padding-left: 10px;
        padding-right: 10px;
    }
    .reveal-video  {
        padding-top: 35% !important;
    }
    .reveal-video .row {
        padding-left: 15px;
        padding-right: 15px;
    }
    .simple-page-hold {
        padding: 80px 0 110px;
    }
    .text-page-intro {
        padding: 150px 0 60px;
    }
    .entry ol {
        margin-bottom: 30px;
    }
    .entry ul {
        margin-bottom: 30px;
    }
    .entry ul li:before {
        top: 10px;
    }
    .entry ol li {
        font-size: 15px;
    }
    .entry ul li {
        font-size: 15px;
    }
    .entry h1, .entry h2, .entry h3, .entry h4, .entry h5 {
        margin-bottom: 10px;
    }
    .entry h1 {
        font-size: 28px;
    }
    .entry h2 {
        font-size: 24px;
    }
    .entry h3 {
        font-size: 20px;
    }
    .entry h4 {
        font-size: 18px;
    }
    .entry h5 {
        font-size: 16px;
    }
    .entry p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .project-summary {
        margin-bottom: 80px;
    }
    .project-summary-title {
        font-size: 17px;
    }
    .project-summary-counter {
        font-size: 40px;
        min-height: 130px;
        line-height: 130px;
        margin-bottom: 20px;
    }
    .project-summary ul li {
        width: 100%;
    }
    .section-title-sm-left {
        text-align: left;
    }
    .intro-button {
        margin-top: 20px;
    }
    .projects-community-hold:after {
        width: 200px;
        height: 300px;
    }
    .projects-community-hold {
        margin-bottom: 80px;
    }
    .projects-community-hold .section-title {
        margin-bottom: 80px;
    }
    .perfect-match-list {
        margin-bottom: 80px;
    }
    .perfect-match-list ul li a {
        height: 50px;
    }
    .perfect-match-list ul li {
        margin-bottom: 20px;
        width: 50%;
    }
    .join-hold:after {
        bottom: -2px;
    }
    .join-features ol li:after {
        font-size: 17px;
        left: 32px;
        top: 38px;
    }
    .join-features ol li p {
        font-size: 15px;
    }
    .join-features ol li h3 {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: -0.1px;
        margin-bottom: 10px;
    }
    .join-features ol li {
        padding-left: 0px;
        min-height: 1px;
        padding-top: 115px;
        background: url(../img/number-frame.svg) no-repeat left top / 84px 97px;
    }
    .join-hold {
        margin-top: 0;
        padding-top: 100px;
        margin-bottom: 100px;
    }
    .row.nopad-sm {
        padding-left: 0;
        padding-right: 0;
    } 
    .onboard-block {
        padding: 50px 8% 70px;
    }
    .full-image {
        margin-bottom: 80px;
        min-height: 100vh;
    }
    .fit-carousel-item {
        min-height: 300px;
    }
    .fit-carousel-hold {
        margin-bottom: 30px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-next {
        right: -19px;
    }
    .fit-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -19px;
    }
    .fit-carousel-text {
        font-size: 17px;
    }
    .full-image:before {
        top: -2px;
    }
    .footer-socials ul li a {
        text-indent: -9999px;
        display: inline-block;
        width: 20px;
        height: 20px;
        border: none;
    }
    .footer-socials ul li a:hover {
        border: none;
        opacity: 0.7;
    }
    .footer-socials ul li.soc-fb a {
        background: url(../img/soc-fb.svg) no-repeat center center;
    }
    .footer-socials ul li.soc-tw a {
        background: url(../img/soc-tw.svg) no-repeat center center;
    }
    .footer-socials ul li.soc-in a {
        background: url(../img/soc-in.svg) no-repeat center center;
    }
    .header.header-sticky .logo img {
        max-width: 195px;
    }
    .de-features-hold {
        padding-top: 20px;
    }
    .de-features {
        margin-bottom: 50px;
    }
    .de-feature-icon {
        min-height: 1px;
        margin-bottom: 33px;
    }
    .de-feature-icon img {
        max-height: 76px;
    }
    .de-feature-title:before {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .de-feature-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .de-feature-text {
        font-size: 15px;
    }
    .hiw-participants-features .hiw-companies-item-content:before {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .footer:before {
        padding-bottom: 3%;
    }
    .optional-blue-section {
        padding-top: 200px;
        padding-bottom: 150px;
    }
    .optional-blue-section .section-title p {
        font-size: 17px;
    }
    .hiw-item {
        margin-bottom: 70px;
    }
    .how-it-works-companies-hold {
        padding-top: 85px;
    }
    .hiw-companies-item-image img {
        max-width: 100%;
    }
    .hiw-companies-item-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .hiw-companies-item-content ul li {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .hiw-companies-item-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .hiw-companies-item-content h3 {
        font-size: 30px;
    }
    .intro-simple-bg {
        background-size: cover !important;
    }
    .mob-nav-trigger a {
        top: 8px;
    }
    .mob-nav-sec-hold {
        padding: 100px 8% 22px;
    }
    .mob-nav {
        padding-left: 0%;
    }
    .mob-nav ul li.menu-item-has-children a:after {
        top: 50%;
    }
    .mob-nav ul li.menu-item-has-children a {
        padding-right: 36px;
    }
    .mob-nav ul li a {
        font-size: 24px;
    }
    .about-team-hold {
        padding-top: 80px;
    }
    .section-title p {
        margin-top: 20px;
        font-size: 15px;
    }
    .about-intro-title {
        padding-top: 80px;
    }
    .section-title {
        margin-bottom: 60px;
    }
    .carousel-progress.team-carousel-progress {
        margin-bottom: 140px;
    }
    .team-carousel-hold {
        margin-bottom: 30px;
    }
    .team-carousel-info {
        font-size: 15px;
    }
    .team-carousel-name {
        font-size: 17px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -19px;
    }
    .team-carousel.owl-carousel .owl-nav button.owl-next {
        right: -19px;
    }
    .intro-link, .intro-link:focus, .intro-link:active {
        font-size: 15px;
    }
    .header {
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .logo img {
        max-width: 195px;
    }
    .section-title h3 {
        font-size: 30px;
    }
    .intro-text h3 {
        font-size: 34px;
        line-height: 1.2;
    }
    .home .intro-text h3 {
        font-size: 34px;
    }
    .reveal-explorer .close-button span {
        display: none;
    }
    .intro-simple-pretitle-sublinks {
        min-width: 290px;
        padding: 30px 30px;
    }
    .intro-simple-pretitle > span:after {
        top: 0px;
    }
    .faq-hold {
        margin-bottom: 140px;
    }
    .faq-answers-block {
        padding: 50px 8% 60px;
    }
    .faq-answers-block {
        margin-bottom: 20px;
    }
    .row.row-faq {
        padding: 0;
    }
    .faq-accordion .accordion-content {
        padding: 10px 0 0px;
    }
    .faq-topics-hold {
        margin-bottom: 80px;
        padding: 0 8%;
    }
    .faq-carousel-hold {
        margin-bottom: 30px;
    }
    .faq-carousel-link {
        font-size: 15px;
    }
    .faq-carousel-title {
        font-size: 17px;
        line-height: 1.65;
    }
    .faq-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -19px;
    }
    .faq-carousel.owl-carousel .owl-nav button.owl-next {
        right: -19px;
    }
    .contact-list-right p {
        font-size: 17px;
        line-height: 1.65;
    }
    .contact-list-left {
        padding-right: 0%;
        margin-bottom: 30px;
    }
    .contact-list-left h3 {
        font-size: 20px;
    }
    .btn-black, .btn-black:focus, .btn-black:active {
        font-size: 15px;
        padding: 15px 40px;
    }
    .btn-blue, .btn-blue:focus, .btn-blue:active {
        font-size: 15px;
        padding: 15px 40px;
    }
    .contacts-top {
        font-size: 17px;
        padding: 40px 10%;
        padding-bottom: 124px;
        margin-top: -55px;
        margin-bottom: 40px;
    }
    .intro-simple-bg {
        padding-top: 135px;
        padding-bottom: 130px;
    }
    .reveal-explorer .close-button {
        right: 5px;
        top: 4px;
    }
    .explorer-mob-arrows {
        display: block;
    }
    .owl-carousel.explorers-carousel .owl-nav {
        display: none;
    }
    .reveal-explorer {
        padding: 54px 0 50px;
    }
    .our-explorer-modal-image-hold {
        margin-bottom: 40px;
    }
    .our-explorer-modal-content .our-explorer-title {
        font-size: 17px;
    }
    .our-explorer-modal-content .our-explorer-position {
        font-size: 15px;
    }
    .our-explorer-quote {
        font-size: 22px;
        letter-spacing: -0.1px;
        margin-bottom: 20px;
    }
    .our-explorer-modal-content {
        padding-left: 0%;
        padding-bottom: 0;
    }
    .explorers-carousel-item {
        display: block;
    }
    .mob-nav-hold {
        padding: 100px 8% 22px;
    }
    .mob-nav-trigger {
        margin-bottom: 40px;
    }
    .our-explorer-image {
        margin-bottom: 20px;
    }
    .our-explorer-position {
        font-size: 14px;
    }
    .our-explorer-title {
        font-size: 15px;
        margin-bottom: 0;
    }
    .our-explorers-list ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 40px;
    }
    .our-explorers-list ul li:nth-child(3n) {
        margin-right: 0%;
    }
    .nav-trigger {
        padding-top: 4px;
    }
    .copyrights a {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
    .copyrights a:hover {
        border-color: transparent;
    }
    .copyrights {
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 60px;
        text-align: center;
    }
    .footer-logo img {
        max-width: 170px;
    }
    .intro-simple-pretitle {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .row.row-full {
        padding-left: 8%;
        padding-right: 8%;
    }
    .our-companies-list ul li:last-child {
        border-bottom: none;
    }
    .our-companies-hold {
        padding-bottom: 60px;
    }
    .intro-simple {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .section-title-lg {
        font-size: 32px;
    }
    .our-companies-list ul li:nth-last-child(-n+2) {
        border-color: #3c3c3c;
    }
    .our-company-logo {
        margin-bottom: 22px;
    }
    .our-companies-list ul li:before {
        display: none;
    }
    .our-companies-list ul li {
        width: 100%;
    }
    .our-companies-list ul li a {
        padding: 50px 0;
    }
    .footer-text {
        text-align: center;
        padding-left: 0;
        font-size: 12px;
        margin-bottom: 35px;
    }
    .footer-socials ul li {
        float: none;
        display: inline-block;
        margin-right: 30px;
    }
    .footer-nav-grid {
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-nav-grid:last-child {
        margin-bottom: 0px;
    }
    .footer-nav ul li a {
        font-size: 15px;
    }
    .footer-nav ul li {
        margin-bottom: 8px;
    }
    .footer-nav-title {
        margin-bottom: 20px;
        font-size: 15px;
    }
    .footer-top-hold {
        padding: 70px 0 60px;
    }
    .row {
        padding-left: 8%;
        padding-right: 8%;
    }
	

}

@media screen and (max-width:1023px) and (orientation: landscape) {
    .reveal-video {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

@media (orientation: portrait) {
    
    #animationIntro svg {
        width: 200% !important;
        height: auto !important;
    }
}


@media screen and (min-height: 750px) {
    #homeVideo .row, 
    .reveal-explorer .row {
        position: relative;
        top:50%;
        transform: translateY(-50%);
    }
}