@font-face {
    font-family: Helvetica-Roman;
    src: url(./fonts/Helvetica\ Roman.ttf);
    font-display: swap;
}

@font-face {
    font-family: Helvetica-bold;
    src: url(./fonts/Helvetica-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: Helvetica-light;
    src: url(./fonts/Helvetica-Light.ttf);
    font-display: swap;
}

* {
    box-sizing: border-box;
}


:root {
    --textColor: #f9f9f9;
    --background-color: #000000;
    --accentColor: #ffffff;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 250ms 
}
h1,h2,h3 { 
    font-weight: 400;
}


html, body {
    height: 100%;
    overflow: auto;
    font-family: Helvetica-Roman;
    
  } 
body {
    font-size: clamp(18px, 2vw, 30px);
    line-height: 1.2;
    margin: 0;
    color: var(--textColor);
    background-color: var(--background-color);
}


p,h1,h2,h3,h4,h5,h6 {
    margin: 0
}

* {
    margin: 0;
    scroll-behavior: smooth;
  }
  
  ::-webkit-scrollbar {
    display: none;
  }
  

ul {
    margin: 0;
    padding: 0
}



img {
    display: block;
    max-width: 100%;
    height: auto
}

.list {
    list-style: none
}

.link {
    text-decoration: none;
    color: inherit
}

.icon,.link,.btn {
    transition: color var(--duration) var(--transition),background-color var(--duration) var(--transition)
}

.link:hover,.link:focus,.btn:hover,.btn:focus,.icon:hover,.icon:focus,.button-prev:hover,.button-prev:focus .button-next:hover,.button-next:focus {
    color: var(--accentColor)
}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    margin: -1px
}

.no-scroll {
    margin: 0;
    height: 100%;
}



.container {
    margin: 0 auto
}

@media screen and (min-width: 480px)and (max-width: 767px) {
    .container {
        padding:0 31px
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width:480px
    }
}

@media screen and (min-width: 768px) {
    .container {
        width:768px;
        padding-left: 39px;
        padding-right: 39px
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width:1200px;
        padding-left: 15px;
        padding-right: 15px
    }
}


.scroll-container {
    height: 100vh;
    scroll-snap-type: y mandatory;
    position: relative;
    overflow-x: hidden;
  }


  @media screen and (min-width: 1200px) {
    .scroll-container {
        height: 100vh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        position: relative;
        overflow-x: hidden;
      }
}

  ::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
  }


  section {
    height: 100vh;
    scroll-snap-align: center;
  }

  source {
    display: block;
    width: 100%;
    height: auto;
}


  .btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 34%;
    cursor: pointer;
  }
  

  .btn.contact {
    line-height: 30px;
    font-size: 16px;
  }

  @media screen and (min-width: 768px) {
    .btn.contact {
        line-height: 40px;
        font-size: 18px;
      }
}

@media screen and (min-width: 1500px) {
    .btn.contact {
        line-height: 70px;
        font-size: 30px;
      }
}

@media screen and (min-width: 768px) {
    .section {
        padding:100px 0
    }
}

@media screen and (min-width: 1200px) {
    .section {
        padding:120px 0
    }
}

 /* 
  ========================
       preloader
  ========================
  */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1000000000000000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    z-index: -1;
    background-color: var(--background-color);
    transition: var(--transition);
}

#preloader:after {
    top: auto;
    bottom: 0;
}

#preloader .loader_line {
    margin: auto;
    height: 1px;
    width: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
}

.loader_line:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0%;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--accentColor);
    animation: linewidth 1000ms ease-in-out forwards;
}

.loader_line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #999999;
    animation: lineflow 1200ms linear infinite;
    animation-delay: 2000ms;
}

@keyframes linewidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes lineflow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.portfolio_list {
    min-height: 50vh;
}

/*hiding all*/
.preloaded .loader_line:after {
    opacity: 0;
}

.preloaded .loader_line {
    opacity: 0;
    width: 100% !important;
}

