:root {
  --white: #fff;

  --black: #000;

  --red: #370617;

  --dark-green: #d0402e;

  --green: #e56e5f;

  --orange-red: #eb5a29;

  --black-to-green: linear-gradient(45deg, var(--black), var(--green));

  --body-font: "Montserrat", sans-serif;

  --heading: "Roboto", serif;

  --alter-font: "Poppins", serif;
}

/* 

font-family: "Raleway", serif;

font-family: 'Montserrat', sans-serif;

font-family: "Poppins", serif;

font-family: "Roboto", serif;

*/

html,
body {
  overflow-x: hidden;

  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);

  -webkit-font-smoothing: antialiased;

  color: var(--black);
}

a {
  text-decoration: none !important;

  display: inline-block;

  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.3;
}

p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 15px;
  font-weight: 500;
}

p:last-of-type {
  margin-bottom: 0px;
}

.form-control,
.form-select {
  background: transparent;
  border: 0px;
  box-shadow: none;
  outline: none;
  border-radius: 0px;
}

.form-control:focus,
.form-select:focus {
  background: transparent;
  border: 0px;
  box-shadow: none !important;
  outline: none !important;
}

img {
  width: 100%;
  height: 100%;
}

.cursor {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(100%, 100%);
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  border: 2px solid #fff;
  transition: all 0.2s ease-out;
  animation: moveCursor1 0.5s infinite alternate;
}

.expand {
  background: transparent;
  animation: moveCursor2 0.5s forwards;
  border: 1px solid var(--green);
}

ul li {
  list-style: none;
}

@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(2.5);
  }

  100% {
    transform: scale(1);

    opacity: 0;
  }
}

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

.sec-space-40 {
  padding: 40px 0;
}

.sec-space {
  padding: 80px 0;
}

.sec-space-top {
  padding: 80px 0 0;
}

.sec-space-bottom {
  padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  padding-bottom: 20px;
  position: relative;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: var(--dark-green);
}

.section-head p {
  margin-top: 20px;
}

.section-head h3 {
  font-size: 15px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
}

/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
  font-size: 14px;
  border-radius: 0px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: none !important;
}

.btn-solid,
.btn-submit {
  background: var(--dark-green);
  color: #fff;
  transition: all 0.5s;
  border-radius: 25px;
}

.btn-submit:hover,
.btn-solid:hover {
  color: var(--white);
  background: var(--black);
  transition: all 0.5s;
}

.btn-submit {
  padding: 7px 30px;
  border: 0px;
}

/*--- Button End ---*/

/*=== Common Css End ===*/

/*--- Animation Start ---*/

@-webkit-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

/*--- Animation End ---*/

/* header {

  position: absolute;

  width: 100%;

  left: 0;

  top: 0;

  z-index: 999;

  background: var(--white);

} */

/*--- Header Start ---*/

/* .navbar.header-show {

  position: fixed;

  background: var(--white);

  top: 0;

  z-index: 999;

  width: 100%;

  -webkit-animation-name: animationFade;

  -o-animation-name: animationFade;

  animation-name: animationFade;

  -webkit-animation-duration: 1s;

  -o-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: both;

  -o-animation-fill-mode: both;

  animation-fill-mode: both;

  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,

    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

} */

.logo {
  background: #ebe2e3;
  flex: 0 0 500px;
  text-align: center;
}

.navbar-brand {
  margin: 0;
  width: 340px;
}

.navbar-brand span {
  color: var(--white) !important;
}

.navbar {
  padding: 0px;
}

.main-header {
  width: 100%;
}

.navigation-bar {
  flex: 0 0 calc(100% - 500px);
}

.topbar {
  background: #ebe2e3;
}

.leftbar ul li {
  margin-right: 40px;
}

.leftbar ul li:last-child {
  margin-right: 0px;
}

.leftbar ul li a {
  color: #000;

  font-weight: 400;

  position: relative;

  padding-left: 35px;

  font-size: 15px;

  font-family: var(--heading);
}

.leftbar ul li a span {
  position: absolute;

  left: 0;

  top: -1px;

  font-size: 23px;

  font-weight: normal;

  color: var(--dark-green);

  width: 28px;

  height: 28px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;
}

.header-social li {
  margin-right: 20px;
}

.header-social li a {
  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: var(--white);

  color: var(--dark-green);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 15px;
}

.navbar-collapse ul>li {
  position: relative;
}

.navbar-collapse ul>li>a {
  padding: 24px 15px !important;

  color: var(--black) !important;

  font-weight: 500;

  position: relative;

  z-index: 9;

  font-size: 16px;

  font-family: "Poppins", serif;

  text-transform: uppercase;
}

.navbar-collapse ul>li>a span {
  font-size: 14px;

  color: #008000;

  position: relative;

  transform: translateX(-2px) translateY(-2px);
}

.navbar-collapse ul>li>a.active {
  color: var(--green) !important;
}

.navbar-collapse ul>li>a:hover {
  color: var(--green) !important;
}

.navbar-collapse ul>li>a::after {
  position: absolute;

  left: 0;

  top: 0;

  content: "";

  background: var(--white);

  width: 100%;

  height: 0px;

  transition: all 0.5s;

  z-index: -1;
}

.dropdown-links {
  position: absolute;

  width: 220px;

  background: var(--white);

  top: 100%;

  left: 0;

  z-index: 999;

  border-top: 1px solid #dedede;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-30px);

  transition: all 0.6s;
}

.navbar-collapse ul>li:hover>.dropdown-links {
  transform: translateY(0);

  opacity: 1;

  visibility: visible;
}

.dropdown-links ul li a {
  text-transform: capitalize;

  font-size: 15px;

  width: 100%;

  position: relative;

  z-index: 1;

  transition: all 0.5s;

  padding: 17px 20px !important;
}

.dropdown-links ul li a::before {
  position: absolute;

  left: 0;

  top: 0;

  width: 0%;

  height: 100%;

  background: var(--dark-green);

  content: "";

  transition: all 0.5s;
}

.dropdown-links ul li a::after {
  position: absolute;

  left: 0px;

  top: 0;

  width: 2px;

  height: 0%;

  background: #dd0000;

  content: "";

  transition: all 0.5s;
}

.dropdown-links ul li a:hover::before {
  width: 100%;

  z-index: -1;

  transition: all 0.5s;
}

.dropdown-links ul li a:hover::after {
  height: 100%;

  z-index: -1;

  transition: all 1.3s;
}

.dropdown-links ul li a:hover {
  color: var(--white) !important;

  transition: all 0.5s;
}

.navbar-text {
  padding: 7px 0px;
}

.btn-header {
  position: relative;

  height: 48px;
  line-height: 48px;

  border-radius: 30px;

  color: var(--white);

  padding: 0 30px;

  border: 0px;

  background: var(--dark-green);

  z-index: 9;

  overflow: hidden;

  transition: all 0.5s;
}

.banner-text .btn:hover,
.btn-header:hover {
  color: #fff;

  transition: all 1s;
}

.banner-text .btn::before,
.btn-header::before {
  position: absolute;

  right: 0;

  top: 0;

  width: 0%;

  height: 104%;

  content: "";

  background: linear-gradient(90deg, #002b41, #a52012);

  z-index: -1;

  transition: all 1s;
}

.banner-text .btn:hover::before,
.btn-header:hover::before {
  width: 105%;

  left: 0;

  right: auto;

  transition: all 1s;
}

/* .btn-header::after {

  position: absolute;

  left: 0;

  top: 0;

  width: 0%;

  height: 100%;

  content: '';

  background: var(--blue-to-green);

  z-index: 1;

} */

/*=== Header End ===*/

/*--- Banner Start ---*/

.home-slider {
  position: relative;
}

.carousel {
  position: relative;
}

.carousel-item {
  height: auto;
}

.carousel-bg {
  height: 100%;
}

/* .carousel-item::before {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(4, 40, 0, 1) 0%,
    rgba(227, 255, 228, 0.04525560224089631) 93%
  );

  z-index: 1;

  content: "";
} */

.carousel-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dr-image {
  position: absolute;
  bottom: -2px;
  right: 10%;
}

.banner-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  z-index: 99;
}

