@font-face {
  font-family: itc-eras-medium;
  src: url(../fonts/itc-eras-medium.otf);
}
@font-face {
  font-family: kumbhsans-normal;
  src: url(../fonts/KumbhSans-VariableFont_YOPQ\wght.ttf);
}
@font-face {
  font-family: Montserrat-normal;
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: Myriad-pro-regular;
  src: url(../fonts/MYRIADPRO-REGULAR.OTF);
}
@font-face {
  font-family: PlayfairDisplay;
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
}
@font-face {
  font-family: RobotoCondensed;
  src: url(../fonts/RobotoCondensed-VariableFont_wght.ttf);
}

:root {
  --theme-gray: #ccc;
  --theme-dark-gray: #393e46;
  --theme-harder-gray: #1e201e;
  --theme-dark-blue: #23115d;
  --theme-sky-blue: #12bee5;
  --theme-dull-blue: #3e73b5;
  --theme-brown: #897264;
  --theme-teal: #1b8d8f;
  --theme-teal-dark: #01405c;

  --font-heading-one: PlayfairDisplay;
  --font-heading-two: kumbhsans-normal;
  --font-heading-three: Myriad-pro-regular;
  --font-normal-one: Montserrat-normal;
  --font-normal-two: RobotoCondensed;
  --font-normal-three: itc-eras-medium;
}

body {
  background-color: #eafaff;
}

p,
div,
section,
span,
label,
a {
  margin: 0;
}

a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .container-xxl {
    padding: 0 10px;
  }
}

/* ********************************************************** */
/* HEADER DESIGN  */
/* ********************************************************** */

header {
  width: 100%;
  position: relative;
  z-index: 50;

  .top__bar,
  .main__header {
    width: 100%;
    padding: 0px 25px;
  }
  .topbar__inner,
  .nav__inner,
  .header__inner {
    max-width: 100%;
    width: 1800px;
    display: flex;
    justify-content: space-between;
    margin: auto;
  }

  /* ------------------------------------------------- */
  .top__bar {
    font-size: 15px;
    font-family: var(--font-normal-two);
    position: relative;
    max-width: 1800px;
    margin: auto;

    .touched-shape {
      width: fit-content;
      white-space: nowrap;
      padding: 6px 40px;
      padding-right: 30px;
      background-color: var(--theme-teal);
      color: #ffff;
      position: absolute;
      right: 0px;
      top: 0px;
      clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
      a {
        color: #ffff;
        transition: all ease 0.3s;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
  /* ------------------------------------------------- */

  .main__header {
    .header__inner {
      padding: 20px 0;

      h3 {
        font-family: var(--font-heading-two);
        color: var(--theme-dark-gray);
        flex: 1;
        margin: auto 0;
        margin-bottom: 0px;
        text-align: end;
        font-size: 25px;
      }
      .brand_logo {
        width: fit-content;
        height: auto;
        display: block;
        h1 {
          margin: 0px;
          font-family: var(--font-heading-two);
          color: #000;
        }
      }

      .brand_logo {
        display: flex;
        width: fit-content;
        column-gap: 20px;
        h1 {
          white-space: nowrap;
          margin: auto 0;
          /* margin-bottom: 0; */
          color: var(--theme-teal-dark);
        }
        img {
          height: 100px;
        }
      }
    }
  }

  /* ----------------------------------------------- */
  nav {
    background-color: var(--theme-teal);
    .nav__inner {
      padding: 0;
      display: flex;
      justify-content: left !important;
      background-color: transparent;
      padding: 15px 0;
      .nav__links {
        white-space: nowrap;
        color: #ffff;

        font-family: var(--font-normal-one);
        font-size: 14px;
        font-weight: 500;
        padding: 0px 25px;
        text-transform: uppercase;
        transition: all ease 0.3s;
        position: relative;
        z-index: 1;
        &:not(:last-child) {
          padding-right: 20px;
          border-right: 1px solid var(--theme-gray);
        }

        &:hover,
        &.active {
          color: #fff;
        }

        &.active {
          position: relative;
          &::after {
            content: "";
            display: block;
            width: 103%;
            height: 195%;
            background-color: var(--theme-teal-dark);
            position: absolute;
            /* bottom: -1px; */
            top: 50%;
            left: calc(50% + 1px);
            transform: translate(-50%, -50%);
            /* border-radius: 11px; */
            z-index: -1;
          }
        }
      }

      .has__dropdown {
        position: relative;
        display: flex;
        z-index: 100;
        &:hover .is__dropdown {
          opacity: 1;
          visibility: visible;
        }
        .fa {
          font-size: 13px;
        }
        .is__dropdown {
          opacity: 0;
          visibility: hidden;
          min-width: 210px;
          width: fit-content;
          max-width: fit-content;
          background-color: #fff;
          position: absolute;
          top: 65px;
          left: 50%;
          transform: translateX(-50%);
          display: block;
          border-radius: 7px;
          overflow: hidden;
          padding: 0 7px;
          transition: all 0.3s ease-in-out 0.2s;
          a {
            display: block;
            padding: 7px 10px;
            color: #24272a;
            transition: all ease 0.3s;
            font-family: var(--font-normal-two);
            font-size: 16px;
            font-weight: 500;
            &:not(:last-child) {
              border-bottom: 1px solid #e5e5e5;
            }

            &:hover {
              color: var(--theme-dull-blue);
            }
          }
        }
      }
    }
  }
}
/* ********************************************************** */
/* HEADER MEDIA QUERY */
/* ********************************************************** */

@media (min-width: 1021px) {
  .nav-menu-mobile {
    display: none !important;
    max-width: 0px !important;
    max-height: 0px !important;
    overflow: hidden;
  }
}
@media (max-width: 1020px) {
  nav {
    display: none !important;
  }
  .header__inner {
    display: block !important;
    margin-top: 10px !important;
    .brand_logo {
      margin: 0 auto;
    }
    h3 {
      text-align: center !important;
      margin-top: 10px !important;
    }
  }
  .nav-menu-mobile {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    top: 5px;
    left: -380px;
    width: 380px;
    max-width: 95vw;
    height: 100vh;
    padding: 20px;
    /* padding-top: 100px; */
    transition: all ease 0.5s;
    border-radius: 0px 22px 0px 0px;
    overflow-y: auto;
    &::before {
      content: "";
      display: block;
      width: 100px;
      aspect-ratio: 1/1;
      /* background-image: url(../img/rco-logo.png); */
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      margin-bottom: 40px;
    }

    .nav__links {
      min-width: 100%;
      display: block;
      font-size: 18px;
      padding: 10px 0px;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--font-normal-two);
      color: #000;
      position: relative;
      transition: all ease 0.5s;
      &:not(:last-child) {
        border-bottom: 1px solid var(--theme-gray);
        &::before {
          content: "";
          position: absolute;
          bottom: -0.5px;
          left: 0px;
          height: 1px;
          width: 0;
          background-color: var(--theme-teal);
          border-radius: 5px;
          transition: all ease 0.5s;
        }
      }

      &:hover,
      &.active {
        color: var(--theme-teal);
        &::before {
          width: 100%;
        }
      }
    }

    .close-nav-trigger {
      width: 35px;
      aspect-ratio: 1/1;
      border: 0px;
      background-color: var(--theme-harder-gray);
      border-radius: 50%;
      position: absolute;
      top: 10px;
      right: 10px;
      &::before,
      &::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 17px;
        left: 7px;
        border-radius: 9px;
      }
      &::before {
        rotate: 44deg;
      }
      &::after {
        rotate: -45deg;
      }
    }
  }
  .nav-menu-mobile.open {
    left: 0;
    box-shadow: 100px 0px 1px 1000px #0000002e;
  }
}

@media (max-width: 845px) {
  .top__bar {
    .topbar__inner {
      .touched-shape {
        clip-path: none !important;
        width: 100% !important;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
      }
    }
  }

  .main__header {
    margin-top: 35px !important;
  }
}

@media (max-width: 430px) {
  .top__bar {
    .touched-shape {
      font-size: 12px;
    }
  }

  .main__header {
    .brand_logo {
      width: fit-content !important;
      h1 {
        font-size: 20px;
        text-align: center;
      }
    }
    h3 {
      font-size: 14px !important;
      margin-top: 0px;
    }
  }
}

header {
  position: relative;
}

.nav-trigger {
  border: 0;
  background-color: transparent;
  width: 30px;
  aspect-ratio: 1/1;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: calc(50% + 20px);
  left: 10px;
  transform: translateY(-50%);
  /* opacity: 0.7; */

  span {
    width: 100%;
    height: 2px;
    background-color: var(--theme-teal-dark);
    display: block;
    margin: auto 0;
    position: relative;

    &::before,
    &::after {
      content: "";
      width: 70%;
      height: 2px;
      background-color: var(--theme-teal-dark);
      display: block;
      margin: auto 0;
      position: absolute;
      transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
    }
    &::before {
      left: 0px;
      top: -7px;
    }
    &::after {
      bottom: -7px;
      right: 0px;
    }
  }
  &:hover {
    span {
      &::before {
        left: 30% !important;
      }
      &::after {
        right: 30% !important;
      }
    }
  }
}

/* ********************************************************** */
@media (max-width: 520px) {
  .header__inner {
    padding: 10px 0 !important;
  }
  .brand_logo {
    display: block !important;
    column-gap: 0px;
    text-align: center;
    img {
      width: calc(10vw + 90px) !important;
      height: auto !important;
      /* aspect-ratio: 1/1; */
      margin: 0 auto 10px auto !important;
      display: block;
    }
  }
}

/* ********************************************************** */

/* ********************************************************** */
/* HERO BANNER  */
/* ********************************************************** */
/* Front hero banner */

.carousel-item {
  transition: transform 1s ease-in-out;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 1s !important;
}

.hero-banner {
  overflow: hidden;
  .carousel-control-prev,
  .carousel-control-next {
    width: 8% !important;
    span {
      transition: all ease 0.3s;
      width: 55px !important;
      border: 7px solid #ffffff7b;
      height: auto !important;
      aspect-ratio: 1/1;
      margin: auto;
      background: #fff;
      border-radius: 50%;
      display: flex;
      /* color: #4e4e4e; */
      position: relative;
      overflow: hidden;
      text-shadow: 0px 0px transparent, 30px 0px transparent;

      &:hover {
        text-shadow: -30px 0px #000, 0px 0px #000 !important;
      }
      &::before {
        margin: auto;
        aspect-ratio: 1/1;
        width: 11px;
        font-size: 13px !important;
      }
    }
    &:hover {
      span {
        transform: translateX(0px) !important;
        text-shadow: 0px 0px #000, 30px 0px #000;
      }
    }
  }
  .carousel-control-prev {
    span {
      transform: translateX(-4.22vw) !important;
      color: transparent;
    }
  }
  .carousel-control-next {
    span {
      transform: translateX(4.22vw) !important;
      color: transparent;
    }
  }
}

@media (max-width: 520px) {
  .hero-banner {
    .carousel-control-next,
    .carousel-control-prev {
      margin: 0 5px;
      width: 8% !important;

      span {
        transform: translateX(0px) !important;
        text-shadow: 0px 0px #000, 30px 0px #000;
        opacity: 0.4;
      }
      &:hover {
        span {
          opacity: 1 !important;
        }
      }
    }
  }
}

/* ******************************************************* */
/* FOOTER */
/* ******************************************************* */

footer {
  padding: 15px 25px 10px 25px;
  background-color: var(--theme-teal-dark);
  .footer__inner {
    /* background-color: red; */
    font-family: var(--font-normal-one);
    width: 1800px;
    max-width: 100%;
    margin: 0 auto;
    .copyright__watermark {
      p:nth-child(2) {
        text-align: center !important;
      }
    }

    .info__bar {
      border-bottom: 1px solid #ffffff24;
    }
    .info__bar,
    .copyright__watermark {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;

      p {
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        flex: 1;
        &:last-child {
          text-align: end !important;
        }
      }
      p:has(a) {
        /* font-weight: 500; */
        a {
          font-weight: 400 !important;
          color: #ffffff;
          &:hover {
            text-decoration: underline;
          }
        }
      }

      .our_mark a {
        color: rgb(173, 173, 173);
      }
    }
  }
}

@media (max-width: 990px) {
  footer {
    .footer__inner {
      .info__bar,
      .copyright__watermark {
        flex-wrap: wrap;
        p {
          min-width: 100%;
          text-align: center !important;
          justify-content: center !important;
          &:last-child {
            text-align: center !important;
          }

          &:has(~ p) {
            margin-bottom: 5px;
          }
        }
      }
    }
  }
}
@media (max-width: 490px) {
  footer {
    padding: 0px;
    p {
      font-size: 12px !important;
    }
  }
}

/* ******************************************************* */
/* MEMBERS CARD SLIDER  */
/* ******************************************************* */
.memeber-slider__section {
  position: relative;
  .controls_mem_slider {
    width: 95%;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    button {
      width: 50px;
      aspect-ratio: 1/1;
      height: auto;
      border-radius: 50%;
      border: 1px solid#505050;
      background-color: var(--theme-teal-dark);
      transition: all ease 0.5s;
      color: #ffff;
      position: relative;
      z-index: 100;
      &:hover {
        background-color: #000;
      }
    }
  }
}
.memeber-slider-cards[dir="rtl"] {
  text-align: end !important;
}
.memeber-slider-cards {
  &:has(.swiper-wrapper) {
    max-width: 100%;
    width: 1150px;
    height: fit-content;
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
  }

  &:not(:has(.swiper-wrapper)) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
  }

  .member_ui_card {
    width: 345px;
    max-width: 90%;
    height: fit-content;
    padding: 0;
    position: relative;
    img {
      height: auto;
      width: 100%;
      aspect-ratio: 16/12;
      object-fit: cover;
      border-radius: 12px;
      background-color: #dddddd;
      border: 0px !important;
      outline: 0px;
    }

    .overlay__txt {
      transition: all 0.3s ease-in-out 0.2s;
      padding: 20px 7px;
      border-radius: 15px 15px 0 0;
      font-weight: 600;
      font-size: 18px;
      color: #24272a;
      font-family: var(--font-normal-one);
      /* transform-origin: center; */

      h5 {
        font-size: 16px;
        margin-bottom: 20px;
      }

      h5,
      a {
        transition: all ease 0.3s;
        &:hover {
          color: var(--theme-dull-blue);
        }
      }
    }
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }
}
/* ============================================================== */
/* MEDIA QUERY  */
/* ============================================================== */
@media (max-width: 700px) {
  .memeber-slider__section {
    .controls_mem_slider {
      display: none !important;
    }

    .member_ui_card {
      .overlay__txt {
        h5 {
          font-size: 16px !important;
        }
        a {
          font-size: 14px !important;
        }
      }
    }
  }
}

