/*!
Theme Name: mtn_theme
Theme URI: http://mtn-c.com/
Author: Underscores.me
Author URI: http://mtn-c.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mtn_theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --theme-color: #00244d;
  --black-color: #222222;
  --white-color: #fff;
  --light-gray-color: #d9d9d9;
  /* --gray-color: #8d8d8d; */
  --gray-color: #534f5a;
  --gray-light-color: #e1e1e1;
  --dark-gray-color: #1f1e21;
  --light-theme-color: #c7e6ff;
  --light-blue-color: #f1fafe;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"); */
html {
  margin-top: 0 !important;
}
body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.btn {
  box-shadow: none !important;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  background: var(--white-color);
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 0 !important;
}

/* * {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color) #f1f1f1;
} */
body.loading {
  overflow: hidden;
}
.btn-theme,
.woocommerce-Button.button.btn-theme,
.rm-btn-primary,
button[type="submit"] {
  border-radius: 6px !important;
  font-weight: 600 !important;
  color: var(--white-color) !important;
  background-color: var(--theme-color) !important;
  padding: 8px 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  gap: 14px;
  width: fit-content !important;
  span {
    position: relative;
  }
  svg {
    transition: 0.5s;
  }
  &:hover,
  &:focus {
    color: var(--theme-color) !important;
    background-color: var(--light-theme-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
    svg {
      transform: rotate(45deg);
      path {
        stroke: var(--theme-color);
      }
    }
  }
}

.btn-white {
  background-color: var(--white-color);
  padding: 6px 19px;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  gap: 14px;
  transition: 0.5s;
  svg {
    transition: 0.5s;
  }
  span {
    position: relative;
  }
  &:hover,
  &:focus {
    color: var(--theme-color);
    background-color: var(--light-theme-color);
    transform: translateY(-2px);
    box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
    svg {
      transform: rotate(45deg);
    }
    /* &::before {
      width: 100%;
    } */
    /* box-shadow: inset 10em 0 0 0 var(--light-theme-color),
      inset -10em 0 0 0 var(--light-theme-color) !important; */
  }
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--theme-color);
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 3px;
  position: relative;
  width: fit-content;
  svg {
    transition: all 0.3s ease;
  }
  &::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--theme-color);
    bottom: 0px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  &:hover {
    &::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    svg {
      transform: rotate(45deg);
    }
  }
}

.card-common-icon {
  height: 80px;
  width: 80px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-theme-color);
  position: relative;
  transition: 0.3s ease-in-out;
  flex-shrink: 0;
  &::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    border: 1px dashed var(--theme-color);
  }
}

.common-card {
  background-color: var(--white-color);
  border-radius: 10px;
  height: 100%;
  box-shadow: 0px 4px 12px 0px #00000040;
  padding: 20px 30px;
  position: relative;
  &::before {
    border-radius: 10px;
    transform: scale(0);
    background: var(--theme-color);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: transform 0.5s ease;
  }
  .card-circle-icon {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    box-shadow:
      0px 0px 0 4px #fff,
      0px 0px 0px 6px #00234b;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
    margin-top: -70px;
    &:after {
      position: absolute;
      left: 50%;
      top: 50%;
      content: "";
      height: 14px;
      width: 14px;
      margin-left: -8px;
      margin-top: -8px;
      background: var(--white-color);
      border-radius: 50%;
      animation: 10s linear 0s infinite normal none running spinnerRotate;
      border: 2px solid var(--theme-color);
      transition: 0.35s ease-in-out;
    }
    &::before {
      background: linear-gradient(115deg, #7593b6, #c4e6fd);
      transition: all 0.35s ease-in-out;
      position: absolute;
      left: 0;
      top: 0;
      content: "";
      height: 100%;
      width: 100%;
      border-radius: 50%;
    }
    svg,
    img {
      position: relative;
      height: 40px;
      width: 40px;
    }
  }
  .common-card-content {
    position: relative;
    h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 14px;
    }
    p {
      font-size: 17px;
      color: var(--gray-color);
      line-height: 26px;
    }
  }
  .seperate-block {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    background-color: var(--theme-color);
    width: 50px;
    height: 1px;
    .seperate-block-gap {
      position: absolute;
      top: 0px;
      bottom: 0px;
      width: 12px;
      background-color: var(--white-color);
      animation: 1.5s ease-in-out 0s infinite normal none running
        RadiantThemesSeparatorAnimation;
    }
  }
  &:hover {
    &::before {
      transform: scale(1);
    }
    .common-card-content {
      h4,
      p {
        color: var(--white-color);
      }
    }
    .seperate-block {
      background-color: #c4e6fd7a;
    }
  }
  &:not(:hover)::before {
    transition: none;
  }
}
.custom-row-gutter-80 {
  row-gap: 80px;
}
@keyframes spinnerRotate {
  0% {
    transform: rotate(0deg) translateX(39px);
  }
  100% {
    transform: rotate(360deg) translateX(39px);
  }
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-gray-color);
  margin-bottom: 40px;
  text-align: center;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  /* line-height: 56px; */
}
.section-sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 12px;
  text-align: center;
  background: var(--light-theme-color);
  padding: 1px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  position: relative;
  /* &::before,&::after {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    height: 2px;
    top:50%;
    transform: translateY(-50%);
    width: 50%;
  }
  &::before {
    left: -60%;
  }
  &::after {
    right: -60%;
  } */
}

