* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "century-bold";
  src: url("../fonts/GOTHICB.TTF");
}
@font-face {
  font-family: "century-gothic";
  src: url("../fonts/GOTHIC.TTF");
}
@font-face {
  font-family: "century-bold-O";
  src: url("../fonts/GOTHICB0.TTF");
}
@font-face {
  font-family: "century";
  src: url("../fonts/Century\ Gothic.ttf");
}
a {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
ul li {
  list-style-type: none;
}
img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.wrapper {
  width: 90%;
  margin: auto;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
  display: none;
}
#header-logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 100%;
}
.header-logo-container {
  display: grid;
  place-items: center;
  width: 170px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  z-index: 999;
}
#home {
  background: url("../images/home_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  border-image: fill 0 linear-gradient(#0003, #000);
  height: 100vh;
}

#home .container {
  height: 100%;
  display: grid;
  place-items: center;
}
#home .container .top {
  width: 60%;
  margin-top: 180px;
  display: grid;
  place-items: center;
  gap: 30px;
}
#home .container .top .top-headings {
  margin-bottom: 20px;
}
#home .container .top .main-head {
  text-align: center;
  color: #fff;
  font-size: 50px;
  text-transform: Uppercase;
  font-family: "century-bold";
  line-height: 1.3;
}
#home .container .top .sub-head {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  font-family: "century-gothic";
  margin: 10px 0;
}
.join {
  color: #000;
  background-color: #ffb700;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  font-family: "century";
  padding: 14px 20px;
  cursor: pointer;
}
#home .container .top .down {
  height: 80px;
  width: 80px;
  background: transparent;
  border: none;
  margin-top: 80px;
}

/* next section styles */

/*  */
#next {
  background-color: #000;
  padding: 120px 0;
}
#next .container .main-head {
  text-align: center;
  color: #fff;
  font-size: 34px;
  text-transform: Uppercase;
  font-family: "century-bold";
  line-height: 1.3;
  margin-bottom: 30px;
}
#next ul li {
  cursor: pointer;
  padding: 0 20px !important;
  position: relative;
  overflow: hidden;
}
#next ul li:hover > .box-icon {
  background-color: blue;
}
#next ul li .details {
  font-family: "century";
  line-height: 1.5;
  text-align: justify;
  color: white;
  position: absolute;
  bottom: -600px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  z-index: 9999;
}
#next ul li:hover > .details {
  bottom: 100px;
}
#next .container .box {
  height: 500px;
  position: relative;
}
#next .container .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(65, 65, 65, 0.122) 0%,
    rgba(0, 0, 0, 0.9710477941176471) 100%
  );
}
#next .container .box .box-icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#next .container .box .box-icon img {
  max-height: 100%;
}
#next .container .box .content {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 30px;
  font-family: "century-bold-O";
  text-transform: Uppercase;
  color: #fff;
  z-index: 8;
  width: 100%;
}

/* whoweare section styles */
#whoweare .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 20px;
  padding: 60px 0;
}

#whoweare .container .left {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 0.9fr);
}
.grid-row-span-2 {
  grid-row: span 2;
  height: 440px;
}
#whoweare .container .left .image-container .one {
  height: 150px;
}
#whoweare .container .left .image-container .two {
  height: 240px;
}

#whoweare .container .right {
  display: grid;
}
#whoweare .main-head {
  font-size: 38px;
  font-family: "century-bold-O";
  margin-bottom: 30px;
}
#whoweare .hide {
  display: none;
}
#whoweare .container .right .content {
  text-align: justify;
  font-size: 18px;
  line-height: 1.5;
  font-family: "century";
}
#whoweare .container .right .join {
  justify-self: end;
  margin-top: 20px;
}

/* travel section styles */
#travel {
  background: url("../images/travel-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  border-image: fill 0 linear-gradient(#0003, #1c1c1cdb);
  height: 70vh;

  display: grid;
  place-items: center;
}
#travel .main-head {
  text-align: center;
  font-family: "century-bold";
  text-transform: Uppercase;
  color: #fff;
  font-size: 80px;
}
#travel .wrapper {
  display: grid;
  gap: 30px;
  place-items: center;
}

