@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

.wrapper {
  width: 100%;
  padding: 0 30px;
}

@media (max-width: 720px) {
  .wrapper {
    padding: 0;
  }
}

.topnav {
  width: 100%;
  background-color: #fff;
  padding: 0 5px;
}

.topnav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

.topnav nav span {
  font-size: 20px;
  color: #4468E2;
  cursor: pointer;
}

.topnav nav .open-menu {
  font-size: 30px;
  cursor: pointer;
  display: none;
}

.topnav nav .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 60px;
  text-align: center;
}

.topnav nav .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.topnav nav .sidenav a:hover {
  color: #f1f1f1;
}

.topnav nav .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .topnav nav .sidenav {
    padding-top: 15px;
  }
  .topnav nav .sidenav a {
    font-size: 18px;
  }
}

.topnav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 500px;
}

.topnav nav ul li {
  list-style-type: none;
  cursor: pointer;
  color: #1C4961;
  font-size: 22px;
}

.topnav nav ul li:active {
  font-weight: bolder;
}

@media (max-width: 900px) {
  .topnav nav ul {
    width: 400px;
  }
  .topnav nav ul li {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .topnav nav ul {
    display: none;
  }
  .topnav nav .open-menu {
    display: block;
  }
}

.topnav nav button {
  font-size: 19px;
  color: #fff;
  background-color: #4468E2;
  border: 1px solid #6A89EF;
  border-radius: 17px;
  padding: 3px 15px;
  cursor: pointer;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #14296e;
  border-radius: 15px;
}

header .content {
  position: absolute;
  z-index: 2;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  color: #fff;
  z-index: 1;
  text-align: center;
  margin-top: 60px;
}

header .content .text h1 {
  text-transform: uppercase;
  font-size: 3vw;
  font-weight: bold;
}

header .content .text p {
  font-size: 16px;
  line-height: 1.5;
  width: 60%;
  height: 70px;
  overflow: scroll;
  font-weight: 400;
  margin-top: 20px;
}

header .content .text p::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  header .content .text h1 {
    font-size: 3.5vw;
  }
  header .content .text p {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 900px) {
  header .content .text {
    margin-top: 20px;
    width: 100%;
  }
}

header .explore {
  width: 80%;
  padding: 8px 15px;
  border: 1px solid #B4C6EE;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 30px;
}

header .explore .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: -5;
      flex-shrink: -5;
}

header .explore .grid .item {
  width: 23%;
  padding: 0 4px 0 0;
}

header .explore .grid .item h3 {
  font-size: 1.1vw;
}

header .explore .grid .item span {
  font-size: 0.9vw;
}

header .explore .grid .item button {
  background-color: #4468E2;
  padding: 15px 15px;
  border: none;
  color: #fff;
  border-radius: 10px;
  font-size: 1.2vw;
  width: 100%;
}

header .explore .grid .item:nth-child(1) {
  border-right: 0.5px solid #B4C6EE;
}

header .explore .grid .item:nth-child(2) {
  border-right: 0.5px solid #B4C6EE;
}

@media (max-width: 900px) {
  header .explore {
    width: 95%;
    margin-top: 10px;
  }
}

header img {
  width: 100%;
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}

@media (max-width: 720px) {
  header {
    display: none;
  }
}

.features .grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.features .grid .item {
  width: 20%;
  background-color: #fff;
  padding: 15px;
}

.features .grid .item h3 {
  margin: 10px 0 20px 0;
}

.features .grid .item .icon {
  background-color: #f0f4fc;
  border-radius: 10px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  height: 50px;
}

.features .grid .item .icon img {
  width: 80%;
  height: 40px;
}

@media (max-width: 900px) {
  .features .grid .item {
    width: 45%;
  }
}

@media (max-width: 720px) {
  .features .grid .item {
    width: 100%;
  }
}

.destination {
  margin-top: 80px;
}

.destination h2 {
  text-align: center;
  margin: 30px auto;
}

.destination .menu {
  width: 70%;
  border-bottom: 1px solid gray;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
}

.destination .menu ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.destination .menu ul li {
  list-style-type: none;
  font-size: 0.9em;
  font-weight: bold;
  cursor: pointer;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .destination .menu {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .destination .menu {
    display: none;
  }
}

.destination .tours .image-gallery {
  margin: 30px 0 0 -7.5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.destination .tours .image-gallery .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  margin-bottom: 100px;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  padding-left: 15px;
}

.destination .tours .image-gallery .item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.destination .tours .image-gallery .item .text {
  padding-left: 8px;
}

.destination .tours .image-gallery .item .text h3 {
  margin-bottom: 15px;
}

.destination .tours .image-gallery .item img {
  width: 100%;
}

@media (max-width: 768px) {
  .destination .tours .image-gallery .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}

@media (max-width: 540px) {
  .destination .tours .image-gallery .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.blogs .content h2 {
  text-align: center;
  margin: 40px 0;
}

.blogs .content .image-gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blogs .content .image-gallery .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.blogs .content .image-gallery .item img {
  width: 100%;
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.blogs .content .image-gallery .item .desc {
  position: absolute;
  font-size: 32px;
  max-width: 400px;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}

.blogs .content .image-gallery .item:nth-child(1) {
  max-width: 965px;
}

.blogs .content .image-gallery .item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 785px;
}

.blogs .content .image-gallery .item:nth-child(2) .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.blogs .content .image-gallery .item:nth-child(2) .column .desc {
  font-size: 24px;
  width: 300px;
}

@media (max-width: 900px) {
  .blogs .content .image-gallery .item {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .blogs .content .image-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.customers .content h2 {
  text-align: center;
  margin: 60px auto;
}

.customers .content .quoute-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -25px;
  width: 100%;
}

.customers .content .quoute-gallery .quoute {
  padding-left: 40px;
}

.customers .content .quoute-gallery .quoute p {
  width: 90%;
  height: 100px;
  overflow: scroll;
  line-height: 1.5;
}

.customers .content .quoute-gallery .quoute p::-webkit-scrollbar {
  display: none;
}

.customers .content .quoute-gallery .quoute img {
  width: 50px;
}

.customers .content .quoute-gallery .quoute .customer {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customers .content .quoute-gallery .quoute .customer .spans {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.customers .content .quoute-gallery .quoute .customer .spans .profession {
  color: gray;
}

@media (max-width: 720px) {
  .customers .content .quoute-gallery .quoute-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customers .content .quoute-gallery .quoute {
    width: 100%;
  }
  .customers .content .quoute-gallery .quoute p {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .customers .content .quoute-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 20px;
  background-color: #E1E8F8;
  border-radius: 15px;
  margin: 50px 0;
}

footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

footer .content p {
  margin: 20px 30px;
}

footer .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 50px;
  margin: 20px 30px;
}

footer .content ul li {
  list-style-type: none;
  padding: 0 25px;
  cursor: pointer;
}

footer .content .social li {
  padding: 0 10px;
  cursor: pointer;
}

footer .content .social li i {
  background-color: #000;
  padding: 7px 10px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

@media (max-width: 900px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  footer ul {
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ul li {
    padding: 0 10px;
    margin: 10px 0;
  }
  footer p {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */