/*CSS Table Of Content Ends Here*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Plus Jakarta Sans:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --black-2: #1c9f51;
  --white: #fff;
  --white-2: #EAF0FF;
  --white-3: rgba(255, 255, 255, 0.75);
  --theme: ##d92e26 --theme-2: #1c9f51;
  --theme-3: ##d92e26 --theme-4: #1c9f51;
  --header: #1c9f51;
  --base: #C7D31C;
  --text: #000;
  --text-2: #000;
  --border: rgba(255, 255, 255, 0.12);
  --border-2: rgba(4, 11, 41, 0.17);
  --ratting: #F8BC26;
  --bg: #F3F8FF;
  ---box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  --stk-edu-navy: #1c9f51;
  --stk-edu-blue-btn: #1c9f51;
  --stk-edu-red: #1c9f51;
  --stk-edu-green: ##d92e26 --stk-edu-white: #ffffff;
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background: linear-gradient(84deg, #1c9f51 0%, #ee353a 100%);
  color: var(--white);
  font-size: 18px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  line-height: 1;
  padding: 18px 35px;
  max-height: 54px;
  border-radius: 4px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  overflow: hidden;
  cursor: pointer;
}

.theme-btn.theme-btn-2 {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
}

.theme-btn.trasparent-btn {
  background: transparent;
  border: 1px solid var(--theme);
  color: var(--theme-2);
  border-radius: 4px;
}

.theme-btn.trasparent-btn::before,
.theme-btn.trasparent-btn::after {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
}

.theme-btn.trasparent-btn:hover {
  color: var(--white);
}

.theme-btn.trasparent-btn-2 {
  background: transparent;
  border: 1px solid var(--theme-4);
  color: var(--theme-4);
  border-image-slice: 1;
  border-radius: 4px;
}

.theme-btn.white-btn {
  background: var(--white);
  color: var(--black-2);
}

.theme-btn.white-btn::before,
.theme-btn.white-btn::after {
  background-color: var(--black-2);
}

.theme-btn.white-btn:hover {
  color: var(--white);
}

.theme-btn.black-btn::before,
.theme-btn.black-btn::after {
  background-color: var(--black-2);
}

.theme-btn.black-btn:hover {
  color: var(--white);
}

.theme-btn::before,
.theme-btn::after {
  content: "";
  width: 50%;
  height: 0%;
  position: absolute;
  background-color: var(--white);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: -1;
}

.theme-btn::before {
  top: 0%;
  right: 0%;
}

.theme-btn::after {
  left: 0%;
  bottom: 0%;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
  height: 100%;
}

.theme-btn:hover {
  color: var(--theme-2);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluidheader {
  padding: 0 60px;
}

@media (max-width: 450px) {
  .container-fluidheader {
    padding: 0 10px;
  }
}

.container-fluid {
  padding: 0 70px;
}

@media (max-width: 450px) {
  .container-fluid {
    padding: 0 10px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans';
  color: var(--black-2);
  letter-spacing: -0.2px;
}

h1 {
  font-size: 80px;
  line-height: 120%;
}

h2 {
  font-size: 60px;
  line-height: 130%;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  line-height: 137%;
}

h5 {
  font-size: 18px;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  line-height: 145%;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

p {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Plus Jakarta Sans", "Plus Jakarta Sans", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme-2);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Plus Jakarta Sans";
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  -webkit-animation: slideInUp 0.3s;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::-webkit-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-ms-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-webkit-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input:-ms-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input::-ms-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  background: #d92e26 !important;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Plus Jakarta Sans";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme-2);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: none;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-up svg path {
  fill: none;
  stroke: white;
  stroke-width: 2px;
}

@media (max-width: 768px) {
  .scroll-up svg {
    display: none;
  }
}

.scroll-up svg.scroll-circle path {
  stroke: white;
  stroke-width: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .scroll-up svg.scroll-circle path {
    stroke: transparent;
    stroke-width: 0;
  }
}

.scroll-up.active-scroll {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme-2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme-2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
    text-align: center;
  }
}

.section-title .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  padding: 6px 19px;
  /* background: linear-gradient(84deg, rgba(63, 181, 253, 0.12) 0%, rgba(11, 110, 218, 0.12) 100%);*/
  margin-bottom: 15px;
  border-radius: 4px;
}

.section-title .sub-title.sub-title2 {
  background: linear-gradient(84deg, rgba(63, 181, 253, 0.12) 0%, rgba(11, 110, 218, 0.12) 100%);
}

.section-title .sub-title.white-sub-title {
  background: var(--white);
}

.section-title .sub-title span {
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.26px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #1c9f51;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--black-2);
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -0.84px;
  text-transform: none;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.section-title h2 span {
  color: var(--theme-2);
}

.section-title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .section-title-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.section-bg-2 {
  background-color: var(--black-2) !important;
}

.section-padding {
  padding: 70px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@-webkit-keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}

@keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}

@-webkit-keyframes rounded-2 {
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes rounded-2 {
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.animation__rotate {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }

  100% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }

  100% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }

  50% {
    -webkit-transform: translatey(12px);
    transform: translatey(12px);
  }

  100% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }
}

@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }

  50% {
    -webkit-transform: translatey(12px);
    transform: translatey(12px);
  }

  100% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }
}

