@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  --lm-font: "Manrope", sans-serif;
  --lm-font-alt: "Manrope", sans-serif;
  --lm-color-primary: #e00002;
  --lm-color-secondary: #076130;
  --lm-color-third: #006ad3;
  --lm-color-four: #cca800;
  --lm-color-five: #d00040;
  --lm-color-six: #7700c2;
  --lm-color-light: #ffffff;
  --lm-color-lite-dark: #323232;
  --lm-color-black: #000000;
  --lm-color-neon: #f9f804;
  --lm-color-gray: #ededed;
  --lm-color-deep-gray: #2e2e2e;
  --lm-linear-bg: linear-gradient(to right, #00ad4f 0%, #076130 100%);
}

body {
  transition: all 3s ease-out;
  overflow-x: hidden;
  font-family: var(--lm-font-alt);
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  transition: width 0.8s ease-in-out;
}

/*================================================
              Reset/Normalize CSS
=================================================== */

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.element-gap {
  margin-top: 30px;
}

.overlay {
  position: relative;
  z-index: 0;
}

.overlay:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.w-lg-50 {
  width: 50% !important;
}

.w-lg-75 {
  width: 75% !important;
}

.text-white {
  color: var(--lm-color-light);
}

.text-black {
  color: var(--lm-color-black);
}

.text-base {
  color: var(--lm-color-primary) !important;
}

.text-second {
  color: var(--lm-color-secondary) !important;
}

.text-neon {
  color: var(--lm-color-neon) !important;
}

.bg-white {
  background: var(--lm-color-light);
  background-color: var(--lm-color-light);
}

.rgba-bg {
  background: rgba(0, 0, 0, 0.8);
}

.bg-black {
  background: var(--lm-color-black);
}

.bg-base {
  background: var(--lm-color-primary);
}
.px-2.rounded-1.bg-base:hover {
  background: var(--lm-linear-bg) !important;
}

.bg-second {
  background: var(--lm-color-secondary) !important;
}

.bg-deep-gray {
  background: var(--lm-color-deep-gray) !important;
}

.text-blue {
  color: var(--lm-color-third) !important;
}

.bg-gradient {
  background: var(--lm-linear-bg) !important;
}
.bg-gradient:hover {
  background: white !important;
  color: red !important;
}
.bg-linear {
  background-image: var(--lm-linear-bg) !important;
}

.bg-gray {
  background-color: var(--lm-color-gray) !important;
}

.h-90 {
  height: 80% !important;
}

.fs-14 {
  font-size: 14px !important;
}

.circle-img-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--lm-color-primary);
  border-radius: 100%;

  img {
    width: 35px;
  }
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--lm-color-lite-dark);
  font-family: var(--lm-font-alt);
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 30px;

  &:last-child {
    margin-bottom: 0px;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-family: var(--lm-font);
  color: var(--lm-color-third);
  padding-bottom: 10px;
}

h1 {
  font-size: 90px;
  line-height: 90px;
  margin: 0;
  color: var(--lm-color-primary);
  font-family: var(--lm-font);
  padding-bottom: 5px;
  text-transform: uppercase;
}

/* h1 span {
  font-size: 60px;
  color: var(--lm-color-secondary);
} */

h2 {
  font-size: 60px;
  line-height: normal;
  margin: 0;
  padding-bottom: 5px;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 3px;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 3px;
}

h5 {
  font-size: 22px;
  line-height: 24px;
  padding-bottom: 3px;
}

h6 {
  font-size: 19px;
  line-height: 24px;
  color: var(--lm-color-secondary);
}

.fs-7 {
  font-size: 16px !important;
}

.lm-sec-title {
  font-size: 60px;
  line-height: 70px;
  color: var(--lm-color-black);
  font-family: var(--lm-font);
  font-weight: 700;
  width: 100%;
  text-align: start;
  text-transform: uppercase;
}

ol,
ul,
dl {
  margin: 10px 0;
  padding: 0;
}

.text-white {
  color: var(--lm-color-light) !important;
}

.text-black {
  color: var(--lm-color-black) !important;
}

.img-fluid {
  width: 100%;
  max-width: 100%;
}

.lm-sec-padding {
  padding: 4% 0;
}

.min-width-0 {
  min-width: 0 !important;
}

.font-secondary {
  font-family: var(--lm-font-alt) !important;
}

.lm-hero-btn {
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lm-color-light);
  min-width: 150px;
  background: var(--lm-color-primary);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lm-hero-btn.bg-base:hover {
  background: var(--lm-color-secondary) !important;
  color: var(--lm-color-black) !important;
}