.tagline-banner {
  background: #ffffff;
  margin-bottom: 15px;
  color: #0e4b00;
  padding: 7px 15px;
  width: fit-content;
  font-family: var(--alter-font);
}

.banner-text {
  max-width: 700px;
}

.banner-text h1 {
  color: var(--white);
  font-size: 54px;
  line-height: 64px;
  font-family: var(--heading);
  font-weight: 700;
}

.banner-text p {
  font-size: 17px;
  line-height: 28px;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: 400;
}

.banner-text .btn {
  padding: 20px 35px;
  border-radius: 50px;
  margin-top: 5px;
  background: var(--white);
  color: var(--dark-green);
  box-shadow: none !important;
  position: relative;
  z-index: 9;
  overflow: hidden;
  transition: all 1s;
  border: 0px;
  box-shadow: none !important;
}

.banner-text .btn:hover {
  background: var(--dark-green);
  transition: all 1s;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  left: 0;
  width: 40px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 24px;
  opacity: 0.5;
}

.carousel-control-next {
  right: 0;
  left: auto;
}

/*--- Banner End ---*/

/* Service Lists Home Start  */

.service-list-home {
  position: relative;
  z-index: 99;
}

.service-list-home::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/Map.svg) repeat-x center;
  background-size: cover;
  content: "";
  z-index: -2;
  opacity: 0.2;
  filter: grayscale(1);
}

.service-list-home::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 236, 236, 0.2);
  content: "";
  z-index: -1;
}

.slh-box {
  background: var(--white);

  padding: 50px 40px;

  background: #fff;

  transition: all 0.7s;

  overflow: hidden;

  z-index: 9;
}

.slh-box:hover {
  color: var(--white);

  transition: all 0.7s;
}

.slh-box::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 127px;

  height: 100%;

  background-color: var(--green);

  transform: skewX(-30deg);

  transform-origin: top right;

  transition: all 0.4s ease;

  z-index: 1;
}

.slh-box:hover::before {
  width: 150%;
}

.slh-box::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 0;

  height: 100%;

  background-color: var(--dark-green);

  transform: skewX(-30deg);

  transform-origin: top right;

  transition: all 0.4s ease;

  z-index: 3;
}

.slh-box:hover::after {
  width: 127px;
}

.slh-icon {
  position: relative;

  width: 90px;

  height: 90px;

  flex: 0 0 90px;

  background: var(--white);

  border: 1px dashed var(--green);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 15px;

  margin-right: 20px;

  z-index: 9;
}

.slh-content h4 {
  font-size: 18px;

  font-weight: 600;

  color: var(--dark-green);

  font-family: var(--heading);

  z-index: 9;

  position: relative;
}

.slh-content p {
  z-index: 9;

  position: relative;
}

.slh-box:hover .slh-content h4 {
  color: var(--white);

  transition: all 0.3s;
}

.slh-box:hover .slh-content p {
  color: var(--white);

  transition: all 0.3s ease;
}

.slh-content::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 200px;

  height: 100%;

  background-color: #f5f5f5;

  transform: skewX(50deg);

  transform-origin: bottom right;

  transition: all 0.4s ease;

  z-index: -1;
}

.slh-content::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0px;

  height: 100%;

  background-color: var(--dark-green);

  opacity: 0.1;

  transform: skewX(50deg);

  transform-origin: bottom right;

  transition: all 0.4s ease;

  z-index: 1;
}

.slh-box:hover .slh-content::after {
  width: 200px;

  transition: all 0.4s ease;
}

.call-cover {
  position: relative;

  z-index: 9;
}

.call-cover h1 {
  padding: 0 55px;

  border: 1px solid var(--dark-green);

  font-size: 18px;

  color: #000;

  height: 65px;

  line-height: 65px;

  background: rgba(255 255 255 / 0.8);

  font-family: var();
}

.call-cover h1 span a {
  color: var(--green);
}

.call-cover:hover h1 span a {
  color: var(--dark-green);
}

.btn-solid-green {
  background: var(--dark-green);

  color: var(--white);

  font-family: var(--heading);
}

.call-cover .btn {
  height: 65px;

  line-height: 65px;

  padding: 0 35px;

  font-size: 17px;

  font-family: var(--heading);

  position: relative;

  transition: all 0.5s ease;
}

.btn-solid-green:hover {
  background: var(--black);

  color: var(--white);

  transition: all 0.5s ease;
}

.call-cover .btn span {
  position: absolute;

  left: -26px;

  top: 6px;

  width: 50px;

  height: 50px;

  background: var(--green);

  border-radius: 50%;

  line-height: 50px;
}

.call-cover .btn span img {
  width: 30px;

  height: 30px;
}

/* Service Lists Home End  */

/*--- About Home Start ---*/

.about-content {
  height: 100%;

  padding: 0 0 0 40px;

  position: relative;
}

.about-home-image {
  position: sticky;
  top: 0;
}

.about-home-image img {
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: var(--white) !important;
}

.company-support {
  margin-top: 40px;

  padding-top: 40px;

  border-top: 1px solid #dedede;
}

.company-support ul li {
  margin-bottom: 20px;

  font-weight: 600;

  padding-left: 30px;

  position: relative;
}

.company-support ul li:last-child {
  margin-bottom: 0px;
}

.company-support ul li::before {
  width: 16px;

  height: 16px;

  content: "\f469";

  color: #d0402e;

  left: 0;

  top: 0;

  font-family: "Font Awesome 6 Pro";

  position: absolute;
}

.company-support-detail {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #dedede;
}

.company-support-detail ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 66px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.company-support-detail ul li span {
  font-weight: 600;
  display: block;
  font-size: 17px;
}

.company-support-detail ul li:last-child {
  margin-bottom: 0px;
}

.company-support-detail ul li strong {
  color: #d0402e;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  font-size: 23px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cs-box {
  width: 100%;

  overflow: hidden;

  border-radius: 7px;
}

.cs-box img {
  object-fit: cover;

  height: 180px;
}

.btn-story {
  padding: 18px 35px;
}

.ab-icon {
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -45%);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid rgba(255, 255, 255, 0.3);
}

.play-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.play-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  line-height: 58px;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  z-index: 1;
  transition: all 0.5s;
}

.play-btn i {
  margin-left: 3px;
}

.play-btn:hover {
  color: var(--white);
}

.play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*--- About Home End ---*/

/*--- Service Home Start ---*/

.our-treatments {
  background: #f9f9f9;
  z-index: 1;
}

.our-treatments::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: #ffd9d4db;
  content: "";
}

.our-treatments::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: url(../images/service-bg.webp) no-repeat center;
  background-size: cover;
  content: "";
  z-index: -1;
  opacity: 0.5;
}