/* ============================================================== */
.mini-icon-cards_section {
  width: 1800px;
  max-width: 100%;
  margin: 30px auto 50px auto;

  .card-wrapper {
    width: 1000px;
    .swiper-slide.swiper-slide-active .card {
      scale: 1.4;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }
    .card {
      transition: all 0.3s ease-in-out 0.2s;
      text-align: center;
      width: 200px;
      margin: 0 auto;
      padding: 20px;
      border-radius: 22px;
      border: 0px;
      background-color: transparent;
      img {
        width: 60px;
        aspect-ratio: 1/1;
        object-fit: cover;
        /* background-color: #000; */
        margin: 0 auto;
        margin-bottom: 20px;
        filter: brightness(0) saturate(100%) invert(47%) sepia(17%)
          saturate(1701%) hue-rotate(173deg) brightness(86%) contrast(93%);
      }
      h5 {
        color: #525252;
        font-family: var(--font-normal-two);
      }
    }
  }
}
/* ============================================================== */
.member-logo__slider {
  margin-top: -40px;
  overflow: hidden;
  img {
    margin: 0 auto;
    max-width: 100%;
    /* &:hover{
      filter: drop-shadow(0px 0px 10px #00000064);
    } */
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
}

/* ============================================================== */
.section_text_above {
  width: 640px;
  max-width: 100%;
  margin: 0px auto;
  margin-bottom: 50px;
  text-align: center;
  h1 {
    font-family: var(--font-heading-two);
    color: var(--theme-harder-gray);
  }
  p {
    font-family: var(--font-heading-two);
    /* font-family: var(--font-normal-two); */
  }
}

@media (min-width: 900px) {
  .section_text_above {
    p {
      font-size: 21px;
    }
  }
}
/* ============================================================== */

@keyframes newsMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================== */
/* INNER BANNER  */
/* ============================================================== */

.inner__banner {
  width: 100%;
  height: 300px;
  background-color: var(--theme-teal-dark);
  /* background-image: url(../img/slider-banner/inner-black-banner.jpg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-attachment: fixed; */
  position: relative;
  overflow: hidden;
  padding: 0 35px;

  .inner__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    width: 1800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0px 30px 40px;
    color: #fff;
    font-family: var(--font-normal-two);
    display: flex;
    flex-wrap: wrap;
    user-select: text;
    -webkit-user-drag: none;

    .inner-banner-line {
      border-bottom: 1px solid var(--theme-sky-blue);
      width: fit-content;
      height: fit-content;
      font-size: 19px;
      font-family: Arial, Helvetica, sans-serif;
      padding-bottom: 10px;
      position: relative;
      z-index: 5;
      &::before {
        content: "";
        display: block;
        position: absolute;
        width: 40%;
        height: 3px;
        background-color: var(--theme-sky-blue);
        bottom: -4px;
        left: 0;
      }
    }

    .banner-title {
      margin: 0;
      margin-top: auto;
      width: 100%;
      font-size: 61px;
      font-weight: 400;
      position: relative;
      z-index: 5;
    }
  }
}