.preloaded:before,
.preloaded:after {
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
    0% {
        height: 50%;
    }
    100% {
        height: 0%;
    }
}

/* header */

header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
}

.header__list {
    padding: 30px 20px 0 0;
    display: flex;
    gap: 30px;
    font-weight: 900;
}

@media screen and (min-width: 1200px) {
    .header__list {
        padding: 30px 60px 0 0;
    }
}

.header__link {
    text-transform: uppercase;
    color: var(--textColor);
}




@media screen and (max-width: 768px) {


  .header__list-item {
      margin: 10px 0;
  }


}


 /* 
  ========================
        hero
  ========================
  */

.hero__bloc-video {
  position: relative;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__bloc-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
  position:absolute;
  height: 100vh;
}

@media screen and (min-width: 768px) {
    .hero__bloc-video img {
        display: none;
    }
}

@media screen and (max-width: 768px) {

}


.hero__bloc-video img {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    position:absolute;
    height: 100vh;
}

.hero__bloc-video picture{
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    position:absolute;
    height: 100vh;
  
  
  }
  

.hero__content-text {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-color);
    font-weight: 400;
}

.hero__content-text h1{
    font-weight: 400;
}


.hero__bloc-video .hero__content-video {
  flex-direction: column;

}


.hero__bloc-video .hero__content-video .hero__content-text, .hero__content-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__bloc-video .hero__content-video .hero__content-button {
  margin-top: 50px;
}

.hero__bloc-video .hero__content-video .hero__content-button button {
  cursor: pointer;
  padding: 10px;
  width: 200px;
  height: 60px;
  font-size: 16px;
  font-family: cursive;
  background: none;
  border-radius: 5px;
  text-transform: uppercase;
}

.hero__bloc-video .hero__content-video .hero__content-button button:hover {
  transition: all .75s ease-in-out;
  transform: rotateX(360deg);
}


.hero-footer {
    position: absolute;
    top: 80%;
    left: 20px;
    text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
    .hero-footer {
        position: absolute;
        top: 90%;
        left: 60px;
    }
}


.is-hero-footer {
    display: flex;
    gap: 10px;
    flex-direction: column-reverse;
}

@media screen and (min-width: 1200px) {
    .is-hero-footer {
        display: flex;
        gap: 10px;
    }
    
}

.flex-vertical {
    display: flex;
    flex-direction: column;
}


 /* 
  ========================
        about
  ========================
  */

.about__container {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0px 20px;
}

@media screen and (min-width: 390px) and (max-width: 470px)  {
    .about__container {
        height: 77vh;
    }
    
}

@media screen and (min-width: 1200px) {
    .about__container {
        height: 100vh;
    }
    
}
.about__text {
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 80%;
}

@media screen and (min-width: 768px) {
    .about__text, .about__text-span{
      font-size: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .about__text {
    font-size: 34px;
    max-width: 100%;
}
  
}

@media screen and (min-width: 1200px) {
    .about__text {
      font-size: 42px;
      max-width: 100%;
  }
    
  }

.about__text-span{
    text-align: center;
    margin: 0 auto;
    font-family: Helvetica-bold;
}

@media screen and (min-width: 1200px) {
  .about__text-span{
    font-size: 34px;
}
}


.about__quota {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 70%;
    flex-direction: column;
    align-items: end;
    font-size: 18px;
    padding: 10px;
}




@media screen and (min-width: 768px) and (max-width: 1200px){
    .about__quota {
    padding-right: 70px;
    }
}
@media screen and (min-width: 1200px) {
  .about__quota {
    display: flex;
    align-items: center;
    gap: 20px;
    top: 78%;
    position: absolute;
    flex-direction: column;
    align-items: end;
    font-size: 25px;
}
}


.about__quota-text {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.8;

}

@media screen and (min-width: 768px) {
    .about__quota-text {
        font-size: 18px;
        max-width: 70%;
        text-align: right;
    }
  }

  @media screen and (min-width: 1200px) {
    .about__quota-text {
        font-size: 18px;
        max-width: 100%;
        text-align: right;
    }
  }
  
.about__quota-name {

}

 /* 
  ========================
        scroll
  ========================
  */
.scroll {
    display: none;
}


@media screen and (min-width: 1200px) {
    .scroll {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    
        position: relative;
    }
    
}



.scroll__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap; 
    width: max-content;
    margin-top: 15%;
}




