*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Arial, Helvetica', sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}
:root{
  --bg-color: #fcddd2;
  --text-color: #fceffc;
  --second-color: #00ff00;
  --main-color: #ccc;
  --big-font: 3.5rem;
  --h2-font: 2.2rem;
  --p-font: 1.1rem;
}
body{
  background: var(--bg-color);
  color: var(--text-color);
}
header{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 29px 18%;
  transition: ease .40s;
}
.logo{
  background-image: url(../_img/neptun-fly-logo.png);
  background-repeat: no-repeat;
  height: 56px;
  width: 380px;
}
.navbar{
  display: flex;
}
.navbar a{
  color: var(--text-color);
  font-size: var(--p-font);
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: ease .40s;
}
.navbar a:hover{
  background: rgba(255, 255, 255, 0.22);
  color: var(--text-color);
  box-shadow: 5px 10px 29px rgb(85 85 85 / 20%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
#menu-icon{
  z-index: 1001;
  cursor: pointer;
  display: none;
}
.m-icon {
  background-image: url(../_img/menu-icon.png);
  background-repeat: no-repeat;
  height: 27px;
  width: 32px;
}
.close-symbol {
  background-image: url(../_img/close-icon.png);
  background-repeat: no-repeat;
  height: 27px;
  width: 32px;
}

section{
  padding: 80px 18%;
}
.home{
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../_img/neptun-fly.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
.home-text{
  padding: 14px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.2);
}
.home-text h1{
  font-size: var(--big-font);
  line-height: 1.2;
  margin-bottom: 20px;
}
.text h2{
    color: #787198;
    line-height: 1.1;
}
.home-text p{
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 50px;
}
.home-btn{
  display: inline-block;
  border-radius: 14px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid var(--text-color);
  padding: 15px 29px;
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--text-color);
  transition: ease .40s;
}
.home-btn:hover{
  border: 1px solid var(--text-color);
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
header.sticky{
  background: rgba(227, 187, 190, 0.9);
  padding: 10px 18%;
  box-shadow: rgba(33, 35, 38, 0.2) 0px 10px 10px -10px;
}
.row-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  grid-gap: 2rem;
  align-items: center;
  text-align: center;
  margin-top: 5rem;
}
.container-box{
  color: #797297;
  background: linear-gradient(180deg, transparent, rgba(255, 203, 185, 0.4), transparent);
  border: 1px solid #fceffc;
  padding: 50px 10px;
  border-radius: 8px;
  transition: all 1s ease 0s;
  cursor: pointer;
  box-shadow: 5px 10px 29px rgb(85 85 85 / 20%);
}
.container-img img{
  height: 74px;
  width: 74px;
  border-radius: 11px;
  box-shadow: 5px 10px 29px rgb(85 85 85 / 20%);
  cursor: pointer;
}
.container-box p{
  font-size: 15px;
}
.container-box:hover{
  box-shadow: 5px 29px 56px rgb(55 55 55 / 29%);
  transform: translateY(-4px);
}
.title{
  text-align: center;
}
.title h2{
  line-height: 1.1;
}
.complet{
  color: #787198;
}
.complet-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  grid-gap: 2rem;
  align-items: center;
  margin-top: 5rem;
}
.img-complet{
  position: relative;
  transition: all .2s cubic-bezier(.445,.05,.55,.95);
  will-change: filter;
  cursor: pointer;
}
.img-complet img{
  width: 100%;
  height: auto;
}
.img-complet h4{
  font-size: 18px;
}
.complet-content h4{
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 9px;
}
.complet-content p{
  text-align: center;
}
.stars{
  text-align: center;
}
.img-complet:hover{
  filter: brightness(115%);
  transform: scale(1.04);
}
.dest-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  grid-gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}
.col-content{
  position: relative;
  margin-top: 2rem;
}
.col-content img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  filter: brightness(100%);
  transition: all .2s cubic-bezier(.445,.05,.55,.95);
  will-change: filter;
  margin-bottom: 11px;
}
.destination{
  color: #787198;
}
.col-content h5{
  position: absolute;
  font-size: 16px;
  font-weight: 500;
}
.col-content p{
  position: absolute;
  font-size: 15px;
  letter-spacing: 2px;
}
.col-content img:hover{
  filter: brightness(115%);
  transform: scale(1.04);
  cursor: pointer;
}