@media (max-width: 700px) {
  .inner__banner {
    height: calc(150px + 18vw) !important;
    text-align: center;
    .inner__container {
      padding: 0px !important;
    }
    .banner-title {
      margin: auto !important;
      font-size: calc(5vw + 15px) !important;
    }
  }
}
/* ==================================================== */

/* ======================================== */

.btn_theme {
  background-color: var(--theme-teal);
  padding: 7px 25px;
  width: fit-content;
  display: block;
  border-radius: 12px 0;
  text-align: center;
  color: #ffff;
  box-shadow: 0px 4px 5px #ccc;
  margin-top: 20px;
  transition: all ease 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;

  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0;
    background-color: var(--theme-harder-gray);
    z-index: -1;
    transition: all ease 0.3s;
    border-radius: 50%;
    opacity: 0;
  }
  &:hover {
    transform: translateY(-5px);
    color: #ffff;
    &::before {
      border-radius: 0%;
      width: 100%;
      height: 100%;
      opacity: 1;
    }
  }
}

/* ================================== */
.main-page-section {
  overflow: hidden;
  .container-xxl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 25px;
    .left_text {
      /* padding: 70px 0; */
      width: 750px;
      max-width: 100%;
    }

    .right_image_box {
      display: flex;
      width: 500px;
      overflow: hidden;
      img {
        margin: auto 0;
        width: 100%;
      }
    }
  }
  h1 {
    font-family: var(--font-heading-two);
  }
  p {
    font-size: 20px;
    font-family: var(--font-heading-two);
    margin-bottom: 10px;
  }
}
/* ================================== */
@media (max-width: 900px) {
  .main-page-section {
    .container-xxl {
      padding: 0 15px !important;
    }
    p {
      font-size: 16px !important;
    }
    .right_image_box {
      width: 100% !important;
      margin-top: 30px;
    }
  }
}

