body, html {
  -moz-osx-font-smoothing: grayscale;
  /* -webkit-font-smoothing: antialiased; */
}

.video-wrap {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .video-wrap::after {
  position: absolute;
  display: block;
  content: "";
  background-color: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.thumb-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumb-wrap video {
  width: 100%;
  height: auto;
}

.videoblock {
  width: 50%;
}

.hero-banner {
  position: relative;
  overflow: hidden;
}

#vid {
  /* position: absolute; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  top: 0;
  left: 0;
  margin-bottom: -5px;
}

.hero-banner-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
}
.hero-banner-inner.black{
background-color:black;
}
strong {
  font-family: Univers LT Pro\ 65 Bold;
}

.careers-banner-text {
  max-width: 620px;
  color: #fff;
}

.careers-banner-text p:first-child {
  color: #fff;
  font-size: 36px;
  letter-spacing: -.36px;
  line-height: 1.6666em;
  margin-bottom: 35px;
  font-family: Univers LT Pro\ 45 Light;
}

.careers-banner-text p {
  font-size: 24px;
  letter-spacing: -.24px;
  line-height: 34px;
  margin-bottom: 35px;
}

.post-grid__text:last-of-type {
  margin-bottom: 0;
}

.post-grid__small-title-email a {
  text-decoration: none;
  /* color: #1b1b1b; */
  color: #000;
  position: relative;
/*   padding-left: 40px; */
}

.contacts-grid .post-grid__small-title-email {
  margin-bottom: 22px;
}

.contacts-grid .post-grid__small-title-email a:before {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background: url(../media/img/slider-arr.png) no-repeat 50%/contain;
  width: 24px;
  height: 14px;
  cursor: pointer;
}

.contacts-grid .post-grid__small-title-email:last-of-type {
  margin-bottom: 0;
}

.single-page-content .alignright {
  float: right;
  margin-left: 80px;
}

.single-page-content .alignleft {
  float: left;
  margin-right: 80px;
}

.single-page-content .aligncenter {
  width: 100%!important;
}

.post-grid-slider .post-grid-item {
  max-width: calc((100% - 120px)/3);
}

.post-grid-slider2 .post-grid-item {
  max-width: calc((100% - 120px)/3);
}

div.wpcf7 .ajax-loader {
  position: absolute;
  bottom: -20px;
  right: 0;
}

span.wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  bottom: -40px;
  left: 0;
}

div.wpcf7-response-output {
  border: none!important;
  font-size: 14px;
  padding-left: 0;
  margin-left: 0;
}

.hero-image_single .image-credits {
  background-color: transparent;
}

.section-heading h2 {
  margin-top: 3px;
}

.post-grid-team .post-grid-desc {
  margin-bottom: 20px;
}

.careers-grid.contacts-grid .post-grid-item__img {
  font-size: 77px;
}

.careers-grid .post-grid-item__img {
  font-size: 117px;
}

.career-single-inner ul li {
  list-style-position: outside;
}

.career-single-inner ul {
  padding-left: 15px;
}

.single-content ul, .single-content ol {
	 padding-left: 20px;
}

.single-content ul li, .single-content ol li {
  list-style-position: outside;
	font-size: 16px;
    letter-spacing: .87px;
    line-height: 24px;
}

.post-grid-details {
  position: static;
  padding: 0;
}

.post-grid-item__bottom {
  padding-bottom: 20px;
}

.post-grid-desc {
  margin-bottom: 20px;
}

.contact-us-btn {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 500;
}

.bottom-posts-navigation .post-grid-slider-arrows {
  padding-bottom: 30px;
}

.post-grid-slider2 .post-grid-item {
  margin-bottom: 0;
}

.featured-post-overlay.featured-post-overlay-show {
  opacity: 1;
}

.featured-post-content {
  opacity: 0;
}

.featured-post-bg {
  opacity: 0;
  transition: 3s opacity;
  -webkit-transition: 3s opacity;
}

.minheight500{
  min-height: 500px;
}

.featured-post-bg-show {
  opacity: 1;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.contact-us-btn.btn-fixed {
  position: fixed;
  right: 80px;
  bottom: 60px;
  z-index: 10;
}

#contact-us-btn {
  height: 75px;
}

.loadmore-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}

.loadmore-box span {
  width: 32px;
  height: 6px;
  background-color: #000000;
  margin: 0 7px;
}

.single-page-content figure figcaption {
  background-color: transparent;
}

