@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: "Voyage";
  src: url('./assets//fonts/voyage-regular.otf');
}

body:has(.elc-lightbox) {
  height: 100vh;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;

  --p-font-weight: 300;
  --sm-padding: 18px;
  --sm-padding-between: 85px;
  --bold-button-weight: 500;
  --button-weight: 500;
}

::-moz-selection { /* Code for Firefox */
  /*color: red;*/
  background: rgba(213, 209, 200, 0.8);
}

::selection {
  /*color: red;*/
  background: rgba(213, 209, 200, 0.8);
}

.body-wrapper {
  font-family: 'Poppins';
  background-color: #191B1D;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.body-wrapper:has(.blog-body) {
  background-color: #d5d1c8;
}

.body-wrapper:has(.blog-body) .footer{
  background-color: #191B1D;
}

.blog-body .longtext {
  background-color: #d5d1c8;
}


.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
}

#header {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 32px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-logo img{
  position: fixed;
  z-index: 11;
  width: 7.71vw;
  max-width: 148px;
  min-width: 70px;
  transition: .2s;
  top: 35px;
  left: 32px;
}

.header-burger {
  position: fixed;
  z-index: 60;
  top: 35px;
  right: 32px;
}

.opened-lightbox{
  overflow: hidden;
}

.load_animation{
  opacity: 0;
}

.header-burger img{
  position: fixed;
  z-index: 10;
  width: 2.56vw;
  max-width: 49px;
  min-width: 25px;
  transition: .2s;
  top: 70px;
  right: 32px;
}

#nav-icon {
  width: 49px;
  height: 26px;
  position: relative;
  margin: 10px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 3;
}

#nav-icon span {
  display: block;
  position: fixed;
  height: 7px;
  width: 100%;
  background: #fff;
  border-radius: 7px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  transition-property: all;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  width: 40px;
  transform: translateX(9px);
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
  width: 40px;
  transform: translateX(9px);
}


#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  transform: translate(0, 20px);
  width: 40px;
  -webkit-transform: rotate(45deg) translate(4.5px,-4.5px);
  -moz-transform: rotate(45deg) translate(4.5px,-4.5px);
  -o-transform: rotate(45deg) translate(4.5px,-4.5px);
  transform: rotate(45deg) translate(4.5px,-4.5px);
}

#nav-icon.open span:nth-child(3) {
  width: 40px;
  -webkit-transform: rotate(-45deg) translate(4.5px,4.5px);
  -moz-transform: rotate(-45deg) translate(4.5px,4.5px);
  -o-transform: rotate(-45deg) translate(4.5px,4.5px);
  transform: rotate(-45deg) translate(4.5px,4.5px);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span {
  background-color: #000;
  transition-delay: 0s;
}

.nav-circle {
  display: block;
  width: 0;
  height: 0;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-circle.open {
  width: 70px;
  height: 70px;
}

.navigation {
  display: block;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 1s;
  transition-delay: 1s;
  z-index: 50;
}

.navigation.opened {
  height: 100%;
  transition: 0.1s;
  transition-delay: 0;
}

.nav-fill-animation {
  position: absolute;
  z-index: 2;
  top: 59px;
  right: 56px;
  transform: translate(50%, -50%);
  width: 0; 
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s ease-in-out;
  transition-delay: 0.8s;
}

.nav-fill-animation.active {
  width: 500vw;
  border-radius: 50%;
  height: 500vw;
  transition: 1s ease-in-out;
  transition-delay: 0.25s;
}

.nav-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 75px;
}

.nav-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 30px;
}

.nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #191B1D;
  font-size: 4vw;
  font-weight: 700;
  line-height: 5vw;
  letter-spacing: -5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  margin-bottom: 1rem;
}

.nav-item:has(.item-wrapper:not(.item-active)) .sub-menu {
  height: 0 !important;
  overflow: hidden !important;
  padding-top: 0 !important;
}

.nav-item.has-children {
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.nav-item .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10%;
}

.nav-content-container{
  height: 100vh;
  overflow: auto;
}

.hidden-item{
  display: none !important;
  /*height: 0!important;*/
  /*margin-bottom: 0 !important;*/
  /*transition-property: all;*/
  /*transition-duration: 300ms;*/
}



/*.nav-item .sub-menu{*/
/*  !*width: 100%;*!*/


/*  width: calc(100% + 50px);*/
/*  margin-left: -25px;*/
/*  overflow-x: hidden;*/
/*  overflow-y: auto;*/
/*  height: calc(100vh - 350px);*/
/*}*/

/*.nav-item .sub-menu .nav-item {*/
/*  left: -16px;*/
/*  padding-right: 10px;*/
/*}*/

/*.nav-item .sub-menu .nav-item p{*/
/*  padding-left: 14px;*/
/*}*/

/*.nav-item .sub-menu .nav-item{*/
/*  width: calc(100% + 16px);*/
/*}*/

.item-wrapper {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  cursor: pointer;
}

.item-active {
  clip-path: none;
  overflow: visible;
}

.item-wrapper .nav-item-text {
  position: relative;
}

.nav-item p {
  background: linear-gradient(to right, #D5D1C8, #D5D1C8 50%, #191B1D 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 500ms ease;
  padding: 0 2px;
  transform: translateY(100%);
}

.item-wrapper.shadow p{
  width: 100%;
  background-position: 0 200%;
}

.nav-item .underline {
  position: absolute;
  bottom: 5%;
  height: 5px;
  width: 0;
  background-color: #191B1D;
  transition: 0.5s;
}

.nav-item .item-wrapper:hover .underline {
  width: 100%;
}

.nav-item .item-wrapper {
  position: relative;
}

.nav-item .plus {
  position: relative;
  padding: 0 40px;
  top: 5px;
  transition: 0.25s;
}

.plus .plus-vert {
  position: absolute;
  width: 7px;
  height: 0;
  background-color: #191B1D;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plus .plus-hos {
  position: absolute;
  height: 7px;
  width: 0;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plus.open .plus-vert {
  width: 7px;
  height: 35px;
}

.plus.open .plus-hos {
  width: 35px;
  height: 7px;
}

.nav-item:hover .plus {
  transform: rotate(180deg);
}

.nav-list.opened .nav-item p {
  transform: translateY(100%);
}

/* .nav-item .item-children {
  display: ;
} */

.nav-back {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid #000;
  border-radius: 100%;
  height: 60px;
  width: 60px;
  margin-right: 20px;
  cursor: pointer;
  flex-direction: row-reverse;
  position: absolute;
  top: 100px;
  left: 10px;
  opacity: 0;
  display: none;
  transform: translate(50px, -50%);
}

.nav-back .line {
  width: 22px;
  height: 1px;
  background-color: #000;
}

.nav-back img {
  filter: brightness(0);
  transform: rotate(90deg);
  width: 15px
}

.nav-item .sub-menu .nav-item {
  padding-left: 75px;
  position: relative;
  left: -75px;
}

.nav-item .sub-menu .nav-item p{
  font-weight: 300;
  transform: translate(0, 100%);
  padding-right: 4px;
  cursor: pointer;
  z-index: 3;
}

.nav-item .sub-menu .sub-line {
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 2.5vw;
  transform: translateY(-50%);
}

.nav-item .sub-menu .nav-item-wrapper {
  position: relative;
  z-index: 11;
}

.nav-item .sub-menu .nav-item-wrapper p:hover ~ .underline {
  width: 100% !important;
}

.nav-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-socials {
  margin-bottom: 10px;
}

.nav-socials .socials-wrapper {
  display: flex;
}

.nav-socials .socials-wrapper .social {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #191B1D;
}

.nav-socials .socials-wrapper .social a {
  display: flex;
}

.nav-socials, .nav-email, .nav-number {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.nav-email span, .nav-number span {
  display: inline-block;
}

.nav-email a, .nav-number a {
  color: black;
  text-decoration: none;
}

.nav-socials .socials-wrapper, .nav-email span, .nav-number span {
  transform: translateY(100%);
}

#header.invert img, .body-wrapper:has(.blog-body) #header:not(.whiteout) img {
  filter: brightness(0);
}

#header.invert #nav-icon span, .body-wrapper:has(.blog-body) #header:not(.whiteout) #nav-icon span{
  background-color: #000;
}

#header.invert .nav-circle, .body-wrapper:has(.blog-body) #header:not(.whiteout) .nav-circle {
  border-color: #000;
}

#header.menu-active #nav-icon span{
  background-color: #000;
  /* transition-delay: 0.25s; */
}

#header.menu-active .nav-circle {
  border-color: #000;
  /* transition-delay: 0.25s; */
}

.first-banner {
  position: relative;
  width: 100%;
  height: 80vh;
}

.first-banner-content {
  position: relative;
  /*overflow: hidden;*/
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #191B1D;
  overflow: visible;
}

.first-banner-title {
  position: relative;
  z-index: 2;
  margin: 25px 0;
  margin-top: 15%;
}

@media(min-width: 1500px){
  .first-banner {
    height: 90vh;
  }

  .first-banner-title {
    margin-top: 10%;
  }
}

.first-banner-title h1 {
  color: #fff;
  font-family: 'Voyage' !important;
  text-align: center;
  line-height: 4.5vw;
  font-size: 5.21vw;
  font-weight: 100;
  padding: 20px;
  margin: -20px;
  /* opacity: 0;
  transform: translate(0, 100px); */
}


.first-banner-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.first-banner-arrow .line {
  width: 1px;
  height: 140px;
  background-color: #fff;
}

.logo-background {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: 120%;*/
  /*align-items: start;*/
  /*margin-top: 5vh;*/
  width: 100%;
  overflow: hidden;
}

.overflow-hidden-banner{
  overflow: hidden;
}

.logo-background img{
  width: 68vw;
  min-width: 900px;
  max-width: 80vw;
  z-index: 0;
  pointer-events: none;
  max-height: 70vh;
}

.showcase-section {
  position: relative;
  z-index: 0;
  height: 85vh;
  max-height: 60vw;
  max-width: 90%;
  margin: auto;
  z-index: 10;
}

.showcase-video {
  height: 100%;
  width: 0;
  float: right;
  overflow: hidden;
}

.showcase-video img, .showcase-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.second-banner {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.second-banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.second-banner-content .text-move-scroll {
  /*margin-top: 3vw;*/
}

.centertext-banner .second-banner-content .text-move-scroll {
  margin-top: -3vw;
}

.centertext-banner.next-block-imageText{
  padding-bottom: 0;
}

.image-text-block.last-block-home_centertextBanner.block-type-textOnly {
  padding-top: 105px;
}

.second-banner-text {
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: space-around;
}

.second-banner-text p {
  padding: 5vw 20px;
  padding-bottom: 1vw;
  color: #fff;
  text-align: center;
  font-size: 2.1vw;
  font-size: normal;
  font-weight: var(--p-font-weight);
  line-height: 120%;
  /*white-space: pre-line;*/
  opacity: 0;
  transform: translate(0, 100px);
}

.text-move-scroll {
  position: relative;
  padding-top: 0;
}
.single-title .text-move-scroll h2 {
  font-size: 15.65vw;
}
.text-move-scroll h2 {
  text-wrap: nowrap;
  /* font-size: 15.65vw; */
}

.text-move-scroll h2 span{
  display: inline;
  font-family: 'Voyage';
  font-weight: 100;
  text-align: center;
  font-size: 15.65vw;
  color: rgba(255, 255, 255, 0.05);
  /*line-height: 90px;*/
  line-height: 0.6;
}

@media (min-width: 1920px) {
  .text-move-scroll h2 span {
    font-size: 300px;
  }
}

.second-banner-link {
  position: relative;
  padding: 10px;
   margin-top: 30px;
  /* margin-bottom: 50px; */
}

.second-banner-link.no-textbody{
  margin-top: 0;
}

.second-banner-link img {
  position: absolute;
  top: -5px;
  right: -10px;
}

.second-banner-link a {
  color: #D5D1C8;
  font-size: 25px;
  position: relative;
}

.work-section {
  position: relative;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
  /*padding-bottom: 11vw;*/
}

.reviews-section{
  padding-top: 85px;
  padding-bottom: 85px;
}

.work-section .work-section-images-bg {
  background-color: #D5D1C8;
}

.work-title {
  position: relative;
  background-color: #191B1D;
}

.work-title h2 {
  font-family: 'Voyage';
  font-weight: 100;
  font-size: 31.2vw;
  line-height: 35vw;
  color: #fff;
  text-align: center;
}

.work-section-images {
  position: relative;
  display: flex;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 15vw 0 1vw;
  padding: 30px 20px;
  padding-top: 21vw;
  padding-bottom: 10px;
}

.work-trasition {
  transition: 0.2s;
}

.work-trasition img {
  transition: 0.2s;
}

.work-section-images .work-image {
  padding: 0;
  /* transition: .2s; */
  width: 582px;
}

.work-section-images .work-image img, .work-section-images .work-image video {
  width: 582px;
  height: 612px;
  object-fit: cover;
  padding-right: 30px;
  opacity: 0.5;
  filter: blur(2px);
  /* transition: .2s; */
}
.work-section-images .work-image.active-work {
  width: 896px;
}

.work-section-images .active-work img, .work-section-images .active-work video {
  width: 896px;
  opacity: 1;
  filter: blur(0);
}

.work-section-images .activated {
  width: 0;
}

.work-section-images .activated img, .work-section-images .activated video {
  width: 896px;
}

.work-section-images .img-left {
  display: flex;
  justify-content: flex-end;
}

.work-all-projects {
  position: relative;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 10rem;
  display: flex;
  justify-content: space-between;
}

.work-all-projects a {
  color: #fff;
}

.work-controls {
  display: flex;
}

.work-controls .work-control {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid #000;
  border-radius: 100%;
  height: 70px;
  width: 70px;
  margin-right: 20px;
  cursor: pointer;
  transition: .2s;
}

.work-controls .work-control .line {
  width: 27px;
  height: 1px;
  background-color: #000;
}

.work-controls .work-control img {
  filter: brightness(0);
  transform: rotate(-90deg);
  width: 15px;
}

.work-controls .word-project-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  overflow: hidden;
}

.work-controls .word-project-title .work-title {
  white-space: nowrap;
  background-color: transparent;
  overflow: hidden;
  width: 0;
  font-weight: 400;
}

.work-controls .word-project-title .work-title.active {
  width: auto;
}

.word-control-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.work-controls .work-control-left {
  flex-direction: row-reverse;
}

.work-controls .work-control-left img {
  transform: rotate(90deg);
}

.work-controls .work-control:hover {
  background-color: #000;
}

.work-controls .work-control:hover .line {
  background-color: #fff;
}

.work-controls .work-control:hover img{
  filter: brightness(1);
}

.work-all-projects p {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 1.3vw;
  line-height: 1.3vw;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 300px;
  padding: 1.4vw 2.4vw;
  padding-top: 1.5vw;
  transition: .2s;
}

.work-all-projects p img {
  position: absolute;
  top: 1vw;
  right: 2vw;
  width: 0.6vw;
}

.work-all-projects a:hover {
  text-decoration-color: #000;
  color: #000;
}

.work-all-projects a:hover p{
  background-color: transparent;
  border-color: #fff;
}

