@import "./variables.css";
.bannerInner .banner-Carousel img {
  height: 100vh;
}
header {
  position: fixed;
  z-index: 10;
  width: 1180px !important;
  margin: auto;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  .headerMain {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  }
  .navigation-menu {
    a {
      font-family: var(--font-family);
      color: var(--navText);
      font-weight: 500;
      font-size: 14px;
      display: block;
      transition: all 0.55s ease-in-out;
      margin-bottom: 5px;
      &:hover {
        color: var(--primary);
      }
    }
    a.active {
      color: var(--primary);
      font-weight: 700;
      font-size: 17px;
    }
  }
}
.shapeCurve {
  clip-path: ellipse(63% 100% at 50% 100%);
}
.btnMain {
  border-radius: 150px;
  padding: 10px 14px;
  box-shadow: inset 0 0 0 1.5px #353535;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--navText);
  position: relative;
  transition: all 0.55s ease-in-out;
  &:hover {
    transition: all 0.55s ease-in-out;
    background: var(--secondary);
    color: var(--white);
    span {
      background: var(--primary);
    }
  }
  i {
    font-size: 24px;
    position: relative;
    bottom: -4px;
    z-index: 1;
    transition: all 0.55s ease-in-out;
  }
  span {
    background: var(--secondary);
    transition: all 0.55s ease-in-out;
    height: 18px;
    width: 18px;
    position: absolute;
    border-radius: 50%;
    right: 20px;
    top: 10px;
  }
  i.viewMore {
    font-size: 20px;
    bottom: 0;
  }
  i.viewMore + span {
    right: 22px;
    top: 16px;
  }
}
/* Marquee */
.marqueeWrap {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
}
.clientsSlide img {
  width: 90px;
  height: 78px;
  object-fit: contain;
  transition: all 0.55s ease-in-out;
  white-space: nowrap;
  text-transform: none;
  &:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
}
.expertise-carousel {
  .card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.55s ease-in-out;
    margin-bottom: 10px;
    margin-left: 10px;
    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      height: 84%;
      width: 100%;
      background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.75) 100%);
    }
    .cardBorder {
      border: 1px solid var(--white);
      position: absolute;
      left: 5%;
      top: 5%;
      right: 5%;
      bottom: 5%;
      z-index: 11;
    }
    p {
      color: var(--white);
      font-size: 15px;
      letter-spacing: 0.5px;
      font-weight: 400;
      position: absolute;
      left: 10%;
      bottom: 10%;
      z-index: 11;
      i {
        font-size: 25px;
        position: relative;
        top: 5px;
        opacity: 0;
        transition: all 0.55s ease-in-out;
      }
    }
    &:hover {
      border-radius: 10px;
      box-shadow: #31b9cb60 0px 3px 6px, #31b9cb6f 0px 3px 6px;
      i {
        opacity: 1;
      }
    }
  }
  .owl-dots {
    margin-top: 28px !important;
    .owl-dot.active span {
      width: 18px;
    }
    .owl-dot.active span,
    .owl-dot:hover span {
      background: #000;
    }
    .owl-dot span {
      width: 6px;
      height: 6px;
      margin: 5px 3px;
    }
  }
}
.travelTeam {
  figure {
    text-align: center;
    img {
      width: 155px;
      height: 155px;
      margin: auto;
    }
    figcaption {
      margin-top: 22px;
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
    }
    span {
      font-weight: 500;
      font-size: 10px;
      letter-spacing: 0.01em;
      color: var(--navText);
      display: block;
    }
  }
}
.globalEvents {
  img {
    border-radius: 7px;
    width: 100%;
    height: 150px;
    /* object-fit: contain; */
  }
  img.eventImg {
    height: 375px;
  }
  img.eventImg2 {
    height: 250px;
  }
  figcaption {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: var(--navText);
    margin-top: 5px;
  }
}
.clientSect {
  h2,
  h3 {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.17);
  }
}
.clients-carousel {
  display: flex !important;
  .owl-stage-outer {
    height: 100% !important;
  }
  .owl-stage {
    display: flex;
    align-items: center;
  }
  .item {
    padding: 5rem 0;
  }
  .card {
    position: relative;
    background-color: var(--white);
    border-radius: 35px;
    padding: 20px;
    text-align: center;
    padding-top: 5.5rem;
    &::after {
      content: "";
      width: 0;
      height: 0;
      border-left: 45px solid transparent;
      border-right: 45px solid transparent;
      border-top: 45px solid var(--white);
      position: absolute;
      bottom: -2.6rem;
      left: 0;
      right: 0;
      margin: auto;
    }
    p {
      font-size: 14px;
      line-height: 20px;
      color: #000000e8;
      font-weight: 400;
      position: relative;
      i {
        font-size: 45px;
        position: absolute;
      }
      i.fa-quote-left {
        left: 0;
        top: -24px;
      }
      i.fa-quote-right {
        right: 0;
        bottom: -27px;
      }
    }
    span {
      font-weight: 500;
      font-size: 15px;
      display: block;
      margin-top: 35px;
    }
    .clientHead {
      position: absolute;
      top: -5rem;
      left: 0;
      right: 0;
      margin: auto;
      background-color: var(--white);
      border-radius: 50%;
      height: 145px;
      width: 145px;
      border: 2px solid var(--orange);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: start;
      font-family: var(--font4);
      font-weight: 600;
      font-size: 22px;
      line-height: 20px;
    }
  }
  .card.orangeCard {
    .clientHead {
      border-color: var(--orange);
      color: var(--orange);
    }
    i {
      color: var(--orange);
    }
  }
  .card.blueCard {
    .clientHead {
      border-color: var(--blue);
      color: var(--blue);
    }
    i {
      color: var(--blue);
    }
  }
  .card.greenCard {
    .clientHead {
      border-color: var(--secondary);
      color: var(--secondary);
    }
    i {
      color: var(--secondary);
    }
  }
}
.instaGallery {
  .instaCard {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background: var(--black);
      opacity: 0.2;
    }
    i {
      color: var(--white);
      position: absolute;
      top: 8px;
      left: 8px;
      font-size: 14px;
      z-index: 10;
      transition: all 0.55s ease-in-out;
    }
    img {
      height: 100%;
      width: 100%;
    }
  }
  .instaCard.instaRow {
    height: 168px;
  }
  .instaCard.instaMiddle {
    i.followUsIcon {
      position: static;
    }
    p {
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }
  }
}
footer {
  padding: 4rem 0;
  .socialIcons div {
    background-color: var(--primary);
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    &:hover i {
      color: var(--secondary);
      transition: all 0.55 ease-in-out;
    }
    i {
      color: var(--white);
      transition: all 0.55 ease-in-out;
    }
  }
  nav ul li a {
    transition: all 0.55s ease-in-out;
    color: var(--navText);
    &:hover {
      color: var(--primary);
    }
  }
  p,
  .contactDetails a {
    font-weight: 400;
    color: var(--navText);
    font-size: 13px;
    line-height: 20px;
    display: block;
  }
}
/* About us page */
.aboutMain h3 {
  font-family: var(--font5);
}
.bannerInner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00000060;
  z-index: 10;
}
.teamWrap {
  figure {
    padding: 20px;
    border-radius: 20px;
    transition: all 0.55s ease-in-out;
    &:hover {
      box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    img {
      width: 170px;
      height: 170px;
    }
    figcaption {
      margin-bottom: 5px;
      font-size: 18px;
    }
    span {
      font-size: 14px;
      line-height: 18px;
    }
  }
}
/* Contact Us Page */
form {
  input {
    border-radius: 150px;
  }
  textarea {
    border-radius: 25px;
  }
  input,
  textarea {
    display: block;
    padding: 8px 14px;
    width: 100%;
    font-size: 15px;
    border: 1.8px solid #0000009c;
    color: var(--navText);
    appearance: none;
    background: transparent;
    &:focus {
      border-color: var(--primary);
      outline: none;
    }
  }
  label {
    font-family: var(--third-family);
    color: var(--navText);
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    position: absolute;
    font-size: 13px;
    line-height: 20px;
    transition-duration: 300ms;
    transform: translateY(-1.5rem) scale(0.75);
    top: 0.6rem;
    left: 16px;
    z-index: -10;
    transform-origin: 16px;
  }
  .peer:focus + label {
    color: var(--black) !important;
    top: -2px !important;
    font-size: 16px !important;
  }
  .peer:not(:placeholder-shown) + label {
    /* color: var(--primary) !important; */
    top: 0rem !important;
    left: 2px !important;
  }
  button {
    padding: 4px 12px 10px 14px !important;
    box-shadow: inset 0 0 0 1.5px #0000009c !important;
    span {
      right: 15px !important;
      top: 11px !important;
    }
  }
}
.contactDetails {
  h3 {
    font-family: var(--font4);
    color: var(--black);
    font-weight: 600 !important;
    font-style: Italic;
    font-size: 28px !important;
    margin-bottom: 5px !important;
  }
  p {
    color: var(--navText);
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0;
    transition: all 0.55s ease-in-out;
  }
  a:hover p {
    color: var(--primary);
  }
}
/* Partners Page */
.partnerSect {
  .contentBox {
    transform-style: preserve-3d;
    perspective: 1000px;
    .front,
    .back {
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
      border-radius: 10px;
      text-align: center;
      min-height: 150px;
      backface-visibility: hidden;
      transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transform-style: preserve-3d;
    }
    .front {
      transform: rotateY(0deg);
    }
    .back {
      /* background: linear-gradient(45deg, #cedce7 0%, #31b8cb 100%); */
      background: #31b8cb;
      position: absolute;
      inset: 0;
      width: 100%;
      transform: rotateY(180deg);
      .inner {
        -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
        transform: translateY(-50%) translateZ(60px) scale(0.94);
        top: 50%;
        position: absolute;
        left: 0;
        width: 100%;
        padding: 2rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        outline: 1px solid transparent;
        -webkit-perspective: inherit;
        perspective: inherit;
        z-index: 2;
        .partnerBtn {
          padding: 4px 12px 10px 14px !important;
          span {
            right: 15px !important;
            top: 11px !important;
          }
        }
      }
    }
    &:hover {
      .front {
        transform: rotateY(-180deg);
      }
      .back {
        transform: rotateY(0deg);
      }
    }
  }
}
.partnerModal {
  .dialogPartner {
    position: fixed;
    width: auto;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    background: transparent;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll; /* Keep layout stable */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    .partnerModalTitle {
      border-bottom: 1px solid rgb(156 163 175);
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-bottom: 0.75rem;
    }
    h3 {
      margin-bottom: 0 !important;
    }
  }
  h2 {
    color: var(--primary);
  }
  h2 span {
    font-size: 20px !important;
    color: var(--primary);
  }
  .partnerImgWrap {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: fit-content;
    width: fit-content;
    padding: 5px;
  }
  button.closeModal {
    color: var(--secondary);
    float: right;
    font-size: 28px;
    transition: all 0.55s ease-in;
    &:hover {
      color: rgb(255, 0, 0);
    }
  }
  #alliedTPro img,
  #chalo-kazakhstan img,
  #russian-Tour img,
  #trip-Mexico img,
  #wotf-Group img {
    width: 300px;
  }
  #akoya-Hotel img {
    width: 250px;
    height: 200px;
    object-fit: contain;
  }
  #private-Safaris {
    img {
      width: 300px;
    }
    img.partnerMainImg {
      width: 100%;
    }
  }
}
#chalo-travel {
  img {
    height: 175px;
    width: 500px;
  }
  img.partnerMainImg {
    width: 259px;
  }
}
#outrigger-Resorts {
  img {
    height: 130px;
    width: 500px;
  }
  img.partnerMainImg {
    width: 259px;
  }
}
.partnerModal .dialogPartner::-webkit-scrollbar {
  display: none;
}
.partnerProfile {
  h2 {
    font-weight: 800 !important;
    font-size: 38px !important;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00000085;
  }
  .btnMain {
    padding: 8px 14px 10px 16px;
    span {
      top: 16px;
      right: 18px;
    }
  }
}
/* Expertise Page */
.expertiseWrap {
  position: relative;
  h2 {
    font-weight: 800 !important;
  }
  h3 {
    font-family: var(--font5);
  }
  img {
    width: 100%;
    border-radius: 5px;
    height: 240px;
  }
  h2.expertise-heading {
    font-size: 26px !important;
    margin: 28px 0 18px 0;
  }
  .sideBox {
    content: "";
    position: absolute;
    top: 5.2rem;
    height: 80px;
    width: 70%;
    z-index: -1;
  }
}
/* Media Coverage Page */
.mediaCoverage {
  .card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    &:hover {
      box-shadow: #a8cf4558 0px 4px 6px -1px, #a8cf4558 0px 2px 4px -1px;
      img {
        transform: scale(1.1);
      }
      h2 {
        text-shadow: 2px 2px #31b9cb3b;
      }
    }
  }
  h2 {
    font-size: 15px !important;
    line-height: 17px;
  }
}
.globalEvents {
  background-color: var(--bg);
  padding-top: 70px;
  padding-bottom: 70px;
}
footer {
  padding-top: 0px !important;
}
footer#homeFooter {
  padding-top: 60px !important;
}
.border-top_new .container {
  border-top: 1px solid #ddd;
  margin-top: 0px !important;
}
.socialIcons1 {
  position: absolute;
  right: -88px;
  top: 80px;
  display: block;
}
.socialIcons1 div {
  background-color: var(--primary);
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  &:hover i {
    color: var(--secondary);
    transition: all 0.55 ease-in-out;
  }
}
.socialIcons1 div i {
  color: var(--white);
  transition: all 0.55 ease-in-out;
}
/* Stikcy Social */
.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 20%;
  right: -4px;
  width: 180px;
  display: flex;
  flex-direction: column;
  z-index: 30;
}
.sticky-icon a {
  transform: translate(135px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  /* text-transform: uppercase; */
  font-weight: 600;
  padding: 6px 9px;
  font-size: 16px;
  font-family: var(--second-family);
  transition: all 0.8s;
}
.sticky-icon a:hover {
  color: var(--white);
  transform: translate(0px, 0px);
}
.sticky-icon a:hover i {
  transform: rotate(360deg);
}
.sticky-icon a i {
  background-color: var(--white);
  height: 22px;
  width: 22px;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
  font-weight: 300;
  font-size: 13px;
}
/* Responsive */
@media (max-width: 767px) {
  .bannerInner h1 {
    font-size: 36px !important;
    font-style: italic;
    line-height: 50px;
    text-align: center;
    padding-right: 10px;
  }
  header {
    width: 100% !important;
  }
  .clients-carousel {
    .owl-stage {
      align-items: unset;
    }
    i.fa-quote-right {
      bottom: -41px !important;
    }
  }
  .instaGallery {
    overflow-x: hidden;
    & .instaCard.instaRow {
      height: 145px;
    }
    & .instaCard.instaMiddle {
      margin-right: -1px;
      margin-left: -1px;
    }
  }
  .ourAssociation {
    padding-bottom: 45px !important;
    .flex.gap-2 img {
      width: 120px;
      height: 108px;
      object-fit: contain;
    }
  }
  footer {
    padding: 4rem 0 2rem 0;
  }
  .expertiseWrap {
    & h2.expertise-heading {
      margin: 18px 0 8px 0;
    }
  }
  .partnerSect .contentBox .back .inner {
    padding: 0rem;
  }
  .partnerModal .dialogPartner .partnerModalTitle {
    padding-left: 0;
    padding-right: 0.8rem;
  }
  .teamWrap figure {
    padding: 15px;
    img {
      width: 140px;
      height: 140px;
    }
  }
  .teamWrap figure figcaption {
    margin-bottom: 3px;
    margin-top: 14px;
  }
  .mediaCoverage .card {
    height: 245px;
    img {
      object-fit: unset;
    }
    p {
      margin: 5px 0 10px 0;
      line-height: 16px;
    }
  }
  .globalEvents {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .sticky-icon {
    top: 16%;
  }
}
@media (max-width: 400px) {
  .mediaCoverage .card {
    height: 262px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  header {
    width: 100% !important;
    .navigation-menu a {
      margin-bottom: 5px;
      font-size: 17px;
    }
  }
  .sticky-icon {
    top: 14%;
  }
  #scrollDownButton {
    left: 49%;
  }
  .globalEvents {
    & figcaption {
      font-size: 14px;
      line-height: 15px;
    }
    img.eventImg {
      height: 260px;
    }
  }
  .clients-carousel .card p i.fa-quote-right {
    bottom: -43px;
  }
  .instaGallery .instaCard.instaRow {
    height: 145px;
  }
  .emblemGrapho svg {
    width: 100px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  header {
    width: 100% !important;
  }
  .clients-carousel .card p i.fa-quote-right {
    bottom: -44px;
  }
  #partnerSection .dialogPartner .min-h-\[800px\] {
    min-height: 100vh;
  }
  .teamWrap figure img {
    width: 160px;
    height: 160px;
  }
  .mediaCoverage .card {
    height: 287px;
  }
  footer ul.gap-x-10 {
    column-gap: 1.5rem;
  }
}
@media (max-height: 500px) {
  .sticky-icon {
    top: 25%;
  }
  .bannerInner {
    height: 95vh !important;
  }
  .globalEvents {
    & figcaption {
      font-size: 14px;
      line-height: 15px;
    }
    & img.eventImg {
      height: 280px;
    }
  }
}