.lm-hero-btn.bg-base:hover i {
  color: var(--lm-color-black) !important;
}

.lm-hero-btn.bg-white:hover {
  background: var(--lm-color-secondary) !important;
  color: var(--lm-color-light) !important;
}

.lm-hero-btn.bg-second:hover {
  background: var(--lm-color-primary) !important;
}

.lm-hero-btn:hover {
  color: var(--lm-color-light);
  background: var(--lm-color-secondary);
}

.font-18 {
  font-size: 18px;
  line-height: 26px;
}

.font-16 {
  font-size: 16px;
  line-height: 26px;
}

.color-text {
  color: var(--lm-color-primary);
}

.section-overlap {
  transform: translateY(-100px);
}

.welcome-text-shape {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: yellow; /* Matches the color in your image */
  position: relative;
  z-index: 1; /* Ensures the text-shape appears above the lines */
}

/* Pseudo-elements for the horizontal lines */
.welcome-text-shape::before,
.welcome-text-shape::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Centers the line vertically */
  height: 2px; /* Thickness of the line at the start */
  background-image: linear-gradient(to left, white 0%, transparent 50%);
  width: 50%; /* Adjust the width as needed */
}

.welcome-text-shape::before {
  left: -10%; /* Adjust the offset as needed */
}

.welcome-text-shape::after {
  background-image: linear-gradient(to right, white 0%, transparent 50%);
  right: -10%; /* Adjust the offset as needed */
}

.lm-sec-heading.special-line {
  position: relative;
}

.lm-sec-heading.special-line::before,
.lm-sec-heading.special-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  border-top: 1px dashed var(--lm-color-black);
  transform: translateY(-50%);
  left: 0;
}
.lm-sec-heading.special-line.secondary-line::before,
.lm-sec-heading.special-line.secondary-line::after {
  border-top: 1px dashed #fff;
}

.lm-sec-heading.special-line .lm-sec-title {
  position: relative;
  width: fit-content;
  padding: 0px 20px;
  margin: 0 auto;
  z-index: 9;
}

.linear-border {
  flex-grow: 1;
  border: none;
  position: relative;
}

.linear-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-image: linear-gradient(to right, black 0%, transparent 100%);
}

.dashed-border {
  flex-grow: 1;
  border-bottom: 1px dashed var(--lm-color-black);
}

.solid-border {
  flex-grow: 1;
  border-bottom: 1px solid var(--lm-color-secondary);
}

.white-dashed-border {
  border-bottom: 1px dashed var(--lm-color-light);
}

