* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.page-1 {
  position: relative;
  height: 100vh;
}
/* .login {
  display: flex;
  justify-content: space-between;
  padding: 5px 40px;
  position: sticky;
  z-index: 33;
} */

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon a {
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 34px;
  height: 34px;
  color: white;
  margin: 0px 5px;
}
.icon a:hover {
  color: black;
  background-color: white;
}

.register {
  display: flex;
  justify-content: center;
  align-items: center;
}
.register a {
  color: white;
  text-decoration: none;
  padding: 0px 8px;
}
.register a i {
  padding: 0px 8px;
}

#header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 0px 30px;
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
  height: 80px;
  width: 100%;
  z-index: 9999;
}

.logo {
  font-size: 40px;
  color: #13357b;
  margin: 15px;
}
.logo i {
  margin: 0px 5px;
}

.header-section-2 {
  display: flex;
  /* padding-top: 23px; */
}

.header-section-3 {
  display: none;
}
.header-section-3 i {
  font-size: 1.3rem;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .header-section-2 {
    display: none;
  }
  .header-section-3 {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .login {
    display: none;
  }
}
.nav {
  overflow: hidden;
}

.nav-item {
  display: flex;
  justify-content: center;
  color: black;
  height: 80px;
  /* width: 80px; */
  text-decoration: none;
  padding: 26px 10px;
  font-size: x-large;
}

.nav:hover .nav-inner-box {
  transform: translateY(-80px);
  z-index: -1;
}

.nav-inner-box {
  height: 80px;
  background-color: #13357b;
  position: relative;
  transition: 0.5s;
  padding: 26px 20px;
}
.nav:hover .nav-item {
  color: white;
}

.nav-home {
  background-color: #13357b;
  color: white;
}

.button {
  overflow: hidden;
  height: 40px;
  margin-top: 19px;
  margin-left: 19px;
  border: 0.5px solid #13357b;
  text-decoration: none;
  position: relative;
  padding: 8px 20px;
  border-radius: 28px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.btn-hover {
  height: 43px;
  width: 140px;
  position: absolute;
  margin-top: -33px;
  margin-left: -21px;
  border-radius: 28px;
  background-color: #13357b;
  color: white;
  z-index: -1;
  transition: 0.3s;
}

.button:hover .btn-hover {
  transform: translateX(140px);
}
.button:hover {
  color: #13357b;
}

/* small screen header */

.smScreen-hdr {
  /* display: flex; */
  flex-direction: column;
  padding: 10px 0px;
  width: 100%;
  position: absolute;
  background-color: #f2f2f2;
  display: none;
  transition: margin-top 0.5s ease;
  z-index: 30;
  margin-top: -382px;
}
.smScreen-hdr.show {
  position: fixed;
  top: 80px;
  margin-top: 0px;
}
.smNav {
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
  color: black;
}
.smNav:hover {
  color: #13357b;
}

.smNav1 {
  color: #13357b;
}
.sm-btn {
  width: 140px;
  z-index: 2;
}

/* **********Button************ */

a.animated-button {
  /* padding: 13px 31px; */
  z-index: 20;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #13357b;
  text-decoration: none;
  cursor: pointer;
  display: block;
  position: relative;
  border: 1px solid #13357b;
  border-radius: 28px;
  /* transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1); */
  transition: 0.3s;
  overflow: hidden;
}
a.animated-button:hover {
  color: #13357b;
 
}
a.animated-button:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
  border-radius: 25px;
  z-index: -1;
}
a.animated-button:before {
  /* border-radius: 25px; */
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  color: #000 !important;
  background: #fff;
  transition: 0.3s;
}

.home {
  height: 87%;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url("https://themewagon.github.io/travela/img/carousel-3.jpg");
  background-size: cover;
}
.home-bg {
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0px;
}
.home-img {
  height: 100vh;
  width: 1000px;
  margin-top: -128px;
  position: relative;
  z-index: -1;
}

.home-content {
  /* border: 2px solid black; */
  position: absolute;
  top: 4%;
  width: 100%;
  height: 67%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
}

.explore {
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.you-like {
  font-size: 4.5rem;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .you-like {
    font-size: 2.5rem;
  }
}
.lorem {
  font-size: 1.25rem;
  margin-bottom: 20px;
  max-width: 1000px;
  text-align: center;
  line-height: 2rem;
  padding: 15px;
}
.home-content-btn {
  overflow: hidden;
  height: 48px;
  padding-top: 10px;
}
.btn {
  color: #13357b;
  background-color: white;
}

.home-button {
  z-index: 1;
  right: 0px;
}

.home-search {
  display: flex;
  justify-content: center;
}
.home-search-inner {
  width: 85%;
  justify-content: center;
  align-items: center;
  margin-top: -75px;
  position: absolute;
  background: rgba(19, 53, 123, 0.8);
  border-radius: 50rem;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  z-index: 21;
}

.home-search-inner input {
  height: 50px;
  width: 100%;
  border-radius: 50rem;
  border: none;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.search-btn {
  position: absolute;
  right: 55px;
  top: 33px;
  /* width: 105px; */
  color: white;
  z-index: 2;
}
.search-btn-hover {
  position: absolute;
  color: white;
}

.page-2 {
  width: 100%;
  margin-top: 200px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.page-2-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 88%;
}
.page-2-img {
  width: 40%;
  height: 95%;
  /* border: 50px solid; */
  /* border-color: transparent #13357b transparent #13357b; */
}
.page-2-img img {
  width: 100%;
  height: 100%;
}

.page-2-content {
  width: 55%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("https://themewagon.github.io/travela/img/about-img-1.png");
  /* z-index: -1; */
  margin: 50px 0px;
}
.page-2-content::before {
  content: " ";
}
.page-2-content h5 {
  color: #13357b;
  font-size: 1.25rem;
  padding: 20px 0px;
}
.page-2-content h5 span {
  letter-spacing: -2px;
}

.page-2-content h1 {
  font-family: "Jost", sans-serif;
  margin-bottom: 1.5rem;
}
.page-2-content h1 span {
  color: #13357b;
}
.page-2-content p {
  margin-bottom: 1.5rem;
}

.page-2-boxes {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.box {
  width: 50%;
  height: 37px;
}
.box i {
  color: #13357b;
  margin-right: 5px;
}

.page-2-btn {
  z-index: 3;
  /* width: 100px; */
}
.page2-btn {
  width: 170px;
}

.page-2-btn-hover {
  width: 145px;
  margin-left: 20px;
  /* z-index: 2; */
}

.page-3 {
  width: 100%;
  background-color: #f2f2f2;
}

.page-3-main {
  max-width: 1500px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.services {
  max-width: 1020px;
  width: 90%;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.25rem;
}
.services h1 {
  font-weight: 500;
  line-height: 1.2;
  color: #14141f;
}

.section-title {
  padding-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: #13357b;
}

.section-title::before {
  content: "";
  width: 40px;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid #13357b;
}

.section-title::after {
  content: "";
  width: 40px;
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid #13357b;
}

.page-3-section-2 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.page-3-box1 {
  width: 48%;
}

.page-3-item1 {
  width: 97%;
  margin: 10px;
  padding: 20px;
  background-color: white;
  border: 1px solid #13357b;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
}

.page-3-item1-h5 {
  text-align: end;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.page-3-item1-p {
  text-align: end;
  color: gray;
  line-height: 1.5rem;
}
.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon i {
  color: #13357b;
  padding: 1.5rem;
  font-size: 4em;
}

.page-3-h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.page-3-p {
  color: gray;
  /* margin-bottom: 1.5rem; */
  line-height: 1.5rem;
}

.page-3-item1:hover {
  background-color: #13357b;
}
.page-3-item1:hover .page-3-item1-h5 {
  color: white;
}
.page-3-item1:hover .page-3-item1-p {
  color: white;
}
.page-3-item1:hover .service-icon i {
  color: white;
}
.page-3-item1:hover .page-3-h5 {
  color: white;
}
.page-3-item1:hover .page-3-p {
  color: white;
}

.page-3-box3 {
  margin: 2rem;
}

.page-4-main {
  max-width: 1500px;
}
.page-4-services {
  max-width: 100%;
}
.list {
  width: 90%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  list-style: none;
  margin: 1rem;
  line-height: 1.5rem;
}
.list-item {
  font-size: large;
  border: 0.5px solid #13357b;
  background-color: #f2f2f2;
  padding: 8px 0px;
  width: 140px;
  border-radius: 40px;
  margin: 20px;
  text-decoration: none;
  color: black;
}

.list-item-1 {
  background-color: #13357b;
  color: white;
}

.page-4-section-2 {
  width: 95%;
  grid-gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.page-4-box {
  /* height: 20rem; */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.page-4-box-3 {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  /* height: 620px; */
}

.page-4-box img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-4-box1 {
  padding: 20px;
  color: white;
  transition: 1s;
  position: absolute;
  z-index: 2;
}
.page-4-box1 h2 {
  padding-top: 20px;
}
.page-4-box1 p {
  padding: 20px;
}

.page4-btn {
  padding: 10px 29px;
}

.image {
  transition: 1s;
}
.blue {
  width: 100%;
  height: 100%;
  background: rgba(19, 53, 123, 0.4);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 1s;
}

.page-4-box:hover .page-4-box1 {
  transform: translateY(-180px);
}
.page-4-box:hover .image {
  scale: 1.2;
}
.page-4-box:hover .blue {
  z-index: 1;
}

@media screen and (max-width: 450px) {
  .page-4-section-2 {
    display: flex;
    flex-wrap: wrap;
  }
}

.page-5-items {
  width: 71%;
  margin: 0px auto;
  padding: 20px;
  font-size: large;
}

.page-5-list {
  width: 300px;
  margin-bottom: 10px;
  font-size: 16px;
}

.page-5-section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  width: 90%;
}
.page-5-box1 {
  /* border: 2px solid red; */
  position: relative;
  display: flex;
  /* justify-content: center; */
  overflow: hidden;
  border-radius: 11px;
  width: 31%;
}
.page-5-img1 {
  border-radius: 11px;
  width: 100%;
  transition: 0.5s;
}

.box1-content {
  border-radius: 11px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  z-index: 2;
}
.box1-content p {
  margin: 10px;
  margin-bottom: 30px;
}
.page-5-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-78%, -80%);
  transition: 0.5s;
  opacity: 0;
}
.text-white {
  color: #fff;
}

.offer {
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 22px 40px 0px 80px;
  color: white;
  z-index: 4;
}
.offer p {
  font-size: 20px;
  padding: 20px;
}
.off-1 {
  background-color: #0dcaf0;
}
.off-2 {
  background-color: #ffc107;
}

.page-5-box1:hover .blue {
  z-index: 1;
}
.page-5-box1:hover .page-5-img1 {
  scale: 1.2;
}
.page-5-box1:hover .page-5-logo {
  opacity: 1;
  z-index: 2;
}

.page-6-main {
  max-width: 97%;
}

.page-6-box1 {
  border-radius: 11px;
  overflow: hidden;
  width: 31%;
}

.page-6-img {
  overflow: hidden;
  /* height: 370px; */
  position: relative;
}

.page-6-img img {
  width: 100%;
  transition: 0.5s;
}

.page-6-img img:hover {
  scale: 1.2;
}

.img-items {
  display: flex;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 3px;
  background: rgba(0, 0, 0, 0.3);
}

.img-item1 {
  padding: 10px 0px;
  font-size: 18px;
  border: 1px solid white;
  color: white;
  flex: 1 1 auto;
}

.page-6-boxcont {
  background-color: #f2f2f2;
  padding: 20px;
}
.page-6-boxcont i {
  color: #13357b;
}
.page-6-boxcont p {
  padding: 12px 0px;
  color: #757575;
  font-size: large;
  line-height: 1.4rem;
}

.page-6-readmore {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #13357b;
  color: white;
  font-size: large;
  font-weight: 600;
  cursor: pointer;
}
.page-6-readmore p:hover {
  color: #757575;
}

.page-7-main {
  width: 98%;
  max-width: 1750px;
}

.page-7-section2 {
  width: 100%;
  gap: 8px;
}

.page-7-box1 {
  width: 100%;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plus {
  font-size: xx-large;
  color: #fff;
}

.page-4-box:hover .page-7-box1 {
  transform: translateY(-135px);
}

.page-4-box:hover .page-5-logo {
  opacity: 1;
  z-index: 2;
}

.page-7-item1,
.page-7-item3,
.page-7-item5,
.page-7-item6,
.page-7-item8,
.page-7-item10 {
  width: 16.6666666667%;
  height: 300px;
}
.page-7-item2,
.page-7-item4,
.page-7-item7,
.page-7-item9 {
  width: 23%;
  height: 300px;
}
.page-7-bg {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.page-8 {
  height: auto;
  width: 100%;
  background: linear-gradient(rgba(14, 34, 73, 0.8), rgba(19, 53, 123, 0.8)),
    url("https://themewagon.github.io/travela/img/tour-booking-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 5rem;
  position: relative;
}
.page-8-main {
  display: flex;
  /* align-items: center; */
}
.page-8-section1 {
  width: 50%;
  padding: 55px;
}
.page-8-section1 h1 {
  font-size: 40px;
  margin-bottom: 25px;
}
.page-8-section-title {
  font-size: x-large;
  display: inline-block;
  position: relative;
  width: 125px;
  padding: 15px 0px;
}
.page-8-section-title::before {
  content: "";
  width: 56px;
  position: absolute;
  top: 42%;
  /* left: 12%; */
  right: 0;
  transform: translateY(-50%);
  margin-right: -63px;
  border: 1px solid white;
}
.page-8-items {
  /* font-size: 18px; */
  line-height: 1.3rem;
  margin: 30px 0px;
}

.booking-form h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.booking-form p {
  font-size: 16px;
  margin-bottom: 30px;
}

.booking-form p span {
  color: #ff0;
}

a.animated-button-3 {
  padding: 13px 31px;
  width: 170px;
  z-index: 20;
  font-size: 20px;
  font-weight: 600;
  color: #13357b;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 28px;
  transition: 0.3s;
  overflow: hidden;
}
a.animated-button-3:hover {
  color: #fff;
  border: 1px solid #fff;
  /* background-color: transparent; */
  /* text-shadow: nthree; */
  /* border-radius: 28px; */
}
a.animated-button-3:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
  border-radius: 25px;
  background-color: #13357b;
  z-index: -1;
}
a.animated-button-3:before {
  /* border-radius: 25px; */
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  background: #13357b;
  transition: 0.3s;
}

.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group input,
.form-group select {
  width: 48%;
  height: 50px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  /* margin-bottom: 10px; */
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: none;
  border-radius: 10px;
}

/* .book-now-btn {
  background-color: #13357b;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  font-size: 20px;
} */

a.animated-button-2 {
  padding: 13px 31px;
  z-index: 20;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #13357b;
  text-decoration: none;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #13357b;
  border-radius: 10px;
  /* transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1); */
  transition: 0.5s;
  overflow: hidden;
}
a.animated-button-2:hover {
  color: #13357b;
  /* background-color: transparent; */
  /* text-shadow: nthree; */
  /* border-radius: 28px; */
}
a.animated-button-2:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
  border-radius: 10px;
  z-index: -1;
}
a.animated-button-2:before {
  /* border-radius: 25px; */
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  color: #000;
  background: #fff;
  transition: 0.5s;
}

.page-10 {
  height: auto;
  width: 100%;
  background: linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
    url("https://themewagon.github.io/travela/img/carousel-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 3rem;
  position: relative;
}
.page-10-services h1 {
  color: #ffffff;
}
.page-10-services h5 {
  color: #ffffff;
  font-size: 25px;
}
.page-10-services .section-title::after {
  content: "";
  width: 40px;
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid #ffffff;
}

.page-10-services .section-title::before {
  content: "";
  width: 40px;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid #ffffff;
}

/* .page-10-search{
    width: 85%;
    justify-content: center;
    align-items: center;
    margin-top: -75px;
    position: absolute;
    background: rgba(19, 53, 123, 0.8);
    border-radius: 50rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;

} */

/* .page-10-search input{
    height: 50px;
    width: 100%;
    border-radius: 50rem;
    border: none;
    padding: 10px;
    position: relative;
    z-index: 1;
} */

.page-10-email {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.page-10-search {
  width: 85%;
  justify-content: center;
  align-items: center;
  margin-top: -75px;
  position: absolute;
  /* background: rgba(19, 53, 123, 0.8); */
  border-radius: 50rem;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
}

.page-10-search input {
  height: 60px;
  width: 100%;
  border-radius: 50rem;
  border: none;
  padding: 30px;
  /* position: relative; */
  /* z-index: 1; */
}
.page-10-search .search-btn {
  top: 39px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

footer {
  background-color: #13141f;
  color: white;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1 1 200px;
  margin: 20px;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.footer-section p,
.footer-section ul,
.footer-section select {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 2px;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
}

.social-icons a {
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 34px;
  height: 34px;
  color: white;
  margin: 0px 5px;
}

.social-icons a:hover {
  color: #000000;
  background-color: #fff;
}

.payment-icons a {
  color: white;
  margin: 1px;
  font-size: 18px;
}

.language-currency select {
  /* display: block;  */
  margin-bottom: 15px;
  width: 117px;
  padding: 16px 17px;
  background-color: #13141f;
  color: white;
  border: 2px solid #7d7575;
  border-radius: 15px;
}

.language-currency select option {
  background-color: #13141f;
  color: white;
}

@media screen and (max-width: 1220px) {
  .page-7-item1,
  .page-7-item2,
  .page-7-item3,
  .page-7-item4,
  .page-7-item5,
  .page-7-item6 {
    width: 32%;
  }
  .page-7-item7,
  .page-7-item8,
  .page-7-item9,
  .page-7-item10 {
    width: 24%;
  }
  .page-8-section1 {
    width: 50%;
    padding: 25px;
  }
}
@media screen and (max-width: 1050px) {
  .page-2-img {
    width: 40%;
    height: 70%;
    border: 50px solid;
    border-color: transparent #13357b transparent #13357b;
  }

  .page-2-content {
    width: 45%;
    height: 80%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.8)
      ),
      url("https://themewagon.github.io/travela/img/about-img-1.png");
    /* z-index: -1; */
    margin: 50px 0px;
  }

  .page-5-box1 {
    height: 200px;
  }

  .page-6-box1 {
    width: 47%;
  }
  .page-6-item3 {
    display: none;
  }
  .page-9-box3 {
    display: none;
  }
}

@media screen and (max-width: 850px) {
  .page-2-img {
    width: 100%;
    height: 45%;
    border: 50px solid;
    border-color: transparent #13357b transparent #13357b;
  }

  .page-2-content {
    width: 80%;
    height: 40%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.8)
      ),
      url("https://themewagon.github.io/travela/img/about-img-1.png");
    /* z-index: -1; */
    margin: 50px 0px;
  }

  .page-3-box1 {
    width: 85%;
  }
  .page-3 {
    margin-top: 5rem;
  }

  .page-5-box1 {
    width: 47%;
  }
  .page-5-items {
    width: 98%;
  }
  .page-7-item1,
  .page-7-item2,
  .page-7-item3,
  .page-7-item4,
  .page-7-item5,
  .page-7-item6,
  .page-7-item7,
  .page-7-item8,
  .page-7-item9,
  .page-7-item10 {
    width: 48%;
  }
  .page-7-section2 {
    justify-content: space-evenly;
  }

  .page-8-main {
    flex-direction: column;
  }
  .page-8-section1 {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 700px) {
  .page-6-box1 {
    width: 100%;
  }
  .page-6-item2 {
    display: none;
  }
  .page-8 {
    padding: 1rem;
  }
  .form-group {
    margin-bottom: 0px;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    margin-bottom: 10px;
  }
  textarea {
    margin-bottom: 10px;
  }
  .page-9-box2 {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .page-5-box1 {
    width: 100%;
    height: 270px;
  }
  .page-5-img1 {
    width: 100%;
  }
  .page-7-item1,
  .page-7-item2,
  .page-7-item3,
  .page-7-item4,
  .page-7-item5,
  .page-7-item6,
  .page-7-item7,
  .page-7-item8,
  .page-7-item9,
  .page-7-item10 {
    width: 95%;
    height: 400px;
  }

  .page-10 {
    padding: 0rem;
  }
}
@media screen and (max-width: 450px) {
  .page-2-inner {
    width: 95%;
  }
  .page-2-img {
    width: 95%;
    height: 30%;
    border: 50px solid;
    border-color: transparent #13357b transparent #13357b;
  }

  .page-2-content {
    width: 95%;
    height: 50%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.8)
      ),
      url("https://themewagon.github.io/travela/img/about-img-1.png");
    /* z-index: -1; */
    margin: 70px 0px;
  }

  .img-item1 {
    font-size: 15px;
  }
  .page-7-item1,
  .page-7-item2,
  .page-7-item3,
  .page-7-item4,
  .page-7-item5,
  .page-7-item6,
  .page-7-item7,
  .page-7-item8,
  .page-7-item9,
  .page-7-item10 {
    height: 350px;
  }

  .page-10-search {
    width: 100%;
    padding: 3rem 1rem;
  }
  .search-btn {
    position: absolute;
    right: 55px;
    top: 33px;
    /* width: 105px; */
    color: white;
    z-index: 2;
  }
  .bottom-btn {
    right: 27px;
  }
}
@media screen and (max-width: 360px) {
  .logo {
    font-size: 30px;
    color: #13357b;
    margin: 23px 10px;
  }
  #header {
    padding: 0px 11px;
  }
  .explore {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .you-like {
    font-size: 2.2rem;
  }
  .lorem {
    font-size: 1rem;
  }

  .page-7-item1,
  .page-7-item2,
  .page-7-item3,
  .page-7-item4,
  .page-7-item5,
  .page-7-item6,
  .page-7-item7,
  .page-7-item8,
  .page-7-item9,
  .page-7-item10 {
    height: 325px;
  }
}