.darkcaption figure figcaption {
  color: #000;
}

.darkcaption.image-credits {
  color: #000;
}

.single-page-block blockquote, .single-page-block blockquote p {
  font-size: 36px;
  line-height: 38px;
  letter-spacing: 1.63px;
  text-align: center;
}

.single-page-block blockquote {
  position: relative;
}

.single-page-block blockquote::before {
  display: block;
  text-align: center;
  content: "\201c";
}

.single-page-block blockquote::after {
  display: block;
  text-align: center;
  content: "\201d";
  padding-top: 1em;
}

.post-grid-item.project .post-grid-desc {
	margin-bottom: 7px;
}

/* post content */

.content-group {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.content-group-image {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  max-width: 50%;
}

.content-group-image-inner {
  position: relative;
}

.image-credits-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  font-size: 10px;
  letter-spacing: -.1px;
  line-height: 12px;
  color: #fff;
}

.image-credits-content.darkcaption {
  color: #000;
}

.content-group-image.left {
  order: -1;
  margin-right: 80px;
}

.content-group-image.right {
  order: 2;
  margin-left: 80px;
}

.content-group-image.justify {
  max-width: 100%;
  width: 100%;
}

.content-group-image.justify img {
  width: 100%;
}

/* .content-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
} */


.content-group-text.vertical-align-center {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-content {
  border-bottom: 5px solid #1b1b1b;
}

.content-group p {
  font-size: 17px;
  letter-spacing: .92px;
  line-height: 1.5em;
  font-family: Univers LT Pro\ 45 Light;
}

.content-group a {
  /* color: #1b1b1b; */
  color: #000;
}

.content-group  blockquote, .content-group  blockquote p {
  font-size: 36px;
  line-height: 38px;
  letter-spacing: 1.63px;
  text-align: center;
}

.content-group  blockquote {
  position: relative;
}

.content-group  blockquote::before {
  display: block;
  text-align: center;
  content: "\201c";
}

.content-group blockquote::after {
  display: block;
  text-align: center;
  content: "\201d";
  padding-top: 1em;
}

.single-page {
  overflow: hidden;
}

#careers-banner .careers-banner {
  padding-top: 0;
}


#contacts-banner .careers-banner-inner p {
  margin-bottom: 0;
}

.post-nav-mg {
  margin-top: 50px;
}

.contact-us-btn {
  font-size: 16px;
}

.single-page-content h1 {
  margin-bottom: 20px;
}

.post-grid-title br {
  display: none;
}

.single-updates-readmore  .read-more-link {
  font-size: 16px;
    letter-spacing: -.16px;
    text-transform: uppercase;
    font-family: Helvetica LT Pro Bold Cond;
    /* color: #1b1b1b; */
    color: #000;
}

.single-updates-readmore {
  text-align: right;
  padding-bottom: 40px;
  padding-top: 40px;
}

.two-text-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.text-column {
  width: 50%;
}

.text-column-1 {
  padding-right: 40px;
}

.text-column-2 {
  padding-left: 40px;
}

.text-column p:not(:last-of-type) {
  margin-bottom: 30px;
}

.acknowledgement-text {
  flex: 1 1 auto;
  -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
}

.footer-middle, .footer-bottom {
  background-color: #000000;
}

.about-banner {
  background-color: #000000;
}

#team {
  /* padding-top: 40px; */
}

#scope {
  padding-top: 30px;
}

/* black-hero-banner */

.black-hero-banner {
  height: calc(100vh - 80px);
  min-height: 500px;
  position: relative;
  background-color: #000000;
}

.black-hero-banner-inner {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  width: 100%;
  /* position: absolute; */
  background-color: rgba(0,0,0,0.1);
}
.black-hero-banner-inner.contact{
  padding: 40px;
}
/* .black-hero-banner-inner:after{
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.1);
} */

.black-hero-banner-text {
  color: #fff;
  max-width: 970px;
  opacity: 0;
}

.black-hero-banner-text p {
  font-size: 21px;
  letter-spacing: -0.21px;
  line-height: 36px;
  margin-bottom: 30px;
  margin-top: 30px;
}

/* black-hero-banner End */

.hero-image_single {
  overflow: hidden;
}

.featured-post-bg {
  position: relative;
}

/* project data */

