/* HEADER */

header {
  .TopHeader {
    background-color: var(--secondary-color);
    padding: 8px 0;
    text-align: center;

    p {
      color: var(--white-color);
    }
  }

  .Container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;

    .Logo img {
      max-width: 80px;
    }

    /* MOBILE MENU BUTTON */
    .MobileMenuBtn {
      width: 32px;
      height: 22px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;

      span {
        width: 100%;
        height: 3px;
        background: var(--black-color);
        border-radius: 5px;
        transition: 0.3s ease;
      }
    }

    /* MENU */
    .Menu {
      ul {
        display: flex;
        align-items: center;
        gap: 24px;

        li {
          font-size: 14px;
          font-weight: 400;
          display: flex;
          align-items: center;
          gap: 5px;
          position: relative;

          @media (max-width: 990px) {
            width: 100%;
            display: block;
          }

          a {
            color: var(--black-color);
            text-decoration: none;
            transition: 0.3s ease;

            &:hover {
              color: var(--primary-color);
            }
          }

          i {
            cursor: pointer;

            @media (max-width: 990px) {
              position: absolute;
              top: 6px;
              right: 0;
            }
          }
        }
      }

      /* DROPDOWN */
      .dropdown {
        position: relative;

        @media (min-width: 991px) {
          &:hover ul {
            display: block;
          }
        }

        ul {
          display: none;
          position: absolute;
          left: 0;
          top: 100%;
          background: var(--white-color);
          padding: 20px;
          z-index: 999;

          li {
            padding: 10px 0;
            white-space: nowrap;
          }
        }

        &.open {
          ul {
            display: block;
          }

          i {
            transform: rotate(180deg);
          }
        }
      }

      /* MOBILE MENU */
      @media (max-width: 990px) {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background: var(--white-color);
        padding: 20px;
        z-index: 10000;
        transition: 0.4s ease;

        &.active {
          right: 0;
        }

        .CloseMenuBtn {
          width: 30px;
          height: 30px;
          position: absolute;
          top: 20px;
          right: 20px;
          cursor: pointer;
          z-index: 10002;
          display: flex;
          justify-content: center;
          align-items: center;

          span {
            position: absolute;
            width: 24px;
            height: 3px;
            background: var(--black-color);
            border-radius: 4px;
          }

          span:nth-child(1) {
            transform: rotate(45deg);
          }

          span:nth-child(2) {
            transform: rotate(-45deg);
          }
        }

        ul {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
          padding-top: 40px;
        }

        .dropdown ul {
          position: static;
          background: none;
          padding: 0;
          margin-top: 10px;
        }

        .dropdown ul li {
          padding: 6px 0;
        }

        .dropdown.open ul {
          display: block !important;
          margin-left: 10px;
        }
      }
    }

    .Enquiry {
      @media (max-width: 991px) {
        display: none;
      }

      .btn {
        padding: 10px 18px;
        border-radius: 30px;
        background: var(--primary-color);
        color: var(--black-color);
        transition: 0.3s ease;
        border: none;

        &:hover {
          background: var(--secondary-color);
          color: var(--white-color);
        }
      }
    }

    /* RESPONSIVE */
    @media (max-width: 990px) {
      .MobileMenuBtn {
        display: flex;
      }
    }
  }
}

