body {
    font-family: 'Roboto', sans-serif;
    
	background-size: cover;
	background-attachment: fixed;
	overflow: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
body {
  position: relative
}
strong { font-weight: bold !important; }

section {
    background-color: #ffffff;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    display: block;
}

a {
    color: #ffffff;
	transition: ease-in-out all .2s;
}
a:hover {
    color: #4ce2cb;
}

button {
    cursor: pointer;
    height: 60px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #4ce2cb;
    border: none;
}

button:hover {
    cursor: pointer;
    height: 60px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #4ce2cb;
    background: #ffffff;
    border: 2px solid #4ce2cb;
}

.locked { overflow: hidden; }

.btn-read-more {
    width: 220px;
    height: 60px;
    background: #4ce2cb;
    font-size: 18px;
    line-height: 36px;
    color: rgb(255,255,255);
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid white;
}

.btn-read-more:hover {
  background: transparent;
  color: #4ce2cb;
  border: 2px solid #4ce2cb;
}

.hide {
  display: none;
}

.margin-none {
    margin: 0;
}

.title {
  display: flex;
}

.padding-block {
    padding: 100px 120px;
}

.padding-jobs-block {
    padding-top: 100px;
    padding-bottom: 50px;
}

.divider {
    width: 70px;
    height: 2px;
    margin-top: 25px;
    background-color: #4ce2cb;
}

/* Header */

.header {
    width: 100%;
    height: 1000px;
    background: url(../img/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header .navbar {
    margin: 0px;
    width: 100%;
    height: 90px;
    padding: 0 25px;
    background-color: #ffffff;
	margin:10px;
}

.header-cp {
    width: 100%;
    height: 1000px;
    background: url(../img/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-cp .navbar {
    margin: 0px;
    width: 100%;
    height: 90px;
    padding: 0 25px;
    background-color: #ffffff;
	margin:10px;
}

/* Content */

.content {
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 1000px;
    background-color: rgba(50,50,50, 0.8);
	border-bottom: #4ce2cb 10px solid;
}

.central-block {
    width: 100%;
    text-align: center;
    margin-top: 14%;
}

.central-block h2 {
    font-size: 68px;
    line-height: 78px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
	font-weight: bold;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}

.central-block input {
    width: 600px;
    height: 80px;
    background-color: #ffffff;
    font-size: 24px;
    padding: 20px 50px;
    line-height: 22px;
    color: rgb(153,153,153);
}

.central-block input[placeholder] {
    font-size: 24px;
    line-height: 22px;
    color: rgb(153,153,153);
}
.central-block input::-moz-placeholder {
    font-size: 24px;
    line-height: 22px;
    color: rgb(153,153,153);
} 
.central-block input:-moz-placeholder {
    font-size: 24px;
    line-height: 22px;
    color: rgb(153,153,153);
} 
.central-block input:-ms-input-placeholder {
    font-size: 24px;
    line-height: 22px;
    color: rgb(153,153,153);
}   

.central-block .search-job {
    width: 285px;
    height: 80px;
    background-color: #4ce2cb;
    font-size: 20px;
    line-height: 36px;
    color: rgb(255,255,255);
    font-weight: bold;
    border: 2px solid #4ce2cb;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	transition: .2s ease-in-out all;
}

.central-block .search-job:hover {
  background-color: #ff8100;
  border-color: #ff8100;
  color: #fff;
}

.central-block .search {
    display: flex;
    justify-content: center;
}

.central-block .search input {
	border:0px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	font-weight: lighter;
}

.central-block .search input::placeholder {
  font-size: 24px;
  line-height: 22px;
  color: rgb(153,153,153);
  opacity: 1;
	font-weight: lighter;
}

.central-block .search input:-ms-input-placeholder {
  font-size: 24px;
  line-height: 22px;
  color: rgb(153,153,153);
}

.central-block .search input::-ms-input-placeholder {
  font-size: 24px;
  line-height: 22px;
  color: rgb(153,153,153);
}



/* Video */

#video-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
    left: 0;
    height: 1000px;
	overflow: hidden;
	/* background: url(bg/daisy-stock-poster.jpg) no-repeat; */
	background-size: cover;
}

#video-bg > video {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%; 
	min-height: 100%;
	width: auto;
	height: auto; 
}


/*object-fit: */

 @supports (object-fit: cover) {
     #video-bg > video {
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
     }
 }


/* off scren < 800px: */

/* @media screen and (max-device-width: 800px) {
	#video-bg > video {
		display: none;
		}
	} */

/* Navbar */

.navBurger {
    position: absolute;
    top: 6px;
    cursor: pointer;
    background: #666;
    box-sizing: border-box;
    background-clip: content-box;
    width: 50px;
    height: 23px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 4;
}

.navBurger:hover {
  position: absolute;
    top: 6px;
    cursor: pointer;
    background: #000;
    box-sizing: border-box;
    background-clip: content-box;
    width: 50px;
    height: 23px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 4;
}

.navBurger:hover ~ h6 {
  color: #000;
}

.navBurger::before,
.navBurger::after {
    content: "";
    position: absolute;
    background: #999;
    height: 3px;
    width: 100%;

    will-change: rotate;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navBurger:hover::before,
.navBurger:hover::after {
    background: #000;
}

.navBurger::before {
    top: -10px;
}

.navBurger::after {
    bottom: -10px;
    width: 100%;
}

.navBurger.active {
    background: transparent;
    background-clip: content-box;
}

.navBurger.active:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0;
    background: #eee;
    width: 110%;
}
.navBurger.active:after {
    bottom: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #eee;
    width: 110%;
}

.navBurger.active:hover:before {
  background: #000;
}
.navBurger.active:hover:after {
  background: #000;
}

.overlay {
    position: fixed;
    background: linear-gradient(to right, #4ce2cb, #ff8100);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform-origin: left;
    transform: translate(-100%, 0);
    visibility: hidden;
    transition: all 0.4s linear;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
	z-index:3;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

/* .overlay.open li {
    display: block;
    animation: fadeInRight 0.6s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
    animation-delay: 0.4s;
    transform: rotate(-7deg);
    transform-origin: left;
    -webkit-animation: fadeInRight 0.6s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
    
} */

/* .overlay.open li:nth-of-type(2) {
    animation-delay: 0.5s;
}

.overlay.open li:nth-of-type(3) {
    animation-delay: 0.6s;
}

.overlay.open li:nth-of-type(4) {
    animation-delay: 0.7s;
}

.overlay.open li:nth-of-type(5) {
    animation-delay: 0.8s;
} */

.overlayMenu {
    margin-top: 5vw;
}

.overlayMenu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
    height: 100%;
}

.overlayMenu ul li {
    display: block;
    position: relative;
    opacity: 1;
    width: 100%;
}

.overlayMenu ul li a {
    display: inline-block;
    font-size: 46px;
    line-height: 58px;
    color: 999;
    text-decoration: none;
    transition: 0.2s;
	font-weight: bold;
}

.overlayMenu ul li a:hover::before {
    position: absolute;
    content: "";
    top: 35px;
    left: 0;
    width: 54px;
    height: 3px;
    background-color: #252525;
    transition: 0.4s;
    transform: translateX(-2px);
}

.overlayMenu ul li a:active::before {
    position: absolute;
    content: "";
    top: 35px;
    left: 0;
    width: 54px;
    height: 3px;
    background-color: #252525;
    transition: 0.4s;
    transform: translateX(-2px);
}

.overlayMenu ul li a:hover {
    transform: translateX(-2px);
    padding-left: 80px;
    color: #000;

}

.overlayMenu ul li a:active {
    transform: translateX(-2px);
    padding-left: 80px;
    color: #fff;
}

.overlayMenu ul li a:focus {
    transform: translateX(-2px);
    padding-left: 80px;
    color: #fff;

}

.burger-pop_up h5 {
    font-size: 32px;
    line-height: 22px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

.burger-pop_up .contact-us {
    margin-top: 17vw;
}

.burger-pop_up .social-link {
    margin-top: 17vw;
}

.burger-pop_up .contact-us ul li p {
    font-size: 22px;
    line-height: 36px;
    color: rgb(255,255,255);
    margin-bottom: 0;
}

.burger-pop_up .social-link .overlayMenu {
    position: relative;
    margin-top: 0;
}

.burger-pop_up .social-link ul li a {
    font-size: 30px;
    line-height: 36px;
    color: rgb(255,255,255);
    transition: 0.2s;
}

.burger-pop_up .social-link ul li a i { margin-right: 5px;}

.burger-pop_up .social-link ul li a:hover {
    transform: translateX(-2px);
    color: #fff;
    text-decoration: none;
}

.burger-pop_up .social-link ul li a:active::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 24px;
    height: 3px;
    background-color: #000000;
	cursor: pointer;
}

/* /* .burger-pop_up .social-link ul:nth-child(2) {
    animation-delay: 0.5s;
}

.burger-pop_up .social-link ul:nth-child(3) {
    animation-delay: 0.6s;
}

.burger-pop_up .social-link ul:nth-child(4) {
    animation-delay: 0.7s;
}

.burger-pop_up .social-link ul:nth-child(5) {
    animation-delay: 0.8s;
} */

.navbar-pop-up .text-close {
    margin-left: 80px;
    font-size: 14px;
    color: rgb(255,255,255);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
	margin-top: 22px;
}

.navbar-pop-up {
    margin: 20px;
    max-width: 100%;
    height: 90px;
    padding: 0 25px;
}

.navbar-pop-up .users-block {
    float: right;
}

.navbar-pop-up .users-block a {
    font-size: 14px;
    line-height: 36px;
    padding: 0 10px;
    margin-right: 35px;
    color: white;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 0;
}

.navbar-pop-up .users-block a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

.navbar-pop-up .primary {
    width: 146px;
    height: 36px;
    background-color: white;
    font-size: 14px;
    line-height: 35px;
    color: #4ce2cb;
    font-weight: bold;
    text-align: center;
    border: 2px solid white;
}

.navbar-pop-up .primary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.locked {
    overflow: hidden;
}

.overlay.open .footer-pop-up {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: #000;
    text-align: center;
}

.overlay.open .footer-pop-up p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(153,153,153);
    text-align: center;
    margin-bottom: 0;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 50px;
    }
    100% {
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
    }
}

.menu h6 {
    font-size: 14px;
    line-height: 36px;
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 75px;
}

.header .logo {
    text-align: center;
}

.header .right-block {
    float: right;
}

.header .right-block a {
    font-size: 14px;
    line-height: 36px;
    padding: 0 10px;
    margin-right: 35px;
    color: rgb(0,0,0);
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 0;
}

.header .right-block a:hover {
  color: #4ce2cb;
}

.header .right-block a:hover {
    text-decoration: none;
    cursor: pointer;
}

.header button {
    width: 146px;
    height: 36px;
    background-color: #4ce2cb;
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-align: center;
    border: none;
    text-transform: uppercase;
    border: 2px solid #4ce2cb;
}

.header button:hover {
  background-color: transparent;
  color: #4ce2cb;
  border: 2px solid #4ce2cb;
}

.header-cp .logo {
    text-align: center;
}

.header-cp .right-block {
    float: right;
}

.header-cp .right-block a {
    font-size: 14px;
    line-height: 36px;
    padding: 0 10px;
    margin-right: 35px;
    color: rgb(0,0,0);
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 0;
}

.header-cp .right-block a:hover {
  color: #4ce2cb;
}

.header-cp .right-block a:hover {
    text-decoration: none;
    cursor: pointer;
}

.header-cp button {
    width: 146px;
    height: 36px;
    background-color: #4ce2cb;
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-align: center;
    border: none;
    text-transform: uppercase;
    border: 2px solid #4ce2cb;
}

.header-cp button:hover {
  background-color: transparent;
  color: #4ce2cb;
  border: 2px solid #4ce2cb;
}

/* About Us */

.about-us-block {
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    margin-top: -150px;
    margin-bottom: 55px;
    border-top: 4px solid #4ce2cb;
}

.hidden {
  visibility: hidden;
}

.about-text {
    padding-left: 30px;
}

.about-us-block h5 {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 22px;
    color: rgb(0,0,0);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.about-us-block h3 {
    font-size: 42px;
    line-height: 56px;
    color: rgb(0,0,0);
    font-weight: bold;
    margin-bottom: 25px;
}

.about-us-block p {
    font-size: 20px;
    line-height: 34px;
    color: rgb(0,0,0);
    margin-bottom: 45px;
    font-weight: 100;
}

/* Featured Jobs */

.featured-jobs-block h3 {
    font-size: 42px;
    line-height: 56px;
    color: rgb(0,0,0);
    font-weight: bold;
    margin-bottom: 30px;
    margin-left: 30px;
}

.featured-jobs-block h4 {
    font-size: 36px;
    line-height: 44px;
    padding-right:15px;
    color: #4ce2cb;
    font-weight: bold;
}

.featured-jobs-block .carousel_item {
    padding: 60px 30px 60px 60px;
    height: 600px;
    background: rgba(255,255,255,0.8);
	border-radius: 10px;
}

.featured-jobs-block .carousel_item p {
    margin-bottom: 30px;
    height: 150px;
}

.featured-jobs-block .carousel_item .btn-read-more {
   position: absolute;
   bottom: 60px;
}

.featured-jobs-block .block-info {
    font-size: 22px;
    line-height: 34px;
    color: rgb(0,0,0);
    font-weight: 100;
    padding: 15px 0;
    margin-bottom: 30px;
}

.featured-jobs-block p {
    margin-bottom: 30px;
    font-weight: 100;
}

.hire-talent-and-find-work {
    display: flex;
    height: 480px;
  }
  
  .hire-talent {
    width: 50%;
    padding: 90px 0 0 30px;
    color: #ffffff;
    background: #4ce2cb;
  }
  
  .hire-talent-header {
    display: flex;
    margin: 0 80px;
    font-size: 60px;
    font-weight: 100;
	  color: #828282;
  }

  .hire-talent-header .divider {
    margin: 42px 10px 0 0px;
    background-color: #ffffff;
}
  
  .hire-talent-body {
    margin: 0 160px;
    font-size: 20px;
    font-weight: 100;
	  height: 120px;
  }
  
  .hire-talent button {
    margin: 50px 160px;
    width: 220px;
    color: #fff;
    background: #828282;
  }

  .hire-talent button:hover {
    /*margin: 50px 120px;*/
    width: 220px;
    color: #252525;
    background: #4ce2cb;
    border: 2px solid #828282;
  }
  
  .find-work {
    width: 50%;
    padding: 90px 0 0 30px;
    background: #828282;
  }
  
  .find-work-header {
    display: flex;
    margin: 0 80px;
    font-size: 60px;
    font-weight: 100;
    color: #4ce2cb;
  }

  .find-work-header .divider {
    margin: 42px 10px 0 0px;
	  background: #fff;
}
  
  .find-work-body {
    margin: 0 160px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 100;
	  height: 120px;
  }
  
  .find-work button {
    margin: 50px 160px;
    width: 220px;
	background: #4ce2cb;
  }

.find-work button:hover { background: none; }

  .latest-insights {
      padding: 100px 0 0px 0; 
  }

	.team {
      padding: 100px 0 145px 0; 
  }
  
  .latest-news-header {
    display: flex;
    margin: 0 0 60px 0;
    font-size: 42px;
    font-weight: lighter;
    color: #828282;
  }
  
  .insight-header {
    font-size: 28px;
    font-weight: 500;
    color: #5BE7D8;
    line-height: 34px;
    height: 120px;
  }
  
  .insight-body {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 400;
    color: #828282;
  }
  
  .insight-description button {
    width: 60px;
    font-size: 30px;
    font-weight: 100;
	  border-radius: 50%;
  }


  .team img {
    max-width: 650px;
	  border-radius: 50%;
	  min-height: 133px;
    object-fit: cover;
	 
  }

.team .member { margin-bottom: 50px; text-align: center; }
.team .member .fa { font-size: 30px; color: #007bb6; }
  .team-description {
    margin: 30px 0;
  }
  
  .team-header {
    font-size: 30px;
    font-weight: lighter;
  }
  
  .team-body {
    margin: 0px 0;
    font-size: 18px;
    font-weight: 100;
	  margin-bottom: 10px;
  }
  
  .team-description button {
    width: 60px;
    font-size: 30px;
    font-weight: 100;
	  border-radius: 50%;
  }
  
  .latest-news-footer {
    display: flex;
    justify-content: center;
  }
  
  .latest-news-footer button {
    width: 240px;
  }

  .call-to-action {
      background-color: #ffffff;
      padding-bottom: 100px;
  }
  
  .call-to-action-header {
    display: flex;
    font-size: 42px;
    font-weight: lighter;
    color: #828282;
  }
  
  .call-to-action-description {
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: 100;
  }
  
  .call-to-action-form {
    display: flex;
    justify-content: space-between;
  }
  
  .group-input {
    position: relative;
    margin: 25px 0;
    width: 45%;
  }
  
  .group-input input {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    display: block;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  
  .group-input input:focus {
    outline: none;
  }
  
  .call-to-action-form label {
    color: #999;
    margin: -20px 0;
    font-size: 18px;
    font-weight: 100;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 15px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  .group-input input:focus ~ label, input:valid ~ label {
    top: -15px;
    font-size: 14px;
  }
  
  .bar {
    position: relative;
    display: block;
  }
  
  .bar:before, .bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #4ce2cb;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  .bar:before {
    left: 50%;
  }
  
  .bar:after {
    right: 50%;
  }
  
  .group-input input:focus ~ .bar:before,
  .group-input input:focus ~ .bar:after {
    width: 50%;
  }
  
  .call-to-action-button {
    display: flex;
    justify-content: flex-end;
    margin: 30px 0;
  }
  
  .call-to-action-button button {
    width: 220px;
  }
  
  .footer {
    padding: 50px 0;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#252525+0,000000+100 */
background: #252525; /* Old browsers */
background: -moz-linear-gradient(-45deg, #252525 0%, #000000 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, #252525 0%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, #252525 0%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#252525', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .footer-under-logo {
    margin: 50px 0;
    font-size: 16px;
    color: #999999;
    font-weight: 100;
  }
  
  .footer-menu-item {
    margin-left: 50px;
    max-width: 220px;
  }
  
  .footer-menu-item-header {
    font-size: 30px;
    font-weight: 500;
    color: #4ce2cb;
  }
  
  .footer-menu-item-body {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 100;
    color: #ffffff;
	  margin-bottom: 0px;
  }

.footer-menu-item-body .social-link {
    font-size: 30px;
    line-height: 36px;
    color: rgb(255,255,255);
    transition: 0.2s;
	margin-right: 5px;
}

.footer-menu-item-body a:hover { color: #fff; }

.content-block { width: 80%; margin: auto; margin-top: 100px; margin-bottom: 100px; text-align: left; }
.content-block h2 { font-size: 42px;  color: #828282;  }
.content-block .intro { font-size: 25px; line-height: 50px; margin-top: 30px; margin-bottom: 30px; font-weight: 400; }
.content-block p { font-size: 18px; line-height: 24px; font-weight: lighter; color: #828282; }
.content-block h6 { font-size: 20px; line-height: 40px; font-weight: lighter; margin-top: 40px; color: #666; }
.content-block a { color: #000; text-decoration: underline;}


@media screen and (max-width: 1440px) {
    .about-us-block {
        padding: 100px 120px;
        max-width: 1440px;
    }

    .overlayMenu ul li a {
        font-size: 36px;
        line-height: 55px;
    }

    .overlayMenu {
        margin-top: 0vw;
    }

    .header .right-block a {
        margin-right: 15px;
    }
	
	.header-cp .right-block a {
        margin-right: 15px;
    }

    .navbar-pop-up .users-block a {
        margin-right: 15px;
    }

    .burger-pop_up h5 {
        font-size: 28px;color: #000;
    }

    .burger-pop_up .contact-us ul li p {
        font-size: 20px;
    }

    .burger-pop_up .social-link ul li p {
        font-size: 20px;
    }

    .about-us-block h3 {
        line-height: 50px;
    }

    .burger-pop_up .contact-us {
        margin-top: 10vw;
    }

    .burger-pop_up .social-link {
        margin-top: 10vw;
    }

    .overlayMenu ul li a:hover::before {
        top: 28px;
    }

    .hire-talent {
        padding: 50px 0 0 20px;
      }

    .find-work {
        padding: 50px 0 0 20px;
    }

}

@media screen and (min-width: 1200px) {
    .container-about {
        max-width: 1340px;
        margin: -100px auto 0 auto;
		border-radius:10px;
		box-shadow: 0px 0px 80px rgba(0,0,0,0.5);
    }
}

@media screen and (max-width: 1200px) {
    .header button {
        width: 120px;
    }
	.header-cp button {
        width: 120px;
    }

    .navbar-pop-up .primary {
        width: 120px;
    }

    .header-cp .right-block a {
        margin-right: 0;
    }
	
	.header .right-block a {
        margin-right: 0;
    }

    .navbar-pop-up .users-block a {
        margin-right: 5px;
    }

    .central-block .search input {
        margin: 0 auto 30px auto;
    }

    .central-block .search {
        display: inline;
        justify-content: center;
    }

    .padding-jobs-block {
        padding-top: 40px;
        padding-bottom: 100px;
    }
    
    .featured-jobs-block h3 {
      margin-left: 25px;
    }

    .hire-talent-header {
        margin: 0 40px;
      }
      
    .hire-talent-body {
        margin: 0 120px;
    }

    .find-work-header {
        margin: 0 40px;
      }
      
    .find-work-body {
        margin: 0 120px;
    }

    .hire-talent button {
        margin: 50px 120px;
    }

    .find-work button {
        margin: 50px 120px;
    }

    .insight img {
        max-width: 600px;
      }
}

@media screen and (max-width: 1024px) {
    .header .right-block {
        text-align: center;
        margin-top: -10px;
    }
	
	.header-cp .right-block {
        text-align: center;
        margin-top: -10px;
    }

    .navbar-pop-up .users-block {
        text-align: center;
        margin-top: -20px;
    }

    .central-block h2 {
        font-size: 60px;
        line-height: 65px;    
    }

    .central-block input {
        margin-bottom: 30px;
    }

    .about-us-block {
        padding: 100px 30px;
    }

    .hire-talent-and-find-work {
        display: block;
        height: auto;
      }

    .hire-talent {
        width: 100%;
    }

    .find-work {
        width: 100%;
    }

    .hire-talent button {
        margin: 50px 120px;
    }

    .hire-talent button:hover {
        margin: 50px 120px;
  }

    .find-work button {
        margin: 50px 120px;
    }

    .insight img {
        max-width: 560px;
      }
	
	.team img {
        max-width: 100%;
        min-height: auto !important;
      }

    .footer {
        height: auto;
    }
}

@media screen and (max-width: 960px) {
    .overlayMenu {
        margin-top: 8vw;
    }
    
    .overlayMenu ul li a {
        font-size: 30px;
        line-height: 45px;
    }

    .burger-pop_up .contact-us ul li p {
        font-size: 18px;
        line-height: 30px;
    }

    .burger-pop_up .social-link ul li p {
        font-size: 18px;
        line-height: 30px;
    }

    .burger-pop_up h5 {
        font-size: 25px;
    }

    .central-block input {
        width: 500px;
    }

    .about-us-block h3 {
        font-size: 35px;
        line-height: 40px;
    }

    .hire-talent-and-find-work {
        display: block;
        height: auto;
      }

    .hire-talent {
        width: 100%;
    }

    .hire-talent button {
        margin: 50px 120px;
    }

    .hire-talent button:hover {
        margin: 50px 120px;
    }

    .find-work {
        width: 100%;
    }

    .find-work button {
        margin: 50px 120px;
    }
    
    .insight img {
        margin: 0;
    }
    
    .footer {
        height: auto;
    }

    .footer-menu-item {
        margin-left: 0
    }
}

@media screen and (max-width: 767px) {
	.vacancy-page-info .left-col { width: 100% !important; float: none !important; }
	.vacancy-page-info .right-col { width: 100% !important; float: none !important; }
	.form_column { width: 100% !important; float: none !important; }
	.content-block { width:90%;}
    .navbar {
        flex-wrap: nowrap;
    }

    .header .logo {
        text-align: right;
    }
	
	.header-cp .logo {
        text-align: right;
    }

    .overlay {
        overflow: auto;
    }

    .header .right-block {
        display: none;
    }
	
	 .header-cp .right-block {
        display: none;
    }

    .navbar-pop-up .users-block {
        margin-top: 30px;
        float: none;
    }

    .padding-jobs-block {
        padding-top: 0px;
    }

    .featured-jobs-block h3 {
      margin-left: 50px;
  }

  .hire-talent-and-find-work {
    display: block;
    height: auto;
  }

  .central-block .search input::placeholder {
    font-size: 18px;
  }
  
  .central-block .search input:-ms-input-placeholder {
    font-size: 18px;
  }
  
  .central-block .search input::-ms-input-placeholder {
    font-size: 18px;
  }

.hire-talent {
    width: 100%;
}

.hire-talent button {
    margin: 50px 120px;
    min-width: 120px;
  }

.hire-talent button:hover {
    margin: 50px 120px;
	min-width: 120px;
}

.find-work {
    width: 100%;
}

.find-work button {
    margin: 50px 120px;
    min-width: 120px;
  }

.find-work button:hover {
    margin: 50px 120px;
    min-width: 120px;
  }

.latest-insights {
    padding: 30px 0 30px 0;
}
	
.team {
    padding: 30px 0 30px 0;
}

.latest-news-header {
    margin: 0 0 30px 0;
}
	
.team-description {
    margin: 40px 0;
  }

.call-to-action-header {
    display: grid;
    font-size: 42px;
    font-weight: 700;
  }

.insight img {
    margin: 0;
    max-width: 100%;
}
	
.team img {
    margin: 0;
    max-width: 100%;
}

.call-to-action {
    padding-bottom: 40px;
}

.footer {
    padding: 40px 10px;
    height: auto;
}

.footer-menu-item {
    margin-left: 0;
    max-width: 200px;
}

.footer-menu-item-body {
    margin: 20px 0;
}

    .overlay.open .footer-pop-up {
        position: relative;
        bottom: 0;
        margin-top: 30px
    }
}

#cvupload input[type=text] { border: 0px; padding: 15px; font-size: 18px; }
#cvupload input[type=tel] { border: 0px; padding: 15px; font-size: 18px; }
#cvupload input[type=email] { border: 0px; padding: 15px; font-size: 18px; }
#cvupload select { border: 0px; padding: 15px; font-size: 18px; height: 57px; padding-left: 15px; -webkit-appearance: none;
    -moz-appearance : none; }
#cvupload button { width: 200px; margin-top: 20px;}

@media screen and (max-width: 567px) {
    .header {
        height: 900px;
    }

    .header .navbar {
        padding: 0 15px;
        margin: 50px 0px 0 0px;
    }
	
	.header-cp {
        height: 900px;
    }

    .header-cp .navbar {
        padding: 0 15px;
        margin: 50px 0px 0 0px;
    }

    .navbar-pop-up {
        padding: 0 15px;
    }

    #video-bg {
        height: 900px;
    }

    .header {
        height: 900px;
    }

    .header .logo {
        padding-top: 7px;
    }
	
	.header-cp {
        height: 900px;
    }

    .header-cp .logo {
        padding-top: 7px;
    }

    .central-block h2 {
        font-size: 40px;
        line-height: 50px;
        padding: 0 15px;
    }

    .central-block input {
      padding: 15px 20px;
    }

    .about-us-block {
        padding: 80px 30px;
    }

    .central-block input {
        width: 350px;
    }

    .central-block .search-job {
        width: 230px;
    }

    .navBurger {
        width: 40px;
    }

    .overlayMenu {
        margin-top: 14vw;
    }

    .navbar-pop-up .text-close {
        margin-left: 75px;
    }

    .title {
      flex-direction: column;
    }

    .header .logo {
        float: none;
    }
	
	.header-cp .logo {
        float: none;
    }

    .navbar-pop-up .logo {
        margin-right: 20px;
    }

    .overlay {
        overflow: auto;
    }

    .overlay.open .footer {
        position: relative;
        margin-top: 30px;
    }

    .burger-pop_up {
        padding-left: 15px;
    }

    .overlayMenu ul li a:active::before {
        top: 22px;
        width: 30px;
    }

    .overlayMenu ul li a:hover::before {
        top: 22px;
        width: 30px;
    }

    .overlayMenu ul li a:active {
        padding-left: 40px;
    }

    .overlayMenu ul li a:hover {
        padding-left: 40px;
    }

    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }

    .central-block input[placeholder] {
      font-size: 15px;
    }

    .featured-jobs-block h3 {
      font-size: 40px;
      margin-left: 0px;
      margin-top: 30px;
  }

  .hire-talent-and-find-work {
    display: block;
    height: auto;
}
  
.hire-talent {
    padding: 10px 0 0 10px;
    width: 100%;
}

.hire-talent-header {
    display: block;
    margin: 0 30px;
    font-size: 40px;
  }

.hire-talent-body {
    margin: 0 30px;
    font-size: 16px;
	height: 80px;
}

.latest-insights {
    padding: 20px 0 20px 0;
}

.team {
    padding: 20px 0 20px 0;
}
	
	
.latest-news-header {
    font-size: 30px;
    margin: 0 0 20px 0;
}

.insight-header {
    font-size: 20px;
    font-weight: 700;
}

.insight-body {
    margin: 10px 0;
    font-size: 14px;
}
	
.team-description {
    margin: 20px 0;
  }

.team-header {
    font-size: 20px;
    font-weight: 700;
}

.team-body {
    margin: 10px 0;
    font-size: 14px;
}

.find-work {
    padding: 10px 0 0 10px;
    width: 100%;
}

.find-work-header {
    display: block;
    margin: 0 30px;
    font-size: 40px;
  }

.find-work-body {
    margin: 0 30px;
    font-size: 16px;
	height: 60px;
}

.hire-talent button {
    margin: 30px 30px;
    width: 220px;
}

.hire-talent button:hover {
    margin: 30px 30px;
}

.find-work button {
    margin: 30px 30px;
    width: 220px;
}

.call-to-action {
    padding-bottom: 20px;
}

.call-to-action-header {
    display: grid;
    font-size: 30px;
    font-weight: 700;
  }

.call-to-action-description {
    margin: 20px 0 40px 10px;
    font-size: 16px;
}

.call-to-action-form {
    display: block;
}

label {
    font-size: 14px;
    margin: 0;
}

.group-input {
    width: 100%;
}

.call-to-action-button {
    justify-content: center;
}

.insight img {
    margin: 0;
    max-width: 100%;
  }

.footer-under-logo {
    margin: 30px 0;
}


.footer-menu-item-header {
    font-size: 18px;
}
  
.footer-menu-item-body {
    font-size: 14px;
}
}

@media screen and (max-width: 460px) {
    .menu h6 {
      display: none;
    }

    .navBurger {
      margin-top: -17px;
    }

    .header .logo img {
      width: 150px;
    }
	
	.header-cp .logo img {
      width: 150px;
    }

    .navbar-pop-up .text-close {
      display: none;
    }
}

@media screen and (max-width: 360px) {
    .central-block input {
        width: 300px;
        height: 60px;
    }

    .central-block .search-job {
        width: 200px;
        height: 60px;
    }

    .central-block h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .central-block {
        margin-top: 30%;
    }

    .footer-under-logo {
        margin: 20px 0;
        font-size: 14px;
    }

    .central-block .search input::placeholder {
      font-size: 14px;
    }
    
    .central-block .search input:-ms-input-placeholder {
      font-size: 14px;
    }
    
    .central-block .search input::-ms-input-placeholder {
      font-size: 14px;
    }

    .featured-jobs-block .carousel_item {
      height: 650px;
  }
}

#contact {  }
#contact h3 { font-size: 42px; line-height: 52px; font-weight: 900; margin-bottom: 10px; color: #000; }
#contact h1 span { color: #ff5500; }
#contact h2 { font-size: 28px; line-height: 52px; font-weight: 900; color: #000; margin-bottom: 40px; font-weight: lighter; }
#contact .left { box-sizing: border-box; padding: 30px; padding-left: 0px; padding-top: 0px;  text-align: left }
#contact .left li { margin-top: 20px; line-height: 35px; font-weight: lighter; }
#contact .left li h1 { font-size: 42px; margin-left: -4px; color: #4ce2cb; font-weight: 400; }
#contact .right { box-sizing: border-box; margin-top: 0px; text-align: left }
#contact .right h3 { font-size: 42px; color: #4ce2cb; font-weight: 400; }
#contact .contact-form-left-col { width: 49.5%; float: left; margin-right: 1%; margin-bottom: 1%; }
#contact input[type=text] { width: 100%; padding: 15px; border: #fff 1px solid; background: #f9f9f9; border-bottom: #4ce2cb 2px solid; }
#contact .contact-form-right-col { width: 49.5%; float: left; margin-bottom: 1%; }
#contact  textarea { width: 100%; padding: 15px; border: #f9f9f9 1px solid; resize: none; height: 300px; background: #f9f9f9; border-bottom: #4ce2cb 2px solid; }
#contact input[type=text]::placeholder { color: #999; font-weight: lighter; }
#contact textarea::placeholder { color: #999; font-weight: lighter; }
#contact .right p { font-weight: 200; margin-bottom: 30px; font-size: 20px; margin-top: 10px; color: #555; }
#contact input[type=submit] { border: 2px solid #000; color: #000; float: right; width: 200px; padding: 15px; background: none; cursor: pointer; transition: ease-in-out .2s all; margin-top: 20px; }
#contact input[type=submit]:hover { background: #4ce2cb; color: #fff; border-color: #4ce2cb; }
#contact .left a { color: #4ce2cb; text-decoration: none; }
#contact .left a:hover { color: #000; }
#contact {
    display: flex;
}
#map1 { height: 300px; }

.confirm-bar {
    background: #17b748; padding: 15px;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-size: 18px;
}

.error-bar {
    background: #eb3158;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

.blogback { display: block; width: 250px; text-align: center; border: #ccc 1px solid; color: #666; text-decoration: none; padding: 15px; margin-top: 30px; }
.blogback:hover { border-color: #000; text-decoration:none; }

.page-cta { display: block; width: 250px; background-color: #4ce2cb; text-align: center; color: #fff !important; text-decoration: none !important; padding: 15px; margin-top: 30px; margin: auto; font-size: 20px; }
.page-cta:hover { background: #666; text-decoration:none; color: #fff; }

.signature { font-family: 'Nothing You Could Do', cursive; font-size: 40px !important; margin-bottom: 0px !important; }
.hqhistoryhead { background: url(../img/favicon.png) left center no-repeat; background-size: 50px; height: 50px; line-height: 50px !important; padding-left: 70px; font-size: 30px !important; }


@media screen and (max-width:991px) {
#contact {
    display: unset;
}
#contact .left #map1 iframe {
    width: 100%;
}
#contact .left {
    padding: 0px;
}
}