.service-home-box {
  background: var(--white);
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.service-home-content {
  padding: 15px;
  position: relative;
  margin-top: -45px;
}

.service-box-head {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 15px 25px;
  margin-bottom: 15px;
}

.service-title span {
  font-size: 16px;
  margin-bottom: 5px;
  font-family: var(--heading);
}

.service-title a {
  color: var(--black);
  font-weight: 600;
}

.service-icon {
  flex: 0 0 70px;
  background: var(--white);
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.service-icon img {
  filter: hue-rotate(-122.13deg) saturate(63.78%) brightness(127.06%);
  transition: all 0.5s;
}

.service-home-box:hover .service-icon {
  background: var(--green);
  transition: all 0.5s;
}

.service-home-box:hover .service-icon img {
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}

.btn-service {
  color: var(--black);
  border-top: 1px solid #dedede;
  width: 100%;
  text-align: left;
  padding: 15px 0 0;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading);
  text-transform: uppercase;
  transition: all 0.5s;
}

.btn-service span {
  color: var(--green);

  margin-left: 7px;

  transition: all 0.5s;

  display: inline-block;
}

.service-home-box:hover .btn-service span {
  transform: rotate(45deg);

  transition: all 0.5s;
}

.btn-service:hover {
  color: #008931;
}

/*--- Service Home End ---*/

/* --- Destination Start --- */

.destinations {
  position: relative;

  padding-bottom: 300px;
}

.destinations::before {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 400px;

  background: url(../images/city.png) no-repeat center;

  background-size: cover;

  content: "";

  opacity: 0.3;
  z-index: -1;
}

.country-box {
  position: relative;

  padding: 20px;

  background: var(--white);

  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

  transition: all 0.5s ease;
}

.country-box:hover {
  background: var(--dark-green);

  transition: all 0.5s ease;
}

.country-box-content {
  margin-top: 20px;
  height: 600px;
  padding-top: 20px;
  text-align: justify;

  border-top: 1px dashed #dedede;
}

.destination-link {
  position: absolute;

  top: 0;

  right: 0;

  background: var(--green);

  color: var(--white);

  width: 40px;

  height: 40px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.destination-link:hover {
  color: var(--white);
}

.flag {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  border: 2px solid var(--white);

  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

  overflow: hidden;

  transition: all 0.5s ease;
}

.flag img {
  object-fit: cover;
}

.country-box-head h6 {
  margin-left: 15px;

  font-size: 18px;
}

.country-box:hover .country-box-head h6 {
  color: var(--white);

  transition: all 0.5s ease;
}

.country-box:hover .country-box-content p {
  color: #dedede;

  transition: all 0.5s ease;
}

.country-box:hover .flag {
  transform: rotate(360deg);

  transition: all 0.5s ease;
}

/* --- Destination End --- */

/* --- Visa Process Start --- */

.visa-process-box {
  position: relative;
}

.visa-process-icon {
  width: 120px;

  height: 120px;

  border-radius: 50%;

  border: 2px dotted var(--green);

  background: var(--white);

  padding: 35px;

  margin: 0 auto 30px;

  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.visa-process-content {
  padding: 35px 15px;

  text-align: center;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

  border-radius: 15px;
}

.visa-process-content span {
  text-transform: uppercase;

  font-size: 16px;

  color: var(--green);

  margin-bottom: 8px;

  font-family: "Poppins", serif;

  font-weight: 600;
}

.visa-process-content h6 {
  font-size: 20px;
}

/* Visa Process End  */

/* --- Company Stats Start --- */

.bg-company-stat {
  padding: 50px 40px 0;

  background: #f5f5f5;

  position: relative;

  border-top: 4px solid var(--dark-green);

  z-index: 1;
}

.bg-company-stat::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/City.svg) no-repeat center;
  background-size: cover;
  content: "";
  opacity: 0.2;
  z-index: -2;
}

.bg-company-stat::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 214, 214, 0.3);
  content: "";
  z-index: -1;
}

.desti-link {
  color: var(--green);
  font-family: var(--alter-font);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.5s;
}

.desti-link:hover {
  color: #d970a4;
  transition: all 0.5s;
}

.desti-link span {
  position: absolute;
  color: var(--green);
  transition: all 0.5s;
}

.desti-link:hover span {
  color: #d970a4;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all 0.5s;
}

.stat-content h2 {
  font-size: 48px;
  line-height: 48px;
  font-family: var(--heading);
  font-weight: 800;
}

.stat-icon {
  flex: 0 0 90px;
  border-radius: 50%;
  height: 90px;
  margin-right: 20px;
  background: var(--white);
  padding: 20px;
}

/* .stat-icon img {
  filter: hue-rotate(-122.13deg) saturate(63.78%) brightness(127.06%);
} */

.statistic-box {
  padding: 25px 0;

  border-bottom: 1px dotted #dedede;
}

.statistic-box:last-child {
  border-bottom: 0px dotted #dedede;
}

.statistic-box:first-child {
  padding-top: 0px;
}

/* --- Company Stats End --- */

/* --- Testimonial Start --- */

.testimonial {}

.testimonial .section-head {
  margin-top: 40px;
}

.testimonial .section-head p {
  color: #dedede;
}

.slider-testimonial {
  position: absolute;

  width: 60%;
}

.testimonial-box {
  padding: 60px 25px 35px;

  position: relative;
  height: 500px;
  z-index: 1;
}

.testimonial-box::before {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: calc(100% - 60px);

  background: var(--white);

  content: "";

  z-index: -1;
}

.testimonial-box::after {
  position: absolute;

  left: 0;

  top: 22px;

  width: 100%;

  height: 40px;

  background: var(--white);

  content: "";

  z-index: -1;

  clip-path: polygon(50% 128%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.reviewer-image {
  margin: -50px auto 20px;

  width: 100px;

  height: 100px;

  border: 2px solid var(--green);

  border-radius: 50%;

  overflow: hidden;
  background: var(--white);
}

.reviewer-image img {
  object-fit: cover;
}

.testimonial::before {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: url(../images/banner.png);

  content: "";

  z-index: -1;
}

.testimonial::after {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: rgb(79 33 27);

  content: "";

  z-index: -1;
}

.testimonial-content p {
  margin: 15px 0;
  height: 140px;
  overflow-y: auto;
}

.testimonial-content p::-webkit-scrollbar {
  width: 3px;
}

.testimonial-content p::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.testimonial-content p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--dark-green);
}

.testimonial-content p::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

.testimonial-content h6 {
  font-weight: 600;

  font-size: 18px;

  font-family: var(--alter-font);
}

.testimonial-rating li {
  color: goldenrod;
}

.reviewer-name {
  font-size: 20px;

  font-family: var(--alter-font);

  color: var(--black);

  margin-bottom: 0px;

  font-weight: 600;
}

.reviewer-designation {
  color: var(--green);

  font-size: 15px;

  font-weight: 600;
}

.slider-testimonial .owl-nav {
  width: 120px;
  display: flex;
  position: absolute;
  bottom: 0;
  transform: translateY(0%);
  left: -408px;
}

.slider-testimonial .owl-nav .owl-prev,
.slider-testimonial .owl-nav .owl-next {
  background: var(--white) !important;

  display: flex;

  justify-content: center;

  align-items: center;

  width: 48px;

  height: 48px;

  color: var(--green) !important;

  border-radius: 50%;

  transition: all 0.5s;
}

.slider-testimonial .owl-nav .owl-prev:hover,
.slider-testimonial .owl-nav .owl-next:hover {
  background: var(--green) !important;

  color: var(--white) !important;

  transition: all 0.5s;
}

/* --- Testimonial End --- */

/* --- Blog Listing Start --- */

.blog-image {
  position: relative;
}

.blog-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

  position: relative;
}

.blog-date {
  position: absolute;

  bottom: -26px;

  left: 20px;

  text-align: center;

  font-family: var(--alter-font);
}

.blog-date span:nth-child(1) {
  color: var(--white);

  background: var(--green);

  width: 100%;

  height: 60px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 22px;

  font-weight: 600;
}

.blog-date span:nth-child(2) {
  color: var(--black);

  background: #f5f5f5;

  width: 40px;

  padding: 5px 10px;

  font-weight: 400;

  font-size: 13px;
}

.blog-content {
  padding: 40px 20px 15px;

  background: var(--white);
}

.blog-author {
  font-size: 13px;

  font-weight: 500;

  margin: 10px 0;

  color: #575757;
}

.blog-author span {
  color: var(--green);

  margin-right: 4px;
}

.blog-thumb-title h5 {
  color: var(--black);

  font-size: 22px;

  line-height: 34px;

  transition: all 0.5s ease;
}

.read-btn {
  margin: 10px 0;

  color: var(--black);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;
}

