*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
        overflow-x: hidden !important;
}

body {    
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;    
    font-style: normal;    
        overflow-x: hidden !important;
}

.wrapper {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
     align-items: start; /* ensures each grid item keeps its own height */
}

.col {
    /* padding: 32px; */
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
}

.img-fluid {
    width: 100%;
    object-fit: cover;
    height: 100%;

}

.col--right {        
    position: relative;    
    overflow: visible;
}

.sticky {
    
   width: 100%;
    height: 100vh;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
}

.btn-ames {
    position: fixed;
    left: 25%;
    top: 50%;
    transform: translate(-25%,-50%);
    font-size: 18px;
}

.btn-lia {
    font-size: 15px;
    position: absolute;
    left: 50%;
    top: calc(50% + 80px);
    transform: translate(-50%,-50%);
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.btn-lia .text {
    background-color: #000;
    display: inline-block;
    z-index: 5;
}

.loader {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  /* margin:15px auto; */
  position: relative;
  color: #FFF;
  left: -100px;
  box-sizing: border-box;
  animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 white, 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 white, 120px 0 white, 110px 0 white, 100px 0 white;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white, 110px 0 white;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}

.note {
    position: absolute;
    /* left: 32px;
    bottom: 32px; */
    font-size: 24px;
    /* font-family: "Dynalight", cursive; */
     left: 50%;
    top: calc(50% + 130px);
    transform: translate(-50%,-50%);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
}


.col--right.fixed {
    position: fixed;
    left: 50%;
    width: 50%;
}

#logo-wrapper {
    position: fixed;
    display: flex;
    gap: 40px;
    left: 32px;
    bottom: 32px;
    
    width: 100%;
    filter: drop-shadow(0px 3px 25px rgba(0,0,0,0.6));
}

#logo-ames,
#logo-ames2 {
 max-width: 140px;
}

#logo-lia {
    position: absolute;
    filter: invert(1);
    max-width: 500px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 1100px) {
    #logo-lia { 
        max-width: 300px;
    }
    .btn-lia {    
        top: calc(50% + 70px);    
}

.note {
    top: calc(50% + 120px);
}
}
@media (max-width: 1000px) {
    .col--left {
        height: 100vh;
    }
    .img-fluid{ 
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width:  992px) {
    .wrapper {    
        
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100svh;
    }
    #logo-wrapper{
      justify-content: center;
    }
    #logo-lia {
        left: unset;
        transform: translate(0);
        top: unset;
        position: relative;
        margin-bottom: 10px;
        max-width: 340px;        
        display: inline-block;
    }
    .img-fluid  {
        object-fit: contain;
        height: auto;
    }
    #logo-wrapper {
      
        position: absolute;
        left: 20px;
        bottom: 20px;
        margin-bottom: 20px;
    }
    #logo-ames,
    #logo-ames2 {
        max-width: 120px;
    }
  .col--right {
    height: auto;
  }
    .col--left,
    .col--right {
        width: 100%;
        flex: 0 0 100%;
        display: flex;
        align-items: flex-end;        
    }    
    .note {
        font-size: 20px !important;
    }
      .col--left .btn-ames {
        margin-top: auto;
        margin-bottom: auto;
        position: absolute;
          left: 50%;        
        transform: translate(-50%,-50%);
        font-size: 16px;
      }
    .note { 
        position: relative;
        bottom: unset;
        left: unset;
        transform: translateX(0);
    }
    .sticky{
        padding-top: 80px;
        padding-bottom: 80px;
        height: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .btn-lia {
        position: relative;
        left: unset;
        top: unset;
        transform: translate(0);
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
  #logo-lia {
    max-width: 250px;  
  }
 #logo-ames,
 #logo-ames2 {
    max-width: 100px;
 }
   
}