*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: cursive;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
.container{
  max-width: 1320px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.header{
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.header img{
  position: absolute;
}
.header__fantasy{
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}
.header__nav{
  padding: 20px 0;
}
.header__nav .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__list{
  display: flex;
  gap: 30px;
}
.header__logo{
  font-size: 40px;
  color: white;
}
.header__link{
  font-size: 25px;
  color: white;
  text-transform: capitalize;
}
.header__cloud{
  mix-blend-mode: overlay;
}

.cloud1{
  top: 15%;
  left: 5%;
}
.cloud2{
  top: 15%;
  left: 65%;
}
.cloud3{
  top: 15%;
  left: 42%;
}
.header__boat{
  top: 80%;
  left: 40%;
}

.header__title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  color: white;
  flex-grow: 1;
}
.sroll__cards{
  display: flex;
  justify-content: space-between;
}
.scroll__card{
  width: 255px;
  height: 255px;background: black;
  border-radius: 15px;
}
.about{
  padding: 50px 0;
}
.scroll__card{
  transform: translate3d(-200px, 0, 0 );
  opacity: 0;
}
.active{
  transform: translate3d(0, 0, 0 );
  opacity: 1;
}
.parallax{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.parallax__title{
  font-size: 70px;
  text-align: center;
}
.parallax__box{
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
.parallax__box img{
  position: absolute;
}
.parallax__banner{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layer1{
  top: 15%;
  left: 15%;
}
.layer2{
  top: 15%;
  left: 80%;
}
.timer{
  padding: 50px 0;
}
.timer .container{
  display: flex;
  justify-content: space-between;
}
.timer__item{
  width: 250px;
  height: 250px;
  background: rgb(70, 70, 70);
  box-shadow: 5px 5px 5px #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
}
.timer__num{
  font-size: 30px;
}
.timer__btn{
  position: relative;
  display: block;
  max-width: 155px;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background: white;
  z-index: 1;
  overflow: hidden;
}
.timer__btn span{
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-radius: 50%;
  background: rgb(69, 120, 214);
  transition: .4s;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.cards{
  padding: 50px 0;
}
.cards .container{
  display: flex;
  justify-content: space-between;
}
.card__item{
  width: 250px;
  height: 250px;
  background: cornflowerblue;
  border-radius: 15px;
}
.card{
  perspective: 700px;
  transition: 0.4s;
}

.timer__btn:hover{
  color: white;
}
.timer__btn:hover span{
  width: 330px;
  height: 330px;
}

.header__menu{
  position: relative;
  width: 30px;
  height: 20px;
  display: none;
}
.header__menu.active::before{
  transform: rotate(45deg);
  top: 9px;
}
.header__menu.active::after{
  transform: rotate(-45deg);
  bottom: 9px;
}
.header__menu.active span{
  transform: scale(0);
}
.header__menu::before,
.header__menu::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
  transition: .3s;
}
.header__menu::before{
  top: 0;
}
.header__nav span{
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
  top: 9px;
  transition: .3s;
}
.header__menu::after{
  bottom: 0;
}

@media (max-width: 1100px) {
  .header__menu{
    display: block;
    z-index: 10;
  }
  .header__list{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgba(46, 46, 46, 0.79);
    z-index: 5;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: .4s;
    padding: 30px;
    overflow: auto;
  }
  .header__list.active{
    left: 75%;
  }
}

.header__nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.body.hid{
  overflow: hidden;
}