.read-btn span {
  margin-left: 5px;

  color: var(--green);
}

.read-btn:hover {
  color: #009b00;
}

.blog-box:hover .blog-thumb-title h5 {
  color: var(--green);

  transition: all 0.5s ease;
}

/* --- Blog Listing End --- */

/* --- Owl Navigation Start --- */

.slider-diag .owl-nav {
  position: absolute;

  right: 0;

  left: auto;

  top: -170px;

  bottom: auto;
}

.slider-diag .owl-nav .owl-prev,
.slider-diag .owl-nav .owl-next {
  width: 44px;

  height: 44px;

  border-radius: 50%;

  border: 1px solid var(--red) !important;

  line-height: 44px !important;

  text-align: center;

  position: relative;

  z-index: 1;

  background: transparent !important;

  font-size: 17px !important;

  color: var(--red) !important;

  overflow: hidden;
}

.slider-diag .owl-nav .owl-prev::after,
.slider-diag .owl-nav .owl-next::before {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  background: var(--red);

  width: 4px;

  height: 4px;

  content: "";

  opacity: 0;

  z-index: -1;

  transition: all 0.3s;

  border-radius: 50%;
}

.slider-diag .owl-nav .owl-prev:hover::after,
.slider-diag .owl-nav .owl-next:hover::before {
  width: 100%;

  height: 100%;

  opacity: 1;

  transition: all 0.3s;
}

.slider-diag .owl-nav .owl-prev:hover,
.slider-diag .owl-nav .owl-next:hover {
  color: var(--white) !important;
}

/* --- Owl Navigation End --- */

/* --- Home Contact Start --- */

.home-contact {
  position: relative;

  z-index: 1;

  margin-top: -150px;

  padding-bottom: 150px;
}

.home-contact::before {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: calc(100% - 150px);

  content: "";

  background: rgb(208 64 46 / 51%);

  z-index: -1;
}

.home-contact .home-contact-video {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: calc(100% - 150px);

  z-index: -2;

  opacity: 0.8;

  object-fit: cover;
}

.home-contact-image {
  height: 650px;
}

.video-title {
  position: absolute;

  left: 0;

  top: 20%;

  width: 100%;

  padding: 30px;

  text-align: center;

  z-index: 9;
}

.video-title h6 {
  background: #000000b8;

  font-size: 26px;

  line-height: 42px;

  padding: 15px 0;
  color: var(--white);
}

.hcontact-form {
  padding: 60px 70px 60px 70px;

  background: #f5f5f5;

  border-right: 10px solid var(--green);

  height: 100%;
}

.hcontact-form .btn {
  border-radius: 5px;

  width: 100%;
}

.hcontact-form .section-head h2 {
  font-size: 40px;
}

.hcontact-form .section-head p {
  font-size: 18px;

  font-weight: 500;

  margin: 15px 0 25px;
}

.hcontact-form textarea {
  font-size: 16px;
  font-weight: 500;
  height: 150px;
}

.hcontact-form input,
.hcontact-form .form-select {
  height: 56px;

  font-weight: 500;

  font-size: 16px;
}

.hcontact-form input::placeholder,
.hcontact-form textarea::placeholder,
.hcontact-form .form-select {
  font-size: 14px;
}

.hcontact-form input,
.hcontact-form textarea,
.hcontact-form .form-select {
  background: var(--white) !important;
  border: 0px !important;
}

.hcontact-form .btn-submit {
  margin-top: 20px;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  background: var(--dark-green) !important;
}

/* --- Home Contact End --- */

/* --- News Letter Start --- */

.newsletter-box {
  position: relative;

  padding: 80px 80px;

  border-radius: 30px;

  overflow: hidden;

  z-index: 1;

  background: linear-gradient(180deg, #f9f4f0 0%, #f9f4f0 100%);
}

.newsletter-box::before {
  position: absolute;

  left: 0;

  top: 0;

  width: 330px;

  height: 100%;

  background: url(../images/newsletter-element2.png) no-repeat center;

  content: "";

  object-fit: cover;

  background-size: 100% 100%;
}

.newsletter-box::after {
  position: absolute;

  right: 0;

  top: 0;

  width: 420px;

  height: 100%;

  background: url(../images/newsletter-element1.png) no-repeat center;

  content: "";

  object-fit: cover;

  background-size: 100% 100%;
}

.newsletter-box .single-input {
  max-width: 550px;

  border: 1px solid var(--green);

  border-radius: 10px;

  overflow: hidden;

  display: flex;

  margin: 25px auto 0;
}

.newsletter-box .single-input input.form-control {
  height: 48px;

  border: 0px !important;

  margin: 0px;
}

.newsletter-btn {
  flex: 0 0 auto;

  width: 60px;

  height: 48px;

  background: var(--green);

  color: var(--white);

  line-height: 48px;

  padding: 0 10px;

  border: 0px;
}

/* --- News Letter End --- */

/* --- Footer Start   --- */

.footer-main {
  background: #ebe2e3;
  position: relative;
  padding: 80px 0 0;
}

.footer-about {
  padding-right: 60px;
}

.ft-logo img {
  width: 250px;

  height: auto;
}

.ft-text {
  padding: 30px 0 30px;

  margin-bottom: 25px;

  position: relative;
}

.ft-text p {
  color: #000;
}

/* 

.ft-text:before {

  position: absolute;

  width: 120px;

  height: 1px;

  background: #666;

  content: "";

  left: 0;

  bottom: 0;

} */

.link-box h4 {
  font-size: 22px;

  text-transform: capitalize;

  color: 000;

  font-weight: 500;

  padding-bottom: 25px;

  font-family: var(--heading);

  position: relative;
}

.link-box h4::before {
  position: absolute;

  left: 0;

  bottom: 10px;

  background: #666;

  width: 30px;

  height: 1px;

  content: "";
}

.link-box ul {
  list-style: none;
  padding-left: 0px;
}

#menu-footer-menu {
  column-count: 2;
}

.link-box ul li {
  margin-bottom: 10px;

  position: relative;

  font-weight: 500;

  color: #000;

  transition: all 0.3s;
}

.link-box ul li a {
  color: #000;

  font-weight: 400;

  transition: all 0.3s;

  padding: 5px 0;

  font-size: 16px;

  font-family: var(--heading);

  position: relative;
}

.link-box ul li a:hover {
  color: var(--green);

  transition: all 0.3s;
}

.footer-contact ul li a {
  padding-left: 40px;
}

.footer-contact ul li a::before {
  left: 0;

  top: 7px;

  position: absolute;

  font-family: "Font Awesome 6 Pro";
}

.footer-contact ul li a.fc-address::before {
  content: "\f3c5";

  font-size: 22px;
}

.footer-contact ul li a.fc-call::before {
  content: "\f590";

  font-size: 22px;

  top: 1px;
}

.footer-contact ul li a.fc-telephone::before {
  content: "\f8d3";

  font-size: 20px;

  top: 0px;
}

.footer-contact ul li a.fc-email::before {
  content: "\f0e0";

  font-size: 20px;

  top: 0px;
}

.copyright {
  border-top: 1px solid #461111;
  padding: 10px 0;
  font-size: 14px;
  margin-top: 30px;
  background: #290a06;
}

.copyright p {
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 0px;
}

.copyright p a {
  color: #ff9b8e;
}

.copyright p span {
  font-weight: 600;
}

.ft-social-media ul li {
  margin-right: 10px;
  padding-left: 0px;
}

.ft-social-media ul li a {
  font-size: 17px;

  display: inline-block;

  width: 40px;

  height: 40px;

  line-height: 40px;

  background: var(--white);

  border-radius: 50%;

  text-align: center;

  padding: 0px;

  color: #0b0c54;
}

/*--- Footer End   ---*/

/*-- CMS BANNER Start  --*/

.cms-bann-img {
  height: auto;

  overflow: hidden;

  z-index: 1;
}