@media (max-width: 500px) {
  .main-page-section {
    text-align: center !important;
  }
}
/* ================================== */
.vision-and-mission {
  .container-xxl {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
    row-gap: 40px;
    .card {
      width: 480px;
      padding: 30px;
      border: 0px;
      box-shadow: 0px 0px 10px #ccc;
      border-radius: 15px;
      transition: all ease 0.5s;

      &:hover {
        .card-head {
          opacity: 1;
        }
      }
      .card-head {
        display: flex;
        column-gap: 10px;
        margin-bottom: 10px;
        opacity: 0.6;
        transition: all ease 0.4s;
        h5 {
          margin: auto 0;
          font-size: 22px;
          font-family: var(--font-heading-two);
          font-weight: 700;
        }
      }
      p {
        font-family: var(--font-normal-one);
      }
      .card-icon {
        width: 40px;
        display: block;
        aspect-ratio: 1/1;
        img {
          width: 100%;
        }
      }
    }
  }
}

/* ==================================================== */
@media (max-width: 500px) {
  .vision-and-mission {
    .card {
      h5 {
        font-size: 20px !important;
      }
      p {
        font-size: 13px !important;
      }
    }
  }
}
/* ==================================================== */

.core-values-cards .container-xxl:has(.card) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 25px;
  row-gap: 30px;

  .card {
    width: 220px;
    padding: 20px 12px;
    border-radius: 9px;
    text-align: center !important;
    transition: all ease 0.3s;
    border: 0px;
    &:hover {
      transform: translateY(-4px);
      .icon-round {
        opacity: 0.6;
      }
    }
    .icon-round {
      transition: all ease 0.3s;
      border: 4px solid #fff;
      outline: 5px solid var(--theme-teal);
      border-radius: 50%;
      background-color: var(--theme-teal);
      width: 80px;
      aspect-ratio: 1/1;
      padding: 10px;
      margin: 0 auto;
      margin-bottom: 10px;
      img {
        width: 100%;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
          saturate(789%) hue-rotate(181deg) brightness(113%) contrast(101%);
      }
    }

    h5 {
      font-family: var(--font-heading-two);
    }
    p {
      font-family: var(--font-normal-one);
      font-size: 14px;
    }
  }
}