/* BEGIN LOADER CSS */
.loader-wrapper {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: var(--light-blue-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  .loader {
    width: 3.75em;
    aspect-ratio: 1;
    position: relative;
    animation: spin 10000ms infinite linear;
    &::before,
    &::after {
      content: "";
      position: absolute;
      background: var(--theme-color);
      animation: squeeze 3000ms infinite;
    }
    &:after {
      background: var(--light-theme-color);
      animation-delay: -1.25s;
      border-radius: 50px;
    }
  }
}
/* END LOADER CSS */

@keyframes squeeze {
  0% {
    inset: 0 2em 2em 0;
  }
  12.5% {
    inset: 0 2em 0 0;
  }
  25% {
    inset: 2em 2em 0 0;
  }
  37.5% {
    inset: 2em 0 0 0;
  }
  50% {
    inset: 2em 0 0 2em;
  }
  62.5% {
    inset: 0 0 0 2em;
  }
  75% {
    inset: 0 0 2em 2em;
  }
  87.5% {
    inset: 0 0 2em 0;
  }
  100% {
    inset: 0 2em 2em 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(-360deg);
  }
}
/*BEGIN: HEADER */
.mtn-header {
  background-color: var(--theme-color);
  padding: 10px 0;
  height: 100px;
  transition: all 0.35s ease;
  .navbar-toggler {
    border: none;
    background-color: transparent;
    box-shadow: none;
    height: 40px;
    width: 40px;
    gap: 4px;
    padding: 4px;
    background-color: var(--white-color);
    color: aqua;
    span {
      height: 2px;
      background-color: var(--theme-color);
      display: block;
      transition: 0.25s ease-in-out;
      margin-left: auto;
      &:not(:last-child) {
        margin-bottom: 6px;
      }
      &:nth-child(1) {
        width: 30px;
      }
      &:nth-child(2) {
        width: 25px;
      }
      &:nth-child(3) {
        width: 20px;
      }
    }
    &[aria-expanded="true"] {
      span {
        &:nth-child(1) {
          transform: rotate(45deg);
          width: 30px;
        }
        &:nth-child(2) {
          opacity: 0;
        }
        &:nth-child(3) {
          transform: rotate(-45deg);
          width: 30px;
        }
      }
    }
  }
  &.is-sticky {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease forwards;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.mtn-main-menu .menu-main-menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  li {
    position: relative;
    a {
      color: var(--white-color);
      font-weight: 500;
      text-decoration: none;
    }
    &.current-menu-item {
      a {
        color: var(--light-theme-color);
      }
    }
    &::before {
      content: "";
      position: absolute;
      height: 3px;
      width: 40px;
      border-radius: 10px;
      background-color: var(--light-theme-color);
      left: 50%;
      bottom: -5px;
      transform: translateX(-50%) scaleX(0);
      transition: transform 0.3s ease;
    }
    &:hover::before,
    &.current-menu-item::before {
      transform: translateX(-50%) scaleX(1);
    }
  }
}
.mtn-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  .btn-header {
    background-color: var(--white-color);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: none;
    span {
      position: relative;
      z-index: 2;
    }
    &::before {
      content: "";
      position: absolute;
      transform: translate(-50%, -50%);
      left: 50%;
      border-radius: 999px;
      top: 50%;
      background: var(--light-theme-color);
      transition: 0.25s ease-in;
      height: 0px;
      width: 0px;
    }
    &:hover::before {
      height: 100%;
      width: 100%;
    }
  }
  .btn-outline-header {
    background-color: transparent;
    height: 36px;
    padding: 6px 16px;
    border: 1px solid var(--white-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.5s ease;
    span {
      position: relative;
      z-index: 2;
    }
    &:hover,
    &:focus {
      color: var(--theme-color);
      background-color: var(--light-theme-color);
      transform: translateY(-2px);
      box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
    }
  }
  .btn-light-header {
    padding: 6px 16px;
    height: 36px;
    text-transform: uppercase;
  }
  li {
    position: relative;
    .cart-count {
      position: absolute;
      right: -2px;
      top: -4px;
      padding: 4px;
      background: var(--light-theme-color);
      border-radius: 100%;
      display: inline-block;
      font-size: 11px;
      height: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 16px;
    }
    .mini-cart-wrapper {
      position: absolute;
      background-color: var(--white-color);
      border-radius: 10px;
      border: none;
      min-width: 350px;
      top: 130%; /* adjust as needed */
      right: 0;
      opacity: 0;
      transform: scale(0.8);
      pointer-events: none;
      visibility: hidden;
      transition:
        opacity 300ms cubic-bezier(0.34, 1.61, 0.7, 1),
        transform 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
      z-index: 10;
      box-shadow: 0px 4px 12px 0px #00000040;
      .mini-cart {
        .mini-cart-header {
          display: flex;
          align-items: center;
          gap: 10px;
          padding-bottom: 8px;
          border-bottom: 1px solid var(--light-gray-color);
          padding: 10px 20px;
          background: var(--light-blue-color);
          border-radius: 10px 10px 0px 0px;
          .mini-cart-header-icon {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background-color: green;
            display: flex;
            align-items: center;
            justify-content: center;
            svg {
              height: 15px;
              width: 15px;
            }
          }
          span {
            font-weight: 600;
            color: var(--theme-color);
          }
        }
        .cart-item-list {
          padding: 20px;
          li {
            display: flex;
            gap: 10px;
            &:not(:last-child) {
              margin-bottom: 16px;
              border-bottom: 1px solid var(--light-gray-color);
              padding-bottom: 16px;
            }
            .details {
              p {
                font-size: 15px;
                line-height: 20px;
                font-weight: 600;
              }
              .item {
                display: flex;
                align-items: center;
                gap: 5px;
                font-size: 15px;
                margin-top: 8px;
                .price {
                  color: var(--theme-color);
                  font-weight: 600;
                }
              }
            }
            .btn-delete-item {
              height: 26px;
              width: 26px;
              border: none;
              background: var(--light-blue-color);
              border-radius: 5px;
              flex-shrink: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 0;
              transition: all 0.3s ease;
              svg {
                height: 14px;
                width: 14px;
                transition: all 0.3s ease;
              }
              &:hover {
                background-color: var(--theme-color);
                svg {
                  path {
                    fill: var(--white-color);
                  }
                }
              }
            }
          }
        }
        .mini-cart-footer {
          display: flex;
          align-items: center;
          justify-content: space-between;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 6px 20px;
          border: 1px solid var(--light-gray-color);
          border-left: 0;
          border-right: 0;
          /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16); */
          .label {
            font-weight: 600;
            color: var(--gray-color);
          }
          p {
            color: var(--theme-color);
          }
        }
        .cart-buttons {
          display: flex;
          align-items: center;
          gap: 12px;
          margin-top: 12px;
          padding: 0px 20px 20px;
          a {
            display: inline-block;
            flex: 1;
            text-align: center;
            transition: all 0.5s;
            padding: 6px 20px;
            &.view-cart {
              border: 1px solid var(--theme-color);
              border-radius: 100px;
              font-weight: 600;
              color: var(--theme-color);
              max-height: 36px;
              display: inline-block;
              &:hover {
                color: var(--theme-color);
                background-color: var(--light-theme-color);
                transform: translateY(-2px);
                box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
                border-color: transparent;
              }
            }
          }
        }
        &.empty {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          row-gap: 20px;
          padding: 20px;
          .cart-empty-image {
            position: relative;
            &::before {
              content: "";
              position: absolute;
              height: 190px;
              width: 190px;
              background-color: var(--light-blue-color);
              left: 50%;
              transform: translateX(-50%);
              bottom: 0;
              clip-path: circle(50% at 50% 100%);
            }
            svg {
              height: 130px;
              width: 130px;
              position: relative;
            }
          }

          p {
            font-size: 18px;
          }
        }
      }
      &::before {
        position: absolute;
        content: "";
        top: -11px;
        right: 10px;
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 13px solid var(--white-color);
      }
      &::after {
        position: absolute;
        content: "";
        height: 15px;
        width: 100%;
        top: -12px;
        left: 0;
      }
    }
    .cart-btn:hover ~ .mini-cart-wrapper,
    .cart-btn:focus ~ .mini-cart-wrapper,
    .mini-cart-wrapper:hover {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
      visibility: visible;
    }
  }
}
.header-sidebar {
  background-color: var(--theme-color);
  .offcanvas-header {
    padding-bottom: 0;
    justify-content: end;
    .header-btn-close {
      border: none;
      background: transparent;
    }
  }

  .offcanvas-body {
    .menu-main-menu-container {
      ul.menu {
        flex-direction: column;
        li {
          width: fit-content;
        }
      }
    }
  }
}
.search-form-wrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: var(--theme-color);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: 0.6s;
  &.search-opened {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0s;
    z-index: 999999;
  }
  .search-block {
    .search-top {
      margin-bottom: 40px;
      .search-close {
        display: inline-block;
        width: 35px;
        height: 35px;
        font-size: 35px;
        line-height: 1;
        margin-left: auto;
        svg {
          height: 20px;
          width: 20px;
          transition: all 0.5s ease;
        }
        &:hover {
          svg {
            transform: rotate(90deg);
          }
        }
      }
    }
    .search-group {
      position: relative;
      border-bottom: 1px solid #8b8b8b;
      input {
        &.form-control {
          background: transparent;
          border-radius: 0;
          border: none;
          box-shadow: none;
          outline: none;
          font-size: 24px;
          padding: 10px 50px 10px 0px;
          color: var(--white-color);
          font-weight: 400;
          &:focus {
            box-shadow: none;
          }
          &::placeholder {
            color: var(--light-gray-color);
          }
        }
      }
      .btn-search {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        padding: 0;
      }
      &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scale(0);
        height: 1px;
        width: 100%;
        background-color: var(--white-color);
        transition: transform 0.3s ease;
      }
      &:focus-within {
        .form-control:focus {
          border: none;
        }
        &::before {
          transform: translateX(-50%) scale(1);
        }
      }
    }
  }
}
.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-theme-color);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  cursor: zoom-out;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  &.search-popup-overlay-open {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.35s;
  }
}
/*END: HEADER */

/* BEGIN:FOOTER */
.mtn-footer {
  background-color: var(--theme-color);
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  .footer-content {
    p {
      color: var(--white-color);
      margin-top: 24px;
    }
  }
  .footer-ttl {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 39px;
    position: relative;
    color: var(--light-theme-color);
    &::before,
    &::after {
      position: absolute;
      content: "";
      background-color: white;
      height: 2px;
      bottom: -8px;
    }
    &:before {
      width: 40px;
      left: 0;
    }
    &::after {
      width: 4px;
      height: 4px;
      border-radius: 100%;
      left: 46px;
    }
  }
  .footer-links {
    padding-left: 18px !important;
    li {
      position: relative;
      &:not(:last-child) {
        margin-bottom: 12px;
      }
      a {
        color: var(--white-color);
        transition: 200ms linear 0.1s;
        display: inline-block;
        &:hover {
          color: var(--light-theme-color);
          padding-left: 3px;
        }
      }
      &::before {
        position: absolute;
        content: "";
        height: 6px;
        width: 6px;
        border-radius: 100%;
        background-color: #ffffff;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        box-shadow:
          0 0 0px 2px rgb(0 35 75),
          0 0 0px 3px rgb(255 255 255);
      }
    }
  }
  .footer-contact {
    p {
      color: var(--white-color);
      a {
        color: var(--white-color);
        text-decoration: underline;
        &:hover {
          color: var(--light-theme-color);
        }
      }
    }
    .footer-contact-email {
      margin-top: 15px;
      display: flex;
      align-items: center;
      gap: 14px;
      a {
        color: var(--white-color);
        &:hover {
          color: var(--light-theme-color);
        }
      }
    }
  }
  .footer-bottom {
    margin-top: 30px;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    .footer-copy {
      color: var(--white-color);
      display: block;
      text-align: center;
      font-size: 14px;
    }
    &::before,
    &::after {
      content: "";
      position: absolute;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.02);
    }
    &::before {
      height: 100px;
      width: 100px;
      bottom: 100px;
      right: 20px;
    }
    &::after {
      height: 70px;
      width: 70px;
      bottom: 60px;
      right: 90px;
    }
  }
  &::before,
  &::after {
    content: "";
    position: absolute;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
  }
  &::before {
    height: 100px;
    width: 100px;
    top: 20px;
    left: 20px;
  }
  &::after {
    height: 70px;
    width: 70px;
    top: 80px;
    left: 0;
  }
}
/* END:FOOTER */