.cms-banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* .cms-bann-img::before {

  background: rgba(0, 92, 8, 0.3);

  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  content: '';

} */

/*--- CMS Banner End  ---*/

/*--- Breadcrumb Start  ---*/

.breadcrumb-cover {
  position: relative;
  padding: 40px 30px;
  color: #fff;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 20%, rgba(255, 120, 90, .25), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 180, 120, .15), transparent 40%),
    linear-gradient(135deg, #290a06 0%, #4c0f0a 50%, #290a06 100%);
}

/* subtle pattern overlay */
.breadcrumb-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}


.breadcrumb-cover h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
}

.breadcrumb-cover .press {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 30px;
  color: var(--white);
}

.breadcrumb {
  margin-bottom: 0px;
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}

.breadcrumb li {
  font-size: 16px;
  font-weight: 500;
  color: #777;
}

.breadcrumb li:first-child {
  padding-left: 0px;
}

.breadcrumb li:last-child {
  padding-right: 0px;
}

.breadcrumb a {
  color: var(--green);
}

/*--- Breadcrumb End ---*/

/* FAQ Start  */

.faq-image {
  margin-right: 30px;

  border-radius: 15px;

  height: 100%;

  overflow: hidden;
}

.faq-image img {
  object-fit: cover;
}

.faq-content {
  padding-left: 30px;
}

.accordion-faq,
.accordion-faq .accordion-header,
.accordion-faq .accordion-item {
  border: 0px;
}

.accordion-faq .accordion-item {
  margin-bottom: 20px;
}

.accordion-faq .accordion-button {
  font-weight: 500;

  color: #0b0c54;

  font-size: 17px;

  background: #fff;

  border-radius: 0px !important;

  box-shadow: none !important;

  outline: none !important;

  border-bottom: 1px solid #dedede;

  padding: 15px 40px 15px 0px;
}

.accordion-faq .accordion-button::after {
  position: absolute;

  right: 0;

  top: 15px;

  content: "\2b";

  background-image: none;

  font-size: 26px;

  height: 24px;

  width: 24px;

  line-height: 24px;

  padding: 0;

  margin: 0;

  text-align: center;

  color: var(--red);
}

.accordion-faq .accordion-body {
  font-weight: 500;

  font-size: 14px;

  padding: 15px 0;
}

.faq .section-head h6 {
  width: fit-content;

  margin: 0 auto 8px;
}

.accordion-faq .accordion-button:not(.collapsed)::after {
  background-image: none;

  content: "\f068";

  font-family: "Font Awesome 6 Pro";

  font-size: 19px;

  color: #0b0c54;
}

/* FAQ End  */

/* --- Contact Us  Start --- */

.contact-info h3 {
  font-size: 28px;

  color: #0b0c54;

  padding-bottom: 25px;

  position: relative;

  width: fit-content;

  font-family: var(--heading);

  font-weight: 700;
}

.ci-icon {
  height: 44px;

  width: 44px;

  text-align: center;

  line-height: 44px;

  font-size: 20px;

  border: 1px solid var(--red);

  border-radius: 50%;

  display: inline-block;

  flex: 0 0 44px;

  color: var(--red);
}

.ci-wrap {
  margin-bottom: 30px;
}

.ci-content h6 {
  font-weight: 600;

  font-size: 18px;

  color: #000;

  margin-bottom: 5px;
}

.ci-content p a {
  color: #000;
}

.contact-info .ci-wrap:last-child {
  margin-bottom: 0px;
}

.con-map {
  height: 100%;
}

.con-map iframe {
  height: 400px;

  width: 100%;

  object-fit: cover;
}