.team-container {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  row-gap: 40px;
  padding: 0px 30px;
  /* max-width: 1200px; */
  margin: 0 auto;

  .centered-heading {
    margin: 40px 0;
    text-align: center;
    font-family: var(--font-heading-two);
    color: var(--theme-dark-gray);
    font-style: italic;
  }

  .card {
    display: flex;
    flex-direction: row;
    /* background-color: #fff; */
    background: transparent;
    border: 0;
    /* border-radius: 50px 0 0 50px; */
    /* box-shadow: 0px 0px 10px #ccc; */
    /* padding: 30px 30px; */
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;

    .card-image {
      width: 260px;
      aspect-ratio: 1/1;
      border-radius: 22px;
      overflow: hidden;
      flex-shrink: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    }

    .card-content {
      flex: 1;

      h2 {
        margin-top: 0;
        color: var(--theme-brown);
        font-family: var(--font-heading-two);
        margin-bottom: 0px;
      }

      h4 {
        font-weight: normal;
        font-size: 20px;
        color: #666;
        margin-bottom: 10px;
        font-family: "Times New Roman", Times, serif;
        font-style: italic;
      }

      p {
        line-height: 1.6;
        color: #444;
        font-family: var(--font-heading-two);
        font-size: 20px;
        &:has(~ p) {
          margin-bottom: 15px;
        }
      }
    }
  }

  @media (max-width: 768px) {
    .team-container {
      .card {
        flex-direction: column;
        text-align: center;

        .card-image {
          margin-bottom: 15px;
        }
      }
    }
  }
}

/* --------------------------------------------------------- */
@media (max-width: 900px) {
  .team-container {
    padding: 0 15px !important;
    p {
      font-size: 16px !important;
    }
  }
}