/* BANNER */
.Banner {
  position: relative;
  overflow: hidden;

  /* Slick Slider Container */
  .BannerSlider {
    position: relative;

    .BannerImage {
      height: 92vh;
      width: 100%;
      position: relative;
      @media (max-width: 990px) {
        height: 100vh;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
      }

      /* Gradient Overlay */
      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.15),
          rgba(0, 0, 0, 0.75)
        );
        z-index: 1;
        pointer-events: none;
      }

      /* Banner Content */
      .Cnt {
        position: absolute;
        bottom: 91px;
        z-index: 2;
        width: 100%;
        @media (max-width: 990px) {
          width: 100%;
        }
        @media (max-width: 1550px) {
          bottom: 95px;
        }
        @media (max-width: 575px) {
          bottom: 70px;
        }
        .Container {
          display: flex;
          align-items: center;
          gap: 10px;
          justify-content: space-between;
          @media (max-width: 990px) {
            flex-direction: column;
            justify-content: start;
            gap: 0;
          }
        }
        .row {
          align-items: end;
        }

        .Title {
          width: 50%;
          @media (max-width: 990px) {
            width: 100%;
          }
          h1 {
            color: var(--white-color);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            span {
              color: var(--primary-color);
            }
          }
        }

        .Desc {
          width: 30%;
          @media (max-width: 990px) {
            width: 100%;
          }
          p {
            font-size: 20px;
            color: var(--white-color);
            line-height: 28px;
            opacity: 0.9;
          }
        }

        .Btns {
          width: 15%;
          @media (max-width: 990px) {
            width: 100%;
            flex-direction: row !important;
          }
          @media (max-width: 575px) {
            flex-direction: column !important;
          }
          display: inline-flex;
          align-items: center;
          flex-direction: column;
          gap: 10px;
          margin-top: 15px;

          a {
            &:nth-child(1) {
              button {
                background-color: var(--secondary-color);
                color: var(--white-color);
                &:hover {
                  background-color: var(--white-color);
                  color: var(--black-color);
                }
              }
            }
          }
          .brochure-btn {
            background-color: transparent;
            border: 2px solid var(--white-color);
            color: var(--white-color);
            &:hover {
              background-color: var(--white-color);
              color: var(--black-color);
            }
          }

          button {
            padding: 12px 28px;
            font-size: 16px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
          }
        }
      }

      /* Info Card */
      .banner-info-card {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.95);
        color: #000;
        padding: 14px 28px;
        border-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 3;
        width: 100%;
        text-align: center;

        .highlight {
          color: var(--secondary-color);
          font-weight: 700;
        }
      }
    }

    /* Slick Dots Styling */
    .slick-dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex !important;
      justify-content: center;
      align-items: center;
      gap: 8px;
      z-index: 5;

      li {
        width: 10px;
        height: 10px;
        button {
          width: 100%;
          height: 100%;
          padding: 0;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.5);
          border: none;
          transition: all 0.3s ease;

          &::before {
            content: "";
          }
        }

        &.slick-active button {
          background: var(--secondary-color);
          transform: scale(1.2);
        }
      }
    }
  }
}

/* Responsive */
@media (max-width: 991px) {
  .Banner {
    .BannerSlider {
      .BannerImage {
        height: 80vh;

        .Cnt {
          .Title h1 {
            font-size: 36px;
          }
          .Desc p {
            font-size: 18px;
          }
        }

        .banner-info-card {
          bottom: 0px;
          font-size: 14px;
          padding: 10px 22px;
        }
      }
    }
  }
}