/* BEGIN: HOME PAGE */
.main-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 0 !important;
  .shape-steps {
    position: absolute;
    z-index: 1;
    left: -90px;
    bottom: -70px;
    height: 150px;
    width: 150px;
    background-color: #00234b;
    box-shadow:
      0px 0px 0px 20px rgb(0 35 75 / 49%),
      0px 0px 0px 40px rgb(0 35 75 / 42%);
    transform: rotate(140deg);
    animation: bannerShadowPulse 2s infinite ease-out;
  }
  .slick-slide {
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
    .slide-image {
      height: 100%;
      position: relative;
      overflow: hidden;
      img {
        height: 100%;
        object-fit: cover;
        width: 100%;
        background-position: center;
        transition:
          transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
          opacity 0.5s;
        transform: scale(1.5);
        opacity: 0.7;
        will-change: transform, opacity;
      }
      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #00244d80;
      }
    }
    &.slick-active {
      .slide-image img {
        transform: scale(1);
        opacity: 1;
      }
    }
    .report-date,
    .rss-date {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      background-color: var(--light-theme-color);
      border-radius: 5px;
      padding: 2px 11px;
      width: fit-content;
      span {
        font-size: 14px;
        font-weight: 500;
        color: var(--dark-gray-color);
      }
      svg {
        height: 16px;
        width: 16px;
      }
    }
    .slide-content {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 40px 20px;
      z-index: 2;
      .slide-inner-block {
        position: relative;
        .mt-80 {
          margin-top: 80px;
        }
      }
      .slide-ttl {
        font-weight: 600;
        font-size: 64px;
        color: var(--white-color);
        margin-bottom: 32px;
        text-align: center;
      }
      .banner-btn {
        margin-top: 50px;
      }
      .report-card {
        padding: 37px 14px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        h5 {
          font-size: 20px;
          font-weight: 600;
          color: var(--theme-color);
          margin-bottom: 24px;
          margin-bottom: 10px;
        }
      }
      .rss-card {
        padding: 20px;
        position: relative;
        h5 {
          font-size: 20px;
          font-weight: 600;
          color: var(--theme-color);
          margin-bottom: 24px;
          margin-bottom: 10px;
        }
        p {
          color: var(--black-color);
          margin-bottom: 26px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
        .rss-icon {
          height: 55px;
          width: 55px;
          margin-bottom: 12px;
        }
        .read-more-link {
          margin-top: 10px;
        }
        &:hover {
          .card-common-icon {
            transform: rotate(10deg);
            &::before {
              transform: rotate(-20deg);
            }
          }
        }
      }
    }
  }
  .slick-dots {
    /* top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    width: var(
      --content-width,
      1200px
    ); /* Set this to your content's max-width */
    /* max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center; */
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: fit-content;
    li {
      button {
        padding: 0;
        height: 21px;
        width: 21px;
        border-radius: 50%;
        background-color: var(--light-theme-color);
        border: 4px solid var(--white-color);
        &::before {
          content: none;
        }
      }
      &.slick-active {
        button {
          background-color: var(--theme-color);
        }
      }
    }
  }
}

.pulse-container {
  position: absolute;
  width: 160px;
  height: 160px;
  left: -80px;
  top: 30px;
  .pulse-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: pulse 3s infinite ease-out;
    &:nth-child(1) {
      animation-delay: 0s;
    }
    &:nth-child(2) {
      animation-delay: 1s;
    }
    &:nth-child(3) {
      animation-delay: 2s;
    }
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.2);
    opacity: 0.8;
  }
  70% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes bannerShadowPulse {
  0% {
    box-shadow:
      0 0 0 0px #00234b7d,
      0 0 0 0px #00234b6b;
  }

  50% {
    box-shadow:
      0 0 0 20px #00234b7d,
      0 0 0 40px #00234b6b;
  }

  100% {
    box-shadow:
      0 0 0 40px transparent,
      0 0 0 80px transparent;
  }
}

/* HOME AND ABOUT PAGE COMMON STYLES */
.slide-card {
  h4 {
    font-size: 30px !important;
    color: var(--theme-color) !important;
  }
  p {
    color: var(--gray-color) !important;
    font-size: 18px !important;
  }
  &:before {
    content: none;
  }
  .seperate-block {
    background-color: var(--theme-color) !important;
  }
}
.report-card,
.rss-card {
  background-color: var(--white-color);
  border-radius: 10px;
  height: 100%;
  box-shadow: 0px 4px 12px 0px #00000040;
}

/* --------------- */