@media (max-width: 500px) {
  .team-container {
    text-align: center !important;
  }
}
/* --------------------------------------------------------- */
/* ------------------------------------------------------------- */
.contact-page-sec {
  margin: 0;
  padding: 0 13px;

  .head-txt-contact {
    text-align: left;
    margin: auto;
    /* width: 975px; */
    max-width: 100%;

    h1 {
      font-family: var(--font-heading-two);
      color: var(--theme-brown);
    }
    p {
      font-size: 18px;
      font-family: var(--font-normal-one);
    }
  }

  .contact-wrapper {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    flex-wrap: wrap;
    font-family: var(--text-font-three);
    max-width: 100%;
    margin: 3rem auto;
    column-gap: 5rem;
    row-gap: 2rem;

    .info-box {
      max-width: 100%;
      span {
        margin-bottom: 10px;
        display: block;
      }
      h3 {
        color: var(--theme-brown);
        text-transform: capitalize;
        font-family: var(--font-heading-two);
        margin-bottom: 0px;
        font-size: 20px;
        &.company-name {
          font-size: 23px;
        }
      }

      p {
        font-family: var(--font-normal-one);
        font-size: 18px;
        a {
          color: #000;
          text-decoration: none;
        }
      }

      .mapLink {
        text-decoration: none;
        position: relative;
        display: contents;
        width: fit-content;
      }
    }
    /* ------------------------------- */
  }
}
.form-con {
  width: 710px;
  padding: 20px 30px;
  max-width: 100%;
  /* margin-top: 4rem; */
  border-radius: 12px;
  box-shadow: 0px 0px 10px #ccc;

  h3 {
    font-family: var(--font-heading-two);
    margin-bottom: 20px;
  }
  input,
  textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 25px;
    /* border: #ccc 1px solid; */
    border: 0;
    /* background-color: #ececec; */
  }

  textarea {
    height: 200px;
  }

  input:focus,
  textarea:focus {
    outline: 0;
    border-color: var(--theme-dark-gray);
  }

  input[type="submit"] {
    background-color: var(--theme-brown);
    color: #fff;
    border-radius: 4px;
    width: fit-content;
    margin: auto;
    padding: 11px 1.4rem;
    transition: all ease 0.3s;

    &:hover {
      outline: 1px solid var(--theme-dark-gray);
      background-color: #ffff;
      color: var(--primary-one);
    }
  }

  div:has(input) {
    display: flex;
    column-gap: 25px;
  }
}
@media (max-width: 580px) {
  .contact-page-sec {
    .form-con {
      padding: 20 !important;
      div:has(input) {
        display: block !important;
      }
    }
  }
}
@media (max-width: 480px) {
  .contact-page-sec {
    .contact-info {
      h2 {
        font-size: 20px;
      }

      h4 {
        font-size: 18px;
      }
    }
  }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* =================================== */
.horizontal-cards-wrapper {
  overflow: hidden;
  .container-xxl {
    padding: 15px 25px;
  }

  br {
    margin: 0;
    max-width: 0;
    max-height: 0;
    padding: 0px;
  }

  .card {
    padding: 0px;
    border: 0px;
    overflow: hidden;
    border-radius: 22px 5px 5px 22px;
    box-shadow: 0 0 10px 3px #ccc;
    transition: all ease 0.4s;
    outline: 1px solid transparent;

    &:not(:last-child) {
      margin-bottom: 40px;
    }

    &:hover {
      outline: 1px solid var(--theme-teal);
      h1 {
        color: var(--theme-teal);
      }
    }

    .card-inner {
      display: flex;
      flex-wrap: wrap;
      column-gap: 20px;
      .card-content {
        flex: 1;
        height: fit-content;
        /* margin: auto 0; */
        display: block;
        padding: 20px;
        h1 {
          font-family: var(--font-heading-two);
          margin-bottom: 10px;
          transition: all ease 0.4s;
        }
        p {
          font-family: var(--font-heading-two);
          font-size: 20px;
          /* text-align: justify;
  text-justify: inter-word; */
        }
      }
      .img-box {
        width: 450px;
        background-color: #505050;
        min-height: 340px;
        img {
          width: 100%;
          height: 100% !important;
          object-fit: cover;
          background-color: var(--theme-teal-dark);
        }
      }
    }
  }
}

@media (max-width: 890px) {
  .horizontal-cards-wrapper {
    .card {
      border-radius: 22px 22px 5px 5px !important;
      .card-inner {
        display: block !important;
        padding: 10px;
        .img-box {
          max-width: 100% !important;
          min-height: fit-content !important;
          margin: 0 auto;
          margin-bottom: 20px !important;
          border-radius: 5px !important;
          overflow: hidden;
          img {
            width: 100%;
            height: auto !important;
          }
        }
      }
      .card-content {
        padding: 10px !important;
        width: 100% !important;
        p {
          font-size: 16px !important;
        }
      }
    }
  }
}

@media (max-width: 550px) {
  .horizontal-cards-wrapper {
    .container-xxl {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    .card {
      text-align: center !important;
      h2 {
        font-size: calc(15px * 2vw);
      }
    }
  }
}

/* ======================================= */
@media (min-width: 880px) {
  .meet__us {
    .modal-dialog {
      min-width: 800px !important;
    }
  }
}
@media (max-width: 580px) {
  .meet__us {
    .form-con{
      div{
        display: block !important;
      }
    }
  }
}
.meet__us {
  *:not(.modal-dialog) {
    background-color: transparent !important;
  }
  .modal-title {
    font-family: var(--font-heading-two);
  }
  .modal-dialog {
    /* background-color: #EAFAFF; */
    background-color: #f4fbfd;
    border-radius: 15px !important;
    overflow: hidden;
  }
  .form-con {
    width: 100% !important;
    margin: 0px !important;
    padding: 0px 10px !important;
    box-shadow: 0px 0px 0px transparent !important;
    border-radius: 0px !important;
    textarea {
      height: auto !important;
      min-height: 100px !important;
      margin: 0px 0px 10px 0 !important;
    }

    label {
      font-family: var(--font-normal-two);
    }

    label:has(~ input) {
      margin-bottom: 5px;
      margin-top: -5px;
    }
    input,
    textarea {
      /* border: 1px solid #ccc !important; */
      box-shadow: 0px 0px 5px #cccc;
      padding: 10px 15px !important;
      border-radius: 6px !important;
      background-color: #ffff !important;
    }
  }

  .modal-footer {
    .button {
      text-align: center;
      border: 0px;
      border-radius: 7px;
      padding: 10px 10px;
      width: 100px !important;
      background-color: #ccc !important;
      color: #000 !important;
    }
    input.button {
      background: var(--theme-teal-dark) !important;
      color: #fff !important;
    }
  }
}
