@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Poly:ital@0;1&family=Spline+Sans:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --bg: #eef2ed;
  --white-bg: #ffffff;
  --ink: #0e1b14;
  /* headline */
  --muted: #647067;
  /* paragraph */
  --green: #7ac142;
  /* Happy Traveler */
  --orange: #ec672c;
  /* Success traveler */
  --yellow: #d9bf2e;
  /* Rating Clients */
  --red: #e45454;
  /* Years of Experience */
  --accent: #8db34e; /* highlight color */
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #1d1f1e;
  font-weight: 500;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  font-family: "Poly";
}

h2 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Figtree", sans-serif;
}

h3 {
  font-size: 40px;
  font-weight: 600;
  font-family: "Poly";
}

h4 {
  font-family: "Poly";
  font-size: 24px;
}

h5 {
  font-family: "Poly";
  font-size: 18px;
}

p {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  color: #666666;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

/* a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
} */

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  /* border-color: var(--bs-accordion-btn-focus-border-color); */
  outline: 0;
  /* box-shadow: var(--bs-accordion-btn-focus-box-shadow) */
}

.accordion-header {
  margin-bottom: 0;
}

/* .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)
} */

/* .accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius)
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius)
} */

/* .accordion-item:not(:first-of-type) {
  border-top: 0
} */

/* .accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius)
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius)
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius)
} */

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  margin-bottom: 45px;
}

.section-title span {
  font-size: 15px;
  color: #888888;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2 {
  color: #111111;
  font-weight: 700;
  margin-top: 8px;
}

.set-bg {
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  background-position: top center;
  background-size: 100% 100%;
  margin: 0px 15px;
}

.spad {
  padding: 60px 0;

  /* padding-top: 100px;
  padding-bottom: 100px; */
}

.top-border-radius {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */

.primary-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  /* text-transform: uppercase; */
  color: white !important;
  margin-right: 0px !important;
  /* text-transform: uppercase; */
  /* letter-spacing: 2px; */
  /* border: 2px solid #a1bd5e; */
  /* background: #a1bd5e; */
  background: linear-gradient(270deg, #18E6A6 0%, #04C1D5 100%),
linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  border-radius: 40px;
}

.primary-btn:hover {
  /* border: 2px solid #c8e18d; */
  background: #7cb342;
  color: white;
  transform: translateY(-1px);
}

.primary-btn.normal-btn {
  background: #1b4965;
  color: #ffffff;
  font-weight: 600;
}

.site-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  /* text-transform: uppercase; */
  color: #ffffff;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  border: 2px solid #1b4965;
  background: #1b4965;
  border-radius: 40px;
}

.site-btn:disabled {
  background: #b3c0c5;
  /* Light gray background */
  color: #e0e0e0;
  /* Light gray text color */
  cursor: not-allowed;
  opacity: 0.6;
}

.site-btn:hover {
  background: #468faf;
  color: #ffffff;
  border: 2px solid #1b4965;
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
  Header
-----------------------*/
.header {
  position: sticky;
  top: 0;
  z-index: 2000;
}

.header.header--normal {
  border-bottom: 1px solid #f2f2f2;
}

/*---------------------
 header__top  :    background: #0c5d69;
-----------------------*/

.header__top {
  background: #ec672c;
}

.header__top__left {
  padding: 5px 0;
}

.header__top__left li {
  font-size: 14px;
  color: #ffffff;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
}

.header__top__left li:last-child {
  margin-right: 0;
}

.header__top__left li i {
  /* font-size: 15px; */
  margin-right: 5px;
}

.header__top__right {
  text-align: right;
  padding: 5px 0;
}

.header__top__right a {
  font-size: 14px;
  color: #ffffff !important;
  display: inline-block;
  margin-right: 20px;
}

.header__top__right a:last-child {
  margin-right: 0;
}

.header__logo {
  padding: 15px 0;
}

.header__logo a {
  display: inline-block;
}

.header__menu__option {
  text-align: right;
  padding: 20px 0;
}

.header__menu {
  display: inline-block;
  /* margin-right: 45px; */
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.header__menu__left a:hover {
  /* background: #ec672c !important; */
  border-radius: 70px;
  background: #95f3eb !important;
  color: black !important;
}

.header__menu ul li.active a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__menu ul li:hover a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__menu ul li:hover .dropdown {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 52px;
  width: 150px;
  background: #111111;
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.header__menu ul li .dropdown li a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 20px;
  text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
  display: none;
}

.header__menu__left a {
  font-size: 14px;
  padding: 8px 15px;
  /* margin-right: 15px; */
  color: #111111;
  font-weight: 500;
  position: relative;
  font-family: "Inter";
}
.header__menu ul li a {
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  display: block;
  padding: 0px 0;
  font-family: "Inter";
  /* text-transform: uppercase; */
  position: relative;
}

.header__menu__left a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  content: "";
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transform-origin: left; /* animate from left to right */
}

.header__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  content: "";
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__btn {
  display: inline-block;
}

.offcanvas-menu-wrapper {
  display: none;
}

.canvas__open {
  display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
  padding-top: 145px;
  padding-bottom: 215px;
}

.hero__text {
  display: grid;
  gap: 10px;
  width: 630px;
  justify-items: center;
}

.hero__text span {
  font-size: 15px;
  font-weight: 500;
  color: #13a2b7;
  text-transform: uppercase;
  display: block;
}

.hero__text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-family: Helvetica;
}

