body {
  margin: 0;
  padding: 0;
  /*height: 100%;*/
  /* overflow: hidden;  */
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 0.9vw + 12px, 18px);
}
* , ::before , ::after{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6{
    font-weight:100;
    font-style:thin;
    color:#F2ECDC;
}
p{
    font-weight: 300;
    font-style:light;
    color:#F2ECDC;
    font-size: clamp(0.9rem, 1.2rem + 1vw, 4rem);
}
.heading{

    text-align: center;  
    font-size: clamp(1.5rem, 4.8rem + 1vw, 10rem); 
    line-height: 1;
    text-transform: uppercase;
}
.section{
  padding:20px 30px;
  overflow: hidden;

}
.section_wrapper{
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.section_1_wrapper .heading{
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

.section_2_wrapper .heading{
    max-width: 710px;
    margin: auto;
}
.section_3_wrapper .heading{
    max-width: 635px;
    align-self: flex-start;
    text-align: left;
    margin-right: auto;

}
.section_3_wrapper .description{
    max-width: 635px;
    align-self: flex-end;
    text-align: left;
    margin-left: auto;

}
.section.align_item_unet{
  align-items: unset;
}
.client_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.client_wrapper img {
    max-width: 150px !important;
}
.section.section_4{
  padding:4% 3%;
}
.section_4_wrapper .heading{
  text-align: right;
  position: absolute;
  top:5px;
  right: 20px;
  z-index: 2;
}
.section_5_wrapper{
  /* text-align: center; */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
}
.section_5_wrapper .form_wrapper{
  border-radius: 17px;
  position: relative;
  width: 100%;
  min-height: 200px;
  background: #FF000080;
  display: block;
  margin-top: 40px;
}
.section_5_wrapper .form_wrapper img{
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: 100px;
}

.content {
  text-align: center;
  color: white;
}

.section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding-top:50px;
  padding-bottom: 50px;;
  /* opacity: 0; */
}



.fadeIn {
  animation: fadeIn 1s ease forwards;
}
.fadeInUp {
  animation: fadeInUp 1s ease forwards;
}
.fadeOutDown {
  animation: fadeOutDown 1s ease forwards;
}
.fadeInLeft {
  animation: fadeInLeft 1s ease forwards;
}
.fadeOutRight {
  animation: fadeOutRight 1s ease forwards;
}
.zoomIn {
  animation: zoomIn 1s ease forwards;
}
.zoomOut {
  animation: zoomOut 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

.section {
  min-height: 100vh;
  width: 100%;

  /* position: absolute;
  top: 0;
  left: 0;
  opacity: 0; */
  /* pointer-events: none; */
  background: inherit; 
}

.section.active {
  pointer-events: auto;
  opacity: 1;
}

.section.animating {
  z-index: 3;
}


#nav-dots {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  z-index: 9999;
}

.nav-dot {
  width: 26px;
  height: 3px;
  background: #D9D9D9;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-dot.active {
  background: #D9D9D9;
  width: 45px;
}


.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  width: 90%;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  touch-action: pan-y;
  cursor: grab;
  will-change: transform;
  touch-action: pan-y;     /* allow vertical scroll but enable horizontal gestures */
  cursor: grab;
  /* remove CSS transition if you are using GSAP for animations */
  transition: none;
  pointer-events: auto !important;

}
.slider-track:active {
  cursor: grabbing;
}

.slide {
  flex: 0 0 calc(50% - 10px); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.slide img {
  max-width: 100%;
  height: auto;
  padding-right: 72px;
  max-width:380px;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}
.slide_content{
  position: absolute;
  bottom: 50px;
  right: 50px;
  text-align: right;
  max-width: 390px;
}
.slide_content h2{
  font-size: 70px;
  line-height: 1;
}
.slide_content p{
  font-size: 24px;
}

@media (max-width: 767px) {
  .slide {
    flex: 0 0 100%;
  }
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1; 
}


@media (min-width: 2560px) {
  .slide img {
    max-width: 100%;
    width: 85%;
    height: 100%;
    padding-right: 300px;
  }
  .slide_content {
    position: absolute;
    bottom: 250px;
    right: 118px;
    text-align: right;
    max-width: 415px;
  }
  .slide_content h2 {
    font-size: 100px;
    line-height: 1.2;
  }
  .slide_content{
    position: absolute;
    bottom: 80px;
    right: 233px;
    text-align: right;
    max-width: 795px;
  }
  .section_4_wrapper .heading,
  .section_2_wrapper .heading,
  .section_1_wrapper .heading,
  .section_5_wrapper .heading,
  .section_3_wrapper .heading{
    font-size: 10rem;
  }
  .slide_content p{
    font-size:40px;
  }
  .slide{
    flex:0 0 50%;
  }
  .section.section_4{
    padding:3.5% 3%;
  }
  .section_wrapper,
  .section_5_wrapper{
    max-width: 2200px;
  }
  .section_2_wrapper .heading{
    max-width: 1860px;
  }
  .section_1_wrapper .heading{
    max-width: 1490px;
  }
  .section_3_wrapper .heading{
    max-width: 1265px;
  }
  .section_3_wrapper .description{
    max-width: 1260px;
    margin-top: 80px;
  }
  .section_1_wrapper  .description,
  .section_5_wrapper .description,
  .section_3_wrapper .description{
    font-size: 65px;
  }
  .section_5_wrapper{
    justify-content: flex-start;
    padding-top: 100px;
    max-width: 1200px;
  }
  .client_wrapper{
    gap: 140px;
    max-width: 1400px;
  }
  .client_wrapper img {
    max-width: 100% !important;
    width: 100%;
    height: 100%;
  }
  .section_3_outter_wrapper {
    gap: 100px;
  }
}


@media (min-width: 1440px) and (max-width: 2559px) {
  .slide img {
    max-width: 85% !important;
    height: auto !important;
    padding-right: 192px;
  }
  .slide_content {
    position: absolute;
    bottom: 20px;
    right: 170px;
    text-align: right;
    max-width: 490px;
  }
  .slide_content h2 {
    font-size: 63px;
    line-height: 1.1;
  }
  .slide_content p{
    font-size:25px;
  }
  .slide{
    flex:0 0 50%;
  }
  .section.section_4{
    padding:3.5% 3%;
  }
  .section_3_outter_wrapper {
    gap: 50px;
  }
  .section_3_wrapper .description{
    max-width: 730px;
    margin-top: 50px;
  }
  .section_1_wrapper .heading{
    max-width: 850px;
  }
  .section_2_wrapper .heading{
    max-width: 900px;
  }
  .section_3_wrapper .heading{
    max-width: 660px;
  }
}
  

@media (min-width: 1024px) and (max-width: 1439px) {
  .slider{
    width:94%;
  }
  .slide img {
    max-width: 70% !important;
    height: auto !important;
    padding-right: 80px;
  }
  .slide_content {
    position: absolute;
    bottom: 20px;
    right: 104px;
    text-align: right;
    max-width: 330px;
  }
  .section .heading{
    font-size: 70px;
    line-height: 1.1;
  }
  .slide_content h2 {
    font-size: 45px;
    line-height: 1.1;
  }
  .slide_content p{
    font-size:16px;
  }
  .slide{
    flex:0 0 50%;
  }
  .section.section_4{
    padding:3.5% 3.5%;
  }
  .section_3_outter_wrapper {
    gap: 50px;
  }
  .section_3_wrapper .description{
    margin-top: 50px;
  }
  .section .description{
    font-size: 23px;
  }
  .section_3_wrapper .description{
    max-width: 450px;
  }
  .section_3_wrapper .heading{
    max-width: 450px !important;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .slider{
    width:90%;
  }
  .slide img {
    max-width: 100% !important;
    height: auto !important;
    padding-right: 50px;
  }
  .slide_content {
    position: absolute;
    bottom: 20px;
    right: 10px;
    text-align: right;
    max-width: 280px;
  }
  .section .heading{
    font-size: 50px;
    line-height: 1.1;
  }
  .slide_content h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .slide_content p{
    font-size:13px;
  }
  .slide{
    flex:0 0 50%;
  }
  .section.section_4{
    padding:3.5% 3.5%;
  }
  .section_1_wrapper .heading{
    max-width: 415px;
  }
  .section .description{
    font-size: 16px;
  }
  .section_2_wrapper .heading{
    max-width: 500px;
  }
  .section_3_wrapper .heading{
    max-width: 340px;
  }
  .section_3_wrapper .description{
    max-width: 330px;
  }
  .client_wrapper img{
    max-width: 100px !important;
  }
  .section_3_outter_wrapper{
    gap: 50px;
  }
  .section_3_wrapper .description {
   max-width: 340px;
   margin-top: 50px;
  }
}

@media (max-width: 767px){
  .slider{
    width:100%;
    margin-top: 40px;
  }
  .slide img {
    max-width: 100% !important;
    height: auto !important;
    padding-right: 90px;
  }
  .slide_content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: right;
    max-width: 280px;
  }
  .section .heading{
    font-size: 47px;
    line-height: 1.1;
  }
  .section_4_wrapper .heading{
    position: absolute;
    top: 5px;
    right: unset;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }
  .slide_content h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .slide_content p{
    font-size:13px;
  }
  .slide{
    flex:0 0 97%;
  }
  .section.section_4{
    padding:3.5% 3.5%;
  }
  /*.mb_flex_end{*/
  /*  justify-content: flex-end !important;*/
  /*  padding-bottom: 50px;*/
  /*}*/
  .mb_center{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  /*.section_2_wrapper .heading{*/
  /*  margin-top: unset;*/
  /*  padding-top: 50px;*/
  /*}*/
  .client_wrapper{
    margin-top: unset;
    margin-bottom: unset;
    gap: 25px;
    max-width: 400px;
  }
  .client_wrapper img{
    max-width: 75px !important;
  }
  .section_3_wrapper .heading,
  .section_3_wrapper .description{
    text-align: center;
  }
  .section_3_wrapper .description{
    margin-top: 25px;
  }
  .section_3_outter_wrapper{
    gap: 30px;
  } 
  .section_5_wrapper{
    padding-top: 50px;
    justify-content: flex-start;
  }
  .section_5_wrapper .form_wrapper{
    margin-top: 10px;
  }
  .section_5_wrapper,
  .section_1_wrapper,
  .section_2_wrapper,
  .section_4_outter_wrapper{
      justify-content:center !important;
      align-items:center !important;
  }
  .section.section_4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .section_4_wrapper{
      position:relative !important;
  }
  .section_4_wrapper .heading{
      top:-35px;
  }
} 

@media (max-width: 370px){
  .slider{
    width:100%;
    margin-top: 40px;
  }
  .slide img {
    max-width: 100% !important;
    height: auto !important;
    padding-right: 90px;
  }
  .slide_content {
    position: absolute;
    bottom: 20px;
    right: 10px;
    text-align: right;
    max-width: 280px;
  }
  .section .heading{
    font-size: 53px;
    line-height: 1.1;
  }
  .section_4_wrapper .heading{
    position: absolute;
    top: 5px;
    right: unset;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%) !important;
    text-align: center;
    width: 100%;
  }
  .slide_content h2 {
    font-size: 30px;
    line-height: 1.1;
  }
  .slide_content p{
    font-size:13px;
  }
  .slide{
    flex:0 0 97%;
  }
  .section.section_4{
    padding:3.5% 3.5%;
  }
}


/* form */
.form_wrapper{
  min-height: auto !important;
}
.form_wrapper label{
  font-size: 20px;
}
.form_wrapper .wpcf7{
  z-index: 2;
  position: relative;
}
.form_wrapper img{
  z-index: 1;
}
.form_wrapper{
  padding:20px;
}
input[type="text"],
input[type="email"]{
  height: 40px;
  
}
input[type="text"],
input[type="email"],
textarea{
  width: 100%;
  border: 0px !important;
  border-radius: 10px;
  padding: 10px;
  font-size: 18px;
}
input[type="submit"]{
  background: transparent;
  color: #fff;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  min-width: 113px;
  font-size: 20px;
  cursor:pointer;
}
.form_row{
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap:wrap;
}
.form_row p{
  width: 48%;
}
.form_row p label,
.form_row p label .wpcf7-form-control-wrap{
  width: 100%;
  display: block;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output{
  color:#ffffff;
}

/* section min-height fixes */
#section_1,
#section_2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


@media (max-width:767px){
    .form_row p{
      width: 100%;
    }
}