@font-face {
    font-family: heading;
    src: url(./vEFF2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6kDXr4.ttf);
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body,html {
    font-family: "Source Serif 4";
    height : 100%;
    width: 100%;
    background-color: white;
  }

  main{
    width: 100%;

  }

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

  .heroContainer nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 11vh;
    padding: 0 3.4vw;
    position: relative;
    z-index: 1;

  }

  .left {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  /* .links{
    width: 35%;
    display: flex;
    gap: 2vw;
    font-weight: 600;
    font-size: 1vw;
    align-items: flex-start;
    justify-content: center;

  } */

  .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right button {
    padding: 12px 18px;
    font-weight: 600;
    border: none;
    background-color: black;
    color: white;
    border-radius: 50px;
    font-size: 12px;
    margin: 0 10px;
}

.right button:nth-child(1) {
    background-color: transparent;
    color: black;
}

.links h4:hover,
.links h4.active {
    color: black;
    border-bottom: 3px solid black;
    cursor: pointer;
}

#menu-icon {
  display: block;
  font-size: 2.1rem;
}

.links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 20%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-top-right-radius: 1rem;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  display: none;
}

.links h4 {
  display: block;
  font-size: 1rem;
  margin: 1rem 0;
  color: rgb(37, 35, 35);
}

.links.active {
  display: block;
}


.content {
    height:45vh;
    width: 100;
    padding-top: 50px;
}

.content h3 {
    background-color: #F2B0EA;
    width: fit-content;
    border-radius: 40px;
    padding: 0.2rem 1rem;
    justify-self: center;
    font-weight: 100;
}

.content h1 {
    font-size: 50px;
    line-height: 0.8;
    text-align: center;
    font-weight: 100;
    margin: 10px 0;

}

.content h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.content button {
    padding: 12px 18px;
    font-weight: 600;
    border: none;
    background-color: black;
    color: white;
    border-radius: 50px;
    font-size: 12px;
    margin: 0 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 12px 0;
}

  .scrollerContainer{
    display: flex;
    overflow-x:hidden ;
    gap: 26px;
    flex-wrap: nowrap;
  }

  .scroller{
    width: fit-content;
    flex-shrink: 0;
    height: calc(100vh - 56vh);
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    padding: 0.5vw;
    overflow: hidden;
    animation: anime;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .scroller .elem{
    flex-shrink: 0;
    width: 22vw;
    height: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 3vw;
    overflow: hidden;
    position: relative;
  }

  .overlay{
    height: 40%;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 1vw  1.2vw;
    color: white;
    font-weight: 500;
  }

  .overlay p{
    font-size: 1.5vw;
    font-weight: 500;
  }

  .overlay div{
    margin-top: 1.7vw;
  }

  .overlay span{
    padding: 0.5vw 1vw;
    border: 0.5px solid white;
    font-size: 1vw;
    border-radius: 3vw;
  }

  @keyframes anime {
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(calc(-100% - 30px));
    }
  }

  .scroller .elem img, .scroller .elem video{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  /* Explore Page  */

  section{
    width: 100%;
    padding: 4vw 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section h2{
    font-size: 4vw;
    font-weight: 200;
    text-align: center;
    margin-bottom: 4vw;
  }

  section .box{
    width: 26vw;
    height: 25vw;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    margin: 12px;

  }

  .hover{
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(rgba(255, 254, 254, 0),rgb(2, 2, 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 1.2vw 0.2vw 1.2vw;
    opacity: 0;
    transition: all linear 0.2s;
  }

  section .box .boxImg:hover .hover{
    opacity: 1;
  }

  .hover h6{
    font-size: 1.52vw;
    color: white;
    font-weight: 100;
  }

  .hover i{
    background-color: white ;
    padding: 10px 12px;
    border-radius: 50%;
  }

  section .box .boxImg{
    width: 100%;
    height: 85%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  section .box .boxImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  section .box .boxFooter{
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4e4e4e;
  }

  section .box .boxFooter img{
    width: 1.8vw;
    border-radius: 50%;
  }

  .boxFooter i{
    font-size: 1.1vw;
  }

  section .box .boxFooter p{
    font-size: 1vw;
    color: black;
  }

  #pro{
    background-color: #828282;
    color: white;
    font-size: 1vw;
    padding: 0.5vw;
    border-radius: 12px;
  }

  #explore{
    padding: 12px 18px;
    font-weight: 600;
    border: none;
    background-color: black;
    color: white;
    border-radius: 50px;
    font-size: 12px;
    margin: 0 10px;
  }

  .footerScroller{
    width: 100%;
    height: 40vh;
    padding: 1.5vw;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow: hidden;
  }

  .wrapper{
    width:fit-content  ;
    height: 100%;
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    animation-name: marquee;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  @keyframes marquee {
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(calc(-100% - 34px));
    }
  }

  .wrapperContainer{
    width: 20vw;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;

  }

  .wrapperContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  footer{
    width: 100%;
    height: 20vh;
    margin-top: 2vw;
    padding: 2vw 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-part1{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-part1 img{
    height: 3vw;
    margin-top: 10px;
  }

  .footer-part1 .icons i{
    font-size: 1.8vw;

  }

  .footer-part1 div{
    display: flex;
    gap: 2vw;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-part1 div a{
    color: black;
    text-decoration: none;
    font-size: 1.2vw;
  }

  .footer-part2{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-part2 div{
    display: flex;
    gap: 1vw;
    font-size: 1.3vw;
    color: #3a3737;
  }