.hero__text h2 {
  font-size: 48px;
  color: #111111;
  font-weight: 700;
  line-height: 60px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.hero__text p {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.hero_heading {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  width: 470px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero_heading h6 {
  color: var(--white-bg, #e6ecf1);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/*---------------------
  Consultation
-----------------------*/

.consultation__form {
  padding: 50px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-top: -70px;
  background: #ffffff;
}

.consultation__form .section-title {
  margin-bottom: 35px;
}

.consultation__form form input {
  font-size: 15px;
  color: #666666;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  margin-bottom: 20px;
}

.consultation__form form input::-webkit-input-placeholder {
  color: #666666;
}

.consultation__form form input::-moz-placeholder {
  color: #666666;
}

.consultation__form form input:-ms-input-placeholder {
  color: #666666;
}

.consultation__form form input::-ms-input-placeholder {
  color: #666666;
}

.consultation__form form input::placeholder {
  color: #666666;
}

.consultation__form form input:focus {
  border-color: #9d9d9d;
}

.consultation__form form .datepicker__item {
  position: relative;
}

.consultation__form form .datepicker__item i {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 15px;
  color: #666666;
}

.consultation__form form .nice-select {
  float: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.consultation__form form .nice-select:after {
  border-bottom: 1.5px solid #666666;
  border-right: 1.5px solid #666666;
  height: 8px;
  right: 20px;
  top: 46%;
  width: 8px;
}

.consultation__form form .nice-select span {
  font-size: 15px;
  color: #666666;
}

.consultation__form form .nice-select.active,
.consultation__form form .nice-select.open,
.consultation__form form .nice-select:focus {
  border-color: #666666;
}

.consultation__form form .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 5px;
}

.consultation__form form button {
  width: 100%;
}

.consultation__text {
  padding: 100px 0;
  position: relative;
}

.consultation__text:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  content: "";
}

.consultation__text__item .section-title {
  margin-bottom: 15px;
}

.consultation__text__item .section-title h2 {
  line-height: 47px;
}

.consultation__text__item .section-title h2 b {
  font-weight: 700;
  color: #13a2b7;
}

.consultation__text__item p {
  color: #444444;
  margin-bottom: 0;
}

.consultation__video {
  height: 262px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.consultation__video .play-btn {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #13a2b7;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}

/*---------------------
  Choose Us
-----------------------*/

.chooseus {
  padding-bottom: 50px;
}

.chooseus__item {
  text-align: center;
  margin-bottom: 30px;
}

.chooseus__item h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 16px;
}

.chooseus__item p {
  margin-bottom: 0;
}

/*---------------------
  Services
-----------------------*/

.services {
  padding-bottom: 70px;
}

.services .section-title span {
  color: #13a2b7;
}

.services .section-title h2 {
  color: #ffffff;
}

.services__btn {
  text-align: right;
}

.services__btn .primary-btn {
  color: #ffffff;
}

.services__item {
  background: #ffffff;
  padding: 45px 30px 45px 50px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.services__item:hover {
  background: #13a2b7;
}

.services__item:hover .services__item__icon span {
  color: #ffffff;
}

.services__item:hover .services__item__text h5 {
  color: #ffffff;
}

.services__item:hover .services__item__text p {
  color: #ffffff;
}

.services__item__icon {
  float: left;
  margin-right: 40px;
}

.services__item__icon span {
  color: #13a2b7;
  font-size: 40px;
  display: inline-block;
  line-height: 76px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.services__item__icon span:before {
  font-size: 70px;
}

.services__item__text {
  overflow: hidden;
}

.services__item__text h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 600;
  margin-bottom: 14px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.services__item__text p {
  margin-bottom: 0;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

/*---------------------
  Team
-----------------------*/

.team {
  padding-bottom: 70px;
}

.team__item {
  text-align: center;
  margin-bottom: 30px;
}

.team__item:hover img {
  border-color: #13a2b7;
}

.team__item img {
  height: 270px;
  width: 270px;
  border-radius: 50%;
  border: 10px solid #ffffff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.team__item h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 600;
  margin-bottom: 5px;
}

.team__item span {
  font-size: 15px;
  color: #13a2b7;
  display: block;
  margin-bottom: 12px;
}

.team__item .team__item__social a {
  font-size: 15px;
  color: #666666;
  display: inline-block;
  margin-right: 20px;
}

.team__item .team__item__social a:last-child {
  margin-right: 0;
}

/*---------------------
  Gallery
-----------------------*/

.gallery {
  overflow: hidden;
}

.gallery__container {
  margin-right: -20px;
}

.gallery__container .gc__item {
  height: 338px;
  width: calc(25% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery__container .gc__item:hover:after {
  opacity: 1;
}

.gallery__container .gc__item:hover a {
  opacity: 1;
  visibility: visible;
}

.gallery__container .gc__item:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(19, 161, 183, 0.5);
  content: "";
  z-index: -1;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
  opacity: 0;
}

.gallery__container .gc__item a {
  font-size: 30px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.gallery__container .gc__item.gc__item__large {
  height: 696px;
}

.grid-sizer {
  width: calc(25% - 20px);
}

/*---------------------
  Latest
-----------------------*/

.latest {
  padding-top: 80px;
  padding-bottom: 70px;
}

.latest__btn {
  text-align: right;
}

.latest__item {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.latest__item:hover {
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.latest__item:hover h5 a {
  text-decoration: underline;
}

.latest__item h5 {
  margin-bottom: 10px;
}

.latest__item h5 a {
  color: #111111;
  font-weight: 600;
  line-height: 24px;
}

.latest__item ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  margin-right: 22px;
  color: #888888;
  position: relative;
  font-weight: 300;
}

.latest__item ul li:after {
  position: absolute;
  right: -16px;
  top: 12px;
  height: 5px;
  width: 5px;
  background: #888888;
  border-radius: 50%;
  content: "";
}

.latest__item ul li img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.latest__item ul li:last-child {
  margin-right: 0;
}

.latest__item ul li:last-child:after {
  display: none;
}

/*---------------------
  Footer
-----------------------*/

/* .footer {
  background: #121c1d;
  padding-top: 40px;
} */

.footer__top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 65px;
}

.footer__logo {
  line-height: 50px;
}

.footer__logo a {
  display: inline-block;
}

.footer__newslatter form {
  position: relative;
}

.footer__newslatter form input {
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #ffffff;
  background: transparent;
  border: 1px solid #13a2b7;
  padding-left: 20px;
  border-radius: 50px;
}

.footer__newslatter form input::-webkit-input-placeholder {
  color: #ffffff;
}

.footer__newslatter form input::-moz-placeholder {
  color: #ffffff;
}

.footer__newslatter form input:-ms-input-placeholder {
  color: #ffffff;
}

.footer__newslatter form input::-ms-input-placeholder {
  color: #ffffff;
}

.footer__newslatter form input::placeholder {
  color: #ffffff;
}

.footer__newslatter form button {
  border-radius: 0 50px 50px 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.footer__social {
  text-align: right;
}

.footer__social a {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-right: 6px;
}

.footer__social a:last-child {
  margin-right: 0;
}

.footer__widget {
  margin-bottom: 30px;
}

.footer__widget h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer__widget ul li {
  list-style: none;
  line-height: 30px;
}

.footer__widget ul li a {
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 300;
}

.footer__address {
  margin-bottom: 30px;
}

.footer__address h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer__address ul li {
  list-style: none;
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 300;
  margin-bottom: 38px;
}

.footer__address ul li:last-child {
  margin-bottom: 0;
}

.footer__address ul li i {
  font-size: 18px;
  color: #13a2b7;
  margin-right: 15px;
}

.footer__map {
  height: 190px;
  margin-bottom: 30px;
}

.footer__map iframe {
  width: 100%;
}

.footer__copyright {
  background: #12191a;
  padding: 25px 0 20px;
  margin-top: 30px;
}

.footer__copyright ul {
  text-align: right;
}

.footer__copyright ul li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
  color: #c4c4c4;
  margin-right: 25px;
  font-weight: 300;
  position: relative;
}

.footer__copyright ul li:after {
  position: absolute;
  right: -18px;
  top: 9px;
  height: 4px;
  width: 4px;
  background: #c4c4c4;
  content: "";
  border-radius: 50%;
}

.footer__copyright ul li:last-child {
  margin-right: 0;
}

.footer__copyright ul li:last-child:after {
  display: none;
}

.footer__copyright__text p {
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 300;
  margin-bottom: 0;
}

.footer__copyright__text p i {
  color: #13a2b7;
}

.footer__copyright__text p a {
  color: #13a2b7;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
  padding-top: 70px;
  padding-bottom: 70px;
}

.breadcrumb__text h2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.breadcrumb__links a {
  font-size: 15px;
  color: #ffffff;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a:after {
  position: absolute;
  right: -18px;
  top: 10px;
  height: 4px;
  width: 4px;
  background: #ffffff;
  content: "";
  border-radius: 50%;
}

.breadcrumb__links span {
  font-size: 15px;
  color: #13a2b7;
  display: inline-block;
}

/*---------------------
  About
-----------------------*/
/* 
.about {
  padding-bottom: 0;
}

.about .container {
  padding-bottom: 100px;
  border-bottom: 1px solid #e1e1e1;
}

.about__video {
  height: 366px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about__video .play-btn {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #13a2b7;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}

.about__text {
  padding-left: 20px;
}

.about__text .section-title {
  margin-bottom: 25px;
}

.about__text p {
  margin-bottom: 25px;
}

.about__text ul {
  margin-bottom: 25px;
}

.about__text ul li {
  list-style: none;
  font-size: 15px;
  color: #666666;
  line-height: 36px;
}

.about__text ul li i {
  color: #13a2b7;
  font-size: 15px;
  margin-right: 6px;
}
 */

.about-section {
  background-color: #fff;
  color: #000;
}

.about-heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

.about-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.about-description {
  color: #1a1a1a;
  /* font-size: 15px; */
  line-height: 1.4;
}

.stats {
  border-color: #333;
}

.stat-number {
  /* font-size: 24px;
  font-weight: 700; */
  margin-bottom: 16px;
}

.stat-label {
  font-size: 18px;
  color: #646a69d6;
}

/*---------------------
  Testimonials
-----------------------*/
/* 
.testimonials {
  overflow: hidden;
  background: #f2f7f8;
  padding-bottom: 90px;
}

.testimonials .section-title {
  margin-bottom: 15px;
}

.testimonial__item {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 61, 85, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 61, 85, 0.1);
  border-radius: 10px;
  position: relative;
  padding: 40px 40px 30px 40px;
  min-height: 310px;
}

.testimonial__item .rating {
  position: absolute;
  right: 40px;
  top: 52px;
}

.testimonial__item .rating i {
  font-size: 13px;
  color: #e4c870;
}

.testimonial__item p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
}

.testimonial__author {
  overflow: hidden;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.testimonial__author__icon {
  height: 50px;
  width: 50px;
  background: #13a2b7;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

.testimonial__author__text {
  overflow: hidden;
  padding-top: 4px;
}

.testimonial__author__text h5 {
  color: #111111;
  font-weight: 600;
}

.testimonial__author__text span {
  font-size: 13px;
  color: #888888;
} */

/* .clients__slider .col-lg-6 {
  max-width: 100%;
} */

/* .clients__slider.owl-carousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: visible;
} */
.clients__slider {
  width: 700px;
}

.clients__slider .owl-dots {
  text-align: center;
}

.clients__slider .owl-dots button {
  height: 10px;
  width: 10px;
  background: #d2d2d2;
  border-radius: 50%;
  margin-right: 6px;
}

.clients__slider .owl-dots button.active {
  background: #9c9c9c;
}

.clients__slider .owl-dots button:last-child {
  margin-right: 0;
}

/* .testimonial__slider .owl-dots {
  text-align: center;
}

.testimonial__slider .owl-dots button {
  height: 10px;
  width: 10px;
  background: #d2d2d2;
  border-radius: 50%;
  margin-right: 6px;
}

.testimonial__slider .owl-dots button.active {
  background: #9c9c9c;
}

.testimonial__slider .owl-dots button:last-child {
  margin-right: 0;
} */

/*---------------------
  Services
-----------------------*/

.services__title h4 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 25px;
}

.services__title h4 img {
  margin-right: 5px;
}

/* 
.services__accordion {
  margin-bottom: 30px;
}

.services__accordion .accordion {
  border: 1px solid #eaf4f6;
  border-radius: 10px;
  padding-bottom: 15px;
}

.services__accordion .card {
  border: none;
}

.services__accordion .card:last-child .card-body {
  padding-bottom: 0;
  margin-bottom: 0;
}

.services__accordion .card:last-child .card-body ul {
  border-bottom: none;
  padding-bottom: 0;
}

.services__accordion .card-heading {
  padding: 10px 30px;
  margin-bottom: -6px;
  cursor: pointer;
  background: transparent;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.services__accordion .card-heading.active {
  background: #f2f7f8;
}

.services__accordion .card-heading.active a {
  color: #111111;
  display: block;
}

.services__accordion .card-heading a {
  color: #666666;
  font-size: 15px;
}

.services__accordion .card-body {
  padding: 0 30px;
  margin-bottom: 12px;
}

.services__accordion .card-body ul {
  border-bottom: 1px solid #e1e1e1;
  padding: 24px 0 18px;
}

.services__accordion .card-body ul li {
  list-style: none;
}

.services__accordion .card-body ul li a {
  font-size: 15px;
  color: #666666;
  line-height: 25px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  cursor: pointer;
}

.services__accordion .card-body ul li a:hover {
  color: #13a2b7;
}

.services__accordion .card-heading a:after,
.services__accordion .card-heading>a.active[aria-expanded="false"]:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 15px;
  color: #111111;
  position: absolute;
  right: 28px;
  top: 11px;
}

.services__accordion .card-heading.active a:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 15px;
  color: #111111;
  position: absolute;
  right: 28px;
  top: 8px;
}

.services__accordion .card-heading a[aria-expanded="true"]:after,
.services__accordion .card-heading>a.active:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 15px;
  font-weight: 400;
  color: #111111;
  position: absolute;
  right: 28px;
  top: 11px;
} */

.services__appoinment form input {
  font-size: 15px;
  color: #666666;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  margin-bottom: 20px;
}

.services__appoinment form input::-webkit-input-placeholder {
  color: #666666;
}

.services__appoinment form input::-moz-placeholder {
  color: #666666;
}

.services__appoinment form input:-ms-input-placeholder {
  color: #666666;
}

.services__appoinment form input::-ms-input-placeholder {
  color: #666666;
}

.services__appoinment form input::placeholder {
  color: #666666;
}

.services__appoinment form input:focus {
  border-color: #9d9d9d;
}

.services__appoinment form .datepicker__item {
  position: relative;
}

.services__appoinment form .datepicker__item i {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 15px;
  color: #666666;
}

.services__appoinment form .nice-select {
  float: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.services__appoinment form .nice-select:after {
  border-bottom: 1.5px solid #666666;
  border-right: 1.5px solid #666666;
  height: 8px;
  right: 20px;
  top: 46%;
  width: 8px;
}

.services__appoinment form .nice-select span {
  font-size: 15px;
  color: #666666;
}

.services__appoinment form .nice-select.active,
.services__appoinment form .nice-select.open,
.services__appoinment form .nice-select:focus {
  border-color: #666666;
}

.services__appoinment form .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 5px;
}

.services__appoinment form button {
  width: 100%;
}

.services__details {
  display: none;
  padding-left: 30px;
}

.services__details__title span {
  font-size: 15px;
  color: #13a2b7;
}

.services__details__title h3 {
  color: #111111;
  font-weight: 600;
  margin-top: 5px;
}

.services__details__widget {
  text-align: right;
}

.services__details__widget .rating i {
  font-size: 13px;
  color: #e4c870;
}

.services__details__widget h3 {
  color: #13a2b7;
  font-weight: 600;
  margin-top: 10px;
}

.services__details__pic {
  margin-top: 35px;
  margin-bottom: 35px;
}

.services__details__pic img {
  min-width: 100%;
}

.services__details__text {
  margin-bottom: 40px;
}

.services__details__text p {
  margin-bottom: 25px;
}

.services__details__text p:last-child {
  margin-bottom: 0;
}

.services__details__item__pic {
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-bottom: 15px;
}

.services__details__item__pic img {
  min-width: 100%;
}

.services__details__desc {
  margin-top: 12px;
}

.services__details__desc p:last-child {
  margin-bottom: 0;
}

.services__details__feature {
  margin-bottom: 25px;
}

.services__details__feature li {
  list-style: none;
  font-size: 15px;
  color: #666666;
  line-height: 36px;
}

.services__details__feature li i {
  color: #13a2b7;
  font-size: 15px;
  margin-right: 6px;
}

/*---------------------
  Pricing
-----------------------*/

.pricing {
  padding-bottom: 60px;
}

.pricing__item {
  text-align: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 61, 85, 0.1);
  box-shadow: 0px 5px 15px rgba(0, 61, 85, 0.1);
  padding: 0 0 50px;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
  border-radius: 10px;
  margin-bottom: 40px;
}

.pricing__item:hover {
  -webkit-box-shadow: 0px 5px 35px rgba(0, 61, 85, 0.15);
  box-shadow: 0px 5px 35px rgba(0, 61, 85, 0.15);
  margin-top: -20px;
  padding-bottom: 70px;
}

.pricing__item:hover .pricing__item__title {
  background: #13a2b7;
  padding-top: 62px;
}

.pricing__item:hover .pricing__item__title p {
  color: #ffffff;
}

.pricing__item:hover .pricing__item__title h3 {
  color: #ffffff;
}

.pricing__item:hover .pricing__item__title h3 span {
  color: #ffffff;
}

.pricing__item:hover .primary-btn {
  background: #13a2b7;
  color: #ffffff;
}

.pricing__item ul {
  margin-bottom: 42px;
  margin-top: 50px;
}

.pricing__item ul li {
  list-style: none;
  margin-bottom: 25px;
}

.pricing__item ul li:last-child {
  margin-bottom: 0;
}

.pricing__item ul li h6 {
  font-size: 15px;
  color: #888888;
  margin-bottom: 5px;
}

.pricing__item ul li span {
  font-size: 15px;
  color: #111111;
  display: block;
}

.pricing__item .primary-btn {
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.pricing__item__title {
  background: #f2f7f8;
  padding: 42px 0;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.pricing__item__title p {
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.pricing__item__title h3 {
  color: #13a2b7;
  font-weight: 700;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.pricing__item__title h3 span {
  color: #111111;
  font-weight: 500;
  display: block;
  font-size: 15px;
  margin-top: 12px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

/*---------------------
  Doctor
-----------------------*/

.doctor__item {
  padding-bottom: 65px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 65px;
}

.doctor__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.doctor__item__pic {
  text-align: center;
}

.doctor__item__pic img {
  height: 470px;
  width: 470px;
  border-radius: 50%;
  border: 10px solid #ffffff;
  -webkit-box-shadow: 0px 3px 10px rgba(48, 68, 78, 0.2);
  box-shadow: 0px 3px 10px rgba(48, 68, 78, 0.2);
}

.doctor__item__text {
  padding-top: 25px;
}

.doctor__item__text.doctor__item__text--left {
  text-align: right;
}

.doctor__item__text span {
  color: #13a2b7;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.doctor__item__text h2 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 20px;
}

.doctor__item__text ul {
  margin-bottom: 30px;
}

.doctor__item__text ul li {
  list-style: none;
  font-size: 15px;
  color: #666666;
  line-height: 36px;
}

.doctor__item__text ul li i {
  color: #13a2b7;
  font-size: 15px;
  margin-right: 6px;
}

.doctor__item__social a {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #f2f7f8;
  font-size: 18px;
  color: #111111;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-right: 6px;
}

.doctor__item__social a:last-child {
  margin-right: 0;
}

/*---------------------
    Blog
-----------------------*/

.blog__item {
  margin-bottom: 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 61, 85, 0.07);
  box-shadow: 0px 5px 15px rgba(0, 61, 85, 0.07);
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.blog__item:hover {
  -webkit-box-shadow: 0px 5px 35px rgba(0, 61, 85, 0.15);
  box-shadow: 0px 5px 35px rgba(0, 61, 85, 0.15);
}

.blog__item:hover .blog__item__text h5 a {
  text-decoration: underline;
}

.blog__item__pic img {
  min-width: 100%;
}

.blog__item__text {
  padding: 25px 30px 25px;
}

.blog__item__text h5 {
  margin-bottom: 18px;
}

.blog__item__text h5 a {
  color: #111111;
  font-weight: 600;
  line-height: 24px;
}

.blog__item__text ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  margin-right: 22px;
  color: #888888;
  position: relative;
  font-weight: 300;
}

.blog__item__text ul li:after {
  position: absolute;
  right: -16px;
  top: 12px;
  height: 5px;
  width: 5px;
  background: #888888;
  border-radius: 50%;
  content: "";
}

.blog__item__text ul li img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.blog__item__text ul li:last-child {
  margin-right: 0;
}

.blog__item__text ul li:last-child:after {
  display: none;
}

.load__more {
  margin-top: 10px;
}

/*---------------------
  Blog Details
-----------------------*/

.blog__details__hero {
  padding: 200px 0;
  margin-bottom: 60px;
}

.blog__hero__text h2 {
  color: #ffffff;
  font-weight: 600;
  line-height: 47px;
  margin-bottom: 20px;
}

.blog__hero__text ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  margin-right: 22px;
  color: #ffffff;
  position: relative;
  font-weight: 300;
}

.blog__hero__text ul li:after {
  position: absolute;
  right: -16px;
  top: 12px;
  height: 5px;
  width: 5px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.blog__hero__text ul li img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.blog__hero__text ul li:last-child {
  margin-right: 0;
}

.blog__hero__text ul li:last-child:after {
  display: none;
}

.blog__details__social {
  position: absolute;
  left: -64px;
}

.blog__details__social a {
  display: block;
  height: 40px;
  width: 40px;
  background: #f2f7f8;
  font-size: 16px;
  color: #111111;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
}

.blog__details__social a:last-child {
  margin-bottom: 0;
}

.blog__details__text {
  margin-bottom: 20px;
}

.blog__details__text__item {
  margin-bottom: 35px;
}

.blog__details__text__item:last-child {
  margin-bottom: 0;
}

.blog__details__text__item h5 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog__details__text__item p {
  color: #444444;
  margin-bottom: 0;
}

.blog__details__desc,
.blog__details__desc__more {
  margin-bottom: 50px;
}

.blog__details__desc p,
.blog__details__desc__more p {
  margin-bottom: 0;
  color: #444444;
}

.blog__details__pic {
  margin-bottom: 10px;
}

.blog__details__pic img {
  min-width: 100%;
  margin-bottom: 30px;
}

.blog__details__desc__more {
  margin-bottom: 30px;
}

.blog__details__tag {
  padding-top: 10px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 50px;
}

.blog__details__tag p {
  color: #111111;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 20px;
}

.blog__details__tag p i {
  color: #13a2b7;
}

.blog__details__tag a {
  display: inline-block;
  font-size: 15px;
  color: #666666;
  background: #f2f7f8;
  border-radius: 5px;
  padding: 8px 15px;
  margin-right: 11px;
}

.blog__details__tag a:last-child {
  margin-right: 0;
}

.blog__details__btns {
  margin-bottom: 50px;
}

.blog__details__btn__item {
  display: block;
  overflow: hidden;
}

.blog__details__btn__item.blog__details__btn__prev {
  text-align: right;
}

.blog__details__btn__item.blog__details__btn__prev .title i {
  margin-right: 0;
  margin-left: 5px;
}

.blog__details__btn__item.blog__details__btn__prev .blog__details__btn__pic {
  float: right;
  margin-right: 0;
  margin-left: 25px;
}

.blog__details__btn__item .title {
  font-size: 15px;
  color: #111111;
  font-weight: 600;
  margin-bottom: 25px;
}

.blog__details__btn__item .title i {
  margin-right: 5px;
  font-size: 18px;
  font-weight: 600;
}

.blog__details__btn__pic {
  float: left;
  margin-right: 25px;
}

.blog__details__btn__text {
  overflow: hidden;
}

.blog__details__btn__text h6 {
  color: #111111;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 4px;
}

.blog__details__btn__text span {
  font-size: 13px;
  color: #878787;
}

.blog__details__related h3 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__related .blog__item__text {
  padding: 25px 25px 20px;
}

.blog__details__related .blog__item__text h5 {
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 0;
}

.blog__details__related .blog__item__text span {
  font-size: 13px;
  color: #888888;
  font-weight: 300;
}

.blog__details__comment {
  padding-top: 10px;
}

.blog__details__comment h3 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__comment form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
}

.blog__details__comment form input::-webkit-input-placeholder {
  color: #666666;
}

.blog__details__comment form input::-moz-placeholder {
  color: #666666;
}

.blog__details__comment form input:-ms-input-placeholder {
  color: #666666;
}

.blog__details__comment form input::-ms-input-placeholder {
  color: #666666;
}

.blog__details__comment form input::placeholder {
  color: #666666;
}

.blog__details__comment form textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 15px;
  color: #666666;
  padding-top: 12px;
  resize: none;
  margin-bottom: 24px;
}

.blog__details__comment form textarea::-webkit-input-placeholder {
  color: #666666;
}

.blog__details__comment form textarea::-moz-placeholder {
  color: #666666;
}

.blog__details__comment form textarea:-ms-input-placeholder {
  color: #666666;
}

.blog__details__comment form textarea::-ms-input-placeholder {
  color: #666666;
}

.blog__details__comment form textarea::placeholder {
  color: #666666;
}

.blog__details__comment form button {
  width: 100%;
}

/*---------------------
  Contact
-----------------------*/

.contact__widget {
  margin-bottom: 30px;
}

.contact__widget__icon {
  height: 70px;
  width: 70px;
  background: #f2f7f8;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  color: #13a2b7;
  float: left;
  margin-right: 30px;
}

.contact__widget__text {
  overflow: hidden;
  padding-top: 8px;
}

.contact__widget__text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 5px;
}

.contact__widget__text p {
  font-weight: 300;
  margin-bottom: 0;
}

.contact__content {
  padding-top: 70px;
}

.contact__pic img {
  min-width: 100%;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 61, 85, 0.1);
  box-shadow: 0px 3px 15px rgba(0, 61, 85, 0.1);
}

.contact__form h3 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 35px;
}

.contact__form form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 15px;
  color: #666666;
  margin-bottom: 20px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.contact__form form input::-webkit-input-placeholder {
  color: #666666;
}

.contact__form form input::-moz-placeholder {
  color: #666666;
}

.contact__form form input:-ms-input-placeholder {
  color: #666666;
}

.contact__form form input::-ms-input-placeholder {
  color: #666666;
}

.contact__form form input::placeholder {
  color: #666666;
}

.contact__form form input:focus {
  border-color: #9d9d9d;
}

.contact__form form textarea {
  width: 100%;
  height: 110px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 15px;
  color: #666666;
  padding-top: 12px;
  resize: none;
  margin-bottom: 14px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.contact__form form textarea::-webkit-input-placeholder {
  color: #666666;
}

.contact__form form textarea::-moz-placeholder {
  color: #666666;
}

.contact__form form textarea:-ms-input-placeholder {
  color: #666666;
}

.contact__form form textarea::-ms-input-placeholder {
  color: #666666;
}

.contact__form form textarea::placeholder {
  color: #666666;
}

.contact__form form textarea:focus {
  border-color: #9d9d9d;
}

.contact__form form button {
  width: 100%;
}

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
}

#appointmentsTable td {
  font-size: 13px;
  padding: 0.35rem;
}

#appointmentsTable th {
  font-size: 15px;
}

.contact .info-box,
.contact .php-email-form {
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */

  background: #fff;
}

.contact .map {
  margin-bottom: 20px;
}

.contact .info-box {
  color: #0b2341;
  text-align: center;
  padding: 20px 0 30px;
}

.contact .info-box i {
  font-size: 29px;
  color: #8a57de;
  border-radius: 50%;
  padding: 9px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 15px;
  color: #777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  font-size: 13px;
  margin-bottom: 0;
}

.contact .info-box a {
  color: #8a57de;
}

.contact .php-email-form {
  padding: 19px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #8a57de;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: 1s linear infinite animate-loading;
  animation: 1s linear infinite animate-loading;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
  border-radius: 18px;
  box-shadow: none;
  font-size: 14px;
  background-color: #f1f1f1;
  background-clip: padding-box;
  border: 1px solid #e0e3eb;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: #7478fa;
}

.contact .php-email-form input {
  padding: 7px 15px;
}

.contact .php-email-form select {
  padding: 7px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.center {
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
}

/*---------------------------------Our Complaints Procedure Page -----------------------------*/

.our-complaints-procedure h1 {
  font-size: 46px;
}

.our-complaints-procedure h2 {
  font-size: 32px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__menu {
    margin-right: 25px;
  }

  .header__menu ul li {
    margin-right: 25px;
  }

  .header__top__left li {
    margin-right: 10px;
  }

  .consultation__form {
    padding: 40px 25px;
  }

  .footer__newslatter form button {
    padding: 14px 15px 12px;
  }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #222;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    /* border: 1px solid #323232; */
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 35px;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }

  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }

  .offcanvas__menu {
    display: none;
  }

  .slicknav_btn {
    display: none;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav {
    display: block !important;
  }

  .slicknav_arrow i {
    font-size: 17px;
    position: relative;
    top: 2px;
  }

  .offcanvas__logo {
    margin-bottom: 25px;
  }

  .offcanvas__btn {
    margin-bottom: 30px;
  }

  .offcanvas__widget {
    margin-bottom: 30px;
  }

  .offcanvas__widget li {
    font-size: 15px;
    color: #111111;
    list-style: none;
    line-height: 30px;
  }

  .offcanvas__widget li i {
    color: #13a2b7;
    font-size: 15px;
    margin-right: 5px;
  }

  .offcanvas__social a {
    font-size: 16px;
    color: #111111;
    display: inline-block;
    margin-right: 20px;
  }

  .offcanvas__social a:last-child {
    margin-right: 0;
  }

  .header__top {
    display: none;
  }

  .header__menu__option {
    display: none;
  }

  .header__right {
    display: none;
  }

  .header .container {
    position: relative;
  }

  .header__btn {
    display: none;
  }

  .consultation__text__item {
    margin-bottom: 40px;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__newslatter {
    margin-bottom: 30px;
  }

  .footer__social {
    text-align: center;
  }

  .footer__copyright__text p {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer__copyright ul {
    text-align: center;
  }

  .services__item {
    padding: 35px 30px 35px 30px;
  }

  .testimonial__item .rating {
    position: relative;
    right: 0;
    top: 0;
    margin-bottom: 15px;
  }

  .services__sidebar {
    padding-top: 50px;
  }

  .services__details {
    padding-left: 0;
  }

  .doctor__item__text {
    text-align: center;
    padding-top: 40px;
  }

  .doctor__item__text.doctor__item__text--left {
    text-align: center;
  }

  .blog__details__social {
    position: relative;
    left: 0;
    margin-bottom: 30px;
  }

  .blog__details__social a {
    display: inline-block;
    margin-right: 6px;
  }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #222;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    /* border: 1px solid #323232; */
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 35px;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }

  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }

  .offcanvas__menu {
    display: none;
  }

  .slicknav_btn {
    display: none;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav {
    display: block !important;
  }

  .slicknav_arrow i {
    font-size: 17px;
    position: relative;
    top: 2px;
  }

  .offcanvas__logo {
    margin-bottom: 25px;
  }

  .offcanvas__btn {
    margin-bottom: 30px;
  }

  .offcanvas__widget {
    margin-bottom: 30px;
  }

  .offcanvas__widget li {
    font-size: 15px;
    color: #111111;
    list-style: none;
    line-height: 30px;
  }

  .offcanvas__widget li i {
    color: #13a2b7;
    font-size: 15px;
    margin-right: 5px;
  }

  .offcanvas__social a {
    font-size: 16px;
    color: #111111;
    display: inline-block;
    margin-right: 20px;
  }

  .offcanvas__social a:last-child {
    margin-right: 0;
  }

  .header__top {
    display: none;
  }

  .header__menu__option {
    display: none;
  }

  .header__right {
    display: none;
  }

  .header .container {
    position: relative;
  }

  .header__btn {
    display: none;
  }

  .consultation__text__item {
    margin-bottom: 40px;
  }

  .footer__logo {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer__newslatter {
    margin-bottom: 30px;
  }

  .footer__social {
    text-align: center;
  }

  .footer__copyright__text p {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer__copyright ul {
    text-align: center;
  }

  .about__video {
    margin-bottom: 40px;
  }

  .services__sidebar {
    padding-top: 50px;
  }

  .services__details {
    padding-left: 0;
  }

  .doctor__item__text {
    text-align: center;
    padding-top: 40px;
  }

  .doctor__item__text.doctor__item__text--left {
    text-align: center;
  }

  .services__btn {
    text-align: left;
    margin-bottom: 30px;
  }

  .latest__btn {
    text-align: left;
    margin-bottom: 30px;
  }

  .services__details__widget {
    text-align: left;
    margin-top: 20px;
  }

  .contact__pic {
    margin-bottom: 40px;
  }

  .team__item img {
    height: auto;
    width: auto;
  }

  .doctor__item__pic img {
    height: auto;
    width: auto;
  }

  .gallery__container .gc__item {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .grid-sizer {
    width: 100%;
  }

  .gallery__container {
    margin-right: 0;
  }

  .blog__details__social {
    position: relative;
    left: 0;
    margin-bottom: 30px;
  }

  .blog__details__social a {
    display: inline-block;
    margin-right: 6px;
  }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
  .hero__text h2 {
    font-size: 34px;
    line-height: 46px;
  }

  .consultation__form .section-title h2 {
    font-size: 24px;
  }

  .consultation__form {
    padding: 40px 25px;
  }

  .services__item {
    padding: 45px 25px 45px;
  }

  .services__item__icon {
    float: none;
    margin-bottom: 25px;
  }

  .footer__newslatter form button {
    padding: 14px 15px 12px;
  }

  .blog__details__tag a {
    margin-bottom: 10px;
  }

  .blog__details__btn__item.blog__details__btn__prev {
    margin-top: 35px;
  }

  .footer__newslatter form {
    text-align: center;
  }

  .footer__newslatter form input {
    margin-bottom: 15px;
    padding-right: 20px;
  }

  .footer__newslatter form button {
    position: relative;
    border-radius: 50px;
    padding: 14px 30px 12px;
  }
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #468faf;
  border-radius: 50%;
}

.heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trusted-partners {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 160px;
}

.trusted-partners h2 {
  font-size: 24px;
  margin: 0;
  white-space: nowrap;
}

.logos-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #98a2b3;
  font-weight: bold;
  font-size: 16px;
}

.logo-item img {
  /* width: 50% !important; */
  height: 100%;
  /* object-fit: cover; */
}

.what-we-do .inner-container h3,
.about-section .inner-container h3 {
  position: relative;
  width: 50%;
  /* font-size: 33px; */
  line-height: 1.4em;
  color: #000;
  margin-top: 40px;
  /* font-weight: 700; */
}

.border-bottom {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  /* background-color: white; */
  padding: 30px 0px;

  transition: transform 0.3s;
}

.service-card img {
  width: 48px;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 40px;
  height: 40px;
  background-color: #6bbec7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 10px;
}

.service-desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.read-more {
  font-family: "Poly";
  font-weight: 600;
  font-size: 18px;
  color: #022c22;
  text-decoration: none;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  /* margin: 50px auto; */
  padding: 30px;
  gap: 50px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-left {
  flex: 1;
  /* padding: 40px 30px; */
  box-sizing: border-box;
  min-width: 350px;
}

.services-left h3 {
  margin-bottom: 15px;
}

.services-left p {
  font-family: "Outfit";
  font-size: 18px;
  color: #2f3e46;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  /* background-color: #f2f4f7; */
  /* padding: 15px; */
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-item img {
  width: 100px;
  margin-right: 15px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: #195169;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 22px;
}

.service-content h4 {
  font-family: "Poly";
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 600;
}

.service-content p {
  margin: 0;
  font-family: "Manrope";
  font-size: 14px;
  color: #2f3e46;
  font-weight: 500;
}

.view-all {
  display: inline-block;
  /* font-family: 'Poly'; */
  margin-top: 20px;
  font-weight: 600;
  color: #1b4965;
  font-size: 16px;
  text-decoration: none;
}

.view-all::after {
  content: " →";
}

.services-right {
  flex: 1;
  min-width: 350px;
  background: url("../img/services/services-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
}

.view-all-wrapper {
  display: flex;
  justify-content: center;
  /* margin-top: 30px; */
}

.why-us-section {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-us-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sec-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 30px;
}

.why-us-section h3 {
  margin-bottom: 20px;
}

.why-us-description {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  font-weight: 500;
  color: #2f3e46;
  line-height: 1.7;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 115px;
}

.feature-item {
  width: 200px;
}

.feature-item img {
  height: 60px;
  margin-bottom: 15px;
}

.feature-title {
  font-family: "Poly";
  font-weight: 600;
  font-size: 20px;
  color: #1b2429;
}

.testimonials {
  text-align: center;
  padding: 100px 20px;
  background-color: #fff;
}

.testimonial__header h3 {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  color: #819f3f;
  text-transform: uppercase;
}

.testimonial__header p {
  color: #2f3e46;
  text-align: center;
  font-family: Helvetica;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 109.091% */
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 20px;
}

.testimonial__item {
  padding: 30px;
  border-radius: 16px;
  /* box-shadow: -38px 1px 1px -11px #b0c4de, 0px 1px 2px 0px rgba(87, 92, 86, 2),
    38px 1px 1px -11px #b0c4de; */
  max-width: 60%;
  margin: 0 auto;
  background: white;
}

.stars {
  color: #0077a3;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.quote {
  font-size: 25px;
  color: #2f3e46;
  line-height: 40px;
  margin-bottom: 30px;
}

.name {
  font-size: 20px;
  font-weight: 600;
  color: #1d1f1e;
  margin-bottom: 5px;
}

.designation {
  color: #666;
  font-size: 18px;
}

.arrow-prev,
.arrow-next {
  font-size: 24px;
  color: #333;
  padding: 10px;
  cursor: pointer;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30vmin;
  z-index: -1000;
}

.testimonial__slider .owl-stage-outer {
  /* min-height: 350px; */
}

/* .clients__slider  .owl-stage-outer {
  max-height: 150px;
} */

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #276c88;
  padding: 60px 80px; */
  color: #fff;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #aad5e6;
  font-weight: 500;
}

.cta-content h3 {
  color: #fff;
}

.cta-content p {
  font-size: 16px;
  /* margin-bottom: 30px; */
  line-height: 1.6;
  color: #dce8ee;
}

.cta-button {
  display: inline-block;
  background-color: #468faf;
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  width: 200px;
  font-size: 18px;
  transition: background 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #4ba9c9;
}

.cta-image {
  max-width: 35%;
  position: relative;
}

.cta-image img {
  /* width: 100%; */
  /* border-top-left-radius: 300px; */
  /* border-bottom-left-radius: 300px; */
  object-fit: cover;
}

.faq-section {
  border-radius: 20px;
  background: #edefeb;
}

.accordion-button {
  /* border-radius: 12px !important; */
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.accordion-item {
  border: none;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.accordion-item h2 {
  font-size: 18px;
}

.faq-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.faq-footer h5 {
  color: var(--white-bg, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 109.091% */
  text-transform: uppercase;
}

.faq-footer p {
  font-size: 16px;
  max-width: 590px;
  margin: 0 auto;
  line-height: 1.6;
}

.accordion-button:not(.collapsed) {
  font-weight: bold;
  box-shadow: none;
  color: black;
}

.accordion-button:not(.collapsed)::after {
  font-size: 22px;
  font-weight: bold;
  /*   margin-right: 12px; */
  transition: all 0.2s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}

.accordion-button::after {
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  /*   background-repeat: no-repeat; */
  /*   background-size: contain; */
}

.site-footer {
  /* background-color: #101c1f; */
  color: #fff;
  padding: 60px 0 40px;
  /* border-top-left-radius: 100px; */
}

.footer-top h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-top p {
  color: #c4cfd3;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.6;
}

.get-started-btn {
  background-color: #4696b7;
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
  text-align: center;
  width: 250px;
  font-size: 18px;
}

.get-started-btn:hover {
  background-color: #1b4965;
}

.footer-brand {
  width: 150px;
}

.footer-brand .brand-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.footer-brand small {
  font-weight: 400;
  font-size: 11px;
  color: #c4cfd3;
}

.gap-4 {
  /* display: flex; */
  /* flex-direction: column; */
  gap: 1.5rem !important;
}

.gap-3 {
  /* display: flex; */
  /* flex-direction: column; */
  gap: 1rem !important;
}

.footer-links a,
.footer-policy a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-policy a {
  color: #6c757d;
}

.footer-links a:hover,
.footer-policy a:hover {
  text-decoration: underline;
}

.footer-social a {
  color: #c4cfd3;
  font-size: 22px;
}

.footer-social .ft__text a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #468faf;
  padding-top: 20px;
  font-size: 13px;
}

.footer-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-intro h3 {
  color: #fff;
}

.footer-intro p {
  color: #c4cfd3;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer .text-muted {
  font-size: 16px;
  margin-bottom: 0;
}

.pd-left {
  padding-left: 6px;
  vertical-align: inherit;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-shape {
  overflow: hidden;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-shape.circle {
  border-radius: 50%;
}

.img-shape.oval {
  border-radius: 40%;
  width: 100px;
  height: 140px;
}

.img-shape.square {
  border-radius: 16px;
}

.img-shape.rounded {
  border-radius: 40px;
}

/* Auto Scrolling Animation */
.auto-scroll-wrapper {
  overflow: hidden;
  height: 500px;
  justify-content: flex-end;
}

.slow-scroll {
  animation-duration: 10s;
}

.fast-scroll {
  animation-duration: 15s;
}

.scroll-track img,
.scroll-track-reverse img {
  width: 200px;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollLoop 20s linear infinite;
  animation-duration: 10s;
}

/* Second column can have different speed */
/* .scroll-column.fast-scroll .scroll-track {
  animation-duration: 16s;
}
.scroll-column.slow-scroll .scroll-track {
  animation-duration: 24s;
} */

.scroll-track-reverse {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollLoopReverse 20s linear infinite;
  animation-duration: 10s;
}

@keyframes scrollLoop {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollLoopReverse {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 480px) {
  .spad {
    padding: 50px 0;
  }

  h1 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }

  .hero__text {
    gap: 30px;
  }

  .clients__slider {
    width: 100%;
  }

  .feature-item {
    width: 100%;
  }

  .services-section {
    padding: 15px;
  }

  .service-card {
    padding: 20px 0px;
  }

  .services-left {
    min-width: auto;
  }

  .services-grid {
    gap: 0px;
    grid-template-columns: 1fr;
  }

  .trusted-partners h2 {
    font-size: 20px;
  }

  .trusted-partners {
    flex-direction: column;
    align-items: normal;
    height: auto;
    text-align: center;
    padding: 40px 0;
  }

  .cta-content {
    max-width: 100%;
    flex-direction: column;
    padding: 40px 10px;
  }

  .cta-image {
    display: none;
  }

  .testimonial__slider .owl-stage-outer {
    min-height: 420px;
  }

  .testimonial__item {
    width: 85%;
  }

  .footer-middle {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px !important;
  }

  .what-we-do .inner-container h3,
  .about-section .inner-container h3 {
    width: 100%;
  }

  .top-border-radius {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .site-footer {
    background-color: #101c1f;
  }

  .set-bg {
    background-position: top center;
    background-size: 300% 100%;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  h1 {
    font-size: 42px;
  }

  h3 {
    font-size: 38px;
  }

  .hero__text {
    gap: 30px;
  }

  .clients__slider {
    width: 100%;
  }

  .feature-item {
    width: 100%;
  }

  .services-grid {
    gap: 0px;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px 0px;
  }

  .trusted-partners {
    flex-direction: column;
    align-items: normal;
    height: auto;
    text-align: center;
    padding: 40px 0;
  }

  .cta-content {
    max-width: 100%;
    flex-direction: column;
    padding: 40px 10px;
  }

  .cta-image {
    display: none;
  }

  .testimonial__slider .owl-stage-outer {
    min-height: 420px;
  }

  .testimonial__item {
    width: 85%;
  }

  .footer-middle {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px !important;
  }

  .what-we-do .inner-container h3,
  .about-section .inner-container h3 {
    width: 100%;
  }
}

@media (max-width: 1600px) {
  .auto-scroll-wrapper {
    height: 450px;
  }
}

@media (max-width: 1000px) {
  .auto-scroll-wrapper {
    display: none !important;
  }

  .cta-content {
    max-width: 100% !important;
    flex-direction: column !important;
    padding: 40px 10px !important;
  }

  .cta-image {
    display: none !important;
  }
}

@media (min-width: 600px) and (max-width: 1200px) {
  .auto-scroll-wrapper {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h3 {
    font-size: 38px;
  }

  .hero__text {
    gap: 30px;
  }

  .clients__slider {
    width: 100%;
  }

  .feature-item {
    width: 100%;
  }

  .service-card {
    padding: 20px 0px;
  }

  .services-grid {
    gap: 0px;
    grid-template-columns: 2fr;
  }

  .trusted-partners {
    flex-direction: column;
    align-items: normal;
    height: auto;
    text-align: center;
    padding: 40px 0;
  }

  .testimonial__slider .owl-stage-outer {
    min-height: 420px;
  }

  .testimonial__item {
    width: 85%;
  }

  .footer-middle {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px !important;
  }

  .what-we-do .inner-container h3,
  .about-section .inner-container h3 {
    width: 100%;
  }

  .services-section {
    flex-direction: column;
  }

  .feature-item {
    width: 45%;
  }

  .services-right {
    height: 300px;
  }
}

.hero-content {
  text-align: center;
  /* max-width: 800px; */
  padding: 20% 20px;
}

.welcome-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.btn-explore {
  background: #a1bd5e;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-explore:hover {
  background: #7cb342;
  color: white;
  transform: translateY(-1px);
}

.btn-get-started {
  background: transparent;
  color: white;
  border: 2px solid #7cb342;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-get-started:hover {
  background: #7cb342;
  color: #333;
}

.stats-section {
  display: flex;
  align-items: center;
  gap: min(4vw, 48px);
  flex-wrap: wrap;
  margin: 40px 0;
  justify-content: center;
}

.stats-section .title {
  min-width: 260px;
}

.stats-section .title h3 {
  font-family: Helvetica;
  margin: 0.25rem 0 0.25rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.stats-section .label {
  font-size: 16px;
  color: #6b7280;
}

@media (max-width: 560px) {
  .stats-section .title {
    flex: 1 1 100%;
  }
}

.kpis {
  display: flex;
  gap: min(4vw, 48px);
  flex-wrap: wrap;
}

.kpi {
  position: relative;
  padding-left: 18px;
  min-width: 140px;
}

.kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 6px;
  width: 4px;
  border-radius: 2px;
  background: #ddd;
}

.kpi[data-accent="green"]::before {
  background: var(--green);
}

.kpi[data-accent="orange"]::before {
  background: var(--orange);
}

.kpi[data-accent="yellow"]::before {
  background: var(--yellow);
}

.kpi[data-accent="red"]::before {
  background: var(--red);
}

.value {
  font-family: Helvetica;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* Section wrapper */
.who {
  background: var(--bg);
  border-radius: 28px;
}

.eyebrow {
  text-align: center;
  font-weight: 700;
  /* font-family: Inter; */
  font-size: 18px;
  text-transform: uppercase;
  /* letter-spacing: .04em; */
  color: var(--orange);
  margin-bottom: 1rem;
}

.who .title {
  font-family: Helvetica;
  text-align: center;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.who .sub {
  text-align: center;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto 18px;
}

.cta {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16px, 3vw, 28px);
}

/* Card grid */
.grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(15, 1fr);
  align-items: end;
}

@media (max-width: 1080px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Base card */
.card {
  overflow: hidden;
  background: #fff;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.p-24 {
  padding: 24px;
}

.shadow-soft {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* --- Specific cards --- */

/* 1) Dark teal text + map bg */
.card-teal {
  height: 360px;
  background-image: url("../img/cta/1.png");
  grid-column: span 3;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.card-teal .map {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  opacity: 0.25;
  background: url("https://images.unsplash.com/photo-1526779259212-939e64788e3c?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
}

.card-teal h3 {
  font-size: clamp(16px, 2.4vw, 24px);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: #e9f6f5;
}

/* 2) Traveler photo */
.card-photo {
  grid-column: span 3;
  height: 316px;
  background-image: url("../img/cta/2.png");
  background-repeat: no-repeat;
  margin-bottom: 0;
  background-size: 100% 100%;
  border-radius: 20px;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3) White feature text card */
.card-feature {
  grid-column: span 3;
  border-radius: 20px;
  height: 290px;
}

.icon-pill {
  /* width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f4f6f4;
  display: flex;
  align-items: center;
  justify-content: center; */
  margin-bottom: 12px;
}

.feature-title {
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 0.5rem;
}

.feature-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

/* 4) Green plane card */
.card-plane {
  grid-column: span 3;
  background-image: url("../img/cta/3.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 24px;
  height: 268px;
  position: relative;
}

.card-plane h4 {
  font-weight: 800;
  color: #f3f8ef;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.plane-img {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(60%, 360px);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}

/* 5) Tall hikers photo */
.card-tall {
  height: 360px;
  background-image: url("../img/cta/4.png");
  grid-column: span 3;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 20px;
  margin-bottom: 0;
}

.card-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stack behaviour on small screens */
@media (max-width: 720px) {
  .card-teal,
  .card-photo,
  .card-feature,
  .card-plane,
  .card-tall {
    grid-column: span 4;
  }
}
.what-we-do-hero {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 0.95fr 0.95fr;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.what-we-do-hero h1 {
  font-family: Helvetica;
  font-size: clamp(30px, 5.2vw, 38px);
  font-weight: 700;
  margin: 0 0 12px;
}
.what-we-do-hero p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 16px;
  font-weight: 600;
}
.what-we-do-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.what-we-do-hero-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  /* filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.25)); */
}
.btn-ghost {
  background: white;
  color: #0b1308;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 40px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border: 1px solid var(--Brand-color, #819f3f);
}
.btn-ghost:hover {
  background: #f1f7e6;
}
.services-header {
  position: relative;
  text-align: center;
}
.services-header h2 {
  font-family: Helvetica;
  color: white;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(26px, 4.4vw, 38px);
}
.services-header p {
  margin: 0 auto 16px;
  color: white;
  font-size: 16px;
  line-height: normal;
  max-width: 650px;
}

.service-grid {
  position: relative;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 8px 6px;
}
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.services-card {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.services-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.services-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.services-card:hover img {
  transform: scale(1.04);
}
.services-card .pill {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.85rem 1rem;
  background: #f7f9f2;
  color: #0e1b14;
  border-radius: 16px;
  font-family: "Inter";
  font-weight: 500;
}
.services-card .go {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
}
/* .services-card .go svg {
  width: 18px;
  height: 18px;
} */
.airplane {
  transition: transform 0.5s ease;
  background-image: url("../img/services/1.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.airplane:hover {
  transform: scale(1.04);
}
.umrah {
  transition: transform 0.5s ease;
  background-image: url("../img/services/2.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.umrah:hover {
  transform: scale(1.04);
}
.money-transfer {
  transition: transform 0.5s ease;
  background-image: url("../img/services/3.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.money-transfer:hover {
  transform: scale(1.04);
}
.cargo {
  transition: transform 0.5s ease;
  background-image: url("../img/services/4.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.cargo:hover {
  transform: scale(1.04);
}

.money-transfer-hero {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 0.95fr 0.95fr;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.money-transfer-hero h1 {
  font-family: Helvetica;
  font-size: clamp(30px, 5.2vw, 38px);
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.money-transfer-hero p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 16px;
  font-weight: 600;
}
.money-transfer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.money-transfer-hero-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  /* filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.25)); */
}

.money-transfer-section .grid {
  display: grid;
  gap: 36px 48px;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  justify-items: center;
}
@media (max-width: 980px) {
  .money-transfer-section .grid {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }
}
@media (max-width: 720px) {
  .money-transfer-section .grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .money-transfer-section .grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

.money-transfer-section .item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 120px;
}
.money-transfer-section .flag {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}
.money-transfer-section .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.money-transfer-section .item:hover .flag {
  transform: translateY(-2px);
}
.money-transfer-section .label {
  line-height: 1.15;
}
.money-transfer-section .label .top {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.money-transfer-section .label .country {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-top: 4px;
}

.money-transfer-section .flag .uae {
  width: 70px;
  height: 60px;
  object-fit: fill;
  aspect-ratio: 1 / 1;
}

.explore-section {
  color: #fff;
}

.explore-head {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(320px, 680px) minmax(300px, 520px);
  margin-bottom: 26px;
}
@media (max-width: 980px) {
  .explore-head {
    grid-template-columns: 1fr;
  }
}

.explore-eyebrow {
  font-weight: 700;
  font-size: 18px;
  font-family: "Inter";
  /* letter-spacing: 0.06em; */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.explore-title {
  font-size: clamp(28px, 5vw, 38px);
  margin: 0;
  font-weight: 700;
  line-height: 41px;
  text-transform: uppercase;
  font-family: "Inter";
  color: white;
}
.explore-sub {
  margin: 30px 0 14px;
  color: #ffeedd;
  line-height: normal;
}

.explore-btn {
  cursor: pointer;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 40px;
  background: #121212;
  color: #fff;
}

.explore-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

.explore-card {
  background: #fff;
  color: #0d0d0d;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.explore-card img {
  height: 65px;
}
.explore-card-title {
  margin: 8px 0 10px;
  font-family: "Inter";
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  color: var(--orange);
}
.explore-card-text {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-family: "Inter";
}

/* ===== Testimonial Card ===== */
.tcard {
  --bg: #0b0b0b;
  --ink: #ffffff;
  --muted: #b5b5b5;
  --radius: 18px;

  display: grid;
  grid-template-columns: minmax(200px, 200px) 1fr;
  gap: 15px;
  align-items: stretch;
  background: white;
  color: var(--ink);
  border-radius: 24px;
  overflow: hidden;
}

/* Left photo */
/* .tcard__photo {
  margin: 0;
  background: #cfd8dc;
  position: relative;
} */
/* .tcard__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px 0 0 24px; 
} */

/* Right side */
.tcard__content {
  position: relative;
  padding: 14px 38px 0px;
  background-image: url("../img/background/testimonial-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Giant decorative quotes */
.tcard__content::before,
.tcard__content::after {
  content: "“";
  position: absolute;
  font-weight: 900;
  font-size: 220px;
  line-height: 0.7;
  color: #ffffff;
  opacity: 0.12;
  pointer-events: none;
}
.tcard__content::before {
  left: -8px;
  top: -22px;
  transform: rotate(0deg);
}
.tcard__content::after {
  content: "”";
  right: 20px;
  bottom: -40px;
  opacity: 0.18;
}

/* Quote text */
.tcard__quote {
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 8px 0 22px;
  line-height: 1.25;
  font-weight: 500;
  color: #1e1e1e; /* dim body */
  -webkit-text-stroke: 0.01px transparent; /* crisper on some screens */
}

/* Highlighted slice */
.tcard__highlight {
  font-family: Inter;
  font-size: 24px;
  background: var(--accent);
  color: white;
  padding: 0 0.28em;
  border-radius: 6px;
  display: inline;
  box-decoration-break: clone;
}

/* Author */
.tcard__author {
  color: #0f0f0f;
  font-weight: 700;
  font-size: 20px;
}

/* Responsive tweaks */
@media (max-width: 820px) {
  .tcard {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  /* .tcard__photo img {
    border-radius: 18px 18px 0 0;
  } */
  .tcard__content::before {
    font-size: 180px;
    top: -12px;
    left: -6px;
  }
  .tcard__content::after {
    font-size: 200px;
    right: 6px;
    bottom: -36px;
  }
  .tcard__quote {
    font-size: 22px;
  }
  .tcard__author {
    font-size: 18px;
  }
}
.umrah-hero {
  --overlayLeft: #a7dc4f; /* light green */
  --overlayMid: #129054; /* deep green */
  --overlayRight: #0d4f3d; /* dark teal */
  --text: #ffffff;
  --muted: #e7f6ee;
  --check: #b7ef6b;

  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 520px;
  color: var(--text);
  isolation: isolate;
}

/* Background image and gradient overlay */
.umrah-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--overlayLeft) 90%, transparent) 0%,
      color-mix(in srgb, var(--overlayMid) 85%, transparent) 40%,
      color-mix(in srgb, var(--overlayRight) 70%, transparent) 70%,
      transparent 100%
    ),
    url("https://images.unsplash.com/photo-1526404079166-76a76a067a0e?q=80&w=2000&auto=format&fit=crop")
      center/cover no-repeat;
  filter: saturate(0.95) contrast(0.95) brightness(0.9);
  z-index: -1;
}

/* content wrapper */
.umrah-hero__inner {
  display: grid;
  grid-template-columns: minmax(300px, 660px) 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 40px);
  min-height: 520px;
}

.umrah-hero__copy {
  max-width: 660px;
}

.umrah-hero__title {
  margin: 0 0 14px;
  /* line-height: 1.06; */
  letter-spacing: 0.01em;
  font-size: clamp(28px, 4.6vw, 38px);
  text-transform: uppercase;
  color: var(--white-bg, #fff);
  font-family: Inter;
  /* font-size: 44px; */
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.umrah-hero__lead {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.3;
  /* line-height: 1.6; */
  max-width: 58ch;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.umrah-hero__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 12px;
}
.umrah-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.umrah-hero__btn {
  cursor: pointer;
  background: #0f1110;
  color: #fff;
  padding: 8px 20px;
  border-radius: 40px;
  background: #121212;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* Play button on right */
.umrah-hero__play {
  justify-self: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.umrah-hero__play:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 980px) {
  .umrah-hero__inner {
    grid-template-columns: 1fr;
    place-items: start;
  }
  .umrah-hero__play {
    justify-self: end;
  }
}
.faq-head {
  /* padding-left: clamp(4px, 1vw, 12px); */
  text-align: start;
}
.faq-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.faq-title {
  margin: 0;
  line-height: 1.02;
  font-size: clamp(28px, 4.6vw, 38px);
  font-family: Helvetica;
  font-style: normal;
  font-weight: 700;
}
.marquee {
  background: #c9e960;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee__content {
  display: flex;
  gap: 24px; /* space between items */
}

.marquee__content span {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== Footer (ft-*) ===== */
.ft {
  --bg: #0c231a; /* dark green */
  --ink: #eaf3ec; /* light text */
  --muted: #b6c4bb; /* secondary text */
  --accent: #8fb34e; /* CTA green */
  --rule: #183327; /* subtle rule */
}

/* ---------- Top area ---------- */
.ft__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 36px 0px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1100px) {
  .ft__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .ft__top {
    grid-template-columns: 1fr;
  }
}

.ft__head {
  margin: 0 0 14px;
  /* font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 700; */
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.ft__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft__list li + li {
  margin-top: 10px;
}
.ft__list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
}
.ft__list a:hover {
  color: #fff;
}

.ft__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0;
}
.ft__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  color: #c5ddc9;
}
.ft__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.ft__text {
  color: var(--muted);
  /* line-height: 1.4; */
  font-size: 16px;
  text-decoration: none;
}
.ft__text a:hover {
  color: #fff;
}

.ft__cta {
  align-self: center;
  text-align: center;
  padding: 12px 10px;
}
.ft__ctaText {
  margin: 0 0 14px;
  color: #e9f6ee;
  font-size: 22px;
  font-weight: 600;
}
.ft__ctaBtn {
  display: inline-block;
  background: var(--accent);
  color: #0c231a;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
}
.ft__ctaBtn:hover {
  filter: brightness(0.95);
  color: var(--orange)
}

/* ---------- Bottom bar ---------- */
.ft__bottom {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #121212;
  color: black;
}
@media (max-width: 900px) {
  .ft__bottom {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

.ft__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFFB2;
}
.ft__logoMark {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 50%, #ff6 0 35%, transparent 36%),
    linear-gradient(135deg, #f36 0%, #f90 45%, #9c3 100%);
  box-shadow: 0 0 0 2px #1a3a2c inset;
}

.ft__links {
  display: flex;
  gap: 22px;
  font-family: 'Inter';
  font-weight: 500;
  color: #5C5C5C;
}
.ft__links a {
  color: var(--muted);
  text-decoration: none;
}
.ft__links a:hover {
  color: #fff;
}

.ft__social {
  display: flex;
  gap: 18px;
  font-family: 'Inter';
  font-weight: 600;
}
.ft__soc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
}
.ft__soc svg {
  width: 20px;
  height: 20px;
  fill: #cbd8d1;
}
.ft__soc:hover {
  color: var(--accent);
}