.core-offerings {
  margin-top: 100px;
  .core-offering-card {
    background-color: #c7e6ff38;
    border: 1px solid var(--light-theme-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .core-offering-card-top-block {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      h3 {
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-gray-color);
      }
    }
    p {
      color: var(--gray-color);
      text-align: justify;
      margin-bottom: 28px;
      line-height: 22px;
    }
    ul {
      margin-bottom: 28px;
      list-style: circle;
      padding-left: 16px;
      li {
        color: var(--gray-color);
        text-align: justify;
        line-height: 22px;
        &:not(:last-child) {
          margin-bottom: 10px;
        }
        &::marker {
          color: var(--theme-color);
        }
      }
    }
    &:hover {
      .card-common-icon {
        transform: rotate(10deg);
        &::before {
          transform: rotate(-20deg);
        }
      }
    }
    &::before {
      content: "";
      position: absolute;
      right: -16px;
      bottom: -16px;
      height: 40px;
      width: 37px;
      box-shadow:
        0px 0px 0px 14px #c4e6fd87,
        0px 0px 0px 25px #c4e6fd85;
      border-radius: 100px;
      background: #c4e6fd;
      animation: shadowPulse 2s infinite ease-out;
    }
  }
}
.press-highlights {
  margin-top: 100px;
  background: linear-gradient(180deg, #00234b0d, #f2f9ff);
  padding-bottom: 50px;
  position: relative;
  .section-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
  }
  .press-highlights-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px #00000040;
    padding: 26px 22px 16px;
    height: 100%;
    transition: 0.5s ease-in-out;
    border-bottom: 3px solid var(--theme-color);
    position: relative;
    display: flex;
    flex-direction: column;
    &:hover {
      transform: translateY(-9px);
      box-shadow: 0px 4px 12px 0px #00000050;
    }
    .press-highlights-card-inner-wrapper {
      flex: 1;
    }
    .press-highlights-card-ttl {
      font-size: 20px;
      font-weight: 500;
      color: var(--theme-color);
      margin-bottom: 16px;
    }
    .press-highlights-card-desc {
      color: var(--black-color);
      margin-bottom: 12px;
      font-weight: 500;
      line-height: 21px;
    }
    .press-highlights-card-source-block {
      margin-bottom: 15px;
      .press-highlights-card-source {
        display: block;
        font-style: italic;
        color: var(--gray-color);
        font-weight: 600;
        line-height: 19px;
      }
      svg {
        height: 20px;
        width: 20px;
        fill: var(--gray-color);
      }
    }

    .date-block {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      background-color: var(--light-theme-color);
      border-radius: 5px;
      padding: 4px 15px;
      width: fit-content;
      position: absolute;
      top: -14px;
      left: 20px;
      svg {
        height: 16px;
        width: 16px;
      }
      span {
        font-size: 14px;
        font-weight: 500;
        color: var(--theme-color);
      }
    }
  }
  .view-all-btn {
    margin-top: 50px;
    min-width: 168px;
  }
  &.press-highlights-in-the-press {
    padding-top: 70px;
    margin-top: 0;
    .press-highlights-in-the-press-row {
      row-gap: 40px;
      .user-icon {
        height: 16px;
        width: 16px;
      }
    }
    .report-filters {
      flex-wrap: wrap;
      .report-filters-block {
        min-width: 150px;
        width: fit-content;
        flex: 1;
        max-width: 230px;
      }
      #apply-report-filter {
        min-width: fit-content;
        width: 100% !important;
      }
    }
  }
}
.rss-feed {
  margin-top: 100px;
  .rss-feed-card {
    background-color: var(--light-blue-color);
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px #00000040;
    height: 100%;
    padding: 15px;
    transition: 0.5s ease-in-out;
    &:hover {
      transform: translateY(-9px);
      box-shadow: 0px 4px 12px 0px #00000050;
    }
    .rss-feed-card-image-wrapper {
      position: relative;
      .rss-feed-card-image {
        height: 200px;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid var(--light-theme-color);
        position: relative;
        &::before {
          position: absolute;
          content: "";
          top: 0;
          left: -75%;
          z-index: 2;
          display: block;
          width: 50%;
          height: 100%;
          background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%
          );
          transform: skewX(-25deg);
        }
        img {
          width: 100%;
          object-fit: cover;
        }
      }
      .badge {
        position: absolute;
        left: 50%;
        border-radius: 100px;
        padding: 8px 18px;
        color: var(--white-color);
        font-weight: 600;
        font-size: 14px;
        bottom: -13px;
        transform: translateX(-50%);
        background: linear-gradient(133deg, #00234b, #2f6baf);
        text-transform: uppercase;
      }
    }

    .rss-feed-card-body {
      padding: 28px 10px 0px 10px;
      position: relative;
      display: flex;
      flex-direction: column;
      height: calc(100% - 200px);
      .rss-feed-card-body-inner {
        flex: 1;
      }
      .date-block {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
        background-color: var(--light-theme-color);
        border-radius: 5px;
        padding: 2px 11px;
        width: fit-content;

        span {
          font-size: 14px;
          font-weight: 500;
          color: var(--theme-color);
        }
      }
      .rss-feed-card-title {
        font-size: 19px;
        /* color: var(--theme-color); */
        font-weight: 600;
        margin-bottom: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 26px;
        letter-spacing: 0.2px;
      }
      .btn-theme {
        position: absolute;
        bottom: 34px;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    &:hover {
      .rss-feed-card-image {
        &::before {
          animation: shine 1s ease-in-out;
        }
      }
    }
  }
  .view-all-btn {
    margin-top: 50px;
    min-width: 168px;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.our-partners {
  margin-top: 100px;
  background-color: var(--light-blue-color);
  padding: 50px 0px;
  position: relative;
  overflow: hidden;

  &::before {
    top: 0;
    left: 0;
    clip-path: polygon(100% 0, 0% 100%, 0 0);
  }
  &::after {
    right: 0;
    bottom: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .bg-shape {
    position: absolute;
    top: 0px;
    right: 0;
    svg {
      height: fit-content;
      width: 210px;
    }
  }
  .bg-shape-left {
    position: absolute;
    bottom: 0px;
    left: 0;
    svg {
      height: fit-content;
      width: 210px;
    }
  }
  .our-partners-card {
    background-color: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--light-theme-color);
    /* box-shadow: 0px 4px 12px 0px #00000040; */
    padding: 16px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 137px;
    img {
      max-height: 101px;
      transition: 0.5s ease;
    }
    &:hover {
      img {
        transform: scale(1.1);
      }
      /* transform: translateY(-9px);
      box-shadow: 0px 4px 12px 0px #00000050; */
    }
  }
}

.digital-service-support {
  margin-top: 70px;
  margin-bottom: 100px;

  .digital-service-support-wrapper {
    background-color: var(--dark-gray-color);
    border-radius: 10px;
    padding: 30px 31px 41px 37px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 18px 18px 0px -4px rgba(0, 0, 0, 0.5);
    &::before {
      content: "";
      position: absolute;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.02);
      height: 500px;
      width: 500px;
      bottom: -85%;
      right: -60px;
      border-radius: 100%;
    }

    .digital-service-support-content {
      max-width: 405px;
      h3 {
        font-size: 32px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 19px;
      }
      p {
        font-size: 20px;
        font-weight: 500;
        color: var(--white-color);
        line-height: 26px;
      }
    }
    .digital-service-support-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 22px;
    }
  }
}
/* ----Home PAGE END---- */
.inner-pages-banner {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 100px);
  padding: 60px 0px;
  min-height: fit-content;
  .inner-pages-banner-content {
    h2 {
      font-size: 64px;
      font-weight: 600;
      color: var(--white-color);
      margin-bottom: 50px;
      text-align: center;
    }
    p {
      font-size: 24px;
      font-weight: 600;
      color: var(--white-color);
      text-align: center;
    }
  }
}
.about-banner {
  padding-bottom: 200px;
}
.about-info {
  margin-top: -135px;
  .common-card {
    .common-card-content {
      h4 {
        font-size: 30px !important;
        color: var(--theme-color) !important;
      }
      p {
        color: var(--gray-color) !important;
        font-size: 18px !important;
      }

      .seperate-block {
        background-color: var(--theme-color) !important;
      }
    }
    &:before {
      content: none;
    }
  }
}
.value-proposition {
  margin-top: 98px;
  position: relative;
  p {
    font-size: 24px;
    text-align: justify;
  }
  .about-info-shape {
    position: absolute;
    right: 0;
    top: -70px;
    z-index: -1;
    img {
      animation: moveUpDown 7s ease-in-out infinite;
    }
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.our-team {
  margin-top: 100px;
  background-color: var(--theme-color);
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
  .top-shape {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    svg {
      width: 100%;
    }
  }
  .bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    transform: rotate(180deg);
  }
  .our-team-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 42px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    &::before {
      content: "---";
      color: var(--white-color);
      position: absolute;
      left: -28px;
      font-size: 22px;
      line-height: 57px;
    }
    &::after {
      content: "---";
      color: var(--white-color);
      position: absolute;
      right: -28px;
      font-size: 22px;
      line-height: 57px;
    }
  }
  .team-member-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px 0px #00000040;
    height: 100%;
    .member-photo {
      height: 275px;
      overflow: hidden;
      text-align: center;
      padding: 30px 15px 0px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      position: relative;
      background-color: var(--light-blue-color);
      img {
        transition: 1.5s ease-out;
        max-height: 245px;
        max-width: 207px;
        object-fit: contain;
        margin-top: auto;
      }
      .social-media-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        .social-media-list {
          display: flex;
          align-items: center;
          gap: 10px;
          z-index: 9;
          li {
            a {
              height: 40px;
              width: 40px;
              border-radius: 50%;
              background-color: var(--white-color);
              display: flex;
              align-items: center;
              justify-content: center;
              transition: all 0.4s;
              svg {
                transition: all 0.4s;
              }
              &:hover {
                background-color: var(--theme-color);
                svg {
                  transform: scale(1.15);
                  path {
                    fill: var(--white-color);
                  }
                }
              }
            }
          }
        }
      }
      &::before {
        content: "";
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        visibility: hidden;
        opacity: 0;
        z-index: 9;
        background: #00244dcc;
        transition: transition 0.4s;
      }
    }
    &:hover {
      .member-photo {
        img {
          transform: scale3d(1.1, 1.1, 1);
        }
        .social-media-wrapper {
          opacity: 1;
          visibility: visible;
        }
        &::before {
          transform: scale(1, 1);
          visibility: visible;
          opacity: 1;
        }
      }
    }
    .member-info {
      margin-top: 11px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 10px 23px 10px;
      .info-text {
        h4 {
          font-size: 24px;
          font-weight: 600;
        }
        span {
          font-size: 14px;
          font-weight: 600;
          color: var(--theme-color);
        }
      }
      .member-info-btn {
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background-color: var(--theme-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        flex-shrink: 0;
        svg {
          transition: 0.5s ease;
        }
        &:hover {
          background-color: var(--light-theme-color);
          svg {
            transform: rotate(45deg);
            path {
              stroke: var(--theme-color);
            }
          }
        }
      }
    }
  }
  .bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .bg-shape-right {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.team-member-modal {
  .modal-content {
    .btn-close {
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 9;
      box-shadow: none;
    }
    .modal-body {
      padding: 00px;
      .team-member-body-wrapper {
        border: 1px dashed var(--light-theme-color);
        .team-member-top-wrapper {
          position: relative;
          &::before {
            content: "";
            position: absolute;
            background-color: #e1ebf3;
            height: 140px;
            width: 100%;
            z-index: 1;
          }
          .team-member-top-block {
            padding: 20px;
            display: flex;
            column-gap: 30px;
            width: 100%;
            align-items: center;
          }
          .team-member-modal-image-wrapper {
            width: 180px;
            height: 180px;
            background-color: white;
            border-radius: 10px;
            flex-shrink: 0;
            overflow: hidden;
            border: 2px solid #192f537d;
            position: relative;
            z-index: 1;
            img {
              transition: all 0.3s;
              object-fit: contain;
            }
          }
          .team-member-modal-info {
            position: relative;
            z-index: 1;
            flex: 1;
            h3 {
              font-size: 28px;
              font-weight: 600;
              color: var(--theme-color);
              margin-bottom: 6px;
            }
            span {
              font-size: 22px;
              font-weight: 600;
              display: block;
            }
          }

          .member-social-media {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 38px;
            li {
              a {
                height: 36px;
                width: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background-color: var(--theme-color);
                transition: all 0.4s;
                svg {
                  transition: all 0.4s;
                  width: 18px;
                }
                &:hover {
                  background-color: var(--light-theme-color);
                  svg {
                    transform: scale(1.15);
                    path {
                      fill: var(--theme-color);
                    }
                  }
                }
              }
            }
          }
        }

        .team-member-modal-content {
          padding: 0px 25px 15px;
          p {
            color: var(--dark-gray-color);
            font-size: 15px;
            margin-bottom: 12px;
          }
        }
      }
    }
  }
}
.modal-backdrop {
  background-color: #00244dcc !important;
}

/* ---CONTACT US---- */
.contact-us-banner {
  background:
    linear-gradient(#1b1a1ad1, #1b1a1ad1),
    url("https://stgaing.mtn-c.com/wp-content/uploads/2026/01/contact-us.png")
      center / cover no-repeat;
}
.support-access {
  margin-top: 100px;
  .contact-form-wrapper {
    margin-top: 40px;

    .form-label {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
      line-height: 18px;
    }

    .submit-btn {
      min-width: 168px;
      margin-left: 0 !important;
      margin-top: 20px !important;
    }
    .note {
      width: fit-content;
      margin-top: 15px;
      background-color: var(--light-theme-color);
      border-radius: 5px;
      padding: 4px 10px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      column-gap: 10px;
      row-gap: 6px;
      span {
        /* background-color: var(--theme-color); */
        /* border-radius: 100px; */
        text-align: center;
        display: inline-block;
        font-weight: 600;
        color: var(--theme-color);
        /* padding: 0px 15px; */
      }
      p {
        font-weight: 600;
      }
    }
  }
}
.company-info {
  margin-top: 60px;
  margin-bottom: 60px;
  .company-info-wrapper {
    background-color: var(--white-color);
    border: 1px solid #e2e2e2;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 10px;
    height: 100%;
    .icon {
      height: 60px;
      width: 60px;
      border-radius: 100%;
      background-color: var(--light-theme-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 2px 2px 0px 0px rgb(25 47 83);
      svg {
        height: 24px;
        width: 24px;
      }
    }
    .company-info-content {
      h5 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 5px;
      }
      a,
      p {
        font-size: 17px;
        font-weight: 500;
        display: inline-block;
        color: var(--theme-color);
        &.email-id {
          text-decoration: underline;
        }
      }
    }
  }
}
.form-control,
.form-select {
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  font-size: 16px;

  &::placeholder {
    color: #8d8d8d;
  }
  &:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 36, 77, 0.25);
  }
}
.contact-us-image {
  width: 480px;
  height: 500px;
  background: var(--light-theme-color);
  border-radius: 58% 42% 65% 35% / 42% 58% 42% 58%;
  position: relative;
  animation: blobMove 4s ease-in-out infinite;
  max-width: 100%;
  img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 60% 58% 55% 45% / 30% 48% 52% 68%;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: blobMove 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
  }
}
@keyframes blobMove {
  0%,
  100% {
    border-radius: 58% 42% 65% 35% / 42% 58% 42% 58%;
  }
  50% {
    border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
  }
}
.contact-us-form {
  border-radius: 10px;
  background-color: var(--light-blue-color);
  padding: 20px;
  position: relative;
}
/* ---SUBSCRIPTION PAGE-- */
.uses-gni {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  padding-bottom: 50px;
  &::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 62%, 100% 0%, 100% 100%, 1% 100%);
    background-color: var(--light-blue-color);
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  .uses-gni-cards {
    margin-top: 80px;
  }
}