.single-input input.form-control,
.single-input input.form-select {
  border: 1px solid var(--black);

  height: 56px;

  line-height: 56px;

  margin-bottom: 15px;

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

.single-input textarea.form-control {
  border: 1px solid var(--black);

  height: 130px;
}

.single-input textarea.form-control:focus {
  border: 1px solid var(--black);

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

/*----   Contact Us  End  ---*/

/* --- About Main Start ---  */

.about-images {
  padding: 0 100px 50px 0;
}

.about-images img {
  object-fit: cover;
}

.about-images .alter-image {
  height: 60%;

  width: 60%;

  border: 6px solid var(--white);

  object-fit: cover;
}

.client-stats {
  background: var(--white);

  padding: 12px;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

  left: 10px;

  bottom: 0;
}

.client-image {
  margin-right: 15px;
}

.client-image img {
  flex: 0 0 80px;

  height: 80px;

  margin-right: 15px;
}

.client-count h2 {
  color: var(--green);

  font-size: 28px;

  line-height: 28px;

  margin-bottom: 5px;

  font-family: var(--alter-font);

  font-weight: 700;
}

.client-count p {
  color: var(--dark-green);

  text-transform: uppercase;

  font-size: 16px;

  font-weight: 600;
}

.about-images::before {
  position: absolute;

  right: 65px;

  top: 0;

  height: 35%;

  width: 10px;

  background: var(--green);

  content: "";
}

.about-destination {
  position: relative;

  font-size: 18px;

  font-weight: 600;

  line-height: 28px;

  font-family: var(--heading);

  color: var(--dark-green);

  padding: 25px 25px;

  height: 100%;

  background: url(../images/elemnt-about.webp) no-repeat center;

  background-size: cover;

  z-index: 1;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.about-destination::before {
  background: rgba(255 255 255 / 0.85);

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  content: "";

  z-index: -1;

  border-top: 4px solid var(--green);
}

.about-destination a {
  color: #9f9f9f;

  font-size: 15px;
}

/* --- About Main End ---  */

/* --- Mission Vision Start --- */

.mission-vision {
  background: #f9f9f9;
}

.mv-cover .nav-tabs {
  border: 0px;

  margin-bottom: 1px;
}

.mv-image img {
  object-fit: cover;
}

.mv-cover .nav-tabs .nav-link.active,
.mv-cover .nav-tabs .nav-item.show .nav-link {
  color: var(--white);

  background-color: var(--green);

  border-color: transparent;
}

.mv-cover .nav-tabs .nav-link {
  min-width: 140px;

  font-size: 16px;

  font-family: var(--alter-font);

  font-weight: 500;

  text-transform: uppercase;

  border-radius: 0px;

  height: 60px;

  letter-spacing: 1px;

  background: var(--white);

  border-right: 1px solid #dedede;

  border-bottom: 1px solid var(--green);

  color: var(--dark-green);

  transition: all 0.5s;
}

.mv-cover .nav-tabs .nav-link:hover {
  border: 0px;

  background: var(--dark-green);

  color: var(--white);

  transition: all 0.5s;
}

.mv-cover .nav-tabs .nav-link:last-child {
  border-right: 0px;
}

.mv-cover .tab-content {
  background: var(--white);

  padding: 30px;
}

.mv-content h3 {
  margin-bottom: 10px;
}

.mv-image {
  height: 100%;
}

/* --- Mission Vision End --- */

/* --- FAQ Start --- */

.faq-image {
  margin-right: 30px;

  border-radius: 15px;

  height: 100%;

  overflow: hidden;
}

.faq-image img {
  object-fit: cover;
}

.faq-content {
  padding-left: 30px;
}

.accordion-faq,
.accordion-faq .accordion-header,
.accordion-faq .accordion-item {
  border: 0px;
}

.accordion-faq .accordion-item {
  margin-bottom: 10px;
}

.accordion-faq .accordion-item:last-child {
  margin-bottom: 0px;
}

.accordion-faq .accordion-button {
  font-weight: 500;

  color: #0b0c54;

  font-size: 17px;

  background: var(--white);

  border-radius: 0px !important;

  box-shadow: none !important;

  outline: none !important;

  border-bottom: 1px solid #dedede;

  padding: 15px 50px 15px 15px;
}

.accordion-faq .accordion-button::after {
  position: absolute;

  right: 10px;

  top: 15px;

  content: "\2b";

  background-image: none;

  font-size: 26px;

  height: 24px;

  width: 24px;

  line-height: 24px;

  padding: 0;

  margin: 0;

  text-align: center;

  color: var(--green);
}

.accordion-faq .accordion-body {
  font-weight: 500;

  font-size: 14px;

  padding: 15px 20px;
}

.faq .section-head h6 {
  width: fit-content;

  margin: 0 auto 8px;
}

.accordion-faq .accordion-button:not(.collapsed)::after {
  background-image: none;

  content: "\f068";

  font-family: "Font Awesome 6 Pro";

  font-size: 19px;

  color: var(--white);
}

.accordion-faq .accordion-button:not(.collapsed) {
  background: var(--green);

  color: var(--white);
}

/* --- FAQ End  --- */

/* --- Other CSS Start -- */

.destination-cms {
  margin-bottom: -150px;
}

/* --- Other CSS End --- */

/* --- Country Dtails Start --- */

.slider-country-image,
.why-country,
.university-country {
  padding: 30px 0;
}

.university-lists ul li {
  font-family: var(--heading);

  font-size: 17px;

  font-weight: 500;

  margin-bottom: 15px;
}

.university-lists ul li span {
  color: var(--green);

  margin-right: 12px;
}

.slider-country-image .owl-next,
.slider-country-image .owl-prev {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background: var(--white) !important;

  color: var(--green) !important;

  width: 48px;

  height: 48px;

  border-radius: 50% !important;

  font-size: 18px !important;

  line-height: 48px !important;
}

.slider-country-image .owl-next {
  right: 0;
}

.slider-country-image .owl-prev {
  left: 0;
}

.quick-contact {
  background: var(--white);
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.quick-contact .qc-input {
  margin-bottom: 15px;
}

.quick-contact .qc-input .form-control {
  border: 0px;

  background: #ececec;

  box-shadow: none !important;

  outline: none !important;

  height: 54px;
}

.quick-contact .qc-input textarea.form-control {
  height: 130px;
}

.offer-story {
  margin-left: 40px;

  margin-top: 40px;
}

.btn-download span img {
  height: 20px;
}

/* --- Country Dtails End --- */

/*------- Blog Detail Start ------ */
.blog-detail {
  padding: 20px 0;
}

.bd-left {
  padding-right: 20px;
}

.bd-image {
  height: 430px;
  position: relative;
}

.bd-image img {
  object-fit: cover;
}

.bd-title {
  position: absolute;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  color: var(--white);
  bottom: 0;
  padding: 25px 15px;
  text-align: center;
}

.bd-title h3 {
  padding-bottom: 15px;
  color: var(--white);
}

.data-blog {
  justify-content: center;
}

.data-blog span {
  padding-left: 15px;
  margin-right: 15px;
}

.data-blog span:last-child {
  margin-right: 0px;
}

.bd-content {
  padding-top: 20px;
}

.bd-content p:empty {
  display: none;
}

.bd-tag>h6 {
  font-size: 18px;
  margin-right: 15px;
}

.bd-tag .tag-box a {
  padding: 10px 12px;
  border: 1px solid var(--gray);
  margin-right: 15px;
  margin-bottom: 7px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background: #f7f7f7;
}

.bd-tag .tag-box h6 {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 0px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.section-title {
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-title h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.owl-carousel.owl-loaded {
  display: block;
}

.blog-wrapper {
  position: relative;
  height: auto;
}

.related-bw .blog-image {
  height: 250px;
}

.related-bw .blog-image a {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.related-bw .blog-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rb-wrap .rb-image {
  height: 70px;
  width: 70px;
  flex-shrink: 0;
  margin-right: 15px;
}

.rb-image img {
  object-fit: cover;
}

.rb-wrap {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--gray);
  margin-bottom: 15px;
}

.cs-search .form-control {
  border-radius: 0px;
  border: 1px solid var(--black);
}

.input-group-text {
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  border: 0px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.blog-category {
  padding: 20px 0;
}

.blog-category>h6,
.br-recent-blog>h6,
.br-tags>h6,
.archived-tags>h6 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 10px !important;
}

.blog-category ul li a {
  padding: 10px 0;
  border-bottom: 1px dashed #dedede;
  display: inline-block;
  width: 100%;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

/*------- Blog Detail End ------ */

/* --------- Blog Start ------- */
/* .owl-theme .owl-nav {
  width: fit-content;
  top: -95px;
  right: 0;
  position: absolute;
} */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: var(--title);
  height: 40px;
  width: 40px;
  border-radius: 0px;
}

.blog-image {
  height: 400px;
  position: relative;
}

.blog-image a {
  display: inline-block;

  width: 100%;

  height: 100%;
}

.blog-image img {
  height: 100%;

  width: 100%;

  object-fit: cover;

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.blog-wrapper:hover .blog-image img {
  transform: scale(1.2);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

/* .blog-content {
  padding: 20px 15px 20px 0;
} */

.blog-content h6 {
  /* text-transform: uppercase; */

  color: var(--lime-green);

  font-size: 14px;

  padding-bottom: 12px;
}

.blog-content h4 {
  padding-bottom: 12px;
}

/* .blog-content h4 a {
  font-size: 20px;

  font-weight: 500;

  color: var(--black);

  font-family: var(--heading);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
} */

.blog-content h4 a:hover {
  color: var(--green);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;
}

.bd-day {
  padding-bottom: 5px;

  margin-bottom: 5px !important;

  font-size: 15px;

  color: var(--red);

  position: relative;

  line-height: 18px;
}

.cs-search .form-control {
  border-radius: 0px;

  border: 1px solid var(--black);
}

.input-group-text {
  background: var(--black);

  color: var(--white);

  border-radius: 0;

  border: 0px;
}

.bd-left {
  padding-right: 20px;
}

.blog-category {
  padding: 20px 0;
}

.archived-tags {
  margin-top: 30px;
}

ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.blog-category ul li a:hover {
  color: var(--green);

  transition: all 0.3s;

  -webkit-transition: all 0.3s;
}

.br-recent-blog {
  padding: 30px 0;
}

.recent-blog-area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.br-recent-blog>h6 {
  margin-bottom: 25px !important;
}

.rb-wrap {
  display: block;

  padding-bottom: 15px;

  border-bottom: 1px dashed var(--gray);

  margin-bottom: 15px;
}

.rb-wrap .rb-image {
  height: 70px;

  width: 70px;

  flex-shrink: 0;

  margin-right: 15px;
}

.rb-image img {
  object-fit: cover;
}

.rb-wrap .rb-content h6 {
  color: #a9a9a9;

  font-size: 13px;

  font-weight: 500;

  padding-bottom: 8px;
}

.rb-wrap .rb-content p {
  color: var(--black);

  font-size: 14px;

  font-weight: 500;

  -webkit-line-clamp: 2;

  display: block;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  overflow: hidden;
}

.tags-wrap {
  display: block;
}

.tags-wrap a {
  display: inline-block;
  width: 100%;
  padding: 8px 12px;

  font-size: 14px;

  font-weight: 500;

  color: var(--black);

  border: 1px solid #dedede;

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

.tags-wrap a {
  margin-bottom: 7px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}

.archived-tags .tags-wrap a {
  padding: 8px 16px;
}

.tags-wrap a:hover {
  color: var(--white);

  background: var(--red);

  border: 1px solid var(--red);

  transition: all 0.4s;

  -webkit-transition: all 0.4s;
}

.blog-publication p {
  color: var(--lime-green);

  font-weight: 500;

  font-size: 14px;
}

.blog-publication p span:nth-child(1) {
  margin-right: 10px;
}

.btn-read {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  margin-top: 15px;
  padding-bottom: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

/*----  Blog End  ---*/

/* =====Contact Start ======= */
.container-fluid {
  padding: 0 80px;
}

.section-head h6 {
  font-size: 15px !important;
}

.contac-detail {
  padding: 20px 20px 20px 0;
}

.separate-line {
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
  padding: 20px 0;
  position: relative;
  display: inline-block;
  width: 100%;
  overflow-x: hidden;
}

.separate-line h5 {
  position: relative;
}

.separate-line::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5c4;
  left: 160px;
}

.follow-us .separate-line::before {
  left: 100px;
}

.item-box {
  position: relative;
  flex: 0 0 100%;
  position: relative;
  padding: 20px 30px;
  /* background: var(--white); */
  background: url(../images/elemnt-about.webp) no-repeat center;
  background-size: cover;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.item-box::before {
  background: rgba(255 255 255 / 0.85);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-top: 4px solid var(--green);
}

.item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.5s ease;
}

.item-icon i {
  color: var(--white);
  font-size: 20px;
  transition: all 0.5s ease;
}

.item-box-content p {
  /* margin-left: 86px; */
  font-size: 18px;
  font-weight: 500;
}

.item-box-head h6 {
  margin-left: 24px;
  font-size: 24px;
}

.item-box-content {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #dedede;
}

.follow-us {
  margin: 15px;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 16px;
}

.follow-us ul li i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  text-align: center;
  background-color: var(--white);
  color: var(--black);
  margin-bottom: 10px;
  transition: all 0.5s ease-out;
}

.follow-us ul li i:hover {
  background-color: var(--green);
  color: var(--white);
  transition: all 0.5s ease-in;
}

.follow-us ul li i:hover+.brand-name,
.follow-us ul li .brand-name:hover {
  color: var(--green) !important;
  transition: all 0.5s ease-in;
}

.follow-us ul li {
  margin-right: 20px;
  text-align: center;
}

.contact-frm {
  padding: 30px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-right: 10px solid var(--green);
  margin-top: 100px;
}

.contact-frm .single-input input.form-control,
.contact-frm .single-input .form-select {
  height: 56px;
  line-height: 56px;
  margin-bottom: 15px;
  background: rgb(245, 245, 245);
  border: 1px solid #dedede;
  transition: 0.4s;
}

.contact-frm .single-input .form-select {
  line-height: 40px !important;
}

.contact-frm .single-input input.form-control:focus,
.contact-frm .single-input .form-select:focus {
  border-color: var(--dark-green);
}

.contact-frm .single-input textarea.form-control {
  height: 130px;
  background: rgb(245, 245, 245);
  border: 1px solid #dedede;
}

.single-input .capture-code {
  height: 56px;
}

.single-input .capture-code #Imageid {
  width: 100% !important;
  height: 100% !important;
}

.contact-frm .btn {
  width: 100%;
  border-radius: 5px;
  margin-top: 20px;
  padding: 24px;
}

.btn-solid:hover {
  color: var(--white);
  background: var(--black);
  transition: 0.5s;
}

.follow-us ul li a .brand-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: all 0.5s ease-out;
}

.google {
  margin-bottom: 60px;
  background: #fafafa;
}

.map-area {
  height: 550px;
}

.map-area iframe {
  height: 100%;
}

.google::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: #83cd20e6;
  content: "";
}

.google::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: url(../images/service-bg.webp) no-repeat center;
  background-size: cover;
  content: "";
  z-index: -1;
  opacity: 1;
}

.map-area {
  position: relative;
  padding: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.contact-box-content a {
  color: #003300;
  font-size: 18px;
  margin-left: 24px;
  font-weight: 500;
}

/* =====Contact End ======= */

/* ====== Visa Start ===== */
.visa-menu {
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  margin-left: 40px;
}

.visa-menu-list .list-icon {
  background: var(--green);
  color: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.visa-menu-list .visa-link {
  height: 60px;
  padding: 0 16px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 1;
  transition: all 0.5s ease;
}

.visa-menu-list .visa-link::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--green);
  z-index: -1;
  transition: all 0.5s ease-out;
}

.visa-menu-list li a:hover .visa-link::after,
.visa-menu-list li a.active .visa-link::after {
  width: 100%;
  cursor: pointer;
  transition: all 0.5s ease-in;
}

.visa-menu-list li a:hover .visa-link,
.visa-menu-list li a.active .visa-link {
  color: var(--white);
  transition: all 0.5s ease;
}

.visa-overview {
  padding: 30px 0;
}

.visa-inner-box {
  margin-top: 60px;
  padding: 0 35px 28px;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.inner-icon {
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -45px;
}

.inner-icon i {
  color: var(--white);
  font-size: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: all 0.5s ease-out;
}

.inner-content h3 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 23px;
}

.visa-inner-box:hover {
  background-color: var(--green);
  transition: all 0.5s ease-in;
}

.visa-inner-box:hover .inner-icon i {
  background-color: var(--white);
  color: var(--green);
  border-color: var(--green);
  transition: all 0.5s ease-in;
}

.faq-block {
  margin-top: 40px;
}

.visa-bnt {
  text-transform: uppercase;
  font-weight: 600;
}

.why-treatment-content ul li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 4px 0 4px 0;
  position: relative;
}

.why-treatment-content ul {
  margin-top: 15px;
}

.why-treatment-content ul li strong {
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  transform: rotate(90deg);
}

.pdf-box {
  padding: 25px;
  background: #f9f9f9;
  height: 100%;
}

.service-body a {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 15px;
}

.pdf-icon {
  max-width: 50%;
  margin: 0 auto;
}

/* ====== Visa End ===== */

/* --- Gallery Start --- */

.gallery-item {
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item a {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: var(--white);
  z-index: 1;
  transition: all 0.5s ease;
}

/* --- Gallery End --- */

/* --- Testimonial Start --- */
.testimonial-cms .testimonial-box {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: #ffcaca;
}

/* --- Testimonial End --- */

/* --- Meet Doctor Start --- */

.doctor-img {
  height: 350px;
  padding: 4px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  margin-right: 25px;
}

.doctor-img img {
  object-fit: contain;
}

.exp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  color: #000000;
  background: #ffe5e2;
  padding: 10px 15px;
  font-size: 21px;
  font-weight: 500;
  border: 3px solid var(--white);
  border-top: 0px;
  text-align: center;
}

.exp span {
  font-size: 28px;
  font-weight: 800;
  color: darkred;
}

.cmn-lists li {
  position: relative;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}

.cmn-lists li span {
  color: #d0402e;
  margin-right: 7px;
}

.doctor-content a {
  color: #0c617a;
}

.treatment-list {
  background: #f9f9f9;
  margin-bottom: 20px;
}

.treatment-list h4 {
  color: var(--white);
  background: black;
  padding: 12px 15px;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

/* .treatment-list h5 {
  color: var(--white);
  background: black;
  padding: 12px 15px;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0px;
  text-transform: uppercase;
} */
.treatment-details .treatment-list ul {
  padding-left: 0px !important;
}

.treatment-list ul li {
  border-bottom: 1px solid #ffffff;
  padding: 10px 15px 10px 45px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  list-style: none !important;
  transition: all 0.5s;
}

.treatment-list ul li.active {
  background-color: #00bc99;
}

.treatment-list ul li:hover {
  background: #00bc99;
  transition: all 0.5s;
}

.treatment-list ul li a {
  color: var(--black);
}

.treatment-list ul li.active a,
.treatment-list ul li:hover a {
  color: var(--white);
}

.treatment-list ul li span {
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 16px;
}

.btn-treatment {
  font-size: 14px;
  font-weight: 400;
  border-radius: 0px;
  width: 100%;
}

/* --- Meet Doctor End --- */

.treatment-lists,
.google-map {
  background: #f9f9f9;
}

.treatment-details ul {
  padding-left: 15px !important;
}

.treatment-details ul li {
  list-style: disc;
}

.treatment-details h3 {
  font-size: 26px;
}

.treatment-details-image {
  margin-bottom: 15px;
}

.service-title h5 {
  font-size: 18px;
}

.country-video {
  height: 230px;
  background: var(--white);
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.country-video img {
  object-fit: cover;
}

.country-video .play-cover {
  background: transparent;
}

.recent_blog .bd_flex_image {
  flex: 0 0 140px;
  height: 80px;
  margin-right: 15px;
}

.recent_blog .bd_flex_image img {
  object-fit: cover;
}

.bd_flex h5 a {
  font-size: 16px;
  color: var(--black);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.appo-form {
  position: relative;
  background: #f9f9f9;
  padding: 40px;
}

.appo-image img {
  object-fit: cover;
}

.appo-form .form-control {
  border: 1px solid #ccc;
  height: 44px;
  line-height: 44px;
}

.appo-form .form-select {
  border: 1px solid #ccc;
  height: 44px;
  line-height: 34px;
}

.appo-form textarea.form-control {
  height: 150px;
}

.contact-frm .form-control {
  border: 1px solid #ccc;
  height: 44px;
  line-height: 44px;
}

.contact-frm .form-select {
  border: 1px solid #ccc;
  height: 44px;
  line-height: 34px;
}

.contact-frm textarea.form-control {
  height: 150px;
}

.sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}

.sidebar a {
  position: relative;
  background: #d0402e;
  transform: translateX(76px);
  font-size: 15px;
  padding: 5px 12px;
  transition: all 0.5s;
}

.sidebar a:hover {
  transform: translateX(0px);
  background: var(--black);
  color: var(--white);
  transition: all 0.5s;
}

.sidebar a span {
  font-size: 22px;
  border-right: 1px solid #dedede;
  padding-right: 12px;
  margin-right: 12px;
}

.youtube-sec .section-head {
  max-width: 650px;
}

.play-icon-youtube {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--dark-green);
  font-size: 42px;
}

.chamber-box a {
  color: var(--dark-green);
}

/* Press Release  */

.press-box {
  background: #f7f7f7;
}

.press-content h4 a {
  color: #000;
  font-weight: 500;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
}

.press-release {
  padding: 60px 0;
}

.press-release .section-head h6 {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-release .section-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Featured Post (Left Column) */
.featured-post {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  position: relative;
}

.featured-post:hover {
  transform: translateY(-5px);
}

.featured-post .press-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.featured-post .press-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5e14;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.featured-post .press-content {
  padding: 20px;
}

.featured-post .press-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.featured-post .press-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.featured-post .read-btn {
  font-weight: 600;
  color: #ff5e14;
  text-decoration: none;
  transition: color 0.3s;
}

.featured-post .read-btn:hover {
  color: #222;
}

/* Small Posts (Right Column) */
.small-post {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
  border-radius: 10px;
}

.small-post:last-child {
  border-bottom: none;
}

.small-post:hover {
  background: #fafafa;
}

.small-post .press-image img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.small-post .press-content {
  flex: 1;
}

.small-post .press-content h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
}

.small-post .press-content h6 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.small-post .press-content h6 a:hover {
  color: #ff5e14;
}

.small-post .press-date {
  font-size: 13px;
  color: #888;
}

.press-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.press-image-grid {
  height: 280px;
  border-bottom: 1px solid #ced4da;
}

.press-box {
  border: 1px solid #e0e0e0;
}




/* =========================
   THANK YOU PAGE - PREMIUM
   ========================= */
:root {
  --th-primary: #7a1f16;
  --th-primary-dark: #3f0d08;
  --th-accent: #f2b56b;
  --th-accent-2: #ffd9b0;
  --th-bg: #fffaf7;
  --th-card: #ffffff;
  --th-text: #1f1a17;
  --th-muted: #6f625b;
  --th-border: rgba(122, 31, 22, .12);
  --th-shadow: 0 20px 60px rgba(37, 16, 12, .10);
  --th-radius: 24px;
}

.page-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.hero-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* main */
.thankyou-section {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(122, 31, 22, .06), transparent 25%),
    radial-gradient(circle at 100% 0%, rgba(242, 181, 107, .18), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f4 100%);
  padding: 80px 0;
}

.thankyou-card {
  background: var(--th-card);
  border: 1px solid var(--th-border);
  border-radius: 32px;
  box-shadow: var(--th-shadow);
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 181, 107, .24) 0%, rgba(242, 181, 107, 0) 68%);
  pointer-events: none;
}

.thankyou-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

.thankyou-left h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--th-text);
  font-weight: 800;
}