@media screen and (min-width: 1200px) {
  .scroll__wrap {
    margin-top: 0%;
}
}

.scroll__item {
    width: 200vw;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}


@media screen and (min-width: 1200px) {
    .scroll__item {
        gap: 50px;
        width: 100vw;
    }
    
}


.inner-wrap {
    display: flex;
    gap: 70px;
    max-width: 1920px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    width: max-content;
}

@media screen and (min-width: 1920px) {
    .inner-wrap {
        max-width: 100vw;
    }
    
}

@media screen and (min-width: 3800px) {
    .inner-wrap {
        max-width: 3755px;
    }
    
}



.scroll-video {
  height: 45%;
  overflow: hidden;
}

.scroll-video video {
    height: 100%;
}
.scroll__photo img{ 
    width: auto;


}

.scroll__photo-wrap.photo-wrap-2.second {
  justify-content: space-between;
  flex-direction: column;
}


.scroll__video-wrap {
    width: 57vw;
    height: 90vh;
    position: relative;

}


.scroll__video-wrap.third {
    height: 90vh;
    position: relative;
}

@media screen and (min-width: 1200px) {
    /* .scroll__video-wrap.third {
        height: auto;
    } */
    
}

.scroll__video-wrap.scroll__video-wrap--second {
    height: auto;
}

@media screen and (min-width: 1200px) {
    .scroll__video-wrap {
        width: auto;
    }

    @media screen and (min-width: 1920px) {
        .scroll__video-wrap {
            width: 35vw;
        }
    
        
    }

    @media screen and (min-width: 2560px) {
        .scroll__video-wrap {
            width: 35vw;
        }
    
        
    }
    
}

.scroll__video-wrap video {
    width: 100%;
    object-fit: contain;
}



.scroll__photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}


.photo-wrap-1, .scroll__item  {
    position: relative;
}


.photo-wrap-1  {
    height: 80vh;
    width: 36vw;
    overflow: hidden;
}

@media screen and (min-width: 1200px) {
    .photo-wrap-1 {
        width: 22vw;
    }
    
}

@media screen and (min-width: 1920px) {
    .photo-wrap-1.photo-wrap-1--second {
        width: 22vw;
        height: 60vh;
    }

    @media screen and (min-width: 2560px) {
        .photo-wrap-1.photo-wrap-1--second {
            width: 22vw;
            height: auto;
        }
        
    }
    
}

.photo-wrap-2  {
    width: 86vw;
    height: 87vh;
    overflow: hidden;
}


@media screen and (min-width: 1200px) {
    .photo-wrap-2  {
        width: auto;
        margin-right: 70px;
    }

    .photo-wrap-2.second {
        width: auto;
        height: 77vh;
    }

    
} 

@media screen and (min-width: 1920px) {
    .photo-wrap-2  {
        margin-right: 50px;
    }
/* 
    .photo-wrap-2.second {
        width: auto;
        height: 57vh;
    } */
} 


.scroll__heading {
    position: absolute;
    font-size: 25px;
    bottom: 10%;
    left: 17%;
    z-index: 100;
}


@media screen and (min-width: 1200px) {

  .scroll__heading {
    position: absolute;
    text-align: center;
    bottom: 12%;
    left: 27%;
    z-index: 100;
}
}

@media screen and (min-width: 1500px) {
    .scroll__heading {
        bottom: 17%;
    }

  }

  @media screen and (min-width: 1920px) and (max-width: 3650px) {
    .scroll__heading {
        bottom: 15%;
    }
  }