.what-included {
  margin-bottom: 100px;
  .what-included-card {
    background-color: #c7e6ff38;
    border: 1px solid var(--light-theme-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;

    &:hover {
      .card-common-icon {
        transform: rotate(10deg);
        &::before {
          transform: rotate(-20deg);
        }
      }
    }
    .plan-badge {
      background: var(--light-theme-color);
      padding: 2px 12px;
      border-radius: 5px;
      margin-left: auto;
      display: block;
      width: fit-content;
      color: var(--theme-color);
    }
    .what-included-card-content {
      h4 {
        font-size: 28px;
        font-weight: 600;
        margin-top: 26px;
        margin-bottom: 12px;
      }
      p {
        font-size: 17px;
        color: var(--gray-color);
        line-height: 26px;
      }
    }
    &::before {
      content: "";
      position: absolute;
      right: -16px;
      bottom: -16px;
      height: 40px;
      width: 37px;
      box-shadow:
        0px 0px 0px 14px #c4e6fd87,
        0px 0px 0px 25px #c4e6fd85;
      border-radius: 100px;
      background: #c4e6fd;
      animation: shadowPulse 2s infinite ease-out;
    }
  }
}
@keyframes shadowPulse {
  0% {
    box-shadow:
      0 0 0 0px #c4e6fd87,
      0 0 0 0px #c4e6fd85;
  }

  50% {
    box-shadow:
      0 0 0 14px #c4e6fd87,
      0 0 0 25px #c4e6fd85;
  }

  100% {
    box-shadow:
      0 0 0 28px transparent,
      0 0 0 45px transparent;
  }
}
.subscription-tier {
  margin-bottom: 100px;
  margin-top: 100px;
  .subscription-tier-container {
    padding: 0px 50px;
  }
  .subscription-tier-card {
    background-color: var(--light-blue-color);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    /* padding: 40px 26px; */
    border-radius: 10px;
    border: 1px solid var(--light-theme-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    .subscription-tier-card-inner-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .subscription-tier-card-price {
      span.amount {
        font-size: 20px;
        font-weight: 700;
        color: var(--theme-color);
      }
      span.subscription-details {
        font-size: 18px;
        font-weight: 500;
        color: var(--gray-color);
      }
    }
    .feature {
      margin-top: 10px;
      margin-bottom: 26px;
      p {
        &:first-child {
          margin-bottom: 10px !important;
        }
      }
      ul {
        margin-top: 4px;
      }
      li {
        position: relative;
        padding-left: 20px;
        font-size: 15px;
        &::before {
          content: "";
          position: absolute;
          height: 10px;
          width: 10px;
          background-color: var(--light-theme-color);
          border: 2px solid var(--theme-color);
          top: 7px;
          /* transform: translateY(-50%); */
          border-radius: 50%;
          left: 0px;
        }
        &:not(:last-child) {
          margin-bottom: 10px;
        }
      }
    }
    .subscription-tier-card-inner-wrap-head {
      padding: 42px 30px;
      position: relative;
      .plan-type {
        font: 32px;
        color: var(--theme-color);
        font-weight: 600;
        margin-bottom: 10px;
      }
      .pricing-shape {
        position: absolute;
        left: 0;
        bottom: -2px;
      }
      p {
        font-size: 19px;
        line-height: 26px;
        color: var(--theme-color);
      }
    }
    .subscription-tier-card-inner-wrap-body {
      padding: 28px 30px;
      border-top-right-radius: 50px;
      background-color: var(--white-color);
      flex: 1;
      .subscription-options {
        display: flex;
        flex-direction: column;
        gap: 2px;
        .subscription-option {
          display: flex;
          gap: 10px;
          position: relative;
          cursor: pointer;
          padding: 2px 12px;
          border-radius: 5px;
          border: 1px solid transparent;
          transform: translateX(-12px);

          input[type="radio"] {
            height: 16px;
            width: 16px;
            opacity: 0;
            box-shadow: none;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            cursor: pointer;
            margin: 0;
            &:checked {
              background-color: var(--theme-color);
              border-color: var(--theme-color);
            }
          }
          .subscription-option-info {
            display: flex;
            align-items: center;
            column-gap: 8px;
            flex-wrap: wrap;
            .plan-name {
              font-weight: 600;
            }
            /*.plan-name {
              position: absolute;
              left: 10px;
              top: -12px;
              background: var(--light-theme-color);
              color: var(--theme-color);
              padding: 1px 14px;
              border-radius: 5px;
              font-size: 14px;
              font-weight: 600;
            }*/
          }
        }
        .subscription-option:has(input[type="radio"]:checked) {
          border-color: var(--light-theme-color);
          background: var(--light-blue-color);
        }
      }
    }
    .subscription-tier-card-inner-wrap-footer {
      background-color: var(--white-color);
      padding: 0px 28px 30px;
    }
    /* &::before {
      content: "";
      position: absolute;
      background-color: var(--light-blue-color);
      height: 140px;
      width: 300px;
      border-radius: 50%;
      background-position: -20px -20%;
      left: -38px;
      top: -50px;
      z-index: -1;
      transform: rotate(340deg);
    } */
  }
  .consulting-tier {
        margin: 40px auto;
        text-align: center;
        a.btn.btn-theme.subscription-buy-btn {
            margin: 10px auto 0 auto;
        }
   }
}
.decision-maker-wrapper {
  margin-bottom: 100px;
  .decision-maker-card {
    background-color: #c7e6ff38;
    border: 1px solid var(--light-theme-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    &:hover {
      .card-common-icon {
        transform: rotate(10deg);
        &::before {
          transform: rotate(-20deg);
        }
      }
    }
    .card-common-icon {
      img {
        width: 48px;
      }
    }
    .decision-maker-card-content {
      h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 6px;
      }
      p {
        color: var(--gray-color);
      }
    }
  }
}
.section-outer-wrapper {
  overflow: hidden;
}
.sample-demo {
  margin-bottom: 100px;
  position: relative;
  /* overflow: hidden; */
  .sample-demo-shape {
    height: 297px;
    width: 213px;
    right: -151px;
    position: absolute;
    top: -220px;
  }
  .sample-demo-wrapper {
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px #00000040;
    overflow: hidden;
    padding: 34px;
    position: relative;
    /* background-color: var(--light-blue-color); */
    background-color: var(--black-color);
    .sample-demo-bg {
      display: none;
      position: absolute;
      top: -110px;
      width: 655px;
      height: 500px;
      opacity: 0.15;
      right: -120px;
      user-select: none;
      transform: rotate(180deg);
    }
    .form-label {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
      line-height: 18px;
    }
    h4 {
      font-size: 32px;
      font-weight: 600;
      color: var(--white-color);
      text-align: center;
    }
    &::before {
      content: "";
      position: absolute;
      right: -36px;
      top: -36px;
      height: 140px;
      width: 140px;
      background-color: #2d2d2d;
      border-radius: 100%;
      /* animation: blobMove 4s ease-in-out infinite; */
    }
    &::after {
      content: "";
      position: absolute;
      left: -36px;
      bottom: -36px;
      height: 140px;
      width: 140px;
      background-color: #2d2d2d;
      border-radius: 100%;
      /* animation: blobMove 4s ease-in-out infinite; */
    }
  }
}
.common-modal {
  .modal-header {
    padding: 12px 16px;
    .btn-close {
      background-size: 12px;
      box-shadow: none;
      &:hover{
        background-color: var(--light-blue-color);
      }
    }
    .modal-title {
      color: var(--black-color);
      font-size: 20px;
    }
  }
}
#schedule-briefing-modal {
  .btn-theme {
    margin: 0px auto;
  }
}
.consulting-step {
  margin-top: 100px;
  margin-bottom: 100px;
  .consulting-step-content {
    margin-top: 80px;
  }
  .consulting-step-card {
    padding: 0;
    &::before {
      content: none;
    }
    h4 {
      margin-bottom: 10px;
    }
    .seperate-block {
      background-color: var(--theme-color) !important;
    }
    .consulting-step-card-top {
      padding: 20px 30px;
    }
    .count {
      font-size: 80px;
      font-weight: 600;
      color: var(--light-gray-color);
      position: absolute;
      top: -22px;
      right: 2px;
      z-index: 1;
      user-select: none;
      opacity: 0.2;
    }
    .content-para {
      display: block;
      font-weight: 500;
      p {
        &:not(:last-child) {
          margin-bottom: 10px;
        }
      }
    }
    .consulting-inner-list {
      /* background-color: #0000001a;
      padding: 10px 15px;
      margin-top: 10px;
      border-radius: 6px; */
      ul {
        list-style: circle;
        list-style-position: outside;
        padding-left: 18px;
        font-size: 15px;
        margin-bottom: 10px;
      }
    }
    /* .impact {
      margin-top: 15px;
      font-size: 16px;
      span {
        font-weight: 600;
        font-size: 17px;
        color: var(--black-color);
        display: inline-block;
        margin-right: 5px;
      }
    } */
    button.read-more-link {
      border: none !important;
      outline: none !important;
      background: transparent !important;
      padding: 0 !important;
    }
    .consulting-sub-ttl {
      display: block;
      margin-bottom: 5px;
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 17px;
      color: var(--black-color);
    }
    .consulting-read-more {
      display: none;
      position: absolute;
      padding: 0px 30px 20px;
      background-color: var(--white-color);
      border-radius: 0px 0px 10px 10px;
      box-shadow: 1px 13px 17px 0px #00000040;
      margin-top: -10px;
    }
    /* &.expanded {
      .consulting-read-more {
        height: auto;
        opacity: 1;
        visibility: visible;
      }
    } */
  }
  .consulting-step-card-col:has(.expanded) {
    z-index: 10;
  }
}

@keyframes RadiantThemesSeparatorAnimation {
  0% {
    left: -12px;
  }

  100% {
    left: 100%;
  }
}
.mtn-consulting {
  padding: 40px 20px;
  background: linear-gradient(180deg, #c4e6fd7d, #bddef41a);
  .section-title {
    color: var(--theme-color);
  }
  .mtn-consulting-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 6px 6px 0px rgba(0, 35, 75, 0.08);
    box-shadow: 0px 4px 12px #00000040;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    border: 1px solid #00234b26;
    transition: 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    .mtn-consulting-content {
      h3 {
        font-size: 28px;
        font-weight: 600;
        color: var(--theme-color);
        margin-bottom: 10px;
      }
      h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 6px;
      }
      p {
        color: var(--gray-color);
      }
    }
    &:hover {
      .card-common-icon {
        transform: rotate(10deg);
        &::before {
          transform: rotate(-20deg);
        }
      }
    }
  }
}