/* find section styles */
#find .container {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

#find .container .left .top .main-head {
  font-size: 38px;
  font-family: "century-bold";
  line-height: 1.5;
}
#find .container .left .top .heading-description {
  font-size: 20px;
  font-family: "century";
  font-weight: 300;
}

#find .container .left .bottom .what-to-find .image-container {
  height: 70px;
  width: 70px;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#find .container .left .bottom .what-to-find .image-container img {
  width: 80%;
  height: 80%;
}
#find .container .left .bottom .what-to-find {
  display: grid;
  grid-template-columns: 0.2fr 2fr;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}
#find .container .left .bottom .what-to-find .find-content .find-content-head {
  font-size: 24px;
  font-family: "century-bold-O";
  font-weight: 700;
  margin: 8px 0;
}
#find
  .container
  .left
  .bottom
  .what-to-find
  .find-content
  .find-content-description {
  text-align: justify;
  font-size: 16px;
  font-family: "century";
  font-weight: 200;
  line-height: 1.5;
}

#find .container .right .image-container {
  height: 500px;
  width: 370px;
}
#find .container .right {
  display: grid;
  place-items: center;
}

/* people section styles */
#people {
  background-color: #000;
  padding: 60px 0;
}

#people .main-head {
  font-size: 38px;
  font-family: "century-bold";
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
#people .peoples-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
}
#people .peoples-container .image-container {
  height: 500px;
  width: 350px;

  position: relative;
}
#people .peoples-container .image-container::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000b0);
  position: absolute;
  top: 0;
  left: 0;
}
#people .peoples-container .image-container .image-content {
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 10;
  bottom: 20px;
}
#people .peoples-container .image-container .image-content .image-content-head {
  font-size: 24px;
  font-family: "century-bold-O";
  text-transform: Uppercase;
  color: #fff;
}
#people
  .peoples-container
  .image-container
  .image-content
  .image-content-description {
  color: #fff;
  font-family: "century";
  font-size: 17px;
  padding: 1px 6px;
  margin-top: 12px;
  line-height: 1.5;
}

/* different section's styles */
#different {
  padding: 50px 0;
}
#different .container .main-head {
  font-size: 38px;
  font-family: "century-bold";
  line-height: 1.5;
  text-align: center;
  color: #000;
  text-transform: uppercase;
}
#different .container .content {
  text-align: justify;
  font-size: 18px;
  font-family: "century";
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.5;
}