.scroll__video-wrap,
.scroll__photo-wrap {
  overflow: hidden; 
}

.scroll__video-wrap video,
.scroll__photo-wrap img {
  transition: transform 0.3s ease; 
}


.scroll-wrap--mob {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    position: relative;
    
}

@media screen and (min-width: 450px) {
    .scroll-wrap--mob {
        width: auto;
        height: 100vh;
        overflow-y: scroll;
        position: relative;
        
    }
    
}


.scroll-wrap--mob.scroll-wrap--mob--2 {
    width: 100%;
    max-height: 80vh;
    overflow-y: scroll;
    position: relative;
    justify-content: start;
 
}

.scroll-wrap--mob video{
    height: auto;
    max-height: 100%;
}

.scroll-wrap--mob img{
    height: auto;
    max-height: 100%;
}


@media screen and (min-width: 1200px) {
    .scroll__video-wrap:hover video {
        transform: scale(1.05); 
      }
      
      
      .scroll__photo-wrap:hover img {
        transform: scale(1.05); 
      }
}



@media screen and (min-width: 1700px) {
    .scroll__heading {
        left: 37%;
    }
}

@media screen and (min-width: 1900px) {
    .scroll__heading {
        left: 47%;
    }
}

@media screen and (min-width: 2000px) {
    .scroll__heading {
        left: 67%;
    }
}
.scroll-wrap {
    position: relative;
}

.scroll-wrap--item--2 {

}

@media screen and (min-width: 1900px) {
    /* .scroll-wrap--item--2 {
        width: 33%;

    
    } */
}


.scroll-wrap--item--2 .second {
    width: 37%;
}
.scroll__text {
    position: absolute;

    text-align: center;
    width: 300px;
    font-size: 25px;
    top: 5%;
    left: 37%;
    z-index: 100;

}


@media screen and (min-width: 1700px) {
    .scroll__text {
        left: 47%;
    }
}

@media screen and (min-width: 1900px) {
    .scroll__text {
        left: 50%;
    }
}

@media screen and (min-width: 1920px) {
    .scroll__text {
        left: 67%;
        top: 2%;
    }
}

@media screen and (min-width: 1920px) {
    .scroll__text.second {
        left: 37%;
        top: 2%;
    }
}

  /* 
  ========================
        BUTTON ONE
  ========================
  */

  .btn-one {
    color: #FFF;
    position: relative;
    transition: all 0.3s;
}

.btn-one span {
    transition: all 0.3s;
}

.btn-one::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1; 
    transform: scale(1, 1); 
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-one:hover span {
    letter-spacing: 2px; 
}

.btn-one:hover::before {
    opacity: 0; 
    transform: scale(0.1, 1); 
}

.btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0; 
    transform: scale(0.1, 1); 
}