.thankyou-left p {
  color: var(--th-muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 16px;
}

.success-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff4ea, #fff);
  border: 1px solid rgba(122, 31, 22, .12);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--th-primary);
  margin-bottom: 18px;
}

.success-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--th-primary), #a13a2f);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 14px 35px rgba(122, 31, 22, .22);
  margin-bottom: 18px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.quick-point {
  background: #fffaf8;
  border: 1px solid rgba(122, 31, 22, .08);
  border-radius: 20px;
  padding: 16px 18px;
}

.quick-point h6 {
  margin: 0 0 6px;
  color: var(--th-text);
  font-size: 15px;
  font-weight: 700;
}

.quick-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.thankyou-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.action-card {
  background: linear-gradient(180deg, #fff, #fff8f3);
  border: 1px solid var(--th-border);
  border-radius: 24px;
  padding: 24px;
}

.action-card h4 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--th-text);
  font-weight: 800;
}

.action-card p {
  margin: 0 0 18px;
  color: var(--th-muted);
  line-height: 1.75;
}

.action-list {
  display: grid;
  gap: 12px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: var(--th-text);
  background: #fff;
  border: 1px solid rgba(122, 31, 22, .10);
  border-radius: 18px;
  padding: 14px 16px;
  transition: .3s ease;
  font-weight: 600;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 16, 12, .08);
  color: var(--th-primary);
}