.project-top-space {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.project-top-space .hero_single {
  max-width: 50%;
  width: 50%;
  padding-right: 40px;
}

.project-data {
  width: 50%;
  font-size: 16px;
  letter-spacing: .87px;
  line-height: 24px;
  font-family: Univers LT Pro\ 45 Light;
  padding-left: 80px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: 70px;
  padding-bottom: 60px;
}


.project-data-inner {
  border-top: 5px solid #1b1b1b;
  max-width: 100%;
  width: 510px;
  padding-top: 10px;
}

.post-nav-box {
  width: 255px;
}

.post-nav-bottom {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.post-nav-box .post-nav-img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.post-nav-img img {
  width: 100%;
}

.post-nav-text {
  /* color: #1b1b1b; */
  color: #000;
  font-family: Univers LT Pro\ 45 Light;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.3px;
  text-decoration: none;
}

.post-nav-bottom .post-grid-slider-arrow {
  min-width: 32px;
  margin-top: 8px;
}

.post-nav-title {
  font-family: Helvetica LT Pro Bold Cond;
  text-transform: uppercase;
  margin-top: 15px;
  display: block;
  text-align: left;
}

.post-grid-slider-arrows_new {
  border-top: 1px solid #1b1b1b;
  -ms-align-items: stretch;
  align-items: stretch;
}

.all-projects-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding-bottom: 60px;
}

.post-nav-mobtitle {
  display: none;
}

.post-grid-slider-arrow {
  background: url(../media/img/slider-arr.svg) no-repeat 50%/contain;
}

.single-projects .prev-post-box .post-grid-slider-arrow {
  margin-right: 10px;
}

.post-grid-item.project .post-grid-details {
  display: none !important;
}

@media (min-width: 1920px) {
  .contact-us-btn {
    right: calc((100vw - 1760px)/2);
  }
}

@media (min-width: 1025px) {
  .hero-banner, .show_video_in_heading {
    background-color: #fff!important;
  }
  .show_video_in_heading-upd {
    background: #fff!important; 
  }
}



@media (max-width: 1366px) {
  .single-page-content img.alignright {
    max-width: 50%;
  } 

  .single-page-content img.alignleft {
    max-width: 50%;
  }

  .content-group-image.left {
    margin-right: 60px;
  }
  
  .content-group-image.right {
    margin-left: 60px;
  }

  .text-column-1 {
    padding-right: 30px;
  }
  
  .text-column-2 {
    padding-left: 30px;
  }
	
	.project-top-space .hero_single {
    padding-right: 30px;
  }

  .project-data {
    padding-left: 60px;
  }
}

@media (max-width: 1024px) {
  
  .contact-us-btn {
    right: 40px;
  }
  .video-wrap {
    display: none;
  }

  .show_video_in_heading .video-wrap {
    display: block;
  }

  .post-grid-slider .post-grid-item {
    max-width:  calc((100% - 60px)/2);
  }

  .post-grid-slider2 .post-grid-item {
    max-width:  calc((100% - 60px)/2);
  }

  .hero-banner-text {
    font-size: 24px;
    margin-bottom: 0px;
    letter-spacing: -0.24px;
    line-height: 34px;
  }

  .hero-banner {
    min-height: 400px;
    height: 400px;
  }

  .hero-banner-content .down-arrow {
    position: absolute;
    left: 0;
    bottom: -40px;
  }

  .hero-banner-content  {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  .hero-banner-inner {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .footer-top-inner {
    padding: 40px 0 20px;
 }

 .footer-top-menu {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  text-align: center;
  display: block;
}

.footer-top-menu li.current-menu-item {
  font-size: 21px;
  margin-top: 0;
    margin-bottom: 20px;
}

.footer-top-menu li.current-menu-item  a {
  font-size: 21px;
}

.footer-top-menu li {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.single-page-content figure.alignleft, .single-page-content figure.alignright {
  margin-bottom: 60px;
}

.single-page-content figure.aligncenter {
  width: 100vw!important;
  max-width: 100vw!important;
  margin-left: -40px;
}

.career-single-right {
  padding-bottom: 80px;
}

#contact-us-btn {
  display: none;
}

.black-hero-banner {
  height: auto;
  min-height: auto;
}

.black-hero-banner-text {
  opacity: 1;
}

.hero-banner-homepage.hero-banner {
  min-height: auto;
  height: auto;
}
.page-template-tpl-about .hero-banner-homepage.hero-banner,
.page-template-tpl-careers .hero-banner-homepage.hero-banner {
  min-height: 400px;
}

.page-template-tpl-about .hero-banner-homepage.hero-banner .hero-banner-inner,
.page-template-tpl-careers .hero-banner-homepage.hero-banner .hero-banner-inner {
  align-items: center;
}

	.hero-banner-homepage.hero-banner.show_video_in_heading {
    background-color: transparent!important;
    min-height: auto;
	}
	
	.hero-banner-homepage.hero-banner .video-wrap {
		position: static;
	}
	
	.hero-banner-homepage.hero-banner #vid {
		position: static;
		width: 100%;
		height: auto;
	}

}



@media (max-width: 991px) {

  .single-page-content figure.alignleft, .single-page-content figure.alignright {
    margin-bottom: 40px;
    width: 100%!important;
  }

  .single-page-content figure.aligncenter figcaption {
    padding-left: 40px;
    padding-right: 40px;
  }

  .single-page-content figure figcaption {
    padding-left: 0;
  }

  .single-page-content img.alignright {
    margin-bottom: 40px;
    width: 100%!important;
    margin-left: 0;
    float: none;
    max-width: 100%;
  } 

  .single-page-content img.alignleft {
    margin-bottom: 40px;
    width: 100%!important;
    margin-left: 0;
    float: none;
    max-width: 100%;
  }

  .content-group {
    padding: 20px 0;
  }

  .content-group-image.left {
    margin-right: 0px;
    max-width: 100% !important ;
    width: 100%;
  }
  
  .content-group-image.right {
    margin-left: 0px;
    max-width: 100% !important ;
    width: 100%;
    order: 2;
  }

  .content-group-image img {
    width: 100%;
  }

  .content-group {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }

  .content-group-image {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .image-first .content-group-image {
    order: -1;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .content-group-image.justify {
    margin-top: 0;
    margin-bottom: 0;
    width: 100vw!important;
    max-width: 100vw!important;
    margin-left: -40px;
  }

  .image-credits-content {
    color: #000;
    position: static;
    padding-top: 10px;   
  }

  .image-credits-content br {
    display: none;
  }

  .content-group-image.justify .image-credits-content {
    padding-left: 40px;
  }

  .hero_single-updates .hero_single-left .hero_single-details:last-child {
    margin-bottom: 25px;
  }

  .hero_single-updates .hero_single-left h1 {
    font-size: 46px;
    letter-spacing: -.46px;
    line-height: 1.17em;
  }

  .post-grid-team  .post-grid-title {
    margin-bottom: 10px;
  }

  .text-column {
    width: 100%;
    padding: 20px 0;
  }

  .hero_single-updates .hero_single-right p.hero_single-desc {
    margin-bottom: 0;
  }

  .videoblock {
    width: 100%;
  }
	
	.project-top-space .hero_single {
    padding-right: 0px;
    width: 100%;
    max-width: 100%;
  }

  .project-data {
    padding-left: 0px;
    width: 100%;
    padding-top: 0;
  }

  .project-data-inner {
    width: 100%;
  }



}

@media (max-width: 767px) {
  .post-grid-slider-arrows_new {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .logo img {
    max-width: 80px;
  }

  .next-post-box {
    order: -10;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }

  .next-post-box .post-nav-bottom {
    order: -10;
    margin-bottom: 30px;
    width: 100%;
  }

  .next-post-box .post-nav-img {
    width: 600px;
    max-width: 100%;
  }

  .next-post-box .post-nav-text .post-nav-title {
    display: none;
  }

  .prev-post-box .post-nav-img, .prev-post-box .post-nav-bottom .post-nav-text {
    display: none;
  }

  .all-projects-box {
    padding-bottom: 0;
  }

  .prev-post-box {
    width: auto;
  }

  .post-grid-slider-arrows_new {
    -ms-align-items: center;
    align-items: center;
  }

  .post-nav-text {
    font-size: 36px;
    letter-spacing: -0.36px;
  }

  .all-projects-box .post-grid-slider-all-link {
   font-size: 36px;
    letter-spacing: -0.36px; 
  }

  .post-nav-mobtitle {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    /* color: #1b1b1b; */
    color: #000;
    font-family: Helvetica LT Pro Bold Cond;
    padding-top: 20px;
    padding: 20px;
  }

  .next-post-box .post-nav-img {
    border: 1px solid #979797;
  }

  .next-post-box .post-nav-bottom .post-grid-slider-arrow {
    margin-top: 0;
  }

  .next-post-box .post-nav-bottom {
    -ms-align-items: center;
    align-items: center;
  }

  .black-hero-banner-inner.contact{
    padding: 20px;
  }
.hide_video_on_mobile .video-wrap{
	display:none;
	}
	
.hero-banner.hide_video_on_mobile{
	height: 400px!important;
	min-height: 400px!important;

}
}


@media (max-width: 699px) {
  .minheight500{
    min-height: auto;
  }
  .hero_single {
    padding: 0 10px;
    padding-bottom: 20px;
  }

  .hero-image_single .image-credits {
    padding-left: 0px;
  }

  .post-grid-slider .post-grid-item {
    max-width:  100%;
  }

  .post-grid-slider2 .post-grid-item {
    max-width:  100%;
  }

  .single-page-content {
    padding: 0;
  }

  .careers-banner-text p:first-child {
    font-size: 24px;
  letter-spacing: -.24px;
  line-height: 34px;
  margin-bottom: 30px;
  }

  #careers-banner .careers-banner {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  #contacts-banner .careers-banner {
    padding-bottom: 20px;
  }

  .careers-grid.contacts-grid .post-grid-item__img {
    font-size: 57px;
    height: 265px;
  }
  
  .careers-grid .post-grid-item__img {
    font-size: 87px;
    height: 265px;
  }

  .featured-post-overlay{
    opacity: 1;
  }
  
  .featured-post-content {
    opacity: 1;
  }
  
  .featured-post-bg {
    opacity: 1;
  }

  .single-page-block p, .single-page-block h1, .single-page-block h2, .single-page-block h3, .single-page-block h4, .single-page-block h5, .single-page-block h6 {
    padding: 0 10px;
  }

  .single-page-content figure.aligncenter figcaption {
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-image_single {
    margin-bottom: 50px;
  }

  .single-page-content figure figcaption {
    padding-left: 10px;
  }

  .content-group p {
    font-size: 14px!important;
    letter-spacing: .76px!important;
    line-height: 20px!important;
  }

  .content-group-text {
    padding: 0 10px;
  }

  .content-group blockquote, .content-group blockquote p {
    font-size: 24px;
    letter-spacing: 1.3px;
    line-height: 30px;
    text-align: left;
  }

  .content-group-image {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .image-first .content-group-image {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .content-group-image.justify {
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-credits-content {
    padding-left: 10px;
  }

  .content-group {
    padding: 15px 0;
  }

  .content-group-image.justify .image-credits-content {
    padding-left: 50px;
  }

  #contacts-banner .careers-banner-inner {
    padding-right: 30px;
    min-height: 400px;
  }

  #contacts-banner .careers-banner {
    padding-top: 20px;
  }

  .post-grid-slider-all-link {
    font-size: 16px;
    letter-spacing: .87px;
    line-height: 1em;
  }

  .bottom-posts-navigation .post-grid-slider-arrows {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .post-filter-block .container-wide {
    padding: 0;
  }

  .about-single-content {
    padding: 0 10px;
    padding-top: 40px;
  }

  .single-page-content h1 {
    margin-bottom: 20px;
  }

  .single-updates-readmore {
    padding: 20px 10px;
  }

  .single-updates-readmore .read-more-link {
    font-size: 14px;
  }

  #team {
    padding-top: 20px;
  }

  .black-hero-banner-text p {
    font-size: 18px;
    letter-spacing: -0.18px;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .black-hero-banner-inner {
    padding: 20px 0px;
  }
	
	.bottom-posts-navigation .post-grid-slider-arrows_new {
    padding-top: 25px;
  }

}

@media (max-width: 475px)  {
  .single-page-content figure.aligncenter {
    margin-left: -20px;
  }

  .contact-us-btn  {
    right: 20px;
  }

  .single-page-content figure.aligncenter figcaption {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-group-image.justify {
    margin-left: -20px;
  }

  .content-group-image.justify .image-credits-content {
    padding-left: 30px;
  }
	.hero-banner-text {
		font-size: 18px;
		margin-bottom: 20px;
  }
  .nav-logo-wrap {
      padding: 0;
  }
}

/* 404 page */

#notfound-banner {
  background-color: #000000;
}

.notfound-banner {
  height: calc(100vh - 80px);
  min-height: 500px;
  position: relative;
  margin-bottom: 15px;
}

.notfound-banner-inner {
  padding: 40px;
  display: flex;
  align-items: center;
  height: 100%;
}

.notfound-banner-inner p {
  color: #ffffff;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1.6666em;
  margin-bottom: 35px;
}

.careers-banner-text {
  max-width: 600px;
}

.careers-banner {
  padding-top: 110px;
}

.notfound-smiley {
  font-size: 60px;
  color: #ffffff;
  position: absolute;
  bottom: 40px;
  right: 0;
}

@media (max-width: 576px) {
  .notfound-banner-inner p {
    font-size: 24px;
  }
  .notfound-banner-inner {
    padding: 40px 30px 40px 30px;
  }
  .logo img {
    max-width: 55px;
  }
}

/* TERMS + SERVICES */

.career-single-part.plno {
  padding-left: 0;
}

.career-single-part.plno:first-of-type {
  margin-top: 40px;
}

.terms .career-single-left .career-single-part {
  padding-top: 30px;
}

.footer-logo img{
  height: 29px;
  margin-bottom: 3px;
}


/* @media (max-width: 699px) {
  .page-template-tpl-about .black-hero-banner-inner {
    min-height: 220px;
  }
} */

/*thumb gifs*/

.post-grid-item__img {
  position: relative;
}

.post-grid-item__img-abs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.post-grid-item__img-abs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1025px){
  #scope {
    padding-top: 40px;
  }
}

.post-filter-block {
  padding-top: 40px;
  padding-bottom: 0;
}

@media (max-width: 1025px){
  .post-filter-block {
    padding-top: 30px;
  }
}

/* Add emails in Contacts page*/

.post-grid__text-email-text {
/*   padding-left: 40px; */
}

.contacts-grid .post-grid__small-title-email {
  margin-bottom: 15px;
}

@media (max-width: 699px) {
  .contacts-grid .post-grid__text {
    font-size: 20px;
    letter-spacing: -.16px;
  }
}

/* .post-grid-flex .post-grid-item{
  display: flex;
  flex-direction: column;
  border:none;
}

.post-grid-flex .post-grid-item .post-grid-item__bottom{
  flex-grow: 1;
  background: #ecf0f1;
} */

/* --------------------------------------------------- */

.post-grid-item{
  display: flex;
  flex-direction: column;
  border:none;
}

.post-grid-item .post-grid-item__bottom{
  flex-grow: 1;
  /* background: rgba(0,0,0,0.1); */
  background: #ecf0f1;
  /* height: 100%; */
}

.page-template-tpl-homepage-old .hero-banner-text, .page-template-tpl-homepage-3 .hero-banner-text{
  font-size: 54px;
  letter-spacing: -.36px;
  line-height: 1.6666em;
}

.page-template-tpl-homepage-old .hero-banner-content,
.page-template-tpl-homepage-3 .hero-banner-content,
.hero-banner-content,
.featured-post-content{
  padding-left: 40px;
}

.hero-banner-content{
  padding-right: 40px;
}

.add-title h1 span + span{
	padding-top: 0!important ;
}

@media (max-width: 1024px){
  .page-template-tpl-homepage-old .hero-banner-content .down-arrow, .page-template-tpl-homepage-3 .hero-banner-content .down-arrow {
    left: auto;
  }
}
.add-title p{
  font-size: 60px;
    letter-spacing: -.6px;
    text-transform: uppercase;
    font-family: Helvetica LT Pro Bold Cond;
    line-height: 1;
    display: inline-block;
}



.add-title span span{
  /* background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% auto; */
  /* transition: background-size .5s; */
  padding: 12px 15px 3px 0;
  /* -webkit-box-decoration-break: clone;
  box-decoration-break: clone; */
  /* background-color: white; */
  display: inline-block;
  line-height: 1;
  position: relative;
  z-index: 10;
}

.add-title p>span{
  background-color: white;
  padding: 12px 15px 3px 0;
}

.add-title h1{
  /* display: inline-block; */
  
  /* background-color: white; */
  margin: 0;
  position: relative;
  top: -5px;
}

.add-title h1 span{
  background-color: white;
  display: inline-block;
  padding: 0px 15px 4px 2px;
}

.add-title h1 span:first-child{
	padding-top:15px;
}

@media(max-width: 991px){
  .add-title p{
    font-size: 46px;
  }
  .add-title h1{
    font-size: 22px;
  }
  .single-content_v2{
    margin-top: 0 !important;
  }
}


@media (max-width: 768px){
  .hero-banner-text {
    font-size: 18px !important;
    line-height: 26px!important;
  }
}
@media (max-width: 767px){
  .add-title p{
    font-size: 38px;
  }
  .add-title h1{
    font-size: 20px;
  }
  
}

@media (max-width: 576px){
  .page-template-tpl-homepage-old .logo, .page-template-tpl-homepage-3 .logo {
    margin: 0;
  }
  .page-template-tpl-homepage-old .hero-banner-content, .page-template-tpl-homepage-3 .hero-banner-content{
    padding-left: 30px;
  }
}

@media (max-width: 700px){
  .add-title p{
    font-size: 28px;
    line-height: 30px;
    padding: 0px 10px 0px 0;
  }
  .add-title h1{
    font-size: 16px;
    /* padding: 8px 10px 2px 0; */
  }
  .add-title h1{
    top: -5px;
  }
  .add-title span{
    padding: 8px 7px 5px 0;
  }
  .add-title span span{
    padding: 5px 7px 2px 0;
  }
  
  .add-title p>span{
    padding: 5px 7px 2px 0;
  }
}


/* snt_20_12_21 */

@media (min-width: 992px){
  .project-top-space_v2 .hero_single {
    padding-top: 87px;
  }
}

/* snt_20_12_21 end */

/* snt_20_12_21 header with right alingment logo */

.header_right-logo .header-inner {
  justify-content: flex-end;
}

.menu.menu-left {
  left: 80px;
  right: auto;
}

.menu.menu-left .toggle-hamburger .ham-middle {
  right: auto;
  left: 0;
}

.nav-logo-wrap.nav-logo-wrap_right-logo .container-wide{
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.logo_animate {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.logo_animate.logo_visible {
  opacity: 1;
}

.single-content_v2{
  /* margin-top: -130px; */
}

.single-content_v2 .content-group p {
  font-size: 19px;
}

@media (min-width: 1920px){
  .menu.menu-left {
    right: auto;
    left: calc((100vw - 1760px)/2);
  }
}

@media (max-width: 1024px){
  .menu.menu-left {
    left: 40px;
    right: auto;
  }
}

@media (max-width: 600px){
  .menu.menu-left {
    left: 30px;
    right: auto;
  }

  .nav-logo-wrap.nav-logo-wrap_right-logo {
    padding: 0;
  }

  .single-content_v2 .content-group p {
    font-size: 16px!important;
    line-height: 22px!important;
  }
		.descr span:first-child span{
		background-color: #fff;
	}
}

@media (max-width: 475px){
  .menu.menu-left {
    left: 10px;
    right: auto;
  }
	

}

/* snt_20_12_21 end */

/* snt_06_01_22 */

@media (max-width: 1024px){
  .page-template-tpl-careers .hero-banner-inner {
    position: static;
    width: 100%;
    height: auto;
  }

  .page-template-tpl-careers .hero-banner-homepage.hero-banner {
    min-height: unset;
  }

  /* .featured-post {
    min-height: unset;
  } */

  /* .featured-post .featured-post-bg {
    min-height: unset;
    height: auto;
  } */

  .featured-post .video-wrap {
    height: auto;
  }

  .hero-image_single.show_video_in_heading {
    min-height: unset;
    height: auto;
  }

  .hero-image_single.show_video_in_heading #vid {
    height: auto;
  }

}

@media (max-width: 600px){
  .page-template-tpl-careers .hero-banner-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    /* height: 300px; */
  }

  .page-template-tpl-about .hero-banner-inner {
    position: static;
    width: 100%;
    height: auto;
  }

  .page-template-tpl-about .hero-banner .video-wrap {
    position: absolute;
  }

  .page-template-tpl-about .hero-banner-homepage.hero-banner #vid {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .page-template-tpl-careers .hero-banner-inner .hero-banner-text {
    margin-bottom: 0;
  }


}

/* snt_06_01_22 end */

@media (max-width: 699px) {
  .featured-post-overlay {
    padding-bottom: 0;
  }
}

/* snt_24_03_22 Careers mobile */

/* .page-template-tpl-careers .hero-banner-inner.black {
  background-color: #fff;
}

.page-template-tpl-careers .hero-banner-content {
  background-color: #000;
}

.page-template-tpl-careers .hero-banner-content .hero-banner-text {
  padding-left: 80px;
} */

/* snt_24_03_22 end */

.videoblock .wp-video {
  width: 100% !important;
}