.arrow-down {
  margin: 60px auto 15px;
  transform: rotateY(180deg) rotateZ(-18deg);
  width: clamp(50px, 5vw, 70px);
  height: auto;

  rect,
  path {
    fill: var(--grey);
  }
}

.back-to-top-container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--light-theme-color);
  border-radius: 50%;
  z-index: 1072;
  overflow: hidden;
  cursor: pointer;
  .back-to-top {
    position: absolute;
    top: 57px;
    left: 30%;
    display: block;
    .arrow-container-footer {
      height: 24px;
      position: relative;
      .arrow {
        animation: movefooter 3s ease-out infinite;
        height: 3px;
        left: 50%;
        opacity: 0;
        position: absolute;
        width: 20px;
        &:first-child {
          animation: movefooter 3s ease-out 1s infinite;
          &::before,
          &:after {
            background: var(--theme-color);
          }
        }
        &:nth-child(2) {
          &::before,
          &::after {
            background: rgb(2, 99, 155);
          }
        }
        &:nth-child(3) {
          &::before,
          &::after {
            background: var(--dark-gray-color);
          }
        }
        &::before,
        &:after {
          content: " ";
          background: #799d9e;
          height: 100%;
          position: absolute;
          top: 0;
          width: 51%;
        }
        &:after {
          right: 0;
          transform: skew(0deg, 30deg);
          width: 50%;
        }
        &:before {
          left: 0;
          transform: skew(0deg, -30deg);
        }
      }
    }
  }
}
@keyframes movefooter {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(-32px);
  }
  67% {
    opacity: 1;
    transform: translateY(-40px);
  }
  100% {
    opacity: 0;
    transform: translateY(-48px);
  }
}