.btn-one:hover::after {
    opacity: 1; 
    transform: scale(1, 1); 
}




  /* 
  ========================
        scroll-button
  ========================
  */
  .btn.btn-one.scroll-button-down {
    position: absolute;
    bottom: 0;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn.scroll-button-up {
    position: absolute;
    top: 2px;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn.btn-one.scroll-button-down.btn-one--mob {
    position: sticky;
    top: 82%;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn.btn-one.scroll-button-up.btn-one--mob {
    position: sticky;
    top: 2%;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
  }


  .btn.btn-one.scroll-button-down {
    position: absolute;
    bottom: 0;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
  }


  /* 
  ========================
        contact
  ========================
  */

  .contact__container {
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 120px;
  }

  @media screen and (min-width: 400px) {
    .contact__container {
        padding-top: 69px;
      }
  }


  @media screen and (min-width: 1200px) {
    .contact__container {
        height: 100vh;
        padding: 20px;
      }
  }


.contact__heading {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.7;
  
}

.contact__sub-heading {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
  }


  .contact__list-wrap {
    margin-top: 50px;
    align-self: start;
  }
  
@media screen and (min-width: 1200px) {
  .contact__heading {
    font-size: 43px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.7;
    max-width: 850px;
  }

  .contact__sub-heading {
    font-size: 25px;
  }
}


@media screen and (min-width: 1200px) {
    .contact__list-wrap {
        margin-top: 100px;
        align-self: start;
      }
  }

.contact__list {
  text-transform: uppercase;
}

.contact__item {
  margin-top: 20px;
  position: relative;
}
.contact__item--location { 
    padding: 10px;
    
}


/* 
========================
      scroll--mob
========================
*/

.scroll--mob {
    width: 100vw;
    height: 100vh;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.scroll--mob--2 {
    width: 79vw;
    height: 79vh;
    overflow: hidden;
    padding: 10.5vh 11vw;
}

.scroll--mob--1 {
    height: 100vh;
    padding-bottom: 10vh;
}

.scroll--mob-wrap {
    width: 100%;
}

@media screen and (min-width: 1199px) {
    .scroll--mob-wrap {
        display: none;
    }
}

.scroll-wrap--mob {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.scroll-wrap--mob--1 {
    max-width: 650px;
    gap: 10px;
    margin: 0 auto;
    overflow: visible;
}

.scroll-wrap--mob--4 {
    flex-direction: column;
    gap: 20px;
}

.scroll-wrap--mob--4.first {
    gap: 30px;
}
.scroll-wrap--mob img {
    width: auto;
    object-fit: cover;
}

.scroll-wrap--mob video {
    width: 100%;
    object-fit: contain;
}

.scroll--mob-wrap1 {
    width: 55%;
    margin-top: 27px;
}

.scroll--mob-wrap1.last {
    width: 50%;
    margin-top: 0px;
}

.scroll--mob-wrap2 {
    width: 45%;
}

.scroll--mob-wrap2.last {
    width: 50%;
    margin-top: 0px;
}


.scroll-heading--mob {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: 100;
    will-change: transform;
}

.scroll-heading--mob--1 {
    position: absolute;
    font-size: 27px;
    top: 68%;
    z-index: 100;
}


@media screen and (min-width: 390px) {
    .scroll-heading--mob--1 {
        position: absolute;
        top: 75%;
        z-index: 100;
    }
  }

  @media screen and (min-width: 390px) {
    .scroll-heading--mob--1.last {
        position: absolute;
        top: 70%;
        z-index: 100;
    }
  }
  
  
  
  @media screen and (min-width: 390px) {
    .scroll-heading--mob--1.first{
        top: 71%;
    }
  }
  @media screen and (min-width: 768px) {
    .scroll-heading--mob--1 {
        position: absolute;
        top: 71%;
        left: 15%;
        z-index: 100;
    }
  }


.scroll-heading--mob--1.second{
    top: 70%;
}

@media screen and (min-width: 768px) {
    .scroll-heading--mob--1.second{
        top: 67%;
        left: 12%;
    }
  }

.scroll-text--mob {
    position: absolute;
    bottom: 10%;
    left: 3%;
    z-index: 100;
}

.scroll-text--mob--1 { 
    position: absolute;
    top: 76%;
    left: 50%;
    z-index: 2;
    font-size: 16px;
    text-align: center;
}



.scroll-text--mob--4 {
    position: absolute;
    top: 68%;
    left: 3%;
    z-index: 100;
}

.scroll-text--mob--4.first {
    top: 44%;
}

.link-contact {
    padding: 10px 0;
}



.scroll {
    display: none;
    }
    
    
    @media screen and (min-width: 768px) {
    .scroll {
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    
      position: relative;
    }
    
    }
    
    
    
    .scroll__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap; 
    width: max-content;
    margin-top: 15%;
    }
    
    @media screen and (min-width: 1200px) {
    .scroll__wrap {
    margin-top: 0%;
    }
    }

    .height-wrap { 
        height: 77;
    }
    
    .scroll__item {
    width: 200vw;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    }
    
    
    @media screen and (min-width: 1200px) {
    .scroll__item {
      gap: 50px;
      width: 100vw;
    }
    
    }
    
    
    .scroll-photo {
        height: 50%;
        width: 100%;
    }
    
    
    .scroll-video {
    height: 50%;
    width: 100%;
    }
    
    .scroll-video video {
    width: 100%;
    }
    
    
    .scroll__photo-wrap.photo-wrap-2.second {
    justify-content: space-between;
    flex-direction: column;
    }

    .scroll__photo-wrap.photo-wrap-2.first { 
        height: 65vh;
    }
    
    
    .scroll__video-wrap {
    width: 57vw;
    height: 90vh;
    position: relative;
    
    }
    
    .scroll__video-wrap.scroll__video-wrap--second {
    height: auto;
    }
    
    @media screen and (min-width: 1200px) {
    .scroll__video-wrap {
      width: 33vw;
    }

        .scroll__video-wrap.first{
      width: 63vw;
      height: auto;
    }
    
    }

    .scroll-wrap-work1-content { 
        display: flex;
        flex-direction: column;
        width: 60%;
        margin-left: auto;
        align-items: end;
        gap: 10px;
        margin-top: 10px;
    }
    
    .scroll__video-wrap video {
    width: 100%;
    object-fit: contain;
    }

    
    
    
    
    .scroll__photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    gap: 50px;
    }
    
    
    .photo-wrap-1, .scroll__item  {
    position: relative;
    }
    
    
    .photo-wrap-1  {
    height: 80vh;
    width: 36vw;
    overflow: hidden;
    }
    
    @media screen and (min-width: 1200px) {
    .photo-wrap-1 {
      width: 25vw;
      height: 77vh;
    }
    
    }
    
    @media screen and (min-width: 1200px) {
    .photo-wrap-1.photo-wrap-1--second {
      width: 20vw;
      height: 77vh;
    }
    
    }
    
    .scroll__item--1 { 
        padding-left: 3.125rem;
        align-items: flex-start;
    }


    .photo-wrap-2  {
    margin-right: 30px;
    width: 86vw;
    height: 87vh;
    overflow: hidden;
    }
    
    
    @media screen and (min-width: 1200px) {
    .photo-wrap-2  {
    margin-right: 50px;
      width: 28vw;
      /* height: 77vh; */
    }

    .photo-wrap-2.last { 
        height: 100vh;
    }
    
    } 
    
    
    .scroll__heading {
    position: absolute;
    font-size: 25px;
    bottom: 10%;
    left: 17%;
    z-index: 100;
    }
    

    .scroll__heading.second{
        top: 5%;
        left: 55%;
    }
    .scroll__heading.second.last{
        top: 15%;
    }        
    
    
    @media screen and (min-width: 1200px) {
    
    .scroll__heading {
    position: absolute;
    
    text-align: center;
    width: 500px;
    font-size: 40px;
    bottom: 7%;
    left: 27%;
    z-index: 100;
    }

    .scroll__heading.first { 
        position: static;
        width: auto;
    }
    }
    
    .scroll__video-wrap,
    .scroll__photo-wrap {
    overflow: hidden; 
    }
    
    .scroll__video-wrap video,
    .scroll__photo-wrap img {
    transition: transform 0.3s ease; 
    }
    
    
    .scroll-wrap--mob {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    position: relative;
    }
    
    
    .scroll-wrap--mob.scroll-wrap--mob--2 {
    width: 100%;
    max-height: 80vh;
    overflow-y: scroll;
    position: relative;
    justify-content: start;
    
    }
    
    .scroll-wrap--mob video{
    height: auto;
    max-height: 100%;
    }
    
    .scroll-wrap--mob img{
    height: auto;
    max-height: 100%;
    }
    
    
    @media screen and (min-width: 1200px) {
    .scroll__video-wrap:hover video {
      transform: scale(1.05); 
    }
    
    
    .scroll__photo-wrap:hover img {
      transform: scale(1.05); 
    }
    }
    
    
    
    @media screen and (min-width: 1700px) {
    .scroll__heading {
      left: 37%;
    }
    }
    
    @media screen and (min-width: 1900px) {
    .scroll__heading {
      left: 47%;
    }
    }
    
    @media screen and (min-width: 2000px) {
    .scroll__heading {
      left: 67%;
    }
    }
    .scroll-wrap {
    position: relative;
    }

    .scroll-wrap.first { 
        display: flex;
        flex-direction: column-reverse;
        /* height: 66vh; */
    }
    .scroll__text {
    position: absolute;
    
    text-align: center;
    width: 300px;
    font-size: 25px;
    top: 5%;
    left: 37%;
    z-index: 100;
    
    }

    .scroll__text.first {
    position: static;
    text-align: center;
    width: auto;
    }
    
    
    @media screen and (min-width: 1700px) {
    .scroll__text {
      left: 47%;
    }
    }
    
    @media screen and (min-width: 1900px) {
    .scroll__text {
      left: 57%;
    }
    }
    
    @media screen and (min-width: 2000px) {
    .scroll__text {
      left: 67%;
    }
    }
    
    @media screen and (min-width: 1700px) {
    .scroll__heading {
      left: 37%;
    }
    }
    
    @media screen and (min-width: 1900px) {
    .scroll__heading {
      left: 47%;
    }
    }
    
    @media screen and (min-width: 2000px) {
    .scroll__heading {
      left: 67%;
    }
    }
    .scroll-wrap {
    position: relative;
    }
    
    .scroll-wrap--item--2 {
    
    }
    
    @media screen and (min-width: 1900px) {
    /* .scroll-wrap--item--2 {
      width: 33%;
    
    
    } */
    }
    
    
    .scroll-wrap--item--2 .second {
    width: 37%;
    }
    .scroll__text {
    position: absolute;
    
    text-align: center;
    width: 300px;
    font-size: 25px;
    top: 5%;
    left: 37%;
    z-index: 100;
    
    }
    
    
    @media screen and (min-width: 1700px) {
    .scroll__text {
      left: 47%;
    }
    }
    
    @media screen and (min-width: 1900px) {
    .scroll__text {
      left: 50%;
    }
    }
    
    @media screen and (min-width: 1920px) {
    .scroll__text {
      left: 67%;
      top: 2%;
    }
    }
    
    @media screen and (min-width: 1920px) {
    .scroll__text.second {
      left: 37%;
      top: 2%;
    }
    }


.hero__content-text h1 {
    font-size: clamp(35px, 4vw, 130px);
}

.hero__bloc-video .hero__content-video {
    font-size: clamp(40px, 5vw, 92px);
}

.hero__bloc-video .hero__content-video .hero__content-button button {
    font-size: clamp(16px, 1.5vw, 20px);
}

.scroll__heading {
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 400;
}

.scroll__text {
    font-size: clamp(25px, 2.5vw, 34px);
}



.contact__heading {
    font-size: clamp(18px, 3vw, 43px);
}


.contact__sub-heading {
    font-size: clamp(16px, 2vw, 60px);
}

.scroll-heading--mob--1 {
    font-size: clamp(27px, 2.8vw, 38px);
}


@media screen and (min-width: 768px) {
    .scroll__heading {
        font-size: clamp(45px, 3vw, 50px);
    }

    .hero__content-text h1 {
        font-size: clamp(45px, 4vw, 130px);
    }

    .contact__heading {
        font-size: clamp(25px, 3vw, 43px);
        max-width: 80%;
    }

    .contact__heading {
        font-size: clamp(39px, 4vw, 60px);
        max-width: 100%;
        margin-bottom: 50px;
    }

    .scroll-heading--mob--1 {
        font-size: clamp(35px, 2.8vw, 38px);
    }
  }

  @media screen and (min-width: 1200px) {
    .scroll__text.second {
        font-size: clamp(45px, 3vw, 60px);
    }
  }



.scroll__video-wrap.scroll__video-wrap--second {
     height: 90vh; 
}