@media (max-width: 600px) {
  .Banner {
    .BannerSlider {
      .slick-dots {
        display: none !important;
      }
      .BannerImage {
        height: 90vh;

        .Cnt {
          .Title h1 {
            font-size: 28px;
          }
          .Desc p {
            font-size: 16px;
            line-height: 24px;
          }

          .Btns {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            button {
              width: auto;
            }
          }
        }

        .banner-info-card {
          text-align: center;
          gap: 6px;
          font-size: 13px;
          padding: 8px 18px;
          width: 100%;
          border-radius: 0;
          justify-content: center;
        }
      }
    }
  }
}
/* EDUCATION TYPES */
.EducationTypes {
  padding: 20px 0;
  background: #fff;

  .edu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    @media (max-width: 575px) {
      width: 100%;
      gap: 5px;
    }
  }

  .edu-item {
    padding: 18px 30px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: default;
    text-align: center;
    min-width: 180px;
    background: linear-gradient(135deg, #888, #555);
    @media (max-width: 575px) {
      width: 100%;
    }
    a {
      color: #fff;
    }

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    &.red {
      background: linear-gradient(135deg, #ff6a6a, #d94848);
    }
    &.orange {
      background: linear-gradient(135deg, #ffa751, #ff7c00);
    }
    &.blue {
      background: linear-gradient(135deg, #4db9ff, #0079d1);
    }
    &.green {
      background: linear-gradient(135deg, #88d66c, #57a54a);
    }
    &.purple {
      background: linear-gradient(135deg, #a678ff, #6b4bb8);
    }
    &.yellow {
      background: linear-gradient(135deg, #ffb84d, #f78b00);
    }
    &.peach {
      background: linear-gradient(135deg, #ff9a8b, #ff6a5f);
    }
  }

  @media (max-width: 768px) {
    .edu-item {
      font-size: 16px;
      padding: 14px 24px;
      min-width: 150px;
    }
  }
}
/* PROGRAM CARDS */
.ProgramCards {
  margin-bottom: 50px;
  @media (max-width: 575px) {
    margin-bottom: 0px;
  }

  .cards-grid {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-flow: row wrap;
    margin-top: 15px;
  }
  a {
    display: flex;
    height: auto;
    width: calc(25% - 18px);
    @media (max-width: 1333px) {
      width: calc(33.33% - 16px);
    }
    @media (max-width: 991px) {
      width: calc(50% - 12px);
    }
    @media (max-width: 575px) {
      width: 100%;
    }
    .program-card {
      background: #fff;
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      border: 1px solid #e4e7eb;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      .card-content {
        img {
          border-radius: 8px;
        }
      }

      .card-bottom {
        h3 {
          font-size: 20px;
          font-weight: 700;
          color: var(--secondary-color);
          margin-bottom: 10px;
        }

        p {
          font-size: 15px;
          color: #555;
          line-height: 1.6;
        }
      }

      .card-bottom {
        padding-top: 5px;
      }

      &:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-color, #1e3a8a);
      }
    }
  }

  @media (max-width: 768px) {
    .program-card {
      padding: 30px 20px;
      h3 {
        font-size: 18px;
      }
      p {
        font-size: 14px;
      }
    }
  }
}
/* WHY CHOOICE */
.whychooice {
  padding: 50px 0;
  background: #f9fafc;

  .SectionTtle {
    text-align: center;
    margin-bottom: 50px;

    p {
      margin-top: 30px !important;
      max-width: 70%;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      p {
        max-width: 100%;
        font-size: 14px;
      }
    }
  }

  .achievements {
    .achievement-grid {
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      gap: 24px;
      text-align: center;
    }

    .achievement-card {
      background: #fff;
      border-radius: 18px;
      padding: 35px 25px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e9f2;
      transition: 0.4s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: calc(33.33% - 16px);

      .icon {
        font-size: 32px;
        color: var(--primary-color);
      }

      h3 {
        color: #333;
        line-height: 1.6;
        font-size: 18px;
      }

      &:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-color);

        .icon {
          color: var(--secondary-color);
        }
      }
    }

    /* 📌 Tablet screens (2 cards per row) */
    @media (max-width: 991px) {
      .achievement-card {
        width: calc(50% - 16px);
        padding: 30px 20px;

        h3 {
          font-size: 16px;
        }
      }
    }

    /* 📌 Mobile screens (1 card per row) */
    @media (max-width: 575px) {
      .achievement-card {
        width: 100%;
        padding: 25px 18px;

        .icon {
          font-size: 28px;
        }

        h3 {
          font-size: 15px;
        }
      }
    }
  }
}
/* HOME ABOUT */
.HomeAbout {
  .Image {
    width: calc(50% - 12px);
    max-width: 550px;
    position: relative;
    margin: 0 auto;
    .Student {
      background-color: var(--primary-color);
      padding: 25px;
      border-radius: 18px;
      width: 200px;
      text-align: center;
      position: absolute;
      top: 0;
      right: 0;
      span {
        font-size: 55px;
        font-weight: 600;
      }
      p {
        margin: 10px 0;
        font-weight: 500;
      }
      ul {
        display: flex;
        justify-content: center;
        li {
          width: 55px;
          height: 55px;
          overflow: hidden;
          border-radius: 50%;
          &:nth-child(2) {
            margin-left: -20px;
          }
          &:nth-child(3) {
            margin-left: -20px;
          }
          img {
            width: 100%;
            height: 100%;
            object-fit: conte;
          }
        }
      }
    }
  }
  .Cnt {
    width: calc(50% - 12px);

    .Para {
      max-width: 100%;
      margin: 40px 0;
    }
    .row {
      row-gap: 36px;
      .Flex {
        width: calc(50% - 12px);
        display: flex;
        align-items: center;
        gap: 15px;
        p {
          margin-top: 7px;
        }
        i {
          width: 55px;
          height: 55px;
          overflow: hidden;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: var(--secondary-color);
          color: var(--white-color);
          font-size: 25px;
        }
      }
    }
    .Primary-Btn {
      margin-top: 25px;
    }
  }
}
/* COUNTING SECTION */
.Counterup {
  .Container {
    padding: 50px 50px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    border-radius: 16px;
    gap: 24px;
    .Item {
      width: calc(25% - 16px);
      border-right: 1px solid var(--primary-color);
      &:last-child {
        border-right: none;
      }
    }
    .Flex {
      display: flex;
      align-items: center;
      gap: 14px;
      justify-content: center;
      padding-right: 30px;
      h6 {
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-color);
      }
      p {
        color: var(--white-color);
      }
    }
  }
}
/* HOMESERVICE */
.HomeService {
  background-color: var(--light-Bg);
  .Titles {
    .row {
      justify-content: space-between;
      .SectionTtle {
        width: 40%;
      }
      p {
        max-width: 400px;
      }
    }
  }
}
/* HOME EDUCATION */
.EducatinHome {
  padding-top: 100px;
  position: relative;
  &::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    height: 50vh;
    background-color: var(--secondary-color);
    z-index: -1;
  }
  .SectionTtle {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    h2 {
      color: var(--white-color);
    }
  }
  .EducationSlider {
    position: relative;
  }
  .EducatinSlide {
    overflow: hidden;
    margin: auto;
    position: relative;
    padding-bottom: 20px;
    .CourseCard {
      margin: 0 10px;
    }
  }
  .Navigation {
    button {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: none;
      background-color: var(--secondary-color);
      color: var(--white-color);
      cursor: pointer;
      &:hover {
        background-color: var(--primary-color);
        color: var(--black-color);
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
      }
    }
    .embla__prev {
      position: absolute;
      left: -10px;
      top: 50%;
    }
    .embla__next {
      position: absolute;
      right: -10px;
      top: 50%;
    }
  }
  .embla__prev {
    left: 10px;
  }

  .embla__next {
    right: 10px;
  }
}
/* BUILD EXPERTISE */
.BuildExpertise {
  .TitleFlex {
    display: flex;
    justify-content: space-between;
    .SectionTtle {
      width: 40%;
    }
    p {
      width: 35%;
    }
  }
  .row {
    margin-top: 70px;
  }
  ul {
    width: calc(30% - 12px);
    li {
      display: flex;
      gap: 18px;
      margin-bottom: 68px;
      &:last-child {
        margin-bottom: 0;
      }
      .Icon {
        i {
          width: 70px;
          height: 70px;
          background-color: #eaeaea;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          font-size: 32px;
        }
      }
      h3 {
        margin-bottom: 8px;
      }
    }
  }
  .Image {
    width: calc(70% - 12px);
    position: relative;
    img {
      border-radius: 18px;
      width: 100%;
    }
    .BgCard {
      display: inline-flex;
      padding: 12px 50px;
      align-items: center;
      gap: 36px;
      background-color: var(--secondary-color);
      position: absolute;
      top: -50px;
      right: 94px;
      .Flex {
        display: flex;
        align-items: center;
        gap: 15px;
        h1 {
          color: var(--primary-color);
        }
        p {
          color: var(--white-color);
          opacity: 1;
          text-transform: capitalize;
        }
      }
    }
  }
}
/* HOME BLOG */
.HomeBlog {
  background-color: #fff9f1;
  .TitleFlex {
    display: flex;
    align-items: end;
    justify-content: space-between;
    .Titles {
      max-width: 50%;
      .SectionTtle {
        margin-top: 10px;
      }
    }
  }
}
/* TESTIMONAL */
.TesttMonial {
  background-color: var(--secondary-color);
  padding: 80px 0;
  .TitleFlex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: end;
    .SectionTtle {
      h2 {
        color: var(--white-color);
      }
    }
  }
  .TestimonialSlider {
    position: relative;
    padding-bottom: 20px;
  }
  .Navigation {
    display: flex;
    flex-flow: column;
    gap: 5px;
    align-items: end;
    height: auto;
    button {
      background-color: transparent;
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      &:hover {
        background-color: var(--primary-color);
        color: var(--black-color);
        border: none;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
      }
    }
  }
  .TestimoanItem {
    background-color: #fff9f0;
    border-radius: 14px;
    padding: 60px;
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    i {
      color: var(--primary-color);
      font-size: 60px;
    }
    p {
      margin: 33px 0;
    }
    .Flex {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .Image {
      width: 70px;
      height: 70px;
      overflow: hidden;
      border-radius: 50%;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    .Name {
      h5 {
        font-size: 19px;
        font-weight: 400;
        text-transform: capitalize;
        margin-bottom: 3px;
      }
      span {
        font-size: 13px;
        font-weight: 400;
        opacity: 0.6;
      }
    }
  }
  .slick-slide > div {
    width: 100%;
  }
  .slick-slide {
    height: auto !important;
  }
  .slick-track {
    display: flex !important;
    align-items: stretch;
  }
  /* VIDEO */
  .testimonial-item {
    margin: 0px 10px;
  }
  .video-wrap {
    position: relative;
    aspect-ratio: 437 / 600;
    width: 100%;
    overflow: hidden;

    video {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .video-btn {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.6);
      border: none;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      i {
        color: #fff;
        font-size: 22px;
        position: absolute;
      }

      .fa-pause {
        display: none;
      }

      &.pause {
        .fa-play {
          display: none;
        }
        .fa-pause {
          display: block;
        }
      }
    }
  }
}
/* PARTNERS UNIVERSITY */
.Partners {
  padding: 50px 0;

  .PartnerSlider {
    display: flex;
    align-items: center;
    margin-top: 23px;

    .PartnerItem {
      display: flex !important;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 6px;
      height: 150px;
      margin: 0 10px;
      padding: 15px;

      img {
        width: 130px;
        height: 100%;
        object-fit: contain;
        opacity: 0.8;
        transition: all 0.3s ease;
        mix-blend-mode: multiply;

        &:hover {
          filter: grayscale(0%);
          opacity: 1;
          transform: scale(1.05);
        }
      }
    }
  }

  .slick-dots,
  .slick-arrow {
    display: none !important;
  }
}

/* APPROVALS, ACCREDITATIONS & RECOGNITIONS */
.Approvel {
  padding: 50px 0;
  background: #f9fafc;

  /* ===========================
        RESPONSIVE
  ============================ */
  @media (max-width: 575px) {
    padding: 30px 0;
  }

  .TitleFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;

    h2 {
      width: 70%;

      /* RESPONSIVE */
      @media (max-width: 768px) {
        width: 100%;
        text-align: center;
      }
    }

    p {
      max-width: 450px;

      /* RESPONSIVE */
      @media (max-width: 768px) {
        max-width: 100%;
        text-align: center;
        font-size: 14px;
      }
    }

    /* FLEX RESPONSIVE */
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }

  ul {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    /* RESPONSIVE */
    @media (max-width: 575px) {
      margin-top: 20px;
    }

    li {
      width: calc(25% - 15px);
      background: var(--white-color);
      border-radius: 12px;
      padding: 15px;

      /* 991px */
      @media (max-width: 991px) {
        width: calc(33.33% - 15px);
      }

      /* 768px */
      @media (max-width: 768px) {
        width: calc(50% - 8px);
      }

      /* 480px */
      @media (max-width: 370px) {
        width: 100%;
      }

      .Img {
        width: 100%;
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
          width: 80%;
          height: 100%;
          object-fit: contain;

          /* RESPONSIVE */
          @media (max-width: 480px) {
            width: 70%;
          }
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
          height: 120px;
        }
        @media (max-width: 768px) {
          height: 110px;
        }
        @media (max-width: 480px) {
          height: 100px;
        }
      }

      h3 {
        margin-top: 15px;
        font-size: 20px;
        font-weight: 600;
        color: var(--secondary-color);
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;

        /* RESPONSIVE */
        @media (max-width: 991px) {
          font-size: 18px;
        }
        @media (max-width: 768px) {
          font-size: 16px;
          min-height: auto;
        }
        @media (max-width: 480px) {
          font-size: 15px;
        }
      }
    }
  }
}
/* HOME FORM */
.HomeForm {
  .Title {
    text-align: center;
    .SubTitle {
      margin-bottom: 6px;
    }
    .SectionTtle {
      margin-bottom: 19px;
    }
  }
  .Img {
    aspect-ratio: 1572/666;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .Form {
    background-color: var(--white-color);
    border-radius: 14px;
    padding: 30px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: -65px;
    position: relative;
    z-index: 999;
    form {
      margin-top: 14px;
      .Flex {
        display: flex;
        column-gap: 18px;
        row-gap: 18px;
        flex-flow: row wrap;
        input {
          width: calc(24% - 0px);
        }
      }
      .TwoInput {
        margin-top: 18px;
        input {
          width: calc(50% - 10px);
        }
      }
      input {
        padding: 13px 10px;
        outline: none;
        font-size: 15px;
        border-radius: 5px;
        border: 1px solid #cfcfcf;
      }
      .OneColor {
        textarea {
          width: 100%;
          margin-top: 17px;
          outline: none;
          padding: 13px 10px;
          font-family: "Inter", sans-serif;
          font-size: 14px;
          border: 1px solid #cfcfcf;
          border-radius: 5px;
        }
      }
      button {
        width: 100%;
        background-color: var(--primary-color);
        border: none;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 400;
        margin-top: 13px;
        border-radius: 5px;
        &:hover {
          background-color: var(--secondary-color);
          color: var(--white-color);
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        }
      }
    }
  }
}
/* FOOTER */
footer {
  position: relative;
  padding-top: 100px;
  background-color: var(--secondary-color);
  overflow: hidden;
  &::after {
    content: "";
    width: 300px;
    height: 300px;
    border: 70px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    bottom: -124px;
    left: -144px;
    opacity: 0.1;
  }
  &::before {
    content: "";
    width: 300px;
    height: 300px;
    border: 70px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -113px;
    right: -91px;
    opacity: 0.1;
  }
  .row {
    align-items: start;
    justify-content: space-between;
  }
  ul {
    padding-bottom: 20px;
    li {
      .Ft-Logo {
        width: 120px;
      }
      p {
        margin-top: 20px;
        color: var(--white-color);
        max-width: 400px;
      }
      .Links {
        h3 {
          color: var(--white-color);
          margin-bottom: 23px;
        }
        ul {
          li {
            margin: 15px 0;
            width: 100%;
            transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
            a {
              color: var(--white-color);
              font-weight: 400;
              opacity: 0.6;
              transition: opacity 0.5s ease-in-out;
            }

            &:hover {
              transform: translateX(7px);
              a {
                opacity: 1;
              }
            }
          }
        }
        .Itme {
          span,
          a {
            color: var(--white-color);
            opacity: 0.6;
            &:hover {
              color: var(--primary-color);
              opacity: 0.9;
              transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
            }
          }
          span {
            display: block;
            margin-bottom: 9px;
          }
          margin-bottom: 40px;
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
      &:nth-child(1) {
        width: calc(30% - 18px);
      }
      &:nth-child(2) {
        width: calc(20% - 18px);
      }
      &:nth-child(3) {
        width: calc(25% - 18px);
      }
      &:nth-child(4) {
        width: calc(25% - 18px);
      }
    }
  }
  .CopyRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: var(--white-color);
    border-top: 1px solid
      color-mix(in srgb, var(--white-color) 30%, transparent);
    .Develop {
      display: flex;
      align-items: center;
      gap: 10px;
      img {
        width: 120px;
      }
    }
  }
}
/* WHATSAPP CHAT BUTTON */
button.wh-ap-btn {
  outline: none;
  width: 60px;
  height: 60px;
  border: 0;
  background-color: #2ecc71;
  padding: 0;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
  content: "";
  background-image: url("../images/whatsapp-brands-solid-full.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  color: var(--white-color);
}

button.wh-ap-btn:hover {
  opacity: 1;
  background-color: #20bf6b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
  position: fixed;
  bottom: 0;
  right: 0;
}

.wh-fixed {
  margin-right: 15px;
  margin-bottom: 15px;
}

.wh-fixed > a {
  display: block;
  text-decoration: none;
}

/* button.wh-ap-btn::before {
  content: "Chat with me";
  display: block;
  position: absolute;
  margin-left: -130px;
  margin-top: 16px;
  height: 25px;
  background: #49654e;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  border-radius: 3px;
  width: 0;
  opacity: 0;
  padding: 0;
  transition: opacity 0.4s, width 0.4s, padding 0.5s;
  padding-top: 7px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  z-index: 9999;
} */

.wh-fixed > a:hover button.wh-ap-btn::before {
  opacity: 1;
  width: auto;
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100px;
}

/* animacion pulse */

.whatsapp-pulse {
  width: 60px;
  height: 60px;
  right: 10px;
  bottom: 10px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999999;
  display: inline-block;
  line-height: 65px;
}

.whatsapp-pulse:before {
  position: absolute;
  content: " ";
  z-index: -1;
  bottom: -15px;
  right: -15px;
  background-color: #10b418;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* ENQUIRY FORM */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;

  &.active {
    display: flex;
  }

  .modal-box {
    background: var(--white-color);
    padding: 30px;
    max-width: 420px;
    width: 100%;
    border-radius: 10px;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
  }
  /* FORM */
  h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 23px;
    font-weight: 600;
  }

  .enquiry-form {
    width: 100%;

    input {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 14px;

      &:focus {
        border-color: var(--primary-color);
        outline: none;
      }
    }

    button {
      width: 100%;
      padding: 12px;
      background: var(--secondary-color);
      color: var(--white-color);
      border: none;
      border-radius: 40px;
      font-size: 15px;
      cursor: pointer;

      &:hover {
        background: var(--primary-color);
        color: var(--black-color);
      }
    }
  }
}
/* INNER BANNER */
.InnerBanner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1920/526;
  display: flex;
  align-items: center;
  h1 {
    color: var(--white-color);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 10px;
    li {
      &:last-child {
        a {
          color: var(--primary-color);
        }
      }
      a {
        color: var(--white-color);
      }
    }
  }
}
/* ABOUT US PAGE */
.AboutPageSection {
  text-align: center;
  margin: 100px 0;
  @media (max-width: 768px) {
    margin: 50px 0;
  }
  .SectionTtle {
    margin-bottom: 20px;
    @media (max-width: 575px) {
      margin-top: 10px;
      br {
        display: none;
      }
    }
  }
  p {
    max-width: 1100 px;
    margin: 0 auto;
  }
  p + p {
    margin: 20px auto;
  }
}
.OurStory {
  padding: 100px 0;
  background: #f7f8fb;
  @media (max-width: 575px) {
    padding: 50px 0;
  }

  .Container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }

  .StoryWrap {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* LEFT CONTENT */
  .StoryContent {
    width: 55%;
  }

  .SectionTtle h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }

  .Movement {
    margin: 30px 0;

    p {
      padding-left: 15px;
      border-left: 3px solid var(--primary-color);
      font-weight: 500;
    }
  }

  .StoryHighlight {
    margin-top: 30px;
    padding: 22px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    strong {
      color: var(--secondary-color);
    }
  }

  /* RIGHT IMAGE */
  .StoryImage {
    width: 45%;
  }

  .StoryImage img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .StoryWrap {
      flex-direction: column;
    }

    .StoryContent,
    .StoryImage {
      width: 100%;
    }

    .StoryImage {
      margin-top: 40px;
    }
  }
}
.VisionMision {
  padding-top: 70px;
  background-color: #f6f6f6;
  @media (max-width: 1200px) {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  @media (max-width: 991px) {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  @media (max-width: 575px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .Flex {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;
    .Photo {
      width: calc(50% - 12px);
      @media (max-width: 991px) {
        width: 100%;
      }
      img {
        width: 100%;
      }
    }
    .Cnt {
      width: calc(50% - 12px);
      max-width: 600px;
      margin: 0 auto;
      @media (max-width: 991px) {
        width: 100%;
      }
      .Tab {
        margin: 18px 0;
        ul {
          display: flex;
          align-items: center;
          gap: 6px;
          border-radius: 50px;
          li {
            padding: 5px 20px;
            border: 1px solid #ccc;
            cursor: pointer;
            border-radius: 50px;
            list-style: none;
            margin-left: 0;
            opacity: 1;
            &.active {
              background: var(--secondary-color);
              color: #fff;
            }
          }
        }
      }
      .TabContent {
        margin-top: 20px;

        .content {
          display: none;

          &.active {
            display: block;
          }
        }
      }
      ul {
        margin-top: 14px;
        li {
          list-style: disc;
          margin-left: 20px;
          padding: 5px 0;
          font-size: 17px;
          opacity: 0.6;
          font-weight: 300;
          line-height: 23px;
        }
      }
    }
  }
}
/* USP */
.Usp {
  margin: 100px 0;
  @media (max-width: 768px) {
    margin: 50px 0;
  }
  .Flex {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;
    .Item {
      width: calc(25% - 18px);
      text-align: center;
      @media (max-width: 1024px) {
        width: calc(50% - 18px);
        padding: 0 40px;
      }
      @media (max-width: 768px) {
        padding: 0 0px;
      }
      @media (max-width: 575px) {
        width: 100%;
        padding: 0 35px;
      }
      h3 {
        margin: 15px 0;
      }
      i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50px;
        background-color: var(--secondary-color);
        color: var(--white-color);
        font-size: 20px;
        margin: 0 auto;
        font-size: 27px;
      }
    }
  }
}
/* TEAMS */
.Teams {
  margin: 100px 0;
  @media (max-width: 768px) {
    margin: 50px 0;
  }
  .SectionTtle {
    text-align: center;
    @media (max-width: 575px) {
      br {
        display: contents;
      }
    }
  }
  .OurTeams {
    margin-top: 50px;
    @media (max-width: 768px) {
      margin-top: 30px;
    }
    li {
      padding: 0px 10px;
      .Image {
        border-radius: 32px;
        overflow: hidden;
        aspect-ratio: 562/ 640;
        position: relative;
        border: 2px solid var(--secondary-color);
        @media (max-width: 768px) {
          border-radius: 15px;
        }
        &:after {
          content: "";
          background: linear-gradient(
            to bottom,
            rgba(28, 30, 109, 0) 30%,
            rgba(28, 30, 109, 0.6) 70%,
            #1c1e6d 100%
          );
          transition: opacity 0.3s ease;
          opacity: 0;
          position: absolute;
          inset: 0;
          @media (max-width: 768px) {
            opacity: 1;
          }
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .Cnt {
          position: absolute;
          bottom: 35px;
          left: 35px;
          color: var(--white-color);
          text-align: left;
          z-index: 99;
          opacity: 0;
          transition: opacity 0.3s ease, z-index 0.3s ease;
          @media (max-width: 575px) {
            opacity: 1;
            left: 15px;
            bottom: 15px;
          }
          h3 {
            margin-bottom: 10px;
          }
        }
      }
      &:hover {
        .Cnt {
          opacity: 1;
        }
        .Image {
          &:after {
            opacity: 1;
          }
        }
      }
    }
    .team-arrow {
      width: 44px;
      height: 44px;
      background: #1c1e6d;
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      @media (max-width: 575px) {
        width: 35px;
        height: 35px;
      }

      i {
        font-size: 16px;
        color: #fff;
        display: block;
      }
    }
    .slick-prev {
      left: -10px;
    }
    .slick-next {
      right: -10px;
    }
    .slick-prev::before,
    .slick-next::before {
      content: none !important;
    }
  }
}
/* FAQ */
.Faq {
  .Bg {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 50px;
    @media (max-width: 575px) {
      padding: 35px;
    }
    .Titels {
      width: 100%;
      text-align: center;
      .SubTitle {
        h3 {
          color: var(--white-color);
        }
      }
      .SectionTtle {
        margin: 10px 0;
        h2 {
          color: var(--primary-color);
        }
      }
      p {
        color: var(--white-color);
        max-width: 700px;
        margin: 0 auto;
      }
    }
    .Conent {
      width: 70%;
      margin: 40px auto;
      @media (max-width: 575px) {
        width: 100%;
      }
      .Item {
        border-bottom: 1px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 20px;

        .AccourdianTitle {
          display: flex;
          align-items: start;
          justify-content: space-between;
          cursor: pointer;

          h3 {
            color: var(--white-color);
            @media (max-width: 768px) {
              width: 90%;
            }
            @media (max-width: 768px) {
              font-size: 19px;
            }
          }

          i {
            color: var(--secondary-color);
            background-color: var(--primary-color);
            width: 30px;
            height: 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            @media (max-width: 768px) {
              width: 25px;
              height: 25px;
            }
          }
        }

        .Answer {
          overflow: hidden;
          max-height: 0;
          opacity: 0;
          transition: max-height 0.4s ease, opacity 0.3s ease;

          p {
            color: var(--white-color);
            margin-top: 10px;
            max-width: 90%;
          }
          ul {
            list-style: disc;
            list-style-position: outside;
            padding-left: 20px;

            li {
              color: var(--white-color);
              padding: 3px 0;
              opacity: 0.6;
            }
          }
        }

        &.active {
          .Answer {
            max-height: 500px;
            opacity: 1;
          }

          .AccourdianTitle i {
            transform: rotate(180deg);
          }
        }
      }
    }
  }
}
.AboutTestimonial {
  padding-bottom: 0 !important;
  background-color: transparent !important;
  .SectionTtle {
    h2 {
      color: var(--black-color) !important;
    }
  }
  .Navigation {
    button {
      background-color: transparent;
      border: 1px solid var(--secondary-color) !important;
      color: var(--secondary-color) !important;
      cursor: pointer !important;
      &:hover {
        border: none !important;
      }
    }
  }
}
/* CONTACT US PAGE */

/* Contact Section */
.contact-section {
  padding-top: 80px;
  @media (max-width: 575px) {
    padding-top: 50px;
  }

  .SectionTtle {
    text-align: center;
    margin-bottom: 50px;
    @media (max-width: 575px) {
      margin-bottom: 25px;
    }
  }
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Left Content */
.contact-info {
  h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 20px;
    color: var(--black-color);
  }

  p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .Flex {
    display: flex;
    align-items: start;
    gap: 100px;
    @media (max-width: 576px) {
      flex-flow: row wrap;
      gap: 10px;
    }
    .info-block {
      margin-bottom: 20px;
      a {
        color: var(--black-color);
        &:hover {
          color: var(--secondary-color);
        }
      }
      strong {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--black-color);
      }
    }
  }

  .phone {
    display: inline-block;
    margin: 20px 0;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
  }

  .social-links {
    a {
      margin-right: 15px;
      font-size: 14px;
      color: #555;
      text-decoration: none;

      &:hover {
        color: var(--primary-color);
      }
    }
  }
}

/* Form */
.contact-form {
  position: relative;

  .form-count {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
  }

  h4 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--black-color);
    font-weight: 400;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  input,
  textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
    background: transparent;

    &:focus {
      border-color: var(--primary-color);
    }
  }

  textarea {
    resize: none;
    height: 90px;
    margin-bottom: 30px;
  }

  button {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;

    &:hover {
      background: var(--secondary-color);
    }
  }
}