.newsletter{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  grid-gap: 2.9rem;
}
.newsletter{
  color: #787198;
}
.news-text h2{
  margin-bottom: 5px;
}
.news-text p{
  line-height: 29px;
}
.newsletter form{
  color: #787198;
  max-width: 100%;
  width: 450px;
  position: relative;
}
.newsletter form input:first-child{
  display: inline-block;
  width: 100%;
  color: #787198;
  padding: 20px 150px 20px 29px;
  box-shadow: 5px 10px 29px rgb(85 85 85 / 20%);
  outline: none;
  border: 1px solid rgb(227, 187, 190);
  border-radius: 15px;
}
.newsletter form input:last-child{
  display: inline-block;
  position: absolute;
  padding: 14px 29px;
  outline: none;
  border: none;
  border-radius: 15px;
  background: rgb(227, 187, 190);
  box-shadow: 5px 5px 5px rgb(85 85 85 / 20%);
  color: var(--bg-color);
  font-weight: bold;
  top: 6px;
  right: 6px;
  cursor: pointer;
}
.newsletter form input:last-child:hover{
  box-shadow: 5px 10px 10px rgb(85 85 85 / 0%);
}

#contact{
  background: rgb(227, 187, 190);
}

.main{
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 11px;
}
.footer{
  padding: 20px 0;
}
.list{
  width: 25%;
}
.list h4{
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}
.list ul li:not(last-child){
  margin-bottom: 14px;
}
.list ul li a{
  color: #ffffffbf;
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
  display: block;
  transition: .4s;
}
.list ul li a:hover{
  color: #ffffffbf;
  transform: translateX(15px);
  font-weight: bold;
}
.list .social a{
  width: 47px;
  height: 47px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  padding-top: 1px;
  align-items: center;
  justify-content: center;
  vertical-align: bottom;
  border-radius: 11px;
  border: 1px solid #fff;
  box-shadow: 5px 10px 10px rgb(85 85 85 / 10%);
  filter: brightness(110%);
  transition: .4s;
}
.list .social a:hover{
  border: 1px solid #fff;
  filter: brightness(100%);
}

.dp-text{
  text-align: center;
  padding-top: 9px;
}
.dp-text p{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 1180px) {
  header{
    padding: 17px 3%;
    transition: .2s;
  }
  header.sticky{
    padding: 10px 3%;
    transition: .2s;
  }
  section{
    padding: 80px 3%;
    transition: .2s;
  }
}

@media (max-width: 1024px) {
  header{
    padding: 17px 3%;
    transition: .2s;
  }
  header.sticky{
    padding: 10px 3%;
    transition: .2s;
  }
  section{
    padding: 80px 3%;
    transition: .2s;
  }
  :root{
    --big-font: 2rem;
    --h2-font: 1.5rem;
    --p-font: 1rem;
    transition: .2;
  }
  #menu-icon{
    display: block;
  }
  .home{
    height: 88vh;
  }
  .navbar{
    position: absolute;
    top: 0;
    right: -100%;
    width: 270px;
    height: 120vh;
    background: rgba(227, 187, 190, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 29px;
    transition: 0.5s all;
  }
  .navbar a{
    display: block;
    margin: 1.2rem 0;
  }
  .open{
    right: 0;
  }
  .list{
    width: 50%;
    margin-bottom: 12px;
  }
}

@media (max-width: 844px){
  .home-text p{
    margin-bottom: 18px;
  }
}

@media (max-width: 670px){
  .home-text p{
    margin-bottom: 10px;
  }
  .list{
    width: 100%;
  }
  .newsletter form{
    width: 350px;
  }
  :root{
    --big-font: 2rem;
    --h2-font: 1rem;
    transition: .2;
  }
  .text{
    text-align: center;
  }
  .home{
    height: 85vh;
    transition: .2s;
  }
}


@media (max-width: 430px){
  .logo {
    background-image: url(../_img/neptun-fly-logo-small0.png);
    background-repeat: no-repeat;
    height: 53px;
    width: 360px;
  }
}

@media (max-width: 412px){
  .logo {
    background-image: url(../_img/neptun-fly-logo-small1.png);
    background-repeat: no-repeat;
    height: 50px;
    width: 342px;
  }
}

@media (max-width: 280px){
  header{
    transition: .1s;
  }
  header.sticky{
    transition: .1s;
  }
  section{
    transition: .1s;
  }
  .logo {
    background-image: url(../_img/neptun-fly-logo-small2.png);
    background-repeat: no-repeat;
    height: 29px;
    width: 200px;
 }
 .m-icon{
   margin-right: 75px;
 }
}