/* ============INNER PAGES========================= */
.select2-dropdown,
.select2-selection {
  border: 1px solid #c8c8c8 !important;
  border-radius: 5px !important;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: var(--theme-color) !important;
}
.form-row {
  label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 18px !important;
  }
  .input-text {
    border: 1px solid #c8c8c8 !important;
    border-radius: 5px !important;
    font-size: 16px !important;

    &::placeholder {
      color: #8d8d8d;
    }
    &:focus,
    &:focus-visible {
      border-color: var(--theme-color) !important;
      box-shadow: 0 0 0 0.2rem rgba(0, 36, 77, 0.25);
      outline: 0 !important;
    }
  }
  .select2-selection {
    border: 1px solid #c8c8c8 !important;
    border-radius: 5px !important;
  }
  span em {
    font-size: 13px;
  }
  &::after,
  &::before {
    content: none !important;
  }
}
.site-main {
  margin-top: 100px;
  .entry-header {
    background-color: var(--light-blue-color);
    padding: 30px 0;
    .entry-title {
      font-size: 24px;
      font-weight: 600;
      color: var(--theme-color);
      text-align: center;
    }
  }
  .entry-content {
    margin-top: 25px;
    margin-bottom: 25px;
    .woocommerce {
      display: inline-block;
      width: 100%;
      /* display: flex;
      gap: 30px; */
      &::before,
      &::after {
        content: none;
      }
      nav {
        background-color: var(--white-color);
        border-radius: 10px;
        box-shadow: 0px 4px 12px 0px #00000040;
        overflow: hidden;
        width: 270px !important;
        float: left;

        ul {
          padding: 12px;
          li {
            padding: 6px 16px;
            color: var(--black-color);
            border-radius: 6px;
            border: 1px solid transparent;
            a {
              display: block;
              color: inherit;
            }
            &.is-active {
              background-color: var(--light-blue-color);
              color: var(--theme-color);
              border-color: var(--light-theme-color);
            }
          }
        }
      }
      .cstm-my-account {
        flex: 1;
        background: var(--white-color);
        box-shadow: 0px 4px 12px 0px #00000040;
        padding: 15px;
        border-radius: 10px;
        width: calc(100% - 300px) !important;
        .box-content {
          div {
            float: none !important;
          }
          form {
            h2 {
              margin-bottom: 12px;
              margin-top: 4px;
              border-bottom: 1px solid var(--light-gray-color);
              padding-bottom: 5px;
              font-size: 24px;
            }
          }
        }
        .dashboard_section {
          background: var(--white-color);
          border-radius: 5px;
          border: 1px solid var(--light-gray-color);
          overflow: hidden;
          .dashboard_title {
            background: var(--light-blue-color);
            padding: 8px 14px;
            font-size: 20px;
            color: var(--theme-color);
          }
          .dashboard_section_content {
            padding: 10px 14px;
          }
        }
        .rm-user-details-card {
          border: 1px solid var(--gray-light-color);
          border-radius: 10px;
          padding: 12px;
          margin: 15px 0px 0px;
          .rm-user-field-row {
            border: none !important;
            padding: 0;
            display: flex;
            &:not(:last-child) {
              margin-bottom: 12px;
            }
          }
        }
        .custom_display_download {
          margin-top: 30px;
          .dash_report_title {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--theme-color);
          }
        }
      }
      .featured-box {
        width: 100% !important;
      }
      .woocommerce-address-fields {
        button[type="submit"] {
          display: flex;
          margin: auto;
        }
      }
      .woocommerce-column__title,
      .woocommerce-order-details__title,
      h2 {
        margin-bottom: 12px;
        margin-top: 4px;
        border-bottom: 1px solid var(--light-gray-color);
        padding-bottom: 5px;
        font-size: 24px;
      }
      .woocommerce-order-details {
        margin-top: 15px;
      }
      .order_details,
      .my_account_orders {
        .product-name,
        .order-number {
          a {
            color: var(--theme-color);
            font-weight: 600;
            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
      .woocommerce-customer-details {
        .woocommerce-customer-details--phone,
        .woocommerce-customer-details--email {
          display: flex;
          align-items: center;
        }
      }
    }
    .custm-order {
      margin-bottom: 0 !important;
    }
    .custom-table,
    .account-orders-table {
      tbody {
        width: 100%;
        tr {
          th {
            a {
              color: var(--theme-color);
            }
          }
          td {
            .btn-theme,
            .button.view {
              border-radius: 5px;
              font-weight: 600;
              color: var(--white-color);
              background-color: var(--theme-color);
              padding: 8px 24px;
              display: flex;
              align-items: center;
              justify-content: center;
              border: none;
              transition: 0.5s;
              position: relative;
              overflow: hidden;
              gap: 14px;
              width: fit-content;
              span {
                position: relative;
              }
              svg {
                transition: 0.5s;
              }
              &:hover,
              &:focus {
                color: var(--theme-color);
                background-color: var(--light-theme-color);
                box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
                svg {
                  path {
                    stroke: var(--theme-color);
                  }
                }
              }
            }
            .icon-btn {
              height: 36px;
              width: 36px !important;
              padding: 0 !important;
              border-radius: 5px !important;
              &:hover {
                transform: translateY(0px) !important;
                svg {
                  transform: rotate(0) !important;
                  path {
                    fill: var(--theme-color);
                    stroke: none;
                  }
                }
              }
            }
          }
        }
      }
    }
    .cstm_order_detail {
      .order-id {
        a {
          color: var(--theme-color);
        }
      }
      .download-file {
        text-align: center;
        .icon-btn {
          margin: auto;
        }
      }
    }
    .woocommerce-Pagination {
      text-align: end;
    }
    .edit-account {
      fieldset {
        margin-top: 20px;
        legend {
          font-size: 24px;
          border-bottom: 1px solid var(--light-gray-color);
          padding-bottom: 5px;
        }
      }
      .woocommerce-Button {
        border-radius: 5px;
        font-weight: 600;
        color: var(--white-color);
        background-color: var(--theme-color);
        padding: 8px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        transition: 0.5s;
        position: relative;
        overflow: hidden;
        gap: 14px;
        width: fit-content;
        margin-left: auto;
        span {
          position: relative;
        }
        svg {
          transition: 0.5s;
        }
        &:hover,
        &:focus {
          color: var(--theme-color);
          background-color: var(--light-theme-color);
          box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
          svg {
            path {
              stroke: var(--theme-color);
            }
          }
        }
      }
      .form-row-first,
      .form-row-last {
        width: 50%;
      }
    }
    .myaccount_address {
      margin-top: 20px;
    }
    .woocommerce-Address {
      width: 100%;
      .woocommerce-Address-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        margin-top: 4px;
        border-bottom: 1px solid var(--light-gray-color);
        padding-bottom: 5px;
        h3 {
          font-size: 24px;
        }
        a {
          color: var(--theme-color);
          background: var(--light-blue-color);
          padding: 1px 9px;
          border-radius: 2px;
          font-size: 15px;
        }
        &::before,
        &::after {
          content: none;
        }
      }
    }
  }
}
.login-wrapper,
#password-lost-form-wrap {
  box-shadow:
    0 4px 6px -1px #0000001a,
    0 2px 4px -2px #0000001a;
  border: 0 !important;
  border-top: 6px solid var(--theme-color) !important;
  margin: 0 !important;
  padding: 30px !important;
  .form-link,
  .woocommerce-register-link a {
    color: var(--theme-color) !important;
    font-weight: 600;
    &:hover {
      text-decoration: underline;
    }
  }
  .woocommerce-register-link {
    text-align: center;
  }
  .woocommerce-Button.button.btn-theme {
    min-width: 100px !important;
    display: flex !important;
  }
}
.form-title-wrapper {
  background-color: var(--theme-color);
  height: 40px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0px 20px;
  margin: 0px auto;

  .form-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 !important;
    animation: text-bg-anim 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #fff, #c7e6ff, #c4e6fd);
    background-size: 400%;
    color: transparent !important;
  }
}
@keyframes text-bg-anim {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
#password-lost-form-wrap {
  max-width: 500px !important;
  margin: auto !important;
  border-radius: 10px;
  fieldset {
    legend {
      text-align: center;
      font-weight: 600;
      color: var(--theme-color);
    }
    .somfrp-lost-pass-form-text {
      text-align: center;
      font-size: 15px;
      margin-bottom: 20px;
    }
    input[type="email"],
    input[type="text"] {
      border: 1px solid #c8c8c8 !important;
      border-radius: 5px !important;
      font-size: 16px !important;
      padding: 6px 12px !important;
      width: 100%;
      &::placeholder {
        color: #8d8d8d;
      }
      &:focus,
      &:focus-visible {
        border-color: var(--theme-color) !important;
        box-shadow: 0 0 0 0.2rem rgba(0, 36, 77, 0.25);
        outline: 0 !important;
      }
    }
    label {
      order: 1;
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 6px;
      line-height: 18px !important;
      color: var(--black-color);
      display: block !important;
    }
    .lostpassword-submit {
      margin-bottom: 0;
      margin-top: 20px;
      text-align: center;
      .button {
        border-radius: 6px;
        font-weight: 600;
        color: var(--white-color);
        background-color: var(--theme-color);
        padding: 8px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        transition: 0.5s;
        position: relative;
        overflow: hidden;
        gap: 14px;
        width: fit-content;
        margin: 0px auto;
        &:hover,
        &:focus {
          color: var(--theme-color) !important;
          background-color: var(--light-theme-color) !important;
          transform: translateY(-2px) !important;
          box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
        }
      }
    }
  }
}
/* ---SIGN UP--- */
.rmagic {
  float: none !important;
  .rmcontent {
    .rmfieldset {
      box-shadow: 0px 4px 12px 0px #00000040;
      padding: 30px;
      border-radius: 10px;
      > .rmrow {
        > .rmfield {
          display: none !important;
          label {
            display: none !important;
            height: 0 !important;
            opacity: 0;
          }
        }
      }
    }
    form.rmagic-form {
      float: none !important;
      .rm-wc-hw,
      .rm-wc-fw,
      .rminput {
        padding: 0;
        margin: 0;
        min-height: auto;
        input,
        select {
          border: 1px solid #c8c8c8 !important;
          border-radius: 5px !important;
          font-size: 16px !important;
          padding: 6px 12px !important;
          &::placeholder {
            color: #8d8d8d;
          }
          &:focus,
          &:focus-visible {
            border-color: var(--theme-color) !important;
            box-shadow: 0 0 0 0.2rem rgba(0, 36, 77, 0.25);
            outline: 0 !important;
          }
        }
        .rm-wc-field {
          display: flex;
          flex-direction: column;
          input,
          select {
            order: 2;
          }
          .rm-wc-label {
            order: 1;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 6px;
            line-height: 18px !important;
            color: var(--black-color);
            display: block !important;
          }
          > div:not(.rm-wc-label) {
            order: 3;
          }
        }
      }
      .rm-wc-wrap {
        display: flex;
        gap: 15px;
      }
      .rm-wcbilling {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      .rmrow {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0;
        margin-bottom: 15px;
        .rmfield {
          display: block !important;
          padding: 0;
          min-height: auto;
          width: auto !important;
          label {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 6px;
            line-height: 18px !important;
            color: var(--black-color);
            display: block !important;
          }
        }
      }
      #email_error,
      label.rm-form-field-invalid-msg {
        font-size: 13px;
        color: red;
        padding: 0;
        margin: 0;
        &::before {
          content: none;
        }
      }
      .app {
        padding: 0;
      }
      #pp_text {
        margin-top: 10px;
      }
    }
  }
}
.privacy-policy-modal {
  .modal-body {
    .privacy-policy-modal-ttl {
      font-size: 15px;
    }
    .privacy-policy-modal-effective-date {
      margin-bottom: 20px;
      color: var(--gray-color);
    }
    .inner-title {
      font-size: 18px;
      margin-bottom: 8px;
      margin-top: 20px;
    }
    .policy-main-ttl {
      font-size: 18px;
      margin-bottom: 8px;
      margin-top: 20px;
      font-weight: 600;
    }
    p {
      font-size: 15px;
      margin-bottom: 12px;
      color: var(--gray-color);
      line-height: 21px;
      b {
        color: var(--black-color);
      }
    }
    .listings {
      list-style: circle;
      padding-left: 30px;
      li {
        font-size: 15px;
        &:not(:last-child) {
          margin-bottom: 8px;
        }
      }
    }
    span.note {
      display: block;
      margin-bottom: 12px;
    }
  }
}
.privacy-policy-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}
/* --- CART--- */
table {
  border-collapse: collapse !important;
  thead {
    th {
      background-color: var(--light-blue-color);
      border: none !important;
      box-shadow: none !important;
      font-weight: 600;
      font-size: 14px;
      color: var(--black-color);
      white-space: nowrap;
      padding: 9px 12px;
      line-height: 1.5em;
    }
  }
  tbody {
    tr {
      &:nth-child(even) {
        td,
        th {
          background-color: #f9f9f9;
        }
      }
      th {
        border: none !important;
        box-shadow: none !important;
        font-size: 14px;
        color: var(--black-color);
        padding: 9px 12px;
        vertical-align: middle;
        line-height: 1.5em;
        a {
          color: var(--theme-color);
        }
      }
      td {
        border: none !important;
        box-shadow: none !important;
        font-size: 14px;
        padding: 9px 12px;
        vertical-align: middle;
        line-height: 1.5em;
        color: var(--black-color);
        .button.view {
          border-radius: 5px;
          font-weight: 600;
          color: var(--white-color);
          background-color: var(--theme-color);
          padding: 8px 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: none;
          transition: 0.5s;
          position: relative;
          overflow: hidden;
          gap: 14px;
          width: fit-content;
          &:hover,
          &:focus {
            color: var(--theme-color);
            background-color: var(--light-theme-color);
            box-shadow: rgba(0, 36, 77, 0.3) 0px 8px 24px 0px !important;
            transform: none !important;
            svg {
              path {
                stroke: var(--theme-color);
              }
            }
          }
        }
      }
    }
  }
  tfoot {
    background-color: #f5f5f5;
  }
}