.work-section.dark {
  background-color: #191B1D;
  padding-top: 0;
  padding-bottom: 1vw;
}
.work-section.dark .text-move-scroll {
  /*padding-top: 4vw;*/
}
.work-section.dark .work-section-images {
  padding-top: 4vw;
}
.work-section.dark .work-all-projects a {
  color: #000;
}
.work-section.dark .work-controls .work-control  {
  border: 1px solid #fff;
}
.work-section.dark .work-controls .work-control .line {
  background-color: #fff;
}
.work-section.dark .work-controls .work-control img {
  filter: brightness(1);
}
.work-section.dark .work-controls .work-control:hover {
  background-color: #fff;
}
.work-section.dark .work-controls .work-control:hover .line {
  background-color: #000;
}
.work-section.dark .work-controls .work-control:hover img{
  filter: brightness(0);
}
.work-section.dark .work-all-projects p {
  background-color: #fff;
  border: 1px solid #000;
}
.work-section.dark .work-all-projects a:hover {
  text-decoration-color: #fff;
  color: #fff;
}
.work-section.dark .work-all-projects a:hover p{
  background-color: #000;
  border-color: #000;
}
.work-section.dark .work-all-projects p img {
  filter: brightness(0);
}

.work-section.dark .work-all-projects a:hover p img {
  filter: brightness(1);
}

.work-section.dark .work-controls .word-project-title .work-title {
  color: #fff;
}

.paralax-background-wrap {
  min-height: 100vh;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@supports (-webkit-overflow-scrolling: touch) {
  .paralax-background-wrap {
    background-attachment: scroll;
  }
}

.drown-section {
  height: 100%;
  width: 100%;
  min-height: auto;
}

.drown-section-content {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.drown-section-wrapper {
  padding: 15vw 0;
  position: relative;
}

.drown-section-background {
  z-index: 0;
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 110%;
  background: linear-gradient(0deg, rgba(25,27,29,0.700717787114846) 0%, rgba(25,27,29,0.6699054621848739) 5%, rgba(25,27,29,0.16850490196078427) 16%, rgba(25,27,29,0) 23%, rgba(25,27,29,0) 75%, rgba(25,27,29,0.16290266106442575) 84%, rgba(25,27,29,1) 95%, rgba(25,27,29,1) 100%);
  transition: 1s;
}


.drown-section-content h2 {
  text-align: center;
  font-family: 'Voyage';
  color: #fff;
  font-size: 10.4vw;
  font-weight: 100;
  line-height: 10.1vw;
  padding-bottom: 2vw;
  padding-left: 1vw;
  padding-right: 1vw;
  transform: translate(0, 100px);
  opacity: 0;
}

.drown-section-paragraph {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 2.1vw;
  font-weight: var(--p-font-weight);
  line-height: 120%;
  transform: translate(0, 100px);
  opacity: 0;
  margin-bottom: 20px;
}

.drown-section-button {
  position: relative;
  display: flex;
  justify-content: center;
}

.drown-section-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin: 4.2vw 0;
}

.drown-section-link a {
  color: #191B1D;
  text-decoration: none;
}

.drown-section-link img {
  position: absolute;
  top: -10px;
  right: 30px;
}

.drown-section-link span {
  background-color: #D5D1C8;
  font-size: 1.3vw;
  font-weight: var(--bold-button-weight);
  line-height: 1;
  border: 1px solid #D5D1C8;
  border-radius: 300px;
  padding: 26px 35px 26px 35px;
  text-decoration: underline;
  transition: .2s;
}

.drown-section-link:hover span {
  background-color: #000;
  color: #D5D1C8;
}


/* Button section */
*{
  --offwhite-filter: brightness(0) saturate(100%) invert(92%) sepia(7%) saturate(257%) hue-rotate(4deg) brightness(97%) contrast(80%);
  --black-filter: brightness(0) saturate(100%);
}

.button-arrow{
  transition-property: all;
  transition-duration: 300ms;
}

.drown-section-link{
  transition-property: all;
  transition-duration: 300ms;
}

.drown-section-link .button-arrow {
  filter: var(--black-filter);
}

.second-banner-link .button-arrow, .contact-us-link .button-arrow, .we-brave-link .button-arrow {
  filter: var(--offwhite-filter)
}

.drown-section-link:hover .button-arrow {
    filter: var(--offwhite-filter);
}

.second-banner-link{
  border: 1px solid transparent;
  transition-property: all !important;
}
.second-banner-link a {
  transition: all 0.3s !important;

}

.second-banner-link:hover{
  border: 1px solid #D5D1C8;
  background-color: #D5D1C8 !important;
  color: #191B1D;
}
.second-banner-link:hover a{
  color: #191B1D !important;
}



.input_field .submit_field button, .fui-btn-wrapper button[type=submit] {
  border: 1px solid transparent !important;
  transition-property: all;
  transition-duration: 300ms;
}

.input_field .submit_field button:hover, .fui-btn-wrapper button[type=submit]:hover {
  border: 1px solid #D5D1C8 !important;
  background-color: #191b1d;
  color: #D5D1C8;
}

.second-banner-link.link-v2 {
  padding: 20px 30px 20px 25px !important;
  margin-top: 10px !important;
  transition-property: all !important;
  transition-duration: 300ms;
}
@media(min-width: 767px) {

  .second-banner-link.link-v2:not(.text-only-block *) {
    margin-left: -25px;
  }

  .link-v2-container {
    display: flex;
  }

  .text-only-block .link-v2-container {
    justify-content: center;
  }


  .we-brave-link {
    border: 1px solid transparent;
    transition-property: all !important;
    transition-duration: 300ms !important;
    padding: 20px 25px 20px 25px !important;
    border-radius: 300px;
    margin-right: -25px;
  }

  .we-brave-link:hover {
    border: 1px solid #D5D1C8;
    background-color: #D5D1C8;
  }

  .we-brave-link:hover a, .we-brave-link:hover a p {
    color: #191B1D !important;
  }

  .we-brave-link a p {
    transition: all 0.3s;
  }

  .we-brave-link a {
    position: relative;
    display: -webkit-box;
    transition: all 0.3s;
  }
}

.text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 0;
}

.text-section h2 {
  color: #fff;
  text-align: center;
  font-size: 2.1vw;
  line-height: 2.2vw;
  font-weight: 500;
}

.we-brave-section {
  position: relative;
  height: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(25,27,29,0.6979166666666667) 0%, rgba(25,27,29,0.76234243697479) 2%, rgba(25,27,29,0.865983893557423) 9%, rgba(25,27,29,0.9528186274509804) 17%, rgba(25,27,29,1) 27%, rgba(25,27,29,1) 100%);
  padding-top: 0;
  max-width: 100%;
  overflow: hidden;
}

/*.we-brave-section.dark.last-block-cases_text{*/
/*  margin-top: 0;*/
/*}*/

.we-brave-section.dark {
  /* margin-top: 90px; */
  margin-top: 4.6vw;
}

.we-brave-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  width: 100%;
  height: 100%;
  padding: 3vw 0;
}

.we-brave-text {
  position: relative;
  z-index: 1;
  left: 10vw;
  flex: 1;
}

.we-brave-text h2 {
  color: #fff;
  font-family: 'Voyage';
  font-size: 10.4vw;
  line-height: 90%;
  font-weight: 400;
  padding-bottom: 0;
  /*opacity: 0;*/
  /*transform: translate(0, 100px);*/
  /* margin-bottom: 80px; */
  margin-bottom: 4.2vw;
  max-width: 80%;
}

.we-brave-text p {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  font-size: 2.1vw;
  font-weight: var(--p-font-weight);
  line-height: 120%;
  /*opacity: 0;*/
  /*transform: translate(0, 100px);*/

  transition-property: all;
  transition-duration: 300ms;
}

.we-brave-link img{
  opacity: 0;
  transform: translate(0, 25px);
}

.we-brave-description {
  max-width: 38.5%;
}

.we-brave-text .we-brave-extras {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  /* padding-top: 38px; */
  padding-top: 4rem;
}

.we-brave-extras .we-brave-author p {
  font-size: 1.3vw;
  line-height: 1.6vw;
}
.we-brave-extras .we-brave-link {
  position: relative;
}
.we-brave-extras .we-brave-link a {
  text-decoration: underline;
  color: #D5D1C8;
}

.we-brave-extras .we-brave-link p {
  font-size: 1.3vw;
  line-height: 1.6vw;
  color: #D5D1C8;
}

.we-brave-extras .we-brave-link img {
  position: absolute;
  top: -0.6vw;
  right: -13px;

  opacity: 0;
  transform: translate(0px, 30px);
}

.we-brave-image {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  height: 100%;
  min-height: 100%;
  width: 49%;
}

.we-brave-image img, .we-brave-image video, .we-brave-image picture, .we-brave-image div {
  transition: 0.2s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.circle-section {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 2;
}

.circle-image-wrapper {
  position: relative;
  width: 100%;
}

.circle-section .circle-image {
  position: absolute;
  width: 25vw;
  max-width: 300px;
  min-width: 100px;
  right: 10vw;
  top: 0;
  transform: translateY(-50%);
  display: inline-block;
  /*width: 20vw;*/
  /*max-width: 400px;*/
}



.circle-section.fixed {
  position: fixed;
  top: 0;
}

.circle-section.fixed .circle-image-wrapper .circle-image{
  transform: translateY(0);
  z-index: 10;
}

.service-section {
  position: relative;
  /*width: 100%;*/
  height: auto;
  padding-top: 10vw;
  padding-bottom: 10vw;
  background-color: #191B1D;
  z-index: 1;
}

.service-section-list {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.service-section-list ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: space-between;
  width: 100%;
}

.service-section-list li {
  padding: 2.9vw 2vw;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.service-section-list ul li h3 {
  color: #fff;
  font-weight: 700;
  font-size: 3.15vw;
  line-height: 4vw;
  padding-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transform: translate(0, -200px);
  opacity: 0;
}

.service-section-list ul li span {
  color: #D5D1C8;
  font-size: 1.3vw;
  font-weight: 300;
  line-height: 2.6vw;
}


.service-section-list ul li span a {
  opacity: 0;
  color: #D5D1C8;
  transition: .2s;
  transform: translate(0, 100px);
  opacity: 0;
}

.service-section-list.services-count-1{
  justify-content: left;
}

.service-section-list.services-count-1 ul li h3 {
  color: #fff;
  font-weight: 700;
  font-size: 5.15vw;
  line-height: 6vw;
  padding-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transform: translate(0, -200px);
  opacity: 0;
}

.service-section-list.services-count-1 ul li span {
  color: #D5D1C8;
  font-size: 2.3vw;
  font-weight: 300;
  line-height: 3.6vw;
}

.contact-us-section {
  position: relative;
  z-index: 1;
  background-color: #fff;
  /* background-color: #191B1D; */
  height: auto;
  transition: .2s;
}

.contact-us-content {
  padding: 200px 16px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us-title {
  color: #191B1D;
  text-align: center;
  font-family: 'Voyage';
  font-size: 10vw;
  line-height: 9.45vw;
  font-weight: 400;
  padding: 2.2vw 0;
  opacity: 0;
  transform: translate(0, 100px);
}

.contact-us-text {
  color: #191B1D;
  text-align: center;
  font-size: 2.1vw;
  line-height: 120%;
  font-weight: var(--p-font-weight);
  padding: 2.2vw 0;
  /*white-space: pre-line;*/
  opacity: 0;
  transform: translate(0, 100px);
  max-width: 900px;
}

.contact-us-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin: 2.2vw 0;
}

.contact-us-link a {
  color: #fff;
  text-decoration: none;
}

.contact-us-link img {
  position: absolute;
  /*top: 15px;*/
  top: 20px;
  right: 30px;
}

.contact-us-link p {
  background-color: #000;
  font-size: 1.3vw;
  line-height: 1;
  border: 1px solid #191B1D;
  border-radius: 300px;
  /*padding: 25px 40px;*/
  padding: 26px 35px 26px 35px;
  text-decoration: none;
  transition: .2s;
  font-weight: var(--bold-button-weight);
  color: #D5D1C8;
}

.contact-us-link:hover p {
  background-color: #d5d1c8;
  color: #191B1D;
}

.should-invert .contact-us-link:hover p {
  background-color: white;
}

.contact-us-link:hover img{
  filter: brightness(0) saturate(100%) invert(8%) sepia(17%) saturate(275%) hue-rotate(169deg) brightness(97%) contrast(94%);
}

.service-title-link{
  text-decoration: none;
}

.social img{
  transition-property: all;
  transition-duration: 300ms;
}

.footer-contact a{
  transition-property: all;
  transition-duration: 300ms;
}

.footer-contact a:hover{
  color: white;
}

.social:hover img{
  filter: brightness(0) saturate(100%) invert(96%) sepia(15%) saturate(158%) hue-rotate(342deg) brightness(88%) contrast(88%);
  /*filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(27%) hue-rotate(196deg) brightness(107%) contrast(99%);*/
}

.carousel-section {
  padding: 4vw 0;
  padding-top: 12vw;
  background: linear-gradient(0deg, rgba(25,27,29,0.6979166666666667) 0%, rgba(25,27,29,0.76234243697479) 2%, rgba(25,27,29,0.865983893557423) 9%, rgba(25,27,29,0.9528186274509804) 17%, rgba(25,27,29,1) 27%, rgba(25,27,29,1) 100%);
}

.carousel-section.dark {
  background: #191B1D;
  padding-top: 120px;
}

.carousel-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4vw;
}

.carousel-inner {
  background-color: #fff;
  border-radius: 400px;
  text-align: center;
  width: 100%;
  border-radius: 400px;
  /* overflow: hidden; */
  width: 70vw;
  min-width: 300px;
}

.carousel-inner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.2vw;
  border-radius: 400px;
  text-align: center;
}

.slick-list {
  overflow: hidden;
  border-radius: 400px;
}

.stars {
  display: flex;
  justify-content: center;
}

.stars img{
  padding: 5px;
  width: 2.1vw;
  height: 2.1vw;
  min-width: 25px;
  min-height: 25px;
}

.carousel-p {
  color: #191B1D;
  font-size: 2.1vw;
  font-weight: 500;
  line-height: 2.6vw;
  padding: 20px 0;
}

.carousel-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0.5rem;
}

.author-image img {
  width: 4.2vw;
  height: 4.2vw;
  border-radius: 9999px;
  object-fit: cover;
}

.author-title h4{
  color: #191B1D;
  font-size: 1.05vw;
  line-height: 1.6vw;
  font-weight: 400;
  padding-left: 1.05vw;
}

.carousel-slider .slick-arrow {
  left: 50%;
  top: 0;
  background: transparent;
  z-index: 2;
  margin-top: -4vw;
}

.carousel-slider .slick-prev {
  left: 33%;
}

.carousel-slider .slick-next {
  left: auto;
  right: 33%;
}

.carousel-slider .slick-arrow i {
  color: #fff;
  background: transparent;
}

.carousel-section span.progressBar {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
}

.carousel-section span.progressBar .inProgress {
  background-color: rgba(255, 255, 255, 1);
  width: 0%;
  height: 2px;
}

.carousel-link {
  display: flex;
  justify-content: center;
  padding-top: 2.6vw;
}

.footer-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  padding-top: 100px;
}