@media (max-width: 1370px) {
  p {
    font-size: 16px;
    line-height: 25px;
  }

  .container {
    max-width: 960px;
  }

  .element-gap {
    margin-top: 25px;
  }

  .fs-6,
  .fs-7 {
    font-size: 14px !important;
  }

  h1 {
    font-size: 60px;
    line-height: 60px;
  }

  h1 span {
    font-size: 50px;
  }

  h2 {
    font-size: 50px;
    line-height: 50px;
  }

  .lm-sec-title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 22px;
  }

  .element-gap {
    margin-top: 20px;
  }

  .welcome-text-shape::after,
  .welcome-text-shape::before {
    opacity: 0;
  }
  .lm-sec-title {
    font-size: 40px;
  }

  h1 {
    font-size: 48px;
    line-height: 48px;
  }

  h1 span {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .w-lg-50,
  .w-lg-75 {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* Tablet Styles */

  h1 {
    font-size: 35px;
  }
  h1 span {
    font-size: 35px;
  }

  .h-90 {
    height: auto !important;
  }
  p {
    font-size: 16px;
  }
  .lm-hero-btn {
    padding: 8px 30px;
    min-width: 200px;
  }

  .lm-hero-btn img {
    width: 25px;
  }
  .lm-sec-title {
    font-size: 35px;
    line-height: 30px;
  }

  .element-gap {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    line-height: 32px;
  }
  h1 span {
    font-size: 30px;
  }

  .lm-sec-heading.special-line .lm-sec-title {
    padding: 0px 10px;
  }

  .lm-sec-title {
    font-size: 30px;
  }

  .lm-sec-padding {
    padding: 7% 0;
  }

  p {
    font-size: 14px;
  }

  .lm-hero-btn {
    padding: 8px 10px;
    min-width: 140px;
    font-size: 13px;
  }

  .lm-hero-btn img {
    width: 20px;
  }
}

/*================================================
              Header Section Start
=================================================== */

/* Navbar Brand Styling */
.navbar-brand img {
  width: 90%;
}

/* Navbar General Styling */
.navbar {
  height: 120px;
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1020;
  width: 100%;
  background: var(--lm-color-primary) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Navbar Items Styling */
.navbar-nav .nav-item {
  font-size: 18px;
  color: var(--lm-color-light);
  text-transform: uppercase;
  font-weight: 500;
}

.navbar .nav-item .nav-link {
  transition: all ease-in-out 0.4s;
}

.nav-link:hover {
  color: var(--lm-color-secondary) !important;
}

.navbar-nav .nav-item .lm-hero-btn {
  height: 36px;
  min-width: 130px;
  font-size: 18px;
  font-weight: 500;
  background: var(--lm-color-light);
  color: var(--lm-color-primary);
  border: 1px solid var(--lm-color-primary);
  border-radius: 20px;
}

.navbar-nav .nav-item .lm-hero-btn:hover {
  color: var(--lm-color-light);
  border: 1px solid var(--lm-color-light);
  background: var(--lm-color-primary);
}

/* Navbar Toggler Styling */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: var(--lm-color-light);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--lm-color-light);
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Utility Classes */
.w-fit-content {
  width: fit-content !important;
}

.w-md-75 {
  width: 75% !important;
}

/* Responsive Design - Tablets */
@media (max-width: 1370px) {
  .navbar-nav .nav-item,
  .navbar-nav .nav-item .lm-hero-btn {
    font-size: 16px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 991px) {
  .navbar-wrapper {
    /* background: var(--lm-color-light) !important; */
    position: static;
  }

  .navbar {
    height: auto;
  }

  .w-md-75 {
    width: 100% !important;
  }

  .navbar-nav .nav-item .lm-hero-btn {
    height: 32px;
    min-width: 36px;
  }

  .navbar-nav .nav-item .lm-hero-btn img {
    width: 6px;
  }

  .navbar-brand {
    display: contents;
  }

  .navbar-brand img {
    width: 100px;
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  .navbar-brand img {
    padding: 5px 0px;
    width: 70px;
  }

  .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .navbar .nav-item .nav-link {
    font-size: 14px;
  }

  .navbar .nav-item:last-child {
    padding-bottom: 20px;
  }
}
/*================================================
              Banner Section Start
=================================================== */
.lm-banner-sec {
  /* height: 600px;
  background-image: url("../images/main-banner.webp");
  background-repeat: no-repeat;
  background-position: 100% 15%;
  background-size: cover;
  display: flex;
  align-items: center; */
}

.absolute-social-icon {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.absolute-social-icon a {
  font-size: 18px;
}

.border-100px {
  height: 2px;
  width: 100px;
  background: var(--lm-color-primary);
}

.lm-banner-sec .banner-wrapper .banner-content h6 {
  font-size: 24px;
  font-family: var(--lm-font-alt);
}

.lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn {
  font-size: 18px;
  color: var(--lm-color-primary);
}

.lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn i {
  color: var(--lm-color-light) !important;
}

.lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn:hover i {
  color: var(--lm-color-black) !important;
}

.lm-banner-sec .banner-wrapper .banner-content p {
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.lm-banner-sec.overlay::after {
  opacity: 0;
}

@media (max-width: 1370px) {
  /* .lm-banner-sec .banner-wrapper .banner-content {
    max-width: 450px;
  } */

  .lm-banner-sec .banner-wrapper .banner-content h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .lm-banner-sec .banner-wrapper .banner-content p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .absolute-social-icon {
    position: static;
    transform: translateY(0%);
  }

  .lm-banner-sec.overlay::after {
    opacity: 1;
  }

  .lm-banner-sec .banner-wrapper .banner-content h1,
  .lm-banner-sec .banner-wrapper .banner-content p,
  .lm-banner-sec .banner-wrapper .banner-content i {
    color: var(--lm-color-light) !important;
  }

  .lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn i {
    color: var(--lm-color-dark) !important;
  }

  .lm-banner-sec .banner-wrapper .banner-content {
    max-width: 100%;
    padding: 30px 0px 30px;
    text-align: center;
  }

  .lm-banner-sec .banner-wrapper .banner-content h1 {
    font-size: 40px;
  }

  .lm-banner-sec .banner-wrapper .banner-content h6 {
    margin: 0 auto 5px;
  }

  .lm-banner-sec .banner-wrapper .banner-content p {
    margin: 10px auto;
    font-size: 18px;
    /* color: var(--lm-color-light) !important; */
  }
  .lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn.go-food {
    font-size: 18px;
  }

  .lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn.go-food img {
    width: 8px;
  }

  .lm-banner-sec .banner-wrapper .banner-content {
    padding: 25px;
  }

  .authentic-culture-heart {
    transform: translateY(0px);
  }

  .absolute-social-icon {
    position: static;
    transform: translateY(0%);
  }
}

@media (max-width: 480px) {
  .lm-banner-sec .banner-wrapper .banner-content .lm-hero-btn.go-food {
    font-size: 14px;
  }

  .lm-banner-sec {
    background-position: 50% 100%;
  }

  .lm-banner-sec .banner-wrapper .banner-content h1 {
    font-size: 29px;
    line-height: 40px;
    margin-bottom: 0px !important;
  }

  .lm-banner-sec .banner-wrapper .banner-content h6 {
    font-size: 16px;
  }

  .lm-banner-sec .banner-wrapper .banner-content p {
    max-width: 100%;
    margin: 0px auto 10px;
    font-size: 14px;
  }

  .lm-banner-sec .banner-wrapper .banner-content {
    padding: 25px 10px;
  }
}

/*================================================
             Feature section
=================================================== */
.feature-section .feature-item {
  /* padding: 25px;
  background: var(--lm-color-light);
  border-radius: 12px;
  background: #f8f8f8; */
  /* text-align: center; */
}

.feature-section .feature-item {
  transition: all ease-in-out 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* overflow: hidden; */

  .icon {
    width: 60px;
    height: 60px;
    line-height: 55px;
    border: 2px solid var(--lm-color-light);
    border-radius: 100%;
    text-align: center;
    background: var(--lm-color-primary);
    /* margin: 0 auto 15px; */
    margin-bottom: 15px;
    position: relative;
    z-index: 999;
    &.last-child {
      &::after {
        position: static;
        transform: translateY(0px);
        right: 0;
        height: 0;
      }
    }
    &::after {
      position: absolute;
      content: "";
      height: 2px;
      width: 297px;
      background: var(--lm-color-light);
      top: 50%;
      right: -297px;
      transform: translateY(-50%);
      z-index: -1;
    }

    img {
      width: 28px;
    }
  }

  .content {
    h6 {
      font-size: 24px;
      color: var(--lm-color-lite-dark);
      text-align: center;
    }

    p {
      font-size: 16px;
      text-transform: capitalize;
      color: #777777;
    }

    .lm-hero-btn {
      width: fit-content;
      border-radius: 25px;
      height: 40px;
      min-width: 150px;
      font-size: 16px;
      margin-top: 10px;
      background: var(--lm-color-light);
      color: var(--lm-color-primary);
    }
  }

  &:hover {
    .lm-hero-btn {
      background: var(--lm-color-primary);
      color: var(--lm-color-light);
    }
  }
}

@media (max-width: 1370px) {
  .feature-section .feature-item {
    .icon {
      &::after {
        width: 220px;
        right: -220px;
      }
    }
  }
}

@media (max-width: 991px) {
  .feature-section .feature-item {
    .icon {
      width: 50px;
      height: 50px;
      line-height: 50px;
      /* margin: 0 auto 15px; */
      margin-bottom: 5px;
      &::after {
        position: static;
        transform: translateY(0px);
        right: 0;
        height: 0;
      }

      img {
        width: 25px;
      }
    }

    .content {
      h6 {
        font-size: 18px;
        padding-bottom: 5px;
      }

      p {
        font-size: 14px;
      }

      .lm-hero-btn {
        border-radius: 15px;
        height: 30px;
        min-width: 150px;
        font-size: 14px;
        margin-top: 10px;
        min-width: 120px;
      }
    }
  }
}

@media (max-width: 480px) {
  .feature-section .feature-item {
    margin-bottom: 20px;
  }
}

/*================================================
             Doctor section
=================================================== */
.doctor-section {
  background-image: url("../images/doctor-banner.webp");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}

.dr-thumbnail-absolute {
  position: absolute;
  right: 0%;
  top: -100%;

  img {
    width: 450px;
  }
}

@media (max-width: 1370px) {
  .dr-thumbnail-absolute {
    top: -55%;
  }

  .dr-thumbnail-absolute {
    position: absolute;
    right: 0%;
    top: -85%;

    img {
      width: 400px;
    }
  }
}

.doctor-item {
  position: relative;
  padding: 25px 15px 25px 35px;
  border: 1px solid var(--lm-color-light);
  border-radius: 10px;
  margin-bottom: 0px;
  position: relative;
  min-height: 182px;

  .lm-hero-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .solid-border {
    margin: 8px 0px;
    border-color: var(--lm-color-primary);
  }

  .icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    background: var(--lm-color-primary);
  }
}

@media (max-width: 1370px) {
  .doctor-item {
    padding: 25px 15px 25px 25px;
    margin-bottom: 30px;
    min-height: 150px;
    .icon {
      left: 50%;
      top: -20px;
      transform: translateX(-50%) translateY(0px);
      padding: 8px;
    }
  }
}

/*================================================
             Doctor Section
=================================================== */
/* .doctor-section .lm-sec-title {
  max-width: 650px;
  width: 100%;
  margin-bottom: 10px;
} */

.doctor-section .lm-sec-heading p {
  max-width: 580px;
  width: 100%;
}

.doctor-section .doctor-info {
  background: linear-gradient(to left, #d6d6d6 15%, #ffffff 50%);
}
/* .doctor-section .lm-thumb {
  position: absolute;
  right: 170px;
  bottom: 0px;
  width: 480px;
}

.doctor-section .lm-thumb img {
  width: 85%;
} */

/*================================================
             Form area section
=================================================== */

.form-area .lm-hero-btn {
  outline: none;
  box-shadow: none;
  border: none;
  width: 100%;
  padding: 15px;
}

.form-area .form-control,
.form-area .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-area .form-control::placeholder {
  color: var(--lm-color-dark) !important;
}

@media (max-width: 480px) {
  .form-area-section .w-fit-content {
    width: 100% !important;
  }
  .form-area-section .w-fit-content img {
    width: 20px;
  }
}

/*================================================
             Service Section
=================================================== */

.tab-header-btn {
  color: var(--lm-color-primary);
  background: var(--lm-color-light);
  border: none !important;
}

.tab-header-btn.active {
  background: var(--lm-color-primary) !important;
  color: var(--lm-color-light) !important;
}

/* Swiper slider style */

.swiper-custom-prev,
.swiper-custom-next {
  position: static;
  /* top: 50%;
  left: -5%;
  transform: translateY(-50%); */
  z-index: 9;
}

.swiper-custom-next {
  left: auto;
  right: -5%;
}

.swiper-custom-prev img,
.swiper-custom-next img {
  width: 50px;
}

.swiper-custom-prev img {
  transform: rotate(180deg);
}

.swiper-button-disabled img,
.swiper-button-disabled i {
  opacity: 0.5;
}

@media (max-width: 1370px) {
}

@media (max-width: 991px) {
  .swiper-custom-prev img,
  .swiper-custom-next img {
    width: 40px;
  }
}

/*================================================
              Instruction Section Six
=================================================== */

.instruction-area .lm-thumb img {
  border-radius: 10px;
}

.instruction-area h2 {
  font-family: var(--lm-font-alt);
  font-size: 45px;
}

@media (max-width: 991px) {
  .instruction-area h2 {
    font-size: 30px;
  }
}

/*================================================
              Thank you section
=================================================== */
.thank-you-area {
  background-image: url("../images/featured/thank-you-banner.webp");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}
.thank-you-area .section-content {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  border-radius: 15px;
}

.thank-you-area.overlay::after {
  opacity: 0;
}

@media (max-width: 991px) {
  .thank-you-area .section-content {
    padding: 10px;
  }

  .thank-you-area.overlay::after {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .thank-you-area {
    height: auto;
  }
}

/*================================================
             Map Area
=================================================== */
.map-area {
  background-image: url("../images/featured/black-pattern.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}

/*================================================
             Footer area
=================================================== */

.footer-logo {
  width: 150px;
  /* margin-bottom: 10px; */
}

/* @media (max-width: 991px) {
  .footer-logo img {
    width: 50%;
    margin-bottom: 5px;
  }
}*/

@media (max-width: 480px) {
  .footer-logo {
    width: 100px;
  }
}
/* Scroll To Top */

.scroll-top {
  position: relative;
}

.scrollToTop {
  position: fixed;
  right: 30px;
  bottom: 40px;
  cursor: pointer;
  z-index: 9999;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.scrollToTop span {
  font-size: 20px;
}

.scrollToTop span {
  color: var(--lm-color-light);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  z-index: 0;
}

.scrollToTop span img {
  width: 25px;
}

.scrollToTop {
  width: 45px;
  height: 45px;
  line-height: 43px;
  border-radius: 4px;
  margin-bottom: 5px;
  background: var(--lm-color-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 auto;
    width: 20%;
  }
}

article {
  padding: 50px 0;
  border-bottom: 2px solid var(--lm-color-lite-dark);
  
}
article .heading {
   text-align: center;
   color: var(--lm-color-primary);
   font-size: 35px;
   line-height: 1;
}
article .desc a {
  color: var(--lm-color-primary);
}
article .desc a:hover {
  color: var(--lm-color-five);
}
article .desc {
  text-align: justify;
}