.common-sub-banner {
  background:
    linear-gradient(#1b1a1ad1, #1b1a1ad1),
    url(https://stgaing.mtn-c.com/wp-content/uploads/2026/01/inner-banner.jpg)
      center / cover no-repeat;
  padding: 50px 0px;
  margin-top: 100px;
  h4 {
    font-size: 40px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
  }
}
.blog-details {
  margin-top: 50px;
  .blog-content {
    background-color: var(--white-color);
    box-shadow: 0px 4px 12px 0px #00000040;
    padding: 20px;
    border-radius: 6px;
    .blog-thumbnail {
      background-color: #f5f5f5;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #ececec;
      margin-bottom: 20px;
      .post-thumbnail {
        text-align: center;
      }
      img {
        max-width: 100%;
        height: auto;
        margin: auto;
      }
    }
    .entry-title {
      color: var(--theme-color);
      margin-bottom: 4px;
    }
    .entry-meta {
      a {
        color: var(--theme-color);
        font-weight: 600;
      }
    }
  }
}
/* ------------------------RESPONSIVE STYLES------------------------ */

@media (min-width: 1400px) {
  .container {
    max-width: 1160px;
  }
}
@media (max-width: 1400px) {
  .main-slider {
    .slick-dots {
      right: 10px;
    }
  }
}

@media (max-width: 1200px) {
  .main-slider {
    .slick-dots {
      right: 0px;
    }
    .slick-slide {
      min-height: 730px;
    }
  }
}

@media (max-width: 992px) {
  .team-member-body-wrapper {
    flex-direction: column;
  }
  .sample-demo-bg {
    display: none;
  }
  .press-highlight-row {
    row-gap: 20px;
  }
  .about-info {
    margin-top: 100px;
  }
  .about-banner {
    padding-bottom: 60px;
  }
  .team-member-top-block {
    flex-direction: column;
    row-gap: 20px !important;
    align-items: flex-start !important;
  }
  .team-member-modal-info {
    h3 {
      padding-top: 0 !important;
    }
    .member-social-media {
      margin-top: 12px !important;
    }
  }
  .site-main .entry-content .woocommerce {
    nav,
    .cstm-my-account {
      width: 100% !important;
      float: none !important;
    }
    nav {
      margin-bottom: 20px;
    }
  }
  .main-slider {
    .slick-slide {
      min-height: 900px;
    }
  }
}

@media (max-width: 768px) {
  .mtn-footer .footer-ttl {
    margin-bottom: 20px;
  }
  .main-slider {
    .slick-slide {
      min-height: 1260px;
      .banner-btn {
        margin-top: 20px !important;
      }
    }

    .slide-ttl {
      font-size: 34px !important;
    }
    .slick-dots {
      li {
        button {
          height: 16px;
          width: 16px;
        }
      }
    }
  }
  .core-offering-card {
    .core-offering-card-title {
      min-height: auto !important;
    }
  }
  .rss-feed-card-title {
    min-height: auto !important;
  }
  .digital-service-support-wrapper {
    .digital-service-support-content {
      h3 {
        font-size: 28px;
      }
      p {
        font-size: 18px;
        font-weight: 500;
      }
    }
  }
  .inner-pages-banner-content {
    h2 {
      font-size: 54px !important;
    }
  }
  .cstm_order_detail {
    & .download-file {
      .icon-btn {
        margin-right: 0 !important;
      }
    }
  }
  .account-orders-table .button.view {
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  .account-orders-table {
    display: table !important;
  }
}
@media (max-width: 576px) {
  .inner-pages-banner-content {
    h2 {
      font-size: 32px !important;
    }
  }
  .cstm-my-account {
    & .rm-user-details-card {
      .rm-user-field-row {
        flex-direction: column;
      }
    }
  }
  .company-info-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .mini-cart-wrapper {
    min-width: 300px !important;
    right: -50px !important;
    &::before {
      right: 60px !important;
    }
  }
  .mtn-consulting-card {
    flex-direction: column;
  }
  .about-info-shape {
    display: none;
  }
  .section-sub-title {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 459px) {
  .consulting-step-card-wrapper {
    &:nth-child(2) {
      border-top: 0;
      border-left: 1px solid var(--light-gray-color);
    }
  }
  .subscription-tier-container {
    padding: 0px 26px;
  }
}
