@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap");
@font-face {
  font-family: "GE MB";
  src: url("../fonts/ge_mb_mb/light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE MB";
  src: url("../fonts/ge_mb_mb/medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE MB";
  src: url("../fonts/ge_mb_mb/bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #016B19;
  --secondary: #C9A227;
  --filterPrimary: invert(18%) sepia(94%) saturate(2016%) hue-rotate(126deg) brightness(99%) contrast(99%);
  --filterSecondary: invert(53%) sepia(100%) saturate(333%) hue-rotate(8deg) brightness(100%) contrast(92%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "GE MB", sans-serif;
  scroll-behavior: smooth;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.dir_ltr {
  direction: ltr;
}

.baloo-bhaijaan {
  font-family: "Baloo Bhaijaan 2", sans-serif;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.filter_white {
  filter: var(--filterWhite);
}

/* Color Primary  */
.color_primary {
  color: var(--primary) !important;
}

.bg_primary {
  background-color: var(--primary) !important;
}

.border_primary {
  border-color: var(--primary) !important;
}

.filter_primary {
  filter: var(--filterPrimary);
}

/* Color Secondary  */
.color_secondary {
  color: var(--secondary) !important;
}

.bg_secondary {
  background-color: var(--secondary) !important;
}

.border_secondary {
  border-color: var(--secondary) !important;
}

.filter_secondary {
  filter: var(--filterSecondary);
}

p,
.p {
  font-size: 15px;
  color: #7E807F;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader {
  /*----------- upload loader ------------*/
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/**********************************************
   Start mouse
**********************************************/
.mouse {
  border: solid 2px #eda135;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 9999;
  pointer-events: none;
}

.mouse::before {
  content: "";
  background-color: #eda135;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  transition-duration: 0.3s;
  z-index: 999;
}

.mouse-link::before {
  width: 22px;
  height: 22px;
  z-index: 998;
}

.mouse::after {
  content: "";
  z-index: 997;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  opacity: 0;
}

.mouse-clicked::after {
  animation-name: click;
  animation-duration: 0.7s;
  animation-fill-mode: forward;
  animation-timing-function: cubic-bezier(0.22, 0.69, 0.31, 0.77);
}

@keyframes click {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
/* --------------- helper classes --------------- */
/* --------------- radius classes --------------- */
.radius-1 {
  border-radius: 1px !important;
}

.radius-3 {
  border-radius: 3px !important;
}

.radius-5 {
  border-radius: 5px !important;
}

.radius-8 {
  border-radius: 8px !important;
}

.radius-10 {
  border-radius: 10px !important;
}

.radius-12 {
  border-radius: 12px !important;
}

.radius-15 {
  border-radius: 15px !important;
}

.radius-20 {
  border-radius: 20px !important;
}

.radius-25 {
  border-radius: 25px !important;
}

.radius-30 {
  border-radius: 30px !important;
}

.radius-35 {
  border-radius: 35px !important;
}

.radius-40 {
  border-radius: 40px !important;
}

.radius-45 {
  border-radius: 45px !important;
}

.radius-50 {
  border-radius: 50px !important;
}

.radius-60 {
  border-radius: 60px !important;
}

.radius-70 {
  border-radius: 70px !important;
}

.radius-80 {
  border-radius: 80px !important;
}

.radius-90 {
  border-radius: 90px !important;
}

.radius-100 {
  border-radius: 100px !important;
}

.radius-150 {
  border-radius: 150px !important;
}

.radius-200 {
  border-radius: 200px !important;
}

.radius-250 {
  border-radius: 250px !important;
}

.radius-top-left-0 {
  border-top-left-radius: 0 !important;
}

.radius-top-right-0 {
  border-top-right-radius: 0 !important;
}

.radius-bottom-right-0 {
  border-bottom-right-radius: 0 !important;
}

.radius-bottom-left-0 {
  border-bottom-left-radius: 0 !important;
}

/* --------------- margin classes --------------- */
.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.ms-10 {
  margin-inline-start: 10px !important;
}

.ms-15 {
  margin-inline-start: 15px !important;
}

.ms-20 {
  margin-inline-start: 20px !important;
}

.ms-30 {
  margin-inline-start: 30px !important;
}

.ms-40 {
  margin-inline-start: 40px !important;
}

.ms-50 {
  margin-inline-start: 50px !important;
}

.ms-60 {
  margin-inline-start: 60px !important;
}

.ms-70 {
  margin-inline-start: 70px !important;
}

.ms-80 {
  margin-inline-start: 80px !important;
}

.ms-90 {
  margin-inline-start: 90px !important;
}

.ms-100 {
  margin-inline-start: 100px !important;
}

.ms-120 {
  margin-inline-start: 120px !important;
}

.ms-150 {
  margin-inline-start: 150px !important;
}

.ms-200 {
  margin-inline-start: 200px !important;
}

.me-10 {
  margin-inline-end: 10px !important;
}

.me-15 {
  margin-inline-end: 15px !important;
}

.me-20 {
  margin-inline-end: 20px !important;
}

.me-30 {
  margin-inline-end: 30px !important;
}

.me-40 {
  margin-inline-end: 40px !important;
}

.me-50 {
  margin-inline-end: 50px !important;
}

.me-60 {
  margin-inline-end: 60px !important;
}

.me-70 {
  margin-inline-end: 70px !important;
}

.me-80 {
  margin-inline-end: 80px !important;
}

.me-90 {
  margin-inline-end: 90px !important;
}

.me-100 {
  margin-inline-end: 100px !important;
}

.me-120 {
  margin-inline-end: 120px !important;
}

.me-150 {
  margin-inline-end: 150px !important;
}

.me-200 {
  margin-inline-end: 200px !important;
}

/* --------------- padding classes --------------- */
.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-100 {
  padding: 100px !important;
}

.p-120 {
  padding: 120px !important;
}

.p-150 {
  padding: 150px !important;
}

.p-200 {
  padding: 200px !important;
}

.ps-10 {
  padding-inline-start: 10px !important;
}

.ps-15 {
  padding-inline-start: 15px !important;
}

.ps-20 {
  padding-inline-start: 20px !important;
}

.ps-30 {
  padding-inline-start: 30px !important;
}

.ps-40 {
  padding-inline-start: 40px !important;
}

.ps-50 {
  padding-inline-start: 50px !important;
}

.ps-60 {
  padding-inline-start: 60px !important;
}

.ps-70 {
  padding-inline-start: 70px !important;
}

.ps-80 {
  padding-inline-start: 80px !important;
}

.ps-90 {
  padding-inline-start: 90px !important;
}

.ps-100 {
  padding-inline-start: 100px !important;
}

.ps-120 {
  padding-inline-start: 120px !important;
}

.ps-150 {
  padding-inline-start: 150px !important;
}

.ps-200 {
  padding-inline-start: 200px !important;
}

.pe-10 {
  padding-inline-end: 10px !important;
}

.pe-15 {
  padding-inline-end: 15px !important;
}

.pe-20 {
  padding-inline-end: 20px !important;
}

.pe-30 {
  padding-inline-end: 30px !important;
}

.pe-40 {
  padding-inline-end: 40px !important;
}

.pe-50 {
  padding-inline-end: 50px !important;
}

.pe-60 {
  padding-inline-end: 60px !important;
}

.pe-70 {
  padding-inline-end: 70px !important;
}

.pe-80 {
  padding-inline-end: 80px !important;
}

.pe-90 {
  padding-inline-end: 90px !important;
}

.pe-100 {
  padding-inline-end: 100px !important;
}

.pe-120 {
  padding-inline-end: 120px !important;
}

.pe-150 {
  padding-inline-end: 150px !important;
}

.pe-200 {
  padding-inline-end: 200px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

/* --------------- opacity classes --------------- */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

.op-10 {
  opacity: 1;
}

/* --------------- lineHeight classes --------------- */
.lh--4 {
  line-height: 0.6 !important;
}

.lh--3 {
  line-height: 0.7 !important;
}

.lh--2 {
  line-height: 0.8 !important;
}

.lh--1 {
  line-height: 0.9 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 1.2 !important;
}

.lh-3 {
  line-height: 1.4 !important;
}

.lh-4 {
  line-height: 1.6 !important;
}

.lh-5 {
  line-height: 1.8 !important;
}

.lh-6 {
  line-height: 2 !important;
}

.lh-7 {
  line-height: 2.5 !important;
}

.lh-8 {
  line-height: 3 !important;
}

/* --------------- border color classes --------------- */
.border-wh-1 {
  border-color: rgba(255, 255, 255, 0.0666666667) !important;
}

.border-wh-2 {
  border-color: rgba(255, 255, 255, 0.1333333333) !important;
}

.border-wh-3 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-wh-4 {
  border-color: rgba(255, 255, 255, 0.2666666667) !important;
}

.border-wh-5 {
  border-color: rgba(255, 255, 255, 0.3333333333) !important;
}

.border-wh-6 {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.border-wh-7 {
  border-color: rgba(255, 255, 255, 0.4666666667) !important;
}

.border-wh-8 {
  border-color: rgba(255, 255, 255, 0.5333333333) !important;
}

.border-wh-9 {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.border-dr-1 {
  border-color: rgba(0, 0, 0, 0.0666666667) !important;
}

.border-dr-2 {
  border-color: rgba(0, 0, 0, 0.1333333333) !important;
}

.border-dr-3 {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.border-dr-4 {
  border-color: rgba(0, 0, 0, 0.2666666667) !important;
}

.border-dr-5 {
  border-color: rgba(0, 0, 0, 0.3333333333) !important;
}

.border-dr-6 {
  border-color: rgba(0, 0, 0, 0.4) !important;
}

.border-dr-7 {
  border-color: rgba(0, 0, 0, 0.4666666667) !important;
}

.border-dr-8 {
  border-color: rgba(0, 0, 0, 0.5333333333) !important;
}

.border-dr-9 {
  border-color: rgba(0, 0, 0, 0.6) !important;
}

.border-gray {
  border-color: #d9d9d9 !important;
}

.border-gray2 {
  border-color: #999 !important;
}

/* ---------------  color classes --------------- */
.cr-000 {
  color: #000 !important;
}

.cr-111 {
  color: #111 !important;
}

.cr-222 {
  color: #222 !important;
}

.cr-333 {
  color: #333 !important;
}

.cr-444 {
  color: #444 !important;
}

.cr-555 {
  color: #555 !important;
}

.cr-666 {
  color: #666 !important;
}

.cr-777 {
  color: #777 !important;
}

.cr-888 {
  color: #888 !important;
}

.cr-999 {
  color: #999 !important;
}

.cr-ccc {
  color: #cccccc !important;
}

.cr-gray2 {
  color: #A1A7AF;
}

/* ---------------  bg classes --------------- */
.bg-000 {
  background-color: #000 !important;
}

.bg-111 {
  background-color: #111 !important;
}

.bg-222 {
  background-color: #222 !important;
}

.bg-333 {
  background-color: #333 !important;
}

.bg-444 {
  background-color: #444 !important;
}

.bg-555 {
  background-color: #555 !important;
}

.bg-666 {
  background-color: #666 !important;
}

.bg-777 {
  background-color: #777 !important;
}

.bg-888 {
  background-color: #888 !important;
}

.bg-999 {
  background-color: #999 !important;
}

.bg-ccc {
  background-color: #cccccc !important;
}

.bg-f0 {
  background-color: #f0f0f0 !important;
}

.bg-f1 {
  background-color: #f1f1f1 !important;
}

.bg-f2 {
  background-color: #f2f2f2 !important;
}

.bg-f3 {
  background-color: #f3f3f3 !important;
}

.bg-f4 {
  background-color: #f4f4f4 !important;
}

.bg-f5 {
  background-color: #f5f5f5 !important;
}

.bg-f6 {
  background-color: #f6f6f6 !important;
}

.bg-f7 {
  background-color: #f7f7f7 !important;
}

.bg-f8 {
  background-color: #f8f8f8 !important;
}

.bg-f9 {
  background-color: #f9f9f9 !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-dark1 {
  background-color: #2e2e31 !important;
}

/* --------------- icons size --------------- */
.icon-3 {
  width: 3px;
  height: 3px;
}

.icon-6 {
  width: 6px;
  height: 6px;
}

.icon-8 {
  width: 8px;
  height: 8px;
}

.icon-10 {
  width: 10px;
  height: 10px;
}

.icon-15 {
  width: 15px;
  height: 15px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-25 {
  width: 25px;
  height: 25px;
}

.icon-30 {
  width: 30px;
  height: 30px;
}

.icon-35 {
  width: 35px;
  height: 35px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-45 {
  width: 45px;
  height: 45px;
}

.icon-50 {
  width: 50px;
  height: 50px;
}

.icon-55 {
  width: 55px;
  height: 55px;
}

.icon-60 {
  width: 60px;
  height: 60px;
}

.icon-65 {
  width: 65px;
  height: 65px;
}

.icon-70 {
  width: 70px;
  height: 70px;
}

.icon-75 {
  width: 75px;
  height: 75px;
}

.icon-80 {
  width: 80px;
  height: 80px;
}

.icon-85 {
  width: 85px;
  height: 85px;
}

.icon-90 {
  width: 90px;
  height: 90px;
}

.icon-95 {
  width: 95px;
  height: 95px;
}

.icon-100 {
  width: 100px;
  height: 100px;
}

.icon-125 {
  width: 125px;
  height: 125px;
}

.icon-150 {
  width: 150px;
  height: 150px;
}

.icon-175 {
  width: 175px;
  height: 175px;
}

.icon-200 {
  width: 200px;
  height: 200px;
}

/* --------------- img classes --------------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inherit;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: inherit;
}

.imgrotate-scale-hover {
  overflow: hidden;
}
.imgrotate-scale-hover img {
  transition: all 2s ease;
}
.imgrotate-scale-hover:hover img {
  transform: rotate(-10deg) scale(1.2);
}

.sec-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.filter-gray {
  filter: grayscale(100%);
}

a:hover .filter-gray {
  filter: grayscale(0);
}

.hover-color:hover {
  filter: grayscale(0);
}

/* --------------- height classes --------------- */
.th-10 {
  height: 10px !important;
}

.th-15 {
  height: 15px !important;
}

.th-20 {
  height: 20px !important;
}

.th-25 {
  height: 25px !important;
}

.th-30 {
  height: 30px !important;
}

.th-35 {
  height: 35px !important;
}

.th-40 {
  height: 40px !important;
}

.th-45 {
  height: 45px !important;
}

.th-50 {
  height: 50px !important;
}

.th-60 {
  height: 60px !important;
}

.th-70 {
  height: 70px !important;
}

.th-80 {
  height: 80px !important;
}

.th-90 {
  height: 90px !important;
}

.th-100 {
  height: 100px !important;
}

.th-120 {
  height: 120px !important;
}

.th-140 {
  height: 140px !important;
}

.th-160 {
  height: 160px !important;
}

.th-180 {
  height: 180px !important;
}

.th-200 {
  height: 200px !important;
}

.th-230 {
  height: 230px !important;
}

.th-250 {
  height: 250px !important;
}

.th-280 {
  height: 280px !important;
}

.th-300 {
  height: 300px !important;
}

.th-330 {
  height: 330px !important;
}

.th-350 {
  height: 350px !important;
}

.th-380 {
  height: 380px !important;
}

.th-400 {
  height: 400px !important;
}

.th-425 {
  height: 425px !important;
}

.th-450 {
  height: 450px !important;
}

.th-475 {
  height: 475px !important;
}

.th-500 {
  height: 500px !important;
}

.th-525 {
  height: 525px !important;
}

.th-550 {
  height: 550px !important;
}

.th-575 {
  height: 575px !important;
}

.th-600 {
  height: 600px !important;
}

.th-650 {
  height: 650px !important;
}

.th-700 {
  height: 700px !important;
}

.th-750 {
  height: 750px !important;
}

.th-800 {
  height: 800px !important;
}

.th-900 {
  height: 900px !important;
}

.th-1000 {
  height: 1000px !important;
}

.txt-stroke {
  color: transparent;
  -webkit-text-stroke: 1px #111;
  font-family: Arial, Helvetica, sans-serif;
}

.txt-stroke-wh {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.text-pretty {
  text-wrap: pretty !important;
}

.text-balance {
  text-wrap: balance !important;
}

.text-justify {
  text-align: justify !important;
}

.text-indet-50 {
  text-indent: 50px;
}

.text-indet-100 {
  text-indent: 100px;
}

.text-indet-150 {
  text-indent: 150px;
}

.text-indet-200 {
  text-indent: 200px;
}

.clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-9 {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-10 {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------- letter spacing classes --------------- */
.ltspc-0 {
  letter-spacing: 0 !important;
}

.ltspc-1 {
  letter-spacing: 1px !important;
}

.ltspc-2 {
  letter-spacing: 2px !important;
}

.ltspc-3 {
  letter-spacing: 3px !important;
}

.ltspc-4 {
  letter-spacing: 4px !important;
}

.ltspc-5 {
  letter-spacing: 5px !important;
}

.ltspc-8 {
  letter-spacing: 8px !important;
}

.ltspc-10 {
  letter-spacing: 10px !important;
}

.ltspc-12 {
  letter-spacing: 12px !important;
}

.ltspc-15 {
  letter-spacing: 15px !important;
}

.ltspc-17 {
  letter-spacing: 17px !important;
}

.ltspc-20 {
  letter-spacing: 20px !important;
}

.ltspc--1 {
  letter-spacing: -1px !important;
}

.ltspc--2 {
  letter-spacing: -2px !important;
}

.ltspc--3 {
  letter-spacing: -3px !important;
}

.ltspc--4 {
  letter-spacing: -4px !important;
}

.ltspc--5 {
  letter-spacing: -5px !important;
}

.ltspc--6 {
  letter-spacing: -6px !important;
}

.ltspc--7 {
  letter-spacing: -7px !important;
}

.ltspc--8 {
  letter-spacing: -8px !important;
}

.ltspc--9 {
  letter-spacing: -9px !important;
}

.ltspc--10 {
  letter-spacing: -10px !important;
}

.fsz-3 {
  font-size: 3px !important;
}

.fsz-5 {
  font-size: 5px !important;
}

.fsz-8 {
  font-size: 8px !important;
}

.fsz-10 {
  font-size: 10px !important;
}

.fsz-11 {
  font-size: 11px !important;
}

.fsz-12 {
  font-size: 12px !important;
}

.fsz-13 {
  font-size: 13px !important;
}

.fsz-14 {
  font-size: 14px !important;
}

.fsz-15 {
  font-size: 15px !important;
}

.fsz-16 {
  font-size: 16px !important;
}

.fsz-17 {
  font-size: 17px !important;
}

.fsz-18 {
  font-size: 18px !important;
}

.fsz-19 {
  font-size: 19px !important;
}

.fsz-20 {
  font-size: 20px !important;
}

.fsz-21 {
  font-size: 21px !important;
}

.fsz-22 {
  font-size: 22px !important;
}

.fsz-23 {
  font-size: 23px !important;
}

.fsz-24 {
  font-size: 24px !important;
}

.fsz-25 {
  font-size: 25px !important;
}

.fsz-26 {
  font-size: 26px !important;
}

.fsz-27 {
  font-size: 27px !important;
}

.fsz-28 {
  font-size: 28px !important;
}

.fsz-29 {
  font-size: 29px !important;
}

.fsz-30 {
  font-size: 30px !important;
}

.fsz-35 {
  font-size: 35px !important;
}

.fsz-40 {
  font-size: 40px !important;
}

.fsz-45 {
  font-size: 45px !important;
}

.fsz-50 {
  font-size: 50px !important;
}

.fsz-55 {
  font-size: 55px !important;
}

.fsz-60 {
  font-size: 60px !important;
}

.fsz-65 {
  font-size: 65px !important;
}

.fsz-70 {
  font-size: 70px !important;
}

.fsz-75 {
  font-size: 75px !important;
}

.fsz-80 {
  font-size: 80px !important;
}

.fsz-85 {
  font-size: 85px !important;
}

.fsz-90 {
  font-size: 90px !important;
}

.fsz-95 {
  font-size: 95px !important;
}

.fsz-100 {
  font-size: 100px !important;
}

.fsz-120 {
  font-size: 120px !important;
}

.fsz-150 {
  font-size: 150px !important;
}

.fsz-170 {
  font-size: 170px !important;
}

.fsz-200 {
  font-size: 200px !important;
}

.fsz-250 {
  font-size: 250px !important;
}

.fsz-300 {
  font-size: 300px !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.znd-1 {
  z-index: 1;
}

.znd-2 {
  z-index: 2;
}

.znd-3 {
  z-index: 3;
}

.znd-4 {
  z-index: 4;
}

.znd-5 {
  z-index: 5;
}

.znd-6 {
  z-index: 6;
}

.znd-7 {
  z-index: 7;
}

.znd-8 {
  z-index: 8;
}

.znd-9 {
  z-index: 9;
}

.znd-10 {
  z-index: 10;
}

.znd-25 {
  z-index: 25;
}

.znd-50 {
  z-index: 50;
}

.znd-75 {
  z-index: 75;
}

.znd-100 {
  z-index: 100;
}

.znd-200 {
  z-index: 200;
}

.znd-999 {
  z-index: 999;
}

.top-1 {
  top: 1px;
}

.top-2 {
  top: 2px;
}

.top-3 {
  top: 3px;
}

.top-4 {
  top: 4px;
}

.top-5 {
  top: 5px;
}

.top-6 {
  top: 6px;
}

.top-7 {
  top: 7px;
}

.top-8 {
  top: 8px;
}

.top-9 {
  top: 9px;
}

.top-10 {
  top: 10px;
}

.btm-1 {
  bottom: 1px;
}

.btm-2 {
  bottom: 2px;
}

.btm-3 {
  bottom: 3px;
}

.btm-4 {
  bottom: 4px;
}

.btm-5 {
  bottom: 5px;
}

.btm-6 {
  bottom: 6px;
}

.btm-7 {
  bottom: 7px;
}

.btm-8 {
  bottom: 8px;
}

.btm-9 {
  bottom: 9px;
}

.btm-10 {
  bottom: 10px;
}

.tr-delay1 {
  transition-delay: 0.2s;
}

.tr-delay2 {
  transition-delay: 0.4s;
}

.tr-delay3 {
  transition-delay: 0.6s;
}

.tr-delay4 {
  transition-delay: 0.8s;
}

.tr-delay5 {
  transition-delay: 1s;
}

.w-fit {
  width: fit-content;
}

.underline {
  text-decoration: underline !important;
}

.border-right {
  border-right: 1px solid var(--bs-border-color);
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hover-underline:hover {
  text-decoration: underline !important;
}

.hover-white:hover {
  color: #fff;
}
.hover-white:hover * {
  color: #fff;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f054";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f053";
}

.butn {
  overflow: hidden;
  position: relative;
  padding: 0.7rem 1.7rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: bold;
  transition-duration: 0.3s;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn:hover {
  color: #fff !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
.butn.primary_butn:hover, .butn.primary_border_butn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.butn.secondary_butn:hover, .butn.secondary_border_butn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.butn.hvr-scale:hover {
  transform: scale(1.05);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
  display: inline-block;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.badge {
  border-radius: 25px;
  font-size: 16px;
  padding: 0.6rem 1rem;
}
.badge.peimary_badge {
  background-color: rgba(1, 107, 26, 0.1333333333);
  color: var(--primary);
}
.badge.white_badge {
  background-color: rgba(255, 255, 255, 0.1725490196);
  color: #fff;
}

.circles {
  position: absolute;
  object-fit: contain;
  width: 500px;
  animation: rotateCircle 20s linear infinite;
}
.circles.circRight {
  right: -250px;
}
.circles.circLeft {
  left: -250px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  position: relative;
}
.navs-container .navbar .logo {
  height: 82px;
  object-fit: contain;
}
.navs-container .navbar .nav-link {
  font-size: 20px;
  margin: 0 5px;
  position: relative;
  transition: all 0.3s linear;
  padding-inline: 0.7rem;
}
.navs-container .navbar .nav-link::after {
  width: 0;
  bottom: 0;
  background-color: var(--primary);
  transition: all 0.3s linear;
  inset-inline-start: 0;
  height: 1px;
  content: "";
  position: absolute;
}
.navs-container .navbar .nav-link.active {
  font-weight: bold;
}
.navs-container .navbar .nav-link.active::after {
  width: 100%;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #B2D7B8;
}
.footer .content {
  margin-bottom: 35px;
}
.footer .content .logo {
  height: 115px;
  object-fit: contain;
}
.footer .content .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.footer .content .links a {
  position: relative;
  width: 49%;
  display: inline-block;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 22px;
}
.footer .content .links a::before {
  content: "\f111";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  color: #010103;
  margin-inline-end: 10px;
  font-size: 10px;
  transition: all 0.3s linear;
}
.footer .content .links a:hover {
  color: var(--secondary) !important;
}
.footer .content .links a:hover::before {
  color: var(--primary) !important;
}
.footer .content .social_links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  margin-inline-end: 15px;
  color: var(--primary);
  font-size: 20px;
}
.footer .content .social_links a .icon {
  height: 20px;
  object-fit: contain;
  filter: var(--filterPrimary);
}
.footer .content .social_links a:hover {
  background-color: #f3d677;
}
.footer .content .caontact_foot .item {
  font-size: 20px;
}
.footer .content .caontact_foot .item * {
  transition: all 0.3s ease-in-out;
}
.footer .content .caontact_foot .item i {
  font-size: 25px;
  margin-inline-end: 20px;
}
.footer .content .caontact_foot a:hover span {
  color: var(--secondary) !important;
}
.footer .content .caontact_foot a:hover i {
  color: var(--primary);
}
.footer .foot .copyright .copyright_icon {
  color: #585C59;
}
.footer .foot .foot_links a {
  color: var(--primary);
  margin-inline-end: 18px;
}
.footer .foot .foot_links a:hover {
  color: var(--secondary) !important;
}
.footer .foot .mk a {
  color: #B99350 !important;
}
.footer .foot .mk a:hover {
  color: var(--secondary) !important;
  text-decoration: underline !important;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  width: 60%;
  inset-inline-start: unset;
  background-image: linear-gradient(to right, #B2D7B8, rgba(178, 215, 184, 0));
  background-color: transparent;
  z-index: 1;
}
.header::after {
  content: "";
  width: 100%;
  height: 90px;
  background: url(../images/header_curve.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}

.cinematic-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cinematic-crop .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_cards {
  margin-top: -120px;
}
.hero_cards .item {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 35px 25px;
  border-radius: 30px;
  box-shadow: 0px 24px 31px 0 rgba(11, 122, 52, 0.0470588235);
  transition: all 0.3s linear;
}
.hero_cards .item .icon_box {
  background-color: #F8FAF6;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.hero_cards .item .icon_box,
.hero_cards .item h5,
.hero_cards .item p {
  transition: 0.35s ease;
}
.hero_cards .item:hover .icon_box {
  transform: translateY(-8px);
  background-color: var(--primary);
}
.hero_cards .item:hover .icon_box .icon {
  filter: var(--filterWhite);
}
.hero_cards .item:hover h5 {
  transform: translateY(-4px);
}
.hero_cards .item:hover p {
  transform: translateY(-2px);
}

.about_sec {
  overflow: unset;
}
.about_sec .txt_box .ul li {
  font-size: 18px;
  font-weight: bold;
  color: #2E2E2E;
  margin-bottom: 15px;
  position: relative;
  padding-inline-start: 45px;
}
.about_sec .txt_box .ul li::before {
  content: "";
  background: url(../images/icons/check.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -2px;
  inset-inline-start: 0;
}
.about_sec .img_box {
  height: 480px;
  position: relative;
}
.about_sec .img_box .secImg {
  border-radius: 24px;
  transform-origin: center center;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.1333333333);
}
.about_sec .img_box .frame-bg {
  background-color: #BFDAC5;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.prog_sec .inner {
  background-color: #B2D7B8;
  border-radius: 20px;
  padding: 50px 2vw 30px 2vw;
  position: relative;
}
.prog_sec .inner .item {
  height: 300px;
  position: relative;
  border: 2px solid #fff;
  border-radius: 32px;
  overflow: hidden;
  display: block;
  margin-bottom: 30px;
}
.prog_sec .inner .item .secImg {
  border-radius: 32px;
  transition: all 0.5s ease-in-out;
}
.prog_sec .inner .item .txt_content {
  position: absolute;
  padding: 35px 25px;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}
.prog_sec .inner .item .txt_content .title {
  position: relative;
}
.prog_sec .inner .item .txt_content .title::after {
  height: 4px;
  width: 40px;
  content: "";
  background-color: var(--secondary);
  position: absolute;
  bottom: -10px;
  inset-inline-start: 0;
  border-radius: 25px;
  transition: all 0.6s ease-in-out;
}
.prog_sec .inner .item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #0F1B13;
  opacity: 0.7;
  z-index: 1;
}
.prog_sec .inner .item .halfCircle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.prog_sec .inner .item:hover .secImg {
  transform: scale(1.05) rotate(2deg);
}
.prog_sec .inner .item:hover .txt_content .title::after {
  width: 70%;
}

.why_sec .feat_item {
  position: relative;
  background-color: #F8FAF6;
  border-radius: 30px;
  padding: 20px 20px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s linear;
}
.why_sec .feat_item * {
  transition: all 0.3s linear;
}
.why_sec .feat_item .icon_box {
  background-color: #fff;
  border-radius: 15px;
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.0666666667);
}
.why_sec .feat_item .icon_box .icon {
  filter: var(--filterPrimary);
  height: 22px;
  object-fit: contain;
}
.why_sec .feat_item .p {
  font-size: 18px;
}
.why_sec .feat_item:hover {
  border-color: var(--secondary);
  background-color: var(--primary);
}
.why_sec .feat_item:hover * {
  color: #fff !important;
}

.gallery_sec .gallery_card {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 15px;
}
.gallery_sec .gallery_card .secImg {
  transition: all 0.3s linear;
  border-radius: 30px;
}
.gallery_sec .gallery_card.lg_card {
  height: 515px;
}
.gallery_sec .gallery_card.sm_card {
  height: 250px;
}
.gallery_sec .gallery_card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.1254901961);
  transition: all 0.3s linear;
  opacity: 1;
}
.gallery_sec .gallery_card:hover .secImg {
  transform: rotate(3deg) scale(1.05);
}

.faq_sec .custom_accordion .accordion-item {
  border: 1.5px solid #F3F4F6;
  border-radius: 24px !important;
  overflow: hidden;
  margin-bottom: 16px;
  background: transparent;
  box-shadow: 0 4px 5px -1.5px rgba(0, 0, 0, 0.05);
}
.faq_sec .custom_accordion .accordion-button {
  background: transparent;
  box-shadow: none !important;
  border: 0;
  padding: 28px 35px;
  font-size: 30px;
  font-weight: 700;
  color: #010103;
  text-align: right;
  justify-content: space-between;
}
.faq_sec .custom_accordion .accordion-button::before {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  inset-inline-end: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
  font-size: 14px;
}
.faq_sec .custom_accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(180deg);
}
.faq_sec .custom_accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #111;
}
.faq_sec .custom_accordion .accordion-button::after {
  display: none;
}
.faq_sec .custom_accordion .accordion-body {
  padding: 0 35px 30px;
  font-size: 22px;
  color: #666;
  line-height: 1.9;
}

.join_sec .inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 450px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-inline: 2vw;
}
.join_sec .inner .txt_box {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 5;
}
.join_sec .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(0, 59, 14, 0), #003B0E);
}
.join_sec .inner .bg {
  opacity: 0.8;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  height: 550px;
  position: relative;
  display: flex;
  align-items: end;
}
.pg_header .txt_box .txtShadow {
  text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.5);
}
.pg_header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  inset-inline-start: unset;
  background-image: linear-gradient(to bottom, rgba(178, 215, 184, 0.431372549), #B2D7B8);
  background-color: transparent;
  z-index: 1;
}
.pg_header::after {
  content: "";
  width: 100%;
  height: 90px;
  background: url(../images/header_curve.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  z-index: 3;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about_pg .logo {
  position: absolute;
  top: 15px;
  left: 1%;
  width: 32%;
  opacity: 0.15;
  object-fit: contain;
}
.about_pg .main_img {
  height: 100%;
}
.about_pg .img_box {
  height: 100%;
  position: relative;
}
.about_pg .img_box .secImg {
  border-radius: 24px;
  transform-origin: center center;
  box-shadow: 0 16px 31px -7px rgba(0, 0, 0, 0.1607843137);
}
.about_pg .img_box .frame-bg {
  background-color: #BFDAC5;
  border-radius: 24px;
  transform: rotate(-3deg);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.values_sec .val_item {
  position: relative;
  padding: 20px;
  background-color: #F8FAF6;
  border-radius: 12px;
  border: 1px solid var(--secondary);
  transition: all 0.3s linear;
  text-align: center;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.values_sec .val_item * {
  transition: all 0.3s linear;
}
.values_sec .val_item .p {
  line-height: 1.3rem;
}
.values_sec .val_item .icon_box {
  background-color: #EEE8CD;
  color: var(--secondary);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 13px auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.0666666667);
  font-size: 20px;
}
.values_sec .val_item .icon_box .icon {
  height: 20px;
  object-fit: contain;
}
.values_sec .val_item:hover .icon_box {
  transform: translateY(-8px);
  background-color: var(--primary);
}
.values_sec .val_item:hover .icon_box .icon {
  filter: var(--filterWhite);
}
.values_sec .val_item:hover h5 {
  transform: translateY(-4px);
  color: var(--secondary) !important;
}
.values_sec .val_item:hover .p {
  color: var(--secondary) !important;
  transform: translateY(-2px);
}

.features_sec .img_box {
  height: 355px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin: 10px 0;
}
.features_sec .img_box * {
  transition: all 0.3s linear;
}
.features_sec .img_box .txt_content {
  position: absolute;
  z-index: 5;
  padding: 35px 3vw;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
}
.features_sec .img_box .txt_content .icon {
  height: 70px;
  object-fit: contain;
}
.features_sec .img_box::before, .features_sec .img_box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: linear-gradient(to bottom, rgba(0, 59, 14, 0), rgba(0, 59, 14, 0.262745098), #003b0e);
  z-index: 1;
  transition: all 0.3s linear;
}
.features_sec .img_box::after {
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(201, 163, 39, 0), rgba(201, 163, 39, 0.3137254902), #C9A227);
}
.features_sec .img_box:hover .secImg {
  transform: rotate(3deg) scale(1.05);
}
.features_sec .img_box:hover::after {
  opacity: 1;
}
.features_sec .img_box:hover::before {
  opacity: 0;
}
.features_sec .feat_box {
  height: calc(100% - 30px);
  border-radius: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #F8FAF6;
  border: 1.5px solid var(--secondary);
  padding: 25px 4vw;
  margin: 15px 0;
  transition: all 0.3s linear;
}
.features_sec .feat_box .icon {
  color: var(--primary);
  font-size: 60px;
}
.features_sec .feat_box * {
  transition: all 0.3s linear;
}
.features_sec .feat_box:hover {
  border-color: var(--primary);
}
.features_sec .feat_box:hover .icon {
  transform: translateY(-8px);
  color: var(--secondary);
}
.features_sec .feat_box:hover h5 {
  transform: translateY(-4px);
  color: var(--secondary) !important;
}
.features_sec .feat_box:hover .p {
  transform: translateY(-2px);
}

.ceo_sec .inner {
  background-color: #fff;
  border-radius: 55px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 33px -6px #F3F4F6;
}

/**********************************************
    Start Edit join Page 
**********************************************/
.steps_sec .step_card {
  position: relative;
  border-radius: 24px;
  border: 1px solid #F3F4F6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.062745098);
  margin-bottom: 45px;
  height: calc(100% - 45px);
  text-align: center;
  padding: 25px 4vw;
}
.steps_sec .step_card .num {
  background-color: var(--secondary);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #F8FAF6;
  font-size: 19px;
  position: absolute;
  top: -25px;
  inset-inline-start: -15px;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1333333333);
  font-weight: bold;
}
.steps_sec .step_card .icon_box {
  border-radius: 16px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8FAF6;
  margin: 0 auto 15px auto;
}
.steps_sec .step_card .icon_box .icon {
  height: 30px;
  object-fit: contain;
}

.levels_sec .level_card {
  border-radius: 32px;
  position: relative;
  border: 1px solid var(--primary);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.0666666667);
}
.levels_sec .level_card * {
  transition: all 0.3s linear;
}
.levels_sec .level_card .img-box {
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  height: 250px;
  position: relative;
}
.levels_sec .level_card .img-box::before, .levels_sec .level_card .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5098039216));
  z-index: 1;
  transition: all 0.3s linear;
}
.levels_sec .level_card .img-box::after {
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(201, 163, 39, 0), rgba(201, 163, 39, 0.3137254902));
}
.levels_sec .level_card .card-body {
  padding: 30px 20px;
}
.levels_sec .level_card:hover {
  border-color: var(--secondary);
}
.levels_sec .level_card:hover .img-box::after {
  opacity: 1;
}
.levels_sec .level_card:hover .img-box::before {
  opacity: 0;
}
.levels_sec .level_card:hover .card-body .title {
  color: var(--secondary) !important;
}

.req_doc_sec .txt_box .ul li {
  padding-inline-start: 40px;
  font-weight: 500;
}
.req_doc_sec .txt_box .ul li::before {
  background: url(../images/icons/file-circle.svg) no-repeat center;
}

.joinForm_sec .secImg {
  object-fit: contain;
}
.joinForm_sec .form_box {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 3vw;
  box-shadow: 0 19px 24px -4px rgba(11, 122, 52, 0.0549019608);
}
.joinForm_sec .form_box .form-group {
  margin-bottom: 15px;
}
.joinForm_sec .form_box .form-group .form-control {
  background-color: #F8FAF6;
  border-color: #E5E7EB;
  border-radius: 16px;
  font-weight: 400;
}
.joinForm_sec .form_box .form-group .form-control::placeholder {
  color: rgba(46, 46, 46, 0.5058823529);
}

/**********************************************
    Start Edit blog Page 
**********************************************/
.blog_pg .bloc_img_card {
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.blog_pg .bloc_img_card .txt_box {
  width: 65%;
  padding: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5;
}
.blog_pg .bloc_img_card.lg_card {
  height: 625px;
}
.blog_pg .bloc_img_card.sm_card {
  height: 300px;
}
.blog_pg .bloc_img_card.sm_card .txt_box {
  width: 80%;
}
.blog_pg .bloc_img_card::before, .blog_pg .bloc_img_card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: linear-gradient(to bottom, rgba(0, 59, 14, 0), rgba(0, 59, 14, 0.262745098), #003b0e);
  z-index: 1;
  transition: all 0.3s linear;
}
.blog_pg .bloc_img_card::after {
  opacity: 0;
  background-image: linear-gradient(to bottom, rgba(201, 163, 39, 0), rgba(201, 163, 39, 0.3137254902), rgba(201, 163, 39, 0.7607843137));
}
.blog_pg .bloc_img_card:hover::after {
  opacity: 1;
}
.blog_pg .bloc_img_card:hover::before {
  opacity: 0;
}
.blog_pg .blog_card {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: 32px;
  margin-bottom: 25px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
}
.blog_pg .blog_card .icon_box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background-color: #E7F2EB;
  border-radius: 50%;
}
.blog_pg .blog_card .more_butn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8FAF6;
  color: var(--primary);
  border-radius: 50%;
}
.blog_pg .blog_card .more_butn:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

.events_sec .event_item {
  background-color: #F8FAF6;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 25px;
}
.events_sec .event_item .more_butn {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.0666666667);
}
.events_sec .event_item .more_butn:hover {
  background-color: var(--secondary);
  color: #fff !important;
}
.events_sec .event_item .content .foot_dat b {
  color: #7E807F;
}
.events_sec .event_item .date_box {
  width: 128px;
  aspect-ratio: 1/1;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #F3F4F6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery_sec2 .lg_card {
  height: 285px !important;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_cards {
  margin-top: -60px;
}
.contact_cards .item {
  margin-bottom: 25px;
  height: calc(100% - 25px);
  border: 1px solid var(--primary);
}
.contact_cards .item .icon_box {
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: var(--primary);
  border-radius: 15px;
}
.contact_cards .item:hover {
  background-color: var(--primary);
}
.contact_cards .item:hover .icon_box {
  background-color: #fff;
}
.contact_cards .item:hover .icon_box i {
  color: var(--primary) !important;
}
.contact_cards .item:hover *,
.contact_cards .item:hover .data {
  color: #fff !important;
}
.contact_cards .col-lg-4:nth-child(2) .item:hover:hover {
  background-color: var(--secondary);
}
.contact_cards .col-lg-4:nth-child(2) .item:hover:hover .icon_box i {
  color: var(--secondary) !important;
}

.loc_sec .inner {
  height: 515px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 25px;
}
.loc_sec .inner .txt_box {
  background-color: rgba(255, 255, 255, 0.8509803922);
  padding: 25px;
  border-radius: 30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  position: relative;
}
.loc_sec .inner .txt_box .loc_icon {
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #F8FAF6;
  font-size: 19px;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1333333333);
  font-weight: bold;
}
.loc_sec .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #003B0E;
  opacity: 0.1;
  z-index: 1;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .order_md_2 {
    order: 0;
  }
  .order_md_3 {
    order: 3;
  }
  .section {
    padding: 30px 0;
  }
  .header {
    min-height: 450px;
  }
  .header::before {
    width: 100%;
    background-image: linear-gradient(to right, #B2D7B8, rgba(255, 255, 255, 0.8196078431));
  }
  .header .txt_box .title,
  .pg_header .txt_box h2 {
    font-size: 30px !important;
  }
  .header .txt_box .subtitle {
    font-size: 20px !important;
  }
  .header .txt_box .butn {
    font-size: 16px !important;
    width: fit-content !important;
    margin: auto;
    margin-top: 15px !important;
  }
  .hero_cards {
    margin-top: -100px;
  }
  .hero_cards .item {
    padding: 20px 15px;
    box-shadow: 0px 24px 31px 0 rgba(11, 122, 52, 0.070588235);
    margin-bottom: 10px;
  }
  .hero_cards .item .icon_box {
    width: 30px;
    height: 30px;
  }
  .hero_cards .item .icon_box .icon {
    height: 20px;
  }
  .hero_cards .item h5.fsz-25 {
    font-size: 12px !important;
  }
  .hero_cards .item p.fsz-22 {
    font-size: 12px !important;
  }
  .badge {
    font-size: 14px !important;
  }
  .about_sec {
    padding-top: 40px !important;
  }
  .about_sec .txt_box .fsz-33,
  .section .sec_head h2,
  .join_sec .inner .txt_box h2,
  .about_pg .txt_box h2,
  .features_sec .img_box .txt_content h4,
  .features_sec .feat_box h5,
  .features_sec .feat_box .icon,
  .fsz-35,
  .levels_sec .level_card .title,
  .fsz-28,
  .blog_pg .bloc_img_card .txt_box .fsz-30,
  .blog_pg .blog_card .fsz-24,
  .loc_sec .inner .txt_box h4 {
    font-size: 20px !important;
  }
  .about_sec .txt_box .fsz-20,
  .section .sec_head .p,
  .why_sec .feat_item .title,
  .faq_sec .custom_accordion .accordion-button,
  .join_sec .inner .txt_box h5,
  .footer .content .p,
  .footer .content .links a,
  .footer .content .caontact_foot .item,
  .pg_header .txt_box h5,
  .pg_header .txt_box .butn,
  .about_pg .txt_box h6,
  .ceo_sec .inner .txt_box .p,
  .fsz-22,
  .levels_sec .level_card .p,
  .joinForm_sec .form_box .butn,
  .contact_cards .item .data {
    font-size: 15px !important;
  }
  .why_sec .feat_item .p,
  .join_sec .inner .txt_box .p,
  .pg_header .txt_box .p,
  .about_pg .txt_box .p,
  .features_sec .img_box .txt_content .p,
  .features_sec .feat_box .p,
  .ceo_sec .inner .txt_box .ceo_data h6,
  .blog_pg .bloc_img_card .txt_box .p,
  .hero_cards .item p {
    font-size: 12px !important;
  }
  .about_sec .txt_box .ul li,
  .join_sec .inner .txt_box .butn,
  .ceo_sec .inner .txt_box .ceo_data h5 {
    font-size: 14px !important;
  }
  .about_sec .txt_box .butn {
    margin-inline-start: unset !important;
    font-size: 16px !important;
  }
  .about_sec .img_box {
    height: 280px;
  }
  .circles {
    width: 200px;
  }
  .circles.circRight {
    right: -100px;
  }
  .circles.circLeft {
    left: -100px;
  }
  .prog_sec .inner .item {
    height: 200px;
    margin-bottom: 10px !important;
    transform: unset !important;
  }
  .why_sec .feat_item {
    padding: 10px;
  }
  .why_sec .feat_item .icon_box {
    width: 40px;
    height: 40px;
  }
  .why_sec .feat_item .icon_box .why_sec .feat_item .icon_box .icon {
    height: 15px;
  }
  .gallery_sec .butn {
    font-size: 15px !important;
    margin-top: 10px;
  }
  .gallery_sec .gallery_card.lg_card {
    height: 250px;
  }
  .gallery_sec .gallery_card.sm_card {
    height: 120px;
  }
  .footer .foot {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .foot div, .footer .foot p {
    text-align: center;
    width: 100%;
    margin: 2px 0;
  }
  .mouse {
    display: none;
  }
  .about_pg .txt_box,
  .about_pg .img_box {
    margin-top: 20px;
  }
  .about_pg .mt-100 {
    margin-top: 30px !important;
  }
  .pg_header {
    height: 350px;
    align-items: center;
    padding: 50px 0 !important;
  }
  .pg_header .txt_box .butn {
    width: fit-content !important;
    margin-inline: auto !important;
  }
  .pg_header::after {
    bottom: -67px;
    background-size: contain;
  }
  .features_sec .img_box .txt_content .icon {
    height: 30px;
  }
  .features_sec .img_box {
    height: 240px;
  }
  .features_sec .feat_box {
    padding: 25px 10px;
  }
  .join_sec .inner {
    height: 350px;
  }
  .ceo_sec .inner {
    border-radius: 15px;
  }
  .ceo_sec .inner .img_box {
    height: 250px;
  }
  .ceo_sec .inner .txt_box {
    padding: 15px;
  }
  .ceo_sec .inner .txt_box .quote {
    height: 40px;
  }
  .about_pg .main_img {
    margin-bottom: 20px;
    height: 200px;
  }
  .about_pg .main_img img {
    object-fit: contain;
  }
  .req_doc_sec,
  .joinForm_sec .form_box,
  section.faq_sec.section.pt-200 {
    padding-top: 0px !important;
  }
  .joinForm_sec .secImg {
    margin-top: 25px;
    height: 250px;
    object-fit: contain;
  }
  .events_sec .event_item .date_box {
    width: 100%;
    aspect-ratio: unset;
    margin-top: 10px;
  }
  .blog_pg .bloc_img_card .txt_box {
    width: 100%;
  }
  .blog_pg .bloc_img_card.lg_card {
    height: 325px;
  }
  .contact_cards .item .icon_box {
    width: 50px;
    height: 50px;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************//*# sourceMappingURL=style.css.map */