* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  color: #555;
}
nav,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 35px 100px 0px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.header h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 16px;
}
.header nav {
  display: flex;
}
.header nav li {
  margin: 0px 15px;
}
.header nav li:first-child {
  margin: 0px;
}
@media (max-width: 1000px) {
  .header {
    padding: 20px 50px;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
  }
  .header h3 {
    font-size: 18px;
  }
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 50px;
}
@media (max-width: 600px) {
  section {
    padding: 80px 30px;
  }
}
.hero-section {
  position: relative;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}
.hero-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-section h1 {
  margin-bottom: 37px;
  font-size: 60px;
  font-weight: bolder;
  color: black;
}
.hero-section .browse-all-places {
  color: white;
  border-radius: 4px;
  background-color: #ff2495;
  font-weight: 800;
  text-align: center;
  padding: 20px 45px;
  font-size: 30px;
  transition: color 2s ease-in, background-color 2s ease-out;
}
.hero-section .browse-all-places:hover {
  background-color: black;
  color: white;
  transform: scale(1.1);
}
@media (max-width: 800px) {
  .hero-section {
    min-height: 600px;
  }
  .hero-section h1 {
    font-size: 45px;
  }
  .hero-section .browse-all-places {
    padding: 15px, 40px;
  }
}
@media (max-width: 450px) {
  .hero-section h1 {
    font-size: 30px;
  }
  .hero-section .browse-all-places {
    padding: 12px, 30px;
    font-size: 20px;
  }
}
section h3.title {
  color: #1f2325;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
  text-transform: capitalize;
}
section p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 20px;
  line-height: 2;
}
.our-popular-places .Popular-places-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.our-popular-places .Popular-places-grid li {
  height: 350px;
  padding: 20px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: #333333;
  background-clip: content-box;
}
.our-popular-places .Popular-places-grid li.special-img-class-small {
  flex-basis: 40%;
}
.our-popular-places .Popular-places-grid li.special-img-class-large {
  flex-basis: 60%;
}
hr {
  width: 150px;
  height: 3px;
  background-color: #f5208e;
  font-weight: 800;
  margin-bottom: 35px;
}
@media (max-width: 1000px) {
  .our-popular-places .Popular-places-grid li.special-img-class-small,
  .our-popular-places .Popular-places-grid li.special-img-class-large {
    flex-basis: 100%;
  }
}
.our-destinations .our-destinations-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.our-destinations .our-destinations-grid li {
  padding: 0px, 30px;
  flex-basis: 33%;
  text-align: center;
}
.our-destinations .our-destinations-grid li i {
  font-size: 50px;
  color: #fd339b;
  margin-bottom: 25px;
  cursor: pointer;
}
.our-destinations .our-destinations-grid li h4 {
  color: #555555;
  font-size: 20px;
  margin-bottom: 25px;
}
.our-destinations .our-destinations-grid li p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1000px) {
  .our-destinations.our-destinations-grid li {
    flex-basis: 70%;
    margin-bottom: 60px;
  }
  .our-destinations.our-destinations-grid li:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 600px) {
  .our-destinations .our-destinations-grid li {
    flex-basis: 100%;
  }
}
.subscription {
  background-color: #f5f4f4;
}
.subscription form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  width: 80%;
}
.subscription form input {
  padding: 15px;
  flex: 1;
  margin-right: 25px;
  font-size: 18px;
  color: #555555;
}
.subscription form .subscribtion-btn {
  color: white;
  border-radius: 4px;
  background-color: #ff2495;
  font-weight: 800;
  text-align: center;
  padding: 12px 42px;
  font-size: 30px;
  transition: color 2s ease-in, background-color 2s ease-out;
}
.subscription form .subscribtion-btn:hover {
    background-color: black;
    color: white;
    transform: scale(1.1);
  }
  @media(max-width:800px){
      .subscription form input{
            flex-basis: 100%;
            margin: 0px 0px 20px 0px;
      }
  }
  header nav li{
      font-weight: bold;
      font-size: 18px;
  }