.footer-title h2 {
  color: #fff;
  font-family: 'Voyage';
  font-weight: 400;
  font-size: 5.2vw;
}

.footer-title-padding{
  height: 2vw;
}

.socials-padding{
  height: 5vw ;
}

.footer-state-padding{
  height: 4vw;
}

.partner-padding{
  height: 6vw;
}

.footer-title-padding,
.socials-padding,
.footer-state-padding,
.partner-padding{
  transform: scaleY(0) !important;
}

.footer-socials .socials-wrapper {
  display: flex;
  flex-direction: row;
}

.footer-socials .socials-wrapper .social {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

.footer-socials .socials-wrapper .social a {
  line-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  padding-bottom: 2vw;
}
.footer-contact{
  font-size: 1.05vw;
  color: #D5D1C8;
}


.footer-contact li::marker {
  color: #ffffff30;
}

.footer-address {
  font-size: 1.05vw;
  color: #D5D1C8;
  text-align: center;
  padding-bottom: 2vw;
}

.footer-state {
  font-size: 1.05vw;
  color: #D5D1C8;
  text-align: center;
}

.footer-partners .partner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer-partners .partner-wrapper .partner {
  padding-left: 2vw;
  padding-right: 2vw;
}

.footer-end {
  border-top: 1px solid #fff;
  width: 100%;
  max-width: 1480px;
  margin: 0 2vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 5px;
}

.footer-end-left {
  display: flex;
  flex-direction: row;
}

.footer-end-left span {
  font-size: 1.05vw;
  color: #fff;
}

.footer-end-left span:first-child span {
  padding-right: 20px;
  display: list-item;
  margin-right: 10px;
}

.footer-end-left span:first-child span::marker, .mock-li::marker {
  color: #ffffff30;
}


.footer-end-left a {
  text-decoration: none;
}

.footer-end-left a:first-child {
  list-style-type: none;
}

.footer-end-left li::marker {
  color: #ffffff30;
  padding-right: 10px;
}

.footer-end-right img {
  width: 38px;
}

.single-page-wrapper {
  position: relative;
  z-index: 1;
  background-color: #191B1D;
}

.blog-body .single-page-wrapper {
  background-color: #d5d1c8;
}

.blog-body .single-title h1,
.blog-body .single-full-width p,
.blog-body .single-full-width h2,
.blog-body .single-full-width ul,
h2.default-h2
{
  color: black;
}

.blog-body .single-full-width p a,
.blog-body .longtext li a
{
  color: black;
}

.blog-body .text-move-scroll h2 span {
  color: rgba(0,0,0,0.1)
}

.blog-body .second-banner-link a {
  color: black;
}

.blog-body .second-banner-link .button-arrow,
.blog-body .contact-us-link:hover .button-arrow,
.blog-body .we-brave-link .button-arrow {
  filter: brightness(0) ;
}

.blog-body .second-banner-link:hover {
  border-color: black;
}

.blog-body .centertext-banner .second-banner-link {
  background-color: #d5d1c8;
}

.blog-body .work-section.dark, .blog-body .work-title {
  background-color: #d5d1c8;
}

.blog-body .work-title h2 {
  color: black;
}

.block-body .work-section.dark {
  padding-bottom: 0;
}

.blog-body .service-section {
  background-color: #d5d1c8;
}

.blog-body .service-section-list.services-count-1 ul li h3,
.blog-body .service-section-list.services-count-1 ul li span,
.blog-body .service-section-list ul li span a {
  color: black;
}

.blog-body .reference_title {
  color: black;
}







.imagebanner-block.next-block-home_contact, .imagebanner-block.next-block-home_contact img {
  padding-bottom: 0 !important;
  margin-bottom: -15px;
}

.single-title {
  position: relative;
  /* padding-top: 9.5vw; */
  padding-top: 150px;
  /* padding-bottom: 2vw; */
  text-align: center;
  padding-bottom: 14px;
}

.single-title-with_bcg {
  height: 549px;
  padding-top: 0;
  display: flex;
  align-items: flex-end;
}

.single-title-text-scroll {
  position: absolute;
  top: -20%;
}

.cases-overview{
  max-width: 100%;
  overflow: hidden;
}

.single-title-wrapper {
  max-width: 1420px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
}

.single-title-backgound {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.single-title-backgound img, .single-title-backgound video, .single-title-backgound div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-title h1 {
  font-family: 'Voyage';
  font-size: 5.1vw;
  line-height: 4.8vw;
  /* white-space: pre-line; */
  color: #fff;
  font-weight: 400;
  opacity: 0;
  transform: translate(0, 100px);
  /*max-width: 800px;*/
  margin-left: auto;
  margin-right: auto;
}

.single-title h2 {
  font-size: 400px;
  font-weight: 400;
  font-family: 'Voyage';
  line-height: 100%;
  color: #fff;
}

.single-title h4 {
  padding: 40px 10px 20px;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  max-width: 500px;
}
.single-full-width {
  display: flex;
  flex-direction: column;
  /*padding: 0 20px;*/
  /*padding-bottom: 3vw;*/
  /*max-width: 1480px;*/
  /*padding: 16px;*/
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.single-full-width.no-margin {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.single-full-width.no-margin img{
  /* padding-bottom: 100px; */
  /*padding-bottom: 5.2vw;*/
}

.single-full-width.center {
  text-align: center;
  /*padding: 16px 16px 0;*/
  padding-left: 16px;
  padding-right: 16px;
}

.single-full-width p{
  color: #fff;
  font-size: 2.1vw;
  font-size: normal;
  font-weight: var(--p-font-weight);
  line-height: 120%;
  /*padding: 0 0 30px;*/
  /*white-space: pre-line;*/
}

.single-full-width p:has(+*), .image-text-block:has(img) .single-full-width p{
  padding: 0 0 30px;
}


.single-full-width.single-paragraph {
  /* padding-bottom: 55px; */
  /*padding-bottom: 2.8vw;*/
  /*padding: 6.3vw 15px 6.9vw;*/

}

.single-full-width.single-paragraph p {
  /* padding: 120px 0 80px; */
  /*padding: 6.3vw 0 4.1vw;*/
}

.single-full-width p a{
  color: #D5D1C8;
  font-size: 2.1vw;
  font-size: normal;
  font-weight: var(--p-font-weight);
  line-height: 120%;
  /*padding: 80px 0 50px;*/
  /*white-space: pre-line;*/
}

.longtext li a {
  color: #D5D1C8;
  text-decoration: underline;
}

@media(min-width: 767px) {
  .single-full-width ul:has(~ h2), .single-full-width ul:has(~ h2) ul {
    padding-bottom: 0;
  }
}

.longtext:has(~ .second-banner) {
  /*padding-bottom: 2vw;*/
}

.single-full-width h2 a{
  color: #D5D1C8;
}

.single-full-width h2, h2.default-h2 {
  font-size: 3.1vw;
  line-height: 120%;
  /* padding-bottom: 35px; */
  /*padding-bottom: 30px;*/
  font-weight: 700;
  color: #fff;
  /*white-space: pre-line;*/
}

.single-full-width h2:has(+*) {
  padding-bottom: 30px;
}

.single-full-width img:not(.link-arrow), .single-full-width video{
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.second-banner-link.link-v2{
  margin-top: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 30px;
}

.single-split {
  flex-direction: row;
  /* padding: 90px 16px 16px; */
  /*padding: 105px 16px;*/
}

.last-block-imageText .single-full-width {
  /*padding: 105px 16px 0px;*/
  padding-left: 16px;
  padding-right: 16px;
}

.single-split.reverse {
  flex-direction: row-reverse;
}

.single-split .single-col-6 {
  flex: 0 0 50%;
  /* flex: auto; */
  padding-right: 0;
}

/* .single-split .single-col-6:nth-child(odd) {
  padding-right: 60px;
} */

.single-split.reverse .single-col-6 {
  padding-right: 0;
  padding-left: 0;
}

.single-col-6 .single-text-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-split.reverse .single-col-6:nth-child(even) {
  padding-right: 0;
  padding-left: 0;
}

.single-split .single-text-wrapper {
  padding-right: 55px;
  padding-left: 0;
}

.single-split.reverse .single-text-wrapper {
  padding-left: 55px;
  padding-right: 0;
}

.single-split img{
  aspect-ratio: 1/1;
}

.split-images.single-split {
  /*padding-bottom: 6vw;*/
  /*padding-top: 10px;*/
}

.split-images.single-split .single-col-6:nth-child(odd){
  padding-right: 16px;
}

.split-images.single-split .single-col-6:nth-child(even){
  padding-left: 16px;
}

.split-images.single-split img, .split-images.single-split video{
  aspect-ratio: 2/1.5;
  max-width: 100%;
  object-fit: cover;
}

.single-title-p p{
  /* padding-top: 20px; */
  padding-top: 1vw;
  /* padding-bottom: 100px; */
  /*padding-bottom: 5.2vw;*/
}

.single-full-width ul{
  list-style-position: inside;
  color: #fff;
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 120%;
  padding: 0 0 0 2vw;
}

.single-full-width ul li{
  list-style-position: outside;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.image-text-block .single-split{
  padding-bottom: 0;
}

@media(max-width: 1100px) {
  .image-text-block .text-section-i:has(ul) {
    display: flex;
    justify-content: center;
    text-align: left;
  }

  .image-text-block .link-v2-container {
    align-self: center;
  }
}

.image-text-block.block-type-mainHeader .link-v2-container {
  justify-content: center;
  margin-bottom: 55px;
}

@media(max-width: 1100px) {
  .image-text-block.block-type-rightImage .single-split {
    flex-direction: column-reverse;
  }

  .image-text-block.block-type-leftImage .single-split {
    flex-direction: column;
  }

  .image-text-block.block-type-rightImage .single-split .single-col-6,
  .image-text-block.block-type-leftImage .single-split .single-col-6 {
    padding-right: 0;
    padding-bottom: 16px;
    padding-top: 20px;
    text-align: center;
  }
  .image-text-block.block-type-rightImage .single-split .single-col-6 .single-text-wrapper,
  .image-text-block.block-type-leftImage .single-split .single-col-6 .single-text-wrapper {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .image-text-block .we-brave-link.white-button {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}


.single-title-p h2 {
  padding-bottom: 10px;
}

.single-padding-top {
  /* padding-top: 80px; */
  padding-top: 4.3vw;
}

.single-padding-top p {
  padding-bottom: 0;
}

.single-padding-top p:has(+*) {
  padding-bottom: 30px;
}

.single-full-width.no-padding-bottom {
  padding-bottom: 0;
}

.cases-section {
  /*padding: 50px 135px 80px 135px;*/
  /*max-width: 1600px;*/
  margin-left: auto;
  margin-right: auto;
}

.cases-section .work-container {
  padding-top: 0;
}

.cases-overview .text-move-scroll h2 span {
  transform: translateY(-50px);
  display: block;
}

.breadcrumbs {
  position: relative;
}

.breadcrumbs, .breadcrumbs a, .breadcrumbs span {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 81px;
}

.cases-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.case-item {
  position: relative;
  display: flex;
  flex: 0 0 50%;
  padding: 3vw;
}

.case-item:nth-child(odd) {
  justify-content: flex-end;
}

.case-item:nth-child(even) {
  transform: translateY(100px);
}

.case-item .case-animate {
  width: 100%;
}

.case-item-image {
  position: relative;
  /* width: 740px; */
  width: 100%;
  /* height: 524px; */
  height: 27vw;
  cursor: pointer;
  overflow: hidden;
}

.case-item-image img, .case-item-image video, .case-item-image div {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: 0.3s;
  aspect-ratio: 1;
}

.case-item-image h3 {
  position: absolute;
  bottom: 29px;
  left: 27px;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  transition: 0.3s;
}

.case-item:nth-child(even) .case-item-image h3 {
  left: auto;
  right: 27px;
}

.case-item-image:hover img {
  transform: scale(1.1);
}

.case-item-image:hover h3 {
  font-size: 30px;
}

.case-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0 150px;
  position: relative;
  z-index: 20;
}

.case-button-wrapper a {
  color: #D5D1C8;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.2s;
}

.case-button-wrapper a .case-button-border {
  border: 1px solid #D5D1C8;
  height: 128px;
  width: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  border-radius: 50%;
  transition: 0.2s;
}

.case-button-wrapper a .case-button-border span {
  font-size: 25px;
  line-height: 25px;
}

.case-button-wrapper a:hover {
  color: #191B1D;
}
.case-button-wrapper a:hover .case-button-border {
  border-color: #191B1D;
  background-color: #D5D1C8;
}

.next_project_section {
  position: relative;
  width: 100%;
  /* padding-top: 370px; */
  margin-top: 0;
  z-index: 1;
}

.email-form-case .next_project_section{
  /*padding-top: 3vw;*/
}

.email-form-case .single-title h1 {
  font-family: 'Poppins';
  font-size: 3.125vw;
  line-height: 1.3
}

.next_project_controls {
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.next_project_controls p {
  color: #fff;
  font-size: 40px;
  font-weight: var(--p-font-weight);
  line-height: 50px;
}

.project-control {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid #D5D1C8;
  border-radius: 100%;
  height: 70px;
  width: 70px;
  margin-right: 20px;
  cursor: pointer;
  transition: .2s;
}
.project-control .line {
  width: 27px;
  height: 1px;
  background-color: #D5D1C8;
}

.project-control img {
  filter: brightness(1);
  transform: rotate(-90deg);
  width: 15px;
}

.project-control:hover {
  background-color: #D5D1C8;
}

.project-control:hover .line {
  background-color: #000;
}

.project-control:hover img {
  filter: brightness(0);
}

.next_project {
  position: relative;
  width: 100%;
  height: 334px;
}

.next_project img, .next_project video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  filter: invert(0.1) brightness(0.5);
}

.next_project_title {
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.next_project_title h2 {
  color: #fff;
  font-family: 'Voyage';
  font-size: 100px;
  font-weight: 400;
  line-height: 90%;
  max-width: 800px;
}

.last-block-reviews.image-text-block{
  padding-top: 136px;
}


.second-banner-link a
,.contact-us-link p
,.drown-section-link span
{
  font-size: 2.1vw;
  text-decoration: none;
  text-transform: uppercase;
}














.our_location {
  width: 100%;
  padding: 60px 0;
  background-color: #D5D1C8;
  position: relative;
  z-index: 1;
}

.our_location_wrapper {
  width: 100%;
  max-width: 1500px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: wrap;
}

.our_location_title {
  flex: 0 0 50%;
  text-align: center;
  display: flex;
  justify-content: start;
  align-items: center;
}

.our_location_title h2 {
  color: #000;
  font-family: 'Voyage';
  font-size: 200px;
  font-weight: 400;
  line-height: 90%;
  text-align: left;
  padding-bottom: 30px;
}

.our_location_content {
  flex: 0 0 50%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}

.our_location_content span {
  font-size: 40px;
  font-weight: 300;
  text-decoration: underline;
  /*white-space: pre-line;*/
  padding-bottom: 30px;
}

.our_location_content b {
  line-height: 100%;
}

.our_location_content b span {
  font-weight: 700;
  text-decoration: none;
}

.our_location_content span:last-child {
  padding-bottom: 0;
}

/* Not found navigation */
.not_found_navigation {
  position: relative;
  z-index: 1;
  background-color: #191B1D;
  padding: 150px 0;
}

.not_found_navigation .nav-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 75px;
}

.not_found_navigation .not_found_nav_back {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  height: 60px;
  width: 60px;
  margin-right: 20px;
  cursor: pointer;
  flex-direction: row-reverse;
  position: absolute;
  top: 100px;
  left: 10px;
  opacity: 0;
  display: none;
  transform: translate(50px, -50%);
}

.not_found_navigation .not_found_nav_back .line {
  width: 22px;
  height: 1px;
  background-color: #fff;
}

.not_found_navigation .not_found_nav_back img {
  transform: rotate(90deg);
  width: 15px;
  filter: brightness(1);
}

.not_found_nav_list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 30px;
}


.not_found_nav_item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  font-size: 4vw;
  font-weight: 700;
  line-height: 5vw;
  letter-spacing: -5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  padding-bottom: 10px;
  /* border-bottom: 1px solid #FFFFFF; */
}

.not_found_navigation .not_found_nav_item .item-wrapper {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  cursor: pointer;
}

.not_found_nav_item .item-wrapper .nav-item-text {
  position: relative;
}

.not_found_navigation .not_found_nav_item p {
  background: linear-gradient(to right, #fff, #fff 50%, #fff 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 500ms ease;
  padding: 0 2px;
  transform: translate(0,0);
}

.not_found_nav_item .underline {
  position: absolute;
  bottom: 5%;
  height: 5px;
  width: 0;
  background-color: #fff;
  transition: 0.5s;
}

.not_found_navigation .plus {
  position: relative;
  padding: 0 40px;
  top: 5px;
  transition: 0.25s;
}

.not_found_navigation .plus .plus-vert {
  height: 35px;
  background-color: #fff;
  position: absolute;
  width: 7px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.not_found_navigation .plus .plus-hos {
  width: 35px;
  background-color: #fff;
  position: absolute;
  height: 7px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.not_found_navigation .not_found_nav_item .sub-menu .sub-line {
  background-color: #fff;  
}

.not_found_nav_item .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 50px;
}

.not_found_nav_item .sub-menu .not_found_nav_item {
  padding-left: 75px;
  position: relative;
  left: -75px;
  border: none;
}

.not_found_nav_item .sub-menu .sub-line {
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.not_found_nav_item .sub-menu .nav-item-wrapper {
  position: relative;
  z-index: 2;
}

.not_found_nav_item .sub-menu .not_found_nav_item p {
  font-weight: 300;
  transform: translate(0, 110%);
  padding-right: 4px;
  cursor: pointer;
}

.not_found_nav_item .item-wrapper.shadow p{
  width: 100%;
  background-position: 0 200%;
}

.not_found_nav_item .item-wrapper:hover .underline {
  width: 100%;
}

.not_found_nav_item:hover .plus {
  transform: rotate(180deg);
}

.not_found_item_active {
  clip-path: none;
  overflow: visible;
}

.not_found_nav_item .nav_item_border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
/*  */

.drown-section-paragraph{
  padding-left: 50px;
  padding-right: 50px;
}




/* Animations */
.text-section-animate .line {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.text-section-animate .word {
  transform: translateY(3vw);
}

.drown-section-paragraph .line {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.drown-section-paragraph .word {
  transform: translateY(3vw);
}

.we-brave-text h2 .line {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.we-brave-text h2 .word {
  transform: translateY(10.4vw);
}

.we-brave-text p .line {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.we-brave-text p .word {
  transform: translateY(3vw);
}

.first-loader {
  opacity: 0;
}



/* Media Query */


@media (min-width: 1921px) {
  .nav-item {
    font-size: 76.8px !important;
    line-height: 96px !important;
    /* letter-spacing: -5%; */
  }
}

@media (max-width: 1750px) {
  .footer-contact {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 20px;
  }
  .footer-address {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 10px;
  }
  .footer-state {
    font-size: 18px;
    line-height: 22px;
    /*padding-bottom: 40px;*/
  }
}

.nav-item .item-wrapper .nav-item-text p{
  line-height: 1.3;
}

@media (max-width: 1350px) {
  .contact_form_wrapper {
    flex-direction: column !important;
    align-items: center;
  }

  .contact_form_text {
    padding-right: 15px !important;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .nav-item .item-wrapper .nav-item-text p{
    font-size: 50px !important;
    line-height: 65px !important;
    letter-spacing: -5px !important;
  }

  .nav-item .sub-menu p {
    font-size: 50px !important;
    line-height: 60px !important;
    letter-spacing: -5px !important;
  }

  .not_found_nav_item .item-wrapper .nav-item-text p{
    font-size: 50px !important;
    line-height: 65px !important;
    letter-spacing: -5px !important;
  }

  .not_found_nav_item .sub-menu p {
    font-size: 50px !important;
    line-height: 60px !important;
    letter-spacing: -5px !important;
  }

  .footer-title h2 {
    font-size: 56px;
    line-height: 70px;
    /*padding-bottom: 40px;*/
  }

  /*.contact_form_text {*/
  /*  text-align: center;*/
  /*}*/

  .contact_form_wrapper {
    flex-direction: column !important;
    align-items: center;
  }

  .contact_form_text {
    padding-right: 15px !important;
    text-align: center;
  }

  .contact_form_fields {
    margin-left: auto;
    margin-right: auto;
  }

  .checkbox_field {
    margin-top: 3px;
  }

  .our_location_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .our_location_title {
    padding-bottom: 50px;
  }

  .our_location_title h2 {
    text-align: center;
  }

  .our_location_content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .work-section-images {
    flex-direction: column;
    
  }
  .work-section-images .work-image {
    text-align: center;
    width: 100%;
    display: none;
    padding: 0 50px;
  }
  .work-section-images .work-image.active-work {
    text-align: center;
    width: 100%;
    display: none;
  }
  .work-section .work-section-images .work-image img, .work-section .work-section-images .work-image video {
    opacity: 1;
    filter: none;
    padding-right: 0;
    width: 100%;
    height: 450px;
    
  }
  .work-section-images .work-image:first-child {
    display: block;
  }
  .work-section-images .work-image:nth-child(2) {
    display: block;
  }
  .work-section-images .work-image:nth-child(3) {
    display: block;
  }
  .work-all-projects {
    justify-content: center;
  }
  .work-all-projects .work-controls {
    display: none;
  }
}

@media (max-width: 970px) {
  .single-title h1 {
    font-size: 50px;
    line-height: 43px;
  }
}

@media (max-width: 860px) {
  p, p a, ul li {
    font-size: 18px !important;
    line-height: 21px !important;
    white-space: normal !important;
  }

  .footer-end-left span {
    font-size: 18px !important;
    line-height: 21px !important;
  }

  .footer-end-left {
    flex-direction: column;
    padding: 10px 0;
    list-style-type: none !important;
  }

  .footer-end-left a li {
    padding-bottom: 10px !important;
  }

  .footer-end-right img{
    padding: 10px 0;
    width: 50px;
  }
}

@media (max-width: 810px) {
  .single-full-width h2, h2.default-h2 {
    font-size: 24px !important;
    line-height: 28px !important;
  }
}







/* Custom carousel */

#carousel-container {
	max-width:1152px;
	/* height: 650px; */
	/*height: 35vw;*/
	position: relative;
	margin: 50px auto 0;
  border: none;
  border-radius: 12.5vw;
  background-color: #fff;
  border-radius: 17.5vw; 
}

#carousel-container > div:first-child {
	overflow: hidden;
	max-width: 100%;
	margin: 0;
  height: 100%;
  border-radius: 17.5vw;
}

#carousel {
	position: relative;
	width: 420vw;
    padding: 2rem 0;
    margin: 0;
    display: flex;
}

.animate{
	-webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}

.animate.add-opacity-transition{
  transition-property: transform,opacity;
  -webkit-transition-property: -webkit-transform,opacity;
  -moz-transition-property: -moz-transform,opacity;
  -o-transition-property: -o-transform,opacity;

}

.slide {
  list-style: none;
	position: relative;
	float: left;
	transform: translateX(-100%);
  padding: 50px 100px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.custom-carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-inner {
  display: inline-block;
}

.carousel-p {
  text-align: center;
}

#controls {
  /*top: -60px;*/
  /*left: 0;*/
  /*right: 0;*/
  /*background: red;*/
  position: relative;
  width: 350px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
}

#controls span {
  position: relative;
	/*width: 50px;*/
	cursor: pointer;
	opacity: 1;
  display: flex;
  z-index: 1;
  line-height: 0.7
}

#controls span:hover {
	opacity: 1;
}

#prev {
	float: left;
  left: -30px;

  color: #000;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 250;
  line-height: 50px; /* 138.889% */
}

#next {
	float: right;
  /*transform: rotate(180deg);*/
  height: 100%;
  right: -30px;

  color: #000;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 250;
  line-height: 50px; /* 138.889% */
}

#controls span img {
  height: 20px;
}

.loading-div {
  width: 100%;
  background: red;
  position: relative;
  left: 0;
  top: 0;
}

.loading-filler {
  position: absolute;
  top: 10px;
  height: 1px;
  width: calc(80% - 60px);
  background-color: rgba(000, 000, 000, 0.30);
  /* margin-left: auto;
  margin-right: auto; */
  left: 35px;
  transition: 0.2s;
  /* right: 0; */
}

.loader {
  height: 100%;
  width: 50%;
  background-color: #000;
}

.carousel-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #000;
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  /* right: var(--margin-right); */
  left: calc(100% - var(--margin-right) - 10px);
  transition: 0.2s;
}

.carousel-dots .dot.dot-left {
  left: var(--margin-left);
  right: auto;
}

.nav-item-text, .nav-item-wrapper{
  text-decoration: none;
}

.footer-contact a{
  color: inherit;
  text-decoration: none;
}

.container-1300{
  /*max-width: 1435px;*/
  margin-left: auto;
  margin-right: auto;
  /*padding-left: 135px !important;*/
  /*padding-right: 135px !important;*/
}

.container-padding{
  margin-left: auto;
  margin-right: auto;
}

.container-1600{
  /*max-width: 1735px;*/
  margin-left: auto;
  margin-right: auto;
  /*padding-left: 135px !important;*/
  /*padding-right: 135px !important;*/
}

.container-1250{
  max-width: 1385px;
  margin-left: auto;
  margin-right: auto;
}

.work-section.dark {
  background-color: #191b1d;
}

.text-only-block{
  /*padding-top: 105px !important;*/
}

.extra-padding-text.text-only-block{
  /*TODO: Check if this should be restored*/
  /*padding-top: 105px !important;*/
}

.square-side-image{
  width: 100%;
  aspect-ratio: 1/1;
  position: sticky;
  top: 30px;
  min-height: auto;
  /*margin-bottom: 30px;*/
}

.centertext-banner {
  transition-property: all;
  transition-duration: 1s;
  /*padding-bottom: 135px;*/
}

/*.centertext-banner:hover{*/
/*  background-color: #D5D1C8;*/
/*}*/

/*.centertext-banner .single-padding-top h2, .centertext-banner .single-padding-top p,  .centertext-banner .single-padding-top *{*/
/*  transition-property: all;*/
/*  transition-duration: 1s;*/
/*}*/
/*.centertext-banner:hover .single-padding-top h2, .centertext-banner:hover .single-padding-top p,  .centertext-banner:hover .single-padding-top *{*/
/*  color: #191B1D;*/
/*}*/

.second-banner-link{
  transition-property: all;
  transition-duration: 300ms;
  border-radius: 300px;
  padding: 26px 35px 26px 35px;
  line-height: 1;
  /*padding-top: 1.5vw;*/
}

.centertext-banner .second-banner-link{
  transition-property: all !important;
  transition-duration: 300ms !important;
  background-color: #191b1d;
  display: block;
}

/*.centertext-banner:hover .second-banner-link{*/
/*  background-color: white;*/
/*}*/

/*.centertext-banner:hover .second-banner-link a {*/
/*  color: #191B1D;*/
/*}*/

/*.centertext-banner:hover .second-banner-link img {*/
/*  filter: brightness(0) saturate(100%) invert(7%) sepia(8%) saturate(791%) hue-rotate(169deg) brightness(95%) contrast(91%);*/
/*}*/

/*.centertext-banner:hover .second-banner-link a, .centertext-banner:hover .second-banner-link img {*/
/*  transition-property: all;*/
/*  transition-duration: 1s;*/
/*}*/

.image-text-block:not(.next-block-imageText, .next-block-longText, .next-block-home_centertextBanner, .next-block-work) {
  /*padding-bottom: 135px;*/
}

.longtext:not(.loop-i-0){
  /*padding-top: 105px;*/
}

@media(min-width: 767px) {
  .image-text-block ~ .longtext:not(.loop-i-0) {
    /*padding-top: 90px;*/
  }

  .image-text-block ~ .last-block-imageText .single-full-width {
    /*padding-top: 85px;*/
  }
}

.image-text-block.next-block-imageText .last-block-imageText .single-split{
  padding-bottom: 105px;
}


.entry-home{
  padding-top: 70px;
}

.bg-white{
  background: white;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.cslide {
  flex: 0 0 100%;
  padding: 20px;
  box-sizing: border-box;
}

.carousel-container{
  padding-top: 1.5rem;
}

.reviews-link{
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.active-submenu{
  position: relative;
  margin-top: 3rem;
  letter-spacing: normal;
}

.sub-menu{
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.grecaptcha-badge { visibility: hidden; }

.recaptcha-notice{
  font-size: 1.05vw;
  color: rgba(255, 255, 255, 0.50);

  font-style: normal;
  font-weight: 400;
  line-height: 1.2; /* 155% */
  padding-top: 5px;
  padding-bottom: 5px;

}

.recaptcha-notice a{
  color: rgba(255, 255, 255, 0.50);
}

.entry-type-cases{
  margin: 0;
}

.cases-text.last-block-reviews{
  margin: 0;
}


.cases-overview .single-title {
  padding-top: 0;
}

.cases-overview {
  overflow: unset;
}

.single-page-wrapper.scroll-wrapper {
  max-width: 100%;
  overflow: hidden;
  height: 20vw;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.cases-title-container {
  position: relative;
  z-index: 1;
  padding-top: 17vw;
}

.cases-title {
  font-family: 'Voyage';
  font-weight: 100;
  /*font-size: 31.2vw;*/
  font-size: 5vw;
  line-height: 0.9;
  color: #fff;
  text-align: center;

  position: sticky;
  top: 3vw;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: #ffffff;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #232526;
  text-shadow: 0 0 5px #ffffff;
}









/* Sm section */
@media (max-width: 768px) {
  .item-active{
    margin-left: 44px;
  }

  .cases-title-container {
    position: relative;
    z-index: 1;
    padding-top: 170px;
  }

  .cases-title {
    top: 100px;
    font-size: 7vw;
  }

  .single-page-wrapper.scroll-wrapper {
    height: 250px;
  }

  .image-text-block.last-block-home_centertextBanner.block-type-textOnly {
    padding-top: 50px;
  }

  .footer-end-left span:first-child span {
    padding-right: 0;
    margin-right: 0;
  }

  .circle-section .circle-image {
    width: 35vw;
  }

  .input_field .submit_field button, .fui-btn-wrapper button[type=submit] {
    font-size: 18px !important;
  }

  .email-form-case .single-title h1 {
    font-size: 7vw;
  }

  .footer-state-padding{
    height: 8vw;
  }

  .footer-partners .partner-wrapper .partner {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .footer-partners .partner-wrapper .partner img{
    width: 100%;
  }

  .nav-item .item-wrapper{
    transition-property: all;
    transition-duration: 300ms;
  }

  .nav-back {
    height: 44px;
    width: 44px;
    z-index: 30;
  }

  .nav-item .sub-menu .sub-line {
    top: 30px;
  }

  .nav-item .sub-menu{
    /*width: 100%;*/


    width: calc(100% + 50px);
    margin-left: -25px;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 350px);
  }

  .nav-item .sub-menu .nav-item {
    left: -16px;
    padding-right: 10px;
  }

  .nav-item .sub-menu .nav-item p{
    padding-left: 14px;
  }

  .nav-item .sub-menu .nav-item{
    width: calc(100% + 16px);
  }

  .header-burger {
    top: 16px;
    right: 12px;
  }

  #nav-icon {
    transform: scale(0.8);
  }

  .header-logo img{
    width: 60px !important;
    min-width: 0;
    top: 16px;
    left: 16px;
  }

  .contact-us-content {
    padding: 200px var(--sm-padding);
  }

  .drown-section-paragraph{
    padding-left: var(--sm-padding);
    padding-right: var(--sm-padding);
  }

  .cslide {
    padding: var(--sm-padding);
  }

  .work-container{
    padding-left: var(--sm-padding-between);
    padding-right: var(--sm-padding-between);
  }

  .footer-wrapper {
    padding: 40px var(--sm-padding);
  }















  .drown-section-wrapper {
    padding: 12rem 0;
  }

  .we-brave-section {
    padding-top: 0;
  }

  .we-brave-text h2{
    max-width: 100%;
  }

  .we-brave-content .we-brave-image{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
  }

  .service-section-list li {
    padding: 2.9vw var(--sm-padding);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .footer-contact li{
    padding-top: 10px;
    line-height: 1;
  }

  .second-banner-link a
  ,.contact-us-link p
  ,.drown-section-link span
  {
    font-size: 18px;
  }

  .last-block-reviews.image-text-block {
    padding-top: 80px;
  }

  .work-link{
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .first-banner-title h1 {
    font-size: 40px;
    line-height: 35px;
  }
  .load_animation .line {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    padding-bottom: 10px;
    margin-top: -10px;
  }
  .load_animation .word {
    transform: translateY(50px);
  }

  .second-banner-text p {
    max-width: 90vw;
    font-size: 16px;
    line-height: 20px;
  }

  .second-banner-text p .word{
    transform: translateY(20px);
  }

  .work-all-projects p {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    border: 1px solid #191B1D;
    border-radius: 300px;
    padding: 20px 40px;
  }

  .text-section h2 {
    max-width: 50vw;
    font-size: 16px;
    line-height: 20px;
  }

  .text-section-animate .word{
    transform: translateY(20px);
  }

  .carousel-p {
    font-size: 16px;
    line-height: 20px;
    padding: 2vw 0;
  }

  .author-image img {
    width: 50px;
    height: 50px;
  }

  .author-title h4{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding-left: 14px;
  }

  .we-brave-section .we-brave-content {
    flex-direction: column-reverse;
  }
  .we-brave-content .we-brave-image {
    position: relative;
    width: 100%;
    height: 300px;
  }
  .we-brave-content .we-brave-image img, .we-brave-image video {
    object-position: center;
    padding: 30px;
  }
  .we-brave-content .we-brave-text {
    left: 0;
    top: -100px;
    padding: 0 18px;
  }
  .we-brave-content .we-brave-text .we-brave-description {
    max-width: 100%;
  }
  .we-brave-content .we-brave-text .we-brave-description p {
    font-size: 18px !important;
    line-height: 21px;
  }

  .we-brave-content .we-brave-text .we-brave-description .we-brave-extras .we-brave-author p {
    /*white-space: pre-line !important;*/
  }

  .service-section-list {
    justify-content: flex-start;
  }
  .service-section-list ul {
    flex-direction: column;
  }
  .service-section-list ul li h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .service-section-list ul li a {
    font-size: 18px;
    line-height: 30px;
  }

  .single-split {
    flex-direction: column-reverse;
    text-align: center;
  }

  .centerImage{
    flex-direction: column-reverse;
  }

  .single-split .single-col-6:nth-child(odd) {
    padding-right: 0;
    padding-bottom: 16px;
  }

  .single-split .single-col-6:nth-child(even) {
    padding-top: 16px;
  }

  .single-split .single-col-6 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
  }

  .single-split.reverse {
    flex-direction: column-reverse;
  }

  .single-split.reverse .single-col-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

.single-full-width.centerImage div{
  padding-top: 20px;
}

  .single-split.reverse .single-text-wrapper {
    padding-left: 0;
  }

  .single-split .single-text-wrapper {
    padding-right: 0;
  }

  .single-title-text-scroll {
    top: 20%;
  }
  .text-move-scroll h2 span {
    font-size: 110px !important;
  }

  .text-move-scroll h2 {
    font-size: 110px !important;
  }

  .carousel-inner {
    border-radius: 20px;
  }

  .carousel-inner-item {
    border-radius: 20px;
  }

  .slick-list {
    border-radius: 20px;
  }

  .single-title {
    padding-top: 120px;
  }

  .second-banner {
    height: auto;
  }

  .nav-socials .socials-wrapper .social {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #191B1D;
  }

  .nav-socials .socials-wrapper .social img {
    height: 30px;
  }

  .next_project_title h2 {
    font-size: 60px;
  }

  .input_field span {
    font-size: 20px;
  }

  .our_location_title h2 {
    font-size: 100px;
  }

  .our_location_content span {
    font-size: 18px;
  }

  .contact_form_text h2 {
    white-space: unset;
  }

  .case-item {
    flex: 0 0 100%;
    transform: translateY(0) !important;
  }

  .case-item-image {
    width: 100%;
    height: auto;
  }

  .drown-section-link a span {
    font-size: 18px;
  }


  .split-images.single-split .single-col-6:nth-child(odd) {
    padding-right: 0;
  }

  .split-images.single-split .single-col-6:nth-child(even) {
    padding-left: 0;
  }

  .contact_form_wrapper{
    flex-direction: column;
  }

  .we-brave-text .we-brave-extras {
    padding-top: 1rem;
    flex-direction: column;
    align-items: start;
  }

  .we-brave-text .we-brave-extras .we-brave-link {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }

  .footer-end{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact{
    flex-direction: column;
    text-align: center;
  }

  .footer-contact li{
    list-style: none;
  }

  .footer-title h2{
    text-align: center;
  }

  .work-all-projects{
    padding-bottom: 1rem;
  }

  .carousel-section {
    padding: 4vw 10px;
  }

  .slide{
    padding: 25px 25px;
  }

  .nav-content{
    padding: 0 25px;
    max-width: 100%;
    overflow: hidden;
  }

  #controls{
    max-width: 70%;
  }

  .next_project_section{
    /*padding-top: 2rem;*/
  }
}

@media (max-width: 600px) {
  /*.footer-partners .partner-wrapper {*/
  /*  flex-direction: column;*/
  /*}*/

  .work-section .work-section-images .work-image img, .work-section .work-section-images .work-image video {
    opacity: 1;
    filter: none;
    padding-right: 0;
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 500px) {
  .we-brave-text h2 {
    font-size: 50px;
    line-height: 47px;
    padding-bottom: 15px;
  }

  .contact-us-title {
    font-size: 50px;
    line-height: 47px;
    padding-bottom: 15px;
  }
}



























/* Form styles start */
.contact_form {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #191B1D;
  /*padding-bottom: 20px;*/
}

.contact_form.last-block-{
  padding-top: 180px;
}

.contact_form_wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1500px;
  /*padding: 15px;*/
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
}

@media(max-width: 767px) {
  .contact_form_wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact_form_wrapper .fui-checkbox label {
    font-size: 18px !important;
  }

  .contact_form_text {
    text-align: center
  }

  .contact_form_text p {
    font-size: 18px !important;
    font-weight: var(--p-font-weight);
  }
}

.contact_form_text {
  flex: 0 0 50%;
  padding: 15px;
  padding-top: 0;
  padding-right: 6rem;
}

.contact_form_text h2 {
  color: #fff;
  font-family: 'Voyage';
  font-size: 100px;
  font-weight: 400;
  line-height: 90%;
  /*white-space: pre-line;*/
  padding-bottom: 40px;
}

.contact_form_text p {
  color: #fff;
  font-size: 40px;
  font-weight: var(--p-font-weight);
  line-height: 125%;
}

.contact_form_fields {
  padding: 15px;
  max-width: 600px;
}





.input_group {
  display: flex;
  flex-flow: wrap;
}

.input_field {
  flex: 0 0 100%;
  padding-bottom: 20px;
  padding-right: 20px;
  display: inline-flex;
}

.input_field.split {
  flex: 0 0 50%;
}



.input_field input, .input_field textarea, .fui-input-container input, .fui-input-container textarea {
  width: 100%;
  background-color: rgba(213, 209, 200, 0.05);
  border: none;
  padding-left: 21px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 166.667%;
  font-family: 'Poppins';
  border-radius: 0;
}

.input_field input::placeholder, .input_field textarea::placeholder, .fui-input-container input::placeholder, .fui-input-container textarea::placeholder{
  color: #fff;
  opacity: 0.5;
}

.input_field input, .fui-input-container input {
  height: 73px;
}

.input_field textarea, .fui-input-container textarea {
  height: 150px;
  padding-top: 10px;
  resize: none;
}

.input_field .select_input {
  position: relative;
  width: 100%;
  background-color: rgba(213, 209, 200, 0.05);
  height: 73px;
}

.input_field select, .fui-input-container select {
  width: 100%;
  height: 100%;
  background-color: rgba(213, 209, 200, 0.05);
  border: none;
  padding-left: 21px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 166.667%;
  font-family: 'Poppins';
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
  position: relative;
}

.fui-input-container select:not(.select-toggled) {
  color: rgba(255, 255, 255, 0.5)
}

.fui-input-container select option:not(:first-of-type){
  color: white;
}




.select_input img {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.contact_form_wrapper .fui-select:not([multiple]):not([size]){
  /*--fui-select-bg-image: "/assets/images/_.svg";*/

  background-image: url(/assets/images/arrow-down.svg);
  background-position: right 1.5rem center ;
  background-size: 15px 33px;

}

.select_input option, .fui-input-container select option {
  background-color: #232526;
}

.checkbox_field {
  width: 37px;
  height: 37px;
  position: relative;
  margin-top: 6px;
}

.checkbox_field input {
  height: 37px;
  width: 37px;
  background-color: rgba(213, 209, 200, 0.05);
  border: none;
  flex: 0 0 37px;
  position: relative;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.checkbox_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 209, 200, 0.05);
}

.checkbox_wrapper .left_tick {
  top: 55%;
  left: 24%;
  width: 10px;
  height: 2px;
  position: absolute;
  /* background-color: #fff; */
  transform: rotate(45deg);
  border-radius: 2px;
}

.checkbox_wrapper .right_tick {
  top: 49%;
  left: 37%;
  width: 17px;
  height: 2px;
  position: absolute;
  /* background-color: #fff; */
  transform: rotate(-45deg);
  border-radius: 2px;
}

.left_tick .left_tick_wrapper, .right_tick .right_tick_wrapper {
  position: relative;
  width: 0;
  height: 100%;
  background-color: #fff;
  border-radius: 2px;
}

.input_field span, .contact_form_wrapper .fui-checkbox label, .contact_form_wrapper .fui-radio label {
  padding-left: 55px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 125%;
}

.input_field .submit_field {
  padding-top: 70px;
  width: 100%;
}

.contact_form_wrapper .fui-btn-wrapper{
  padding-top: 30px;
}

.input_field .submit_field button, .fui-btn-wrapper button[type=submit] {
  background-color: #D5D1C8;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 77px;
  color: #191B1D;
  font-size: 2.1vw;
  font-weight: var(--button-weight);
  text-transform: uppercase;
  line-height: 100%;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins';
  padding: 25px 40px;

}

.contact_form_wrapper .fui-checkbox label:before {
  border-radius: 0;
}

.contact_form_wrapper .fui-checkbox label:before, .contact_form_wrapper .fui-radio label:before {
  background-color: rgba(213, 209, 200, 0.05);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  border: none;
  height: 37px;
  width: 37px;
  left: 0;
  top: 5px;
}

.contact_form_wrapper .fui-checkbox input:focus+label:before, .contact_form_wrapper .fui-radio input:focus+label:before {
  border-color: transparent;
  box-shadow: none;
}

.contact_form_wrapper .fui-checkbox input:checked+label:before, .contact_form_wrapper .fui-radio input:checked+label:before {
  background-color: rgba(213, 209, 200, 0.05);
  border-color: transparent;
}

.contact_form_wrapper .fui-checkbox input:checked+label:before {
  background-image: url(/assets/check.svg);
  background-size: 18px;
}

.form-section{
  max-width: 600px;
  padding-top: 10px;
  width: 100%;
}

.our_location_content a{
  text-decoration: none;
  color: inherit;
}

.longtext{
  background-color: #191b1d;
  position: relative;
  z-index: 1;
  /*padding-bottom: 105px;*/
}

.fui-field label a{
  color: inherit;
}

.single-title-p p ~ p, .single-title-p h2 ~ p{
  padding-bottom: 1vw;
}

.single-title-p p ~ h2{
  padding-top: 5.2vw;
}

.second-banner .single-padding-top{
  padding-top: 5px;
}

.second-banner .single-full-width.no-padding-bottom{
  padding-top: 0;
}

.banner-content{
  float: right;
}

.scroll-parent{
  max-width: 100%;
  overflow: hidden;
}

.text-move-scroll h2 span{
  white-space: nowrap;
  line-height: 1.3;
}

.image-text-block.entry-slug-coming-soon{
  padding-bottom: 1rem;
}

.contact_form.coming-soon-form{
  padding-top: 0;
}

.coming-soon-form .contact_form_wrapper{
  justify-content: center;
}

.contact_form.coming-soon-form .fui-btn-wrapper{
  padding-top: 30px;
}

.fui-input.fui-focus, .fui-input:focus, .fui-select.fui-focus, .fui-select:focus {
  box-shadow: 0 0 0 3px #D5D1C8 !important;
}

/*.second-banner-link{*/
/*  background-color: #191B1D;*/
/*  font-size: 1.3vw;*/
/*  line-height: 1.3vw;*/
/*  border: 1px solid #191B1D;*/
/*  border-radius: 300px;*/
/*  padding: 25px 40px;*/
/*  text-decoration: underline;*/
/*  transition: .2s;*/
/*}*/


.rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
}

.rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.rating label:last-child {
  position: static;
}

.rating label:nth-child(1) {
  z-index: 5;
}

.rating label:nth-child(2) {
  z-index: 4;
}

.rating label:nth-child(3) {
  z-index: 3;
}

.rating label:nth-child(4) {
  z-index: 2;
}

.rating label:nth-child(5) {
  z-index: 1;
}

.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.rating label .icon {
  float: left;
  color: transparent;
}

.rating label:last-child .icon {
  color: #232526;
  /*-webkit-text-stroke-width: 1px;*/
  /*-webkit-text-stroke-color: rgba(255,255,255,0.5);*/
}

.cases-tile-abs {
  position: absolute;
  top:11vw;
  left:0;
  width: 100%;
  height: calc(100% - 17vw);
}

a.next_project {
  display: block;
  color: inherit;
  text-decoration: none;
}


/*Extracted tailwind components*/
.absolute{
  position: absolute
}

.relative{
  position: relative
}

.block{
  display: block;
}

.bottom-8{
  bottom: 2rem
}

.left-0{
  left: 0px
}

.right-0{
  right: 0px
}

.top-0{
  top: 0px
}

.col-span-12{
  grid-column: span 12 / span 12
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem
}

.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem
}

.mr-1{
  margin-right: 0.25rem
}

.mt-12{
  margin-top: 3rem
}

.flex{
  display: flex
}

.grid{
  display: grid
}

.aspect-square{
  aspect-ratio: 1 / 1
}

.h-1{
  height: 0.25rem
}

.h-full{
  height: 100%
}

.w-6{
  width: 1.5rem
}

.w-full{
  width: 100%
}

.origin-left{
  transform-origin: left
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.flex-col{
  flex-direction: column
}

.gap-x-24{
  column-gap: 6rem
}

.self-center{
  align-self: center
}

.overflow-x-hidden{
  overflow-x: hidden
}

.overflow-hidden{
  overflow: hidden
}

.border-b{
  border-bottom-width: 1px
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity))
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity))
}

.object-cover{
  object-fit: cover
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem
}

.font-bold{
  font-weight: 700
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.opacity-30{
  opacity: 0.3
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.mr-1{
  margin-right: 0.25rem
}

.h-1{
  height: 0.25rem
}

.w-6{
  width: 1.5rem
}

.self-center{
  align-self: center
}

.border-b{
  border-bottom-width: 1px
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity))
}

@media (min-width: 768px){
  .md\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .md\:pt-32{
    padding-top: 8rem
  }
}

@media (min-width: 1024px){
  .lg\:col-span-10{
    grid-column: span 10 / span 10
  }

  .lg\:col-start-2{
    grid-column-start: 2
  }

  .lg\:mx-0{
    margin-left: 0px;
    margin-right: 0px
  }
}

@media (min-width: 1536px){
  .\32xl\:col-span-8{
    grid-column: span 8 / span 8
  }

  .\32xl\:col-start-3{
    grid-column-start: 3
  }
}


/*End extracted tailwind components*/




/*Work section*/
.work-container{
  display: grid;
  padding-top: 8rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: 6rem;
}

.work-link {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.work-link:hover{
  transform: scale(1.05);
}

.work-image-square{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.work-image-square img, .work-image-square picture, .work-image-square video  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-cover-transparent{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.3;
}

.work-cover-black{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.work-cover-text{
  position: absolute;
  bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transform-origin: left;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  left: 27px;
}

.work-link-container{
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}

.single-title-backgound.parallax-check {
  height: 200%;
}

.single-title-backgound.parallax-check div{
  height: 50%;
  position: sticky;
  top: 0;
  z-index: -1;
}

.single-title-backgound.parallax-check::after{
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #191b1d;
  content: "";
}

.single-page-wrapper.case-entry{
  z-index: 0;
}




@media (min-width: 768px) {
  .work-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-link {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}


/*End work section*/




/* lg section */

@media(min-width: 767px){
  .cases-section {
    padding: 50px 135px 80px 135px;
  }

  .compensate-scrolling-text {
    margin-top: -100px;
  }

  .coming-soon-form .form-section{
    width: 600px;
  }

  .split-images.single-split + .cases-text.last-block-cases_imageBanner{
    /*padding-top: 50px;*/
  }

  .cases-text.last-block-reviews {
    /*padding-top: 50px;*/
  }

  .footer-contact span:first-of-type {
    padding-right: 20px;
  }

  .li-padding{
    margin-right: 15px;
  }

  .mock-li, .footer-contact span.mock-li:first-of-type{
    display: list-item;
    padding-right: 0;
    margin-right: 0;
  }

  @media(max-height: 850px){
    .first-banner {
      height: 90vh;
    }
  }

  .nav-item .nav-info{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: calc(100vw - 150px);
  }

  .nav-item .nav-info a{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .single-full-width.longtext {
    max-width: 1750px;
    padding-left: 155px !important;
    padding-right: 135px !important;
  }

  .container-1300{
    padding-left: 135px !important;
    padding-right: 135px !important;
  }

  .container-padding{
    padding-left: 135px !important;
    padding-right: 135px !important;
  }

  .container-1600, .container-1250{
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
}

/* sm-section */
@media (max-width: 768px) {
  .contact_form_wrapper{
    flex-direction: column;
  }

  .fui-row{
    flex-direction: column;
  }

  .input_field span, .contact_form_wrapper .fui-checkbox label, .contact_form_wrapper .fui-radio label {
    font-size: 24px;
    font-weight: 400;
  }

  .input_field input, .input_field textarea, .fui-input-container input, .fui-input-container textarea {
    font-size: 18px;
  }

  .input_field select, .fui-input-container select {
    font-size: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .single-full-width.center {
    padding: var(--sm-padding) var(--sm-padding) 0;
  }
  .single-split {
    /*padding: 50px 16px;*/
  }
  .last-block-imageText .single-full-width {
    /*padding: 50px 16px 0px;*/
    padding-left: 16px;
    padding-right: 16px;
  }
  .text-only-block{
    /*padding-top: 50px !important;*/
  }

  .extra-padding-text.text-only-block{
    padding-top: 50px !important;
  }

  .image-text-block.next-block-imageText .last-block-imageText .single-split{
    /*padding-bottom: 50px;*/
  }
  .longtext{
    /*padding-bottom: 50px;*/
  }

  .longtext:not(.loop-i-0){
    /*padding-top: 50px;*/
  }

  .image-text-block:not(.next-block-imageText, .next-block-longText, .next-block-gallery){
    padding-bottom: 50px;
  }

  .image-text-block.next-block-gallery .single-text-wrapper p:not(:has(+p)) {
    padding-bottom: 0;
  }

  .image-text-block.next-block-home_centertextBanner{
    padding-bottom: 0;
  }

  /*.blog-body .image-text-block.next-block-home_centertextBanner{*/
  /*  padding-bottom: 50px;*/
  /*}*/


  .square-side-image{
    margin-bottom: 0px;
  }


  .single-full-width h2 {
    padding-bottom: 15px;
  }

  .contact_form_text h2 {
    font-size: 50px;
    line-height: 43px;
  }

  .contact_form_text {
    padding-right: 15px;
  }

  .single-title h2 {
    font-size: 150px;
  }

  .big-text{
    padding-top: 100px;
  }

  .not_found_navigation{
    padding: 0 0;
  }

  .not_found_navigation .nav-content {
    padding: 0 10px;
    flex-direction: column;
  }

  .not_found_navigation .not_found_nav_back{
    /*position: relative;*/
    /*align-self: start;*/
    margin-top: 30px;
  }

  .not_found_navigation .nav-content{
    height: calc(100% + 180px);
    margin-top: 0;
    padding-top: 140px;
  }

  .second-banner-link{
    padding: 1rem 2rem;
    padding-top: 1rem;
  }
}

@media(min-width: 2000px){

  /*.circle-section img {*/
  /*  width: 30vw;*/
  /*  max-width: 500px;*/
  /*}*/

  .container-1300, .container-1600, .container-padding {
    /*max-width: 80vw;*/
    /*padding-left: 0px !important;*/
    /*padding-right: 0px !important;*/
    margin-left: auto;
    margin-right: auto;
  }

  .contact-us-content {
    max-width: 80vw;
  }

  #carousel-container {
    max-width:60vw;
    position: relative;
    margin: 50px auto 0;
    border: none;
    border-radius: 12.5vw;
    background-color: #fff;
    border-radius: 17.5vw;
  }

  .single-full-width:not(.container-1600){
    max-width: none;
  }

  .second-banner .single-full-width{
    max-width: 80vw;
  }

  .contact-us-text {

    max-width: 55vw;
  }
  /*.single-title h1 {*/
  /*  max-width: 50vw;*/
  /*}*/
}

.work-link{
  width: 100%;
  aspect-ratio: 1;
}

.work-image-square{
  width: 0;
  height: 100%;
  aspect-ratio: auto;
  /*float: right;*/
  position: relative;
  overflow: hidden;
}

.work-image-square picture, .work-image-square img{
  height: 100%;
}

.anim-cover{
  width: 100%;
  float: right;
}

.work-image-square div{
  height: 100%;
  display: flex;
  justify-content: center;
}


.logos-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #D5D1C8;
  padding-bottom: 5vw;
  position: relative;
  z-index: 2;
}

.logos-container {
  --custom-max-width: 100%;

  max-width: calc(1600px * var(--custom-max-width)) !important;
}

.reference_title{
  margin-bottom: 3vw;
  margin-top: 5vw;
  /*font-family: 'Voyage';*/
  /*font-size: 5.2vw;*/
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: black !important;
}

.logos-container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px;
  max-width: 1600px;
}

.logos-container img{
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: contain;
  padding: 0;
}

.logos-container img:hover{
  display: block;
  height: auto;
}

@media(max-width: 1100px) {
  .logos-container {
    column-gap: 20px;
  }

  .logos-container img{
    padding: 15px;
  }
}

@media(max-width: 900px) {
  .logos-container img {
    padding: 5px 15px;
    aspect-ratio: auto;
    max-width: 130px;
  }

  .logos-container .logo-img-container.is-last.is-odd {
    transform: translateX(calc(50% + 1rem));
  }
}

@media (min-width: 900px) {
  .col-remainder-3 .col-pos-0.is-last-row {
    grid-column-start: 2;
  }
}

@media (max-width: 900px){
  .logos-container {
    padding-top: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    row-gap: 0.3rem;
    column-gap: 2rem;
    padding-bottom: 3vw;
    padding-left: var(--sm-padding);
    padding-right: var(--sm-padding);
  }
  .reference_title{
    font-size: 60px;
    font-weight: 400;
    line-height: 1.42;
  }
}


.single-title .case-services h4 {
  padding-top: 0;
  padding-bottom: 5px;
}

.case-services {
  padding-top: 40px;
  padding-bottom: 15px;
}

.longtext ~ .image-text-block .single-split {
  padding-top: 0;
}

.centertext-banner.next-block-longText:has(~ .longtext) {
  padding-bottom: 10px;
}

.fui-btn.fui-prev {
  background-color: transparent !important;
  color: #D5D1C8 !important;
  width: auto !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.input_field .submit_field button:hover, .fui-btn-wrapper button.fui-btn.fui-prev[type=submit]:hover
{
  border-color: transparent !important;
  color: white !important;
}

.fui-btn.fui-submit:has(~.fui-prev) {
  width: min-content;
  position: relative;
}

/*.fui-btn.fui-submit:has(~.fui-prev)::after {*/
/*  content: " ";*/
/*  width: 15px;*/
/*  height: 15px;*/
/*  position: absolute;*/
/*  top: 18px;*/
/*  right: 25px;*/
/*  background-image: url(/assets/small-arrow-black.svg);*/
/*  background-size: contain;*/
/*  transform: rotate(-45deg);*/
/*}*/

/*.fui-btn.fui-submit::after {*/
/*  content: " ";*/
/*  width: 15px;*/
/*  height: 15px;*/
/*  top: 18px;*/
/*  right: 25px;*/
/*  background-image: url(/assets/images/arrow-bold.svg);*/
/*  background-size: contain;*/
/*  transform: translate(0px, -20px);*/
/*  display: inline-block;*/
/*  transition-property: all;*/
/*  transition-duration: 300ms;*/
/*}*/

.fui-btn.fui-submit:hover::after {
  filter: invert(97%) sepia(7%) saturate(331%) hue-rotate(341deg) brightness(89%) contrast(87%);
}

.fui-type-radio-buttons legend {
  font-size: 30px;
  color: #D5D1C8;
}

.fui-radio label {
  font-size: 18px !important;
  color: white !important;
  padding-left: 25px !important;
}

.contact_form_wrapper .fui-radio label:before {
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.fui-radio {
  --fui-check-radio-bg-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23000'/%3E%3C/svg%3E")
}

.contact_form_wrapper.form-no-text {
  justify-content: center;
}

.contact_form_wrapper .fui-radio label:before,
.contact_form_wrapper .fui-radio input:checked+label:before
{
  background-color: #D5D1C8;
}

.margin-block {
  height: 150px;
}

.margin-block:has(+.centertext-banner .text-move-scroll), .margin-block:has(+.scroll-parent){
  height: 85px;
}

.image-cases-margin-block {
  height: 28px
}

.elc-small #elc-accept-link {
  display: none;
}

@media(max-width: 767px) {
  .margin-block {
    height: 55px;
  }

  .image-cases-margin-block {
    height: 0;
  }
}


.header-button-container {
  display: flex;
  justify-content: end;
}

.header-button {
  height: 77px;
  width: 77px;
  padding: 0;

  position: relative;
  background-color: #D5D1C8;
  border: 1px solid #D5D1C8;
  color: #191B1D;
  text-decoration: none;
  border-radius: 360px;
  text-align: center;
  font-size: 2.1vw;
  font-weight: var(--button-weight);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-button:hover, .lg-header .header-button {
  height: 77px;
  width: 100%;
  padding: 0 40px;
}

.header-button p {
  display: inline-block;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap !important;

}

.header-button:hover p, .lg-header .header-button p {
  display: inline-block;
  /*width: unset;*/
  /*height: unset;*/
  transform: scale(1);
  opacity: 1;
}


.header-button .button-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 23px;
  right: 23px;
  transition: all 0.3s;
}

.header-button:hover .button-arrow, .lg-header .header-button .button-arrow {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
}

.header-button {
  transition: all 0.3s;
}

#header.invert .header-button{
  background-color: #191B1D;
}

#header.invert .header-button p {
  color: #D5D1C8;
}
#header.invert .header-button img {
  filter: invert(94%) sepia(10%) saturate(186%) hue-rotate(4deg) brightness(94%) contrast(80%);
}






.landingpage-reviews {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  flex-direction: row;
  align-items: center;
}

.landingpage-reviews .author-image {
  width: 45%;
  aspect-ratio: 1;
}

/*.landingpage-reviews .author-image div{*/
/*  height: 100%;*/
/*}*/

.landingpage-reviews .author-image img {
  width: 100%;
  height: 100%;
  /*aspect-ratio: unset;*/
  aspect-ratio: 1;
  border-radius: 0;
}

.landingpage-reviews-section .cslide {
  display: flex;
}

.landingpage-reviews .review-content-section {
  width: 55%;
}

.landingpage-reviews-section .carousel-p {
  text-align: left;

}

.landingpage-reviews-section .stars {
  justify-content: start;
}

.landingpage-reviews-section .carousel-author {
  text-align: left;
  align-items: start;
}

.landingpage-reviews-section .carousel-author h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 0;
}

.landingpage-reviews-section {
  position: relative;
  z-index: 10;
  background-color: #d5d1c8;
}

.landingpage-reviews-section .review-content-section {
  padding-top: 0px;
  padding-bottom: 50px;
}

.landingpage-reviews-section .cslide {
  padding-top: 0;
}







.landingpage_contact_form {
  background-color: white;
}

.landingpage_contact_form .contact_form_text h2, .landingpage_contact_form .contact_form_text p {
  color: #191b1d;
}

.landingpage_contact_form .input_field input, .landingpage_contact_form .input_field textarea, .landingpage_contact_form .fui-input-container input, .landingpage_contact_form .fui-input-container textarea {
  background-color: #d5d1c8;
  color: #191b1d;
}

.landingpage_contact_form .input_field input::placeholder, .landingpage_contact_form .input_field textarea::placeholder, .landingpage_contact_form .fui-input-container input::placeholder, .landingpage_contact_form .fui-input-container textarea::placeholder {
  color: #191b1d;
}

.landingpage_contact_form .contact_form_wrapper .fui-select:not([multiple]):not([size]) {
  background-color: #d5d1c8;
  /*color: rgba(25, 27, 29, 1)*/
}

.landingpage_contact_form .fui-input-container select:not(.select-toggled) {
  color: rgba(25, 27, 29, 0.5);
}

.landingpage_contact_form .fui-input-container select.select-toggled {
  color: rgba(25, 27, 29, 1);
}

.landingpage_contact_form .select_input option, .landingpage_contact_form .fui-input-container select option {
  background-color: #d5d1c8;
  color: #191b1d;
}

.landingpage_contact_form .contact_form_wrapper .fui-checkbox label:before, .landingpage_contact_form .contact_form_wrapper .fui-radio label:before {
  background-color: #d5d1c8;
}

.landingpage_contact_form .contact_form_wrapper .fui-checkbox input:checked + label:before, .landingpage_contact_form .contact_form_wrapper .fui-radio input:checked + label:before {
  background-color: #d5d1c8;
}

.landingpage_contact_form .contact_form_wrapper .fui-checkbox label, .landingpage_contact_form .contact_form_wrapper .fui-radio label {
  color: #191b1d;
}

@media(max-width:767px) {
  .landingpage_contact_form .fui-row {
    flex-direction: row
  }

  .landingpage_contact_form .input_field input, .fui-input-container input {
    height: auto;
  }

  .landingpage_contact_form .input_field select, .fui-input-container select {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}








.margin-block:has(+ .landingpage-block) {
  background-color: white;
}

.landingpage_contact_form.last-block {
  padding-bottom: 150px;
}

@media(max-width: 767px) {
  .landingpage_contact_form.last-block {
    padding-bottom: 55px;
  }
}

.landingpage-block-dark.we-brave-section {
  padding-bottom: 150px;
}
.landingpage-block-dark.we-brave-section .toptext {
  font-size: 1.302vw;
  line-height: 1.2;
}
.landingpage-block-dark.we-brave-section .we-brave-text .we-brave-extras {
  align-items: start;
}
.landingpage-block-dark.we-brave-section .we-brave-link {
  background: #d5d1c8;
  color: #191b1d;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  /*opacity: 0;*/
}
.landingpage-block-dark.we-brave-section .we-brave-link .button-arrow {
  filter: none;
  transform: none !important;
  translate: none !important;
  transition: all 0.3s;
  opacity: 1 !important;
}
.landingpage-block-dark.we-brave-section .we-brave-link a {
  text-decoration: none;
}

.landingpage-block-dark.we-brave-section .we-brave-link a {
  text-decoration: none;
  color: #191b1d;
  font-size: 2.1vw;
  font-weight: var(--button-weight);
  text-transform: uppercase;
  line-height: 1;
  transform: none !important;
  translate: none !important;
  white-space: nowrap;
  opacity: 1 !important;
}

.landingpage-block-dark.we-brave-section .we-brave-link:hover {
  border: 1px solid #D5D1C8 !important;
  background-color: #191b1d;
}

.landingpage-block-dark.we-brave-section .we-brave-link:hover a {
  color: #D5D1C8;
}

.landingpage-block-dark.we-brave-section .we-brave-link:hover .button-arrow {
  filter: invert(97%) sepia(7%) saturate(331%) hue-rotate(341deg) brightness(89%) contrast(87%);
}

@media(max-width: 767px) {
  .landingpage-block-dark.we-brave-section .we-brave-link {
    transition-property: all;
    transition-duration: 300ms;
    padding: 20px 25px 20px 25px !important;
    border-radius: 300px;
    /*margin-right: -25px;*/
  }

  .landingpage-block-dark.we-brave-section .we-brave-extras .we-brave-link img{
    top: 10px;
    right: 15px;
  }
}


.calendly-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #191B1D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.calendly-lightbox .close-button {
  position: absolute;
  top: 40px;
  right: 60px;
  cursor: pointer;
}

#calendly-embed {
  width: 100%;
  height: 100%;
  max-height: 800px;
}

.modal-closed {
  display: none;
}

.swiper-container {
  padding: 0 40px;
}

.block-gallery .swiper-slide picture, .block-gallery .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  interpolate-size: allow-keywords;

}
.block-gallery .swiper-slide {
  cursor: pointer;
}
.block-gallery .arrows-container {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.block-gallery .arrows-container svg {
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 999px;
}
.block-gallery .arrows-container svg:not(.disabled-button):hover {
  background-color: #D5D1C8;
}

.block-gallery .arrows-container svg:not(.disabled-button):hover .to-black {
  fill: black;
  stroke: black;
}

.block-gallery .arrows-container svg.disabled-button {
  opacity: 0.5;
}

.block-gallery .right-arrow {
  transform: rotate(180deg);
  margin-left: 20px;
}


.swiper:not(.swiper-initialized) .swiper-slide {
  width: 20%;
  display: block;
  padding: 0 10px;
}

.sm-reviews {
  display: none;
}

@media(max-width: 767px) {
  .swiper-container {
    padding: 0 20px;
  }

  .lg-reviews {
    display: none;
  }

  .sm-reviews {
    display: block;
  }
}

.we-brave-section.landingpage-block-dark .we-brave-text h2 {
  margin-bottom: 42px;
}

@media(min-width: 767px) {

  .we-brave-link {
    padding: 26px 35px 26px 35px !important;
    height: auto;
    border: 1px solid transparent;
    line-height: 1;
    cursor: pointer;
    /*padding: 25px 40px;*/
  }

}

@media(min-width: 3000px) {
  /*.fui-btn.fui-submit::after {*/
  /*  transform: translate(0px, -24px);*/
  /*}*/

  .we-brave-link {
    padding: 26px 55px 26px 55px !important
  }

  .landingpage-block-dark.we-brave-section .we-brave-link .button-arrow {
    width: 16px;
  }

  .we-brave-extras .we-brave-link img {
    top: auto;
  }
}



.white-button.we-brave-link {
  background: #d5d1c8;
  color: #191b1d;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s !important;
  margin-top: 30px;
  margin-right: 0;
}
.white-button.we-brave-link .button-arrow {
  filter: none;
  transform: none !important;
  translate: none !important;
  transition: all 0.3s;
  opacity: 1 !important;

  position: absolute;
  top: -0.4vw;
  right: -15px;

}
.white-button.we-brave-link a {
  text-decoration: none;

  color: #191b1d;
  font-size: 2.1vw;
  font-weight: var(--button-weight);
  text-transform: uppercase;
  line-height: 1;
  transform: none !important;
  translate: none !important;
  white-space: nowrap;
}


.white-button.we-brave-link:hover {
  border: 1px solid #D5D1C8 !important;
  background-color: #191b1d;
  color: #D5D1C8 !important;
}

.white-button.we-brave-link:hover a {
  color: #D5D1C8 !important;
}

.white-button.we-brave-link:hover .button-arrow {
  filter: invert(97%) sepia(7%) saturate(331%) hue-rotate(341deg) brightness(89%) contrast(87%);
}

.block-gallery.landingpage-block-dark .second-banner {
  margin-top: -80px;
}

/*.lg-header .header-button img {*/
/*  opacity: 0;*/
/*}*/

@media(max-width: 767px) {
  .white-button.we-brave-link {
    transition-property: all;
    transition-duration: 300ms;
    padding: 20px 25px 20px 25px !important;
    border-radius: 300px;
    /*margin-right: -25px;*/
  }

  /*.fui-btn.fui-submit::after {*/
  /*  width: 10px;*/
  /*  height: 10px;*/
  /*  transform: translate(0px, -15px);*/
  /*}*/

  .landingpage-block-dark.we-brave-section .we-brave-link a {
    font-size: 18px;
  }

  .white-button.we-brave-link a {
    font-size: 18px;
  }

  .white-button.we-brave-link .button-arrow {
    top: 13px;
    right: 18px;
    width: 10px;
    height: 10px;
  }

  .landingpage-block-dark.we-brave-section .we-brave-extras .we-brave-link img {
    top: 13px;
    right: 18px;
    width: 10px;
    height: 10px;
  }

  .landingpage-block-dark.we-brave-section {
    padding-bottom: 0;
  }

  .we-brave-section.landingpage-block-dark .we-brave-text h2 {
    margin-bottom: 16px;
  }

  .block-gallery.landingpage-block-dark {
    padding-bottom: 30px;
  }

  .centertext-banner.next-block-imageText {
    padding-bottom: 50px;
  }

  .header-button {
    height: 50px;
    width: 50px;
  }

  .header-button .button-arrow {
    top: 10px;
    right: 10px;
  }



  .header-button:hover, .lg-header .header-button {
    width: 100%;
    height: 50px;
  }

  .header-button:hover, .lg-header .header-button {
    padding: 0 25px;
  }
}

@media(min-width: 3000px) {
  .white-button.we-brave-link .button-arrow {
    width: 16px;
  }
}



.blog-category-body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 200px;
}

.blog-category-body a {
  color: white;
  font-size: 40px;
  transition: all 0.3s;
}

.blog-category-body a:hover {
  opacity: 0.7;
}

.blog-category-body h1{
  color: #fff;
  font-family: 'Voyage' !important;
  text-align: center;
  line-height: 4.5vw;
  font-size: 5.21vw;
  font-weight: 100;
  padding: 20px 20px 50px 20px;
}


@media(max-width: 767px){
  .blog-category-body{
    background-color: #191B1D;
    position: relative;
    z-index: 20;
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-category-body h1{
    line-height: 1.2;
    font-size: 25px;
  }

  .blog-category-body a {
    font-size: 20px;
  }
}


.block-faq-list {
  position: relative;
  z-index: 10;
}

.block-faq-list h2 {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  /* 133.333% */
}
.block-faq-list .faq {
  padding: 2px 0;
  transition: all 0.3s;
}
.block-faq-list .faq .item {
  padding: 10px 30px;
  position: relative;
  background: rgba(255,255,255,0);
  transition: all 0.5s;
}
.block-faq-list .faq .item:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #fff;
}
.block-faq-list .faq .item.active {
  background: rgba(255,255,255,1);
  padding-bottom: 30px;
  transition: all 0.3s;
}
.block-faq-list .faq .item.active:after {
  bottom: 0;
}
.block-faq-list .faq .item.active .title-section h3 {
  color: #000;
}
.block-faq-list .faq .item.active .title-section svg * {
  fill: #000;
}
.block-faq-list .faq .item.active .title-section svg .line-1 {
  transform: rotate(90deg);
}
.block-faq-list .faq .item .content {
  overflow: hidden;
  will-change: transform;
  transition: all 0.5s;
  transform-origin: top;
  transform: scaleY(1);
}
.block-faq-list .faq .item:not(.active) .content {
  transform: scaleY(0);
  max-height: 0 !important;
}
.block-faq-list .faq .title-section {
  display: flex;
  justify-content: space-between;
}
.block-faq-list .faq .title-section h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s;
  padding-bottom: 20px;
}
.block-faq-list .faq .title-section svg .line-1 {
  transition: all 0.3s;
  transform-origin: center;
}
.block-faq-list .faq .content p {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
}


@media(max-width: 767px) {
  .block-faq-list .faq h3 {
    font-size: 25px !important;
    line-height: 1.2 !important;
  }
}




















@media(min-width: 767px) {

  .block-blog-posts {
    display: flex;
    flex-direction: row;
    gap: 110px;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
    z-index: 10;
    background-color: #191B1D;
  }
  .block-blog-posts .images {
    width: 50%;
    overflow: hidden;
    max-height: 100vh;
    position: sticky;
    top: 0;
  }

  .block-blog-posts .image-container img {
    min-height: 100vh;
  }

  .block-blog-posts .images .image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .block-blog-posts .images .image-container.item-0 {
    position: relative;
  }
  .block-blog-posts .images .image-container.item-1, .block-blog-posts .images .image-container.item-2 {
    position: absolute;
    top: 0;
    left: 0;
    transition: none;
  }
}

.block-blog-posts .content {
  width: 50%;
  max-width: 750px;
  padding-right: 15px;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
.block-blog-posts .we-brave-link.white-button {
  display: inline-block;
}

.sm-blog-posts {
  display: none;
}

.flickity-page-dots .dot {
  background-color: white !important;
  transition: all 0.3s;
}

.flickity-page-dots .dot.is-selected {
  width: 30px;
  border-radius: 15px;
}

@media(max-width: 767px) {
  .block-blog-posts {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-color: #191B1D;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
  }
  .sm-blog-posts {
    display: block;
  }

  .block-blog-posts .image-carousel {
    padding-bottom: 20px;
  }

  .block-blog-posts .text-carousel {
    padding-top: 50px;
  }

  .block-blog-posts .image-container {
    min-height: 100%;
    display: grid;
  }

  .block-blog-posts .image-container picture, .block-blog-posts .image-container img {
    height: 100%;
  }

  .sm-blog-posts .blog-item {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .block-blog-posts {
    gap: 20px;
    padding-bottom: 80px;
  }

  .block-blog-posts .images.lg, .block-blog-posts .content.lg {
    display: none;
  }
}

.pending-reanimation-a {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}
.pending-reanimation-a .work-image-square {
  width: 100% !important;
}

.pending-reanimation-a .anim-cover {
  opacity: 0 !important;
}
.pending-reanimation-b {
  opacity: 1 !important;
  transform: translate(101%, 0px) !important;
}


.floating-button-block {
  position: absolute;
  width: 100%;
  height: calc(100% - 160px);
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (min-width: 1800px) {
  .floating-button-block {
    height: calc(100% - 180px);
  }
}

@media (max-width: 1700px) {
  .floating-button-block {
    height: calc(100% - 170px);
  }
}

@media (max-width: 1400px) {
  .floating-button-block {
    height: calc(100% - 160px);
  }
}

@media (max-width: 1000px) {
  .floating-button-block {
    height: calc(100% - 150px);
  }
}

@media (max-width: 860px) {
  .floating-button-block {
    height: calc(100% - 220px);
  }
}

@media (max-width: 767px) {
  .floating-button-block {
    height: calc(100%);
  }
}

.floating-button {
  pointer-events: all;
  position: sticky;
  /*bottom: 20px;*/
  /*right: 30px;*/
  padding: 15px 30px 10px 30px;
  border-radius: 68px;
  background: #d5d1c8;
  z-index: 30;
  transition: all 0.3s;
  line-height: 1;
  display: inline-block;
  top: calc(100% - 100px);
  left: 100%;
  margin-right: 30px;
}
.floating-button.invert {
  background-color: white;
}
.floating-button img, .floating-button svg {
  transition: all 0.3s;
  will-change: transform;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  transform-box: fill-box;
  overflow: visible;
}

.floating-button img, .floating-button svg .to-transform, .floating-button img, .floating-button svg [class*="-to-transform"] {
  transition: all 0.3s;
  will-change: transform;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.floating-button:hover img, .floating-button:hover svg:not(:has([class*="-to-transform"], .to-transform)) {
  transform: scale3d(1.07, 1.07, 1.07);
}
.floating-button:hover svg [class*="-to-transform"], .floating-button:hover svg .to-transform {
  transform: scale3d(1.07, 1.07, 1.07);
}


@media(max-width: 767px) {
  .floating-button {
    transform: scale(0.7);
    transform-origin: bottom right;
    bottom: 20px;
    right: 20px;
  }
}





.block-services-icons {
  background: #d5d1c8;
  padding-top: 225px;
  padding-bottom: 275px;
  position: relative;
  z-index: 10;
}
.block-services-icons .container-1300 {
  width: 100%;
}
.block-services-icons h2 {
  max-width: 800px;
  margin: auto;
  color: black;
  text-align: center;
  font-weight: 700;
  padding-bottom: 140px;
  /*font-size: 60px;
  */
  /*line-height: 1.33;
  */
}
.block-services-icons .grid-section {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 110px;
  gap: 50px;
  width: 100%;
}
.block-services-icons .grid-section .item {
  text-align: center;
  padding-bottom: 40px;
}
.block-services-icons .grid-section .item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.block-services-icons .grid-section .item p {
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  /* 160% */
  letter-spacing: -0.75px;
}

@media(min-width: 2000px) {
  .block-services-icons .grid-section .item img {
    width: 4.167vw;
    height: 4.167vw;
  }

  .block-services-icons .grid-section .item p {
    font-size: 1.354vw;
  }

  .block-services-icons .grid-section {
    gap: 2.604vw;
  }
}

@media (max-width: 1250px) {
  .block-services-icons .grid-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .block-services-icons h2 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .block-services-icons .grid-section .item.is-last.is-odd {
    transform: translateX(calc(50% + 10px))
  }

  .block-services-icons {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .block-services-icons .grid-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .block-services-icons h2 {
    padding-bottom: 50px;
  }
}

@media(min-width: 2000px) {
  .block-services-icons h2 {
    max-width: 40vw;
  }
}



.ai-render-block {
  max-width: 2000px;
  position: relative;
  background: #191b1d;
  z-index: 10;
}

.close-ai-visualisation {
  border: none;
  background: transparent;
  cursor: pointer;
  display: none; /* hidden until overlay is present */
}

/* Show the close button only when the SELECTED slide has an active overlay */
.ai-render-block:has(#estate-flickity .carousel-cell.is-selected .before-after-overlay) #estate-alt-assets .close-ai-visualisation {
  display: inline-flex;
}

.ai-render-block:has(+.margin-block+.footer) {
  padding-bottom: 100px;
}

.second-banner+.margin-block:has(+.ai-render-block),
.ai-render-block+.margin-block:has(+.second-banner)
{
  height: 40px;
}

.ai-render-block:has(.before-after-overlay) .ai-disclaimer{
  display: flex;
}

.ai-render-block .ai-disclaimer {
  position: absolute;
  top: 25px;
  left: 28px;
  background: #d9d9d9;
  display: none; /* hidden by default; shown only when overlay active */
  gap: 6px;
  padding: 4px;
  align-items: center;
  max-width: 350px;
  z-index: 20;
  margin-left: 0px;
  width: 350px;
}
.ai-render-block:has(#estate-flickity .carousel-cell.is-selected .before-after-overlay) .before-after-overlay .ai-disclaimer {
  display: flex;
}
.ai-render-block .ai-disclaimer p {
  color: black;
  font-size: 10px !important;
  font-weight: 300;
  line-height: 12px !important;
  /* 120% */
  letter-spacing: -0.3px;
}
@media (max-width: 767px) {
  .ai-render-block .ai-disclaimer {
    margin-left: 0;
  }
}
.ai-render-block .before-after-slider img {
  object-fit: cover;
  object-position: top left;
}
.ai-render-block .flickity-container {
  padding: 0 80px;
  position: relative;
}

.ai-render-block .flickity-container .flickity-inner-container {
  position: relative;
}


@media (max-width: 767px) {
  .ai-render-block .flickity-container {
    padding: 0 0;
  }
}
.ai-render-block .inner {
  position: relative;
}
.ai-render-block .carousel {
  display: block;
  width: 100%;
}
.ai-render-block .carousel .carousel-cell {
  width: 100%;
}
.ai-render-block .ai-btns .img-arrow {
  position: absolute;
  top: calc(50% - 86px);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.ai-render-block .ai-btns .img-arrow.img-prev-arrow {
  left: 0;
}
.ai-render-block .ai-btns .img-arrow.img-prev-arrow svg {
  transform: rotate(180deg);
}
.ai-render-block .ai-btns .img-arrow.img-next-arrow {
  right: 0;
}
@media (max-width: 767px) {
  .ai-render-block .ai-btns {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
    margin-right: 10px;
    gap: 5px;
  }
  .ai-render-block .ai-btns .img-arrow {
    position: relative;
    left: auto;
    right: auto;
  }
}
.ai-render-block .before-after-overlay {
  height: 100%;
  margin: auto;
  aspect-ratio: 1.5;
  width: 100%;
  height: auto;
}
.ai-render-block .flickity-viewport {
  /*width: 100%;
  */
}
.ai-render-block .carousel .carousel-cell picture, .ai-render-block .carousel .carousel-cell picture img, .ai-render-block .carousel .carousel-cell img {
  display: block;
  width: 100%;
  height: auto;
}
.ai-render-block #estate-flickity-preview {
  /*position: absolute;
  */
  /*bottom: 20px;
  */
  /*left: 0;
  */
  margin-top: 30px;
  height: 120px;
  width: 100%;
}
.ai-render-block #estate-flickity-preview .carousel-cell {
  width: 160px;
  margin: 0 1px;
  border: 2px solid transparent;
}
.ai-render-block #estate-flickity-preview .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-render-block #estate-flickity-preview .carousel-cell.is-selected {
  position: relative;
  z-index: 10;
  border: 2px solid white;
}
.ai-render-block .alt-assets-toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 0;
}
.ai-render-block .alt-assets-toggle .open-btn {
  pointer-events: auto;
  display: flex;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(2.5px);
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
}
.ai-render-block .alt-assets-toggle .alt-asset-list {
  pointer-events: auto;
  width: 100%;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(2.5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}
.ai-render-block .alt-assets-toggle .alt-asset-list .list {
  display: flex;
  gap: 15px;
  align-items: center;
}
.ai-render-block .alt-assets-toggle .alt-asset-list .list span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.42px;
}
.ai-render-block .alt-assets-toggle .alt-asset-list .list .btn-list {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media(max-width: 767px) {
  .ai-render-block .alt-assets-toggle .alt-asset-list {
    width: auto;
    border-radius: 17px;
    margin-bottom: 5px;
    flex-direction: column-reverse;
    gap: 0;
  }
  .list {
    flex-direction: column-reverse;
    gap: 0;
  }
  .ai-render-block .alt-assets-toggle .alt-asset-list:not(.open) .list .btn-list {
    display: none !important;
  }
  .ai-render-block .alt-assets-toggle .alt-asset-list:not(.open) .close-ai-visualisation {
    display: none !important;
  }
  .ai-render-block .alt-assets-toggle .alt-asset-list.open .list {
    gap: 10px;
  }
  .ai-render-block .alt-assets-toggle .alt-asset-list.open .list .btn-list {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 17px;
  }

}

.ai-render-block .alt-assets-toggle .alt-asset-list .list .btn-list button {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.36px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid white;
  background: transparent;
  opacity: 0.5;
  transition: all 0.3s;
}
.ai-render-block .alt-assets-toggle .alt-asset-list .list .btn-list button.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .ai-render-block .alt-assets-toggle .alt-asset-list .list {
    /*flex-direction: column;
    */
    /*align-items: center;
    */
    /*justify-content: center;
    */
    /*width: 100%;
    */
  }
  .ai-render-block .alt-assets-toggle .alt-asset-list .list span {
    font-size: 10px;
    font-weight: 400;
  }
}

.ai-render-block #estate-flickity .carousel-cell {
  position: relative;
  /* Use a consistent aspect ratio for all slides (3:2) */
  aspect-ratio: 3 / 2;
}
/* Fallback for older browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
  .ai-render-block #estate-flickity .carousel-cell {
    height: 0;
    padding-bottom: 66.666%;
  }
}
/* Make media fill the cell while preserving crop */
.ai-render-block #estate-flickity .carousel-cell picture,
.ai-render-block #estate-flickity .carousel-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-carousel {
  z-index: 20;
}


/*.ai-render-block {*/
/*  max-width: 2000px;*/
/*  position: relative;*/

/*  .ai-disclaimer {*/
/*    position: absolute;*/
/*    top: 25px;*/
/*    left: 28px;*/
/*    background: #D9D9D9;*/
/*    display: flex;*/
/*    gap: 6px;*/
/*    padding: 4px;*/
/*    align-items: center;*/
/*    max-width: 350px;*/
/*    z-index: 20;*/
/*    margin-left: 80px;*/

/*    p {*/
/*      color: black;*/
/*      font-size: 10px !important;*/
/*      font-weight: 300;*/
/*      line-height: 12px !important; !* 120% *!*/
/*      letter-spacing: -0.3px;*/
/*    }*/

/*    @media(max-width: 767px) {*/
/*      margin-left: 0;*/
/*    }*/

/*  }*/

/*  .before-after-slider {*/
/*    img {*/
/*      object-fit: cover;*/
/*      object-position: top left;*/
/*    }*/
/*  }*/

/*  .flickity-container {*/
/*    padding: 0 80px;*/
/*    position: relative;*/
/*    @media(max-width: 767px) {*/
/*      padding: 0 0 ;*/
/*    }*/
/*  }*/

/*  .inner {*/
/*    position: relative;*/
/*  }*/

/*  .carousel {*/
/*    display: block;*/
/*    width: 100%;*/
/*  }*/

/*  !* Ensure one full-width cell per view *!*/
/*  .carousel .carousel-cell {*/
/*    width: 100%;*/
/*  }*/

/*  .ai-btns {*/

/*    .img-arrow {*/
/*      position: absolute;*/
/*      top: calc(50% - 86px);*/
/*      background: transparent;*/
/*      border: none;*/
/*      cursor: pointer;*/

/*      &.img-prev-arrow {*/
/*        left: 0;*/
/*        svg {*/
/*          transform: rotate(180deg);*/
/*        }*/
/*      }*/

/*      &.img-next-arrow {*/
/*        right: 0;*/
/*      }*/

/*    }*/
/*    @media(max-width: 767px) {*/
/*      display: flex;*/
/*      justify-content: end;*/
/*      margin-bottom: 10px;*/
/*      margin-right: 10px;*/
/*      gap: 5px;*/
/*      .img-arrow {*/
/*        position: relative;*/
/*        left: auto;*/
/*        right: auto;*/
/*      }*/
/*    }*/
/*  }*/

/*  .before-after-overlay {*/
/*    height: 100%;*/
/*    margin: auto;*/
/*    aspect-ratio: 1440 / 960;*/
/*  }*/

/*  .flickity-viewport {*/
/*    !*width: 100%;*!*/
/*  }*/

/*  !* Make images size to container width without forcing height *!*/
/*  .carousel .carousel-cell picture,*/
/*  .carousel .carousel-cell picture img,*/
/*  .carousel .carousel-cell img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: auto;*/
/*  }*/

/*  #estate-flickity-preview {*/
/*    !*position: absolute;*!*/
/*    !*bottom: 20px;*!*/
/*    !*left: 0;*!*/
/*    margin-top: 30px;*/
/*    height: 120px;*/
/*    width: 100%;*/


/*    .carousel-cell {*/
/*      width: 160px;*/
/*      margin: 0 1px;*/
/*      border: 2px solid transparent;*/
/*      img {*/
/*      //transition: all 0.3s;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        object-fit: cover;*/
/*      }*/
/*      &.is-selected {*/
/*        position: relative;*/
/*        z-index: 10;*/
/*        border: 2px solid white;*/
/*      //img {*/
/*      //  transform: scale(1.2);*/
/*      //}*/
/*      }*/
/*    }*/
/*  }*/

/*  .alt-assets-toggle {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 20;*/
/*    pointer-events: none;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: end;*/
/*    padding-bottom: 0;*/

/*    .open-btn {*/
/*      pointer-events: auto;*/
/*      display: flex;*/
/*      gap: 5px;*/
/*      color: #FFF;*/
/*      font-size: 14px;*/
/*      font-weight: 700;*/
/*      line-height: 1.2;*/
/*      letter-spacing: -0.42px;*/
/*      border-radius: 999px;*/
/*      background: rgba(0, 0, 0, 0.40);*/
/*      backdrop-filter: blur(2.5px);*/
/*      padding: 8px 12px;*/
/*      justify-content: center;*/
/*      align-items: center;*/
/*    }*/

/*    .alt-asset-list {*/
/*      pointer-events: auto;*/
/*      width: 100%;*/
/*      background: rgba(0, 0, 0, 0.40);*/
/*      backdrop-filter: blur(2.5px);*/
/*      display: flex;*/
/*      justify-content: space-between;*/
/*      align-items: center;*/
/*      gap: 10px;*/
/*      padding: 8px 12px;*/

/*      .list {*/
/*        display: flex;*/
/*        gap: 15px;*/
/*        align-items: center;*/
/*        span {*/
/*          display: flex;*/
/*          align-items: center;*/
/*          gap: 5px;*/
/*          color: #FFF;*/
/*          font-size: 14px;*/
/*          font-weight: 700;*/
/*          line-height: 1.2;*/
/*          letter-spacing: -0.42px;*/
/*        }*/

/*        .btn-list {*/
/*          display: flex;*/
/*          gap: 5px;*/
/*          align-items: center;*/

/*          button {*/
/*            color: #FFF;*/
/*            text-align: center;*/
/*            font-size: 12px;*/
/*            font-weight: 500;*/
/*            line-height: 1.5;*/
/*            letter-spacing: -0.36px;*/
/*            padding: 6px 18px;*/
/*            border-radius: 999px;*/
/*            border: 1px solid white;*/
/*            background: transparent;*/
/*            opacity: 0.5;*/
/*            transition: all 0.3s;*/

/*            &.is-active {*/
/*              opacity: 1;*/
/*            }*/
/*          }*/
/*        }*/

/*        @media(max-width: 767px) {*/
/*          span {*/
/*            font-size: 10px;*/
/*            font-weight: 400;*/
/*          }*/
/*          !*flex-direction: column;*!*/
/*          !*align-items: center;*!*/
/*          !*justify-content: center;*!*/
/*          !*width: 100%;*!*/
/*        }*/

/*      }*/
/*    }*/
/*  }*/
/*}*/