.action-btn span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.follow-mini a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(122, 31, 22, .10);
  color: var(--th-primary);
  transition: .3s ease;
}

.follow-mini a:hover {
  transform: translateY(-2px);
  background: var(--th-primary);
  color: #fff;
}

/* chamber section */
.google-map {
  position: relative;
  padding: 0 0 80px;
  background: linear-gradient(180deg, #fff8f4 0%, #fffdfb 100%);
}

.section-head.text-center {
  margin-bottom: 28px;
}

.section-head h6 {
  color: var(--th-primary);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head h2 {
  color: var(--th-text);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
}

.chamber-row {
  background: #fff;
  border: 1px solid var(--th-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--th-shadow);
}

.chamber-box {
  padding: 34px;
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(242, 181, 107, .14), transparent 34%),
    linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}

.chamber-box h3 {
  color: var(--th-text);
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 14px;
}

.chamber-box p {
  color: var(--th-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.chamber-timing {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.chamber-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(122, 31, 22, .10);
  color: var(--th-text);
  font-size: 14px;
  font-weight: 600;
}

.chamber-box a {
  color: var(--th-primary);
  font-weight: 700;
  text-decoration: none;
}

.map-wrap {
  height: 100%;
  min-height: 100%;
  padding: 18px;
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 20px;
}

/* buttons */
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.th-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.th-btn-primary {
  background: linear-gradient(135deg, var(--th-primary), #a6392d);
  color: #fff;
  box-shadow: 0 16px 36px rgba(122, 31, 22, .22);
}

.th-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
}

.th-btn-outline {
  background: #fff;
  border: 1px solid rgba(122, 31, 22, .14);
  color: var(--th-text);
}

.th-btn-outline:hover {
  color: var(--th-primary);
  transform: translateY(-2px);
}

@media (max-width: 767px) {

  .thankyou-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .thankyou-section {
    padding: 55px 0;
  }

  .thankyou-card {
    border-radius: 22px;
    padding: 22px;
  }

  .page-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .chamber-box,
  .map-wrap {
    padding: 20px;
  }
}




.call-circle {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}

.call-circle a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #1B5E20);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, .6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}