@-webkit-keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  20%,
  32%,
  44%,
  56%,
  68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  23%,
  35%,
  47%,
  59%,
  71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  26%,
  38%,
  50%,
  62%,
  74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  29%,
  41%,
  53%,
  65%,
  77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
    transform: rotate3d(0, 0, 1, -15deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  20%,
  32%,
  44%,
  56%,
  68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  23%,
  35%,
  47%,
  59%,
  71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  26%,
  38%,
  50%,
  62%,
  74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  29%,
  41%,
  53%,
  65%,
  77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
    transform: rotate3d(0, 0, 1, -15deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@-webkit-keyframes scroll3 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes scroll3 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes zoomBig {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@keyframes zoomBig {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@-webkit-keyframes topToBottom {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes topToBottom {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes leftToRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes leftToRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes rotateleft {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: 10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes rotateleft {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: 10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes rotateleft2 {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: -10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes rotateleft2 {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: -10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.topbar {
  background-color: #1c9f51;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

.topbar .topbar-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}

.topbar .topbar-inner ul li a {
  color: var(--white);
  opacity: 1;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans';
  padding-left: 5px;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.topbar .topbar-inner ul li a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.topbar .topbar-inner ul li i {
  font-size: 18px;
  background: #fff;
  background-clip: text;
  color: transparent;
}

.topbar .topbar-inner .social a {
  color: var(--white);
  opacity: 1;
  padding: 0 5px;
}

.topbar .topbar-inner .social a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.topbar.style-2 {
  background-color: var(--white);
  border: 1px solid rgba(2, 8, 66, 0.13);
}

@media (max-width: 1399px) {
  .topbar.style-2 {
    display: none;
  }
}

.topbar.style-2 p {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.topbar.style-2 .topbar-right {
  gap: 50px;
}

.topbar.style-2 .topbar-right ul {
  gap: 35px;
}

.topbar.style-2 .topbar-right ul li a {
  color: var(--text);
  opacity: 1;
}

.topbar.style-2 .topbar-right ul li a:hover {
  color: var(--theme);
}

.topbar.style-2 .topbar-right .social a {
  color: var(--black-2);
  opacity: 1;
}

.topbar.style-2 .topbar-right .social a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

/*marquee*/
/* Fix marquee spacing ONLY */
.top-center {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  /* gap left & right */
  overflow: hidden;
}

/* FORCE WHITE + fix visibility */
.top-center marquee {
  font-family: 'Plus Jakarta Sans';
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  display: block;
}



/* Ensure parent color doesnÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢t override */
.top-center,
.top-center * {
  color: #ffffff !important;
}

/* Keep normal desktop layout */
.topbar {
  display: block;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ ONLY fix mobile/tablet visibility */
@media (max-width: 991px) {

  .topbar {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Fix layout stacking properly */
  .topbar-inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* Ensure elements visible */
  .top-left,
  .top-center,
  .top-right {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Marquee fix */
  .top-center marquee {
    display: block;
    color: #ffffff !important;
    font-size: 14px;
  }
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ Mobile only changes */
@media (max-width: 768px) {

  /* Hide text but keep links clickable */
  .top-left li a {
    font-size: 0;
    /* hides text */
  }

  /* Keep icons visible */
  .top-left li i {
    font-size: 16px;
  }

  /* Add spacing */
  .top-left {
    gap: 20px;
    justify-content: center;
  }

  /* Optional: make icons slightly bigger for touch */
  .top-left li {
    display: flex;
    align-items: center;
  }
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ Hide phone & email text on mobile + tablet */
@media (max-width: 991px) {

  /* Hide ONLY the text */
  .top-left li a {
    display: none !important;
  }

  /* Keep icons visible */
  .top-left li i {
    display: inline-block !important;
    font-size: 18px;
  }

  /* Make icons clickable properly */
  .top-left li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Better spacing */
  .top-left {
    gap: 20px;
    justify-content: center;
  }
}

.top-left {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.top-left li {
  display: flex;
  align-items: center;
  margin-right: 0px;
  position: relative;
}

/* Add "|" after each item 
.top-left li::after {
    content: "|";
    margin-left: 15px;
    color: #fff;
}
*/
/* REMOVE "|" from LAST item (email) */
.top-left li:last-child::after {
  content: "";
}

.top-left i {
  margin-right: 6px;
}

.header-main {
  position: relative;
  z-index: 11;
}

.header-main .search-icon {
  position: relative;
}

.header-main .search-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 50px;
  width: 2px;
  background: rgba(2, 8, 66, 0.13);
  left: -30px;
  right: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-main .main-menu {
  position: relative;
  margin-right: 180px;
  z-index: 11;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  -webkit-margin-end: 30px;
  margin-inline-end: 13px;
}

.header-main .main-menu ul li:last-child {
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-family: 'Plus Jakarta Sans';
  font-size: 22px;
  font-weight: 500;
  color: #d92e26;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  padding-left: 5px;
  vertical-align: middle;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-2) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  background: var(--theme-2);
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-2);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  min-width: 130px;
  text-align: center;
  color: var(--white);
  padding: 10px 15px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-2);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--black-2);
}

.header-1 {
  padding: 5px 0;
  position: relative;
  z-index: 999;
  box-shadow: 0 4px 8px #1c9f510f;
}

@media (max-width: 1199px) {
  .header-1 {
    padding: 10px 0;
  }
}

.header-1 .header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-1 .header-main .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px;
}

.header-2 {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

@media (max-width: 1199px) {
  .header-2 {
    padding: 16px 0;
  }
}

.header-2 .header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-2 .header-main .search-icon::after {
  height: 80px;
  width: 2px;
  background: rgba(255, 255, 255, 0.13);
}

.header-2 .header-main .main-menu::after {
  background: rgba(255, 255, 255, 0.13);
  height: 80px;
}

.header-2 .header-main .main-menu ul li a {
  color: #d92e26;
}

.header-2 .header-main .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-2 .header-main .header-right .contact-us {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-2 .header-main .header-right .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  font-size: 20px;
  line-height: 20px;
}

.header-2 .header-main .header-right .contact-us p {
  color: var(--white-3);
}

.header-2 .header-main .header-right .contact-us span {
  color: var(--white);
  font-weight: 700;
}

.header-2 .header-main .header-right .search-icon {
  color: var(--white);
}

.header-2 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
}

.header-2.style-3 {
  background-color: var(--white);
  padding: 0;
  border: none;
}

.header-2.style-3 .header-main .search-icon::after {
  height: 80px;
  width: 2px;
  background: rgba(2, 8, 66, 0.13);
}

.header-2.style-3 .header-main .has-homemenu {
  left: -0;
}

.header-2.style-3 .header-main .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}

@media (max-width: 1399px) {
  .header-2.style-3 .header-main .header-left {
    gap: 15px;
  }
}

.header-2.style-3 .header-main .header-left .logo {
  width: 300px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  margin-left: -70px;
  -webkit-clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%);
}

.header-2.style-3 .header-main .header-left .main-menu::after {
  display: none;
}

@media (max-width: 1399px) {
  .header-2.style-3 .header-main .header-left .main-menu ul li {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
  }
}

.header-2.style-3 .header-main .header-left .main-menu ul li a {
  color: var(--black-2);
}

.header-2.style-3 .header-main .header-right {
  position: relative;
}

.header-2.style-3 .header-main .header-right .contact-us {
  padding-right: 30px;
  gap: 15px;
}

@media (max-width: 1600px) {
  .header-2.style-3 .header-main .header-right .contact-us {
    display: none !important;
  }
}

.header-2.style-3 .header-main .header-right .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.header-2.style-3 .header-main .header-right .contact-us p {
  color: var(--theme);
}

.header-2.style-3 .header-main .header-right .contact-us span {
  color: var(--black-2);
}

.header-2.style-3 .header-main .header-right .search-icon {
  color: var(--black-2);
}

.header-2.style-3 .header-main .sidebar__toggle {
  font-size: 20px;
  color: var(--black-2);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-box-shadow: var(---box-shadow);
  box-shadow: var(---box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky.header-2 {
  background-color: var(--black-2);
}

.sticky.header-2.style-3 {
  background-color: var(--white);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-2);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-2);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding: 60px 0;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  /*  background: linear-gradient(89deg, rgba(0, 85, 255, 0.75) 15.79%, rgba(163, 71, 255, 0.75) 91.12%);*/
  z-index: -1;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 99;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding-right: 70px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
    text-align: center;
    padding-right: 0;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
  color: var(--white);
  font-size: 50px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
    font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-2);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: var(--white);
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.error-content h3 {
  font-size: 42px;
  margin: 20px 0;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #1c9f51;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  position: relative;
}

.hero-1 .shape-1 {
  position: absolute;
  bottom: 0;
  right: 200px;
  opacity: 8%;
}

.hero-1 .hero-bg {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  width: 100%;
  /*top: 40px;
  height: 180%;
  border-radius: 25px;*/
  opacity: 1;
  z-index: -2;
  background-size: cover;


}

.hero-1 .hero-content {
  padding: 100px 0 160px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding-bottom: 0;
  }
}

.hero-1 .hero-content h1 {
  color: var(--white);
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 69px;
  padding-bottom: 20px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 45px;
    line-height: 60px;
  }
}

.hero-1 .hero-content p {
  color: var(--white);
}

.hero-1 .hero-content .feedback {
  gap: 107px;
  padding-top: 30px;
}

@media (max-width: 575px) {
  .hero-1 .hero-content .feedback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.hero-1 .hero-content .feedback .infu p {
  font-size: 18px;
  color: var(--white);
}

.hero-1 .hero-image {
  width: 591px;
  height: 778px;
  margin-left: 55px;
  position: relative;
  z-index: 9;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-image {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    height: 550px;
  }
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-1.style-2 .hero-content {
  padding-top: 120px;
}

.hero-1.style-2 .hero-image {
  margin-top: 10px;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

.hero-1.style-2 .shape .shape-1 {
  position: absolute;
  bottom: 0;
  top: 8%;
  right: 16.5%;
  opacity: 6%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.hero-1.style-2 .shape .shape-2 {
  position: absolute;
  bottom: 0;
  top: 50%;
  left: -11.5%;
  opacity: 27%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.hero-1.style-2 .shape .shape-3 {
  position: absolute;
  bottom: -20%;
  right: 0%;
  opacity: 31%;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.hero-1.style-2 .shape .shape-4 {
  position: absolute;
  top: 5%;
  right: 8%;
  opacity: 16%;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

.hero-1.style-2 .shape .shape-5 {
  position: absolute;
  bottom: -18%;
  right: 42%;
  opacity: 3%;
  z-index: -1;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.hero-1.style-2 .shape .shape-6 {
  position: absolute;
  top: -80px;
  right: 0%;
  filter: blur(200px);
  -webkit-filter: blur(200px);
  z-index: -1;
}

.hero-1.style-2 .shape .shape-7 {
  width: 558px;
  height: 558px;
  border-radius: 50%;
  background: #05F;
  filter: blur(200px);
  -webkit-filter: blur(200px);
  z-index: -1;
  position: absolute;
  left: -170px;
  top: 0;
}

.hero-1 {
  position: relative;
  overflow: hidden;
  height: 70vh !important;
  min-height: 300px !important;
  display: flex;
  align-items: center;
  margin: 30px;
  border-radius: 30px;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-1 {
    margin: 30px;
    border-radius: 30px;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) and (orientation: landscape) {}

@media (max-width: 768px) {
  .hero-1 {
    position: relative !important;
    overflow: hidden !important;
    height: 10vh !important;
    min-height: 200px !important;
    display: flex !important;
    align-items: center !important;
  }
}

.hero-3 {
  position: relative;
}

.hero-3 .array-button {
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-3 .array-button .array-prev {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.hero-3 .array-button .array-next {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

@media (max-width: 991px) {
  .hero-3 .array-button {
    display: none;
  }
}

.hero-3 .hero-inner {
  position: relative;
}

.hero-3 .hero-inner .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  mix-blend-mode: saturation;
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
}

.hero-3 .hero-inner .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(89deg, rgba(2, 5, 36, 0.84) 0.44%, rgba(2, 5, 36, 0.1) 85.09%);
  z-index: -1;
}

.hero-3 .hero-content {
  position: relative;
  z-index: 2;
  padding: 220px 0 310px;
  margin-left: -50px;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

@media (max-width: 1399px) {
  .hero-3 .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content {
    padding-top: 150px;
    padding-bottom: 110px;
  }
}

.hero-3 .hero-content h1 {
  color: var(--white);
  line-height: 87px;
  font-weight: 800;
  padding-bottom: 15px;
}

@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 52px;
    line-height: 60px;
  }
}

.hero-3 .hero-content .text {
  color: var(--white);
  padding-right: 75px;
  font-size: 20px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .text {
    padding-right: 0;
  }
}

.hero-3 .hero-content .hero-button {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-3 .hero-content .hero-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 20px;
  }
}

.hero-3 .hero-content .hero-button .contact-us {
  gap: 15px;
}

.hero-3 .hero-content .hero-button .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before,
.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.hero-3 .hero-content .hero-button .contact-us p {
  color: var(--white-3);
  opacity: 0.5;
  text-align: start;
}

.hero-3 .hero-content .hero-button .contact-us h4 {
  color: var(--white);
}

.hero-3 .shape .shape-1 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-1 {
    display: none;
  }
}

.hero-3 .shape .shape-2 {
  position: absolute;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-2 {
    display: none;
  }
}

.hero-3 .shape .shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-3 {
    display: none;
  }
}

.hero-3 .shape .shape-4 {
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-4 {
    display: none;
  }
}

.hero-3 .shape .shape-5 {
  right: 20%;
  top: 5%;
  position: absolute;
  rotate: 90deg;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-5 {
    display: none;
  }
}

.hero-3 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-1 {
  opacity: 10%;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 2500ms ease;
  transition: all 2500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-2 {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-3 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-4 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 {
  position: relative;
}

.hero-3.style-2 .hero-inner .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: normal;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  z-index: -1;
}

.hero-3.style-2 .hero-inner .bg-image::before {
  content: none;
}

.hero-3.style-2 .hero-inner .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

.hero-3.style-2 .hero-inner .shape-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  min-width: 100%;
  position: absolute;
  font-family: "Plus Jakarta Sans";
  bottom: 30px;
  z-index: 1;
  left: -49px;
  font-size: 150px;
  line-height: 120px;
  color: rgba(255, 255, 255, 0.16);
  font-weight: 900;
  letter-spacing: -3px;
  -webkit-animation: scroll3 50s linear infinite;
  animation: scroll3 50s linear infinite;
}

.hero-3.style-2 .hero-inner .social-shape {
  position: absolute;
  z-index: 1;
  left: -460px;
  top: 35px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 1899px) {
  .hero-3.style-2 .hero-inner .social-shape {
    display: none;
  }
}

.hero-3.style-2 .hero-inner .social-shape .social {
  position: absolute;
  right: 0;
  top: 42%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-align: center;
}

.hero-3.style-2 .hero-inner .social-shape .social p {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4.32px;
}

.hero-3.style-2 .hero-inner .social-shape .social .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a {
  width: 53px;
  height: 53px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
}

.hero-3.style-2 .hero-inner .hero-content {
  padding: 150px 0 310px;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

@media (max-width: 1199px) {
  .hero-3.style-2 .hero-inner .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 1399px) {
  .hero-3.style-2 .hero-inner .hero-content {
    padding: 150px 0 190px;
  }
}

@media (max-width: 1199px) {
  .hero-3.style-2 .hero-inner .hero-content {
    padding: 150px 0 125px;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-content .hero-button .avater {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.hero-3.style-2 .hero-inner .hero-image {
  position: relative;
  top: 40px;
  z-index: 1;
  margin-left: 170px;
  width: 630px;
  height: 865px;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

@media (max-width: 1199px) {
  .hero-3.style-2 .hero-inner .hero-image {
    margin-left: 0;
    top: 122px;
    width: 500px;
    height: 690px;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-image {
    top: 10px;
  }
}

.hero-3.style-2 .hero-inner .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .shape-1 {
  opacity: 12%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .social-shape {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.features-1 {
  margin-top: 30px;
  position: relative;
  z-index: 11;
}

.features-1 .single-feature-item {
  margin-top: 30px;
  height: 373px;
  border-radius: 12px;
  background: var(--white);
  padding: 40px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .features-1 .single-feature-item {
    padding: 20px 30px;
  }
}

.features-1 .single-feature-item .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  overflow: hidden;
}

.features-1 .single-feature-item .icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.features-1 .single-feature-item:hover {
  background: var(--theme-2);
}

.features-1 .single-feature-item:hover .icon {
  background: var(--white);
}

.features-1 .single-feature-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
  color: var(--theme-2);
}

.features-1 .single-feature-item:hover h4 {
  color: var(--white);
}

.features-1 .single-feature-item:hover p {
  color: var(--white-3);
}

.features-1 .single-feature-item:hover li {
  color: var(--white-3);
}

.features-1 .single-feature-item:hover li i {
  color: var(--white);
}

.features-1 .single-feature-item:hover a {
  color: var(--white);
}

.features-1 .single-feature-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
  padding: 20px 0;
}

.features-1 .single-feature-item h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-1 .single-feature-item h4 a:hover {
  background-size: 100% 1px;
}

.features-1 .single-feature-item p {
  color: var(--text);
}

.features-1 .single-feature-item ul {
  padding-top: 15px;
}

.features-1 .single-feature-item ul li {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.features-1 .single-feature-item ul li i {
  color: var(--theme-2);
  padding-right: 5px;
}

.features-2 {
  margin-top: -200px;
  position: relative;
  z-index: 11;
}

.features-2 .features-images {
  height: 680px;
  margin: 0 133px;
  margin-top: -30px;
  z-index: -1;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .features-2 .features-images {
    margin: 0 20px;
  }
}

.features-2 .features-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto;
  grid-template-columns: auto auto auto auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .features-2 .features-items {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    row-gap: 20px;
  }
}

@media (max-width: 767px) {
  .features-2 .features-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 500px) {
  .features-2 .features-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.features-2 .features-items .single-feature-item {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.features-2 .features-items .single-feature-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 11, 107, 0.55);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.features-2 .features-items .single-feature-item h4 {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.18px;
  z-index: 1;
  padding-top: 40px;
}

.features-2 .features-items .single-feature-item h4 a {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-2 .features-items .single-feature-item h4 a:hover {
  background-size: 100% 1px;
}

.features-2 .features-items .single-feature-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 11, 107, 0.8);
  border-radius: 50%;
}

.features-3 {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.features-3 .single-feature-item {
  height: 130px;
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 40px;
  padding-right: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.features-3 .single-feature-item .icon {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 61px;
}

.features-3 .single-feature-item h4 {
  font-weight: 600;
}

.features-3 .single-feature-item:hover {
  background: var(--black-2);
}

.features-3 .single-feature-item:hover h4 {
  color: var(--white);
}

.about-1 .about-images {
  position: relative;
}

.about-1 .about-images .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #ef3639 0%, #f9bbbd 100%);
  font-size: 17px;
  color: var(--white);
  position: absolute;
  right: 165px;
  top: 25px;
}

@media (max-width: 1399px) {
  .about-1 .about-images .icon {
    right: 100px;
  }
}

.about-1 .about-images .icon::after,
.about-1 .about-images .icon::before {
  content: "";
  position: absolute;
  border: 1px solid var(--theme);
  border-radius: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 100%;
  -webkit-animation: pulse-border 1.5s linear infinite;
  animation: pulse-border 1.5s linear infinite;
}

.about-1 .about-images .icon::before {
  border: 1px solid rgba(63, 181, 253, 0.2);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  opacity: 100%;
  -webkit-animation: pulse-border-2 2s linear infinite;
  animation: pulse-border-2 2s linear infinite;
}

.about-1 .about-images .image-1 {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 564" fill="black"><path d="M98.9205 2.12847C100.926 0.742428 103.306 0 105.743 0H427.111C433.739 0 439.111 5.37258 439.111 12V551.667C439.111 558.294 433.739 563.667 427.111 563.667H12C5.37257 563.667 0 558.294 0 551.667V76.7933C0 72.8523 1.93507 69.1625 5.17703 66.9218L98.9205 2.12847Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 564" fill="black"><path d="M98.9205 2.12847C100.926 0.742428 103.306 0 105.743 0H427.111C433.739 0 439.111 5.37258 439.111 12V551.667C439.111 558.294 433.739 563.667 427.111 563.667H12C5.37257 563.667 0 558.294 0 551.667V76.7933C0 72.8523 1.93507 69.1625 5.17703 66.9218L98.9205 2.12847Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  width: 439px;
  height: 563px;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: relative;
}

.about-1 .about-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-1 .about-images .image-1 {
    width: 100%;
    height: 100%;
  }
}

.about-1 .about-images .image-2 {
  position: absolute;
  bottom: -40px;
  left: 294px;
  mask: url('data:image/svg+xml;utf8,<svg width="390" height="474" viewBox="0 0 390 474" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.37259 5.37258 0 12 0H377.5C384.127 0 389.5 5.37258 389.5 12V412.575C389.5 415.817 388.188 418.922 385.862 421.181L334.993 470.607C332.753 472.783 329.753 474 326.63 474H12C5.37258 474 0 468.627 0 462V12Z" /></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="390" height="474" viewBox="0 0 390 474" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.37259 5.37258 0 12 0H377.5C384.127 0 389.5 5.37258 389.5 12V412.575C389.5 415.817 388.188 418.922 385.862 421.181L334.993 470.607C332.753 472.783 329.753 474 326.63 474H12C5.37258 474 0 468.627 0 462V12Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  width: 389.5px;
  height: 474px;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 1399px) {
  .about-1 .about-images .image-2 {
    left: 200px;
  }
}

.about-1 .about-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-1 .about-images .image-2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-1 .about-content {
    text-align: center;
  }
}

.about-1 .about-content p {
  color: #000;
  padding-top: 20px;
}

.about-1 .about-content ul {
  padding-top: 30px;
  text-align: start;
}

.about-1 .about-content ul li {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 10px;
}

.about-1 .about-content ul li i {
  color: var(--theme-2);
  padding-right: 10px;
}

.about-1 .about-content .about-infu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .about-1 .about-content .about-infu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-1 .about-content .about-infu .contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.about-1 .about-content .about-infu .contact-us img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.about-1 .about-content .about-infu .contact-us .text span {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
}

.about-1 .about-content .about-infu .contact-us .text h4 {
  color: var(--black-2);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
}

@media (max-width: 500px) {
  .about-1 .about-content .about-infu .contact-us {
    display: none;
  }
}

.about-1.style-2 .about-images-2 {
  position: relative;
  left: 130px;
}

@media (max-width: 1399px) {
  .about-1.style-2 .about-images-2 {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .about-1.style-2 .about-images-2 {
    left: 0;
  }
}

.about-1.style-2 .about-images-2 .shape-1 {
  position: absolute;
  top: 50px;
  left: -130px;
  -webkit-animation: topToBottom 2s linear infinite;
  animation: topToBottom 2s linear infinite;
}

@media (max-width: 1399px) {
  .about-1.style-2 .about-images-2 .shape-1 {
    left: -70px;
  }
}

@media (max-width: 1199px) {
  .about-1.style-2 .about-images-2 .shape-1 {
    left: 0;
  }
}

.about-1.style-2 .about-images-2 .shape-2 {
  position: absolute;
  bottom: -60px;
  left: -130px;
  opacity: 28%;
  z-index: -1;
  width: 602px;
  height: 602px;
}

.about-1.style-2 .about-images-2 .image-1 {
  width: 509px;
  height: 660px;
}

@media (max-width: 991px) {
  .about-1.style-2 .about-images-2 .image-1 {
    width: 100%;
  }
}

.about-1.style-2 .about-images-2 .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.about-1.style-2 .about-images-2 .image-2 {
  width: 293px;
  height: 293px;
  position: absolute;
  right: 24%;
  bottom: -60px;
}

.about-1.style-2 .about-images-2 .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.about-1.style-2 .about-content p {
  color: var(--white);
  opacity: 75%;
}

.about-1.style-2 .about-content ul li {
  color: var(--white);
}

.about-1.style-2 .about-content .feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  padding-top: 40px;
}

@media (max-width: 500px) {
  .about-1.style-2 .about-content .feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-1.style-2 .about-content .feedback .infu img {
  width: 176px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.about-1.style-2 .about-content .feedback .infu h6 {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.16px;
}

.about-1.style-2 .about-content .feedback .infu .icon-box {
  gap: 15px;
}

@media (max-width: 500px) {
  .about-1.style-2 .about-content .feedback .infu .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about-1.style-2 .about-content .feedback .infu .icon-box .icon {
  font-size: 40px;
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-1.about-page .about-content p {
  color: var(--text);
  opacity: 75%;
}

.about-1.about-page .about-content ul li {
  color: var(--text);
}

.about-1.about-page .about-content .feedback .infu h6 {
  color: var(--black-2);
}

.about-2 {
  position: relative;
  z-index: 1;
}

.about-2 .bg-image {
  overflow: hidden;
  position: absolute !important;
  top: -340px;
  width: 100%;
  height: 845px;
  z-index: -1;
  background-size: cover;
  border-radius: 25px;
}

@media (max-width: 1199px) {
  .about-2 .bg-image {
    top: -250px;
  }
}

.about-2 .about-content {
  position: relative;
}

.about-2 .about-content p {
  color: var(--white);
  padding-top: 20px;
}

.about-2 .about-content .infu {
  padding-top: 35px;
  gap: 30px;
}

@media (max-width: 1199px) {
  .about-2 .about-content .infu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about-2 .about-content .infu .contact-us {
  gap: 12px;
}

.about-2 .about-content .infu .contact-us a {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 56px;
  height: 56px;
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
}

.about-2 .about-content .infu .contact-us .text span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 26px;
}

.about-2 .about-content .infu .contact-us .text h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.about-3 .about-images {
  position: relative;
}

.about-3 .about-images .image-1 {
  position: relative;
  width: 570px;
}

@media (max-width: 1399px) {
  .about-3 .about-images .image-1 {
    width: 500px;
  }
}

@media (max-width: 575px) {
  .about-3 .about-images .image-1 {
    width: 100%;
  }
}

.about-3 .about-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.about-3 .about-images .experience {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-3 .about-images .experience h2 {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 120px;
  letter-spacing: -2.4px;
  line-height: 100px;
  text-align: center;
}

@media (max-width: 575px) {
  .about-3 .about-images .experience h2 {
    font-size: 88px;
  }
}

.about-3 .about-images .experience p {
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.about-3 .about-images .image-2 {
  width: 273px;
  height: 273px;
  position: absolute;
  right: 25px;
  bottom: -60px;
}

@media (max-width: 1399px) {
  .about-3 .about-images .image-2 {
    bottom: -130px;
  }
}

@media (max-width: 1199px) {
  .about-3 .about-images .image-2 {
    display: none;
  }
}

.about-3 .about-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.about-3 .about-content .section-title {
  margin-left: -85px;
}

@media (max-width: 1399px) {
  .about-3 .about-content .section-title {
    margin-left: 0;
  }
}

.about-3 .about-content p {
  padding-top: 30px;
  font-size: 18px;
}

.about-3 .about-content .text {
  padding: 20px 30px;
  position: relative;
  border-radius: 4px;
  background: var(--white);
  margin-top: 30px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

.about-3 .about-content .text::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 4px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  left: -3px;
  z-index: -1;
}

.about-3 .about-content .list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-3 .about-content .list ul li {
  color: var(--text);
  font-weight: 500;
  padding-bottom: 10px;
}

.about-3 .about-content .list ul li i {
  padding-right: 5px;
  color: var(--theme-2);
}

.about-3 .about-content .about-infu {
  gap: 25px;
  margin-top: 35px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-3 .about-content .about-infu .contact-us {
  gap: 10px;
}

.about-4 {
  position: relative;
}

.about-4 .about-images {
  width: 870px;
  height: 700px;
  float: right;
  margin-right: 75px;
}

@media (max-width: 767px) {
  .about-4 .about-images {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.about-4 .about-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-4 .about-content .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  border-radius: 6px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  padding: 15px 40px;
  max-width: 615px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .about-4 .about-content .icon-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.about-4 .about-content .icon-box .icon {
  font-size: 55px;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-4 .about-content .icon-box:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.about-4 .about-content .infu {
  margin-top: 35px;
  gap: 50px;
}

@media (max-width: 767px) {
  .about-4 .about-content .infu {
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-4 .about-content .infu .contact-us {
  gap: 20px;
}

.about-4 .about-content .infu .contact-us span {
  color: var(--theme-2);
  font-weight: 700;
  line-height: 26px;
}

.service-1 {
  position: relative;
}

.service-1 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 28%;
}

.service-1 .shape-2 {
  position: absolute;
  top: 140px;
  right: -15%;
  opacity: 8%;
}

.service-1 .service-inner {
  position: relative;
  z-index: 11;
}

.service-1 .service-inner .countbox h3 {
  font-size: 140px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -2.8px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-1 .service-inner .countbox p {
  color: var(--text);
  font-size: 22px;
  padding-top: 15px;
}

@media (max-width: 767px) {
  .service-1 .service-inner .countbox {
    display: none;
  }
}

.service-1 .service-inner .title h3 {
  color: var(--black-2);
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.6px;
}

@media (max-width: 767px) {
  .service-1 .service-inner .title h3 {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
    text-align: center;
  }
}

.service-1 .service-inner .single-service-item {
  position: relative;
  margin-top: 40px;
  z-index: 2;
  overflow: hidden;
}

.service-1 .service-inner .single-service-item .shape-3 {
  position: absolute;
  top: 0px;
  left: -0;
  z-index: 1;
  border-top-left-radius: 130px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-1 .service-inner .single-service-item .shape-4 {
  position: absolute;
  bottom: 80px;
  right: -50px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-1 .service-inner .single-service-item .image {
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 424 518" xmlns="http://www.w3.org/2000/svg"><path d="M0 51.688C0 44.4673 3.89212 37.8073 10.1831 34.263L66.4293 2.57504C69.4258 0.8869 72.8069 0 76.2462 0H404C415.046 0 424 8.9543 424 20V498C424 509.046 415.046 518 404 518H20C8.9543 518 0 509.046 0 498V51.688Z"/></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 424 518" xmlns="http://www.w3.org/2000/svg"><path d="M0 51.688C0 44.4673 3.89212 37.8073 10.1831 34.263L66.4293 2.57504C69.4258 0.8869 72.8069 0 76.2462 0H404C415.046 0 424 8.9543 424 20V498C424 509.046 415.046 518 404 518H20C8.9543 518 0 509.046 0 498V51.688Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.service-1 .service-inner .single-service-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.service-1 .service-inner .single-service-item .content {
  background-color: var(--white);
  text-align: center;
  padding: 25px 30px;
  padding-top: 55px;
  position: absolute;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 20px;
  z-index: 2;
}

.service-1 .service-inner .single-service-item .content .icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  overflow: hidden;
}

.service-1 .service-inner .single-service-item .content .icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-1 .service-inner .single-service-item .content h4 {
  color: var(--black-2);
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
  padding-bottom: 5px;
}

.service-1 .service-inner .single-service-item .content h4 a {
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-1 .service-inner .single-service-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.service-1 .service-inner .single-service-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.service-1 .service-inner .single-service-item:hover .icon-list {
  opacity: 1;
  visibility: visible;
}

.service-1 .service-inner .single-service-item:hover .shape-3 {
  top: -2px;
  opacity: 1;
  left: -30px;
}

.service-1 .service-inner .single-service-item:hover .shape-4 {
  opacity: 1;
  right: 0;
}

.service-2 {
  background-color: rgba(255, 255, 255, 0.05);
}

.service-2 .service-inner {
  padding-bottom: 260px;
}

.service-2 .service-inner .service-items {
  padding-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 123px;
  column-gap: 123px;
  row-gap: 90px;
}

@media (max-width: 1399px) {
  .service-2 .service-inner .service-items {
    -webkit-column-gap: 90px;
    column-gap: 90px;
  }
}

@media (max-width: 1199px) {
  .service-2 .service-inner .service-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.service-2 .service-inner .service-items .signle-service-item {
  position: relative;
  cursor: pointer;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item {
    text-align: center;
  }
}

.service-2 .service-inner .service-items .signle-service-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  left: 60px;
}

@media (max-width: 1399px) {
  .service-2 .service-inner .service-items .signle-service-item::after {
    left: 45px;
  }
}

.service-2 .service-inner .service-items .signle-service-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  bottom: -45px;
  top: auto;
}

@media (max-width: 1199px) {

  .service-2 .service-inner .service-items .signle-service-item::after,
  .service-2 .service-inner .service-items .signle-service-item::before {
    display: none;
  }
}

.service-2 .service-inner .service-items .signle-service-item:nth-child(3)::after,
.service-2 .service-inner .service-items .signle-service-item:nth-child(6)::after {
  border-right: none;
}

.service-2 .service-inner .service-items .signle-service-item:nth-child(4)::before,
.service-2 .service-inner .service-items .signle-service-item:nth-child(5)::before,
.service-2 .service-inner .service-items .signle-service-item:nth-child(6)::before {
  border-bottom: none;
}

.service-2 .service-inner .service-items .signle-service-item .title {
  gap: 18px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-2 .service-inner .service-items .signle-service-item .title .icon {
  font-size: 43px;
  color: var(--white);
}

.service-2 .service-inner .service-items .signle-service-item .title h3 {
  color: var(--white);
  font-size: 20px;
}

.service-2 .service-inner .service-items .signle-service-item p {
  padding-left: 60px;
  line-height: 26px;
  padding-top: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item p {
    padding-left: 0;
  }
}

.service-2 .service-inner .service-items .signle-service-item a {
  padding-left: 60px;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item a {
    padding-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.service-2 .service-inner .service-items .signle-service-item:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.service-2 .service-inner .button {
  gap: 20px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .service-2 .service-inner .button .theme-btn {
    width: 100%;
  }
}

.service-3 .service-image {
  width: 100%;
  height: 355px;
  margin-top: 30px;
}

.service-3 .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  object-fit: cover;
}

.service-3 .single-service-item {
  width: 100%;
  height: 355px;
  background-color: var(--theme-3);
  padding: 30px 42px;
  padding-right: 25px;
  position: relative;
  border-radius: 12px;
  margin-top: 30px;
}

.service-3 .single-service-item .icon {
  font-size: 50px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.service-3 .single-service-item h4 {
  color: var(--white);
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.2px;
}

.service-3 .single-service-item .count-box {
  position: absolute;
  bottom: 30px;
}

.service-3 .single-service-item .count-box h2 {
  color: rgba(255, 255, 255, 0.32);
  font-size: 60px;
  font-weight: 800;
  line-height: 69px;
  letter-spacing: -1.2px;
}

.service-3 .single-service-item .count-box p {
  color: var(--white);
}

.service-3 .single-service-item:hover h2 {
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-4 {
  position: relative;
  overflow: hidden;
}

.service-4 .shape-1 {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.service-4 .shape-2 {
  position: absolute;
  top: 70px;
  right: 30%;
  rotate: 90deg;
  opacity: 0.17;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.service-4 .shape-3 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.12;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.service-4 .array-button {
  position: absolute;
  top: 65%;
  right: 8%;
  left: 8%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
}

.service-4 .array-button .array-prev {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  left: 0;
}

.service-4 .array-button .array-next {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  right: 0;
}

@media (max-width: 1600px) {
  .service-4 .array-button {
    display: none;
  }
}

.service-4 .signle-service-item {
  width: 100%;
  height: 310px;
  padding: 75px 40px 30px 40px;
  position: relative;
  margin-top: 60px;
  border-radius: 12px;
  text-align: center;
  background-color: var(--white);
  z-index: 1;
}

.service-4 .signle-service-item h4 a {
  color: var(--black-2);
}

.service-4 .signle-service-item .icon {
  position: absolute;
  top: -35px;
  left: 37%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 70px;
  height: 70px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 12px;
  background: linear-gradient(84deg, #d82f27 0%, #eb938f 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-size: 33px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .service-4 .signle-service-item .icon {
    left: 42%;
  }
}

.service-4 .signle-service-item .icon i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-4 .signle-service-item .line {
  width: 130px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(84deg, #d82f27 0%, #eb938f 100%);
}

.service-4 .signle-service-item .infu-btn {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 17px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-4 .signle-service-item .service-bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 12px;
}

.service-4 .signle-service-item .service-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 3, 37, 0.56);
}

.service-4 .signle-service-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.service-4 .signle-service-item:hover h4 a {
  color: var(--white);
}

.service-4 .signle-service-item:hover p {
  color: var(--white-3);
}

.service-4 .signle-service-item:hover .infu-btn {
  background: none;
  color: var(--white);
}

.service-4 .signle-service-item:hover .service-bg {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.service-5 .service-slide-2 {
  overflow: inherit;
}

.service-5 .signle-service-item {
  border-radius: 12px;
  background-color: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 10px 50px 45px;
  gap: 40px;
}

@media (max-width: 767px) {
  .service-5 .signle-service-item {
    padding: 20px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-5 .signle-service-item .icon {
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.service-5 .signle-service-item h3 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .service-5 .signle-service-item h3 {
    font-size: 18px;
  }
}

.service-5 .signle-service-item h3 a {
  color: var(--black-2);
}

.service-5 .signle-service-item ul li {
  color: var(--text);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}

.service-5 .signle-service-item ul li i {
  color: var(--theme-2);
}

.service-details-wrapper .service-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-details-wrapper .service-details-content h4 {
  font-size: 22px;
}

.service-details-wrapper .service-details-content .service-details-video {
  margin-top: 50px;
}

@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .service-details-video {
    margin-top: 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .service-details-video {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 40px;
}

@media (max-width: 500px) {
  .service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu img {
  width: 176px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu h6 {
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.16px;
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box {
  gap: 15px;
}

@media (max-width: 500px) {
  .service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box .icon {
  font-size: 40px;
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-details-wrapper .service-details-content .service-details-video .video-image {
  position: relative;
}

.service-details-wrapper .service-details-content .service-details-video .video-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 11;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::before,
.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.service-details-wrapper .highlight-text {
  margin-top: 30px;
  padding: 18px;
  border-left: 4px solid var(--theme);
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.service-details-wrapper .highlight-text h5 {
  font-weight: 600;
  line-height: 167%;
}

.service-details-wrapper .service-image-item {
  margin-top: 60px;
  margin-bottom: 60px;
}

.service-details-wrapper .service-image-item h3 {
  font-size: 24px;
}

.service-details-wrapper .service-image-item .service-box-image {
  height: 218px;
}

.service-details-wrapper .service-image-item .service-box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.choose-us-1 {
  position: relative;
}

.choose-us-1 .shape {
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 8%;
}

.choose-us-1 .choose-us-images {
  position: relative;
  width: 588px;
  height: 710px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-images {
    width: 100%;
    height: 100%;
  }
}

.choose-us-1 .choose-us-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.choose-us-1 .choose-us-images .shape-img {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: -2;
  opacity: 50%;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.choose-us-1 .choose-us-content .icon-box {
  gap: 20px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-content .icon-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box .icon {
  font-size: 40px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box h4 {
  color: #020842;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding-bottom: 10px;
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.choose-us-1 .choose-us-content .count-box {
  background-color: var(--white);
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 65px;
  padding-bottom: 35px;
  border-radius: 12px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

@media (max-width: 575px) {
  .choose-us-1 .choose-us-content .count-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.choose-us-1 .choose-us-content .count-box .single-count {
  padding-top: 20px;
}

.choose-us-1 .choose-us-content .count-box .single-count h2 {
  font-size: 60px;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  line-height: 60px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-content .count-box .single-count h2 {
    font-size: 40px;
    text-align: center;
  }
}

.choose-us-2 {
  position: relative;
  background-color: var(--theme-3);
  padding-bottom: 275px;
}

.choose-us-2 .choose-us-images {
  position: relative;
  z-index: 1;
}

.choose-us-2 .choose-us-images .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 35%;
  z-index: -1;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.choose-us-2 .choose-us-images .image-1 {
  width: 450px;
  height: 410px;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .image-1 {
    width: 100%;
  }
}

.choose-us-2 .choose-us-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.choose-us-2 .choose-us-images .image-2 {
  width: 300px;
  height: 320px;
  position: absolute;
  bottom: -150px;
  right: 14%;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .image-2 {
    display: none;
  }
}

.choose-us-2 .choose-us-images .experience {
  position: absolute;
  left: 0;
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .experience {
    position: inherit;
  }
}

.choose-us-2 .choose-us-images .experience h2 {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 120px;
  letter-spacing: -2.4px;
  line-height: 100px;
}

.choose-us-2 .choose-us-images .experience p {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.choose-us-2 .choose-us-content .text {
  font-size: 18px;
  color: var(--white-3);
  padding-top: 20p;
}

.choose-us-3 .choose-us-content .reviews {
  gap: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews .infu {
    text-align: center;
  }
}

.choose-us-3 .choose-us-content .reviews .infu img {
  width: 170px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.choose-us-3 .choose-us-content .reviews .infu h4 {
  font-size: 16px;
  font-weight: 600;
}

.choose-us-3 .choose-us-content .reviews .infu .head {
  gap: 12px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews .infu .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.choose-us-3 .choose-us-content .reviews .infu .head .icon {
  font-size: 40px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.choose-us-3 .choose-us-content .reviews .infu:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.choose-us-3 .choose-us-images {
  position: relative;
}

.choose-us-3 .choose-us-images .shape-1 {
  position: absolute;
  left: 0;
  top: -50px;
  opacity: 8%;
  z-index: -1;
}

.choose-us-3 .choose-us-images .single-choose-item {
  width: 100%;
  height: 225px;
  position: relative;
  text-align: center;
  background-color: #F0F5FD;
  padding-top: 70px;
  background-image: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  z-index: 5;
}

.choose-us-3 .choose-us-images .single-choose-item .shape-2 {
  position: absolute;
  top: -100px;
  left: -50px;
  -webkit-animation: spinner 10s infinite linear;
  animation: spinner 10s infinite linear;
}

.choose-us-3 .choose-us-images .single-choose-item .shape-3 {
  position: absolute;
  bottom: -20px;
  right: 0px;
  opacity: 17%;
  rotate: 90deg;
  -webkit-animation: zoomBig 1s linear infinite;
  animation: zoomBig 1s linear infinite;
}

.choose-us-3 .choose-us-images .single-choose-item .icon {
  font-size: 43px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 10px;
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover {
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 30px 40px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover .icon {
  background: none;
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover h4 {
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover p {
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover.active {
  opacity: 1;
  visibility: visible;
}

.choose-us-3 .choose-us-images .single-choose-item::before,
.choose-us-3 .choose-us-images .single-choose-item::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 3, 37, 0.56)), to(rgba(0, 3, 37, 0.56))), url("../img/why-choose/05.png");
  background: linear-gradient(rgba(0, 3, 37, 0.56), rgba(0, 3, 37, 0.56)), url("../img/why-choose/05.png");
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: 1;
}

.choose-us-3 .choose-us-images .single-choose-item::before {
  top: 0%;
  right: 0%;
}

.choose-us-3 .choose-us-images .single-choose-item::after {
  left: 0%;
  bottom: 0%;
}

.choose-us-3 .choose-us-images .single-choose-item:hover::before,
.choose-us-3 .choose-us-images .single-choose-item:hover::after {
  width: 100%;
  height: 100%;
}

.choose-us-3 .choose-us-images .single-choose-item:hover .single-choose-hover {
  opacity: 1;
  visibility: visible;
}

.choose-us-3 .choose-us-images .single-choose-item.active::before,
.choose-us-3 .choose-us-images .single-choose-item.active::after {
  height: 100%;
}

.choose-us-3.choose-us-page {
  padding-bottom: 340px;
}

.choose-us-4 {
  position: relative;
  overflow: hidden;
}

.choose-us-4 .shape-1 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  -webkit-animation: zoomBig 2s infinite linear;
  animation: zoomBig 2s infinite linear;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-1 {
    display: none;
  }
}

.choose-us-4 .shape-2 {
  position: absolute;
  bottom: -22%;
  right: 20%;
  -webkit-animation: spinner 50s infinite linear;
  animation: spinner 50s infinite linear;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-2 {
    display: none;
  }
}

.choose-us-4 .shape-3 {
  position: absolute;
  top: 0%;
  right: 0%;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-3 {
    display: none;
  }
}

.choose-us-4 .shape-4 {
  position: absolute;
  top: 5%;
  left: 0%;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-4 {
    display: none;
  }
}

.choose-us-4 .bg-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.choose-us-4 .choose-us-content .accordion-item {
  border: 0;
  margin-top: 15px;
  border-radius: 6px;
  background-color: var(--white);
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button {
  color: var(--black-2);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.18px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  padding: 20px 40px;
  padding-right: 30px;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: 'Plus Jakarta Sans';
  font-weight: 300;
  line-height: 1;
  width: auto;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Plus Jakarta Sans";
  font-weight: 300;
  line-height: 1;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0px;
  padding-left: 30px;
  color: var(--text-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 40px;
  margin-right: 30px;
  padding-top: 10px;
  border-top: 1px solid var(--border-2);
  padding-left: 0;
  padding-right: 0;
}

.choose-us-4 .choose-us-image {
  width: calc(100% + 40px);
  height: 314px;
  margin-left: -40px;
  position: relative;
}

@media (max-width: 991px) {
  .choose-us-4 .choose-us-image {
    width: 100%;
    margin-left: 0;
  }
}

.choose-us-4 .choose-us-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.brand-1 {
  margin-top: -80px;
}

@media (max-width: 991px) {
  .brand-1 {
    margin: 0;
  }
}

.brand-1 .brand-inner h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.6px;
}

.brand-1 .brand-inner .brand-logo img {
  width: 100%;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

.brand-1.style-2 {
  margin: 0;
}

.brand-1.style-3 {
  position: relative;
  margin: 0;
}

.brand-1.style-3 .shape-1 {
  position: absolute;
  right: 10px;
  top: 30px;
  opacity: 5%;
  -webkit-animation: rounded 5s infinite linear;
  animation: rounded 5s infinite linear;
}

.brand-1.style-3 .brand-inner .title {
  position: relative;
}

.brand-1.style-3 .brand-inner .title::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 208px;
  height: 1px;
  background-color: var(--black);
  opacity: 13%;
  left: 15%;
  top: 15px;
  right: auto;
}

.brand-1.style-3 .brand-inner .title::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  right: 15%;
  top: 15px;
  left: auto;
  width: 208px;
  height: 1px;
  background-color: var(--black);
  opacity: 13%;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px var(--theme);
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
  box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--black-2);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme-2);
  content: "";
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot-2 .swiper-pagination-bullet::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: black;
  border: 1.3px solid var(--white);
  content: "";
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.3px solid var(--white);
  content: "";
}

.array-button {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.array-button .array-prev,
.array-button .array-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black-2);
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
  color: var(--white);
  background: var(--theme-2);
  border: none;
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.head-color {
  color: var(--header);
}

.footer-bg {
  background-color: var(--header);
}

.background-black {
  background-color: var(--black) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.theme-bg {
  background-color: var(--theme);
}

.theme-bg-2 {
  background-color: var(--theme-2) !important;
}

.box-shadow {
  -webkit-box-shadow: var(---box-shadow);
  box-shadow: var(---box-shadow);
}

.mt-50 {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .mt-50 {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .mt-50 {
    margin-top: 20px;
  }
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.theme-bg {
  background-color: #202426;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.border-none {
  border: none !important;
}

.progress-items {
  padding-top: 40px;
}

.progress-items .progress {
  background: transparent;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 14px;
  width: 100%;
  border-radius: 0;
  border-radius: 46px;
  border: 1px solid rgba(11, 110, 218, 0.53);
  padding-left: 3px;
}

.progress-items .progress .progress-value {
  position: absolute;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 3px;
  border-radius: 46px;
  background: var(--theme-2);
  width: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

.progress-items .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 88px);
  padding-top: 8px;
}

.case-study-1 {
  position: relative;
}

.case-study-1 .shape-1 {
  position: absolute;
  right: -6%;
  top: 12%;
  rotate: 90deg;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.case-study-1 .caseStudy {
  overflow: inherit;
  right: 0;
}

.case-study-1 .single-case-item {
  position: relative;
}

.case-study-1 .single-case-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 536 475"  xmlns="http://www.w3.org/2000/svg"><path d="M0 103.277C0 97.0519 2.89825 91.1821 7.84034 87.3976L116.589 4.12101C120.079 1.44834 124.353 0 128.749 0H516C527.046 0 536 8.95431 536 20V455C536 466.046 527.046 475 516 475H20C8.95432 475 0 466.046 0 455V103.277Z"/> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 536 475"  xmlns="http://www.w3.org/2000/svg"><path d="M0 103.277C0 97.0519 2.89825 91.1821 7.84034 87.3976L116.589 4.12101C120.079 1.44834 124.353 0 128.749 0H516C527.046 0 536 8.95431 536 20V455C536 466.046 527.046 475 516 475H20C8.95432 475 0 466.046 0 455V103.277Z"/> </svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-1 .single-case-item .image::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%)), color-stop(300%, RGBA(var(--getizy-white-rgb, 255, 255, 255))));
  background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%);
}

.case-study-1 .single-case-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.case-study-1 .single-case-item .content {
  width: calc(100% - 84px);
  position: absolute;
  background: var(--black-2);
  border-radius: 12px;
  padding: 30px;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case-study-1 .single-case-item .content .title {
  width: 70%;
}

.case-study-1 .single-case-item .content .title span {
  color: var(--theme-2);
  font-weight: 500;
}

.case-study-1 .single-case-item .content .title h4 {
  color: var(--white);
}

.case-study-1 .single-case-item .content .title h4 a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-study-1 .single-case-item .content .title h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.case-study-1 .single-case-item .content .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--white);
}

.case-study-1 .single-case-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.case-study-1 .single-case-item:hover .image::before {
  -webkit-animation: projectCardShine 0.50s;
  animation: projectCardShine 0.50s;
}

@-webkit-keyframes projectCardShine {
  100% {
    top: 125%;
  }
}

@keyframes projectCardShine {
  100% {
    top: 125%;
  }
}

.case-study-1.style-2 .single-case-item .image {
  width: 100%;
  -webkit-mask: none;
  mask: none;
}

.case-study-1.style-2 .single-case-item .content {
  width: 50%;
  height: 150px;
  position: absolute;
  background: var(--white);
  bottom: 0;
  left: 0;
  padding: 20px 30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  border-radius: 0px 12px;
}

.case-study-1.style-2 .single-case-item .content .title {
  width: 100%;
}

.case-study-1.style-2 .single-case-item .content .title h4 {
  color: var(--black-2);
}

.case-study-1.style-2 .single-case-item .content .icon {
  position: absolute;
  right: -21px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
}

.case-study-1.style-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--white);
}

.case-study-2 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 767px) {
  .case-study-2 .container-fluid {
    padding: 0 30px;
  }
}

.case-study-2 .case-study-grid {
  padding-top: 24px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  gap: 24px;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .case-study-2 .case-study-grid {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 991px) {
  .case-study-2 .case-study-grid {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.case-study-2 .case-study-grid .single-case-item {
  width: 645px;
  height: 424px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-2 .case-study-grid .single-case-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 13, 68, 0.36);
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1899px) {
  .case-study-2 .case-study-grid .single-case-item {
    width: 100%;
  }
}

.case-study-2 .case-study-grid .single-case-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.case-study-2 .case-study-grid .single-case-item.style-2 {
  width: 532px;
  height: 424px;
}

@media (max-width: 1899px) {
  .case-study-2 .case-study-grid .single-case-item.style-2 {
    width: 100%;
  }
}

.case-study-2 .case-study-grid .single-case-item .hover {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}

@media (max-width: 575px) {
  .case-study-2 .case-study-grid .single-case-item .hover {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.case-study-2 .case-study-grid .single-case-item .hover .title span {
  color: var(--white);
  padding-left: 40px;
  font-weight: 600;
}

.case-study-2 .case-study-grid .single-case-item .hover .title h4 {
  border-radius: 0px 4px 4px 0px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
  padding: 5px 15px 5px 25px;
  margin-top: 6px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.case-study-2 .case-study-grid .single-case-item .hover .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
  margin-right: 45px;
  margin-top: 45px;
}

@media (max-width: 575px) {
  .case-study-2 .case-study-grid .single-case-item .hover .icon {
    margin: 0;
    margin-top: 20px;
  }
}

.case-study-2 .case-study-grid .single-case-item:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.case-study-2 .case-study-grid .single-case-item:hover .hover {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

.case-study-2 .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-2 .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 17px;
  color: var(--text-2);
  background-color: var(--white);
  border: 1px solid var(--border-2);
  line-height: 1;
  text-transform: capitalize;
}

.case-study-2 .nav .nav-link:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.case-study-2 .nav .nav-link.active {
  -o-border-image: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  border-image: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  border-image-slice: 1;
  color: var(--white) !important;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--black-2);
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.project-details-wrapper .project-details-content .project-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-details-wrapper .project-details-content h3 {
  font-size: 42px;
}

.project-details-wrapper .project-details-content .image {
  height: 350px;
  margin-top: 35px;
}

.project-details-wrapper .project-details-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.project-details-wrapper .project-details-content h4 {
  font-size: 22px;
}

.project-details-wrapper .project-details-content .list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 85px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.project-details-wrapper .project-details-content .list ul li {
  color: var(--text);
  font-weight: 500;
  padding-bottom: 10px;
}

.project-details-wrapper .project-details-content .list ul li i {
  padding-right: 5px;
  color: var(--theme-2);
}

.project-details-wrapper .project-sidebar-widget {
  padding: 40px 40px;
  background-color: var(--bg);
  margin-bottom: 30px;
  border-radius: 12px;
  border: 1px solid var(--theme);
}

.project-details-wrapper .project-sidebar-widget .wid-title {
  margin-bottom: 15px;
}

.project-details-wrapper .project-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}

.project-details-wrapper .project-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 2px;
  content: "";
  background-color: var(--theme);
}

.project-details-wrapper .project-sidebar-widget .case-content-box .case-infobox li {
  color: var(--text);
  font-weight: 600;
  padding: 10px 30px;
  background-color: var(--white);
  margin-top: 25px;
  border-radius: 32px;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.project-details-wrapper .project-sidebar-widget .social {
  margin-top: 24px;
}

.project-details-wrapper .project-sidebar-widget .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--theme-2);
  background-color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 3px;
}

.project-details-wrapper .project-sidebar-widget .social a:hover {
  background: var(--theme-2);
  color: var(--white);
}

.team-1 {
  position: relative;
}

.team-1 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 5%;
}

.team-1 .single-team-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-top: 40px;
}

.team-1 .single-team-item .shape-2 {
  position: absolute;
  top: 50px;
  left: -0;
  z-index: 1;
  border-top-left-radius: 120px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .shape-3 {
  position: absolute;
  bottom: 50px;
  right: -100px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .team-image {
  position: relative;
}

.team-1 .single-team-item .team-image .image {
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 312 382" xmlns="http://www.w3.org/2000/svg"><path d="M0 36.4468C0 32.1144 2.33527 28.1183 6.10988 25.9918L49.5029 1.54503C51.3007 0.532142 53.3294 0 55.393 0H300C306.627 0 312 5.37258 312 12V369.17C312 375.797 306.627 381.17 300 381.17H12C5.37259 381.17 0 375.797 0 369.17V36.4468Z" /></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 312 382" xmlns="http://www.w3.org/2000/svg"><path d="M0 36.4468C0 32.1144 2.33527 28.1183 6.10988 25.9918L49.5029 1.54503C51.3007 0.532142 53.3294 0 55.393 0H300C306.627 0 312 5.37258 312 12V369.17C312 375.797 306.627 381.17 300 381.17H12C5.37259 381.17 0 375.797 0 369.17V36.4468Z" /></svg>');
  border-radius: 12px;
  height: 381px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  text-align: left;
}

.team-1 .single-team-item .team-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: contain;
  text-align: left;
}

.team-1 .single-team-item .social-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.team-1 .single-team-item .social-icon a {
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--black-2);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .social-icon a:nth-child(1) {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(2) {
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(3) {
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(4) {
  -webkit-transition: all 0.85s;
  transition: all 0.85s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-1 .single-team-item .social-icon a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.team-1 .single-team-item .social-icon a:hover i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.team-1 .single-team-item:hover .social-icon a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.team-1 .single-team-item:hover .shape-2 {
  top: -2px;
  opacity: 1;
  left: -30px;
}

.team-1 .single-team-item:hover .shape-3 {
  opacity: 1;
  right: 0;
}

.team-1 .single-team-item .content p {
  color: var(--theme-2);
}

.team-1 .single-team-item .content h3 {
  font-size: 20px;
}

.team-2 .single-team-item {
  width: 100%;
  position: relative;
  height: 261px;
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin-top: 170px;
}

.team-2 .single-team-item .shape-1 {
  position: absolute;
  top: -100px;
  z-index: -1;
  left: 10px;
  opacity: 0.12;
  -webkit-animation: zoomBig 2s infinite linear;
  animation: zoomBig 2s infinite linear;
}

.team-2 .single-team-item .team-image {
  position: absolute;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  top: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.team-2 .single-team-item .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.team-2 .single-team-item .content {
  padding-top: 100px;
  text-align: center;
}

.team-2 .single-team-item .content h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-2 .single-team-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.team-2 .single-team-item .content p {
  color: var(--theme-2);
  padding-bottom: 5px;
}

.team-2 .single-team-item .content .social {
  padding-top: 22px;
  gap: 10px;
}

.team-2 .single-team-item .content .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border-2);
  color: var(--theme-2);
}

.team-2 .single-team-item .content .social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-2 .single-team-item .content .social a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.team-2 .single-team-item .content .social a:hover i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.team-3 {
  position: relative;
}

.team-3 .shape-1 {
  position: absolute;
  bottom: -70px;
  z-index: -1;
  left: -80px;
  opacity: 0.12;
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

.team-3 .shape-2 {
  position: absolute;
  bottom: 10%;
  z-index: -1;
  right: 14%;
  opacity: 60%;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.team-3 .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.team-3 .single-team-item {
  width: 100%;
}

.team-3 .single-team-item .image {
  width: 100%;
  height: 266px;
}

.team-3 .single-team-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.team-3 .single-team-item .content {
  background-color: var(--white);
  padding: 15px;
  border-radius: 71px;
  text-align: center;
  margin: 0 37px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1199px) {
  .team-3 .single-team-item .content {
    margin-left: 0;
    margin-right: 0;
  }
}

.team-3 .single-team-item .content p {
  color: var(--theme-2);
}

.team-3 .single-team-item .content h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-3 .single-team-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.team-details-wrapper .team-image {
  height: 385px;
}

.team-details-wrapper .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-details-wrapper .team-details-content span {
  color: var(--theme-2);
}

.team-details-wrapper .team-details-content h3 {
  font-size: 28px;
}

.team-details-wrapper .team-details-contact {
  padding: 20px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 12px;
  border-radius: 12px;
  border-left: 2px solid #0B6EDA;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

.team-details-wrapper .team-details-contact .team-content-box .team-infobox li {
  color: var(--text);
  font-weight: 600;
  padding: 10px 0;
  border-radius: 32px;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.team-details-wrapper .team-details-contact .social {
  margin-top: 24px;
}

.team-details-wrapper .team-details-contact .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--theme-2);
  background-color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 3px;
  border: 1px solid var(--border-2);
}

.team-details-wrapper .team-details-contact .social a:hover {
  background: var(--theme-2);
  color: var(--white);
}

.team-skill-wrapper .team-skill-content h3 {
  font-size: 28px;
}

.testimonial-1 {
  position: relative;
}

.testimonial-1 .shape-1 {
  position: absolute;
  left: 0;
  z-index: -1;
  -webkit-animation: zoomBig 6s infinite linear;
  animation: zoomBig 6s infinite linear;
}

.testimonial-1 .shape-2 {
  position: absolute;
  right: 0;
  bottom: -35%;
  z-index: -1;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.testimonial-1 .array-button {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .testimonial-1 .array-button {
    display: none;
  }
}

.testimonial-1 .array-button .array-prev {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  left: 0;
}

.testimonial-1 .array-button .array-prev:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.testimonial-1 .array-button .array-next {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  right: 0;
}

.testimonial-1 .array-button .array-next:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.testimonial-1 .testimonial-slide {
  overflow: inherit;
}

.testimonial-1 .signle-testimonial-item {
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin: 0 155px;
  padding: 40px;
  padding-right: 60px;
  gap: 40px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .testimonial-1 .signle-testimonial-item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .testimonial-1 .signle-testimonial-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.testimonial-1 .signle-testimonial-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  right: auto;
  background-color: var(--theme);
  left: -5px;
  z-index: -1;
  border-radius: 12px;
}

.testimonial-1 .signle-testimonial-item img {
  width: 191px;
  height: 191px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-1 .signle-testimonial-item .content .star {
  color: var(--theme-2);
  padding-bottom: 5px;
}

.testimonial-1 .signle-testimonial-item .content p {
  color: var(--text);
  font-family: "Plus Jakarta Sans";
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.28px;
}

@media (max-width: 767px) {
  .testimonial-1 .signle-testimonial-item .content p {
    font-size: 18px;
    text-align: center;
  }
}

.testimonial-2 {
  position: relative;
}

.testimonial-2 .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 28%;
}

.testimonial-2 .single-testimonial-item {
  position: relative;
  background-color: var(--theme-3);
  padding: 40px 30px 20px 95px;
  max-width: 580px;
  border-radius: 12px;
  float: right;
}

@media (max-width: 1399px) {
  .testimonial-2 .single-testimonial-item {
    max-width: 100%;
    padding-left: 40px;
  }
}

.testimonial-2 .single-testimonial-item .client-img {
  position: absolute;
  width: 112px;
  height: 112px;
  left: -55px;
  top: 35px;
}

@media (max-width: 1399px) {
  .testimonial-2 .single-testimonial-item .client-img {
    position: initial;
    margin-bottom: 20px;
  }
}

.testimonial-2 .single-testimonial-item .client-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.testimonial-2 .single-testimonial-item .client-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.testimonial-2 .single-testimonial-item .client-rating li {
  color: var(--theme);
}

.testimonial-2 .single-testimonial-item .text {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--white);
  padding-top: 10px;
  font-family: "Plus Jakarta Sans";
}

.testimonial-2 .single-testimonial-item .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 25px;
}

.testimonial-2 .single-testimonial-item .client-info .content h6 {
  font-size: 16px;
  color: var(--white);
}

.testimonial-2 .single-testimonial-item .client-info .content p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.testimonial-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--white);
}

.testimonial-3 .testimonial-image {
  width: 535px;
  height: 535px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .testimonial-3 .testimonial-image {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .testimonial-3 .testimonial-image {
    width: 100%;
    height: 100%;
  }
}

.testimonial-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-3 .testimonial-content .array-button {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
}

.testimonial-3 .testimonial-content .single-testimonial-item {
  padding-top: 45px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-rating {
  gap: 5px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-rating li {
  color: var(--theme);
}

.testimonial-3 .testimonial-content .single-testimonial-item .text {
  font-family: "Plus Jakarta Sans";
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.24px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info {
  padding-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img {
  position: relative;
  width: 65px;
  height: 65px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img .icon {
  position: absolute;
  color: var(--theme-2);
  font-size: 30px;
  z-index: 11;
  top: -15px;
  right: -10px;
}

.testimonial-4 .single-testimonial-item {
  text-align: center;
  padding: 0 50px;
  border-right: 1px solid var(--border-2);
  position: relative;
}

.testimonial-4 .single-testimonial-item .shape-1 {
  position: absolute;
  left: 70px;
  top: 10px;
  opacity: 9%;
}

.testimonial-4 .single-testimonial-item .client-img {
  width: 78px;
  height: 78px;
  position: relative;
}

.testimonial-4 .single-testimonial-item .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-4 .single-testimonial-item .client-img .icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 26px;
  color: var(--theme);
}

.testimonial-4 .single-testimonial-item .client-rating {
  padding-top: 25px;
  padding-bottom: 10px;
}

.testimonial-4 .single-testimonial-item .client-rating li {
  color: var(--theme);
  gap: 5px;
}

.testimonial-4 .single-testimonial-item .text {
  font-size: 18px;
  padding-top: 30px;
}

.testimonial-4 .single-testimonial-item .client-info {
  padding-top: 20px;
}

.testimonial-4 .single-testimonial-item .client-info p {
  font-size: 14px;
}

.process-1 {
  position: relative;
}

.process-1 .process-items {
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  padding-top: 70px;
  padding-bottom: 260px;
}

@media (max-width: 1399px) {
  .process-1 .process-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    gap: 30px;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .process-1 .process-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.process-1 .process-items .single-process-item {
  position: relative;
  z-index: 1;
  width: 372px;
}

.process-1 .process-items .single-process-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 1;
}

.process-1 .process-items .single-process-item:nth-child(2) .icon {
  top: 5px;
  left: 15px;
}

@media (max-width: 991px) {
  .process-1 .process-items .single-process-item {
    width: 100%;
  }
}

.process-1 .process-items .single-process-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  height: 332px;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.process-1 .process-items .single-process-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.process-1 .process-items .single-process-item h4 {
  color: var(--white);
  padding-top: 20px;
}

.process-1 .process-items .single-process-item p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 26px;
  padding: 15px 20px 0 20px;
}

.process-1 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 5%;
  -webkit-animation: zoomBig 10s infinite linear;
  animation: zoomBig 10s infinite linear;
}

.process-1 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 40%;
  -webkit-animation: topToBottom 5s infinite linear;
  animation: topToBottom 5s infinite linear;
}

.process-1 .shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 40%;
  -webkit-animation: leftToRight 5s infinite linear;
  animation: leftToRight 5s infinite linear;
}

.process-1 .shape-4 {
  position: absolute;
  top: 26.5%;
  left: 25.5%;
  -webkit-animation: leftToRight 3s infinite linear;
  animation: leftToRight 3s infinite linear;
}

.process-1 .shape-5 {
  position: absolute;
  bottom: 29.5%;
  left: 49.5%;
  -webkit-animation: leftToRight 3s infinite linear;
  animation: leftToRight 3s infinite linear;
}

.process-2 {
  position: relative;
}

.process-2 .signle-process-item {
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.process-2 .signle-process-item .shape-1 {
  position: absolute;
  right: -130px;
  -webkit-animation: rotateleft2 5s linear infinite;
  animation: rotateleft2 5s linear infinite;
}

@media (max-width: 767px) {
  .process-2 .signle-process-item .shape-1 {
    display: none;
  }
}

.process-2 .signle-process-item .shape-2 {
  position: absolute;
  right: -120px;
  top: 25px;
  -webkit-animation: rotateleft 5s linear infinite;
  animation: rotateleft 5s linear infinite;
}

@media (max-width: 1199px) {
  .process-2 .signle-process-item .shape-2 {
    display: none;
  }
}

.process-2 .signle-process-item .icons {
  display: inline-block;
  position: relative;
  padding-bottom: 35px;
}

.process-2 .signle-process-item .icons .icon-1 {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
  font-size: 37px;
  background: var(--white);
  color: var(--theme);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.process-2 .signle-process-item .icons .icon-2 {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--theme-2);
  position: absolute;
  right: -10px;
}

.process-2 .signle-process-item:hover .icon-1 {
  background-color: var(--theme-2);
  color: var(--white);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.video-1 {
  margin-top: -260px;
}

.video-1 .video-image {
  position: relative;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1316 535"  xmlns="http://www.w3.org/2000/svg"><path d="M0 104.971C0 101.788 1.26428 98.7357 3.51472 96.4853L96.4853 3.51472C98.7357 1.26428 101.788 0 104.971 0H1191.66C1194.46 0 1197.18 0.984195 1199.34 2.78134L1311.68 96.4018C1314.42 98.6818 1316 102.059 1316 105.62V523C1316 529.627 1310.63 535 1304 535H12C5.3726 535 0 529.627 0 523V104.971Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1316 535"  xmlns="http://www.w3.org/2000/svg"><path d="M0 104.971C0 101.788 1.26428 98.7357 3.51472 96.4853L96.4853 3.51472C98.7357 1.26428 101.788 0 104.971 0H1191.66C1194.46 0 1197.18 0.984195 1199.34 2.78134L1311.68 96.4018C1314.42 98.6818 1316 102.059 1316 105.62V523C1316 529.627 1310.63 535 1304 535H12C5.3726 535 0 529.627 0 523V104.971Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  height: 435px;
  border-radius: 30px;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .video-1 .video-image {
    height: 200px;
    top: 110px;
    margin-bottom: 140px;
  }
}

.video-1 .video-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.video-1 .video-image::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 13, 68, 0.44);
}

.video-1 .video-image .icon {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  position: relative;
  z-index: 2;
  margin: auto;
}

.video-1 .video-image .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background: linear-gradient(84deg, #d82e26 0%, #f0aca9 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-1 .video-image .video-button i {
  font-size: 28px;
  color: var(--white);
}

.video-1 .video-image .video-button .video-button-ripple::before,
.video-1 .video-image .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.video-1 .video-image .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-1 .video-image .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-1.style-2 .video-image {
  -webkit-mask: none;
  mask: none;
  border-radius: 20px;
}

.video-1.style-2 .video-image::after {
  display: none;
}

.video-1.style-2 .video-image .icon {
  width: 85px;
  height: 85px;
  font-size: 25px;
}

.video-1.video-page {
  margin-top: -160px;
}

@-webkit-keyframes popupVideo {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes popupVideo {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

.blog-wrapper .blog-details-image {
  width: 100%;
  height: 472px;
}

.blog-wrapper .blog-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .array-button {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content h3 {
  font-size: 28px;
  font-weight: 700;
}

.blog-wrapper .single-blog-post.post-details .post-content .image-2 {
  height: 254px;
}

.blog-wrapper .single-blog-post.post-details .post-content .image-3 {
  height: 425px;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--bg);
  padding: 40px 35px;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote blockquote {
  color: var(--black-2);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.28px;
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote .title span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote .title .icon {
  font-size: 40px;
  color: var(--theme-2);
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: .3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.html);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button i {
  font-size: 28px;
  color: var(--theme-2);
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::before,
.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 35px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 22px;
  list-style-type: disc;
  color: var(--text-2);
  font-weight: 500;
  position: relative;
  font-size: 18px;
  padding-left: 40px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Plus Jakarta Sans";
  content: "\f00c";
  font-size: 14px;
  color: var(--theme);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.09);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin: 0 14px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span:nth-child(1) {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .theme-btn i {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  background-color: var(--bg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
  color: var(--theme);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 5px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  height: 21px;
  width: 2px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-2);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 18px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}

.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 12px 25px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  color: var(--black-2);
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 85px;
  width: 100px;
  float: left;
  margin-right: 20px;
  border-radius: 4px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a,
.popular_posts .single-post-item .post-content h5 a {
  color: var(--text);
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-2);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  color: #959595;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  color: var(--theme-2);
  margin-right: 7px;
  font-size: 20px;
}

.widget_categories {
  padding-right: 10px;
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--white);
  color: var(--text);
  padding: 18px 20px;
  line-height: 1;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

.widget_categories ul li a::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  z-index: -1;
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--white) !important;
}

.widget_categories ul li a:hover::after {
  width: 100%;
  opacity: 1;
}

.widget_categories ul li a:hover span {
  color: var(--white);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  text-align: center;
  color: var(--text);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.tagcloud a {
  display: inline-block;
  padding: 12px 25px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #F6F3EE;
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.tagcloud-2 a {
  display: inline-block;
  padding: 12px 15px;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background-color: var(--white);
  margin-right: 12px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
}

.tagcloud-2 a:last-child {
  margin-right: 0;
}

.tagcloud-2 a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.social-share a {
  width: 35px;
  height: 35px;
  background-color: var(--bg);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.tag-share-wrap {
  padding-bottom: 50px;
  padding-top: 60px;
}

.tag-share-wrap h4 {
  margin-right: 15px;
  line-height: 1;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.related-post-wrap,
.comment-form-wrap {
  background-color: #F8F8F9;
  height: 100%;
  padding: 50px;
  padding-right: 65px;
}

@media (max-width: 767px) {

  .related-post-wrap,
  .comment-form-wrap {
    padding: 30px;
  }
}

.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {

  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .reply-btn {
  padding: 10px 18px;
  font-size: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--header);
  border-radius: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .reply-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .info .reply-btn:hover {
  color: var(--theme-2) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--text);
  font-weight: 600;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: #F8F8F9;
  width: 100%;
  margin-top: 30px;
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
  background-color: var(--white);
}

@media (max-width: 585px) {

  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
  margin-left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.blog-author-info .image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.blog-author-info .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.blog-author-info .author-social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.blog-author-info .author-social-link a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.blog-1 {
  position: relative;
}

.blog-1 .shape-1 {
  position: absolute;
  top: 50px;
  left: 60px;
  opacity: 5%;
}

.blog-1 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 22%;
}

.blog-1 .blog-inner {
  padding-bottom: 220px;
}

.blog-1 .blog-inner .single-blog-item {
  margin-top: 40px;
  padding: 25px;
  background-color: var(--white);
  border-radius: 12px;
  position: relative;
}

.blog-1 .blog-inner .single-blog-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 374 282" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.3262C0 69.1175 2.88346 63.2609 7.80428 59.4749L79.7142 4.14868C83.2106 1.45859 87.4984 0 91.9099 0H354C365.046 0 374 8.95431 374 20V262C374 273.046 365.046 282 354 282H20C8.9543 282 0 273.046 0 262V75.3262Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 374 282" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.3262C0 69.1175 2.88346 63.2609 7.80428 59.4749L79.7142 4.14868C83.2106 1.45859 87.4984 0 91.9099 0H354C365.046 0 374 8.95431 374 20V262C374 273.046 365.046 282 354 282H20C8.9543 282 0 273.046 0 262V75.3262Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.blog-1 .blog-inner .single-blog-item .image img {
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-1 .blog-inner .single-blog-item .image img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  height: 100%;
  width: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: none;
  transform: none;
}

.blog-1 .blog-inner .single-blog-item .content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.blog-1 .blog-inner .single-blog-item .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.blog-1 .blog-inner .single-blog-item .content ul li {
  font-weight: 500;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.blog-1 .blog-inner .single-blog-item .content ul li:nth-child(2) {
  color: rgba(73, 81, 91, 0.37);
  background: none;
  font-size: 10px;
}

.blog-1 .blog-inner .single-blog-item .content ul li:nth-child(3) {
  color: var(--text);
}

.blog-1 .blog-inner .single-blog-item .content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.22px;
}

.blog-1 .blog-inner .single-blog-item .content h3 a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-1 .blog-inner .single-blog-item .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.blog-1 .blog-inner .single-blog-item .content p {
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 10px;
}

.blog-1 .blog-inner .single-blog-item .content .link-btn {
  font-weight: 700;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 17px;
}

.blog-1 .blog-inner .single-blog-item .content .link-btn i {
  padding-left: 8px;
}

.blog-1 .blog-inner .single-blog-item:hover .image img:nth-child(2) {
  width: 100%;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
}

.blog-1.style-2 {
  position: relative;
}

.blog-1.style-2 .blog-2-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.blog-1.style-2 .blog-2-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-3);
  opacity: 96%;
}

.blog-1.style-2 .blog-inner {
  padding-bottom: 93px;
}

.blog-1.style-2 .blog-inner .single-blog-item {
  background-color: transparent;
  padding: 0;
}

.blog-1.style-2 .blog-inner .single-blog-item .image {
  position: relative;
  -webkit-mask: none;
  mask: none;
  height: 285px;
  width: 100%;
}

.blog-1.style-2 .blog-inner .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date {
  width: 75px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date h6 {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.24px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date h6 span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 22px;
}

.blog-1.style-2 .blog-inner .single-blog-item .content {
  width: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--theme-3);
  padding: 20px 10px 5px 30px;
  margin-top: -50px;
  border-radius: 12px;
}

.blog-1.style-2 .blog-inner .single-blog-item .content li i {
  color: var(--white);
}

.blog-1.style-3 .blog-inner {
  padding: 0;
}

.blog-1.style-3 .blog-inner .single-blog-item {
  padding-bottom: 35px;
}

.blog-1.style-3 .blog-inner .single-blog-item .image {
  -webkit-mask: none;
  mask: none;
  height: 285px;
  width: 100%;
}

.blog-1.style-3 .blog-inner .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn {
  background: transparent;
  border: 1px solid var(--theme);
  color: var(--theme-2);
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn::before,
.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn::after {
  background-color: var(--theme);
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn:hover {
  color: var(--white);
}

.blog-1.blog-page .blog-inner {
  padding-bottom: 0;
}

.blog-2 .single-blog-item {
  margin-top: 30px;
}

.blog-2 .single-blog-item .image {
  width: 100%;
  height: 188px;
}

.blog-2 .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.blog-2 .single-blog-item .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.blog-2 .single-blog-item .content ul li {
  font-weight: 500;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.blog-2 .single-blog-item .content ul li:nth-child(2) {
  color: rgba(73, 81, 91, 0.37);
  background: none;
  font-size: 10px;
}

.blog-2 .single-blog-item .content ul li:nth-child(3) {
  color: var(--text);
}

.blog-2 .single-blog-item .content h5 a {
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-2 .single-blog-item .content h5 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.blog-2 .single-blog-item.style-2 {
  position: relative;
}

.blog-2 .single-blog-item.style-2 .image {
  height: 620px;
}

.blog-2 .single-blog-item.style-2 .content {
  position: absolute;
  bottom: 50px;
  left: 50px;
}

.blog-2 .single-blog-item.style-2 .content ul li {
  color: var(--white-3);
}

.blog-2 .single-blog-item.style-2 .content ul li:nth-child(2) {
  color: var(--white-3);
  background: none;
}

.blog-2 .single-blog-item.style-2 .content ul li:nth-child(3) {
  color: var(--white-3);
}

.blog-2 .single-blog-item.style-2 .content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blog-2 .single-blog-item.style-2 .content h3 a {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-2 .single-blog-item.style-2 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.blog-2 .single-blog-item.style-2 .content a {
  color: var(--white);
}

.blog-2 .single-blog-item.style-2 .content a i {
  margin-top: 2px;
  padding-left: 5px;
}

.pricing-1 .icon-box {
  margin-top: 40px;
  gap: 20px;
}

@media (max-width: 767px) {
  .pricing-1 .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.pricing-1 .icon-box .icon {
  font-size: 43px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-1 .icon-box .title h4 {
  color: var(--white);
  padding-bottom: 10px;
}

.pricing-1 .icon-box .title p {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-1 .single-pricing-item {
  border-radius: 12px;
  background-color: var(--theme-3);
  padding: 40px 50px;
  position: relative;
}

@media (max-width: 1399px) {
  .pricing-1 .single-pricing-item {
    padding: 40px;
  }
}

.pricing-1 .single-pricing-item .header h4 {
  color: var(--white);
  padding-bottom: 10px;
}

.pricing-1 .single-pricing-item .header span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.pricing-1 .single-pricing-item .price {
  padding: 25px 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 69px;
  letter-spacing: -1.2px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pricing-1 .single-pricing-item .price span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
}

.pricing-1 .single-pricing-item .list {
  margin-top: 30px;
}

.pricing-1 .single-pricing-item .list li {
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 12px;
}

.pricing-1 .single-pricing-item .list li i {
  color: var(--theme-2);
  padding-right: 5px;
}

.pricing-1 .single-pricing-item .theme-btn {
  margin-top: 25px;
  width: 100%;
}

.pricing-1.style-2 {
  position: relative;
}

.pricing-1.style-2 .light-shape {
  width: 638px;
  height: 638px;
  position: absolute;
  left: -10%;
  top: -20%;
  border-radius: 50%;
  background-color: rgba(255, 225, 0, 0.26);
  -webkit-filter: blur(250px);
  filter: blur(250px);
}

.pricing-1.style-2 .shape-1 {
  position: absolute;
  left: -5%;
  top: -20%;
  opacity: 13%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.pricing-1.style-2 .single-pricing-item {
  background-color: var(--white);
  padding: 55px 20px;
  padding-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin-top: 30px;
}

.pricing-1.style-2 .single-pricing-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-4);
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}

.pricing-1.style-2 .single-pricing-item.border-style {
  border: 1px solid var(--theme-4);
  height: 660px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .pricing-1.style-2 .single-pricing-item.border-style {
    height: auto;
  }
}

.pricing-1.style-2 .single-pricing-item.border-style:hover::after {
  display: none;
}

.pricing-1.style-2 .single-pricing-item .price-btn {
  background-color: #F2F2F3;
  padding: 5px 13px;
  border: 1px solid var(--black-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.24px;
  position: absolute;
  top: -15px;
  right: 20px;
  cursor: pointer;
}

.pricing-1.style-2 .single-pricing-item .header h4 {
  color: var(--black-2);
  text-align: center;
}

.pricing-1.style-2 .single-pricing-item .header span {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .price {
  border-bottom: none;
}

.pricing-1.style-2 .single-pricing-item .price span {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .list {
  margin-top: 30px;
}

.pricing-1.style-2 .single-pricing-item .list li {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .theme-btn {
  width: calc(100% - 80px);
  text-align: center;
  margin-top: 0;
}

.pricing-1.style-2 .single-pricing-item .price-img {
  width: 100%;
  height: 102px;
  margin-top: 20px;
}

.pricing-1.style-2 .single-pricing-item .price-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.pricing-1.style-2 .single-pricing-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-4);
  height: 100%;
  opacity: 1;
}

.funfact-1 {
  position: relative;
  margin-top: -110px;
}

.funfact-1 .funfact-inner {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  padding: 50px 70px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .funfact-1 .funfact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .funfact-1 .funfact-inner {
    padding: 50px 30px;
  }
}

.funfact-1 .funfact-inner .title {
  width: 30%;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.28px;
}

@media (max-width: 1399px) {
  .funfact-1 .funfact-inner .title {
    width: 100%;
    text-align: center;
    font-size: 35px;
  }
}

.funfact-1 .funfact-inner .funfact-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

@media (max-width: 991px) {
  .funfact-1 .funfact-inner .funfact-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .funfact-1 .funfact-inner .funfact-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .icon {
  font-size: 70px;
  color: var(--white);
}

@media (max-width: 1199px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item .icon {
    font-size: 50px;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box {
  position: relative;
  width: 100%;
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box h2 {
  width: 100%;
  color: var(--white);
  font-size: 60px;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: -1.2px;
}

@media (max-width: 1199px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box h2 {
    font-size: 45px;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box p {
  color: var(--white-3);
}

.funfact-2 {
  position: relative;
}

.funfact-2 .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 19%;
  z-index: -1;
}

.funfact-2 .funfact-inner {
  border-radius: 12px;
  border: 1px solid rgba(4, 11, 41, 0.08);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 35px;
}

@media (max-width: 1199px) {
  .funfact-2 .funfact-inner {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .funfact-2 .funfact-inner {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .funfact-2 .funfact-inner .signle-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 1px;
  height: 164px;
  background-color: rgba(4, 11, 41, 0.08);
  bottom: auto;
  top: -35px;
  right: -50px;
  left: auto;
}

@media (max-width: 1399px) {
  .funfact-2 .funfact-inner .signle-funfact-item::after {
    display: none;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item:nth-child(4)::after {
  content: none;
}

.funfact-2 .funfact-inner .signle-funfact-item .icon {
  width: 92px;
  height: 84px;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  font-size: 49px;
}

.funfact-2 .funfact-inner .signle-funfact-item .icon i {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.funfact-2 .funfact-inner .signle-funfact-item .count-box h2 {
  color: var(--theme-2);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.96px;
}

.funfact-3 {
  position: relative;
}

.funfact-3 .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -120px;
  z-index: -1;
}

.funfact-3 .shape-text {
  white-space: nowrap;
  min-width: 100%;
  z-index: 1;
  font-size: 150px;
  line-height: 120px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  letter-spacing: -3px;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-animation: scroll3 50s linear infinite;
  animation: scroll3 50s linear infinite;
}

.funfact-3 .funfact-inner {
  padding-top: 120px;
}

.funfact-3 .funfact-inner .funfact-content {
  position: relative;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  row-gap: 70px;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

@media (max-width: 575px) {
  .funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item .icon {
  width: 92px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.87);
  background: rgba(255, 255, 255, 0.33);
  font-size: 50px;
  color: var(--white);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item h2 {
  color: var(--theme-4);
  font-size: 48px;
  font-weight: 600;
}

.funfact-3 .funfact-inner .funfact-image {
  float: right;
  position: relative;
}

.funfact-3 .funfact-inner .funfact-image .shape-1 {
  position: absolute;
  top: 32px;
  left: -140px;
  z-index: -1;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

@media (max-width: 991px) {
  .funfact-3 .funfact-inner .funfact-image {
    float: none;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-1 {
  width: 435px;
  height: 580px;
}

@media (max-width: 991px) {
  .funfact-3 .funfact-inner .funfact-image .image-1 {
    width: 100%;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.funfact-3 .funfact-inner .funfact-image .image-2 {
  width: 320px;
  height: 354px;
  position: absolute;
  bottom: -30px;
  left: -200px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .funfact-3 .funfact-inner .funfact-image .image-2 {
    left: -100px;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: -12px;
  right: -12px;
  left: auto;
  bottom: auto;
  z-index: -1;
  border-radius: 12px;
}

.funfact-3 .funfact-inner .funfact-image .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.faq-1 .faq-content .accordion-item {
  border: 0;
  margin-top: 15px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--border);
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.18px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  padding: 20px 30px;
  padding-right: 20px;
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f107";
  background: transparent;
  font-family: "Plus Jakarta Sans";
  font-weight: 300;
  line-height: 1;
  width: auto;
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f106";
  background: transparent;
  font-family: "Plus Jakarta Sans";
  font-weight: 300;
  line-height: 1;
}

.faq-1 .faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0px;
  padding-left: 30px;
  color: var(--white-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-top: -10px;
}

.faq-1.style-2 .faq-content .accordion-item {
  border: 1px solid var(--border-2);
}

.faq-1.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
  color: var(--black-2);
}

.faq-1.style-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
  color: var(--black-2);
}

.faq-1.style-2 .faq-images {
  float: right;
  position: relative;
}

@media (max-width: 991px) {
  .faq-1.style-2 .faq-images {
    float: none;
  }
}

.faq-1.style-2 .faq-images .image-1 {
  width: 560px;
  height: 650px;
}

@media (max-width: 1199px) {
  .faq-1.style-2 .faq-images .image-1 {
    width: 100%;
  }
}

.faq-1.style-2 .faq-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.faq-1.style-2 .faq-images .image-2 {
  width: 320px;
  height: 354px;
  position: absolute;
  bottom: -60px;
  left: -60px;
  z-index: 1;
  -webkit-animation: topToBottom 2s linear infinite;
  animation: topToBottom 2s linear infinite;
}

.faq-1.style-2 .faq-images .image-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: -12px;
  right: -12px;
  left: auto;
  bottom: auto;
  z-index: -1;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .faq-1.style-2 .faq-images .image-2 {
    display: none;
  }
}

.faq-1.style-2 .faq-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.gallery-img::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-img .gallery-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery-img .gallery-content h4 {
  color: var(--white);
}

.gallery-img .gallery-content i {
  font-size: 45px;
}

.gallery-img:hover::before {
  opacity: .5;
  visibility: visible;
}

.gallery-img:hover .gallery-content {
  opacity: 1;
  visibility: visible;
}

.cta-1 {
  margin-top: -220px;
}

.cta-1 .cta-inner {
  background-image: url("../img/cta/cta-bg.png");
  height: 440px;
  padding-left: 92px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .cta-1 .cta-inner {
    height: 100%;
    padding-left: 40px;
    padding-top: 20px;
  }
}

.cta-1 .cta-inner .shape-1 {
  position: absolute;
  bottom: 0;
  right: 120px;
  z-index: -1;
}

.cta-1 .cta-inner .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
}

.cta-1 .cta-inner .images {
  width: 320px;
  height: 380px;
  margin-top: 60px;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .cta-1 .cta-inner .images {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .cta-1 .cta-inner .images {
    height: 100%;
  }
}

.cta-1 .cta-inner .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.cta-2 {
  margin-top: -93px;
}

.cta-2 .cta-inner {
  width: 100%;
  position: relative;
  padding: 60px 70px 60px 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 20px;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
}

@media (max-width: 991px) {
  .cta-2 .cta-inner {
    padding: 60px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.cta-2 .cta-inner .icon {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--white);
  font-size: 53px;
  position: absolute;
  left: -56px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .cta-2 .cta-inner .icon {
    left: 50%;
    top: -56px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cta-2 .cta-inner .icon i {
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.cta-2 .cta-inner h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.cta-2 .cta-inner p {
  font-size: 18px;
  color: var(--white);
}

.cta-2.style-2 {
  margin: 0;
}

.cta-2.style-2 .cta-inner {
  padding-left: 40px;
  padding-right: 50px;
}

@media (max-width: 1199px) {
  .cta-2.style-2 .cta-inner {
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cta-2.style-2 .cta-inner .icon {
  position: initial;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.cta-2.style-3 {
  margin-bottom: -105px;
}

.cta-2.style-3 .cta-inner {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
}

.apps-wrapper {
  position: relative;
}

.apps-wrapper .bg-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.apps-wrapper .apps-image {
  width: 560px;
  height: 700px;
  margin-left: -35px;
}

.apps-wrapper .apps-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .apps-wrapper .apps-content {
    padding-bottom: 80px;
  }
}

.apps-wrapper .apps-content .section-title h2 {
  font-size: 80px;
  line-height: 87px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .apps-wrapper .apps-content .section-title h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

.apps-wrapper .apps-content .avater {
  gap: 15px;
}

.apps-wrapper .apps-content .input-form {
  position: relative;
  margin-top: 30px;
}

.apps-wrapper .apps-content .input-form input {
  width: 100%;
  outline: none;
  border: none;
  padding: 19px 22px;
  color: var(--header);
  background-color: whitesmoke;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.apps-wrapper .apps-content .input-form .theme-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.apps-wrapper .apps-content .button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.apps-wrapper .apps-content .button .theme-btn i {
  padding-left: 15px;
  font-size: 22px;
  margin-top: -10px;
}

@media (max-width: 767px) {
  .apps-wrapper .apps-content .button .theme-btn {
    width: 100%;
  }
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.scrolling-wrap .comm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  gap: 50px;
  cursor: pointer;
}

.scrolling-wrap .comm .cmn-textslide {
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--white);
}

.scrolling-wrap .comm .cmn-textslide.color-2 {
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.scrolling-wrap .comm:nth-child(2) {
  -webkit-animation: scroll2 60s linear infinite;
  animation: scroll2 60s linear infinite;
}

.scrolling-wrap:hover .comm {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.marque-wrapper {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}

.marque-wrapper .brand-slide-element {
  width: auto;
  display: inline-block;
}

.marque-wrapper .brand-slide-element .marque-text {
  background-color: var(--theme-4);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 35px;
  border-radius: 4px;
}

.marque-wrapper .brand-slide-element .marque-text h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.marque-wrapper.style-2 .brand-slide-element .marque-text {
  background-color: var(--theme-2);
}

.contact-us-1 {
  position: relative;
}

.contact-us-1 .shape-1 {
  position: absolute;
  bottom: 0;
  right: -5%;
  opacity: 8%;
  z-index: -1;
}

.contact-us-1 .shape-2 {
  position: absolute;
  top: 0;
  left: -8%;
  opacity: 8%;
  z-index: -1;
  rotate: 250deg;
}

.contact-us-1 .contact-us-content .infu-box {
  padding-bottom: 30px;
  gap: 20px;
}

@media (max-width: 767px) {
  .contact-us-1 .contact-us-content .infu-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.contact-us-1 .contact-us-content .infu-box .icon {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  font-size: 21px;
}

.contact-us-1 .contact-us-content .infu-box h3 {
  font-weight: 600;
  letter-spacing: -0.24px;
}

.contact-us-1 .contact-right {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  padding: 50px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin-left: -5px;
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right {
    padding: 50px 20px;
  }
}

.contact-us-1 .contact-right::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  right: -5px;
  left: auto;
  z-index: -1;
  border-radius: 12px;
}

.contact-us-1 .contact-right h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.28px;
  text-align: center;
  padding-bottom: 30px;
}

.contact-us-1 .contact-right .form-clt {
  position: relative;
}

.contact-us-1 .contact-right .form-clt .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  line-height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(34, 34, 34, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(34, 34, 34, 0.08);
  text-align: center;
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt .icon {
    top: 15px;
  }
}

.contact-us-1 .contact-right .form-clt .icon i {
  color: var(--header);
  font-size: 14px;
}

.contact-us-1 .contact-right .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 22px;
  color: var(--header);
  background-color: whitesmoke;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right .form-clt input {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt input {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.contact-us-1 .contact-right .form-clt .nice-select {
  background-color: whitesmoke;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 22px;
  width: 100%;
  border: none;
}

.contact-us-1 .contact-right .form-clt .nice-select::after {
  height: 10px;
  width: 10px;
  right: 25px;
  border-color: var(--text);
  border-bottom: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.contact-us-1 .contact-right .form-clt .nice-select span {
  color: var(--text);
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right .form-clt .nice-select {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt .nice-select {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.contact-us-1 .contact-right .form-clt .nice-select .list {
  background-color: var(--white);
  width: 100%;
}

.contact-us-1 .contact-right .form-clt .nice-select .list li {
  border: none;
  background-color: transparent;
}

.contact-us-1 .contact-right .form-clt .nice-select .option {
  padding: 8px 10px;
}

.contact-us-1 .contact-right .form-clt-big textarea {
  padding: 10px 22px 105px;
  width: 100%;
  outline: none;
  color: var(--header);
  background-color: whitesmoke;
  font-weight: 500;
  border: none;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .contact-us-1 .contact-right .form-clt-big textarea {
    font-size: 15px;
  }
}

.contact-us-1 .contact-right .theme-btn {
  background-color: var(--theme-2);
}

.contact-us-2 {
  position: relative;
}

.contact-us-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  max-width: 1500px;
  height: 642px;
  background: rgba(0, 85, 255, 0.08);
  margin: 0 auto;
  z-index: -1;
  border-radius: 20px;
  overflow: hidden;
}

.contact-us-2 .shape-1 {
  position: absolute;
  top: 0%;
  left: 10.6%;
  opacity: 21%;
  z-index: 11;
}

@media (max-width: 1899px) {
  .contact-us-2 .shape-1 {
    display: none;
  }
}

.contact-us-2 .shape-2 {
  position: absolute;
  top: 4%;
  left: 14%;
  opacity: 21%;
  z-index: 11;
  rotate: 90deg;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

@media (max-width: 1899px) {
  .contact-us-2 .shape-2 {
    display: none;
  }
}

.contact-us-2 .shape-3 {
  position: absolute;
  top: 2%;
  right: 11.8%;
  z-index: -1;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

@media (max-width: 1899px) {
  .contact-us-2 .shape-3 {
    display: none;
  }
}

.contact-us-2 .contact-us-inner {
  margin-top: 40px;
  padding: 60px;
  padding-top: 50px;
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

@media (max-width: 450px) {
  .contact-us-2 .contact-us-inner {
    padding: 60px 30px;
  }
}

.contact-us-2 .contact-us-inner .contact-left span {
  color: rgba(73, 81, 91, 0.84);
  font-weight: 500;
}

.contact-us-2 .contact-us-inner .contact-left .form-clt {
  position: relative;
  margin-top: 12px;
}

.contact-us-2 .contact-us-inner .contact-left .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 22px;
  color: var(--header);
  background-color: transparent;
  border: 1px solid var(--border-2);
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .contact-us-2 .contact-us-inner .contact-left .form-clt input {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .contact-us-2 .contact-us-inner .contact-left .form-clt input {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.contact-us-2 .contact-us-inner .contact-left .categories .categories-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-us-2 .contact-us-inner .contact-left .categories .categories-items .single-item {
  padding: 5px 17px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid var(--border-2);
}

.contact-us-2 .contact-us-inner .contact-left .checked-box {
  max-width: 430px;
}

.contact-us-2 .contact-us-inner .contact-left .checked-box .checked-box-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  row-gap: 10px;
}

@media (max-width: 575px) {
  .contact-us-2 .contact-us-inner .contact-left .checked-box .checked-box-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 450px) {
  .contact-us-2 .contact-us-inner .contact-left .checked-box .checked-box-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.contact-us-2 .contact-us-inner .contact-left .checked-box .checked-box-items .form-check .form-check-label {
  color: rgba(73, 81, 91, 0.83);
  font-size: 14px;
  font-weight: 500;
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger {
  width: 100%;
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger .ui-slider-horizontal {
  height: 8px;
  margin-top: 15px;
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger .ui-slider .ui-slider-handle {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  top: -8px;
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
  display: none;
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger .ui-slider .ui-slider-range {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
}

.contact-us-2 .contact-us-inner .contact-right .price-ranger .ranger-min-max-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
}

.contact-us-2 .contact-us-inner .contact-right .form-clt-big textarea {
  margin-top: 15px;
  padding: 10px 22px;
  width: 100%;
  outline: none;
  color: var(--header);
  border: 1px solid var(--border-2);
  font-weight: 500;
  min-height: 270px;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .contact-us-2 .contact-us-inner .contact-right .form-clt-big textarea {
    font-size: 15px;
  }
}

.contact-us-2 .contact-us-inner .contact-right span {
  color: rgba(73, 81, 91, 0.84);
  font-weight: 500;
}

.contact-us-2 .contact-us-inner .contact-right .contact-btn .infu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1399px) {
  .contact-us-2 .contact-us-inner .contact-right .contact-btn .infu {
    display: none;
  }
}

.contact-us-2 .contact-us-inner .contact-right .contact-btn .infu p {
  font-size: 14px;
  color: var(--theme-2);
}

.single-contact-card {
  background-color: var(--white);
  padding: 30px 35px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  gap: 20px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  border-radius: 12px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.single-contact-card::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-4) 100%);
  z-index: -1;
  border-radius: 12px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.single-contact-card .icon {
  font-size: 30px;
  color: var(--theme);
}

.single-contact-card:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.single-contact-card:hover .icon {
  color: var(--white) !important;
}

.single-contact-card:hover p,
.single-contact-card:hover span,
.single-contact-card:hover h4 {
  color: #fff;
}

.office-google-map-wrapper iframe {
  width: 100%;
  height: 600px;
}

.footer-widgets-1 .single-footer-widget .widget-head {
  margin-bottom: 25px;
}

.footer-widgets-1 .single-footer-widget .widget-head h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.footer-widgets-1 .single-footer-widget .footer-content p {
  margin-bottom: 22px;
}

.footer-widgets-1 .single-footer-widget .footer-content h5 {
  color: var(--black-2);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 15px;
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input {
  background: var(--bg);
  border: none;
  outline: none;
  padding: 10px 22px;
  width: 100%;
  border-radius: 4px;
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::-webkit-input-placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input:-ms-input-placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::-ms-input-placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
  width: 42px;
  height: 38px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon {
  gap: 25px;
  margin-top: 35px;
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a {
  font-size: 26px;
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-2);
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact a {
  width: 55px;
  height: 55px;
  line-height: 1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu {
  width: 75%;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 28px;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu span {
  color: #05F;
  font-weight: 600;
}

.footer-widgets-1 .single-footer-widget .list-area {
  padding-top: 5px;
}

.footer-widgets-1 .single-footer-widget .list-area li {
  margin-bottom: 16px;
}

.footer-widgets-1 .single-footer-widget .list-area li i {
  font-size: 4px;
}

.footer-widgets-1 .single-footer-widget .list-area li a {
  color: var(--theme-2);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-widgets-1 .single-footer-widget .list-area li:hover a {
  padding-left: 10px;
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content p {
  color: var(--white-3);
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content h5 {
  color: var(--white);
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white-3);
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-2);
}

.footer-widgets-1.style-2 .single-footer-widget .list-area li a {
  color: var(--theme-2);
}

.footer-widgets-1.style-2 .single-footer-widget .widget-head h4 {
  color: var(--white);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content p {
  color: var(--text-2);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content h5 {
  color: var(--black-2);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content .social-icon a {
  color: var(--text);
}

.footer-widgets-1.style-3 .single-footer-widget .list-area li a {
  color: var(--theme-2);
}

.footer-widgets-1.style-3 .single-footer-widget .widget-head h4 {
  color: var(--black-2);
}

.footer-bottom {
  padding: 10px 0;
}

.footer-bottom .footer-bottom-wrapper p {
  color: var(--white-3);
}

.footer-bottom.style-2 {
  background-color: #0F144B;
}

@media (max-width: 767px) {
  .footer-bottom.style-2 .footer-bottom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
  }
}

.footer-bottom.style-2 .footer-bottom-wrapper .security {
  color: var(--white-3);
}

.footer-bottom.style-2 .footer-bottom-wrapper .security a {
  padding: 0 5px;
  color: var(--white-3);
}

footer .gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}

footer .gallery .footer-gallery-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

footer .gallery .footer-gallery-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  footer .gallery .footer-gallery-img img {
    width: 100%;
    display: block;
  }
}

footer .gallery .footer-gallery-img .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  background: linear-gradient(84deg, rgba(63, 181, 253, 0.5) 0%, rgba(11, 110, 218, 0.5) 100%);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 5px;
}

footer .gallery .footer-gallery-img:hover .content {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

/*new color*/
.section-bgreen {
  background-color: #1c9f51 !important;
}


/*whatsapp chaticon*/
/* Container */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Button */
.whatsapp-btn {
  position: relative;
  width: 60px;
  height: 60px;
  bottom: 100px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Icon */
.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Hover Effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

/* Show Tooltip */
.whatsapp-btn:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 25px;
    height: 25px;
  }

  .tooltip {
    display: none;
  }
}

/*about ceo*/
/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Reset ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Section ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans';
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Large watermark text ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 900;
  color: rgba(0, 168, 89, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  z-index: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Accent blobs ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-blob-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 89, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fndr-blob-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Container ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Section label ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.fndr-label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1c9f51, #ed3237);
  border-radius: 2px;
  flex-shrink: 0;
}

.fndr-label-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1c9f51;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Main grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.fndr-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â LEFT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â image column ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
.fndr-img-col {
  position: relative;
}

/* Outer frame ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â geometric accent */
.fndr-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Green corner accent ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â top-left */
.fndr-img-frame::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 90px;
  height: 90px;
  border-top: 3px solid #1c9f51;
  border-left: 3px solid #1c9f51;
  border-radius: 4px 0 0 0;
  z-index: 2;
}

/* Red corner accent ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â bottom-right */
.fndr-img-frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 90px;
  height: 90px;
  border-bottom: 3px solid #ed3237;
  border-right: 3px solid #ed3237;
  border-radius: 0 0 4px 0;
  z-index: 2;
}

/* Dot grid behind image */
.fndr-img-dots {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(0, 168, 89, 0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  border-radius: 8px;
  z-index: 0;
}

/* The photo itself */
.fndr-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

/* Floating role badge */
.fndr-role-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: #0c1a35;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(12, 26, 53, 0.25);
  min-width: 180px;
}

.fndr-role-badge-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.fndr-role-badge-sub {
  font-size: 11px;
  font-weight: 500;
  color: #1c9f51;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Year tag */
.fndr-year-tag {
  position: absolute;
  top: 28px;
  right: -20px;
  background: linear-gradient(135deg, #1c9f51, #00c96a);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
  text-align: center;
  line-height: 1.3;
}

.fndr-year-tag span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â RIGHT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â content column ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
.fndr-content-col {
  padding: 10px 0;
}

.fndr-name-row {
  margin-bottom: 6px;
}

.fndr-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  color: #0c1a35;
  line-height: 1.1;
  letter-spacing: -1px;
}

.fndr-name-accent {
  color: #1c9f51;
}

/* Divider with icon */
.fndr-name-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
}

.fndr-name-divider-bar {
  height: 3px;
  width: 50px;
  background: linear-gradient(90deg, #1c9f51, #ed3237);
  border-radius: 2px;
  flex-shrink: 0;
}

.fndr-batch-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0faf4;
  border: 1px solid rgba(0, 168, 89, 0.2);
  color: #1c9f51;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.fndr-batch-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1c9f51;
  flex-shrink: 0;
}

/* Bio text */
.fndr-bio {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 32px;
  position: relative;
}

/* Opening quote mark */
.fndr-bio::before {
  content: '\201C';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 168, 89, 0.12);
  position: absolute;
  top: -20px;
  left: -16px;
  line-height: 1;
  pointer-events: none;
}

.fndr-bio-inner {
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

/* Highlight quote inside bio */
.fndr-highlight {
  display: block;
  border-left: 3px solid #1c9f51;
  padding: 10px 16px;
  margin: 16px 0;
  background: #f8fffe;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #0c1a35;
  font-weight: 600;
  font-size: 14px;
}

/* Stats row */
.fndr-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.fndr-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fndr-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #0c1a35;
  line-height: 1;
}

.fndr-stat-num span {
  color: #1c9f51
}

.fndr-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #9aa5be;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fndr-stat-sep {
  width: 1px;
  background: #e8ecf0;
  align-self: stretch;
  margin-top: 4px;
}

/* Tags / expertise pills */
.fndr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fndr-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.fndr-tag-green {
  background: #f0faf4;
  color: #1c9f51;
  border: 1px solid rgba(0, 168, 89, 0.2);
}

.fndr-tag-red {
  background: #fff5f5;
  color: #ed3237;
  border: 1px solid rgba(237, 50, 55, 0.2);
}

.fndr-tag-dark {
  background: #f4f6f9;
  color: #0c1a35;
  border: 1px solid rgba(12, 26, 53, 0.1);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ Responsive ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
@media(max-width:1024px) {
  .fndr-grid {
    grid-template-columns: 360px 1fr;
    gap: 56px
  }

  .fndr-container {
    padding: 0 24px
  }
}

@media(max-width:820px) {
  .fndr-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .fndr-img-col {
    max-width: 380px;
    margin: 0 auto
  }

  .fndr-section {
    padding: 70px 0
  }
}

@media(max-width:480px) {
  .fndr-container {
    padding: 0 16px
  }

  .fndr-stats {
    gap: 20px
  }

  .fndr-blob-1,
  .fndr-blob-2 {
    display: none
  }
}

/*coaching*/
/* SECTION */
.modern-course-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16a34a, #1c9f51);
  position: relative;
}

/* TITLE */
.modern-title h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* CARD */
.modern-course-card {
  background: linear-gradient(135deg, #1c9f51, #16a34a);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

/* ICON */
.course-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1c9f51, #16a34a);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: 0.4s;
}

/* TEXT */
.modern-course-card h4 {
  color: #fff;
  ;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.modern-course-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* LIST */
.modern-course-card ul {
  padding: 0;
  list-style: none;
}

.modern-course-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ffffff;
}

.modern-course-card ul li i {
  color: #ffffff;
  margin-right: 6px;
}

/* HOVER EFFECT (MAIN UPGRADE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥) */
.modern-course-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #1c9f51, #16a34a);
  color: #fff;
  border: 1px solid #fff;
}

/* CHANGE TEXT COLOR ON HOVER */
.modern-course-card:hover h4,
.modern-course-card:hover p,
.modern-course-card:hover ul li {
  color: #fff;
}

/* ICON HOVER */
.modern-course-card:hover .course-icon {
  background: #fff;
  color: #16a34a;

}

/* ICON COLOR CHANGE */
.modern-course-card:hover ul li i {
  color: #fff;
}

/*new footer*/
.modern-footer {
  background-color: var(--f-bg);
  padding: 100px 0 30px 0;
  position: relative;
  overflow: hidden;
  color: var(--f-white);
  font-family: 'Plus Jakarta Sans' sans-serif;
}

.custom-footer-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* --- BRANDING CARD REDESIGN (The Left Section) --- */
.branding-card-new {
  background: linear-gradient(145deg, #1a2431, #151c26);
  border-radius: 24px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Watermark to fill space */
.card-watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.logo-emblem {
  width: 65px;
  height: 65px;
  background: #1c9f51;
  border: 1px solid fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
}

.accent-red {
  color: var(--text-soft-apex);
}

.sub-location {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--f-text);
  display: block;
  margin-top: 5px;
}

.brand-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  margin: 30px 0;
}

.social-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #1c9f51;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons-row {
  display: flex;
  gap: 15px;
}

.s-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--f-white);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.s-link:hover {
  background: var(--f-accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.quote-box {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid #fff;
}

.quote-box p {
  font-style: italic;
  color: var(--f-white);
  font-size: 15px;
  margin: 0;
}

.quote-icon {
  font-size: 12px;
  color: #1c9f51;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* --- RIGHT GRID LAYOUT --- */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 30px;
}

.footer-right-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sub-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-card {
  background: var(--f-card);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: 0.3s;
}

.footer-card:hover {
  border-color: #1c9f51;
}

.widget-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget-title::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #1c9f51;
  border-radius: 50%;
  box-shadow: 0 0 10px #1c9f51;
}

.clean-links {
  list-style: none;
  padding: 0;
}

.clean-links li {
  margin-bottom: 15px;
}

.clean-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clean-links li a i {
  font-size: 10px;
  opacity: 0.5;
  transition: 0.3s;
}

.clean-links li a:hover {
  color: var(--f-white);
}

.clean-links li a:hover i {
  transform: translateX(5px);
  opacity: 1;
  color: #1c9f51;
}

/* --- CONTACT INFO --- */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #1c9f51;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 15px;
}

.c-info h6 {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--f-text);
  margin-bottom: 5px;
}

.c-info p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--f-white);
}

/* --- BACKGROUND ANIMATIONS --- */
.footer-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: pulse 10s infinite alternate;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--f-accent);
  top: -100px;
  right: -50px;
}

.circle-2 {
  width: 500px;
  height: 500px;
  background: #0066ff;
  bottom: -150px;
  left: -100px;
}

@keyframes pulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2) translate(30px, 20px);
    opacity: 0.15;
  }
}

/* --- BOTTOM BAR --- */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--f-text);
  font-size: 14px;
}

.bottom-links a {
  color: var(--f-text);
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
}

.bottom-links a:hover {
  color: var(--f-white);
}

.heart-pulse {
  color: var(--f-red);
  display: inline-block;
  animation: heart-beat 1.5s infinite;
}

@keyframes heart-beat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sub-grid-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-bottom-center {
  margin-top: 30px;
  text-align: center;
  padding: 20px 10px;
  /*  background: rgba(255, 255, 255, 0.05);*/
}

.footer-bottom-center p {
  margin: 0;
  color: #cbd5f5;
  font-size: 18px;
}

.footer-bottom-center strong {
  color: #1c9f51;
}

/*new plc*/
.team-champions-section {
  width: 100%;
  background: linear-gradient(135deg, #fafcff 0%, #f0f5fe 100%);
  padding: 80px 0;
}

.tc-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.tc-header {
  margin-bottom: 56px;
  text-align: left;
}

.tc-header h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.tp3-green {
  color: #16a34a;
}

.tp3-red {
  color: #dc2626;
}

.tc-subhead {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-top: 12px;
}

/* ---- SLIDER ---- */
.tc-slider-wrapper {
  position: relative;
  width: 100%;
}

/* The track: overflow hidden, we move an inner belt */
.tc-track-outer {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 32px 0;
}

.tc-belt {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

/* CARD */
.tc-card {
  flex: 0 0 286px;
  width: 286px;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}

.tc-card:hover {
  transform: translateY(-8px);
}

.tc-card-shape {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 3px;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
  border-radius: 22px;
  box-shadow: 0 12px 24px -12px rgba(0, 119, 255, 0.25);
  transition: box-shadow 0.3s ease;
}

.tc-card:hover .tc-card-shape {
  box-shadow: 0 24px 36px -12px rgba(0, 119, 255, 0.4);
}

.tc-img-wrapper {
  width: 100%;
  height: 100%;
  background: #f0f4fa;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tc-card:hover .tc-img-wrapper img {
  transform: scale(1.05);
}

.tc-initials {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: #0072ff;
  background: #e8f2ff;
  letter-spacing: -1px;
}

.tc-info {
  padding: 7px 8px 8px 8px;
  text-align: center;
}

.tc-role {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1c9f51;
  display: block;
  margin-bottom: 6px;
}

.tc-name {
  display: block;
  font-family: 'Plus Jakarta Sans';
  font-size: 22px;
  font-weight: 700;
  color: #0a0f1c;
  margin-top: 4px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.tc-location {
  display: block;
  font-size: 18px;
  color: #1c9f51;
  margin-top: 6px;
  font-weight: 700;
}

/* Navigation */
.tc-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 28px;
}

.tc-arrow {
  width: 54px;
  height: 54px;
  border-radius: 60px;
  background: white;
  border: 1px solid #e0edff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  color: #1e2a3e;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.tc-arrow:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
  transform: scale(1.04);
}

.tc-arrow:active {
  transform: scale(0.96);
}

@media (max-width: 900px) {
  .tc-container {
    padding: 0 24px;
  }

  .tc-card {
    flex: 0 0 260px;
    width: 260px;
  }

  .tc-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .tc-card {
    flex: 0 0 240px;
    width: 240px;
  }

  .tc-header h2 {
    font-size: 32px;
  }

  .tc-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

/*about new*/
.eduMaster {
  --primaryGreen: #00C07F;
  --greenDark: #1c9f51;
  --bgDark: #0C0F0E;
  --surfaceDark: #131714;
  --textMuted: rgba(255, 255, 255, 0.45);
  --borderLine: rgba(255, 255, 255, 0.08);
  font-family: 'Plus Jakarta Sans';
  background: var(--bgDark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
}

.eduMaster *,
.eduMaster *::before,
.eduMaster *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* noise texture overlay */
.eduMaster::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* diagonal accent line */
.eduMaster::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 22%;
  width: 1px;
  height: 130%;
  background: var(--borderLine);
  transform: rotate(12deg);
  transform-origin: top center;
  pointer-events: none;
  z-index: 0;
}

.masterInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ LEFT: image cluster ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.visualZone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
}

.imageCluster {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.imgPrimary {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 3/4;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.imgSecondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.imgPrimary img,
.imgSecondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
}

/* floating stat badge */
.floatingBadge {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  background: var(--primaryGreen);
  color: #fff;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.floatingBadge .badgeNumber {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.floatingBadge .badgeLabel {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.85;
  text-align: center;
  max-width: 7rem;
  font-weight: 500;
}

.dotGrid {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  display: grid;
  grid-template-columns: repeat(6, 6px);
  gap: 6px;
  opacity: 0.2;
}

.dotGrid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primaryGreen);
  display: block;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ RIGHT: content ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.contentZone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 4rem;
  border-left: 1px solid var(--borderLine);
}

.sectionTag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primaryGreen);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-weight: 600;
}

.sectionTag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primaryGreen);
}

.mainHeading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.mainHeading em {
  color: #fff;
}

.leadText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--textMuted);
  max-width: 38ch;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.featureList {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.featureRow {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--borderLine);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.featureRow:first-child {
  border-top: 1px solid var(--borderLine);
}

.featureIcon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--primaryGreen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.featureIcon svg {
  width: 10px;
  height: 10px;
  fill: var(--primaryGreen);
}

.featureTitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.featureNumber {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 800;
  margin-left: auto;
}

/* stats strip */
.statsStrip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--borderLine);
}

.stripItem {
  flex: 1;
  padding: 2rem 3rem;
  border-right: 1px solid var(--borderLine);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stripNumber {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primaryGreen);
  display: block;
  line-height: 1;
}

.stripLabel {
  font-size: 0.72rem;
  color: var(--textMuted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}

/* visible states */
.eduMaster.visible .imgPrimary,
.eduMaster.visible .imgSecondary,
.eduMaster.visible .floatingBadge,
.eduMaster.visible .sectionTag,
.eduMaster.visible .mainHeading,
.eduMaster.visible .leadText,
.eduMaster.visible .featureRow,
.eduMaster.visible .stripItem {
  opacity: 1;
  transform: none;
}

/* specific delays for rows */
.eduMaster.visible .featureRow:nth-child(1) {
  transition-delay: 0.3s;
}

.eduMaster.visible .featureRow:nth-child(2) {
  transition-delay: 0.4s;
}

.eduMaster.visible .featureRow:nth-child(3) {
  transition-delay: 0.5s;
}

.eduMaster.visible .featureRow:nth-child(4) {
  transition-delay: 0.6s;
}

.eduMaster.visible .featureRow:nth-child(5) {
  transition-delay: 0.7s;
}

@media (max-width: 900px) {
  .masterInner {
    grid-template-columns: 1fr;
  }

  .visualZone {
    padding: 4rem 2rem 2rem;
    min-height: 400px;
  }

  .contentZone {
    padding: 3rem 2rem;
    border-left: none;
  }

  .statsStrip {
    flex-wrap: wrap;
  }

  .stripItem {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--borderLine);
  }

  .floatingBadge {
    right: 1rem;
    bottom: 1rem;
    top: auto;
    transform: none;
  }
}

/*new gallery page*/
/* Container & Grid Styles */
.ethereal-v3-section {
  padding: 80px 20px;
  background-color: #fcfcfc;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 768px) {
  .ethereal-v3-section {
    padding: 50px 10px;
  }
}

.ethereal-v3-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ethereal-v3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  grid-auto-flow: dense;
}

@media (max-width: 768px) {
  .ethereal-v3-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
}

.ethereal-v3-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.ethereal-v3-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.ethereal-v3-item:hover img {
  transform: scale(1.05);
}

.ethereal-v3-tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .ethereal-v3-tall {
    grid-row: span 1;
  }
}

.ethereal-v3-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .ethereal-v3-wide {
    grid-column: span 2;
  }
}

/* Overlay */
.ethereal-v3-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  color: white;
}

.ethereal-v3-item:hover .ethereal-v3-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.ethereal-v3-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (max-width: 768px) {
  .ethereal-v3-modal {
    padding: 20px 10px;
    overflow-y: auto;
  }
}

.ethereal-v3-modal.active {
  display: flex;
}

.ethereal-v3-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
}

@media (max-width: 768px) {
  .ethereal-v3-content {
    max-width: 95%;
    max-height: 70vh;
    width: 100%;
  }
}

#ethereal-v3-main-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #ethereal-v3-main-img {
    max-height: 65vh;
    border-radius: 4px;
  }
}

/* Navigation Buttons */
.ethereal-v3-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
  z-index: 10;
}

.ethereal-v3-nav-btn:hover {
  background: #444;
}

.ethereal-v3-prev {
  left: 30px;
}

.ethereal-v3-next {
  right: 30px;
}

.ethereal-v3-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .ethereal-v3-close {
    top: 15px;
    right: 15px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .ethereal-v3-nav-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
    top: auto;
    transform: none;
  }

  .ethereal-v3-prev {
    left: 10px;
  }

  .ethereal-v3-next {
    right: 10px;
  }
}

.view-button {
  background: rgb(154 153 153 / 70%);
  padding: 10px;
  border-radius: 10px;
}

/* new about section*/
/* Main section: light background, modern feel */
.stats-showcase {
  /*  background: linear-gradient(135deg, #f8faff 0%, #f0f4fe 100%);*/
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
  isolation: isolate;
}

/* Abstract geometric background shapes (light & subtle) */
.stats-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(79, 109, 254, 0.08) 0%, rgba(79, 109, 254, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.stats-showcase::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(46, 213, 210, 0.06) 0%, rgba(46, 213, 210, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1c9f51, #ed3237);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-header .badge-line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1c9f51, #2ed5d2);
  border-radius: 4px;
  margin-top: 0.75rem;
}

/* 3D Grid / floating elements layout - No card boxes, instead an immersive mix */
.stats-3d-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

/* Each stat element with 3D tilt and glassmorphism style */
.stat-tile {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  height: 150px;
  padding: 1.8rem 2.2rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  will-change: transform;
}

/* dynamic 3D rotation on hover (JS can add, but we add subtle CSS hover as well) */
.stat-tile:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(4deg) translateY(-8px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(79, 109, 254, 0.3);
  box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.2);
}

.stat-year {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ed3237;
  letter-spacing: -0.2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-year i {
  color: #1c9f51;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 35px;
  font-weight: 600;
  background: linear-gradient(125deg, #1c9f51, #1c9f51);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.probationary {
  background: linear-gradient(115deg, rgba(79, 109, 254, 0.12), rgba(46, 213, 210, 0.08));
  border-left: 4px solid #1c9f51;
  backdrop-filter: blur(12px);
}

.probationary .stat-number {
  background: linear-gradient(125deg, #1c9f51, #2ed5d2);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Special milestone area: 431 appointments in 3 years */
.milestone-3d {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.8), rgba(245, 248, 255, 0.9));
  backdrop-filter: blur(8px);
  border-radius: 3rem;
  padding: 2rem 2rem;
  margin: 2rem 0 4rem 0;
  border: 1px solid rgba(79, 109, 254, 0.25);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.milestone-3d:hover {
  transform: perspective(1000px) translateZ(10px) rotateX(0.5deg);
}

.milestone-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.milestone-text {
  flex: 2;
}

.milestone-text h3 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1f2b5c, #2d3d8f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.milestone-text .big-number {
  font-size: 4.2rem;
  font-weight: 500;
  color: #1c9f51;
  display: inline-block;
  margin-right: 12px;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(79, 109, 254, 0.2);
}

.milestone-text .time-span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

.milestone-icon {
  flex: 1;
  text-align: center;
  font-size: 4rem;
  color: #1c9f51;
  opacity: 0.8;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Our Mission section - reimagined as creative wave + 3D list */
.mission-section {
  margin-top: 4rem;
  background: rgba(255, 255, 245, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 3rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(79, 109, 254, 0.2);
  transition: all 0.4s;
}

.mission-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

.mission-title i {
  font-size: 2rem;
  background: linear-gradient(145deg, #1c9f51, #2ed5d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mission-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.mission-card-item {
  flex: 1;
  min-width: 240px;
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  transform: translateY(0);
  border: 1px solid #eb938f1f;
}

.mission-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 40px -16px rgba(79, 109, 254, 0.2);
  border-color: rgba(79, 109, 254, 0.3);
}

.mission-icon-lg {
  font-size: 2.2rem;
  color: #1c9f51;
  margin-bottom: 1rem;
  display: inline-block;
}

.mission-card-item p {
  font-size: 18px;
  line-height: 1.5;
  color: #2d3a5e;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .stats-showcase {
    padding: 3rem 1.5rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-tile {
    padding: 1.2rem 1.5rem;
    min-width: 150px;
  }

  .milestone-text h3 {
    font-size: 1.8rem;
  }

  .milestone-text .big-number {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .stats-3d-grid {
    gap: 1rem;
  }

  .mission-list {
    flex-direction: column;
  }
}

/* 3D Perspective global for the section (some objects will have interactive JS) */
.stat-tile,
.milestone-3d,
.mission-card-item {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.text-justify {
  text-align: justify;
}

/*courses page*/
/* isolated container for this module */
.elite-exam-container {
  --elite-primary: #1c9f51;
  --elite-accent: #ed3237;
  --elite-dark: #0f1a13;
  --elite-soft-bg: #fefef7;
  --elite-card-white: #ffffff;
  --elite-shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --elite-shadow-hover: 0 30px 45px -15px rgba(10, 173, 98, 0.18);
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
}

.elite-exam-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
}

/* ===== COURSES GRID SECTION (Comprehensive programs 10 specialized competitive tracks) ===== */
.elite-courses {
  padding: 80px 48px 90px 48px;
  background: #ffffff;
}

.elite-section-header {
  margin-bottom: 56px;
}

.elite-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.elite-section-label i {
  color: #d82e26;
  font-size: 20px;
}

.elite-section-label span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d82e26;
}

.elite-section-header h2 {
  font-size: clamp(36px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--elite-dark);
}

.elite-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 32px;
}

.elite-course-card {
  background: var(--elite-card-white);
  border-radius: 28px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef2ef;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
}

.elite-course-card:hover {
  transform: translateY(-8px);
  border-color: rgb(217 46 38 / 57%);
  box-shadow: var(--elite-shadow-hover);
}

.elite-course-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #d92e2600, #f2bcb9a1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d82e26;
  margin-bottom: 26px;
}

.elite-course-category {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d82e26;
  margin-bottom: 12px;
  display: inline-block;
}

.elite-course-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #14241c;
}

.elite-course-desc {
  font-size: 18px;
  font-family: 'Plus Jakarta Sans';
  color: #4b5b53;
  margin-bottom: 24px;
}

.elite-course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eef0ee;
  padding-top: 20px;
  margin-top: 4px;
}

.elite-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5e6e66;
}

.elite-meta-left i {
  font-size: 14px;
  color: var(--elite-primary);
}

.elite-arrow-link {
  background: #fae5e4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #d82e26;
  transition: 0.2s;
}

.elite-course-card:hover .elite-arrow-link {
  background: #d82e26;
  color: white;
  transform: translateX(5px);
}

/* ===== FEATURE HIGHLIGHTS (Your success, our blueprint) ===== */
.elite-feature-highlight {
  background: linear-gradient(120deg, #f8fefb, #ffffff);
  padding: 80px 48px;
}

.elite-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 28px;
}

.elite-highlight-card {
  background: white;
  border-radius: 28px;
  padding: 32px 28px;
  transition: all 0.3s;
  border: 1px solid #eef0ec;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
}

.elite-highlight-card:hover {
  transform: translateY(-6px);
  border-left: 4px solid var(--elite-primary);
  box-shadow: 0 22px 40px rgba(10, 173, 98, 0.08);
}

.elite-highlight-icon {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--elite-primary);
}

.elite-highlight-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1b2a22;
}

.elite-highlight-card p {
  color: #5a6c63;
  line-height: 1.5;
  font-size: 14px;
}

/* ===== TIMETABLE & BATCH SECTION (Flexible batches for every schedule) ===== */
.elite-schedule-section {
  padding: 60px 48px 90px 48px;
  background: #ffffff;
}

.elite-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.elite-schedule-card {
  background: #f8f8f869;
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(10, 173, 98, 0.15);
  transition: 0.25s;
}

.elite-schedule-card:hover {
  background: white;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border-color: #d82e26;
}

.elite-schedule-icon {
  font-size: 38px;
  margin-bottom: 16px;
  color: #d82e26;
}

.elite-schedule-time {
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 8px;
  color: #0e2119;
}

.elite-schedule-badge {
  background: #eefcf5;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  text-transform: Capitalize;
  font-size: 13px;
  font-weight: 800;
  color: #d92e26;
  margin: 12px 0 8px;
}

/* small responsive adjustments */
@media (max-width: 1000px) {

  .elite-courses,
  .elite-feature-highlight,
  .elite-schedule-section {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 600px) {
  .elite-courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== IMMERSIVE SPECIALISATION (kinetic) ========== */
.cs__special-kinetic {
  margin: 30px 64px 70px;
  background: linear-gradient(112deg, #f1fdf8 0%, #ffffff 100%);
  border-radius: 64px;
  padding: 58px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 28px -12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(10, 173, 98, 0.15);
}

.cs__kinetic-left {
  flex: 2;
}

.cs__eyebrow-special {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ed3237;
  background: rgba(237, 50, 55, 0.08);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
}

.cs__kinetic-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.12;
  margin: 20px 0 16px;
}

.cs__kinetic-highlight {
  background: linear-gradient(120deg, #d92e26, #d92e26);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.cs__progress-ring {
  background: #ffffff;
  border-radius: 80px;
  padding: 32px 36px;
  text-align: center;
  box-shadow: 0 18px 32px -12px rgba(10, 173, 98, 0.2);
  min-width: 220px;
}

.cs__ring-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #1c9f51;
  line-height: 1;
}

/* New Contact Icons Section - Vertical layout (phone above email) */
.header-contact-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #e0e4e8;
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.contact-info-link:hover {
  transform: translateX(2px);
}

.contact-icon-wrapper {
  width: 32px;
  height: 32px;
  background: #fef3e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.contact-info-link:hover .contact-icon-wrapper {
  background: #f97316;
}

.contact-icon-wrapper i {
  font-size: 14px;
  color: #f97316;
  transition: all 0.2s ease;
}

.contact-info-link:hover .contact-icon-wrapper i {
  color: white;
}

.contact-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
}

.contact-info-link:hover .contact-value {
  color: #f97316;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .header-contact-icons {
    margin-right: 12px;
    padding-right: 12px;
  }

  .contact-value {
    font-size: 12px;
  }

  .contact-icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .contact-icon-wrapper i {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .header-contact-icons {
    flex-direction: row;
    gap: 16px;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: none;
  }

  .contact-info-link {
    padding: 6px 12px;
    background: #f8fafc;
    border-radius: 40px;
    gap: 8px;
  }

  .contact-text-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .contact-label {
    font-size: 10px;
  }

  .contact-value {
    font-size: 11px;
  }

  .contact-icon-wrapper {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .header-contact-icons {
    gap: 10px;
  }

  .contact-info-link {
    padding: 4px 10px;
  }

  .contact-value {
    font-size: 10px;
    white-space: nowrap;
  }

  .contact-label {
    font-size: 9px;
  }
}

@media (max-width: 580px) {
  .header-contact-icons {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e4e8;
    padding-bottom: 10px;
  }

  .contact-info-link {
    flex: 1;
    justify-content: center;
  }
}

/* Single Icon Contact Section - Desktop Only */
.header-contact-single-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #e2e8f0;
}

/* Icon styling */
.contact-icon-main {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1c9f51 0%, #1c9f51 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px #1c9f5130;
}

.contact-icon-main i {
  font-size: 20px;
  color: white;
}

.header-contact-single-icon:hover .contact-icon-main {
  transform: scale(1.05);
  box-shadow: 0 6px 12px #1c9f5130;
}

/* Contact details - vertical layout (phone above email) */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  font-size: 17px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.contact-phone {
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
}

.contact-email {
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
}

.contact-phone:hover {
  color: #1c9f51;
}

.contact-email:hover {
  color: #1c9f51
}

/* ============================================ */
/* HIDE THIS SECTION ON MOBILE / TABLET (below 992px) */
/* ============================================ */
@media (max-width: 991px) {
  .header-contact-single-icon {
    display: none !important;
  }
}

/* Optional: For larger desktops, fine-tune spacing */
@media (min-width: 1200px) {
  .contact-phone {
    font-size: 15px;
  }

  .contact-email {
    font-size: 15px;
  }

  .contact-icon-main {
    width: 48px;
    height: 48px;
  }

  .contact-icon-main i {
    font-size: 22px;
  }
}

/*new whychoose section*/
/* Main wrapper - premium dark gradient */
.edu-solutions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d82e26;
  padding: 60px 24px 80px 24px;
  width: 100%;
}

/* ========== SECTION TITLE STYLES (from your code, enhanced) ========== */
.section-title {
  margin-bottom: 50px;
  width: 100%;
}

.sub-title {
  margin-bottom: 20px;
}

.sub-title span {
  background: linear-gradient(135deg, #ff5c8a, #ffb347);
  padding: 6px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgb(32 46 102 / 35%);
}

/* split-text heading styles - maintains exact structure from your code */
.split-text {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.split-line {
  display: block;

  position: relative;
  margin: 8px 0;
}

.split-line>div {
  position: relative;
  display: inline-block;
}

/* preserve all inline styles from your code while adding modern flair */
.split-text.right {
  perspective: 400px;
}

/* Additional subtle animation for heading characters */
.split-line div div {
  transition: all 0.2s ease;
  display: inline-block;
}


@keyframes gentlePop {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(0px, -4px) scale(1.08);
    color: #ffb347;
  }

  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
}

/* Responsive heading */
@media (max-width: 768px) {
  .split-text {
    font-size: 32px;
  }
}

@media (max-width: 550px) {
  .split-text {
    font-size: 26px;
  }

  .split-line {
    word-break: keep-all;
  }
}

/* ========== FLOATING DIAMOND CARDS (from your approved design) ========== */
.floating-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 13px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* Modern glass card with space for floating diamond */
.premium-floating-card {
  width: 315px;
  height: 240px;
  background: #fff;
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 52px 24px 30px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.144);
  position: relative;
  cursor: pointer;
  overflow: visible;
}

/* RESPONSIVE INVERTED CURVED PREMIUM CARD */
.premium-floating-card {
  width: min(100%, 315px);
  aspect-ratio: 315 / 240;

  background: #fff;
  backdrop-filter: blur(16px);

  padding:
    clamp(32px, 5vw, 52px) clamp(18px, 3vw, 24px) clamp(24px, 3vw, 30px);

  text-align: center;

  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 30px 40px -15px rgba(0, 0, 0, 0.14);

  position: relative;
  cursor: pointer;
  overflow: hidden;

  /* SAME SHAPE IN ALL SCREEN SIZES */
  clip-path: path("M0 40Q0 0 40 0H275Q315 0 315 40V170Q315 210 275 210H220Q190 210 170 240Q150 210 120 210H40Q0 210 0 170Z");

  /* Makes path scale properly */
  -webkit-clip-path: path("M0 40Q0 0 40 0H275Q315 0 315 40V170Q315 210 275 210H220Q190 210 170 240Q150 210 120 210H40Q0 210 0 170Z");
}

/* TABLET */
@media (max-width: 991px) {
  .premium-floating-card {
    width: min(100%, 290px);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .premium-floating-card {
    width: 100%;
    max-width: 340px;
  }
}

.premium-floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(118, 85, 85, 0.09), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 32px;
  z-index: 0;
}

.premium-floating-card:hover::before {
  opacity: 1;
}

.premium-floating-card:hover {
  transform: translateY(-10px);
  border-color: rgb(255 255 255);
  box-shadow: 0 35px 45px -12px rgb(0 0 0 / 0%), 0 0 0 1px rgba(255, 92, 138, 0.3);
}

/* Diamond icon - fully visible outside the box */
.floating-diamond {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  z-index: 20;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

.diamond-clip {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #d82e26, #d82e26);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.diamond-icon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.diamond-svg {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease;
}

.premium-floating-card:hover .floating-diamond {
  transform: translateX(-50%) translateY(-6px) scale(1.08);
  /*filter: drop-shadow(0 18px 24px rgba(255, 92, 138, 0.5));*/
}

.premium-floating-card:hover .diamond-clip {
  background: linear-gradient(145deg, #1c9f51, #1c9f51);
}

.premium-floating-card:hover .diamond-svg {
  transform: scale(1.05);
}

.floating-card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 0px 0 12px 0;
  background: linear-gradient(125deg, #d82e26, #d82e26);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.premium-floating-card:hover .floating-card-title {
  background: linear-gradient(135deg, #d82e26, #d82e26);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.floating-card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  transition: color 0.3s ease;
  font-weight: 450;
}

.premium-floating-card:hover .floating-card-desc {
  color: #1c9f50;
}

.premium-floating-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
  border-radius: 32px;
}

.premium-floating-card:hover::after {
  left: 125%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-grid {
    gap: 20px;
  }

  .premium-floating-card {
    width: 280px;
    padding: 52px 20px 28px;
    margin-top: 10px;
  }

  .floating-diamond {
    width: 84px;
    height: 84px;
    top: -42px;
  }

  .diamond-svg {
    width: 42px;
    height: 42px;
  }

  .section-title {
    margin-bottom: 50px;
  }
}

@media (max-width: 550px) {
  .edu-solutions-wrapper {
    padding: 40px 16px 80px 16px;
  }

  .premium-floating-card {
    width: 100%;
    max-width: 310px;
  }

  .floating-diamond {
    width: 80px;
    height: 80px;
    top: -40px;
  }
}

.premium-floating-card:active {
  transform: translateY(-5px) scale(0.98);
  transition: 0.05s linear;
}

/*founder new*/
.ksg-p-card {
  display: flex;
  background: #ffffff;
  width: 100%;
  max-width: 1366px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 20px auto;
  /* Centering the card */
}

.ksg-p-sidebar {
  background-color: #1c9f51;
  width: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
  flex-shrink: 0;
}

.ksg-p-vtext {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 8px;
  font-size: 14px;
  font-weight: 300;
}

.ksg-p-inner-flex {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

/* Left Profile Section */
.ksg-p-left {
  flex: 1;
  min-width: 320px;
  background-color: #ffffff;
  padding: 40px 0 0 40px;
  position: relative;
}

.ksg-p-dots {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 60px;
  background-image: radial-gradient(#ccc 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 1;
}

.ksg-p-img-wrapper {
  position: relative;
  z-index: 2;
}

.ksg-p-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.ksg-p-quote {
  background-color: #1c9f51;
  color: #ffffff;
  padding: 30px;
  margin-top: -60px;
  margin-left: -20px;
  width: calc(100% + 20px);
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

.ksg-p-quote p {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 900;
    color: #fff;
    font-family: math;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-shadow:
        3px 2px #045424,
        0 0 5px rgba(255, 255, 255, 0.3);
    animation: quoteGlow 2.5s ease-in-out infinite;
}

@keyframes quoteGlow {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
        text-shadow:
            3px 2px #045424,
            0 0 3px rgba(255,255,255,0.2);
    }

    50% {
        opacity: 1;
        transform: scale(1);
        text-shadow:
            3px 2px #045424,
            0 0 10px rgba(255,255,255,0.7),
            0 0 20px rgba(4,84,36,0.5);
    }

    100% {
        opacity: 0.7;
        transform: scale(0.98);
        text-shadow:
            3px 2px #045424,
            0 0 3px rgba(255,255,255,0.2);
    }
}

@media (max-width: 480px) {
  .ksg-p-quote {
    margin-top: -12px;
  }
}

.ksg-p-q-top,
.ksg-p-q-bottom {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
}

.ksg-p-q-top {
  top: 10px;
  left: 15px;
}

.ksg-p-q-bottom {
  bottom: 0;
  right: 20px;
}

/* Right Content Section */
.ksg-p-right {
  flex: 1.5;
  min-width: 320px;
  padding: 30px;
  background-color: #ffffff;
}

.ksg-p-tags {
  font-size: 12px;
  letter-spacing: 2px;
  color: #1c9f51;
  font-weight: 400;
  margin-bottom: 25px;
}

.ksg-p-name {
  font-size: 42px;
  color: #1c9f51;
  margin: 0 0 10px 0;
  line-height: 1;
  font-weight: 700;
}

.ksg-p-role {
  color: #d82e26;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-weight: 600;
}

.ksg-p-bio {
  color: #000;
  font-family: 'Plus Jakarta Sans';
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.ksg-p-hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 10px 0;
}

.ksg-p-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #1c9f51;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Expertise Grid */
.ksg-p-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ksg-p-exp-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ksg-p-icon-wrap {
  width: 45px;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.ksg-p-icon-wrap img {
  width: 22px;
}

.ksg-p-exp-item span {
  font-size: 18px;
  font-weight: 500;
  color: #1c9f51;
}

/* Stats Grid */
.ksg-p-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ksg-p-stat-box {
  text-align: center;
}

.ksg-p-stat-box img {
  width: 24px;
  margin-bottom: 15px;
}

.ksg-p-stat-box h4 {
  font-size: 24px;
  color: #1c9f51;
  margin: 0;
  font-weight: 700;
}

.ksg-p-stat-box p {
  font-size: 11px;
  color: #000;
  margin: 5px 0 15px;
}

.ksg-p-line {
  width: 30px;
  height: 3px;
  background-color: #d82e26;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 900px) {
  .ksg-p-inner-flex {
    flex-direction: column;
  }

  .ksg-p-left {
    padding: 40px;
  }

  .ksg-p-right {
    padding: 40px;
  }

  .ksg-p-name {
    font-size: 50px;
  }

  .ksg-p-quote {
    margin-left: 0;
    width: 100%;
  }

  .ksg-p-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}

@media (max-width: 600px) {
  .ksg-p-exp-grid {
    grid-template-columns: 1fr;
  }

  .ksg-p-sidebar {
    display: none;
    /* Hide sidebar on very small screens to save space */
  }
}

/* --- PREMIUM MODERN BUTTON --- */
.ksg-premium-btn {
  display: none;
  /* Desktop hidden */
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  gap: 10px;
  background: #1c9f51;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 159, 81, 0.3);
  margin: 10px auto 20px;
}

.ksg-premium-btn:hover {
  background: #158041;
  transform: translateY(-2px);
}

.btn-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* --- MOBILE LOGIC (THE FIX) --- */
@media (max-width: 900px) {
  .ksg-p-inner-flex {
    flex-direction: column;
  }

  .ksg-p-sidebar {
    display: none;
  }

  .ksg-p-left {
    padding: 20px;
    order: 1;
    /* Image First */
  }

  .ksg-p-right {
    padding: 10px 20px 30px 20px;
    order: 2;
    /* Name/Button Second */
    text-align: center;
  }

  .ksg-p-name {
    font-size: 32px;
  }

  /* Initial hidden state for mobile */
  .ksg-mobile-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  .ksg-premium-btn {
    display: flex;
  }

  /* Expanded state logic */
  .is-expanded .ksg-mobile-reveal {
    max-height: 2000px;
    /* Large enough to fit content */
    opacity: 1;
    margin-top: 20px;
  }

  .is-expanded .ksg-p-quote {
    margin-left: 0;
    margin-top: 20px;
    text-align: left;
  }

  .ksg-p-exp-grid {
    grid-template-columns: 1fr;
    /* Single column to prevent text breaking */
    text-align: left;
  }

  .ksg-p-tags {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .ksg-p-dots {
    display: none;
  }
}

.ksg-p-hr {
  border: none;
  border-top: 1px solid #f60909;
  margin: 15px 0;
}

.ksg-p-label {
  color: #1c9f51;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/*placement new*/
/* main container */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* SECTION (fresh renamed classes) */
.placement-showcase {
  padding: 90px 0 110px;
  background: var(--gradient-header);
  position: relative;
}

/* header area */
.showcase-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(44, 82, 114, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 13px;
}

.main-heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #1c9f51;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.main-heading span {
  background: linear-gradient(84deg, #1c9f51 0%, #ee353a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub-text {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-gray);
  font-weight: 400;
}

/* ========= CAROUSEL CORE ========= */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track-list {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.95, 0.4, 1.05);
  will-change: transform;
}

.member-card {
  flex: 0 0 calc(25% - 21px);
  min-width: 0;
  transition: transform 0.3s ease;
}

/* ---------- CARD STYLES (NO OVERLAY ICONS) ---------- */
.profile-card {
  background: var(--pure-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

/* image wrapper - no overlay icons at all */
.image-frame {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: linear-gradient(145deg, #eef2f6, #e0e7ef);
  overflow: hidden;
}

.member-img {
  width: 100%;
  /* height: 100%;*/
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.profile-card:hover .member-img {
  transform: scale(1.03);
}

/* year badge (only badge, no overlay icon)
.year-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-deep);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', monospace;
  backdrop-filter: blur(2px);
  background: linear-gradient(105deg, #0f2b4d, #2c5282);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
} */

/* info section */
.member-details {
  padding: 20px 18px 24px;
  background: #f4f6f95e;
  flex: 1;
}

.member-name-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.member-fullname {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.3px;
}

.member-initials {
  display: none;
  background: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
  color: var(--primary-soft);
}

.member-designation {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent-gold);
  margin-bottom: 4px;
  display: inline-block;
}

.location-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 8px 0 12px 0;
}

.location-area i {
  font-size: 13px;
  color: var(--primary-soft);
  width: 18px;
}

.placement-indicator {
  margin-top: 16px;
  width: 100%;
  height: 4px;
  background: #e9edf2;
  border-radius: 4px;
  overflow: hidden;
}

.indicator-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(84deg, #1c9f51 0%, #ee353a 100%);
  border-radius: 4px;
  animation: fillWidth 1s ease-out;
}

@keyframes fillWidth {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ========= CAROUSEL CONTROLS ========= */
.nav-buttons-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
}

.nav-circle {
  width: 50px;
  height: 50px;
  background: var(--pure-white);
  border: 1.5px solid var(--primary-soft);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-soft);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.nav-circle i {
  font-size: 22px;
}

.nav-circle:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: white;
  transform: scale(1.07);
}

.counter-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
}

.counter-current-num {
  font-size: 28px;
  font-weight: 800;
  color: #1c9f51;
  min-width: 38px;
  text-align: center;
}

.counter-divider {
  width: 24px;
  height: 2px;
  background: #cbd5e1;
}

.counter-total-num {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-gray);
}

.auto-progress-bar {
  width: 72px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.auto-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-soft), var(--primary-deep));
  animation: slideProgress 5s linear infinite;
}

@keyframes slideProgress {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .counter-item {
    width: 50% !important;
    /* 2 columns */
    flex: unset !important;
    box-sizing: border-box;
    border-right: 1px solid #1c9f51;
    border-bottom: 1px solid #1c9f51;
  }

  /* remove extra borders to match clean grid */
  .counter-item:nth-child(2n) {
    border-right: none !important;
  }

  .counter-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .counter-wrapper {
    gap: 0px;
    /* spacing between items */
    padding: 0px;
    /* optional to prevent border sticking */
    margin: 30px
  }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1200px) {
  .member-card {
    flex: 0 0 calc(33.33% - 19px);
  }

  .main-heading {
    font-size: 44px;
  }
}

@media (max-width: 900px) {
  .member-card {
    flex: 0 0 calc(50% - 20px);
  }

  .placement-showcase {
    padding: 70px 0;
  }

  .main-heading {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .container-wide {
    padding: 0 20px;
  }

  .member-card {
    flex: 0 0 100%;
  }

  .carousel-track-list {
    gap: 20px;
  }

  .main-heading {
    font-size: 30px;
  }

  .nav-circle {
    width: 44px;
    height: 44px;
  }

  .counter-current-num {
    font-size: 24px;
  }

  .counter-divider {
    width: 16px;
  }

  .counter-total-num {
    display: none;
  }

  .auto-progress-bar {
    width: 55px;
  }
}

/* fallback for broken images */
.member-img[onerror] {
  opacity: 0.85;
}

/*homepage courses*/
.apex-education {
  --primary-apex: #1c9f51;
  --deep-apex: #132054;
  --primary-light-apex: #b7c6f0;
  --primary-glow-apex: #8a9be0;
  --accent-gold-apex: #e8c468;
  --white-apex: #ffffff;
  --bg-gradient-apex: linear-gradient(145deg, #fffbf5 0%, #f2f6fd 50%, #fefaf2 100%);
  --text-rich-apex: #1e2a4a;
  --text-soft-apex: #5a6a8a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-gradient-apex);
  position: relative;
  padding: 6rem 2rem;
  /* overflow-x: hidden;*/
  width: 100%;
  box-sizing: border-box;
}

/* ensure no horizontal scroll */
.apex-education * {
  box-sizing: border-box;
}

/* animated background elements */
.apex-ambient-glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94, 111, 181, 0.08) 0%, transparent 70%);
  animation: apexFloatGlow 20s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.apex-ambient-glow-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 104, 0.06) 0%, transparent 70%);
  animation: apexFloatGlow2 24s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes apexFloatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(45px, -35px) scale(1.15);
    opacity: 0.8;
  }
}

@keyframes apexFloatGlow2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-40px, 40px) scale(1.2);
  }
}

/* floating coaching icons background */
.apex-float-icon {
  position: absolute;
  font-size: 1.3rem;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.apex-float-1 {
  top: 15%;
  left: 5%;
}

.apex-float-2 {
  bottom: 20%;
  right: 8%;
}

.apex-float-3 {
  top: 50%;
  right: 3%;
}

.apex-float-4 {
  bottom: 35%;
  left: 8%;
}

/* main container */
.apex-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  width: 100%;
  overflow-x: visible;
}

/* header section */
.apex-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.apex-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(94, 111, 181, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.45rem 1.8rem;
  border-radius: 60px;
  margin-bottom: 1rem;
  border: 1px solid rgba(94, 111, 181, 0.2);
}

.apex-badge i {
  color: var(--primary-apex);
  font-size: 0.8rem;
}

.apex-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-apex);
}

.apex-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  color: var(--deep-apex);
  margin-bottom: 0.6rem;
}

.apex-title .apex-gradient {
  background: linear-gradient(135deg, var(--primary-apex), var(--accent-gold-apex));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.apex-subtitle {
  font-size: 1rem;
  color: var(--text-soft-apex);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 500;
}

/* ========== 2 COLUMN GRID - NO SCROLL ISSUES ========== */
.apex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  width: 100%;
}

/* PROGRAM ITEM - FLOATING DESIGN */
.apex-program {
  position: relative;
  padding: 2rem 2rem 2rem 2.2rem;
  transition: all 0.5s cubic-bezier(0.2, 0.95, 0.4, 1.1);
  cursor: pointer;
  background: transparent;
  overflow-x: visible;
}

.apex-program:hover {
  transform: translateY(-10px);
}

/* ===== CREATIVE COACHING SHAPES ===== */
.apex-shape-cap {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235e6fb5" stroke-width="1.2"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.12;
  transition: all 0.4s;
  pointer-events: none;
}

.apex-program:hover .apex-shape-cap {
  opacity: 0.35;
  transform: scale(1.1) rotate(5deg);
}

.apex-shape-book {
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 42px;
  height: 35px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235e6fb5" stroke-width="1"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  transition: all 0.4s;
  pointer-events: none;
}

.apex-program:hover .apex-shape-book {
  opacity: 0.3;
  transform: translateX(5px);
}

.apex-shape-target {
  position: absolute;
  top: 45%;
  right: 35px;
  width: 32px;
  height: 32px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235e6fb5" stroke-width="1.2"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  transition: all 0.4s;
  pointer-events: none;
}

.apex-program:hover .apex-shape-target {
  opacity: 0.28;
  transform: scale(1.15) rotate(10deg);
}

.apex-shape-trophy {
  position: absolute;
  bottom: 40px;
  right: 25px;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235e6fb5" stroke-width="1.2"><path d="M6 9H4.5a2.5 2.5 0 0 1 0-5H6"/><path d="M18 9h1.5a2.5 2.5 0 0 0 0-5H18"/><path d="M4 22h16"/><path d="M12 15v7"/><path d="M12 15a5 5 0 0 0 5-5V4H7v6a5 5 0 0 0 5 5z"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  transition: all 0.4s;
  pointer-events: none;
}

.apex-program:hover .apex-shape-trophy {
  opacity: 0.3;
  transform: scale(1.1);
}

.apex-shape-board {
  position: absolute;
  top: 30px;
  left: 12px;
  width: 32px;
  height: 26px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235e6fb5" stroke-width="1.2"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  transition: all 0.4s;
  pointer-events: none;
}

.apex-program:hover .apex-shape-board {
  opacity: 0.25;
  transform: translateX(4px);
}

.apex-shape-dots {
  position: absolute;
  bottom: 18px;
  left: 35px;
  display: flex;
  gap: 5px;
  pointer-events: none;
}

.apex-shape-dots span {
  width: 3px;
  height: 3px;
  background: rgba(94, 111, 181, 0.25);
  border-radius: 50%;
  transition: all 0.3s;
}

.apex-program:hover .apex-shape-dots span {
  background: var(--primary-apex);
  transform: scale(1.6);
}

/* icon container */
.apex-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(94, 111, 181, 0.1), rgba(94, 111, 181, 0.03));
  border-radius: 35% 65% 45% 55% / 65% 40% 60% 35%;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
}

.apex-program:hover .apex-icon {
  background: linear-gradient(135deg, var(--primary-apex), var(--primary-glow-apex));
  border-radius: 55% 45% 65% 35% / 40% 60% 35% 65%;
}

.apex-icon i {
  font-size: 2.2rem;
  color: var(--primary-apex);
  transition: all 0.4s;
}

.apex-program:hover .apex-icon i {
  color: white;
  transform: scale(1.12);
}

/* title */
.apex-program-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--deep-apex);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.apex-program-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-apex), var(--accent-gold-apex));
  transition: width 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 3px;
}

.apex-program:hover .apex-program-title::after {
  width: 100%;
}

/* description */
.apex-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft-apex);
  margin-top: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  padding-right: 1rem;
}

/* border accent */
.apex-border-line {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 111, 181, 0.12), transparent);
  transition: all 0.4s;
}

.apex-program:hover .apex-border-line {
  background: linear-gradient(90deg, transparent, var(--primary-light-apex), transparent);
  width: 90%;
  left: 5%;
}

/* responsive design */
@media (max-width: 900px) {
  .apex-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .apex-program {
    padding: 1.5rem;
  }

  .apex-program-title {
    font-size: 1.6rem;
  }

  .apex-shape-cap,
  .apex-shape-book,
  .apex-shape-target,
  .apex-shape-trophy,
  .apex-shape-board {
    transform: scale(0.8);
  }
}

@media (max-width: 550px) {
  .apex-education {
    padding: 3rem 1rem;
  }

  .apex-program-title {
    font-size: 1.4rem;
  }

  .apex-description {
    font-size: 0.85rem;
  }

  .apex-icon {
    width: 60px;
    height: 60px;
  }

  .apex-icon i {
    font-size: 1.6rem;
  }

  .apex-shape-cap,
  .apex-shape-book,
  .apex-shape-target,
  .apex-shape-trophy,
  .apex-shape-board,
  .apex-shape-dots {
    display: none;
  }
}

/* entrance animation */
@keyframes apexFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apex-program {
  animation: apexFadeUp 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
}

.apex-program:nth-child(1) {
  animation-delay: 0.05s;
}

.apex-program:nth-child(2) {
  animation-delay: 0.15s;
}

.apex-program:nth-child(3) {
  animation-delay: 0.25s;
}

.apex-program:nth-child(4) {
  animation-delay: 0.35s;
}

/*rrb*/
.ep-section-wrapper {
  position: relative;
  padding: 50px 0px;
  background-color: #ffffff;
  overflow: hidden;
}

.ep-container {
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ep-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px;
  }
}

.parapadding {
  padding: 0px;
  width: 100%;
}


@media (max-width: 768px) {
  .parapadding {
    padding: 15px;
    width: 64%;
  }
}

/* Header Layout */
.ep-top-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.ep-title-area {
  flex: 1;
  min-width: 300px;
}

/* Subtle Blue/Purple Blob at top left */
.cdf-bg-blob-top {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  /*  background: radial-gradient(circle, rgba(230, 238, 255, 0.8) 0%, transparent 70%); */
  border-radius: 50%;
}

/* Dot Grid Bottom Left */
.cdf-bg-dots-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d1dcf0 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  mask-image: radial-gradient(circle at bottom left, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at bottom left, black, transparent 80%);
}

/* Dot Grid Center Left */
.cdf-bg-dots-center {
  position: absolute;
  top: 45%;
  left: 80px;
  width: 100px;
  height: 60px;
  background-image: radial-gradient(#d1dcf0 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* Wavy Lines Pattern Right */
.cdf-bg-waves-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='800' viewBox='0 0 400 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400 0c-50 50-50 150 0 200s50 150 0 200-50 150 0 200 50 150 0 200M350 0c-50 50-50 150 0 200s50 150 0 200-50 150 0 200 50 150 0 200M300 0c-50 50-50 150 0 200s50 150 0 200-50 150 0 200 50 150 0 200' fill='none' stroke='%23e2e8f0' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 0.6;
}

.ep-badge {
  display: inline-flex;
  align-items: center;
  background: #f0f4ff;
  padding: 6px 15px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.ep-badge-icon {
  background: #d82e26;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-right: 10px;
}

.ep-badge span {
  color: #1c9f51;
  font-weight: 700;
  font-size: 12px;
}

.ep-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin: 0;
}

.ep-accent-title {
  font-size: 42px;
  color: #d82e26;
  font-weight: 700;
  margin-top: 5px;
  position: relative;
  display: inline-block;
}

/* Brush stroke underline */
.ep-accent-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 20"><path d="M5,15 Q250,25 495,15" stroke="%232e5bff" stroke-width="4" fill="transparent" stroke-linecap="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Right Side Text */
.ep-sidebar-area {
  flex: 0 0 600px;
  padding-left: 40px;
  margin-top: 0px;
  border-left: 1px solid #eee;
}

.ep-target-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d82e26;
  margin-bottom: 15px;
}

.ep-sidebar-content p {
  color: #000;
}

/* Stats Section */
.ep-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
}

.ep-stat-card {
  text-align: center;
}

.ep-icon-box {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* The Animated Partial Rings */
.ep-progress-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.ep-ring-path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s ease-out;
}

/* Colors for the icons and rings */
.ep-blue {
  color: #d82e26;
}

.ep-blue .ep-ring-path {
  stroke: #d82e26;
}

.ep-purple {
  color: #8b5cf6;
}

.ep-purple .ep-ring-path {
  stroke: #8b5cf6;
}

.ep-teal {
  color: #14b8a6;
}

.ep-teal .ep-ring-path {
  stroke: #14b8a6;
}

.ep-orange {
  color: #f59e0b;
}

.ep-orange .ep-ring-path {
  stroke: #f59e0b;
}

.ep-number-wrap {
  font-size: 48px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  color: #0d255c;
}

.ep-label {
  font-size: 20px;
  font-family: 'Plus Jakarta Sans';
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
  margin-top: 15px;
}

.ep-line {
  width: 35px;
  height: 3px;
  margin: 0 auto;
  border-radius: 5px;
}

.ep-bg-blue {
  background: #d82e26;
}

.ep-bg-purple {
  background: #8b5cf6;
}

.ep-bg-teal {
  background: #14b8a6;
}

.ep-bg-orange {
  background: #f59e0b;
}

/* WhatsApp Button */
.ep-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 99;
}

@media (max-width: 900px) {
  .ep-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-sidebar-area {
    border-left: none;
    padding-left: 0;
  }
}

.ep-dots-left {
  bottom: 10%;
  left: 2%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 15px 15px;
}

.ep-waves-right {
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: url(https://www.transparenttextures.com/patterns/white-diamond.png);
  mask-image: linear-gradient(to left, black, transparent);
  opacity: 0.1;
}

/*elevate Section*/
/* Section Container */
.cdf-main-section {
  position: relative;
  padding: 80px 0;
  background-color: #f8faff;
  /* Matches the light blue background of the image */
  overflow: hidden;
  text-align: center;
}

.cdf-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

/* Background Decorations */
.cdf-decor-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cdf-decor-cap {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 32px;
  color: #cbd5e1;
  opacity: 0.6;
}

.cdf-decor-trend {
  position: absolute;
  top: 60px;
  right: 40px;
  font-size: 90px;
  color: #e2e8f0;
  opacity: 0.5;
}

.cdf-decor-dots-top {
  position: absolute;
  top: 30px;
  left: 20%;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}

.cdf-decor-circle {
  position: absolute;
  top: 55px;
  left: 25%;
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
}

/* Header */
.cdf-badge-box {
  margin-bottom: 20px;
}

.cdf-badge {
  background: #fff;
  border: 1px solid #e5eefb;
  padding: 8px 20px;
  border-radius: 50px;
  color: #d82e26;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cdf-badge i {
  margin-right: 8px;
  font-size: 10px;
}

.cdf-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: #1c9f50;
  line-height: 1.1;
  margin-bottom: 10px;
}

.cdf-gradient-text {
  background: #d82e26;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cdf-star-sep {
  color: #d82e26;
  margin: 15px 0;
  font-size: 14px;
}

.cdf-hero-desc {
  color: #000;
  font-size: 18px;
  margin-bottom: 60px;
}

/* Grid */
.cdf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-bottom: 30px;
}

/* Individual Card */
.cdf-card {
  background: #fff;
  border-radius: 25px;
  padding-bottom: 50px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.cdf-card:hover {
  transform: translateY(-10px);
}

/* Concave Wave Header on Card */
.cdf-card-top-wave {
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cdf-card-top-wave::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 120px;
  border-radius: 0 0 50% 50%;
  z-index: 1;
}

.cdf-icon-holder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cdf-card {
    padding-bottom: 60px;
  }
}

/* Card Variations */
.cdf-card-blue .cdf-card-top-wave::after {
  background: #eb938f1f;
}

.cdf-card-blue .cdf-icon-holder {
  background: #d82e26;
}

.cdf-card-blue {
  border-bottom-color: #d82e26;
}

.cdf-card-blue .cdf-line-sep {
  background: #d82e26;
}

.cdf-card-purple .cdf-card-top-wave::after {
  background: #6dc18f33;
}

.cdf-card-purple .cdf-icon-holder {
  background: #1c9f50;
}

.cdf-card-purple {
  border-bottom-color: #1c9f50;
}

.cdf-card-purple .cdf-line-sep {
  background: #1c9f50;
}

.cdf-card-indigo .cdf-card-top-wave::after {
  background: #eb938f1f;
}

.cdf-card-indigo .cdf-icon-holder {
  background: #d82e26;
}

.cdf-card-indigo {
  border-bottom-color: #d82e26;
}

.cdf-card-indigo .cdf-line-sep {
  background: #d82e26;
}

.cdf-card-gold .cdf-card-top-wave::after {
  background: #6dc18f33;
}

.cdf-card-gold .cdf-icon-holder {
  background: #1c9f50;
}

.cdf-card-gold {
  border-bottom-color: #1c9f50;
}

.cdf-card-gold .cdf-line-sep {
  background: #1c9f50;
}

.cdf-card-content {
  padding: 25px 25px 0;
}

.cdf-card-label {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #1e293b;
}

.cdf-line-sep {
  width: 40px;
  height: 3px;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.cdf-text-small {
  color: #000;
}

/* Dot Pattern in Card Corner */
.cdf-dots-pattern {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 8px 8px;
}

/* Bottom Button in Card */
.cdf-btn-arrow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #64748b;
  transition: all 0.3s;
  text-decoration: none;
}

.cdf-card:hover .cdf-btn-arrow {
  bottom: 15px;
  color: #d82e26;
}

/* Float Scroll Button */
.cdf-scroll-anchor {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  z-index: 100;
  text-decoration: none;
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .cdf-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .cdf-card-grid {
    grid-template-columns: 1fr;
  }

  .cdf-hero-title {
    font-size: 38px;
  }

  .cdf-btn-arrow {
    bottom: 15px;
  }

  /* Always show on mobile */
  .cdf-decor-trend,
  .cdf-decor-dots-top {
    display: none;
  }
}

/*winners carousel*/
.winnerslider-section {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Background Decorations */
.winnerslider-bg-glow {
  position: absolute;
  top: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(94, 111, 181, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.winnerslider-bg-dots {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#d1d9e6 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 0;
}

/* Header Styling */
.winnerslider-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.winnerslider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f3ff;
  color: #1c9f51;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.winnerslider-main-title {
  font-size: 42px;
  color: #1a202c;
  font-weight: 700;
  margin: 0;
}

.winnerslider-highlight {
  color: #1c9f51;
}

.winnerslider-sub-text {
  color: #000;
  font-size: 18px;
  max-width: 650px;
  margin: 15px auto 0;
  line-height: 1.5;
}

/* Carousel Layout */
.winnerslider-carousel-wrapper {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

@media (max-width: 480px) {
  .winnerslider-carousel-wrapper {
    margin: -25px;
  }
}

.winnerslider-viewport {
  width: 100%;
  overflow: hidden;
  padding: 40px 10px;
}

.winnerslider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* CARD DESIGN: THE FLIP EFFECT */
.winnerslider-card {
  min-width: 270px;
  height: 420px;
  border-radius: 25px;
  position: relative;
  /* The exact perspective and tilt from your image */
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) rotateZ(-1deg);
  box-shadow: 15px 20px 40px rgb(0 0 0 / 6%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.winnerslider-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 4%);
}

/* Background Colors for cards */
.winnerslider-bg-blue {
  background-color: #4a86e8;
}

.winnerslider-bg-cyan {
  background-color: #35b5e5;
}

.winnerslider-bg-teal {
  background-color: #2ab5ad;
}

.winnerslider-bg-purple {
  background-color: #8c82f2;
}

.winnerslider-img-area {
  height: 65%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.winnerslider-img-area img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
}

/* White Info Area */
.winnerslider-info {
  background: #ffffff;
  height: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 35px 35px 0 0;
  padding: 35px 25px 20px;
  text-align: left;
}

/* Small Tag Box */
.winnerslider-tag-box {
  position: absolute;
  top: -18px;
  left: 25px;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1%);
}

.winnerslider-bg-blue .winnerslider-tag-box {
  background: #4a86e8;
}

.winnerslider-bg-cyan .winnerslider-tag-box {
  background: #35b5e5;
}

.winnerslider-bg-teal .winnerslider-tag-box {
  background: #2ab5ad;
}

.winnerslider-bg-purple .winnerslider-tag-box {
  background: #8c82f2;
}

.winnerslider-name {
  margin: 0;
  font-size: 22px;
  color: #1a202c;
  font-weight: 500;
}

.winnerslider-job {
  font-size: 18px;
  font-weight: 400;
  margin: 6px 0 14px;
}

.winnerslider-bg-blue .winnerslider-job {
  color: #d82e26;
}

.winnerslider-bg-cyan .winnerslider-job {
  color: #35b5e5;
}

.winnerslider-bg-teal .winnerslider-job {
  color: #2ab5ad;
}

.winnerslider-bg-purple .winnerslider-job {
  color: #8c82f2;
}

.winnerslider-place {
  font-size: 14px;
  color: #000;
  margin: 0;
  font-weight: 400;
}

/* Navigation Arrows */
.winnerslider-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #1c9f51;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.winnerslider-nav:hover {
  background: #1c9f51;
  color: white;
}

/* Pagination */
.winnerslider-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.winnerslider-dot {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.winnerslider-dot.winnerslider-active {
  width: 25px;
  border-radius: 12px;
  background: #1c9f51;
}

/*new modern header*/
/* 1. TOP BAR STYLING */
/*new modern header*/
/* 1. TOP BAR STYLING */

.stk-edu-top-bar {
  background: #d92e26;
  height: 65px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.stk-edu-top-white-zone {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  flex: 1;
  background: #fff;
  position: relative;
  margin-left: -100vw;
  padding-left: 100vw;
  clip-path: polygon(0 0, 99% 0, 95% 100%, 0 100%);
  z-index: 1;
  overflow: hidden;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .stk-edu-top-white-zone {
    width: 75% !important;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%) !important;
    margin-left: 0 !important;
    padding-left: 10px !important;
  }

}

/* MOBILE */
@media (max-width: 768px) {
  .stk-edu-marquee-content {
    display: block;
  }
}

.stk-edu-top-white-zone::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -34px;
  width: 186px;
  height: 9px;
  /* opacity: 60.2; */
  background: rgb(0 0 0 / 64%);
  transform: rotate(331deg);
  filter: blur(4px);
  z-index: -1;
}

/* MOBILE ONLY */
@media (max-width: 767px) {

  .stk-edu-top-white-zone::before {
    content: "";
    position: absolute;
    top: 14px;
    top: 14px;
    right: -44px;
    width: 110px;
    height: 3px;
    background: rgb(0 0 0 / 45%);
    transform: rotate(302deg);
    filter: blur(3px);
    z-index: -1;
  }
}

.stk-edu-top-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.stk-edu-contact-unit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stk-edu-square-icon {
  background: #d82e26;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.stk-edu-top-texts {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans';
  color: #000 !important;
  line-height: 1.2;
}

.stk-edu-top-divider {
  width: 1px;
  height: 30px;
  background: #ddd;
}

/* MARQUEE */
.stk-edu-marquee-area {
  flex: 1;
  margin: 0 20px;
  overflow: hidden;
}

.stk-edu-marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: stk-edu-marquee-scroll 25s linear infinite;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  font-family: 'Plus Jakarta Sans';
}

@media (max-width: 768px) {

  .stk-edu-marquee-area {
    display: inline-block !important;
    white-space: normal !important;
  }

}

@keyframes stk-edu-marquee-scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.stk-edu-social-strip {
  display: flex;
  gap: 10px;
}

.stk-edu-social-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 768px) {

  .stk-edu-social-circle {
    width: 25px;
    height: 25px;
  }

}

.stk-edu-social-circle:hover {
  background: #fff;
  color: var(--stk-edu-navy);
}

@media (max-width: 768px) {

  .stk-edu-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .stk-edu-top-white-zone {
    flex: 1;
    min-width: 0;
  }

  .stk-edu-marquee-area {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    margin: 0 10px;
  }

  .stk-edu-marquee-content {
    white-space: nowrap;
    font-size: 18px;
    display: inline-block;
  }

  .stk-edu-social-strip {
    flex-shrink: 0;
    display: flex;
    gap: 6px;
  }

  .stk-edu-social-circle {
    width: 25px;
    height: 25px;
  }

}

/* 2. NAVIGATION WRAPPER */
.stk-edu-nav-wrapper {
  height: 100px;
  position: relative;
  z-index: 1000;
}

.stk-edu-nav-card {
  background: #fff;
  width: 98%;
  max-width: 1450px;
  margin: -15px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.stk-edu-nav-card.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0 0 15px 15px;
  z-index: 9999;
  animation: stkEduSlideDown 0.4s ease forwards;
}

@keyframes stkEduSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.stk-edu-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 50px;
  background-image: radial-gradient(#aaa 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.4;
}

.stk-edu-dots-left {
  left: 15px;
}

.stk-edu-dots-right {
  right: 15px;
}

.stk-edu-nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 50px;
  margin-top: 10px;
}

.stk-edu-logo {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  display: flex;
}

.stk-edu-red-italic {
  color: var(--stk-edu-red);
  font-family: 'Plus Jakarta Sans';
}

.stk-edu-green-bold {
  color: var(--stk-edu-green);
  font-family: 'Plus Jakarta Sans';
}

.stk-edu-tagline {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-top: 3px;
}

.stk-edu-nav-list {
  list-style: none;
  display: flex;
  gap: 5px;
}

.stk-edu-nav-item {
  border-radius: 10px;
  padding: 10px 15px;
  transition: 0.3s;
}

.stk-edu-nav-item.active {
  background: #f1f4ff;
  border-bottom: 4px solid var(--stk-edu-navy);
}

/* ACTIVE MENU FIX */
.stk-edu-nav-item a.active {
  background: #f1f4ff;
  border-bottom: 4px solid #1fa64a;
  border-radius: 12px;
  padding: 8px 12px;
}

/* KEEP ICON & TEXT VERTICAL */
.stk-edu-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stk-edu-nav-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stk-edu-nav-item i {
  font-size: 22px;
  color: #d82e26;
}

.stk-edu-nav-item span {
  font-size: 17px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  white-space: nowrap;
}

.stk-edu-touch-btn {
  background: var(--stk-edu-blue-btn);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 35px 12px 15px;
  border-radius: 40px 10px 10px 40px;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 100% 100%, 0 112%);
  transition: 0.3s;
}

.stk-edu-plane-circle {
  background: #fff;
  color: var(--stk-edu-blue-btn);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stk-edu-btn-copy {
  display: flex;
  flex-direction: column;
}

.stk-edu-btn-big {
  font-family: 'Plus Jakarta Sans';
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.stk-edu-btn-small {
  font-size: 11px;
  opacity: 0.9;
  margin-top: 2px;
}

.stk-edu-nav-list {
  list-style: none;
  display: flex;
  gap: 3px;
  padding: 0;
  margin: 0;
}

/* NAVLINK */
.stk-edu-nav-list a {
  text-decoration: none;
}

/* EACH MENU ITEM */
.stk-edu-nav-item {
  border-radius: 14px;
  padding: 12px 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* REMOVE LI DEFAULT */
.stk-edu-nav-item li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ICON */
.stk-edu-nav-item i {
  font-size: 18px;
  color: #d82e26;
  transition: 0.3s;
}

/* TEXT */
.stk-edu-nav-item span {
  font-size: 17px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  white-space: nowrap;
  color: #333;
  transition: 0.3s;
}

/* ACTIVE MENU */
.stk-edu-nav-item.active {
  background: #f2f4fb;
  border-bottom: 4px solid #1fa64a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

/* ACTIVE ICON */
.stk-edu-nav-item.active i {
  color: #d82e26;
}

/* ACTIVE TEXT */
.stk-edu-nav-item.active span {
  color: #222;
}

/* HOVER */
.stk-edu-nav-item:hover {
  background: #f7f8fc;
}

/* HAMBURGER STYLES */
.stk-edu-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.stk-edu-hamburger span {
  width: 30px;
  height: 3px;
  background: var(--stk-edu-navy);
  transition: 0.3s ease-in-out;
}

/* HAMBURGER TO X ANIMATION */
.stk-edu-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.stk-edu-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.stk-edu-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 991px) {
  .stk-edu-top-bar::before {
    width: 90%;
  }

  .stk-edu-top-texts,
  .stk-edu-top-divider {
    display: none;
  }

  /* Hide only text on mobile to save space */
  .stk-edu-marquee-area {
    margin: 0 10px;
    display: block;
  }

  /* Ensure marquee shows */

  .stk-edu-hamburger {
    display: flex;
  }

  .stk-edu-menu-box {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stk-edu-menu-box.active {
    left: 0;
  }

  .stk-edu-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .stk-edu-nav-item span {
    display: block;
    font-size: 24px;
  }

  .stk-edu-nav-item a {
    flex-direction: row;
    gap: 15px;
  }

  .stk-edu-cta-wrap,
  .stk-edu-dots {
    display: none;
  }

  .stk-edu-nav-card {
    width: 95%;
    margin-top: -10px;
  }

  .stk-edu-nav-flex {
    padding: 12px 20px;
  }
}

/*folding banner*/
/* --- Corrected Stacking Banner Section --- */
.stack-section {
  position: relative;
  width: 100%;
  padding: 0px 0;
  /* background-color: #f8f9fa;
  /* Light background to make the white boxes pop */
}

@media (max-width: 768px) {
  .modern-founder-section {
    padding: 0 !important;
  }
}

.stack-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 450px;
  /* Base height for the pinning area */
}

/* Mobile Responsive Only */
@media (max-width: 767px) {

  .stack-container {
    max-width: 100%;
    height: 300px;
    padding: 0 15px;
  }

}

.single-banner-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgb(0 0 0 / 1%);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-img-box {
  width: 100%;
  aspect-ratio: 1200 / 450;
  /* Maintains the exact shape of your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Logic: Banners start below the fold and stack up */
.single-banner-item:not(:first-child) {
  top: 100vh;
  /* Start off-screen */
}

@media (max-width: 768px) {
  .banner-img-box {
    aspect-ratio: 16 / 9;
  }
}

.banner-card-4 {
  z-index: 1;
}

/*video slider*/
/* ===== VIDEO SECTION ===== */
.vinod-sir-hub {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}

.mesh-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.12;
}

.glow-blob {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
}

.blob-red {
  top: -10%;
  left: -5%;
  background: #d82e26;
}

.blob-green {
  bottom: -10%;
  right: -5%;
  background: #1c9f50;
}

.section-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  text-align: center;
  margin-bottom: 40px;
}

.title {
  font-size: clamp(2.2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -1px;
  line-height: 1.2;
}

.title span {
  color: #d82e26;
}

.subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.5;
}

/* Slider */
.video-slider-center {
  padding: 40px 0 80px !important;
}

.video-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: transform 0.4s ease;
}

/* Thumbnail & iframe container */
.thumbnail-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

/* ========================================
   EDU-HOME JOURNEY SECTION - INNOVATIVE MODERN
   ======================================== */

.eh-journey-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #fff9f0 100%);
  overflow: hidden;
}

.eh-journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 159, 81, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: drift 8s ease-in-out infinite;
}

.eh-journey-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(238, 53, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: drift 10s ease-in-out infinite reverse;
}

@keyframes pulse-slow {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.eh-journey-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  align-items: start;
}

.eh-journey-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1c9f51 0%, #ee353a 50%, #C7D31C 100%);
  transform: translateX(-50%);
  z-index: -1;
}

.eh-journey-block {
  position: relative;
  padding: 40px 35px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfe 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideInUp 0.8s ease-out forwards;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.eh-journey-block:nth-child(1) {
  animation-delay: 0.1s;
  border-image: linear-gradient(135deg, #1c9f51, rgba(28, 159, 81, 0.3)) 1;
  grid-column: 1;
}

.eh-journey-block:nth-child(2) {
  animation-delay: 0.2s;
  border-image: linear-gradient(135deg, #ee353a, rgba(238, 53, 58, 0.3)) 1;
  grid-column: 2;
}

.eh-journey-block:nth-child(3) {
  animation-delay: 0.3s;
  border-image: linear-gradient(135deg, #C7D31C, rgba(199, 211, 28, 0.3)) 1;
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

.eh-journey-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(28, 159, 81, 0.03) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 14px;
}

.eh-journey-block:hover::before {
  opacity: 1;
}

.eh-journey-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(28, 159, 81, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.eh-journey-content {
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 60px;
}

.eh-journey-number {
  display: block;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #1c9f51 0%, #ee353a 50%, #C7D31C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 0.9;
  letter-spacing: -2px;
}

.eh-journey-title {
  font-size: 28px;
  font-weight: 800;
  color: #1c9f51;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: color 0.4s ease;
}

.eh-journey-block:nth-child(2) .eh-journey-title {
  color: #ee353a;
}

.eh-journey-block:nth-child(3) .eh-journey-title {
  color: #C7D31C;
}

.eh-journey-text {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.eh-journey-block:hover .eh-journey-text {
  color: #333;
}

.eh-journey-text:last-of-type {
  margin-bottom: 0;
}

.eh-journey-text strong {
  color: #1c9f51;
  font-weight: 700;
}

.eh-journey-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(28, 159, 81, 0.22);
}

.eh-journey-block:hover .eh-journey-icon {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 36px rgba(28, 159, 81, 0.28);
}

.eh-journey-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.eh-journey-block:hover .eh-journey-icon::after {
  opacity: 1;
}

.humble-beginning-icon {
  background: linear-gradient(135deg, #1c9f51 0%, #2db876 50%, #1c9f51 100%);
  box-shadow: 0 12px 32px rgba(28, 159, 81, 0.25);
}

.growth-icon {
  background: linear-gradient(135deg, #ee353a 0%, #f55754 50%, #ee353a 100%);
  box-shadow: 0 12px 32px rgba(238, 53, 58, 0.25);
}

.campus-icon {
  background: linear-gradient(135deg, #C7D31C 0%, #d4e839 50%, #C7D31C 100%);
  box-shadow: 0 12px 32px rgba(199, 211, 28, 0.25);
}

.eh-journey-block:hover .eh-journey-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 20px 48px rgba(28, 159, 81, 0.25);
}

.eh-campus-features-container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eh-campus-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #555;
  font-family: 'Barlow', sans-serif;
  padding: 10px 14px;
  border-left: 3px solid #1c9f51;
  background: linear-gradient(90deg, rgba(28, 159, 81, 0.05) 0%, transparent 100%);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eh-campus-feature:hover {
  color: #1c9f51;
  border-left-color: #ee353a;
  background: linear-gradient(90deg, rgba(28, 159, 81, 0.1) 0%, transparent 100%);
  transform: translateX(6px);
}

.eh-campus-feature i {
  color: #1c9f51;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.eh-campus-feature:hover i {
  color: #C7D31C;
}

.eh-expand-campus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1c9f51 0%, #2db876 100%);
  border: none;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(28, 159, 81, 0.2);
}

.eh-expand-campus-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2db876 0%, #1c9f51 100%);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.eh-expand-campus-btn:hover::before {
  transform: translateX(0);
}

.eh-expand-campus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(28, 159, 81, 0.3);
}

.eh-expand-campus-btn i {
  transition: transform 0.4s ease;
  font-size: 14px;
}

.eh-expand-campus-btn:hover i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .eh-journey-section {
    padding: 80px 0;
  }

  .eh-journey-container {
    grid-template-columns: 1fr;
    gap: 80px 0;
  }

  .eh-journey-container::before {
    left: 20px;
    width: 2px;
  }

  .eh-journey-block {
    padding: 35px 30px;
    margin-left: 50px;
  }

  .eh-journey-block:nth-child(1),
  .eh-journey-block:nth-child(2) {
    grid-column: 1;
  }

  .eh-journey-block:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
    margin-left: 50px;
  }

  .eh-journey-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    left: -50px;
    top: 10px;
  }

  .eh-journey-title {
    font-size: 24px;
  }

  .eh-journey-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .eh-journey-section {
    padding: 60px 0;
  }

  .eh-journey-container {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }

  .eh-journey-container::before {
    left: 15px;
  }

  .eh-journey-block {
    padding: 30px 25px;
    margin-left: 45px;
  }

  .eh-journey-block:nth-child(3) {
    margin-left: 45px;
  }

  .eh-journey-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    left: -42px;
  }

  .eh-journey-title {
    font-size: 20px;
  }

  .eh-journey-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .eh-journey-number {
    font-size: 48px;
  }
}

/* ========================================
   RESPONSIVE DESIGN - VALUES SECTION
   ======================================== */

@media (max-width: 768px) {
  .eh-values-section {
    padding: 100px 0;
  }

  .eh-values-heading {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .eh-values-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .eh-values-grid {
    gap: 35px;
    margin-bottom: 60px;
  }

  .eh-value-card-inner {
    padding: 45px 30px;
  }

  .eh-value-icon {
    width: 95px;
    height: 95px;
    font-size: 42px;
    margin-bottom: 20px;
  }

  .eh-value-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .eh-value-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .eh-journey-summary {
    padding: 45px 35px;
  }

  .eh-summary-text,
  .eh-summary-conclusion {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .eh-values-section {
    padding: 70px 0;
  }

  .eh-values-heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .eh-values-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .eh-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .eh-value-card-inner {
    padding: 35px 20px;
  }

  .eh-value-icon {
    width: 85px;
    height: 85px;
    font-size: 36px;
    margin-bottom: 15px;
  }

  .eh-value-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .eh-value-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .eh-journey-summary {
    padding: 30px 20px;
  }

  .eh-summary-text,
  .eh-summary-conclusion {
    font-size: 14px;
    line-height: 1.6;
  }
}

.eh-journey-title {
  font-size: 26px;
}

.eh-journey-text {
  font-size: 15px;
}

.eh-journey-icon {
  width: 120px;
  height: 120px;
  font-size: 48px;
}
}

/* ========================================
   VALUES SECTION - INNOVATIVE MODERN DESIGN
   ======================================== */

.eh-values-section {
  position: relative;
  padding: 140px 0 120px;
  background: linear-gradient(180deg, #f9fbfe 0%, #f0f4ff 50%, #fef8f0 100%);
  overflow: hidden;
}

.eh-values-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(238, 53, 58, 0.08) 0%, rgba(238, 53, 58, 0.01) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
  animation: pulse-slow 5s ease-in-out infinite;
}

.eh-values-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(28, 159, 81, 0.08) 0%, rgba(28, 159, 81, 0.01) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
  animation: pulse-slow 6s ease-in-out infinite reverse;
}

.eh-values-container {
  position: relative;
  z-index: 1;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.eh-values-heading {
  font-size: 54px;
  font-weight: 900;
  color: #1c9f51;
  text-align: center;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: slideInUp 0.8s ease-out;
}

.eh-values-subtitle {
  font-size: 17px;
  color: #666;
  text-align: center;
  margin-bottom: 70px;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.4px;
  animation: slideInUp 0.9s ease-out;
}

.eh-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

.eh-value-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfe 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  animation: slideInUp 0.8s ease-out forwards;
}

.eh-value-card:nth-child(1) {
  animation-delay: 0.2s;
  border-image: linear-gradient(135deg, #1c9f51, rgba(28, 159, 81, 0.2)) 1;
}

.eh-value-card:nth-child(2) {
  animation-delay: 0.3s;
  border-image: linear-gradient(135deg, #ee353a, rgba(238, 53, 58, 0.2)) 1;
}

.eh-value-card:nth-child(3) {
  animation-delay: 0.4s;
  border-image: linear-gradient(135deg, #C7D31C, rgba(199, 211, 28, 0.2)) 1;
}

.eh-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(28, 159, 81, 0.03) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.eh-value-card:hover::before {
  opacity: 1;
}

.eh-value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(28, 159, 81, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.eh-value-card-inner {
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.eh-value-icon {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 28px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 28px rgba(28, 159, 81, 0.15);
  position: relative;
  overflow: hidden;
}

.mission-icon {
  background: linear-gradient(135deg, #1c9f51 0%, #2db876 50%, #1c9f51 100%);
  color: #ffffff;
}

.vision-icon {
  background: linear-gradient(135deg, #ee353a 0%, #f55754 50%, #ee353a 100%);
  color: #ffffff;
}

.commitment-icon {
  background: linear-gradient(135deg, #C7D31C 0%, #d4e839 50%, #C7D31C 100%);
  color: #ffffff;
}

.eh-value-card:hover .eh-value-icon {
  transform: scale(1.14) rotate(-8deg);
  box-shadow: 0 18px 42px rgba(28, 159, 81, 0.22);
}

.eh-value-title {
  font-size: 26px;
  font-weight: 800;
  color: #1c9f51;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
  transition: color 0.4s ease;
}

.vision-card .eh-value-title {
  color: #ee353a;
}

.commitment-card .eh-value-title {
  color: #C7D31C;
}

.eh-value-description {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-family: 'Barlow', sans-serif;
  transition: color 0.4s ease;
}

.eh-value-card:hover .eh-value-description {
  color: #333;
}

.eh-value-card-border {
  display: none;
}

.eh-journey-summary {
  background: linear-gradient(135deg, #1c9f51 0%, #2db876 50%, #1c9f51 100%);
  border-radius: 16px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 40px rgba(28, 159, 81, 0.2);
  animation: slideInUp 0.9s ease-out;
}

.eh-journey-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.eh-journey-summary:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(28, 159, 81, 0.28);
}

.eh-summary-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eh-summary-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
  margin-bottom: 22px;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.2px;
}

.eh-summary-highlight {
  color: #C7D31C;
  font-weight: 800;
}

.eh-summary-conclusion {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  font-family: 'Barlow', sans-serif;
  margin: 0;
  letter-spacing: 0.2px;
}

/* ========================================
   RESPONSIVE DESIGN - JOURNEY & VALUES
   ======================================== */

@media (max-width: 768px) {
  .eh-journey-section {
    padding: 80px 0;
  }

  .eh-journey-container {
    gap: 40px;
  }

  .eh-journey-block {
    padding: 40px 30px;
    gap: 25px;
  }

  .eh-journey-title {
    font-size: 26px;
  }

  .eh-journey-text {
    font-size: 15px;
  }

  .eh-journey-icon {
    width: 120px;
    height: 120px;
    font-size: 48px;
  }

  .eh-values-section {
    padding: 100px 0;
  }

  .eh-values-heading {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .eh-values-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .eh-values-grid {
    gap: 35px;
    margin-bottom: 60px;
  }

  .eh-value-card-inner {
    padding: 45px 30px;
  }

  .eh-value-icon {
    width: 95px;
    height: 95px;
    font-size: 42px;
    margin-bottom: 20px;
  }

  .eh-value-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .eh-value-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .eh-journey-summary {
    padding: 50px 40px;
  }

  .eh-summary-text,
  .eh-summary-conclusion {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .eh-journey-section {
    padding: 60px 0;
  }

  .eh-journey-container {
    gap: 30px;
  }

  .eh-journey-block {
    flex-direction: column;
    gap: 25px;
    padding: 35px 20px;
  }

  .eh-journey-number {
    font-size: 60px;
  }

  .eh-journey-title {
    font-size: 22px;
  }

  .eh-journey-text {
    font-size: 14px;
  }

  .eh-journey-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .eh-values-section {
    padding: 80px 0;
  }

  .eh-values-heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .eh-values-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .eh-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .eh-value-card-inner {
    padding: 40px 25px;
  }

  .eh-value-icon {
    width: 85px;
    height: 85px;
    font-size: 36px;
    margin-bottom: 15px;
  }

  .eh-value-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .eh-value-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .eh-journey-summary {
    padding: 40px 25px;
  }

  .eh-summary-text,
  .eh-summary-conclusion {
    font-size: 14px;
    line-height: 1.6;
  }
}



.thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  opacity: 0.9;
}

.thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  opacity: 0.9;
}

/* YouTube iframe injected on play */
.thumbnail-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 20;
}

/* Play Button */
.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70px;
  height: 70px;
  background: #d82e26;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(216, 46, 38, 0.4);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 10;
}

.video-item:hover .play-overlay-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #1c9f50;
}

.video-item:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}

/* Card Text */
.video-details {
  padding: 25px;
  text-align: center;
}

.video-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.video-details p {
  color: #1c9f50;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Swiper */
.swiper-slide {
  width: 480px !important;
  transition: 0.5s;
  opacity: 0.5;
}

.swiper-slide-active {
  opacity: 1;
  z-index: 5;
}

.swiper-slide-active .video-item {
  border: 2.5px solid #d82e26;
  transform: scale(1.05);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 10px;
  background: #d82e26;
}

/* CTA */
.cta-box {
  text-align: center;
  margin-top: 20px;
}

.youtube-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.youtube-btn-main:hover {
  background: #d82e26;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .swiper-slide {
    width: 85% !important;
  }

  .video-details h3 {
    font-size: 1.2rem;
  }

  .play-overlay-btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/*new testimonials*/
/* FIX: Ensure sticky positioning works by overriding template overflow */
html,
body,
.page-wrapper,
.eh-stack-wrapper {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* Section Settings */
.eh-stack-wrapper {
  background-color: #f8fafc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0;
  position: relative;
}

.eh-main-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 100px 20px 60px 20px;
  /* Exact 60px bottom space */
  align-items: flex-start;
}

/* Left Side: Sticky Info */
.eh-sticky-info {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: fit-content;
  z-index: 5;
}

.eh-mini-label {
  background: rgba(217, 46, 38, 0.08);
  color: #d92e26;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.eh-hero-text {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  margin: 25px 0;
}

.eh-red-text {
  color: #d92e26;
}

.eh-green-text {
  color: #1c9f51;
}

.eh-sub-para {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 40px;
}

.eh-stats-group {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  padding: 30px;
  border-radius: 24px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.eh-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.eh-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.eh-stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* Right Side: STACKING LOGIC */
.eh-scroll-stream {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eh-stream-node {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding-bottom: 15vh;
  z-index: var(--stack-index);
  align-self: flex-start;
  width: 100%;
}

/* Fix bottom spacing for the last node */
.eh-stream-node:last-child {
  padding-bottom: 0;
}

/* Card Design Restoration */
.eh-node-card {
  background: white;
  padding: 45px;
  border-radius: 32px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02), 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.1s linear, opacity 0.1s linear;
  transform-origin: top center;
}

.eh-node-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.eh-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  padding: 5px;
  border: 2px solid #d92e26;
  background: white;
  z-index: 2;
  flex-shrink: 0;
}

.eh-img-wrapper.eh-border-green {
  border-color: #1c9f51;
}

.eh-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.eh-node-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #d92e26 0%, #e2e8f0 100%);
  margin-top: -5px;
  min-height: 150px;
}

.eh-node-line.eh-line-red {
  background: linear-gradient(to bottom, #1c9f51 0%, #e2e8f0 100%);
}

.eh-rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.eh-stars {
  color: #1c9f51;
  font-size: 18px;
  letter-spacing: 2px;
}

.eh-rating-tag {
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.eh-testimonial-quote {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 25px;
}

.eh-author-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.eh-author-job {
  font-size: 14px;
  color: #64748b;
  margin-top: 5px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .eh-main-grid {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
    /* Ensure 60px on mobile too */
  }

  .eh-sticky-info {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .eh-hero-text {
    font-size: 38px;
  }

  .eh-stream-node {
    grid-template-columns: 60px 1fr;
    gap: 15px;
    top: 20px;
  }

  .eh-node-card {
    padding: 25px;
  }

  .eh-img-wrapper {
    width: 50px;
    height: 50px;
  }
}

/* Ad Popup */
.eh-ad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.eh-ad-overlay.active {
  opacity: 1;
  visibility: visible;
}

.eh-ad-content {
  background: white;
  width: 90%;
  max-width: 450px;
  border-radius: 10px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.eh-ad-overlay.active .eh-ad-content {
  transform: translateY(0) scale(1);
}

.eh-ad-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
  z-index: 10;
}

.eh-ad-close:hover {
  background: #d92e26;
  color: white;
  transform: rotate(90deg);
}

.eh-ad-image {
  width: 100%;
  height: 500px;
  background: url('/assets/img/service/popup.jpeg') center/cover;
  position: relative;
}

.eh-ad-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1c9f51;
  color: white;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eh-ad-body {
  padding: 30px;
  text-align: center;
}

.eh-ad-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.eh-ad-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.eh-ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d92e26;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  width: 100%;
  transition: 0.3s;
}

.eh-ad-btn:hover {
  background: #1c9f51;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 159, 81, 0.3);
  color: white;
}

/*welcome*/
.premium-eduhome-hero {
  position: relative;
  width: calc(100%)
    /*calc(100% - 40px)*/
  ;
  max-width: 1580px;
  margin: 60px auto;
  border-radius: 1px;
  overflow: hidden;

  isolation: isolate;

  background:
    url("../img/gallery/3.jpg") center center/cover no-repeat;

  /* box-shadow: 0 30px 80px rgba(0,0,0,0.18);*/

}

/* PREMIUM OVERLAY */
.premium-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(216, 46, 38, 0.88) 0%,
      rgba(168, 26, 18, 0.82) 45%,
      rgba(15, 15, 15, 0.72) 100%);

  z-index: 1;
}

/* PREMIUM LIGHT EFFECT */
.premium-eduhome-hero::before {
  content: "";

  position: absolute;

  top: -180px;
  right: -140px;

  width: 420px;
  height: 420px;

  background:
    rgba(255, 255, 255, 0.10);

  border-radius: 50%;

  filter: blur(100px);

  z-index: 1;
}

/* BOTTOM GLOW */
.premium-eduhome-hero::after {
  content: "";

  position: absolute;

  bottom: -120px;
  left: 50%;

  transform: translateX(-50%);

  width: 70%;
  height: 180px;

  background:
    rgba(255, 255, 255, 0.08);

  filter: blur(100px);

  z-index: 1;
}

/* GLASS CONTENT BOX */
.premium-hero-content {
  position: relative;
  z-index: 2;

  max-width: 980px;

  margin: auto;

  padding: 60px 60px;

  text-align: center;
}

/* TAG */
.premium-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  border-radius: 100px;

  background:
    rgba(255, 255, 255, 0.10);

  border:
    1px solid rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(14px);

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 28px;
}

/* TITLE */
.premium-hero-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;

  color: #fff;

  margin-bottom: 24px;

  letter-spacing: -1px;

  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22);
}

/* DESCRIPTION */
.premium-hero-content p {
  max-width: 760px;

  margin: auto auto 38px;

  color:
    rgba(255, 255, 255, 0.86);

  font-size: 17px;
  line-height: 1.9;

  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.16);
}

/* BUTTON AREA */
.premium-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;
}

/* BUTTON */
.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;

  padding: 5px 15px;

  border-radius: 100px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: all .35s ease;
}

/* PRIMARY */
.primary-btn {
  background: #fff;
  color: #d82e26;

  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.16);
}

.primary-btn:hover {
  transform: translateY(-5px);

  background: #111;
  color: #fff;
}

/* SECONDARY */
.secondary-btn {
  background:
    rgba(255, 255, 255, 0.10);

  border:
    1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(14px);

  color: #fff;
}

.secondary-btn:hover {
  transform: translateY(-5px);

  background:
    rgba(255, 255, 255, 0.18);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .premium-hero-content {
    padding: 90px 30px;
  }

}

@media (max-width: 767px) {

  .premium-eduhome-hero {
    width: calc(100% - 24px);

    margin: 40px auto;

    border-radius: 26px;
  }

  .premium-hero-content {
    padding: 80px 22px;
  }

  .premium-hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .premium-hero-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .premium-hero-buttons {
    flex-direction: column;
  }

  .premium-btn {
    width: 100%;
  }

}

/*new founder btn*/
/* ===================================
   DESKTOP / LAPTOP ONLY BUTTON
=================================== */

.ksg-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 10px 30px;
  border-radius: 100px;
  background: #1c9f51;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all .35s ease;

}

/* HOVER */
.ksg-about-btn:hover {
  transform: translateY(-4px);
  background: #d92e26;
  /*   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16); */
}

/* HIDE ON MOBILE */
@media (max-width: 767px) {

  .ksg-about-btn {
    display: none;
  }

}

/*About Us new*/
/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ RESET & BASE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.bp-root {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f8f9fc;
  color: #111827;
  overflow: hidden;
  position: relative;
}

.bp-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 50px;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ AMBIENT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.bp-glow-a {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 159, 81, .09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bp-glow-b {
  position: absolute;
  bottom: 0;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 46, 38, .07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ EYEBROW ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d92e26;
  margin-bottom: 18px;
}

.bp-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â
   STORY SECTION
ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
.bp-story {
  position: relative;
  z-index: 1;
  padding: 100px 0px 40px 0px;
}

@media (max-width: 768px) {
  .bp-story {
    padding: 50px 20px;
  }
}

.bp-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .bp-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }
}

/* Left text side */

.bp-story-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #111827;
  margin: 0 0 40px;
}

.bp-story-heading em {
  font-style: normal;
  color: #1c9f51;
}

.bp-story-body {
  margin-bottom: 24px;
}

/* Founders row */
.bp-founders {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.bp-founder-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 12px 22px 12px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.bp-founder-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.bp-founder-pill:first-child .bp-founder-avatar {
  background: #d92e26;
}

.bp-founder-pill:last-child .bp-founder-avatar {
  background: #1c9f51;
}

.bp-founder-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.bp-founder-role {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  max-width: 160px;
}

/* Birth date badge */
.bp-birth {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.bp-birth-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #1c9f51;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bp-birth-date {
  font-size: 15px;
  font-weight: 700;
  color: #1c9f51;
  margin: 0;
}

.bp-birth-sub {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Right image side */
.bp-story-right {
  position: relative;
}

.bp-img-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
  z-index: 2;
}

@media (max-width: 768px) {
  .bp-img-frame {
    height: 320px;
    border-radius: 20px;
  }
}

.bp-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.bp-img-frame:hover img {
  transform: scale(1.04);
}

/* Decorative shape behind image */
.bp-img-deco-green {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 65%;
  height: 65%;
  background: #1c9f51;
  border-radius: 40px;
  z-index: 1;
}

@media (max-width: 768px) {
  .bp-img-deco-green {
    display: none !important;
    visibility: hidden;
    opacity: 0;
  }
}

.bp-img-deco-red {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  height: 45%;
  background: #d92e26;
  border-radius: 40px;
  z-index: 1;
}

@media (max-width: 768px) {
  .bp-img-deco-red {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40%;
    height: 40%;
    background: #d92e26;
    border-radius: 20px;
    z-index: 1;
  }
}

/* Floating quote */
.bp-quote-float {
  position: absolute;
  bottom: 32px;
  right: -36px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  max-width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
  z-index: 4;
  border-left: 4px solid #1c9f51;
}

@media (max-width: 768px) {
  .bp-quote-float {
    position: relative;
    margin-top: 20px;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.bp-quote-float i {
  color: #d92e26;
  font-size: 20px;
  margin-bottom: 10px;
}

.bp-quote-float p {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
  line-height: 1.5;
}

.bp-quote-float span {
  font-size: 11px;
  font-weight: 700;
  color: #1c9f51;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â
   JOURNEY / REST OF STORY
ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
.bp-journey {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.bp-journey-heading {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111827;
  margin-bottom: 60px;
  line-height: 1.1;
}

.bp-journey-heading em {
  font-style: normal;
  color: #1c9f51;
}

/* Horizontal scroll story strip */
.bp-journey-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bp-journey-card {
  background: #fff;
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
  border: 1px solid #f0f0f5;
  transition: transform .35s ease, box-shadow .35s ease;
}

.bp-journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .08);
}

.bp-jcard-num {
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -6px;
  color: rgba(17, 24, 39, .04);
  position: absolute;
  top: -20px;
  right: -10px;
  line-height: 1;
  user-select: none;
}

.bp-jcard-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 28px;
}

.bp-journey-card:nth-child(1) .bp-jcard-icon {
  background: #1c9f51;
}

.bp-journey-card:nth-child(2) .bp-jcard-icon {
  background: #d92e26;
}

.bp-journey-card:nth-child(3) .bp-jcard-icon {
  background: #111827;
}

.bp-jcard-year {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.bp-jcard-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4b5563;
  position: relative;
  z-index: 2;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ EXPAND / READ MORE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.bp-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
}

.bp-expand-content.open {
  max-height: 800px;
  opacity: 1;
}

.bp-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid #1c9f51;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1c9f51;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.bp-read-more-btn:hover {
  background: #1c9f51;
  color: #fff;
}

.bp-read-more-btn .btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1c9f51;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.3s ease, transform 0.4s ease;
}

.bp-read-more-btn:hover .btn-icon {
  background: #fff;
  color: #1c9f51;
}

.bp-read-more-btn.active .btn-icon {
  transform: rotate(180deg);
}



/* =========================================================
MISSION SECTION
========================================================= */

.eh-mission-section {
  width: 100%;
  /*  padding:80px 0;*/
  overflow: hidden;
  position: relative;
}

/* =========================================================
MAIN STRIP
========================================================= */

.eh-mission-strip {
  position: relative;
  width: 100%;
  min-height: 420px;

  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;

  overflow: hidden;

  background:
    url('https://affinityopus.com/eduhome/assets/img/gallery/3.jpg') center center/cover no-repeat;
}

/* =========================================================
OVERLAY
========================================================= */

.eh-mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(217 46 38) 0%, rgb(217 46 38) 45%, rgb(217 46 38) 100%);
  z-index: 1;
}

/* =========================================================
GLOW EFFECTS
========================================================= */

.eh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.eh-glow-one {
  width: 320px;
  height: 320px;
  background: ;
  top: -100px;
  right: -80px;
}

.eh-glow-two {
  width: 260px;
  height: 260px;
  background: rgba(217, 46, 38, 0.18);
  bottom: -120px;
  left: -100px;
}

/* =========================================================
CONTENT
========================================================= */

.eh-mission-left,
.eh-mission-card {
  position: relative;
  z-index: 3;
  padding: 60px 50px;
}

/* =========================================================
LEFT SECTION
========================================================= */

.eh-mission-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
ICON CENTER
========================================================= */

.eh-vision-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 35px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.eh-vision-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.18);

  animation: rippleMission 3s linear infinite;
}

@keyframes rippleMission {

  0% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }

}

.eh-vision-icon {
  width: 70px;
  height: 70px;

  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  color: #fff;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.04));

  border:
    1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(16px);

  position: relative;

  transition: .4s ease;
}

.eh-vision-icon:hover {
  transform: translateY(-8px) rotate(-6deg);
}

/* =========================================================
TEXT
========================================================= */

.eh-mission-tag {
  display: inline-flex;
  width: max-content;

  padding: 10px 18px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #9ff7bf;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.eh-mission-left h3 {
  font-size: 42px;
  line-height: 1.04;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.eh-mission-left p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

/* =========================================================
MISSION CARDS
========================================================= */

.eh-mission-card {

  border-left:
    2px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  transition: .4s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
}

.eh-mission-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.eh-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 26px;
}

.eh-mission-icon {
  width: 65px;
  height: 65px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.04));

  border:
    1px solid rgba(255, 255, 255, 0.08);

  color: #fff;
  font-size: 28px;

  transition: .4s ease;
}

.eh-mission-card:hover .eh-mission-icon {
  transform: translateY(-6px);
}

.eh-card-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
}

.eh-mission-card h4 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 800;
}

.eh-mission-card p {
  color: #fff;
  margin: 0;
}

.eh-card-hover-line {
  width: 0;
  height: 4px;

  border-radius: 100px;

  /* background:
    linear-gradient(
    90deg,
    #1c9f51,
    #d92e26
    );*/

  margin-top: 30px;

  transition: .5s ease;
}

.eh-mission-card:hover .eh-card-hover-line {
  width: 100%;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .eh-mission-strip {
    grid-template-columns: 1fr;
  }

  .eh-mission-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

}

@media(max-width:768px) {

  .eh-mission-left,
  .eh-mission-card {
    padding: 50px 26px;
  }

  .eh-mission-left h3 {
    font-size: 38px;
  }

  .eh-vision-icon-wrap {
    margin: auto auto 30px;
  }

  .eh-mission-left {
    text-align: center;
    align-items: center;
  }

}

/*home gallery*/
.eh-results-section {
  padding: 110px 40px;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #fefaf5 0%, #fff9f2 100%);
}

.eh-results-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* ====================================
LEFT CONTENT
==================================== */

.eh-results-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ffffff;
  color: #d92e26;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(217, 46, 38, 0.08);
}

.eh-results-content h2 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.eh-results-content h2 span {
  color: #d92e26;
}

.eh-results-content p {
  color: #7b3c38;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ====================================
BUTTON
==================================== */

.eh-results-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  background: #1c9f51;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: 0.4s ease;
}

.eh-results-btn:hover {
  transform: translateY(-6px);
  color: #fff;
  background: #d92e26;
}

.eh-results-btn i {
  transition: 0.4s ease;
}

.eh-results-btn:hover i {
  transform: translateX(5px);
}

/* ====================================
GALLERY SLIDER
==================================== */

.eh-gallery-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.eh-gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: center;
  background: #fef9f4;
  animation: ehGalleryMove 60s linear infinite;
}

@keyframes ehGalleryMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ====================================
IMAGE ITEM
==================================== */

.eh-gallery-item {
  width: 260px;
  height: 360px;
  /* SAME HEIGHT FOR ALL */
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.10);

  transition: 0.45s ease;

  background: #fff;
}

/* REMOVE DIFFERENT HEIGHT EFFECT */
.eh-gallery-item:nth-child(2),
.eh-gallery-item:nth-child(5) {
  margin-top: 0;
}

.eh-gallery-item:hover {
  transform: translateY(-12px);
}

.eh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.eh-gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */

.eh-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.20),
      transparent 45%);

  pointer-events: none;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:1200px) {

  .eh-results-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .eh-results-content {
    text-align: center;
  }

  .eh-results-content h2 {
    font-size: 54px;
  }
}

@media(max-width:768px) {

  .eh-results-section {
    padding: 80px 20px;
  }

  .eh-results-content h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .eh-results-content p {
    font-size: 18px;
  }

  .eh-gallery-item {
    width: 210px;
    height: 300px;
    /* SAME MOBILE HEIGHT */
    border-radius: 24px;
  }

  .eh-gallery-item:nth-child(2),
  .eh-gallery-item:nth-child(5) {
    margin-top: 0;
  }
}

/*new specialities*/
.sp-circle-section {
  position: relative;
  overflow: hidden;
  padding: 70px 20px;
  background: #f6f7f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sp-circle-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
}

.sp-circle-container {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: auto;
}

/* ===================================================
HEADING
=================================================== */

.sp-circle-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sp-circle-badge {
  display: inline-flex;
  padding: 12px 28px;
  border-radius: 100px;
  background: #d92e26;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.sp-circle-heading h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  color: #111;
}

.sp-circle-heading p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

/* ===================================================
ORBIT AREA
=================================================== */

.sp-orbit-area {
  position: relative;
  width: 100%;
  height: 1100px;
}

/* ===================================================
CENTER ORBIT
=================================================== */

.sp-main-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-main-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .06);
}

.sp-ring-small {
  width: 82%;
  height: 82%;
}

.sp-rotate-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.sp-red-ring {
  width: 92%;
  height: 92%;
  border-top-color: #d92e26;
  border-bottom-color: #d92e26;
  animation: spSpin 14s linear infinite;
}

.sp-green-ring {
  width: 72%;
  height: 72%;
  border-left-color: #1c9f51;
  border-right-color: #1c9f51;
  animation: spSpinReverse 10s linear infinite;
}

/* ===================================================
FLOATING DOTS
=================================================== */

.sp-float-dot {
  position: absolute;
  border-radius: 50%;
  animation: spFloat 6s infinite ease-in-out;
}

.sp-dot-1 {
  width: 16px;
  height: 16px;
  background: #d92e26;
  top: 12%;
  left: 22%;
}

.sp-dot-2 {
  width: 12px;
  height: 12px;
  background: #1c9f51;
  top: 24%;
  right: 16%;
}

.sp-dot-3 {
  width: 14px;
  height: 14px;
  background: #d92e26;
  bottom: 18%;
  left: 18%;
}

.sp-dot-4 {
  width: 12px;
  height: 12px;
  background: #1c9f51;
  bottom: 12%;
  right: 22%;
}

/* ===================================================
CENTER CORE
=================================================== */

.sp-orbit-core {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: spCoreFloat 6s infinite ease-in-out;
}

.sp-core-bg {
  position: absolute;
  width: 180%;
  height: 180%;
  background:
    conic-gradient(rgba(217, 46, 38, .06),
      transparent,
      rgba(28, 159, 81, .06));
  animation: spSpin 14s linear infinite;
}

.sp-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  z-index: 2;
}

.sp-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0, 0, 0, .08);
  animation: spSpin 16s linear infinite;
}

.sp-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #d92e26;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.sp-orbit-core h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #111;
}

.sp-core-line {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 4px;
  border-radius: 100px;
  background: #d92e26;
  margin: 18px 0;
}

.sp-orbit-core span {
  position: relative;
  z-index: 2;
  color: #666;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ===================================================
CARDS
=================================================== */

.sp-info-card {
  position: absolute;
  width: 240px;
}

.sp-card-inner {
  position: relative;
  width: 100%;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
  text-align: center;
  transition: .4s ease;
}

.sp-card-inner:hover {
  transform: translateY(-10px);
}

.sp-red-card .sp-card-inner {
  border-top: 4px solid #d92e26;
}

.sp-green-card .sp-card-inner {
  border-top: 4px solid #1c9f51;
}

.sp-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.sp-red-card .sp-card-icon {
  color: #d92e26;
}

.sp-green-card .sp-card-icon {
  color: #1c9f51;
}

.sp-card-inner p {
  margin: 0;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  font-family: 'Barlow' !important;
}

/* ===================================================
CARD POSITIONS
=================================================== */

.sp-top-card {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sp-bottom-card {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* LEFT SIDE */

.sp-left-top {
  top: 11%;
  left: 60px;
}

.sp-left-center {
  top: 48%;
  left: 20px;
  transform: translateY(-50%);
}

.sp-left-bottom {
  bottom: 18%;
  left: 60px;
}

/* RIGHT SIDE */

.sp-right-top {
  top: 9%;
  right: 60px;
}

.sp-right-center {
  top: 51%;
  right: 20px;
  transform: translateY(-50%);
}

.sp-right-bottom {
  bottom: 14%;
  right: 60px;
}

.custom-buddha-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.custom-card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ===================================================
RESPONSIVE CARD BELOW ORBIT
=================================================== */

.sp-responsive-card {
  display: none;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.sp-responsive-card .sp-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.sp-responsive-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Show on tablet and smaller */
@media(max-width:1100px) {
  .sp-responsive-card {
    display: block;
    margin-top: 24px;
  }
}

/* ===================================================
CONNECTOR LINES
=================================================== */

.sp-connector {
  position: absolute;
}

/* HORIZONTAL */

.sp-horizontal-line {
  width: 130px;
  height: 2px;
}

/* VERTICAL */

.sp-vertical-line {
  width: 2px;
  height: 130px;
}

/* LEFT */

.sp-left-top .sp-connector,
.sp-left-center .sp-connector,
.sp-left-bottom .sp-connector {
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(to right,
      rgba(217, 46, 38, .95),
      rgba(217, 46, 38, .08));
}

/* RIGHT */

.sp-right-top .sp-connector,
.sp-right-center .sp-connector,
.sp-right-bottom .sp-connector {
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(to left,
      rgba(28, 159, 81, .95),
      rgba(28, 159, 81, .08));
}

/* TOP */

.sp-top-card .sp-connector {
  left: 50%;
  transform: translateX(-50%);
  bottom: -130px;
  background:
    linear-gradient(to bottom,
      rgba(217, 46, 38, .95),
      rgba(217, 46, 38, .08));
}

/* BOTTOM */

.sp-bottom-card .sp-connector {
  left: 50%;
  transform: translateX(-50%);
  top: -130px;
  background:
    linear-gradient(to top,
      rgba(28, 159, 81, .95),
      rgba(28, 159, 81, .08));
}

/* ===================================================
CONNECTOR DOTS
=================================================== */

.sp-connector::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* LEFT DOT */

.sp-left-top .sp-connector::after,
.sp-left-center .sp-connector::after,
.sp-left-bottom .sp-connector::after {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  background: #d92e26;
  box-shadow: 0 0 16px rgba(217, 46, 38, .5);
}

/* RIGHT DOT */

.sp-right-top .sp-connector::after,
.sp-right-center .sp-connector::after,
.sp-right-bottom .sp-connector::after {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  background: #1c9f51;
  box-shadow: 0 0 16px rgba(28, 159, 81, .5);
}

/* TOP DOT */

.sp-top-card .sp-connector::after {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #d92e26;
  box-shadow: 0 0 16px rgba(217, 46, 38, .5);
}

/* BOTTOM DOT */

.sp-bottom-card .sp-connector::after {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c9f51;
  box-shadow: 0 0 16px rgba(28, 159, 81, .5);
}

/* ===================================================
ANIMATION
=================================================== */

@keyframes spSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes spFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes spCoreFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===================================================
TABLET
=================================================== */

@media(max-width:1100px) {

  .sp-orbit-area {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .sp-main-orbit {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 520px;
    height: 520px;
    margin-bottom: 20px;
  }

  .sp-info-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
  }

  .sp-connector {
    display: none;
  }

}

/* ===================================================
MOBILE
=================================================== */

@media(max-width:768px) {

  .sp-circle-section {
    padding: 80px 16px;
  }

  .sp-circle-heading {
    margin-bottom: 60px;
  }

  .sp-circle-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .sp-circle-heading p {
    font-size: 15px;
    line-height: 1.8;
  }

  .sp-main-orbit {
    width: 100%;
    max-width: 390px;
    height: 390px;
  }

  .sp-orbit-core {
    width: 220px;
    height: 220px;
  }

  .sp-orbit-core h3 {
    font-size: 30px;
  }

  .sp-orbit-core span {
    font-size: 11px;
    text-align: center;
    padding: 0 20px;
  }

  .sp-logo-wrap {
    width: 90px;
    height: 90px;
  }

  .sp-logo-circle {
    width: 66px;
    height: 66px;
    font-size: 24px;
  }

  .sp-card-inner {
    padding: 20px;
    border-radius: 24px;
  }

  .sp-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
  }

}

/* ===================================================
SMALL MOBILE
=================================================== */

@media(max-width:480px) {

  .sp-main-orbit {
    max-width: 330px;
    height: 330px;
  }

  .sp-orbit-core {
    width: 190px;
    height: 190px;
  }

  .sp-orbit-core h3 {
    font-size: 24px;
  }

  .sp-orbit-core span {
    font-size: 10px;
  }

  .sp-logo-wrap {
    width: 74px;
    height: 74px;
  }

  .sp-logo-circle {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .sp-card-inner {
    padding: 18px;
  }

  .sp-card-inner p {
    font-family: 'Barlow' !important;
    font-size: 14px;
  }

}

.sp-logo-title {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  line-height: 1;
  letter-spacing: -1px;
  /* removes extra gap */
}

/* RED TEXT */
.sp-logo-title .sp-logo-red {
  color: #d92e26 !important;
  font-size: 35px !important;
  font-weight: 800 !important;
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
}

/* GREEN TEXT */
.sp-logo-title .sp-logo-green {
  color: #1c9f51 !important;
  font-size: 35px !important;
  font-weight: 800 !important;
  display: inline-block;
  margin: 0 0 0 2px !important;
  /* very small spacing */
  padding: 0 !important;
}

/* TABLET */
@media(max-width:768px) {

  .sp-logo-title {
    letter-spacing: -0.5px;
  }

  .sp-logo-title .sp-logo-red,
  .sp-logo-title .sp-logo-green {
    font-size: 28px !important;
  }

}

/* MOBILE */
@media(max-width:480px) {

  .sp-logo-title {
    letter-spacing: 0;
  }

  .sp-logo-title .sp-logo-red,
  .sp-logo-title .sp-logo-green {
    font-size: 24px !important;
  }

  .sp-logo-title .sp-logo-green {
    margin-left: 1px !important;
  }

}

/*contact page*/
/* ====================================
MAIN BOX
==================================== */

.eh-main-contact-box {
  width: 100%;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
  height: 530px;
}

@media (max-width: 767px) {
  .eh-main-contact-box {
    height: 350px;
  }
}

.eh-main-contact-box {
  background-image: url('/assets/img/ct-bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 945px;
}

@media only screen and (max-width: 767px) {
  .eh-main-contact-box {
    background-size: 625px !important;
  }
}

/* ====================================
TITLE
==================================== */

.eh-main-title {
  margin-bottom: 28px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.eh-red {
  color: #d92e26;
}

.eh-green {
  color: #1c9f51;
  margin-left: 2px;
}

/* ====================================
ROWS
==================================== */

.eh-contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: .3s ease;
}

.eh-contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.eh-contact-row:hover {
  transform: translateX(6px);
}

/* ====================================
ICON
==================================== */

.eh-row-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.eh-red-bg {
  background: #d92e26;
}

.eh-green-bg {
  background: #1c9f51;
}

/* ====================================
TEXT
==================================== */

.eh-row-content {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  word-break: break-word;
}

.eh-phone-text {
  white-space: nowrap;
}

/* ====================================
TABLET
==================================== */

@media(max-width:768px) {

  .eh-main-contact-box {
    padding: 26px;
    border-radius: 26px;
  }

  .eh-main-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .eh-contact-row {
    gap: 14px;
    padding: 16px 0;
  }

  .eh-row-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
    border-radius: 16px;
  }

  .eh-row-content {
    font-size: 14px;
    line-height: 1.7;
  }

}

/* ====================================
MOBILE
==================================== */

@media(max-width:480px) {

  .eh-main-contact-box {
    padding: 22px;
    border-radius: 22px;
  }

  .eh-main-title {
    font-size: 28px;
  }

  .eh-contact-row {
    align-items: flex-start;
    gap: 12px;
  }

  .eh-row-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 17px;
    border-radius: 14px;
  }

  .eh-row-content {
    font-size: 13px;
    line-height: 1.7;
  }

  .eh-phone-text {
    white-space: normal;
  }

}

.eh-phone-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.eh-phone-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .3s ease;
}

.eh-phone-link:hover {
  color: #1c9f51;
}

.eh-divider {
  color: #999;
  font-weight: 500;
}

/* MOBILE */

@media(max-width:480px) {

  .eh-phone-wrap {
    gap: 6px;
  }

  .eh-phone-link {
    font-size: 13px;
  }

}

/*course offered ibps*/
/* =========================================
HERO SECTION
========================================= */

.ehx-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 70px 40px;
  border-radius: 36px;
  background:
    linear-gradient(135deg,
      rgba(0, 0, 0, .70),
      rgba(0, 0, 0, .45)),
    url('../img/gallery/3.jpg') center/cover no-repeat;
}

/* =========================================
OVERLAY
========================================= */

.ehx-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(216, 46, 38, 0.88) 0%,
      rgba(168, 26, 18, 0.82) 45%,
      rgba(15, 15, 15, 0.72) 100%);
  z-index: 1;
}

/* =========================================
CONTENT
========================================= */

.ehx-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* =========================================
HEADING
========================================= */

.ehx-hero-content h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
}

/* =========================================
BUTTONS
========================================= */

.ehx-hero-btns {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* =========================================
BUTTON
========================================= */

.ehx-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 60px;
  padding: 0 34px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .35s ease;
  overflow: hidden;
}

/* PRIMARY */

.ehx-primary-btn {
  background: #d92e26;
  color: #fff;
  box-shadow: 0 15px 35px rgba(217, 46, 38, .28);
}

.ehx-primary-btn:hover {
  transform: translateY(-5px);
  background: #bf251e;
}

/* SECONDARY */

.ehx-secondary-btn {
  background: #1c9f51;
  color: #fff;
  box-shadow: 0 15px 35px rgba(28, 159, 81, .25);
}

.ehx-secondary-btn:hover {
  transform: translateY(-5px);
  background: #178244;
}

/* =========================================
TABLET
========================================= */

@media(max-width:768px) {

  .ehx-hero-section {
    padding: 100px 24px;
    border-radius: 28px;
  }

  .ehx-hero-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .ehx-hero-btns {
    margin-top: 34px;
    gap: 14px;
  }

  .ehx-btn {
    min-width: 160px;
    height: 56px;
    font-size: 14px;
    border-radius: 16px;
  }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:480px) {

  .ehx-hero-section {
    padding: 80px 18px;
    border-radius: 22px;
  }

  .ehx-hero-content h2 {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .ehx-hero-btns {
    flex-direction: column;
    width: 100%;
    margin-top: 28px;
  }

  .ehx-btn {
    width: 100%;
    min-width: 100%;
    height: 54px;
    border-radius: 14px;
    font-size: 14px;
  }

}

.eh-wrapper {
  font-family: var(--eh-font);
  background: var(--eh-bg);
  overflow-x: hidden;
  color: var(--eh-ink);
}

:root {
  --eh-red: #d82e26;
  --eh-green: #1c9f51;
  --eh-red-light: rgba(216, 46, 38, 0.08);
  --eh-green-light: rgba(28, 159, 81, 0.08);
  --eh-red-mid: rgba(216, 46, 38, 0.18);
  --eh-green-mid: rgba(28, 159, 81, 0.18);
  --eh-ink: #111827;
  --eh-ink-mid: #374151;
  --eh-ink-soft: #6B7280;
  --eh-bg: #ffffff;
  --eh-bg-warm: #fafafa;
  --eh-bg-tint: #f5f5f0;
  --eh-border: rgba(0, 0, 0, 0.07);
  --eh-heading: 40px;
  --eh-text: 18px;
  --eh-font: 'Plus Jakarta Sans', sans-serif;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ HERO ORIGIN ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.eh-origin {
  position: relative;
  padding: 110px 0 90px;
  background: var(--eh-bg-warm);
  overflow: hidden;
}

.eh-origin-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.eh-origin-bg-circle.one {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(216, 46, 38, 0.06) 0%, transparent 70%);
}

.eh-origin-bg-circle.two {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(28, 159, 81, 0.07) 0%, transparent 70%);
}

.eh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.eh-origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eh-eyebrow-red {
  color: var(--eh-red);
}

.eh-eyebrow-green {
  color: var(--eh-green);
}

.eh-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.eh-eyebrow-dot-red {
  background: var(--eh-red);
}

.eh-eyebrow-dot-green {
  background: var(--eh-green);
}

.eh-h2 {
  font-size: var(--eh-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--eh-ink);
  margin: 0 0 22px;
}

.eh-h2 em {
  font-style: normal;
  color: var(--eh-red);
}

.eh-h2-green em {
  color: var(--eh-green);
}

.eh-body {
  margin: 0 0 18px;
}

/* stat pillars */
.eh-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.eh-stat-pill {
  flex: 1;
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eh-stat-pill.red-pill {
  background: var(--eh-red-light);
  border: 1px solid rgba(216, 46, 38, 0.15);
}

.eh-stat-pill.green-pill {
  background: var(--eh-green-light);
  border: 1px solid rgba(28, 159, 81, 0.15);
}

.eh-stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.eh-stat-num.red {
  color: var(--eh-red);
}

.eh-stat-num.green {
  color: var(--eh-green);
}

.eh-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--eh-ink-soft);
  margin-top: 5px;
  display: block;
  letter-spacing: 0.02em;
}

/* right side ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â timeline strip */
.eh-timeline-strip {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eh-timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 36px 0;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.eh-timeline-item.eh-visible {
  opacity: 1;
  transform: translateX(0);
}

.eh-timeline-item:last-child {
  padding-bottom: 0;
}

.eh-timeline-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.eh-timeline-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
}

.eh-timeline-node.red {
  background: var(--eh-red);
}

.eh-timeline-node.green {
  background: var(--eh-green);
}

.eh-timeline-node.mixed {
  background: linear-gradient(135deg, var(--eh-red) 0%, var(--eh-green) 100%);
}

.eh-timeline-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, var(--eh-red-mid), var(--eh-green-mid));
  margin-top: 6px;
}

.eh-timeline-body {
  padding-top: 8px;
  flex: 1;
}

.eh-timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--eh-ink);
  margin: 0 0 6px;
}

.eh-timeline-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--eh-ink-mid);
  margin: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ CAMPUS SECTION ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.eh-campus {
  padding: 100px 0;
  background: var(--eh-bg);
  position: relative;
  overflow: hidden;
}

.eh-campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* campus feature list */
.eh-feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eh-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.eh-feature-icon {
  width: 28px;
  color:#d82e26;
  height: 28px;
  border-radius: 8px;
  background: var(--eh-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.eh-feature-icon svg {
  width: 14px;
  height: 14px;
}

/* right ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â campus visual mosaic */
.eh-campus-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.eh-mosaic-tile {
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.eh-mosaic-tile.eh-visible {
  opacity: 1;
  transform: translateY(0);
}

.eh-mosaic-tile.span2 {
  grid-column: span 2;
}

.eh-mosaic-tile.red-tile {
  background: var(--eh-red);
  color: #fff;
}

.eh-mosaic-tile.green-tile {
  background: var(--eh-green);
  color: #fff;
}

.eh-mosaic-tile.outline-red {
  border: 2px solid rgba(216, 46, 38, 0.2);
  background: var(--eh-red-light);
}

.eh-mosaic-tile.outline-green {
  border: 2px solid rgba(28, 159, 81, 0.2);
  background: var(--eh-green-light);
}

.eh-mosaic-tile.light-warm {
  background: var(--eh-bg-tint);
  border: 1px solid var(--eh-border);
}

.eh-mosaic-big-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.eh-mosaic-big-num.white {
  color: #fff;
}

.eh-mosaic-big-num.red {
  color: var(--eh-red);
}

.eh-mosaic-big-num.green {
  color: var(--eh-green);
}

.eh-mosaic-caption {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.eh-mosaic-caption.dark {
  color: var(--eh-ink-mid);
  opacity: 1;
}

.eh-mosaic-icon-big {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

/* tile bg decoration */
.eh-tile-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: -30px;
  opacity: 0.15;
  background: #fff;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ MVV SECTION ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.eh-mvv {
  padding: 100px 0;
  background: var(--eh-bg-warm);
  position: relative;
  overflow: hidden;
}

.eh-mvv-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.eh-mvv-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.eh-mvv-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(to right, var(--eh-red), var(--eh-green));
  z-index: 0;
}

.eh-mvv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.eh-mvv-item.eh-visible {
  opacity: 1;
  transform: translateY(0);
}

.eh-mvv-orb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.eh-mvv-orb.mission {
  background: var(--eh-red);
  box-shadow: 0 0 0 8px var(--eh-red-light);
}

.eh-mvv-orb.vision {
  background: linear-gradient(135deg, var(--eh-red) 0%, var(--eh-green) 100%);
  box-shadow: 0 0 0 8px rgba(28, 159, 81, 0.1);
}

.eh-mvv-orb.commit {
  background: var(--eh-green);
  box-shadow: 0 0 0 8px var(--eh-green-light);
}

.eh-mvv-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--eh-ink);
  margin: 0 0 14px;
}

.eh-mvv-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--eh-ink-mid);
  margin: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ CLOSING BANNER ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.eh-closing {
  padding: 100px 0;
  background: var(--eh-bg);
  position: relative;
  overflow: hidden;
}

.eh-closing-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.eh-closing-quote {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--eh-ink);
  margin: 0 0 28px;
}

.eh-closing-quote span.rw {
  color: var(--eh-red);
}

.eh-closing-quote span.gw {
  color: var(--eh-green);
}

.eh-closing-sub {
  margin: 0 0 48px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.eh-tag-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.eh-tag {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eh-tag-red {
  background: var(--eh-red);
  color: #fff;
}

.eh-tag-green {
  background: var(--eh-green);
  color: #fff;
}

.eh-tag-outline {
  border: 2px solid var(--eh-border);
  color: var(--eh-ink-mid);
}

/* closing bg deco */
.eh-closing-deco {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.eh-closing-deco.d1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(28, 159, 81, 0.05) 0%, transparent 70%);
}

.eh-closing-deco.d2 {
  width: 400px;
  height: 400px;
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(216, 46, 38, 0.06) 0%, transparent 70%);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ FADE IN OBSERVER ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
.eh-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eh-fade-up.eh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */
@media (max-width: 960px) {

  .eh-origin-inner,
  .eh-campus-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .eh-mvv-track {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .eh-mvv-track::before {
    display: none;
  }

  .eh-h2 {
    font-size: 32px;
  }

  .eh-closing-quote {
    font-size: 28px;
  }
}

@media (max-width: 600px) {

  .eh-origin,
  .eh-campus,
  .eh-mvv,
  .eh-closing {
    padding: 64px 0;
  }

  .eh-container {
    padding: 0 20px;
  }

  .eh-h2 {
    font-size: 28px;
  }

  .eh-body {
    font-size: 16px;
  }

  .eh-stat-row {
    flex-direction: column;
    gap: 12px;
  }

  .eh-campus-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .eh-closing-quote {
    font-size: 24px;
  }

  .eh-mvv-item {
    padding: 0 8px;
  }
}

/* ==========================
   EDUHOME MODERN PAGINATION
========================== */

.ehp-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.ehp-page-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ehp-page-btn,
.ehp-nav-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s ease;
  background: #ffffff;
  color: #222;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ehp-nav-btn {
  width: auto;
  padding: 0 20px;
}

.ehp-page-btn:hover,
.ehp-nav-btn:hover:not(:disabled) {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ehp-page-active {
  background: linear-gradient(135deg, #d92e26, #d92e26);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 182, 122, 0.35);
}

.ehp-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 767px) {
  .ehp-pagination-wrapper {
    gap: 8px;
  }

  .ehp-page-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .ehp-nav-btn {
    padding: 0 14px;
    height: 42px;
  }
}