.grid-container {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.grid-container .image-container img {
  border-radius: 5px;
}

.gallery-column-span {
  grid-column: span 2;
}
.gallery-row-span {
  grid-row: span 2;
}
/* testimonials section styles */
#testimonials {
}
#testimonials .main-head {
  text-align: center;
  font-family: "century-bold";
  text-transform: Uppercase;
  color: #000;
  font-size: 38px;
}
.shadow-effect {
  background: #000;
  padding: 20px;
  min-height: 175px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect p {
  font-family: "century";
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
  color: #fff;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #ffb700;
  font-size: 22px;
  font-family: "century-bold";
}
#customers-testimonials .item {
  text-align: center;
  padding: 50px;
  /* margin-bottom: 80px; */
  opacity: 0.8;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #ffb700;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #ffb700;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

/* footer section styles */
footer {
  /* background: url("../images/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  border-image: fill 0
      linear-gradient(rgba(255, 255, 255, 0.621) 255, 255, 255, 0.2),
    #000;
  height: 100vh;

  position: relative; */
}

footer .container {
  /* width: 100%;
  position: absolute;
  bottom: 40px;

 */
  position: relative;
}
footer .container .bg-img {
  height: 80vh;
  width: 100%;
}
footer .container .bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
footer .container .footer-content {
  width: 90%;
  position: absolute;
  bottom: 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
}
footer .container .left-logo {
  height: 65px;
  width: 300px;
}
.catchphrase {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  font-family: "century";
  color: #fff;
  margin-top: 10px;
}
footer .container .right-contacts {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 40px;
}
footer .container .right-contacts .section {
}
footer .container .right-contacts .list-items a {
  font-size: 18px;
  font-weight: 400;
  font-family: "century";
  color: #fff;
}
footer .container .right-contacts .list-items li {
  padding: 8px 0;
}
footer .container .right-contacts .three p {
  font-size: 18px;
  font-weight: 400;
  font-family: "century";
  color: #fff;
}
/* */

footer .container .sections {
}

.social {
  background-color: #000;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.all-rights {
  padding: 20px 0;
  font-weight: 400;
  font-size: 18px;
  font-family: "century";
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  line-height: 1.5;
}
.all-rights a {
  color: #ffb700;
}

/* Responsive starts here */
@media screen and (max-width: 1380px) {
  #home .container .top .down {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1180px) {
  #home .container .top {
    width: 90%;
  }
  #next .slide-container .slide {
    height: 400px;
    width: 300px;
  }
  #people .peoples-container .image-container {
    height: 400px;
    width: 300px;
    position: relative;
  }
  footer .container .footer-content {
    grid-template-columns: 0.3fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1080px) {
  #home .container .top {
    gap: 0px;
  }
  #find .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }

  /* footer .container {
    grid-template-columns: 3fr;
    place-items: center;
    row-gap: 60px;
  }
  footer .container .right-contacts {
    gap: 55px;
  } */

  footer .container .footer-content {
    width: 90%;
    grid-template-columns: 1fr;
    row-gap: 40px;
    place-items: center;
  }
  footer .container .right-contacts {
    margin-top: 50px;
  }
}
@media screen and (max-width: 980px) {
  #next .slide-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  #people .peoples-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  #whoweare .hide {
    display: block;
    text-align: center;
    padding-top: 50px;
  }
  #whoweare .container {
    padding: 30px 0;
  }
  #whoweare .container .right .main-head {
    display: none;
  }
  #whoweare .container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 60px;
  }
  #whoweare .container .right .join {
    margin-top: 50px;
  }
  #travel .main-head {
    font-size: 68px;
  }
}
@media screen and (max-width: 880px) {
  #travel .main-head {
    font-size: 50px;
  }
  #travel {
    height: 41vh;
  }
  /* footer .container .right-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
  } */
}
@media screen and (max-width: 768px) {
  #next .slide-container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  #next .slide-container .hide {
    display: none;
  }
  #people .peoples-container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  footer .container .right-contacts {
    display: grid;
    grid-template-columns: 1fr 2fr;
    place-items: center;
    gap: 40px;
    order: 1;
    width: 90%;
  }
  footer .container .left-logo {
    order: 2;
  }
  footer .container .right-contacts .section:last-child {
    grid-column: span 2;
  }
}
@media screen and (max-width: 640px) {
  #travel .main-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 580px) {
  #home {
    height: 70vh;
  }
  #home .container .top .main-head {
    font-size: 35px;
  }
  #home .container .top .sub-head {
    font-size: 17px;
  }
  .join {
    font-size: 14px;
    padding: 10px 15px;
  }
  #whoweare .container .right .content {
    font-size: 15px;
    line-height: 1.5;
  }
  #next .main-head {
    font-size: 35px;
  }
  #next {
    padding-top: 130px;
  }

  #find
    .container
    .left
    .bottom
    .what-to-find
    .find-content
    .find-content-description {
    text-align: justify;
    font-size: 16px;
    word-wrap: break-word;
  }
  #find .container .left .bottom .what-to-find {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  #find
    .container
    .left
    .bottom
    .what-to-find
    .find-content
    .find-content-head {
    font-size: 20px;
    text-align: center;
  }
  #find .container .right .image-container {
    height: 300px;
    width: 270px;
  }
  /* footer .container .left-logo {
    order: 2;
  }
  footer .container .right-contacts {
    order: 1;
    display: flex;
    flex-direction: column-reverse;
    gap: 65px;
  }
  footer .container .right-contacts .three p {
    color: #fff;
  } */
  footer .container .right-contacts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
  }
  footer .container .right-contacts .one .list-items li a {
    font-size: 16px;
    color: #000;
  }
  .catchphrase {
    font-size: 16px;
  }
  /* footer .container .right-contacts .three p {
    font-size: 16px;
    color: #000;
  }
  footer .container .right-contacts .list-items a {
    font-size: 16px;
    font-weight: 400;
    font-family: "century";
    color: #fff;
  } */
}
@media screen and (max-width: 430px) {
  #home .container .top {
    gap: 30px;
  }
  #home .container .top .main-head {
    font-size: 30px;
  }
  #home .container .top .sub-head {
    font-size: 16px;
  }
  #next .main-head {
    font-size: 30px;
  }
  #next .slide-container .slide .image-content {
    font-size: 25px;
  }
  #next ul li {
    padding: 0 !important;
  }
  #whoweare .main-head {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #whoweare .hide {
    margin-top: 0;
  }
  #whoweare .container {
    row-gap: 30px;
  }

  #travel .main-head {
    font-size: 30px;
  }
  #find .container .left .top .main-head {
    font-size: 30px;
    text-align: center;
  }
  #find .container .left .top .heading-description {
    font-size: 16px;
    font-family: "century";
    font-weight: 300;
  }
  #find
    .container
    .left
    .bottom
    .what-to-find
    .find-content
    .find-content-description {
    text-align: justify;
    font-size: 15px;
    word-wrap: break-word;
  }
  #find
    .container
    .left
    .bottom
    .what-to-find
    .find-content
    .find-content-head {
    font-size: 19px;
  }
  #find .container {
    padding: 40px 0;
  }
  #people {
    background-color: #000;
    padding: 40px 0;
  }
  #people .main-head {
    font-size: 28px;
  }
  #people .peoples-container {
    margin-top: 40px;
  }
  #different {
    padding: 40px 0;
  }
  /*  */
  .grid-container {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .grid-container .image-container img {
    border-radius: 5px;
  }

  .gallery-column-span {
    grid-column: span 1;
  }
  .fixed-span {
    grid-column: span 2;
  }
  .gallery-row-span,
  .row-span {
    grid-row: span 2;
  }
  /*  */
  #different .container .main-head {
    font-size: 28px;
  }
  #different .container .content {
    font-size: 15px;
    line-height: 1.5;
  }
  #testimonials .main-head {
    font-size: 26px;
  }
  #customers-testimonials .shadow-effect p {
    font-size: 16px;
  }
  #people
    .peoples-container
    .image-container
    .image-content
    .image-content-head {
    font-size: 20px;
  }
  #people
    .peoples-container
    .image-container
    .image-content
    .image-content-description {
    font-size: 16px;
  }
  .testimonial-name {
    padding: 9px 10px;

    font-size: 20px;
  }
  .all-rights {
    font-size: 16px;
    padding: 10px;
  }
}
@media screen and (max-width: 390px) {
  #home {
    height: 53vh;
  }
  #next .slide-container .slide {
    height: 350px;
    width: 250px;
  }
  #next {
    padding-top: 300px;
  }
  #next .container .main-head {
    font-size: 26px;
  }
  #next .container .box .content {
    font-size: 22px;
  }
  #people .peoples-container .image-container {
    height: 350px;
    width: 250px;
  }
  .social .image-container {
    height: 50px;
    width: 50px;
  }
  .all-rights {
    font-size: 14px;
  }
}
@media screen and (max-width: 320px) {
  #home {
    height: 37vh;
  }
  #home .container .top {
    gap: 20px;
  }
}
@media screen and (max-width: 320px) {
  #next {
    padding-top: 400px;
  }
}