/* Map */
.map-wrapper {
  margin-top: 80px;
  border-radius: 12px;
  overflow: hidden;

  iframe {
    width: 100%;
    height: 300px;
    border: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form {
    .form-row {
      grid-template-columns: 1fr;
    }
  }
}
.Gallery {
  margin: 100px 0;

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Tablet */
  @media (max-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }

  .gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
  }

  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img,
  .gallery-item:hover video {
    transform: scale(1.05);
  }

  .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
  }

  /* Modal */
  .gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .gallery-modal.active {
    display: flex;
  }

  .modal-content img,
  .modal-content video {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
  }

  .gallery-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
}
/*  */
.Academic {
  background-color: transparent;
  margin: 80px 0;
  @media (max-width: 576px) {
    margin: 50px 0;
  }
  .SectionTtle {
    text-align: center;
    h2 {
      margin-bottom: 5px;
    }
  }
  ul {
    margin-top: 50px;
    li {
      margin: 0 10px;
      border: 1px solid #cacaca;
      border-radius: 8px;
      overflow: hidden;
      padding: 20px;
      img {
        height: 80px;
        width: 100%;
        object-fit: contain;
        margin: 0 auto;
      }
      h3 {
        margin-top: 10px;
        text-align: center;
        opacity: 0.7;
        font-size: 18px;
        min-height: 50px;
        @media (max-width: 576px) {
          font-size: 16px;
          br {
            display: contents;
          }
        }
      }
    }
  }
  @media (max-width: 576px) {
    .slick-list {
      padding: 0 20% 0 0 !important;
    }
  }
}
