@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #FFC107;
  --theme-2: #0B4E3D;
  --header: #122F2A;
  --text: #1a1a1a;
  --text-2: var(--theme-2);
  --border: #C9C9C9;
  --bg: #F8F3E7;
  --bg-2: #122F2A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
  --bs-tertiary-bg: #edf2f6;
  --bs-primary: var(--theme-2);
  --bs-primary-rgb: 11, 78, 61;
  --bs-primary-dark: #094032;
  --fc-event-bg-color: rgba(var(--bs-primary-rgb), .15);
  --fc-event-border-color: var(--bs-primary);
  --fc-event-text-color: var(--bs-primary);
}

.theme-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none !important;
  background-color: var(--theme-2);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 14px 30px;
  transition: all 0.3s linear;
  overflow: hidden;
  border-radius: 100px;
  z-index: 1;
  font-family: Nunito;
  text-align: center;
}
.theme-btn i {
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.theme-btn i.fa-paper-plane {
  transform: rotate(-5deg);
}
.theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.theme-btn:hover {
  color: var(--header);
  background-color: transparent;
}
.theme-btn:hover i {
  transform: rotate(0);
}
.theme-btn:hover i.fa-paper-plane {
  transform: rotate(25deg);
}
.theme-btn:hover::before {
  height: 700%;
}
.theme-btn.btn-outline {
  --button-color: var(--theme-2);
  background-color: transparent !important;
  border: 1px solid var(--button-color) !important;
  color: var(--button-color) !important;
}
.theme-btn.btn-outline:hover {
  background-color: var(--button-color) !important;
  color: var(--white) !important;
}
.theme-btn.btn-outline::before {
  background-color: var(--button-color) !important;
}
.theme-btn.btn-outline.style-2 {
  --button-color: var(--theme);
}
.theme-btn.btn-md {
  padding: 8px 20px !important;
  font-size: 15px;
}
.theme-btn.btn-sm {
  padding: 8px 20px !important;
  font-size: 14px;
}
.theme-btn.btn-xs {
  padding: 6px 12px !important;
  font-size: 13px;
}
.theme-btn.type-2 {
  background-color: var(--theme) !important;
  color: var(--theme-2);
}
.theme-btn.icon_reset i {
  transform: rotate(0);
}

.btn-filters {
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--border);
  padding: 6px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-filters:not(:disabled):not(.disabled).active, .btn-filters:not(:disabled):not(.disabled):active, .btn-filters:hover, .btn-filters.active, .btn-filters:active, .btn-filters:focus {
  border: 1px solid var(--border);
  color: rgba(0, 0, 0, 0.9058823529);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-2);
  text-transform: capitalize;
}
.link-btn i {
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.link-btn:hover {
  color: var(--theme);
}
.link-btn:hover i {
  transform: rotate(0deg);
}

.theme-outline-btn {
  border: 1px solid var(--theme-2);
  color: var(--theme-2);
  background-color: transparent;
}
.theme-outline-btn:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.theme-fill-btn {
  background-color: var(--theme-2);
  color: var(--white);
}
.theme-fill-btn:hover {
  background-color: transparent;
  color: var(--theme-2);
  border: 1px solid var(--theme-2);
}

.btn-primary {
  color: #ffffff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:hover, .btn-primary.active, .btn-primary:active, .btn-primary:focus {
  color: #ffffff;
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  background-color: transparent;
  border-color: var(--bs-primary);
  transition: all 0.3s ease-in-out;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:hover, .btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
  color: #ffffff !important;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-icon.circle_sm {
  min-width: 25px !important;
  min-height: 25px !important;
  width: 25px !important;
  height: 25px !important;
  font-size: 13px;
}

.btn-outline-gray {
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--border);
  padding: 6px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-outline-gray:not(:disabled):not(.disabled).active, .btn-outline-gray:not(:disabled):not(.disabled):active, .btn-outline-gray:hover, .btn-outline-gray.active, .btn-outline-gray:active, .btn-outline-gray:focus {
  background: var(--border);
  color: rgba(0, 0, 0, 0.9058823529);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background: #ffffff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  text-transform: capitalize;
}

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 {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: 86px;
  font-weight: 400;
  line-height: 114%;
}
@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 65px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 112%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 131%;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 141%;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--text);
}
a:hover {
  color: var(--theme-2);
}

p {
  margin: 0px;
  transition: all 0.3s ease-in-out;
}

span {
  margin: 0px;
}

.text-small {
  font-size: 14px;
}

.text-theme {
  color: var(--theme);
}

.text-theme-2 {
  color: var(--theme-2);
}

.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-wrapper .about-content .text {
  max-width: 645px;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .text {
    margin-bottom: 30px;
  }
}
.about-wrapper .about-content .about-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-icon-item {
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-icon-item .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.about-wrapper .about-content .about-icon-item .content p {
  max-width: 565px;
}
.about-wrapper .about-content .about-icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.about-wrapper .about-content .about-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper .about-content .about-bottom .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-wrapper .about-item {
  margin-left: 215px;
  height: 100%;
}
@media (max-width: 1399px) {
  .about-wrapper .about-item {
    margin-left: 0;
  }
}
.about-wrapper .about-item .about-image {
  max-width: 420px;
  height: 100% !important;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image {
    max-width: initial;
  }
}
.about-wrapper .about-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about-wrapper .about-item .about-image .shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .shape {
    display: none;
  }
}
.about-wrapper .about-item .about-image .about-image-2 {
  position: absolute;
  max-width: 300px;
  left: -180px;
  top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .about-image-2 {
    max-width: 250px;
    top: 0;
    left: 0;
  }
}
.about-wrapper .about-item .about-image .about-image-3 {
  position: absolute;
  max-width: 360px;
  left: -190px;
  bottom: -90px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .about-image-3 {
    max-width: 250px;
    bottom: 0;
    left: 0;
  }
}

.about-wrapper-2 .about-left-item {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-wrapper-2 .about-left-item .text {
  margin-top: 20px;
}
.about-wrapper-2 .about-left-item .about-image {
  position: relative;
  height: 100% !important;
}
.about-wrapper-2 .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: 16/9;
}
.about-wrapper-2 .about-right-item {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-wrapper-2 .about-right-item .about-image {
  position: relative;
  height: 100%;
}
.about-wrapper-2 .about-right-item .about-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
.about-wrapper-2 .about-right-item .about-icon-main-item {
  margin-top: 40px;
  margin-left: 10px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item {
    margin-left: 0;
    margin-top: 30px;
  }
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
    gap: 40px;
  }
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item h5:hover {
  color: var(--theme);
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item p {
  max-width: 179px;
}
.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}

.about-wrapper-3 .about-content .text {
  max-width: 624px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.about-wrapper-3 .about-content .about-box {
  display: flex;
  gap: 20px;
  border-radius: 10px;
  padding: 20px 30px;
  background-color: var(--bg-light);
  width: 499px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-box {
    width: initial;
    padding: 20px 20px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-box {
    flex-wrap: wrap;
    padding: 20px 30px;
    gap: 20px;
  }
}
.about-wrapper-3 .about-content .about-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-2);
  border-radius: 100px;
}
.about-wrapper-3 .about-content .about-box .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.about-wrapper-3 .about-content .about-box .content h5 {
  margin-bottom: 5px;
}
.about-wrapper-3 .about-content .about-box .content p {
  max-width: 369px;
}
.about-wrapper-3 .about-content .about-box:hover .icon img {
  transform: scaleX(-1) !important;
}
.about-wrapper-3 .about-content .about-button-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-button-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-3 .about-content .about-button-item .theme-btn {
  background-color: var(--theme);
  color: var(--header);
}
.about-wrapper-3 .about-content .about-button-item .theme-btn::before {
  background-color: var(--theme-2);
}
.about-wrapper-3 .about-content .about-button-item .theme-btn:hover {
  color: var(--white);
}
.about-wrapper-3 .about-content .about-button-item .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-wrapper-3 .about-image {
  position: relative;
}
.about-wrapper-3 .about-image .shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .shape {
    display: none;
  }
}
.about-wrapper-3 .about-image .circle-image {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 100%;
  background-color: var(--theme-2);
  position: absolute;
  right: 0;
  text-align: center;
  bottom: 0;
}
.about-wrapper-3 .about-image .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}
.about-wrapper-3 .about-image .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-wrapper-3 .about-image .about-image-2 {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: -28%;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 21%;
    left: 0;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 130px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 89px;
  }
}
.about-wrapper-3 .about-image .about-image-2 img {
  border-radius: 0;
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0;
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-x {
  0% {
    transform: translateX(30px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounce-x {
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 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 rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes borderAnim {
  0% {
    width: 0;
  }
  100% {
    width: 44px;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }
  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(30);
    opacity: 0;
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.banner-image {
  position: relative;
  height: 330px;
}
.banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 193, 7, 0.3);
  opacity: 0.6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: left center;
  z-index: 1;
}
.banner-image .icon {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.banner-image:hover::before {
  transform: scale(1, 1);
  transform-origin: left center;
}
.banner-image:hover .icon {
  opacity: 1;
}

.contact-wrapper .contact-image {
  margin-left: -175px;
  margin-top: -120px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1899px) {
  .contact-wrapper .contact-image {
    margin-left: -310px;
  }
}
@media (max-width: 1600px) {
  .contact-wrapper .contact-image {
    margin-left: -280px;
  }
}
@media (max-width: 1399px) {
  .contact-wrapper .contact-image {
    margin-left: 0;
    margin-top: 0;
  }
}
.contact-wrapper .contact-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
}
.contact-wrapper .contact-content {
  margin-left: 30px;
}
@media (max-width: 1899px) {
  .contact-wrapper .contact-content {
    padding-top: 110px;
  }
}
@media (max-width: 1399px) {
  .contact-wrapper .contact-content {
    margin-left: 0;
    padding-top: 0;
  }
}
.contact-wrapper .contact-content .logo-image {
  margin-bottom: 20px;
}
@media (max-width: 1899px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1600px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 33px;
  }
}
@media (max-width: 991px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 25px;
  }
}
@media (max-width: 1899px) {
  .contact-wrapper .contact-content .section-title h2 br {
    display: none;
  }
}
.contact-wrapper .contact-content .text {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact-wrapper .contact-content .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .contact-wrapper .contact-content .contact-item {
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-content .contact-item .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.contact-wrapper .contact-content .contact-item .theme-btn::before {
  background-color: var(--theme-2);
}
.contact-wrapper .contact-content .contact-item .theme-btn:hover {
  color: var(--white);
}
.contact-wrapper .contact-content .contact-item h6 a {
  color: var(--white);
}
.contact-wrapper .contact-content .contact-item h6 span {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}
.contact-wrapper:hover .contact-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.contact-section {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .contact-section {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 991px) {
  .contact-section {
    padding-bottom: 80px !important;
  }
}
.contact-section .container-fluid {
  padding: 0 175px;
}
@media (max-width: 1600px) {
  .contact-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .contact-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .contact-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .contact-section .container-fluid {
    padding: 0 15px;
  }
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  z-index: -1;
  top: 120px;
}
@media (max-width: 1399px) {
  .contact-section::before {
    top: initial;
  }
}

.contact-us-wrapper .contact-us-content .text {
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact-us-wrapper .contact-us-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.contact-us-wrapper .contact-us-content .theme-btn::before {
  background-color: var(--theme-2);
}
.contact-us-wrapper .contact-us-content .theme-btn:hover {
  color: var(--white);
}
.contact-us-wrapper .contact-us-item .form-clt input,
.contact-us-wrapper .contact-us-item .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  font-size: 16px;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
}
.contact-us-wrapper .contact-us-item .form-clt input::-moz-placeholder, .contact-us-wrapper .contact-us-item .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.contact-us-wrapper .contact-us-item .form-clt input::placeholder,
.contact-us-wrapper .contact-us-item .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-us-wrapper .contact-us-item .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.contact-us-wrapper-2 .contact-us-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-light);
  padding: 25px;
  margin-bottom: 20px;
  max-width: 420px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper-2 .contact-us-box {
    display: grid;
  }
}
@media (max-width: 991px) {
  .contact-us-wrapper-2 .contact-us-box {
    max-width: initial;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .contact-us-wrapper-2 .contact-us-box {
    display: grid;
  }
}
.contact-us-wrapper-2 .contact-us-box .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: var(--theme-2);
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.contact-us-wrapper-2 .contact-us-box .icon i {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.contact-us-wrapper-2 .contact-us-box .contact-us-content span {
  color: var(--header);
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper-2 .contact-us-box .contact-us-content h5 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .contact-us-wrapper-2 .contact-us-box .contact-us-content h5 br {
    display: initial;
  }
}
.contact-us-wrapper-2 .contact-us-box:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}
.contact-us-wrapper-2 .contact-us-box:hover .icon i {
  transform: scaleX(-1) !important;
  filter: brightness(0) invert(1);
}
.contact-us-wrapper-2 .from-fill-up-box {
  border: 1px solid #C9C9C9;
  padding: 50px 40px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper-2 .from-fill-up-box {
    padding: 30px;
  }
}
.contact-us-wrapper-2 .from-fill-up-box h4 {
  margin-bottom: 40px;
}
.contact-us-wrapper-2 .from-fill-up-box .form-clt input,
.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg-light);
  color: var(--text);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  border-radius: 10px;
}
.contact-us-wrapper-2 .from-fill-up-box .form-clt input::-moz-placeholder, .contact-us-wrapper-2 .from-fill-up-box .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.contact-us-wrapper-2 .from-fill-up-box .form-clt input::placeholder,
.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}
.contact-us-wrapper-2 .from-fill-up-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.contact-us-wrapper-2 .from-fill-up-box .theme-btn::before {
  background-color: var(--theme-2);
}
.contact-us-wrapper-2 .from-fill-up-box .theme-btn:hover {
  color: var(--white);
}

.cta-wrapper {
  text-align: center;
  padding-bottom: 195px;
}
@media (max-width: 1399px) {
  .cta-wrapper {
    padding-bottom: 150px;
  }
}
.cta-wrapper .cta-content .circle-image {
  position: relative;
  margin-bottom: 30px;
}
.cta-wrapper .cta-content .circle-image img {
  animation: cir36 10s linear infinite;
}
.cta-wrapper .cta-content .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .cta-wrapper .cta-content .section-title h2 br {
    display: none;
  }
}
.cta-wrapper .cta-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}
.cta-wrapper .cta-content .theme-btn::before {
  background-color: var(--white);
}
.cta-wrapper .cta-content .theme-btn:hover {
  color: var(--theme-2);
}

.cta-section {
  position: relative;
}
.cta-section .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1600px) {
  .cta-section .left-shape {
    top: 30px;
  }
  .cta-section .left-shape img {
    max-width: 380px;
  }
}
@media (max-width: 1399px) {
  .cta-section .left-shape {
    display: none;
  }
}
.cta-section .love-shape {
  position: absolute;
  left: 294px;
  bottom: 100px;
}
@media (max-width: 1600px) {
  .cta-section .love-shape {
    left: 150px;
  }
}
@media (max-width: 1399px) {
  .cta-section .love-shape {
    display: none;
  }
}
.cta-section .top-shape {
  position: absolute;
  top: 85px;
  right: 20%;
}
@media (max-width: 1600px) {
  .cta-section .top-shape {
    right: 14%;
  }
}
@media (max-width: 1399px) {
  .cta-section .top-shape {
    display: none;
  }
}
.cta-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .cta-section .right-shape img {
    max-width: 380px;
  }
}
@media (max-width: 1399px) {
  .cta-section .right-shape {
    display: none;
  }
}

.cta-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  border-radius: 20px;
  background-color: var(--header);
}
@media (max-width: 1399px) {
  .cta-contact-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}
.cta-contact-wrapper .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #C9C9C9;
  padding-right: 40px;
  height: 114px;
}
@media (max-width: 1399px) {
  .cta-contact-wrapper .contact-item {
    border-right: none;
    padding-right: 0;
    height: initial;
  }
}
.cta-contact-wrapper .contact-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--theme);
  color: var(--theme);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cta-contact-wrapper .contact-item .icon:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.cta-contact-wrapper .contact-item .content h6 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 5px;
}
.cta-contact-wrapper .contact-item .content h4 {
  color: var(--white);
}
.cta-contact-wrapper .contact-item .content h4 a {
  color: var(--white);
}
.cta-contact-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-contact-wrapper .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.cta-contact-wrapper .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.cta-contact-section-2 {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .cta-contact-section-2 {
    overflow: hidden;
  }
}
.cta-contact-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #0F0F0F;
  z-index: -1;
  bottom: -50%;
  top: initial;
}
.cta-contact-section-2 .top-shape {
  position: absolute;
  bottom: -90px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .cta-contact-section-2 .top-shape {
    display: none;
  }
}

.cta-bg-section-4 {
  position: relative;
  background-attachment: fixed;
}
.cta-bg-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.cta-bg-wrapper-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.cta-bg-wrapper-4 .cta-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-bg-wrapper-4 .cta-content p {
  color: var(--white);
  max-width: 500px;
}
.cta-bg-wrapper-4 .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.cta-bg-wrapper-4 .theme-btn::before {
  background-color: var(--white);
}

.donation-wrapper {
  margin-bottom: 20px;
}
.donation-wrapper .donation-card-item {
  gap: 30px;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: 1;
}
@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .donation-wrapper .donation-card-item {
    flex-wrap: initial;
  }
}
@media (max-width: 575px) {
  .donation-wrapper .donation-card-item {
    flex-wrap: wrap;
  }
}
.donation-wrapper .donation-card-item .donation-image {
  position: relative;
}
@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: 100%;
  }
}
@media (max-width: 991px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: initial;
  }
}
@media (max-width: 575px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: 100%;
  }
}
.donation-wrapper .donation-card-item .donation-image img {
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: initial;
    height: initial;
  }
}
@media (max-width: 575px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: 100%;
    height: 100%;
  }
}
.donation-wrapper .donation-card-item .donation-image .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}
.donation-wrapper .donation-card-item .donation-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.donation-wrapper .donation-card-item .donation-content h4 {
  margin-bottom: 10px;
  flex-grow: 1;
}
.donation-wrapper .donation-card-item .donation-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  flex-grow: 1;
}
.donation-wrapper .donation-card-item .donation-content h4 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.donation-wrapper .donation-card-item .donation-content p {
  max-width: 295px;
  margin-bottom: 20px;
}
.donation-wrapper .donation-card-item .donation-content .pro-items {
  width: 100%;
}
.donation-wrapper .donation-card-item .donation-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress {
  background-color: rgba(255, 193, 7, 0.2);
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress-value {
  background: var(--theme);
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress-value::before {
  background-color: var(--theme);
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress-value::before {
  background-color: #FF5528;
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress {
  background-color: rgba(129, 57, 231, 0.2);
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress-value {
  background: #8139E7;
}
.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress-value::before {
  background-color: #8139E7;
}
.donation-wrapper .donation-card-item .donation-content .pro-items .progress {
  background: rgba(11, 78, 61, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}
.donation-wrapper .donation-card-item .donation-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: var(--theme-2);
  height: 8px;
  width: 0;
  position: relative;
}
.donation-wrapper .donation-card-item .donation-content .pro-items .progress-value::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  content: "78%";
  color: var(--white);
  background-color: var(--theme-2);
  top: -6px;
  right: initial;
  width: 53px;
  height: 20px;
  line-height: 12px;
  padding: 5px 14px;
  z-index: 2;
  left: 90%;
}
.donation-wrapper .donation-card-item .donation-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.donation-wrapper .donation-card-item .donation-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .donation-wrapper .donation-card-item .donation-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.donation-wrapper .donation-card-item .donation-content .donate-list li {
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.donation-wrapper .donation-card-item .donation-content .donate-list li span {
  color: var(--header);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2:hover {
  color: var(--white);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3:hover {
  color: var(--white);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-4 {
  background-color: #8139E7;
  color: var(--white);
}
.donation-wrapper .donation-card-item .donation-content .theme-btn.style-4::before {
  background-color: var(--theme-2);
}

.donation-section {
  margin-bottom: -20px;
}

.donation-wrapper-2 {
  margin-bottom: 20px;
}
.donation-wrapper-2 .donation-card-item-2 {
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  position: relative;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.donation-wrapper-2 .donation-card-item-2 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.donation-wrapper-2 .donation-card-item-2 .donation-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  height: 100%;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content h5 {
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  flex-grow: 1;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content h5 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content p {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items {
  width: 100%;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-2 .progress {
  background-color: rgba(11, 78, 61, 0.2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-2 .progress-value {
  background: var(--theme-2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .progress {
  background-color: rgba(255, 85, 40, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: var(--theme);
  height: 8px;
  width: 0;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list li {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list li span {
  color: var(--header);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn {
  padding: 12px 30px;
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2:hover {
  color: var(--white);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}
.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3:hover {
  color: var(--white);
}
.donation-wrapper-2 .donation-card-item-2:hover {
  transform: translateY(-10px);
}
.donation-wrapper-2 .donation-card-item-2:hover .donation-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.donation-section-2 {
  margin-bottom: -20px;
}

.volounteer-wrapper-3 {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 40px 40px 40px 60px;
  position: relative;
}
@media (max-width: 1399px) {
  .volounteer-wrapper-3 {
    padding: 30px;
  }
}
.volounteer-wrapper-3 .volounteer-content .volounteer-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .volounteer-wrapper-3 .volounteer-content .volounteer-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}
.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2::before {
  background-color: var(--theme-2);
}
.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2:hover {
  color: var(--white);
}
.volounteer-wrapper-3 .volunteer-image {
  overflow: hidden;
  position: relative;
}
.volounteer-wrapper-3 .volunteer-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.volounteer-wrapper-3 .volunteer-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.volounteer-wrapper-3 .circle-image {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 100%;
  background-color: var(--theme-2);
  position: absolute;
  text-align: center;
  bottom: 70px;
  left: 44%;
  z-index: 999;
}
@media (max-width: 1199px) {
  .volounteer-wrapper-3 .circle-image {
    left: 46%;
  }
}
@media (max-width: 991px) {
  .volounteer-wrapper-3 .circle-image {
    left: 37%;
    bottom: 155px;
  }
}
@media (max-width: 767px) {
  .volounteer-wrapper-3 .circle-image {
    display: none;
  }
}
.volounteer-wrapper-3 .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}
.volounteer-wrapper-3 .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.volounteer-wrapper-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .volounteer-wrapper-3 .right-shape {
    display: none;
  }
}
.volounteer-wrapper-3:hover .volunteer-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.donation-card-items-3 {
  border-radius: 20px;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--bg-light);
  text-align: center;
}
.donation-card-items-3 .donation-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.donation-card-items-3 .donation-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.donation-card-items-3 .donation-content {
  margin-top: 20px;
}
.donation-card-items-3 .donation-content h5 {
  margin-bottom: 10px;
}
.donation-card-items-3 .donation-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  position: relative;
  z-index: 9999;
}
.donation-card-items-3 .donation-content h5 a:hover {
  color: #FF5528;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #FF5528 0%, #FF5528 100%);
}
.donation-card-items-3 .donation-content p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 15px;
}
.donation-card-items-3 .donation-content .link-btn {
  margin-top: 20px;
  color: #FD853E;
  display: inline-block;
}
.donation-card-items-3 .donation-content.style-2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.donation-card-items-3:hover .donation-image .donation-layer-wrapper .donation-layer-image {
  transform: translateY(-100%);
}

.donation-details-wrapper .donation-details-left h3 {
  margin-bottom: 20px;
}
.donation-details-wrapper .donation-details-left .list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.donation-details-wrapper .donation-details-left .list li {
  color: var(--header);
}
.donation-details-wrapper .donation-details-left .list li.style-2 {
  border-left: 1px solid var(--header);
  padding-left: 20px;
}
.donation-details-wrapper .donation-details-left .details-image {
  margin-top: 40px;
  margin-bottom: 20px;
}
.donation-details-wrapper .donation-details-left .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.donation-details-wrapper .donation-details-left .radius-box {
  border-radius: 100px;
  padding: 30px 30px 30px 48px;
  background-color: var(--bg);
  margin-top: 20px;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box {
    padding: 30px;
    border-radius: 20px;
  }
}
.donation-details-wrapper .donation-details-left .radius-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 5px;
  height: 120px;
  background-color: var(--theme-2);
  left: 60px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box::before {
    display: none;
  }
}
.donation-details-wrapper .donation-details-left .radius-box .box-ber {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box .box-ber {
    flex-wrap: wrap;
  }
}
.donation-details-wrapper .donation-details-left .donation-display {
  background: #f5f5f5;
  border-radius: 50px;
  padding: 20px 20px;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--theme-2);
  margin-bottom: 15px;
  width: 630px;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 460px;
  }
}
@media (max-width: 991px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 700px;
  }
}
@media (max-width: 767px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 350px;
  }
}
.donation-details-wrapper .donation-details-left .donation-display span {
  font-size: 24px;
  color: var(--theme-2);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-display span {
    font-size: 16px;
  }
}
.donation-details-wrapper .donation-details-left .donation-display .currency {
  background: var(--theme-2);
  color: var(--theme);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.donation-details-wrapper .donation-details-left .donation-options {
  display: flex;
  gap: 35px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-options {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.donation-details-wrapper .donation-details-left .donation-btn,
.donation-details-wrapper .donation-details-left #custom-btn {
  border: 1px solid #C9C9C9;
  background: transparent;
  padding: 8px 42px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-btn,
  .donation-details-wrapper .donation-details-left #custom-btn {
    padding: 8px 25px;
  }
}
.donation-details-wrapper .donation-details-left .donation-btn.active,
.donation-details-wrapper .donation-details-left #custom-btn.active {
  background: var(--theme-2);
  color: var(--white);
}
.donation-details-wrapper .donation-details-left .select-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .select-item {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.donation-details-wrapper .donation-details-left .select-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 10px;
  font-size: 16px;
}
.donation-details-wrapper .donation-details-left .select-item label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #afc5b7;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  outline-offset: 4px;
}
.donation-details-wrapper .donation-details-left .select-item label input[type=radio]:checked {
  background-color: #123b32;
  border-color: #123b32;
}
.donation-details-wrapper .donation-details-left .select-item label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
.donation-details-wrapper .donation-details-left .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.donation-details-wrapper .donation-details-left .theme-btn::before {
  background-color: var(--theme-2);
}
.donation-details-wrapper .donation-details-left .theme-btn:hover {
  color: var(--white);
}
.donation-details-wrapper .donation-details-left .text {
  border-top: 1px solid #C9C9C9;
  padding-top: 60px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .text {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.donation-details-wrapper .donation-details-left .form-clt input,
.donation-details-wrapper .donation-details-left .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg-light);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
}
.donation-details-wrapper .donation-details-left .form-clt input::-moz-placeholder, .donation-details-wrapper .donation-details-left .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.donation-details-wrapper .donation-details-left .form-clt input::placeholder,
.donation-details-wrapper .donation-details-left .form-clt textarea::placeholder {
  color: var(--text);
}
.donation-details-wrapper .donation-details-left .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}
.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box {
  background: var(--bg-light);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box {
    padding: 30px;
  }
}
.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4 {
  border-bottom: 4px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4::before {
    top: 48px;
  }
}
.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li {
  color: var(--header);
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li {
    font-size: 16px;
  }
}
.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li:not(:last-child) {
  margin-bottom: 30px;
}
.donation-details-wrapper .donation-details-sideber .text {
  border-bottom: 4px solid var(--bg-light);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.donation-details-wrapper .donation-details-sideber .text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .text::before {
    top: 48px;
  }
}
.donation-details-wrapper .donation-details-sideber .details-post-area .details-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .donation-details-wrapper .donation-details-sideber .details-post-area .details-items {
    flex-wrap: wrap;
  }
}
.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 {
    font-size: 20px;
  }
}
.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.donation-details-wrapper .donation-details-sideber .contact-bg {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  width: 450px;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .contact-bg {
    width: initial;
  }
}
.donation-details-wrapper .donation-details-sideber .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.58) 100%);
  z-index: -1;
  border-radius: 20px;
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content {
  padding: 80px 0;
  text-align: center;
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .icon {
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 100px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 45px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h5 {
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 10px;
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h6 {
  font-size: 20px;
  font-weight: 400;
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h6 a {
  color: var(--theme);
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}
.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .theme-btn::before {
  background-color: var(--white);
}

.upcoming-event-wrapper {
  margin-top: 60px;
}
.upcoming-event-wrapper .upcoming-event-image {
  margin-bottom: 20px;
}
.upcoming-event-wrapper .upcoming-event-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box {
  display: flex;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  border: 1px solid #C9C9C9;
  padding: 20px 30px;
  position: relative;
  transition: width 0.5s ease;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .upcoming-event-wrapper .upcoming-event-item .upcoming-event-box {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box {
  background-color: var(--theme-2);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .left-content span {
  color: var(--theme);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .left-content h4 {
  color: var(--theme);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .right-content h5 a {
  color: var(--theme);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .right-content .event-list li {
  color: var(--white);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-2);
  border-radius: 20px;
  z-index: 1;
  transition: width 0.5s ease;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .left-content {
  display: grid;
  border-right: 1px solid #C9C9C9;
  padding-right: 22px;
  transition: width 0.5s ease;
}
@media (max-width: 1399px) {
  .upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .left-content {
    padding-right: 0;
    border-right: none;
  }
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 {
  margin-bottom: 10px;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content .event-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content .event-list li i {
  margin-right: 5px;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover::before {
  width: 100%;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content {
  position: relative;
  z-index: 999;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content span {
  color: var(--white);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content h4 {
  color: var(--white);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content {
  position: relative;
  z-index: 999;
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content h5 a {
  color: var(--theme);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content h5 a:hover {
  color: var(--theme);
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content .event-list li {
  color: var(--white);
}
.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content .event-list li i {
  color: var(--white);
}

.event-inner-items {
  border-radius: 20px;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.event-inner-items .event-image {
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  aspect-ratio: 12/7;
}
.event-inner-items .event-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}
.event-inner-items .event-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.event-inner-items .event-image .event-tag {
  font-size: 14px;
  color: var(--white);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0px;
  border-top-right-radius: 10px;
  padding: 4px 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.event-inner-items .event-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-inner-items .event-content h5 {
  flex-grow: 1;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-inner-items .event-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
.event-inner-items .event-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.event-inner-items .event-content h4 {
  margin-bottom: 10px;
}
.event-inner-items .event-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-inner-items .event-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.event-inner-items .event-content h4 a.line-clamp-2 {
  height: 40px;
}
.event-inner-items .event-content p {
  margin-bottom: 1rem;
  flex-grow: 1;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-inner-items:hover .event-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}
.event-inner-items:hover .event-image img {
  transform: scale3d(1.1, 1.1, 1);
}

.event-list-items {
  border-radius: 20px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  align-items: unset;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .event-list-items {
    flex-wrap: wrap;
  }
}
.event-list-items .event-image {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .event-list-items .event-image {
    flex-basis: 100%;
  }
}
@media (min-width: 768px) {
  .event-list-items .event-image {
    max-width: 280px;
    min-width: 280px;
    border-radius: 20px 0 0 20px;
  }
}
.event-list-items .event-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}
.event-list-items .event-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 12/7;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.event-list-items .event-content {
  padding: 20px;
}
@media (max-width: 1399px) {
  .event-list-items .event-content {
    padding-left: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .event-list-items .event-content {
    padding: 20px;
  }
}
.event-list-items .event-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .event-list-items .event-content .event-list {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .event-list-items .event-content .event-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.event-list-items .event-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}
@media (max-width: 1399px) {
  .event-list-items .event-content .event-list li {
    font-size: 14px;
  }
}
.event-list-items .event-content h4 {
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .event-list-items .event-content h4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .event-list-items .event-content h4 {
    margin-bottom: 20px;
  }
}
.event-list-items .event-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.event-list-items .event-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.event-list-items .event-content p {
  margin-bottom: 25px;
  max-width: 518px;
}
@media (max-width: 1399px) {
  .event-list-items .event-content p {
    max-width: 475px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .event-list-items .event-content p {
    max-width: 518px;
    margin-bottom: 25px;
  }
}
.event-list-items:hover .event-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}
.event-list-items:hover .event-image img {
  transform: scale3d(1.1, 1.1, 1);
}
.event-list-items.type_1 {
  background-color: unset !important;
}

.event-details-wrapper .event-details-post .event-details-image {
  aspect-ratio: 16/9;
}
.event-details-wrapper .event-details-post .event-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.event-details-wrapper .event-details-post .event-details-content {
  margin-top: 30px;
}
.event-details-wrapper .event-details-post .event-details-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .event-details-wrapper .event-details-post .event-details-content .event-list {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .event-details-wrapper .event-details-post .event-details-content .event-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.event-details-wrapper .event-details-post .event-details-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.event-details-wrapper .event-details-post .event-details-content .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
  text-align: center;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box .client-image {
  margin-bottom: 10px;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box .user-content span {
  display: inline-block;
  margin-bottom: 30px;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box .user-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box .user-content .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.event-details-wrapper .event-main-sidebar .event-sideber-box .user-content .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.event-details-wrapper .event-main-sidebar .event-info-box {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
}
.event-details-wrapper .event-main-sidebar .event-info-box h3 {
  margin-bottom: 30px;
  position: relative;
}
.event-details-wrapper .event-main-sidebar .event-info-box h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--theme);
}
.event-details-wrapper .event-main-sidebar .event-info-box .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.event-details-wrapper .event-main-sidebar .event-info-box .info-item .icon {
  color: var(--theme);
}
.event-details-wrapper .event-main-sidebar .event-contact-box {
  text-align: center;
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 40px 35px;
}
.event-details-wrapper .event-main-sidebar .event-contact-box .icon {
  width: 76px;
  height: 76px;
  line-height: 76px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--theme-2);
  margin: 0 auto;
  font-size: 30px;
}
.event-details-wrapper .event-main-sidebar .event-contact-box h5 {
  margin-top: 15px;
}
.event-details-wrapper .event-main-sidebar .event-contact-box h6 {
  margin-top: 15px;
  margin-bottom: 40px;
}
.event-details-wrapper .event-main-sidebar .event-contact-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.event-details-wrapper .event-main-sidebar .event-contact-box .theme-btn::before {
  background-color: var(--theme-2);
}
.event-details-wrapper .event-main-sidebar .event-contact-box .theme-btn:hover {
  color: var(--white);
}

.dropdown.custom_drop {
  width: -moz-fit-content;
  width: fit-content;
}
.dropdown.custom_drop .btn {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 6px;
}
.dropdown.custom_drop .btn i {
  font-size: 18px;
  line-height: 1;
}
.dropdown.custom_drop .btn ~ .dropdown-menu {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-width: 100%;
}
.dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 6px 8px;
  white-space: normal;
}
.dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item:active, .dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item.active {
  background-color: var(--theme-2);
}
.dropdown.custom_drop .btn.btn-sm {
  padding: 8px 25px 8px 10px;
}
.dropdown.custom_drop .btn.btn-sm ~ .dropdown-menu .dropdown-item {
  font-size: 12px;
}
.dropdown.custom_drop .btn.just_icon {
  background: transparent;
  border: none;
  padding: 0;
}
.dropdown.custom_drop .btn.just_icon::after {
  display: none;
}
.dropdown.custom_drop .btn.just_icon ~ .dropdown-menu {
  min-width: 10rem;
}

.custom_calendar .date-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.custom_calendar .arrow {
  cursor: pointer;
  font-size: 24px;
  color: gray;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom_calendar .dates {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.custom_calendar .dates::-webkit-scrollbar {
  display: none;
}
.custom_calendar .date-box label {
  padding: 10px 10px;
  border-radius: 10px;
  text-align: center;
  min-width: 90px;
  cursor: pointer;
  background: var(--white);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.custom_calendar .date-box label:hover {
  background: var(--gray-15);
}
.custom_calendar .date-box label:hover h4 {
  color: var(--muted-color) !important;
}
.custom_calendar .date-box input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom_calendar .date-box input[type=radio]:checked + label {
  background: var(--gray-15);
}
.custom_calendar .date-box input[type=radio]:checked + label h4 {
  color: var(--muted-color) !important;
}

.custom_label_radio label {
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: #FFF;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
}
.custom_label_radio input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom_label_radio input:checked + label {
  border-color: var(--theme-2);
  border-radius: 8px;
}
.custom_label_radio input:checked + label.dynamic_border {
  border-color: var(--color, var(--theme-2)) !important;
}
.custom_label_radio input:checked + label.dynamic_border p,
.custom_label_radio input:checked + label.dynamic_border i {
  color: var(--white) !important;
}
.custom_label_radio.time_radio label {
  padding: 10px 6px;
}
.custom_label_radio.time_radio input:checked + label {
  border-color: var(--bs-border-color);
  background: var(--theme-2);
  color: var(--white) !important;
}

.select2-selection__arrow,
.dropdown-toggle {
  display: flex;
  align-items: center;
  padding-right: 25px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: block;
}
.select2-selection__arrow::after,
.dropdown-toggle::after {
  content: "\f107";
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 10px;
  border: 0;
  transition: top 0.1s ease-in;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.select2-selection__arrow.btn-sm::after,
.dropdown-toggle.btn-sm::after {
  font-size: 16px;
}

.calendar_design .fc-event {
  border-radius: 6px;
}
.calendar_design .fc-event-custom {
  padding: 4px 6px;
  font-size: 13px;
  line-height: 1.3;
  white-space: normal;
  overflow: hidden;
}
.calendar_design .fc-event-title {
  font-weight: 600;
}
.calendar_design .fc-event-desc {
  font-size: 12px;
  color: #333;
}

#compliance_calendar {
  --fc-event-bg-color: rgba(var(--bs-danger-rgb), .1);
  --fc-event-border-color: var(--bs-danger);
  --fc-event-text-color: var(--bs-danger);
}

.faq-wrapper .faq-items {
  position: relative;
  z-index: 9;
}
.faq-wrapper .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 5px;
  margin-bottom: 18px;
  background: var(--bg);
}
.faq-wrapper .faq-items .accordion .accordion-item h2 button {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  box-shadow: none;
  border-radius: 20px !important;
  padding: 16px;
  color: var(--header);
  cursor: pointer;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 0;
  background-color: white;
}
.faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: #666;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
  border-radius: 5px !important;
}
.faq-wrapper .faq-items .accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: var(--theme-2);
  color: var(--theme);
  border-radius: 5px !important;
}
.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  color: var(--theme);
  transform: rotate(0);
}
.faq-wrapper .faq-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-content {
    margin-left: 0;
  }
}
.faq-wrapper .faq-content .text {
  margin-top: 20px;
  margin-bottom: 30px;
}
.faq-wrapper .faq-content .faq-image {
  position: relative;
}
.faq-wrapper .faq-content .faq-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.faq-wrapper .faq-content .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.faq-wrapper .faq-content .faq-image .video-btn {
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 20px;
  height: 80px;
  width: 80px;
  line-height: 70px;
  border-radius: 100px;
  text-align: center;
  border: 6px solid var(--theme);
  position: absolute;
  bottom: 30px;
  left: 50px;
}
.faq-wrapper .faq-content:hover .faq-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.counter-wrapper .counter-image {
  position: relative;
  margin-left: -310px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-image {
    margin-left: 0;
  }
}
.counter-wrapper .counter-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.counter-wrapper .counter-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.counter-wrapper .counter-image .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-image .shape {
    display: none;
  }
}
.counter-wrapper .counter-content {
  margin-left: 100px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content {
    margin-left: 0;
  }
}
.counter-wrapper .counter-content .text {
  max-width: 555px;
  margin-top: 20px;
}
.counter-wrapper .counter-content .counter-main-item {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item {
    margin-top: 30px;
  }
}
.counter-wrapper .counter-content .counter-main-item::before {
  position: absolute;
  content: "";
  background-color: #C9C9C9;
  width: 1px;
  height: 260px;
  top: 0px;
  left: 47%;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item::before {
    display: none;
  }
}
.counter-wrapper .counter-content .counter-main-item .counter-item {
  display: flex;
  align-items: center;
  gap: 120px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 30px;
  margin-bottom: 30px;
  width: 502px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item {
    gap: 50px;
    flex-wrap: wrap;
    width: 310px;
  }
}
.counter-wrapper .counter-content .counter-main-item .counter-item.style-border {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.counter-wrapper .counter-content .counter-main-item .counter-item .content {
  flex-basis: 100%;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content {
    flex-basis: initial;
  }
}
.counter-wrapper .counter-content .counter-main-item .counter-item .content h2 {
  font-size: 64px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-content .counter-main-item .counter-item .content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content p {
    font-size: 16px;
  }
}
.counter-wrapper .counter-content .counter-main-item .counter-item .content.style-2 h2 {
  color: var(--theme);
}
.counter-wrapper .counter-content .counter-main-item .counter-item .content.style-2 p {
  color: var(--theme);
}
.counter-wrapper:hover .counter-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.counter-section {
  position: relative;
}
@media (max-width: 1399px) {
  .counter-section {
    padding: 100px 0;
  }
}
@media (max-width: 1399px) {
  .counter-section {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .counter-section {
    padding: 80px 0;
  }
}
.counter-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .counter-section .right-shape {
    display: none;
  }
}

.counter-main-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .counter-main-wrapper {
    margin-top: 30px;
  }
}
.counter-main-wrapper .map-shape {
  position: absolute;
  top: -75%;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .counter-main-wrapper .map-shape {
    display: none;
  }
}
.counter-main-wrapper p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.counter-main-wrapper .counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .counter-main-wrapper .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-main-wrapper .counter-wrapper-2 .counter-image img {
  width: 100%;
  height: 100%;
  border-radius: 150px;
}
.counter-main-wrapper .counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content h2 {
  font-size: 64px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content h2 {
    font-size: 40px;
  }
}
.counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content.style-2 {
  border-left: 1px solid #C9C9C9;
  padding-left: 60px;
}
@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content.style-2 {
    border-left: none;
    padding-left: 0;
  }
}

.counter-section-2 {
  position: relative;
  z-index: 9;
}
.counter-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: -20%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .counter-section-2 .right-shape {
    display: none;
  }
}

.feature-wrapper-3 .feature-content .text {
  max-width: 630px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.feature-wrapper-3 .feature-right-items {
  margin-left: 220px;
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items {
    margin-left: 0;
  }
}
.feature-wrapper-3 .feature-right-items .feature-image {
  max-width: 420px;
  position: relative;
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image {
    max-width: initial;
  }
}
.feature-wrapper-3 .feature-right-items .feature-image .content-item {
  display: grid;
  gap: 5px;
  position: absolute;
  top: 54px;
  left: -130px;
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item {
    top: 25px;
    left: -15px;
  }
}
.feature-wrapper-3 .feature-right-items .feature-image .content-item .content {
  display: grid;
  transform: rotate(-90deg);
}
.feature-wrapper-3 .feature-right-items .feature-image .content-item .content h5 {
  color: var(--theme);
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item .content h3 {
    color: var(--white);
  }
}
.feature-wrapper-3 .feature-right-items .feature-image .content-item h2 {
  font-size: 80px;
  transform: rotate(-90deg);
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item h2 {
    color: var(--white);
  }
}
.feature-wrapper-3 .feature-right-items .feature-image .feature-box {
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  max-width: initial;
  position: absolute;
  bottom: 20px;
  left: -210px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .feature-box {
    padding: 20px;
    bottom: 0;
    left: 0;
  }
}
.feature-wrapper-3 .feature-right-items .feature-image .feature-box h5 {
  margin-bottom: 10px;
}
.feature-wrapper-3 .feature-right-items .feature-image .feature-box p {
  max-width: 253px;
}
.feature-wrapper-3 .feature-right-items .feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.choose-us-wrapper-3 {
  margin-top: 60px;
}
.choose-us-wrapper-3 .choose-us-image {
  max-width: 540px;
  position: relative;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image {
    max-width: initial;
  }
}
.choose-us-wrapper-3 .choose-us-image .circle-image {
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -90px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .circle-image {
    right: 0;
    top: 100px;
  }
}
.choose-us-wrapper-3 .choose-us-image .circle-image .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background-color: var(--bg);
  color: var(--theme);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}
.choose-us-wrapper-3 .choose-us-image .circle-image img {
  border-radius: 190px;
  border: 8px solid var(--white);
}
.choose-us-wrapper-3 .choose-us-image .content-box {
  background-color: var(--theme);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  position: absolute;
  bottom: 70px;
  left: 70px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .content-box {
    bottom: 20px;
    left: 20px;
  }
}
.choose-us-wrapper-3 .choose-us-image .content-box .arrow-icon {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-image .content-box .arrow-icon i {
  transform: rotate(-30deg);
  font-size: 13px;
}
.choose-us-wrapper-3 .choose-us-image .content-box h6 {
  font-size: 14px;
  font-weight: 400;
}
.choose-us-wrapper-3 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.choose-us-wrapper-3 .choose-us-image .shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .shape {
    display: none;
  }
}
.choose-us-wrapper-3 .choose-us-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background-color: var(--white);
  padding: 23px 20px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-box {
    flex-wrap: wrap;
  }
}
.choose-us-wrapper-3 .choose-us-box.active-box {
  background-color: var(--theme-2);
}
.choose-us-wrapper-3 .choose-us-box.active-box .icon {
  background-color: var(--theme);
}
.choose-us-wrapper-3 .choose-us-box.active-box .content h5 {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box.active-box .content p {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-2);
  border-radius: 30px;
  z-index: 1;
  transition: width 0.5s ease;
}
.choose-us-wrapper-3 .choose-us-box .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--bg-light);
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
.choose-us-wrapper-3 .choose-us-box .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.choose-us-wrapper-3 .choose-us-box .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--theme);
  content: "";
  border-radius: 50%;
  transition: all 300ms ease;
  transform: scale(0);
}
.choose-us-wrapper-3 .choose-us-box .content h5 {
  margin-bottom: 5px;
}
.choose-us-wrapper-3 .choose-us-box .content p {
  max-width: 430px;
}
.choose-us-wrapper-3 .choose-us-box:hover::before {
  width: 100%;
}
.choose-us-wrapper-3 .choose-us-box:hover .icon img {
  transform: scaleX(-1) !important;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(120deg) contrast(130%) brightness(80%);
}
.choose-us-wrapper-3 .choose-us-box:hover .icon::after {
  transform: scale(1);
  z-index: -1;
}
.choose-us-wrapper-3 .choose-us-box:hover .content h5 {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.choose-us-wrapper-3 .choose-us-box:hover .content p {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.choose-us-section-3 {
  position: relative;
}
.choose-us-section-3 .top-shape {
  position: absolute;
  top: 50px;
  left: 30px;
}
@media (max-width: 1399px) {
  .choose-us-section-3 .top-shape {
    display: none;
  }
}
.choose-us-section-3 .left-shape {
  position: absolute;
  bottom: 34px;
  left: 30px;
}
@media (max-width: 1399px) {
  .choose-us-section-3 .left-shape {
    display: none;
  }
}
.choose-us-section-3 .right-shape {
  position: absolute;
  right: 60px;
  top: 60px;
}
@media (max-width: 1399px) {
  .choose-us-section-3 .right-shape {
    display: none;
  }
}

.feature-skill-content h6 {
  color: var(--theme);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-skill-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.feature-skill-content p {
  max-width: 590px;
  color: var(--white);
}
.feature-skill-content .progress-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .feature-skill-content .progress-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.feature-skill-content .progress-wrap .pro-items {
  width: 100%;
}
.feature-skill-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.feature-skill-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature-skill-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.feature-skill-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}
.feature-skill-content .progress-wrap .pro-items .progress {
  background: rgba(255, 255, 255, 0.2);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 22px;
  width: 100%;
}
.feature-skill-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--white);
  height: 22px;
  width: 0;
  border-radius: 10px;
}
.feature-skill-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
.feature-skill-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.feature-skill-content .theme-btn::before {
  background-color: var(--white);
}

.footer-widget-wrapper {
  padding: 50px 0 50px;
}
@media (max-width: 1600px) {
  .footer-widget-wrapper.widget-inner {
    padding: 90px 0;
  }
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.widget-inner {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.widget-inner {
    padding: 80px 0;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget {
    margin-top: 0;
  }
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h3 {
  font-size: 28px;
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .wid-title h3 {
    font-size: 20px;
  }
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .list-area li {
    font-size: 16px;
  }
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white-color);
}
.footer-widget-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  color: var(--theme);
  font-size: 16px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter {
  margin-top: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter p {
  max-width: 470px;
  color: var(--white-color);
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form {
  max-width: 424px;
  width: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt {
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  background: transparent;
  -webkit-backdrop-filter: blur(26px);
          backdrop-filter: blur(26px);
  color: var(--white-color);
  line-height: 1;
  padding: 20px;
  max-width: 442px;
  border: 1px solid #C9C9C9;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt input::-moz-placeholder {
  color: var(--white-color);
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt input::placeholder {
  color: var(--white-color);
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: var(--theme);
  border-radius: 0;
  background-color: transparent;
  border-left: 1px solid #D9D9D9;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
    border-left: none;
    border: 1px solid var(--white);
    border-radius: 10px;
  }
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn::before {
  border-radius: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn:hover {
  color: var(--theme-2);
}
@media (max-width: 470px) {
  .footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
    position: static;
    margin-top: 20px;
  }
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-left-content p {
  color: var(--white-color);
  max-width: 400px;
  margin-bottom: 40px;
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}
.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn::before {
  background-color: var(--theme-2);
}
.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn:hover {
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 {
    padding: 100px 0 70px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 {
    padding: 80px 0 70px;
  }
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
  color: var(--white-color);
  max-width: 400px;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
    font-size: 16px;
  }
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 0;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn::before {
  background-color: var(--theme-2);
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn:hover {
  color: var(--white-color);
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
  line-height: 162%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
    font-size: 16px;
  }
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li i {
  color: var(--theme);
  font-size: 16px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon a {
  color: var(--theme);
  font-size: 20px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon a:hover {
  color: var(--white-color);
}

.footer-bottom {
  border-top: 1px solid var(--white);
  padding: 30px 0;
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: var(--white-color);
}
.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}
.footer-bottom .footer-wrapper .footer-bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .footer-bottom-list {
    gap: 15px;
  }
}
.footer-bottom .footer-wrapper .footer-bottom-list li a {
  color: var(--white-color);
}
.footer-bottom .footer-wrapper .footer-bottom-list li a:hover {
  color: var(--theme);
}
.footer-bottom.style-2 {
  background-color: var(--theme-2);
  border-top: 1px none;
}
.footer-bottom.style-2 .footer-wrapper p {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
}
.footer-bottom.style-2 .footer-wrapper p span {
  color: var(--theme);
}
.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li {
  font-family: "Montserrat", sans-serif;
}
.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li a {
  color: var(--white-color);
}
.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li a:hover {
  color: var(--theme);
}

.footer-section-2 {
  position: relative;
}
.footer-section-2 .left-shape {
  position: absolute;
  left: 30px;
  top: 90px;
}
@media (max-width: 1600px) {
  .footer-section-2 .left-shape {
    left: 10px;
    top: 30px;
  }
  .footer-section-2 .left-shape img {
    width: 100px;
  }
}
@media (max-width: 1399px) {
  .footer-section-2 .left-shape {
    display: none;
  }
}
.footer-section-2 .right-shape {
  position: absolute;
  bottom: 44%;
  right: 30px;
}
@media (max-width: 1399px) {
  .footer-section-2 .right-shape {
    display: none;
  }
}

.footer-section-3 .container-fluid {
  padding: 0 90px;
}
@media (max-width: 1600px) {
  .footer-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .footer-section-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .footer-section-3 .container-fluid {
    padding: 0 15px;
  }
}

.footer-widget-wrapper-3 {
  padding: 120px 0 100px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 {
    padding: 80px 0 80px;
  }
}
.footer-widget-wrapper-3 .top-list {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #C9C9C9;
  padding-top: 60px;
  margin-top: 80px;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .top-list {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.footer-widget-wrapper-3 .top-list li {
  font-size: 24px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .top-list li {
    font-size: 16px;
  }
}
.footer-widget-wrapper-3 .top-list li a {
  position: relative;
  z-index: 999;
}
.footer-widget-wrapper-3 .top-list li a:hover {
  color: var(--theme);
}
.footer-widget-wrapper-3 .text {
  font-size: 200px;
  text-align: center;
  color: var(--header);
  opacity: 0.1;
}
@media (max-width: 1600px) {
  .footer-widget-wrapper-3 .text {
    font-size: 150px;
  }
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .text {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 .text {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .footer-widget-wrapper-3 .text {
    font-size: 38px;
  }
}

.footer-bottom-3 {
  border-top: 1px solid #C9C9C9;
  padding: 30px 0;
}
.footer-bottom-3 .footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom-3 .footer-wrapper-3 p {
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
.footer-bottom-3 .footer-wrapper-3 p span {
  color: var(--theme-2);
}
.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 .footer-bottom-list {
    gap: 15px;
  }
}
.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li {
  font-family: "Montserrat", sans-serif;
}
.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li a {
  color: var(--header);
}
.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li a:hover {
  color: var(--theme);
}

.header-top-section {
  background-color: var(--bg);
}
.header-top-section .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    display: none;
  }
}

.header-top-section-2 {
  background-color: var(--theme-2);
  position: relative;
}
.header-top-section-2 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-top-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-2 .container-fluid {
    display: none;
  }
}
.header-top-section-2.header-inner::before {
  display: none;
}

.header-top-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper .icon-items {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .header-top-wrapper .icon-items {
    border-right: none;
    padding-right: 0;
    height: initial;
  }
}
.header-top-wrapper .icon-items .header-logo {
  height: 65px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .header-top-wrapper .icon-items .header-logo {
    height: 45px;
  }
}
.header-top-wrapper .icon-items .header-logo.asidc_logo {
  height: 40px;
  max-width: 100px;
}
@media (max-width: 575px) {
  .header-top-wrapper .icon-items .header-logo.asidc_logo {
    height: 30px;
  }
}
.header-top-wrapper .icon-items .header-logo.main_logo {
  height: 60px;
}
.header-top-wrapper .icon-items .header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-top-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
  border: 1px solid var(--theme-2);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.header-top-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-wrapper-2 .header-left .list-icon {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-top-wrapper-2 .header-left .list-icon li {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
}
.header-top-wrapper-2 .header-left .list-icon li i {
  color: var(--white-color);
  margin-right: 8px;
}
.header-top-wrapper-2 .header-left .list-icon li a {
  color: var(--white-color);
}
.header-top-wrapper-2 .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper-2 .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.header-top-wrapper-2 .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.header-top-wrapper-2.inner .header-left {
  margin-left: 0;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  height: var(--navbar-height);
  display: flex;
  justify-content: space-between;
  padding: 0 0;
}
.header-main .main-menu #mobile-menu > ul > li > a {
  height: var(--navbar-height);
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  padding-inline-end: 30px;
}
@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    padding-inline-end: 20px;
  }
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  padding: 10px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase !important;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 12px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 320px;
  padding: 10px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: scaleY(0) translateZ(100px);
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 30px 8px 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 20px;
  padding: 0px 0px 0px 32px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize !important;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 50%;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme);
}
.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 {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  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;
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: 0px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    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%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white-color);
  position: relative;
  background-color: var(--theme) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--theme-2) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  height: 380%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 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;
  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%;
  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;
  font-weight: 600;
  color: var(--header);
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1) translateZ(0px);
}
.header-main .header-right {
  gap: 0;
  position: relative;
}
.header-main .header-right .search-toggler {
  text-align: center;
  color: var(--white-color);
  border-radius: 100px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .header-main .header-right .search-toggler {
    display: none;
  }
}
@media (max-width: 1399px) {
  .header-main .header-right .header-button {
    display: none;
  }
}
.header-main .header-right .header-button .theme-btn::before {
  background-color: var(--white);
}
.header-main .header-right .header-button .theme-btn:hover {
  color: var(--header);
}
.header-main .header-right .sidebar__toggle {
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--header);
  margin-left: 20px;
}

.header-1 {
  background-color: var(--theme-2);
}
.header-1 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-2 {
  position: relative;
  z-index: 9999;
}
.header-1.header-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  width: 387px;
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .header-1.header-2::before {
    display: none;
  }
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-left .logo .header-logo {
    display: none;
  }
}
.header-1.header-2 .header-main .header-left .logo .header-logo-2 {
  display: none;
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-left .logo .header-logo-2 {
    display: block;
  }
}
.header-1.header-2.header-3 {
  background-color: var(--bg);
}
.header-1.header-2.header-3::before {
  background-color: var(--theme);
}
@media (max-width: 1399px) {
  .header-1.header-2.header-3 .header-main .header-left .logo .header-logo {
    display: block;
  }
}
.header-1.header-2.header-3.header-inner::before {
  display: none;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--theme-2);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-2::before {
  display: none;
}
.sticky.header-2 .header-main .header-left .logo .header-logo {
  display: none;
}
.sticky.header-2 .header-main .header-left .logo .header-logo-2 {
  display: block;
}
.sticky.header-3 {
  background-color: var(--white) !important;
}
.sticky.header-3 .header-main .header-left .logo .header-logo {
  display: block;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  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);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--theme-2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.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);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.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;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  transition: all 0.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);
  color: var(--white-color);
}

.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 {
  padding: 10px 0;
  display: flex;
  justify-content: start;
  align-items: center;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #F5F5F5;
}
.breadcrumb-wrapper .breadcrumb-sub-title {
  display: none;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme-2);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: #a7a2a2;
  font-size: 10px;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: #a7a2a2;
}

.error-item .error-image img {
  width: 100%;
  height: 100%;
}
.error-item .error-content {
  text-align: center;
}
.error-item .error-content h2 {
  font-size: 64px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .error-item .error-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .error-item .error-content h2 {
    font-size: 35px;
  }
}
.error-item .error-content p {
  max-width: 649px;
  margin: 0 auto;
}
.error-item .error-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .error-item .error-content .theme-btn {
    margin-top: 30px;
  }
}
.error-item .error-content .theme-btn::before {
  background-color: var(--theme-2);
}
.error-item .error-content .theme-btn:hover {
  color: var(--white-color);
}

html {
  scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Scrollbar base (hidden by default) */
::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 12px;
}

/* Firefox support */
body {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
body:hover {
  scrollbar-color: var(--theme) var(--bg);
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons {
    flex-wrap: wrap;
  }
}
.array-buttons .array-prev {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
  border: 1px solid var(--header);
  font-weight: 600;
}
.array-buttons .array-prev i {
  margin-left: 5px;
  transform: rotate(45deg);
}
.array-buttons .array-prev:hover {
  background: var(--theme-2);
  color: var(--header);
  border: 1px solid var(--theme-2);
}
.array-buttons .array-next {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--header);
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
}
.array-buttons .array-next i {
  margin-left: 5px;
  transform: rotate(-45deg);
}
.array-buttons .array-next:hover {
  background: var(--header);
  color: var(--white);
}

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}
.array-buttons-2 .array-prev {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--header);
  color: #00E5FF;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.array-buttons-2 .array-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.array-buttons-2 .array-next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background: #2ADDC8;
  color: var(--header);
  transition: all 0.3s ease-in-out;
}
.array-buttons-2 .array-next:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-4 {
    flex-wrap: wrap;
  }
}
.array-buttons-4 .array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.array-buttons-4 .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.array-buttons-4 .array-next:hover {
  background: var(--bg);
  border: 1px none;
  color: var(--white);
}

.swiper-dot {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--theme-2);
  opacity: 1;
  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);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 30px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot-2 {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid var(--header);
  opacity: 1;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--header);
  transition: 0.6s;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.page-nav-wrap {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .page-nav-wrap {
    margin-top: 20px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme-2);
  color: var(--header);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background: linear-gradient(180deg, #1539EE 0%, #2ADDC8 100%);
  color: var(--white);
  border-radius: 10px;
}
.page-nav-wrap ul li .page-numbers.style-2 {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  border: 1px solid var(--header);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background: var(--theme-2);
  color: var(--white);
  border: 1px solid var(--theme-2);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.home_banner {
  position: relative;
  padding: 180px 0;
  min-height: calc(100vh - var(--navbar-height) - 121px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .home_banner {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .home_banner {
    padding: 80px 0;
  }
}
.home_banner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 999;
}
.home_banner.no_content::before {
  background: transparent;
}
.home_banner .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transition: all 8s ease-out 0s;
  z-index: 9;
}
.home_banner .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
@media (max-width: 1199px) {
  .home_banner .shape {
    display: none;
  }
}
.home_banner .hero-content {
  position: relative;
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: end;
  align-items: end;
}
@media (max-width: 767px) {
  .home_banner .hero-content {
    text-align: center;
  }
}
.home_banner .hero-content h6 {
  color: var(--theme);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.home_banner .hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}
.home_banner .hero-content p {
  max-width: 722px;
  color: var(--white);
  margin: 0 auto;
}
.home_banner .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .home_banner .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .home_banner .hero-content .hero-button {
    justify-content: center;
  }
}
.home_banner .hero-content .hero-button .theme-btn.border-btn {
  background-color: transparent;
  border: 1px solid var(--white);
}
.home_banner .hero-content .hero-button .theme-btn.border-btn:hover {
  border: 1px solid var(--theme);
}

.hero-section-1 {
  position: relative;
}
.hero-section-1 .swiper-slide.swiper-slide-active .hero-bg {
  transform: scale(1.19);
}
@media (max-width: 1199px) {
  .hero-section-1 .arrow-button {
    display: none;
  }
}
.hero-section-1 .arrow-button .array-prev {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme-2);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
  color: var(--theme);
  font-size: 18px;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
.hero-section-1 .arrow-button .array-prev:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.hero-section-1 .arrow-button .array-next {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background-color: var(--theme-2);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
}
.hero-section-1 .arrow-button .array-next:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.hero-2 {
  padding: 180px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 80px 0;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.51) 30.29%, rgba(0, 0, 0, 0.37) 39.42%, rgba(0, 0, 0, 0) 55.77%);
  z-index: -1;
}
.hero-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .hero-2 .left-shape {
    display: none;
  }
}
.hero-2 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .hero-2 .right-shape {
    display: none;
  }
}
.hero-2 .left-shape-2 {
  position: absolute;
  left: 100px;
  bottom: 290px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .hero-2 .left-shape-2 {
    display: none;
  }
}
.hero-2 .hero-content h4 {
  color: var(--theme);
  text-transform: uppercase;
}
.hero-2 .hero-content h1 {
  color: var(--white);
  font-size: 110px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 110px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 35px;
  }
}
.hero-2 .hero-content .hero-button-item {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.hero-2 .hero-content .hero-button-item .theme-btn {
  background-color: var(--theme);
  color: #0F0F0F;
}
.hero-2 .hero-content .hero-button-item .theme-btn::before {
  background-color: var(--header);
}
.hero-2 .hero-content .hero-button-item .theme-btn:hover {
  color: var(--white);
}
.hero-2 .hero-content .hero-button-item .button-text {
  display: flex;
  align-items: center;
}
.hero-2 .hero-content .hero-button-item .button-text .video-btn {
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100px;
  text-align: center;
}
.hero-2 .hero-content .hero-button-item .button-text span {
  font-size: 14px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.hero-3 {
  padding: 80px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-3 {
    padding: 80px 0;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(11, 78, 61, 0.9) 0%, rgba(11, 78, 61, 0.9) 100%);
  z-index: -1;
}
.hero-3 .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}
.hero-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-3 .right-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .hero-3 .right-shape {
    display: none;
  }
}
.hero-3 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .hero-3 .left-shape {
    display: none;
  }
}
.hero-3 .box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 46px;
  padding: 20px 30px;
  background-color: var(--white);
  position: absolute;
  bottom: 175px;
  left: 49%;
  z-index: 99;
}
@media (max-width: 1199px) {
  .hero-3 .box {
    display: none;
  }
}
.hero-3 .box .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
}
.hero-3 .box .icon img {
  width: initial;
  height: initial;
}
.hero-3 .box .content h6 {
  font-weight: 400;
}
.hero-3 .box .content span {
  font-family: "Montserrat", sans-serif;
  color: var(--header);
}
.hero-3 .shape-1 {
  position: absolute;
  left: 48%;
  top: 120px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-3 .shape-1 {
    display: none;
  }
}
.hero-3 .shape-1 img {
  width: initial;
  height: initial;
}
.hero-3 .shape-2 {
  position: absolute;
  bottom: 185px;
  right: 77px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-3 .shape-2 {
    display: none;
  }
}
.hero-3 .shape-2 img {
  width: initial;
  height: initial;
}
.hero-3 .hero-content h6 {
  color: var(--theme);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-3 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 68px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-3 .hero-content h1 span {
  color: var(--theme);
}
.hero-3 .hero-content p {
  max-width: 730px;
  color: var(--white);
}
.hero-3 .hero-content .hero-button-item {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.hero-3 .hero-content .hero-button-item .theme-btn {
  background-color: var(--theme);
  color: #0F0F0F;
}
.hero-3 .hero-content .hero-button-item .theme-btn::before {
  background-color: var(--header);
}
.hero-3 .hero-content .hero-button-item .theme-btn:hover {
  color: var(--white);
}
.hero-3 .hero-content .hero-button-item .button-text {
  display: flex;
  align-items: center;
}
.hero-3 .hero-content .hero-button-item .button-text .video-btn {
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100px;
  text-align: center;
}
@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button-item .button-text .video-btn.ripple::before {
    display: none;
  }
  .hero-3 .hero-content .hero-button-item .button-text .video-btn.ripple::after {
    display: none;
  }
}
.hero-3 .hero-content .hero-button-item .button-text span {
  font-size: 14px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.hero-3 .hero-image {
  max-width: 790px;
  position: relative;
  margin-left: 80px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-image {
    margin-left: 0;
  }
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-image-slider {
  margin-right: -100px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-image-slider {
    margin-right: 0;
  }
}
.hero-3 .swiper-dot {
  position: absolute;
  right: 150px;
  bottom: 60px;
}
@media (max-width: 991px) {
  .hero-3 .swiper-dot {
    display: none;
  }
}

.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;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
@media (max-width: 991px) {
  .mean-container .mean-nav > ul .submenu li.has-dropdown {
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .mean-container .mean-nav > ul .submenu li.has-dropdown .submenu {
    padding-left: 15px;
  }
  .mean-container .mean-nav > ul .submenu li.has-dropdown .submenu li a {
    color: var(--black);
  }
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--black);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.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;
  font-size: 18px;
}

.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);
  transition: all 0.3s 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;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.news-card-items .news-image .bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-card-items .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-card-items .news-content {
  margin-top: 20px;
}
.news-card-items .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}
.news-card-items .news-content .news-meta li {
  font-family: "Montserrat", sans-serif;
}
.news-card-items .news-content .news-meta li i {
  margin-right: 8px;
}
.news-card-items .news-content h4 {
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.news-card-items .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-content h4 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.news-card-items:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}
.news-card-items:hover .news-image img {
  transform: scale3d(1.1, 1.1, 1);
}

.news-card-items-2 {
  margin-top: 30px;
}
.news-card-items-2 .news-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.news-card-items-2 .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-card-items-2 .news-content {
  margin-top: 20px;
}
.news-card-items-2 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}
.news-card-items-2 .news-content .news-meta li {
  font-family: "Montserrat", sans-serif;
}
.news-card-items-2 .news-content .news-meta li i {
  margin-right: 8px;
}
.news-card-items-2 .news-content h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
@media (max-width: 1399px) {
  .news-card-items-2 .news-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .news-card-items-2 .news-content h3 {
    font-size: 20px;
  }
}
.news-card-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-2 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-2 .news-content p {
  max-width: 645px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .news-card-items-2 .news-content p {
    margin-bottom: 30px;
  }
}
.news-card-items-2:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}
.news-card-items-2:hover .news-image img {
  transform: scale3d(1.1, 1.1, 1);
}

.news-card-items-3 {
  margin-top: 30px;
  border-radius: 20px;
  background-color: var(--white);
  position: relative;
  z-index: 999;
  overflow: hidden;
}
.news-card-items-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--theme-2);
  border-radius: 20px;
  z-index: -1;
  transition: height 0.5s ease;
}
.news-card-items-3 .news-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.news-card-items-3 .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-card-items-3 .news-content {
  padding: 30px;
}
.news-card-items-3 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}
.news-card-items-3 .news-content .news-meta li {
  font-family: "Montserrat", sans-serif;
}
.news-card-items-3 .news-content .news-meta li i {
  margin-right: 8px;
}
.news-card-items-3 .news-content h4 {
  margin-bottom: 30px;
}
.news-card-items-3 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--theme-2);
}
.news-card-items-3 .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-3:hover .news-content {
  position: relative;
  z-index: 999;
}
.news-card-items-3:hover .news-content .news-meta li {
  color: var(--white);
}
.news-card-items-3:hover .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
  position: relative;
  z-index: 9999;
}
.news-card-items-3:hover .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-3:hover .news-content .theme-btn {
  position: relative;
  z-index: 999;
  background-color: var(--theme);
  color: var(--theme-2);
}
.news-card-items-3:hover .news-content .theme-btn::before {
  background-color: var(--white);
}
.news-card-items-3:hover::before {
  height: 100%;
}
.news-card-items-3:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}
.news-card-items-3:hover .news-image img {
  transform: scale3d(1.1, 1.1, 1);
}

.news-section-3 {
  position: relative;
}
.news-section-3 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .news-section-3 .left-shape {
    display: none;
  }
}
.news-section-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .news-section-3 .right-shape {
    display: none;
  }
}

.news-standard-wrapper .news-grid-items {
  margin-bottom: 48px;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items {
    margin-bottom: 30px;
  }
}
.news-standard-wrapper .news-grid-items .news-image {
  overflow: hidden;
  border-radius: 20px;
}
.news-standard-wrapper .news-grid-items .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 20px;
}
.news-standard-wrapper .news-grid-items .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-standard-wrapper .news-grid-items .news-content .date-list li i {
  margin-right: 10px;
}
.news-standard-wrapper .news-grid-items .news-content h3 {
  margin-bottom: 10px;
  font-size: 32px;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 20px;
  }
}
.news-standard-wrapper .news-grid-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-wrapper .news-grid-items .news-content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.news-standard-wrapper .news-grid-items .news-content p {
  margin-bottom: 30px;
}
.news-standard-wrapper .news-grid-items:hover .news-image img {
  transform: scale3d(1.1, 1.1, 1);
}

.main-sidebar .single-sidebar-widget {
  padding: 18px 16px;
  margin-bottom: 30px;
  background-color: var(--bg-light);
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .main-sidebar .single-sidebar-widget {
    padding: 25px 24px;
  }
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 10px;
}
.main-sidebar .single-sidebar-widget .search-widget .search_wrap {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget .search_wrap input {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 14px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sidebar .single-sidebar-widget .search-widget .search_wrap button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 40px;
  font-size: 14px;
  height: 100%;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sidebar .single-sidebar-widget .search-widget .search_wrap button:hover {
  background-color: var(--header);
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item {
  display: flex;
  align-items: center;
  align-items: center;
  line-height: 1.5;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  min-height: 50px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 0;
  transition: width 0.5s ease;
  border-radius: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item.active {
  background-color: var(--theme-2) !important;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item .nav-link {
  color: var(--header);
  border: none;
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  font-size: 14px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: wrap;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item .nav-link.active {
  background-color: var(--theme-2) !important;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item span {
  transition: all 0.3s ease-in-out;
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item:not(:last-child) {
  margin-bottom: 16px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item:hover::before {
  width: 100%;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item:hover a {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul .nav-item:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  margin-bottom: 10px;
  line-height: 133%;
  font-weight: 400;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.main-sidebar .single-sidebar-widget .tagcloud a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 0;
  transition: width 0.5s ease;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  color: var(--white);
  z-index: 999;
  position: relative;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover::before {
  width: 100%;
  z-index: -1;
}

.news-details-wrapper .news-details-post .news-details-image {
  aspect-ratio: 16/9;
}
.news-details-wrapper .news-details-post .news-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-details-wrapper .news-details-post .news-details-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .date-list li i {
  margin-right: 10px;
  color: var(--theme);
}
.news-details-wrapper .news-details-post .news-details-content .sideber {
  border-left: 5px solid var(--theme-2);
  padding: 40px 30px;
  background-color: var(--bg-light);
  margin-top: 30px;
  margin-bottom: 60px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .sideber {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .news-details-list-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .news-details-list-items {
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item {
  display: flex;
  justify-content: space-between;
}
.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li {
    font-size: 16px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li i {
  font-family: "Montserrat", sans-serif;
  color: var(--theme);
}
.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li:not(:last-child) {
  margin-bottom: 30px;
}
.news-details-wrapper .news-details-post .news-details-content .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--bg-light);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
  }
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  line-height: 36px;
  text-align: center;
  background-color: var(--bg);
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.news-details-wrapper .news-details-post .news-details-content .contact-from-box {
  margin-top: 60px;
  padding: 40px;
  background-color: var(--bg-light);
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .contact-from-box {
    margin-top: 30px;
    padding: 30px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt input,
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
}
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt input::-moz-placeholder, .news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt input::placeholder,
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.comment-area .comment-item {
  display: flex;
  align-items: center;
  align-items: start;
  gap: 20px;
}
@media (max-width: 991px) {
  .comment-area .comment-item {
    flex-wrap: wrap;
  }
}
.comment-area .comment-item .client-image {
  width: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  border: 1px dashed var(--theme-2);
  padding: 8px;
  border-radius: 100%;
}
.comment-area .comment-item .client-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.comment-area .comment-item .comment-content h4 {
  margin-bottom: 10px;
}
.comment-area .comment-item .comment-content p {
  margin-bottom: 0;
}
.comment-area .comment-item .comment-content .comment-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
.comment-area .comment-item .comment-content .comment-list li i {
  margin-right: 8px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  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 "Montserrat", sans-serif, "Nunito", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-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);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: -3px;
  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: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--theme-2);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme-2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  border-radius: 50%;
  -khtml-transform: scale(0);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../../assets/img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -khtml-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.3s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -khtml-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.pricing-wrapper {
  margin-top: 60px;
}
.pricing-wrapper .pricing-card-item-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 110px 110px 0;
  border-radius: 0 110px 110px 0;
  border: 1px solid #C9C9C9;
  padding: 40px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .pricing-wrapper .pricing-card-item-2 {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 10px;
  }
}
.pricing-wrapper .pricing-card-item-2 .content h3 {
  margin-bottom: 10px;
}
.pricing-wrapper .pricing-card-item-2 .content p {
  max-width: 366px;
}
.pricing-wrapper .pricing-card-item-2 .number {
  font-size: 36px;
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 100%;
  background-color: var(--theme);
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .pricing-wrapper .pricing-card-item-2 .number {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 25px;
  }
}
.pricing-wrapper .pricing-card-item-2 .number::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--theme-2);
  content: "";
  border-radius: 50%;
  transition: all 300ms ease;
  transform: scale(0);
}
.pricing-wrapper .pricing-card-item-2:hover .number {
  color: var(--white);
}
.pricing-wrapper .pricing-card-item-2:hover .number::after {
  transform: scale(1);
  z-index: -1;
}
.pricing-wrapper .pricing-right-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 110px 0 0 110px;
  border: 1px solid #C9C9C9;
  padding: 40px 80px 40px 60px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .pricing-wrapper .pricing-right-card {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 10px;
  }
}
.pricing-wrapper .pricing-right-card .pricing-list {
  border-right: 1px solid #D9D9D9;
  padding-right: 30px;
}
@media (max-width: 1399px) {
  .pricing-wrapper .pricing-right-card .pricing-list {
    border-right: none;
    padding-right: 0;
  }
}
.pricing-wrapper .pricing-right-card .pricing-list li {
  font-family: "Montserrat", sans-serif;
}
.pricing-wrapper .pricing-right-card .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-wrapper .pricing-right-card .pricing-list li i {
  margin-right: 6px;
  color: var(--theme-2);
}
.pricing-wrapper .pricing-right-card .pricing-button .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.pricing-wrapper .pricing-right-card .pricing-button .theme-btn::before {
  background-color: var(--theme-2);
}
.pricing-wrapper .pricing-right-card .pricing-button .theme-btn:hover {
  color: var(--white);
}

.project-card-item {
  margin-top: 30px;
}
.project-card-item .project-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.project-card-item .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.project-card-item .project-image .project-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  left: 40px;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.project-card-item .project-image .project-content.style-2 {
  flex-direction: row-reverse;
}
.project-card-item .project-image .project-content.style-2 .content h5 {
  text-align: left;
}
.project-card-item .project-image .project-content .content h3 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  .project-card-item .project-image .project-content .content h3 {
    font-size: 25px;
  }
}
.project-card-item .project-image .project-content .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-item .project-image .project-content .content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.project-card-item .project-image .project-content .arrow-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--theme-2);
  transition: all 0.3s ease-in-out;
}
.project-card-item .project-image .project-content .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.project-card-item .project-image .project-content .arrow-icon:hover {
  background-color: var(--white);
  color: var(--theme-2);
  border: 1px solid var(--white);
}
.project-card-item .project-image .project-content .arrow-icon:hover i {
  transform: rotate(0);
}
.project-card-item .project-image .shape-image {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  left: -30px;
  bottom: 0;
  max-width: 580px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 580 166"><path fill-rule="evenodd" clip-rule="evenodd"  d="M2.39423 2.39423H24.0276C24.4094 2.39423 24.7903 2.35863 25.1655 2.28789L34.3657 0.55312C35.5707 0.325895 36.5161 1.57489 35.9701 2.67296C35.4831 3.65253 36.1868 4.80453 37.2807 4.81838L349.977 8.77885C349.977 8.77885 361.087 8.77884 353.151 14.3654C345.215 19.9519 332.517 21.5481 332.517 21.5481H324.432C322.977 21.5481 321.556 21.9806 320.347 22.7906C318.508 24.0238 316.21 24.36 314.094 23.7054L307.814 21.7622C307.373 21.6256 306.895 21.6788 306.494 21.9089C305.054 22.7366 305.601 24.9328 307.26 25.0119L502.347 34.3173C558.207 36.9817 531.658 37.47 511.767 37.5305C538.049 38.4126 447.294 45.9424 434.73 46.9704C433.802 47.0464 432.993 47.5249 432.454 48.2839C431.059 50.2475 432.286 52.9605 434.687 53.1501C444.177 53.8994 464.226 55.0375 477.746 52.6731C495.999 49.4808 480.115 56.6888 482.507 58.2596C487.179 61.3264 491.513 56.4453 496.792 58.2596C500.212 59.4351 501.2 62.2596 504.728 63.0481C507.148 63.589 508.627 62.6626 511.077 63.0481C516.282 63.8672 518.004 67.6939 522.981 69.4327C533.52 73.1147 536.472 66.2404 551.55 69.4327C563.541 71.9714 542.91 72.9959 533.958 73.309C531.49 73.3954 529.15 74.4016 527.408 76.1533C526.58 76.9863 525.584 77.7894 524.417 77.6557C522.851 77.4763 521.386 76.4965 519.806 77.4135C517.643 78.6698 516.695 80.488 516.632 83C516.499 88.2967 528.917 77.8425 530.123 83C530.407 84.2135 529.978 84.9542 530.123 86.1923C531.119 94.7057 548.161 89.4454 554.636 87.1246C556.289 86.5324 558.005 86.1387 559.691 85.6472C561.343 85.1652 563.101 84.3282 562.661 83C562.238 81.7241 564.294 81.8081 566.307 82.1649C568.649 82.58 571.017 82.8995 573.395 82.8873C579.162 82.8577 587.752 83.6301 565.835 90.1827C536.472 98.9615 526.155 95.7692 516.632 95.7692C513.006 95.7692 512.141 96.6948 512.461 97.8412C513.525 101.662 518.75 102.154 522.716 102.154H551.55L488.033 109.165C486.996 109.279 485.951 109.302 484.909 109.345C482.552 109.442 478.308 109.975 477.746 112.529C477.255 114.759 480.074 116.247 482.637 117.123C485.116 117.97 487.785 117.8 490.362 117.332C495.407 116.417 503.447 115.351 502.347 118.115C500.76 122.106 462.667 119.712 462.667 122.106C462.667 124.5 461.697 125.741 462.667 127.692C464.608 131.595 472.069 123.682 473.778 127.692C474.634 129.701 476.358 131.803 478.49 131.332C484.481 130.008 493.764 128.487 491.237 132.481C489.669 134.958 486.477 135.673 483.545 135.673H469.81C459.493 135.673 465.842 140.462 469.81 140.462H510.12C511.767 140.462 513.364 141.025 514.648 142.058C515.932 143.091 517.531 143.654 519.178 143.654H552.393C553.417 143.654 554.44 143.728 555.446 143.918C558.015 144.406 562.452 145.451 557.106 146.048C549.963 146.846 544.408 146.846 526.155 148.442C507.902 150.038 538.059 150.038 526.155 152.433C514.251 154.827 557.106 150.837 557.106 150.837L536.856 155.2C535.624 155.466 534.605 156.328 534.14 157.498C533.622 158.801 532.426 159.709 531.032 159.859L513.43 161.756C511.924 161.918 510.546 162.677 509.604 163.862C508.529 165.213 506.897 166 505.17 166H20C8.9543 166 0 157.046 0 146V4.78846C0 3.46616 1.07193 2.39423 2.39423 2.39423Z" /></svg>');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 580 166"><path fill-rule="evenodd" clip-rule="evenodd"  d="M2.39423 2.39423H24.0276C24.4094 2.39423 24.7903 2.35863 25.1655 2.28789L34.3657 0.55312C35.5707 0.325895 36.5161 1.57489 35.9701 2.67296C35.4831 3.65253 36.1868 4.80453 37.2807 4.81838L349.977 8.77885C349.977 8.77885 361.087 8.77884 353.151 14.3654C345.215 19.9519 332.517 21.5481 332.517 21.5481H324.432C322.977 21.5481 321.556 21.9806 320.347 22.7906C318.508 24.0238 316.21 24.36 314.094 23.7054L307.814 21.7622C307.373 21.6256 306.895 21.6788 306.494 21.9089C305.054 22.7366 305.601 24.9328 307.26 25.0119L502.347 34.3173C558.207 36.9817 531.658 37.47 511.767 37.5305C538.049 38.4126 447.294 45.9424 434.73 46.9704C433.802 47.0464 432.993 47.5249 432.454 48.2839C431.059 50.2475 432.286 52.9605 434.687 53.1501C444.177 53.8994 464.226 55.0375 477.746 52.6731C495.999 49.4808 480.115 56.6888 482.507 58.2596C487.179 61.3264 491.513 56.4453 496.792 58.2596C500.212 59.4351 501.2 62.2596 504.728 63.0481C507.148 63.589 508.627 62.6626 511.077 63.0481C516.282 63.8672 518.004 67.6939 522.981 69.4327C533.52 73.1147 536.472 66.2404 551.55 69.4327C563.541 71.9714 542.91 72.9959 533.958 73.309C531.49 73.3954 529.15 74.4016 527.408 76.1533C526.58 76.9863 525.584 77.7894 524.417 77.6557C522.851 77.4763 521.386 76.4965 519.806 77.4135C517.643 78.6698 516.695 80.488 516.632 83C516.499 88.2967 528.917 77.8425 530.123 83C530.407 84.2135 529.978 84.9542 530.123 86.1923C531.119 94.7057 548.161 89.4454 554.636 87.1246C556.289 86.5324 558.005 86.1387 559.691 85.6472C561.343 85.1652 563.101 84.3282 562.661 83C562.238 81.7241 564.294 81.8081 566.307 82.1649C568.649 82.58 571.017 82.8995 573.395 82.8873C579.162 82.8577 587.752 83.6301 565.835 90.1827C536.472 98.9615 526.155 95.7692 516.632 95.7692C513.006 95.7692 512.141 96.6948 512.461 97.8412C513.525 101.662 518.75 102.154 522.716 102.154H551.55L488.033 109.165C486.996 109.279 485.951 109.302 484.909 109.345C482.552 109.442 478.308 109.975 477.746 112.529C477.255 114.759 480.074 116.247 482.637 117.123C485.116 117.97 487.785 117.8 490.362 117.332C495.407 116.417 503.447 115.351 502.347 118.115C500.76 122.106 462.667 119.712 462.667 122.106C462.667 124.5 461.697 125.741 462.667 127.692C464.608 131.595 472.069 123.682 473.778 127.692C474.634 129.701 476.358 131.803 478.49 131.332C484.481 130.008 493.764 128.487 491.237 132.481C489.669 134.958 486.477 135.673 483.545 135.673H469.81C459.493 135.673 465.842 140.462 469.81 140.462H510.12C511.767 140.462 513.364 141.025 514.648 142.058C515.932 143.091 517.531 143.654 519.178 143.654H552.393C553.417 143.654 554.44 143.728 555.446 143.918C558.015 144.406 562.452 145.451 557.106 146.048C549.963 146.846 544.408 146.846 526.155 148.442C507.902 150.038 538.059 150.038 526.155 152.433C514.251 154.827 557.106 150.837 557.106 150.837L536.856 155.2C535.624 155.466 534.605 156.328 534.14 157.498C533.622 158.801 532.426 159.709 531.032 159.859L513.43 161.756C511.924 161.918 510.546 162.677 509.604 163.862C508.529 165.213 506.897 166 505.17 166H20C8.9543 166 0 157.046 0 146V4.78846C0 3.46616 1.07193 2.39423 2.39423 2.39423Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.project-card-item:hover .project-image img {
  transform: scale3d(1.1, 1.1, 1);
}
.project-card-item:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.project-card-item:hover .project-image .shape-image {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.causes-card-items-2 {
  --br-card: 20px 20px 10px 0;
  margin-top: 20px;
  height: 100%;
  aspect-ratio: 9/12;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
  background: linear-gradient(60deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: var(--br-card);
  position: relative;
}
.causes-card-items-2 .causes-image {
  position: relative;
  z-index: 9;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.causes-card-items-2 .causes-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20.31%, rgba(0, 0, 0, 0.8) 96.63%);
  border-radius: var(--br-card);
}
.causes-card-items-2 .causes-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: var(--br-card);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
}
.causes-card-items-2 .causes-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--br-card);
  width: 100%;
  height: 100%;
}
.causes-card-items-2 .causes-image .causes-content {
  position: absolute;
  bottom: 0px;
  left: 40px;
  transition: all 0.4s ease;
  z-index: 2;
}
@media (max-width: 1600px) {
  .causes-card-items-2 .causes-image .causes-content {
    left: 20px;
    bottom: -20px;
  }
}
.causes-card-items-2 .causes-image .causes-content h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.causes-card-items-2 .causes-image .causes-content h4 a {
  font-size: calc(1rem + 0.35vw);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.causes-card-items-2 .causes-image .causes-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.causes-card-items-2 .causes-image .causes-content .content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.causes-card-items-2 .causes-image .causes-content .content p {
  max-width: 100%;
  line-height: 1.5;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 3rem;
}
.causes-card-items-2 .causes-image .causes-content .content .link-btn {
  color: var(--white);
}
.causes-card-items-2 .causes-image .causes-content .content .link-btn:hover {
  color: var(--theme);
}
.causes-card-items-2:hover .causes-image::after {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.causes-card-items-2:hover .causes-image .causes-content {
  transform: translateY(-60px);
  z-index: 999;
}
@media (max-width: 1600px) {
  .causes-card-items-2:hover .causes-image .causes-content {
    transform: translateY(-80px);
  }
}
.causes-card-items-2:hover .causes-image .causes-content .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.causes-card-items-2:hover .causes-image .causes-content .content p {
  margin-bottom: 5px;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 3rem;
}

.causes-section-2 {
  position: relative;
}
.causes-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .causes-section-2 .left-shape {
    display: none;
  }
}
.causes-section-2 .container-fluid {
  padding: 0 75px;
}
@media (max-width: 1600px) {
  .causes-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .causes-section-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .causes-section-2 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .causes-section-2 .arrow-button {
    display: none;
  }
}
.causes-section-2 .arrow-button .array-prev {
  left: 25px;
  top: 50%;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme-2);
  color: var(--white);
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.causes-section-2 .arrow-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}
.causes-section-2 .arrow-button .array-next {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-2);
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.causes-section-2 .arrow-button .array-next:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}
.causes-section-2 .causes-button {
  text-align: center;
  margin-top: 60px;
}
.causes-section-2 .causes-button .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.causes-section-2 .causes-button .theme-btn::before {
  background-color: var(--theme-2);
}
.causes-section-2 .causes-button .theme-btn:hover {
  color: var(--white);
}

.causes-card-item-3 {
  border-radius: 20px;
  padding: 30px;
  background-color: var(--bg-light);
  margin-top: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .causes-card-item-3 {
    padding: 25px;
  }
}
.causes-card-item-3 .causes-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.causes-card-item-3 .causes-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.causes-card-item-3 .causes-content {
  margin-top: 20px;
}
.causes-card-item-3 .causes-content h4 {
  margin-bottom: 20px;
}
.causes-card-item-3 .causes-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.causes-card-item-3 .causes-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.causes-card-item-3 .causes-content p {
  max-width: 380px;
  margin-bottom: 20px;
}
.causes-card-item-3 .causes-content .pro-items {
  width: 100%;
}
.causes-card-item-3 .causes-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.causes-card-item-3 .causes-content .pro-items.style-2 .progress {
  background-color: rgba(255, 193, 7, 0.2);
}
.causes-card-item-3 .causes-content .pro-items.style-2 .progress-value {
  background: var(--theme);
}
.causes-card-item-3 .causes-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}
.causes-card-item-3 .causes-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}
.causes-card-item-3 .causes-content .pro-items .progress {
  background-color: rgba(129, 57, 231, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}
.causes-card-item-3 .causes-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: #8139E7;
  height: 8px;
  width: 0;
}
.causes-card-item-3 .causes-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.causes-card-item-3 .causes-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .causes-card-item-3 .causes-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.causes-card-item-3 .causes-content .donate-list li {
  font-size: 16px;
  font-weight: 400;
}
.causes-card-item-3 .causes-content .theme-btn {
  padding: 12px 30px;
  background-color: #8139E7;
  color: var(--white);
}
.causes-card-item-3 .causes-content .theme-btn::before {
  background-color: var(--theme);
}
.causes-card-item-3 .causes-content .theme-btn:hover {
  color: var(--white);
}
.causes-card-item-3 .causes-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}
.causes-card-item-3 .causes-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}
.causes-card-item-3 .causes-content .theme-btn.style-2:hover {
  color: var(--white);
}
.causes-card-item-3 .causes-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}
.causes-card-item-3 .causes-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}
.causes-card-item-3 .causes-content .theme-btn.style-3:hover {
  color: var(--white);
}
.causes-card-item-3:hover {
  transform: translateY(-10px);
}
.causes-card-item-3:hover .causes-image .causes-layer-wrapper .causes-layer-image {
  transform: translateY(-100%);
}

.causes-details-wrapper .causes-details-post .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.causes-details-wrapper .causes-details-post .details-content {
  margin-top: 30px;
}
.causes-details-wrapper .causes-details-post .details-content .cause-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-list {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.causes-details-wrapper .causes-details-post .details-content .cause-list li {
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
.causes-details-wrapper .causes-details-post .details-content .cause-list li i {
  margin-right: 8px;
}
.causes-details-wrapper .causes-details-post .details-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-post .details-content h2 {
    font-size: 25px;
  }
}
.causes-details-wrapper .causes-details-post .details-content p {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content p {
    margin-bottom: 30px;
  }
}
.causes-details-wrapper .causes-details-post .details-content .cause-lis-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-lis-items {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: var(--header);
}
@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li {
    font-size: 16px;
  }
}
.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li svg {
  margin-right: 10px;
}
.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li:not(:last-child) {
  margin-bottom: 30px;
}
.causes-details-wrapper .causes-details-post .details-content .cause-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area {
    margin-top: 30px;
  }
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
    flex-wrap: wrap;
  }
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .client-image {
  border: 1px dashed var(--theme-2);
  padding: 8px;
  border-radius: 100%;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .client-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content h4 {
  margin-bottom: 10px;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content p {
  margin-bottom: 0;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content .comment-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content .comment-list li i {
  margin-right: 8px;
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box {
  background: var(--bg-light);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box {
    padding: 30px;
  }
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4 {
  border-bottom: 4px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4::before {
    top: 48px;
  }
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li {
  color: var(--header);
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li {
    font-size: 16px;
  }
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:not(:last-child) {
  margin-bottom: 30px;
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li span {
  transition: all 0.3s ease-in-out;
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:hover a {
  color: var(--theme);
}
.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:hover span {
  color: var(--theme);
}
.causes-details-wrapper .causes-details-sideber .text {
  border-bottom: 4px solid var(--bg-light);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.causes-details-wrapper .causes-details-sideber .text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .text::before {
    top: 48px;
  }
}
.causes-details-wrapper .causes-details-sideber .details-post-area .details-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .causes-details-wrapper .causes-details-sideber .details-post-area .details-items {
    flex-wrap: wrap;
  }
}
.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 {
    font-size: 20px;
  }
}
.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.causes-details-wrapper .causes-details-sideber .contact-bg {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  width: 450px;
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg {
    width: initial;
  }
}
.causes-details-wrapper .causes-details-sideber .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(11, 78, 61, 0.6) 0%, rgba(11, 78, 61, 0.6) 100%);
  z-index: -1;
  border-radius: 20px;
}
.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content {
  padding: 80px 0;
  text-align: center;
}
.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h6 {
  font-size: 14px;
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 10px;
}
.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
  font-size: 40px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
    font-size: 30px;
  }
}
.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}
.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content .theme-btn::before {
  background-color: var(--white);
}

section {
  background: var(--white);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-title {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-2);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid var(--header);
  padding: 8px 18px;
  border-radius: 100px;
  padding-left: 25px;
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 10px;
  }
}
.section-title .sub-title::before {
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: var(--text-2);
  left: 0;
  position: absolute;
  content: "";
  top: 12px;
  left: 13px;
}
.section-title .sub-title.type-2 {
  font-size: 10px;
  padding: 6px 15px;
  margin-bottom: 10px;
}
.section-title .sub-title.type-2::before {
  display: none;
}
.section-title h2 span {
  text-transform: uppercase;
}
.section-title.style-2 h2 {
  font-size: 45px;
}
@media (max-width: 1399px) {
  .section-title.style-2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .section-title.style-2 h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .section-title.style-2 h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section-title.style-2 h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-title.style-2 h2 {
    font-size: 25px;
  }
}
@media (max-width: 470px) {
  .section-title.style-2 h2 {
    font-size: 22px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg-2) !important;
}

.section-bg-1 {
  background-color: var(--bg) !important;
}

.section-bg-2 {
  background-color: var(--bg-light);
}

.header-bg {
  background-color: var(--header);
}

.footer-bg-2 {
  background-color: #0F0F0F;
}

.section-padding {
  padding: 60px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
}

.causes-section {
  margin: 0 40px;
  border-radius: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .causes-section {
    margin: 0 30px;
  }
}
@media (max-width: 767px) {
  .causes-section {
    margin: 0 15px;
  }
}
.causes-section .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .causes-section .shape {
    display: none;
  }
}

.causes-box-item {
  text-align: center;
  margin-top: 30px;
  z-index: 9;
  padding: 0 40px 40px 40px;
  position: relative;
}
.causes-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: var(--white);
  top: 80px;
  z-index: -1;
  height: 353px;
}
@media (max-width: 1399px) {
  .causes-box-item::before {
    height: 388px;
  }
}
.causes-box-item::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  border-radius: 20px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  height: 353px;
}
@media (max-width: 1399px) {
  .causes-box-item::after {
    height: 388px;
  }
}
.causes-box-item .icon {
  width: 150px;
  height: 150px;
  line-height: 130px;
  text-align: center;
  border-radius: 100%;
  border: 10px solid var(--white);
  margin: 0 auto;
  background-color: var(--bg);
  transition: all 0.3s ease-in-out;
}
.causes-box-item .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.causes-box-item .content h3 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.causes-box-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.causes-box-item .content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.causes-box-item .content p {
  max-width: 340px;
  margin: 0 auto;
}
.causes-box-item .content .theme-btn {
  margin-top: 30px;
}
.causes-box-item .content .theme-btn::before {
  background-color: var(--theme-2);
}
.causes-box-item .content .theme-btn:hover {
  color: var(--theme);
}
.causes-box-item:hover::after {
  transform: scale(1, 1);
  transform-origin: top center;
}
.causes-box-item:hover .content p {
  color: var(--header);
}
.causes-box-item:hover .icon {
  border: 10px solid var(--theme);
}
.causes-box-item:hover .icon img {
  transform: scaleX(-1) !important;
}

.service-card-items-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: var(--white);
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .service-card-items-3 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    justify-content: center;
  }
}
.service-card-items-3 .service-content {
  padding: 40px 0 40px 40px;
}
@media (max-width: 1399px) {
  .service-card-items-3 .service-content {
    padding: 0;
  }
}
.service-card-items-3 .service-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-2);
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 138px;
}
@media (max-width: 1399px) {
  .service-card-items-3 .service-content .icon {
    margin-bottom: 30px;
  }
}
.service-card-items-3 .service-content .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.service-card-items-3 .service-content .content h4 {
  color: var(--theme);
  margin-bottom: 10px;
}
.service-card-items-3 .service-content .content h5 {
  margin-bottom: 15px;
}
.service-card-items-3 .service-content .content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-card-items-3 .service-content .content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.service-card-items-3 .service-content .content p {
  max-width: 180px;
}
.service-card-items-3 .service-image {
  height: 460px;
  position: relative;
}
.service-card-items-3 .service-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-radius: 0 20px 20px 0;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}
@media (max-width: 1399px) {
  .service-card-items-3 .service-image {
    height: initial;
  }
}
.service-card-items-3 .service-image .icon {
  position: absolute;
  top: 40px;
  background-color: var(--theme);
  left: -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  border: 2px solid var(--white);
  z-index: 999;
}
.service-card-items-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1399px) {
  .service-card-items-3 .service-image img {
    border-radius: 20px;
  }
}
.service-card-items-3:hover .service-content .icon {
  background-color: var(--theme);
}
.service-card-items-3:hover .service-content .icon img {
  transform: scaleX(-1) !important;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(120deg) contrast(130%) brightness(80%);
}
.service-card-items-3:hover .service-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.service-section-3 .section-title-area .arrow-button {
  gap: 30px;
  display: flex;
  align-items: center;
}
.service-section-3 .section-title-area .arrow-button .array-prev {
  width: 80px;
  height: 80px;
  line-height: 85px;
  text-align: center;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid var(--theme-2);
  color: var(--theme-2);
  transition: all 0.3s ease-in-out;
  font-size: 24px;
}
.service-section-3 .section-title-area .arrow-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-section-3 .section-title-area .arrow-button .array-next {
  width: 80px;
  height: 80px;
  line-height: 85px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--theme);
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 24px;
}
.service-section-3 .section-title-area .arrow-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.service-section-3 .service-slider-3 {
  margin-right: -390px;
}
@media (max-width: 1600px) {
  .service-section-3 .service-slider-3 {
    margin-right: -150px;
  }
}
@media (max-width: 1399px) {
  .service-section-3 .service-slider-3 {
    margin-right: 0;
  }
}

.team-card-items {
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 9;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1399px) {
  .team-card-items {
    padding: 20px;
  }
}
.team-card-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: var(--bg-light);
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-card-items::before {
    height: initial;
    top: 0;
  }
}
.team-card-items .team-image {
  --size: 120px;
  overflow: hidden;
  border-radius: 100px;
  position: relative;
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  top: calc(-1 * var(--size) / 2);
}
.team-card-items .team-image.size_lg {
  --size: 130px;
}
@media (max-width: 1399px) {
  .team-card-items .team-image {
    border-radius: 100px;
  }
}
.team-card-items .team-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 154px;
  border: 3px solid var(--theme);
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
@media (max-width: 1399px) {
  .team-card-items .team-image img {
    border-radius: 1000px;
  }
}
.team-card-items .team-content {
  border-radius: 20px;
  background-color: var(--white);
  padding: 20px 10px;
  text-align: center;
  position: relative;
  z-index: 999;
  flex-grow: 1;
  margin-top: -35px;
  display: flex;
  flex-direction: column;
}
.team-card-items .team-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: 20px;
}
.team-card-items .team-content h6 {
  margin-bottom: 0;
  flex-grow: 1 !important;
}
.team-card-items .team-content h6 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-card-items .team-content h6 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.team-card-items .team-content p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
}
.team-card-items .team-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}
.team-card-items .team-content .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
}
.team-card-items .team-content .social-icon a:hover {
  color: var(--theme-2);
}
.team-card-items:hover .team-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.team-card-items:hover .team-image img {
  transform: scale3d(1.1, 1.1, 1);
}
.team-card-items:hover .team-content::before {
  top: auto;
  height: 100%;
}
.team-card-items:hover .team-content p {
  color: var(--theme-2);
}

.volounteer-inner-card {
  border: 1px solid var(--border);
  border-radius: 10px;
}
.volounteer-inner-card .volounteer-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.volounteer-inner-card .volounteer-image .shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.volounteer-inner-card .volounteer-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.volounteer-inner-card .volounteer-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 10px;
}
.volounteer-inner-card .volounteer-image .volounteer-content {
  text-align: center;
  position: relative;
  z-index: 999;
  position: absolute;
  bottom: 0px;
  left: 50px;
  right: 50px;
}
.volounteer-inner-card .volounteer-image .volounteer-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.volounteer-inner-card .volounteer-image .volounteer-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}
.volounteer-inner-card .volounteer-image .volounteer-content p {
  margin: 0 auto;
}
.volounteer-inner-card .volounteer-image .volounteer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  margin-bottom: -15px;
}
.volounteer-inner-card .volounteer-image .volounteer-content .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
}
.volounteer-inner-card .volounteer-image .volounteer-content .social-icon a:hover {
  color: var(--theme);
}
.volounteer-inner-card:hover .volounteer-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.volounteer-inner-card:hover .volounteer-image img {
  transform: scale3d(1.1, 1.1, 1);
}
.volounteer-inner-card:hover .volounteer-image .volounteer-content .social-icon {
  opacity: 1;
  visibility: visible;
  margin-bottom: 15px;
}

.volounteer-details-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .volounteer-details-wrapper {
    margin-bottom: 30px;
  }
}
.volounteer-details-wrapper .volounteer-details-left-item .details-image {
  position: relative;
  overflow: hidden;
}
.volounteer-details-wrapper .volounteer-details-left-item .details-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.volounteer-details-wrapper .volounteer-details-left-item .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.volounteer-details-wrapper .volounteer-details-left-item .details-list {
  margin-top: 30px;
}
.volounteer-details-wrapper .volounteer-details-left-item .details-list li {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-left-item .details-list li {
    font-size: 16px;
  }
}
.volounteer-details-wrapper .volounteer-details-left-item .details-list li span {
  color: var(--text);
}
.volounteer-details-wrapper .volounteer-details-left-item .details-list li:not(:last-child) {
  margin-bottom: 20px;
}
.volounteer-details-wrapper .volounteer-details-left-item:hover .details-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.volounteer-details-wrapper .volounteer-details-box {
  border-radius: 20px;
  padding: 40px 60px;
  background: var(--bg-light);
}
@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box {
    padding: 30px;
  }
}
.volounteer-details-wrapper .volounteer-details-box h3 {
  margin-bottom: 10px;
}
.volounteer-details-wrapper .volounteer-details-box .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.volounteer-details-wrapper .volounteer-details-box .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
  border: 1px solid var(--theme-2);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}
.volounteer-details-wrapper .volounteer-details-box .social-icon a:hover {
  color: var(--theme);
  background-color: var(--theme-2);
}
.volounteer-details-wrapper .volounteer-details-box h5 {
  margin-top: 20px;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap {
  margin-top: 30px;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items {
  width: 100%;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .progress {
  background: rgba(11, 78, 61, 0.2);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 5px;
  width: 100%;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-2);
  height: 5px;
  width: 0;
  border-radius: 10px;
}
.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
.volounteer-details-wrapper .volounteer-details-box .list-item {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box .list-item {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.volounteer-details-wrapper .volounteer-details-box .list-item .list li {
  color: var(--header);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box .list-item .list li {
    font-size: 16px;
  }
}
.volounteer-details-wrapper .volounteer-details-box .list-item .list li:not(:last-child) {
  margin-bottom: 15px;
}
.volounteer-details-wrapper .volounteer-details-box .list-item .list li i {
  margin-right: 5px;
}
.volounteer-details-wrapper .volounteer-details-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.volounteer-details-wrapper .volounteer-details-box .theme-btn::before {
  background-color: var(--theme-2);
}
.volounteer-details-wrapper .volounteer-details-box .theme-btn:hover {
  color: var(--white);
}

.volounteer-Experience-wrapper .contact-form-items p {
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .contact-form-items p {
    margin-bottom: 30px;
  }
}
.volounteer-Experience-wrapper .contact-form-items .form-clt input,
.volounteer-Experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: 1px solid #DEDEDE;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  color: #666;
  font-size: 16px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
}
.volounteer-Experience-wrapper .contact-form-items .form-clt input::-moz-placeholder, .volounteer-Experience-wrapper .contact-form-items .form-clt textarea::-moz-placeholder {
  color: #666;
}
.volounteer-Experience-wrapper .contact-form-items .form-clt input::placeholder,
.volounteer-Experience-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: #666;
}
.volounteer-Experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}
.volounteer-Experience-wrapper .volounteer-Experience-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .volounteer-Experience-content {
    margin-left: 0;
  }
}
.volounteer-Experience-wrapper .volounteer-Experience-content h3 {
  margin-bottom: 20px;
}
.volounteer-Experience-wrapper .volounteer-Experience-content .list li {
  color: var(--header);
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .volounteer-Experience-content .list li {
    font-size: 16px;
  }
}
.volounteer-Experience-wrapper .volounteer-Experience-content .list li svg {
  margin-right: 10px;
}
.volounteer-Experience-wrapper .volounteer-Experience-content .list li:not(:last-child) {
  margin-bottom: 25px;
}

.become-volounteer-wrapper .become-volounteer-content .text {
  margin-top: 20px;
}
.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .become-volounteer-wrapper .become-volounteer-content .become-volounteer-list {
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: var(--header);
}
@media (max-width: 575px) {
  .become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li {
    font-size: 16px;
  }
}
.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li svg {
  margin-right: 10px;
}
.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li:not(:last-child) {
  margin-bottom: 30px;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items {
  width: 100%;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  font-family: "Montserrat", sans-serif;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .progress {
  background: #667471;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--header);
  height: 10px;
  width: 0;
  border-radius: 10px;
}
.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
.become-volounteer-wrapper .from-box {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .become-volounteer-wrapper .from-box {
    margin-left: 0;
  }
}
.become-volounteer-wrapper .from-box p {
  max-width: 532px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.become-volounteer-wrapper .from-box .form-clt input,
.become-volounteer-wrapper .from-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid #C9C9C9;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  font-size: 16px;
  border-radius: 10px;
}
.become-volounteer-wrapper .from-box .form-clt input::-moz-placeholder, .become-volounteer-wrapper .from-box .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.become-volounteer-wrapper .from-box .form-clt input::placeholder,
.become-volounteer-wrapper .from-box .form-clt textarea::placeholder {
  color: var(--text);
}
.become-volounteer-wrapper .from-box .form-clt textarea {
  padding-bottom: 90px;
  resize: none;
}
.become-volounteer-wrapper .from-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}
.become-volounteer-wrapper .from-box .theme-btn::before {
  background-color: var(--theme-2);
}
.become-volounteer-wrapper .from-box .theme-btn:hover {
  color: var(--white);
}

.testimonial-wrapper {
  margin-top: 60px;
  position: relative;
}
.testimonial-wrapper::before {
  height: 601px;
  background-color: var(--bg);
  border-radius: 20px;
  width: 84%;
  left: 18%;
  top: 23px;
  position: absolute;
  content: "";
}
@media (max-width: 1399px) {
  .testimonial-wrapper::before {
    display: none;
  }
}
.testimonial-wrapper .testimonial-image {
  position: relative;
  z-index: 9;
}
.testimonial-wrapper .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 266.5px 266.5px;
}
.testimonial-wrapper .testimonial-image .shape {
  position: absolute;
  left: -32%;
  bottom: -30px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-image .shape {
    left: -9%;
  }
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-image .shape {
    display: none;
  }
}
.testimonial-wrapper .testimonial-content {
  padding: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content {
    padding: 30px;
    background-color: var(--bg);
    border-radius: 20px;
  }
}
.testimonial-wrapper .testimonial-content .content {
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content .content {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.testimonial-wrapper .testimonial-content .content .star {
  color: var(--theme);
}
.testimonial-wrapper .testimonial-content .content p {
  max-width: 666px;
  margin-bottom: 30px;
}
.testimonial-wrapper .testimonial-content h6 {
  color: var(--text);
  font-family: "Nunito", sans-serif;
  margin-bottom: 40px;
  position: relative;
}
.testimonial-wrapper .testimonial-content h6 span {
  color: var(--header);
}
.testimonial-wrapper .testimonial-content .brand-image {
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  opacity: 0.9;
}
.testimonial-wrapper .testimonial-content .brand-image:hover {
  filter: initial;
  opacity: 1;
}
.testimonial-wrapper .testimonial-content .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
  opacity: 1;
}

.testimonial-wrapper-2 {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-content .section-title h2 {
  font-size: 50px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 25px;
  }
}
.testimonial-wrapper-2 .testimonial-content .text {
  max-width: 533px;
  margin-top: 20px;
}
.testimonial-wrapper-2 .testimonial-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}
.testimonial-wrapper-2 .testimonial-content .theme-btn::before {
  background-color: var(--theme-2);
}
.testimonial-wrapper-2 .testimonial-content .theme-btn:hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-items {
    padding-bottom: 35px;
  }
}
.testimonial-wrapper-2 .testimonial-items .testimonial-box {
  background-color: var(--white);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box {
    padding: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item .star {
  color: var(--theme);
}
.testimonial-wrapper-2 .testimonial-items .testimonial-box p {
  max-width: 446px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box p {
    font-size: 14px;
  }
}
.testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info h5 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info span {
    font-size: 14px;
  }
}
.testimonial-wrapper-2 .testimonial-items #slider {
  position: relative;
  width: 70%;
  height: 357px;
  margin: 0px auto;
  font-family: sans-serif;
  perspective: 1200px;
  transform-style: preserve-3d;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    margin: 0px auto;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    height: 260px;
    margin: 0px auto;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    height: 330px;
  }
}
.testimonial-wrapper-2 .testimonial-items #slider input[type=radio] {
  display: none;
}
.testimonial-wrapper-2 .testimonial-items #slider label {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  transition: transform 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-wrapper-2 .testimonial-items #slider #s1:checked ~ #slide1,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked ~ #slide2,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked ~ #slide3 {
  transform: translate3d(0%, 0, 0px);
  z-index: 3;
}
.testimonial-wrapper-2 .testimonial-items #slider #s1:checked ~ #slide2,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked ~ #slide3,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked ~ #slide1 {
  transform: translate3d(15%, 0, -100px);
  z-index: 2;
}
.testimonial-wrapper-2 .testimonial-items #slider #s1:checked ~ #slide3,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked ~ #slide1,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked ~ #slide2 {
  transform: translate3d(-15%, 0, -100px);
  z-index: 1;
}

.testimonial-section-2 {
  margin-bottom: 120px;
}
@media (max-width: 1399px) {
  .testimonial-section-2 {
    overflow: hidden;
    margin-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-2 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-2 {
    margin-bottom: 80px;
  }
}

.testimonial-wrapper-3 .testimonial-item-3 {
  position: relative;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-image {
  max-width: 500px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-item-3 .testimonial-image {
    max-width: initial;
  }
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.testimonial-wrapper-3 .testimonial-item-3 .array-button {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  background-color: var(--white);
}
.testimonial-wrapper-3 .testimonial-item-3 .array-button .array-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme-2);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  z-index: 999;
}
.testimonial-wrapper-3 .testimonial-item-3 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper-3 .testimonial-item-3 .array-button .array-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme-2);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  z-index: 999;
}
.testimonial-wrapper-3 .testimonial-item-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box {
  border-radius: 20px;
  padding: 35px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content {
  height: 100%;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content .testimonia_rating {
  color: var(--theme);
  margin-bottom: 5px;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content p {
  max-width: 420px;
  margin-bottom: 30px;
  font-size: 14px;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content h4 {
  color: var(--theme-2);
  font-size: 16px;
}
.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content span {
  font-size: 14px;
  color: var(--colors-text-text-body);
}
.testimonial-wrapper-3 .testimonial-content .section-title h2 {
  font-size: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 25px;
  }
}
.testimonial-wrapper-3 .testimonial-content .text {
  margin-top: 20px;
  margin-bottom: 40px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .testimonial-count-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box {
  padding: 0px 0px;
  background-color: var(--bg) !important;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box {
    width: 200px;
  }
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--theme);
  border-radius: 10px;
  z-index: 1;
  transition: height 0.5s ease;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box .icon img {
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box h6 {
  font-weight: 400;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover::before {
  height: 100%;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover .icon {
  background-color: var(--theme-2);
  color: var(--white);
  position: relative;
  z-index: 999;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover .icon img {
  filter: brightness(0) invert(1);
  transform: scaleX(-1) !important;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover h2 {
  color: var(--theme-2);
  position: relative;
  z-index: 999;
}
.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover h6 {
  color: var(--theme-2);
  position: relative;
  z-index: 999;
}

:root {
  --control-height: 40px;
}

.append_nav {
  background: var(--white);
}

.control_section {
  width: 100%;
  background: var(--bs-gray-200);
  padding: 0;
  height: var(--control-height);
  z-index: 999;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 5px;
}
@media (max-width: 575px) {
  .control_section {
    font-size: 13px;
  }
}
.control_section .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1399px) {
  .control_section .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 1399px) {
  .control_section .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .control_section .container-fluid {
    padding: 0 15px;
  }
}

#mainContent {
  scroll-margin-top: 330px;
}

body.high_contrast {
  --bs-body-bg: #202020;
  --white: #272727;
  --bg: #170d0d;
  --yellow: #ffff00;
  --white-color: #ffff00;
  --bs-body-color: #ffff00;
  --text: #e1e11a;
  --bg-light: #2e2b2b;
  --bs-tertiary-bg: #2a2c2d;
  --theme-2: #007255;
  background: #303030 !important;
}
body.high_contrast .mean-container .mean-nav ul li a,
body.high_contrast h1,
body.high_contrast h2,
body.high_contrast h3,
body.high_contrast h4,
body.high_contrast h5,
body.high_contrast h6 {
  color: var(--yellow) !important;
}
body.high_contrast .text-dark {
  color: var(--yellow) !important;
}
body.high_contrast .control_section {
  --header: #ffff00;
  background: #272727;
}
body.high_contrast .append_nav,
body.high_contrast .append_footer,
body.high_contrast .content_wrap,
body.high_contrast section {
  background: #1f1f1f;
}
body.high_contrast .breadcrumb-wrapper::before {
  background: #161616;
}
body.high_contrast .header-main .main-menu ul li a,
body.high_contrast section * {
  color: var(--yellow) !important;
  fill: var(--yellow) !important;
}
body.high_contrast .header-main .main-menu ul li a::-moz-placeholder, body.high_contrast section *::-moz-placeholder {
  color: var(--yellow);
}
body.high_contrast .header-main .main-menu ul li a::placeholder,
body.high_contrast section *::placeholder {
  color: var(--yellow);
}
body.high_contrast .bg-white,
body.high_contrast .bg-light,
body.high_contrast .card,
body.high_contrast .contact-box,
body.high_contrast .project-content {
  background: #1d1c1c !important;
}
body.high_contrast .testimonial-detail {
  background: rgba(31, 31, 31, 0.88) !important;
}
body.high_contrast .event-inner-items {
  background: var(--white) !important;
}
body.high_contrast .card .input100,
body.high_contrast .card .input-100,
body.high_contrast .contact-box .input100,
body.high_contrast .contact-box .input-100,
body.high_contrast .contact_form .input100,
body.high_contrast .contact_form .input-100 {
  background: transparent !important;
  border-color: #ffffff;
}
body.high_contrast .team-card-items::before {
  background-color: #303030;
}

.cat-menu {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 999;
}

.category-navbar {
  align-items: center;
  overflow: hidden;
  position: relative;
}
.category-navbar .cat_slider_btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text);
}
.category-navbar .category-scroll {
  flex: 1;
}
.category-navbar .category-scroll ul {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-navbar .category-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  padding: 10px 12px;
}
.category-navbar .category-item .category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.category-navbar .category-item .category-link .category-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 4px;
}
.category-navbar .category-item .category-link .cat_name {
  font-size: 0.9rem;
  display: block;
}

.submenu-portal {
  position: fixed;
  z-index: 1100;
  background: #fff;
  padding: 6px 0;
  border-radius: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none !important;
  width: 100vw;
  max-width: 220px;
}
.submenu-portal .submenu {
  max-height: calc(100vh - 500px);
  overflow-y: auto;
  position: relative;
  z-index: 2;
}
.submenu-portal .submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none !important;
}
.submenu-portal .submenu ul .dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  display: block;
  color: var(--text);
  text-decoration: none;
  white-space: wrap;
  border: none !important;
}
.submenu-portal .submenu ul .dropdown-item:hover {
  background: var(--theme);
  color: var(--white-color);
}

.jobs_page .job-card {
  display: flex;
  transition: all 0.25s ease-in-out;
  border-left: 4px solid transparent;
  height: 100%;
  margin-bottom: 0 !important;
}
.jobs_page .job-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--theme);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.jobs_page .job-card h5 {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
}
.jobs_page .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
  border-radius: 0.5rem;
}
.jobs_page .main-sidebar {
  position: sticky;
  top: 60px;
}

.job-detail h2 {
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
}
.job-detail .job-content p,
.job-detail .job-content li {
  font-size: 0.95rem;
  line-height: 1.6;
}
.job-detail .job-content table td {
  padding: 0.4rem 0.75rem 0.4rem 0;
  font-size: 0.95rem;
}
.job-detail .job-content .badge {
  font-size: 0.8rem;
  font-weight: 500;
}

.new_calendar {
  --text-primary-light: #111827;
  --primary-50: #F7B5001A;
  --primary-100: rgba(247, 181, 0, 0.05);
  --primary-600: #FA8B0C;
  --danger-100: #FEE2E2;
  --danger-600: #DC2626;
  --lilac-100: #EBD7FF;
  --lilac-600: #8252E9;
  --neutral-200: #EBECEF;
  --bg-danger-strong: #dc3545;
  --bg-danger-strong-rgb: 220, 53, 69;
  --bg-warning-strong: #F7B500;
  --bg-warning-strong-rgb: 247, 181, 0;
  --bg-success-strong: #00A63E;
  --bg-success-strong-rgb: 0, 166, 62;
  --bg-brand-strong: #2B7FFF;
  --bg-brand-strong-rgb: 43, 127, 255;
  /* Full Calendar Customize Css Start */
  /* Full Calendar Customize Css End */
}
.new_calendar .fc-day-number {
  font-weight: 400 !important;
}
.new_calendar .fc-daygrid-event-dot {
  display: none;
}
.new_calendar .fc-event-title {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new_calendar .fc-event-time {
  display: none;
}
.new_calendar .fc table {
  font-size: 12px;
}
.new_calendar .fc-timegrid-axis-cushion {
  font-size: 12px;
}
.new_calendar #fc-next-btn,
.new_calendar #fc-prev-btn {
  --bs-btn-font-size: 17px !important;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new_calendar #fc-today-btn {
  color: var(--text-color) !important;
  text-decoration: none;
  font-size: 15px !important;
  font-weight: 600;
}
.new_calendar .fc-text-arrow {
  margin: unset;
}
.new_calendar #fc-title {
  font-size: 14px;
  font-weight: 400;
  font-family: mainFontSans;
}
.new_calendar .fc-day-today .fc-daygrid-day-top {
  padding: 0 4px 4px;
  border-top: 6px solid var(--bg-warning-strong);
}
.new_calendar .fc-day-today .fc-daygrid-day-top .fc-daygrid-day-number {
  color: var(--bg-warning-strong);
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 20px !important;
  font-weight: normal;
}
.new_calendar .btn-warning:not(:disabled):not(.disabled).active,
.new_calendar .btn-warning:not(:disabled):not(.disabled):active,
.new_calendar .btn-warning:hover,
.new_calendar .btn-warning.active,
.new_calendar .btn-warning:active,
.new_calendar .btn-warning:focus {
  border-color: var(--primary-600) !important;
}
.new_calendar .fc-custom-header .btn {
  --border-border-radius-rounded-base: 5px;
  --bs-btn-font-size: 13px;
  --bs-btn-padding-x: .75rem;
  --bs-btn-padding-y: 0.35rem;
}
.new_calendar .fc-custom-header .btn-group button {
  border-color: #D1D5DB;
  background: #FFF;
  color: #6B7280;
}
.new_calendar .fc-custom-header .btn-group button.btn-warning {
  background: var(--primary-600) !important;
  color: #ffffff !important;
}
.new_calendar .fc-col-header thead tr th {
  background: var(--bs-primary);
  padding: 3px 6px;
  color: #ffffff;
}
.new_calendar .fc-col-header thead tr th a {
  transition: 0s;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}
.new_calendar .fc-day.fc-tue.fc-widget-content.fc-today.fc-state-highlight {
  position: relative;
  background: linear-gradient(180deg, rgba(72, 127, 255, 0.13) 0%, rgba(72, 127, 255, 0.12) 0.01%, rgba(72, 127, 255, 0.05) 100%);
}
.new_calendar .fc-day.fc-tue.fc-widget-content.fc-today.fc-state-highlight::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: var(--primary-600);
}
.new_calendar .fc-event {
  background-color: var(--primary-50) !important;
  color: var(--primary-600);
  border: 0;
  padding: 2px 4px;
  font-size: 12px;
}
.new_calendar .fc-event .fc-event-main {
  border: 0;
  border-radius: 4px;
  color: var(--primary-600) !important;
}
.new_calendar .fc-event.important {
  background-color: var(--danger-100) !important;
  color: var(--danger-600) !important;
}
.new_calendar .fc-event.info {
  background-color: var(--lilac-100) !important;
  color: var(--lilac-600) !important;
}
.new_calendar .fc-border-separate tr.fc-last th {
  border-color: var(--neutral-200) !important;
}
.new_calendar table.fc-header,
.new_calendar .calendar_wrapper {
  background-color: transparent;
}
.new_calendar .fc-week .fc-day:hover .fc-day-number {
  background-color: var(--primary-100) !important;
  color: var(--primary-600) !important;
}
.new_calendar .fc-state-highlight > div > div.fc-day-number {
  background-color: var(--primary-600) !important;
  color: #fff !important;
}
.new_calendar #calendar,
.new_calendar table.fc-header {
  background-color: transparent !important;
}
.new_calendar .fc-header-title h2 {
  font-size: 24px !important;
  font-weight: 600;
}
.new_calendar .fc-state-default {
  border-color: var(--primary-600) !important;
  color: var(--primary-600) !important;
}
.new_calendar .fc-state-default:hover {
  background-color: var(--primary-50) !important;
}
.new_calendar .fc-state-active,
.new_calendar .fc-state-down {
  background-color: var(--primary-600) !important;
  color: #fff !important;
}
.new_calendar .fc-state-active:hover,
.new_calendar .fc-state-down:hover {
  color: #fff !important;
  background-color: var(--primary-600) !important;
}
.new_calendar .fc-button.fc-button-today {
  border-color: var(--primary-50) !important;
  background-color: var(--primary-50) !important;
  color: var(--primary-600) !important;
}
.new_calendar .fc-button.fc-button-today.fc-state-disabled {
  border-color: var(--primary-600) !important;
  background-color: var(--primary-600) !important;
  color: #fff !important;
  cursor: no-drop;
}
.new_calendar td.fc-header-center {
  text-align: end;
}
.new_calendar .fc-widget-content {
  border-color: var(--neutral-200);
}
.new_calendar .fc-last td {
  border-width: 1px 0 1px 1px;
}
.new_calendar .fc-agenda-axis.fc-widget-header {
  color: var(--text-primary-light);
  border-color: var(--neutral-200);
  font-size: 14px;
  background: #F5F6FA;
}
.new_calendar .fc-header td {
  padding: 0;
}
.new_calendar .calendar_wrapper {
  overflow-x: auto;
}
.new_calendar .calendar_wrapper .fc-content {
  min-width: -moz-max-content;
  min-width: max-content;
}
.new_calendar .calendar_wrapper table.fc-header tr {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

@media print {
  @page {
    size: A4;
    margin: 0;
    padding: 0;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body,
  .append_footer,
  .content_wrap {
    background: var(--white) !important;
  }
  .sticky {
    position: unset !important;
  }
  .wow {
    visibility: visible !important;
  }
  section {
    background: var(--white) !important;
  }
  section > .container {
    page-break-inside: avoid;
  }
  footer {
    page-break-inside: avoid;
  }
  .home_page .home_banner,
  .home_page .hero-section-1 {
    min-height: 500px;
    max-height: 500px;
  }
}
:root {
  --bg-danger-strong: #A50036;
  --bg-danger-strong-rgb: 165, 0, 54;
  --bg-success-strong: #006045;
  --bg-success-strong-rgb: 0, 96, 69;
  --bg-brand-strong: #193CB8;
  --bg-brand-strong-rgb: 25, 60, 184;
  --bs-border-radius: 8px;
  --bs-border-radius-lg: 12px;
  --swal2-confirm-button-background-color: #006045 !important;
  --colors-text-text-body: #4A5565;
  --gray-15: #f5f5f5;
  --white-color: var(--white);
  --text-color: var(--text);
  --bg-light: #F7F7F7;
  --input-height: 42px;
  --input-br: 8px;
  --input-fs: 16px;
  --py: 8px;
  --px: 20px;
  --navbar-height: 60px;
}

/* Hide number input arrows (Chrome, Safari, Edge, Opera) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide number input arrows (Firefox) */
input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

input,
.form-control,
button,
.form-select,
.btn {
  box-shadow: none !important;
  outline: none !important;
}

.gap {
  gap: var(--bs-gutter-y) var(--bs-gutter-x) !important;
}

.container {
  width: 96%;
  max-width: 100%;
  margin: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1665px) {
  .container {
    max-width: 1365px;
  }
}
.container.container_sm {
  max-width: 992px;
}

.container-fluid {
  padding: 0 80px;
}
@media (max-width: 1399px) {
  .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 1399px) {
  .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.text-xs {
  font-size: 12px;
}

.text-xxs {
  font-size: 10px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 20px;
}

.text_default {
  color: var(--colors-text-text-body);
}

.text-blue {
  color: var(--bg-brand-strong);
}

.main-logo {
  max-height: 80px;
}

.announcement-box {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
}
.announcement-box > ul {
  overflow-y: auto;
  scroll-behavior: smooth;
  position: relative;
  padding-right: 1rem;
  max-height: 500px;
}
.announcement-box > ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.announcement-box > ul li.notice_item {
  border-radius: 8px;
  padding: 1.5rem 1.5rem;
  --bg-color: var(--bg-brand-strong);
  --bg-color-rgb: 255, 255, 255;
  border: 1px solid transparent;
  border-left: 6px solid var(--bg-color);
  background: rgba(var(--bg-color-rgb), 0.05);
  transition: all 0.3s ease-in-out;
}
.announcement-box > ul li.notice_item:hover {
  border-color: var(--bg-color);
}
.announcement-box > ul li.notice_item.danger {
  --bg-color: var(--bg-danger-strong);
  --bg-color-rgb: var(--bg-danger-strong-rgb);
}
.announcement-box > ul li.notice_item.success {
  --bg-color: var(--bg-success-strong);
  --bg-color-rgb: var(--bg-success-strong-rgb);
}
.announcement-box > ul li.notice_item .badge {
  border-radius: 8px;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.announcement-box > ul li.notice_item h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.announcement-box > ul li.notice_item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
.announcement-box > ul li.notice_item small {
  color: #999;
  font-size: 0.8rem;
}
.announcement-box > ul li.notice_item .fa-arrow-right-long {
  transition: transform 0.3s ease-in-out;
}
.announcement-box > ul li.notice_item:hover .fa-arrow-right-long {
  transform: translateX(5px);
  color: var(--theme);
}
.announcement-box > ul li a {
  width: 100%;
}
.announcement-box.type-1 {
  overflow: unset;
}
.announcement-box.type-1 > ul {
  max-height: unset;
  padding-right: 0;
}
.announcement-box.type-1 > ul li {
  margin-bottom: 16px;
}
.announcement-box.compliance-box {
  border-radius: 12px !important;
}
.announcement-box.compliance-box .notice_item {
  border-radius: 8px;
  padding: 1rem 1rem;
  --bg-color: var(--bg-brand-strong);
  --bg-color-rgb: 255, 255, 255;
  border: 1px solid transparent;
  border-left: 1px solid transparent;
  background: rgba(var(--bg-color-rgb), 0.05);
  transition: all 0.3s ease-in-out;
}
.announcement-box.compliance-box .notice_item:hover {
  border-color: var(--bg-color);
}
.announcement-box.compliance-box .notice_item.danger {
  --bg-color: var(--bg-danger-strong);
  --bg-color-rgb: var(--bg-danger-strong-rgb);
}
.announcement-box.compliance-box .notice_item.danger .badge {
  background: #FF8C00 !important;
}
.announcement-box.compliance-box .notice_item.success {
  --bg-color: var(--bg-success-strong);
  --bg-color-rgb: var(--bg-success-strong-rgb);
}
.announcement-box.compliance-box .notice_item.warning {
  --bg-color: var(--bg-warning-strong);
  --bg-color-rgb: var(--bg-warning-strong-rgb);
}
.announcement-box.compliance-box .notice_item .badge {
  font-size: 8px;
  border-radius: 8px;
  padding: 4px 6px;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.announcement-box.compliance-box .notice_item h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.announcement-box.compliance-box .notice_item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
.announcement-box.compliance-box .notice_item small {
  color: #999;
  font-size: 0.8rem;
}
.announcement-box.compliance-box .notice_item .fa-arrow-right-long {
  transition: transform 0.3s ease-in-out;
}
.announcement-box.compliance-box .notice_item:hover .fa-arrow-right-long {
  transform: translateX(5px);
  color: var(--theme);
}

.search_sm {
  align-items: center;
  max-width: 240px;
}
.search_sm input {
  border-radius: 12px;
  padding-left: 32px;
  min-width: 200px;
}
.search_sm .size_lg {
  max-width: 320px;
}

.search_md {
  align-items: center;
}
.search_md input {
  border-radius: 12px;
  padding-left: 32px;
  min-width: 300px;
}

.ramp_slider .causes-image img {
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
}

.recent_jobs .donation-card-item-2 {
  padding: 20px;
}
.recent_jobs .donation-image {
  display: none;
}
.recent_jobs .donation-content div:last-child > a {
  display: flex;
  flex-grow: 1;
  padding: 8px 20px !important;
  justify-content: center;
  align-items: center;
}

.featured_jobs .donation-card-item-2 {
  padding: 20px;
}
.featured_jobs .donation-card-item-2 .donation-image {
  aspect-ratio: 12/9;
}
.featured_jobs .donation-card-item-2 .donation-content h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured_jobs .donation-card-item-2 .donation-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 18px;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-600 {
  max-width: 600px;
}

.min-w-500 {
  max-width: 500px;
}

.select-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .select-item {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.select-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 10px;
  font-size: 16px;
}
.select-item label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #afc5b7;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  outline-offset: 4px;
}
.select-item label input[type=radio]:checked {
  background-color: #123b32;
  border-color: #123b32;
}
.select-item label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.captcha-image {
  max-height: 40px;
  border-radius: 8px;
}
.captcha-image img {
  width: 100%;
  height: 100%;
}

.lang_dropdown {
  position: relative;
  height: 40px;
  padding: 5px 0 5px 5px;
  display: flex;
  align-items: center;
  /* new css added */
}
.lang_dropdown .accessibility-panel {
  width: 100vw;
  max-width: 250px;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  z-index: 9999;
  display: none;
  top: 40px;
}
.lang_dropdown .tool-btn {
  padding: 8px 8px;
  width: 100%;
  height: 100%;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--text-color);
  color: var(--header);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
.lang_dropdown:hover .accessibility-panel {
  display: block;
}

.calendar_design {
  font-family: "Inter", sans-serif;
  max-width: 100%;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
}
.calendar_design .fc-header-toolbar {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.calendar_design .fc-header-toolbar .fc-toolbar-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
}
.calendar_design .fc-header-toolbar .fc-button {
  background: transparent;
  border: none;
  color: #333;
  font-size: 1rem;
}
.calendar_design .fc-header-toolbar .fc-button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.calendar_design .fc-header-toolbar .fc-icon {
  font-size: 1.2rem;
}
.calendar_design .fc-header-toolbar .fc-toolbar-chunk:first-child {
  display: none;
}
.calendar_design .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) .fc-toolbar-title {
  font-size: 1.25rem;
}
.calendar_design .fc-col-header-cell-cushion {
  font-weight: 300;
  color: #92929D;
  text-transform: uppercase;
  font-size: 12px;
}
.calendar_design .fc-daygrid-day {
  padding: 0.1rem 0.5rem;
  transition: background 0.3s;
  border-radius: 0 !important;
}
.calendar_design .fc-daygrid-day:hover {
  background-color: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.calendar_design .fc-daygrid-day .fc-daygrid-day-number {
  font-size: 14px;
  font-weight: 300;
  color: #171717;
}
.calendar_design .fc-daygrid-day .fc-daygrid-day-top {
  justify-content: start;
  opacity: 1;
}
.calendar_design .fc-daygrid-day.fc-day-sun {
  background: var(--gray-15);
}
.calendar_design .fc-day-today {
  background-color: rgba(0, 123, 255, 0.05) !important;
  border-radius: 10px;
}
.calendar_design .fc-day-other .fc-daygrid-day-number {
  color: #ccc !important;
}
.calendar_design .fc-scrollgrid,
.calendar_design .fc-theme-standard td,
.calendar_design .fc-theme-standard th {
  border: none !important;
}
.calendar_design .fc-col-header-cell {
  border-right: none !important;
  border-left: none !important;
  border-left-width: 0;
}
.calendar_design .fc-scrollgrid-section > td:first-child {
  border-left-width: 1px;
}
.calendar_design .fc-scrollgrid-section > th:first-child {
  border-right-width: 0px;
}

.calendar_wrapper {
  position: relative;
}
.calendar_wrapper .month_calendar {
  min-width: 100px;
  position: absolute;
  top: 17.5px;
  right: 16px;
  z-index: 9;
}
.calendar_wrapper .month_calendar .dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
}

.search-bar {
  background-color: var(--white);
  border: 1px solid #e4e0dc;
  transition: all 0.2s ease-in-out;
}
.search-bar .dropdown .dropdown-toggle {
  font-size: 0.95rem;
  color: var(--text);
}
.search-bar .dropdown .dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  margin-left: 12px;
}
.search-bar .dropdown .dropdown-toggle::after {
  display: none;
}
.search-bar input::-moz-placeholder {
  color: #aaa;
  font-size: 0.95rem;
}
.search-bar input::placeholder {
  color: #aaa;
  font-size: 0.95rem;
}
.search-bar input:focus {
  outline: none;
  box-shadow: none;
}
.search-bar .btn {
  font-size: 0.8rem;
}
.search-bar .dropdown-menu {
  font-size: 0.9rem;
  border-radius: 0.5rem;
  min-width: 140px;
  padding: 0;
}
.search-bar ul li {
  line-height: 1.5;
}
.search-bar ul li:first-child {
  border-radius: 8px 8px 0 0;
}
.search-bar ul li:last-child {
  border-radius: 0 0 8px 8px;
}
.search-bar ul li:hover {
  background: #f6f5f3;
}
.search-bar ul li:hover.active {
  background: #f6f5f3;
}

.category-strip .category-item {
  min-width: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.category-strip .category-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
.category-strip .category-item .category-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.category-strip .category-item:hover img {
  transform: scale(1.05);
}
.category-strip .category-item:hover .category-label {
  color: var(--theme);
}
.category-strip .category-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.category-strip .category-item.active img {
  transform: scale(1.05);
}
.category-strip .category-item.active .category-label {
  color: var(--theme);
}
.category-strip .category-item.active .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.category-strip .category-item .dropdown-toggle {
  position: relative;
}
.category-strip .category-item .dropdown-toggle::after {
  display: none;
}
.category-strip .category-item .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  z-index: 9999999 !important;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  background: var(--white);
  min-width: 160px;
}

.gallery_slider .carousel-indicators {
  position: relative;
  margin: 0;
  justify-content: start;
  border-radius: 12px;
}
.gallery_slider .carousel-indicators.carousel-indicators [data-bs-target] {
  width: 80px;
  aspect-ratio: 1;
  height: unset;
  opacity: 1;
  border: none;
  text-indent: 0%;
  overflow: hidden;
}
.gallery_slider .carousel-indicators img {
  background-position: center;
  border-radius: 12px;
}
.gallery_slider .carousel-item {
  min-height: 420px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery_slider .carousel-item img {
  border-radius: 12px;
}
.gallery_slider.aspect-video .carousel-item {
  min-height: unset;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.gallery_slider.aspect-video .carousel-item video {
  aspect-ratio: 16/9;
}
.gallery_slider.aspect-video .e_books {
  min-height: unset;
}
@media only screen and (max-width: 991px) {
  .gallery_slider.aspect-video .e_books {
    min-height: 420px;
  }
}

.star-rating i {
  cursor: pointer;
  font-size: 12px;
  color: var(--theme);
}
.star-rating i:focus {
  outline: none;
  box-shadow: none;
}

.expert_details .profile_card {
  border-radius: 8px !important;
  overflow: hidden;
}
.expert_details .dot_line {
  max-width: 20px;
}
.expert_details .dot_line .card_rounded_circle {
  width: 12px;
  height: 16px;
  min-height: 16px;
  border-radius: 30px !important;
  border: 3px solid var(--bs-primary);
}
.expert_details .dot_line .v_line {
  width: 1.5px;
  height: 100%;
  background: var(--gray-25);
}
.expert_details .border_blue {
  border: 2px solid var(--blue);
}

.profile-wrapper {
  width: 180px;
  height: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px;
}
.profile-wrapper label {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.profile-wrapper label::after {
  content: "Replace photo";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}
.profile-wrapper label:hover::after {
  opacity: 1;
}
.profile-wrapper .profile-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.profile-wrapper .overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.profile-wrapper .overlay-icon i {
  font-size: 20px;
}
.profile-wrapper label:hover .overlay-icon {
  opacity: 1;
}
.profile-wrapper .remove-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #dc3545;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
  z-index: 5;
}

.profile-progress-ring {
  position: absolute;
  inset: -6px;
  z-index: 1;
}

.profile-percent-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  z-index: 3;
  white-space: nowrap;
}

.icon_card {
  border-radius: 1rem;
  background: var(--bs-primary, #F97316);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 1rem 0.5rem;
  text-align: center;
  height: 120px;
  min-height: 120px;
  align-items: center;
}
.icon_card.h_110 {
  height: 110px;
  min-height: 110px;
}
.icon_card.h_140 {
  height: 140px;
  min-height: 140px;
}
.icon_card.h-auto {
  min-height: unset !important;
}
.icon_card h4,
.icon_card p {
  color: var(--white);
  margin: 0;
  z-index: 2;
}
.icon_card h4 {
  font-size: 1.5rem;
}
.icon_card p {
  font-size: 13px;
  color: #FFD4AC;
}
@media (min-width: 1200px) {
  .icon_card p {
    font-size: 14px;
  }
}
.icon_card p.text-sm {
  font-size: 11px;
}
.icon_card p.text-md {
  font-size: 12px;
}
.icon_card img {
  width: 60px;
}
.icon_card img.img_40 {
  width: 40px;
}
.icon_card:not(.image_normal) img {
  position: absolute;
  right: 5px;
  top: 2px;
  z-index: 1;
}
.icon_card.type_3 {
  align-items: start;
  min-height: 100px;
  border-radius: 8px;
  gap: 2px;
}
.icon_card.type_3 img {
  top: unset;
  right: 20px;
}
.icon_card.type_3 p {
  font-size: 15px;
  font-weight: 500;
}
.icon_card.type_2 {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--white);
  min-height: 100px;
}
.icon_card.type_2 h4 {
  color: var(--bs-primary);
  font-size: 1.2rem;
}
.icon_card.type_2 p {
  color: #92929D;
  font-size: 14px;
}
.icon_card.type_4 {
  height: 100%;
  text-align: left;
  justify-content: space-between;
  padding: 1rem;
}
.icon_card.type_4 ul {
  padding-left: 15px;
}
.icon_card.type_4 ul,
.icon_card.type_4 li {
  list-style: unset;
  color: var(--para-color);
}
.icon_card.type_5 {
  border: 1px solid var(--bs-primary);
}

.shadow_box_card {
  padding: 1rem 1rem 0.75rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 16px;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .shadow_box_card {
    padding: 1.5rem 1.5rem 1rem;
    --footer-height: 394.45px;
  }
}
.shadow_box_card.zedTabContent {
  max-height: 550px;
  overflow-y: auto;
}
.shadow_box_card ul {
  padding-left: 15px;
}
.shadow_box_card ul,
.shadow_box_card li {
  list-style: unset;
  color: var(--para-color);
  font-size: 14px;
}
.shadow_box_card h5 {
  font-size: 1.2rem;
}

.max-w-992 {
  max-width: 992px;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.custom_drop .dropdown-toggle {
  display: flex;
  align-items: center;
  padding-right: 25px;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: block;
}
.custom_drop .dropdown-toggle::after {
  content: "\f107";
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 10px;
  border: 0;
  transition: top 0.1s ease-in;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.custom_drop .dropdown-toggle.btn-sm::after {
  font-size: 16px;
}

.shadow-md {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px !important;
}

.form-check-input:checked {
  background-color: var(--theme-2);
  border-color: var(--theme-2);
}

.select2-selection__arrow,
.dropdown-toggle {
  display: flex;
  align-items: center;
  padding-right: 25px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: block;
}
.select2-selection__arrow::after,
.dropdown-toggle::after {
  content: "\f107";
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 10px;
  border: 0;
  transition: top 0.1s ease-in;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.select2-selection__arrow.btn-sm::after,
.dropdown-toggle.btn-sm::after {
  font-size: 16px;
}

.select2.select2-container {
  display: block;
  width: 100% !important;
}

.modal-open .select2-container.select2-container--open {
  z-index: 1060;
}

.select2-results__option {
  font-size: 13px;
}

.select2-dropdown {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
  border-radius: 4px;
  border-color: var(--bs-border-color);
}

.select2-search__field {
  color: var(--text) !important;
}

.select2-container .select2-selection--multiple {
  min-height: var(--input-height) !important;
}

.select2-container--default .select2-selection--multiple {
  border-color: var(--bs-border-color) !important;
}

.select2-container--default .select2-selection--single {
  background: transparent;
  border-color: var(--bs-border-color) !important;
  height: var(--input-height);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: calc(var(--input-height) - 2px);
  font-size: var(--input-fs);
  padding-left: var(--px);
  padding-right: calc(var(--px) + 6px);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--gray-15);
  color: var(--text-color);
}
.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
  background: var(--bs-primary) !important;
  color: white !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--bs-primary) !important;
  color: white !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 14px;
}

.select2-selection__arrow {
  height: var(--input-height) !important;
}
.select2-selection__arrow b {
  display: none;
}

form .nice-select,
form .form-control {
  width: 100%;
  padding: var(--py) var(--px);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  color: var(--text);
  font-size: var(--input-fs);
  border-radius: var(--input-br);
  min-height: var(--input-height);
}
form .form-control[type=file] {
  padding-top: 0;
  padding-bottom: 0;
  line-height: calc(var(--input-height) - 6px);
}
form .select2-container .selection .select2-selection {
  border-radius: var(--input-br);
  background-color: var(--white);
}
form.form_sm {
  --input-height: 46px;
  --input-br: 8px;
  --input-fs: 14px;
  --py: 6px;
  --px: 16px;
}
form .nice-select .list {
  width: 100%;
}
form input[type=file]::-webkit-file-upload-button {
  background: transparent !important;
  border: none;
  color: #0b3b31;
  font-weight: 600;
  cursor: pointer;
  padding: var(--py) var(--px);
  border-right: 1px solid #dcdcdc;
}
form.bg-gray {
  background-color: var(--bg-light);
  border-radius: 20px;
}

.outline-badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
  border-radius: 0.5rem;
}

.table_box {
  padding: 16px 20px;
}
.table_box.rounded-4 {
  border-radius: 10px !important;
}
.table_box .table tr th,
.table_box .table tr td {
  padding: 8px 10px;
}
.table_box .table tr th:first-child,
.table_box .table tr td:first-child {
  padding: 8px 25px 8px 0;
}
.table_box .table tr th:last-child,
.table_box .table tr td:last-child {
  padding: 8px 0 8px 8px;
}
.table_box .table thead td,
.table_box .table thead th {
  color: #898889;
}
.table_box .table thead td:last-child,
.table_box .table thead th:last-child {
  text-align: end;
}
.table_box .table tbody td {
  color: #030203;
  border: none;
}
.table_box .table tbody td:last-child {
  text-align: end;
}
.table_box .table.profitability_table tr td:first-child {
  white-space: wrap;
  min-width: 220px;
}
.table_box .table.profitability_table tr td:not(:first-child) {
  min-width: 120px;
}
.table_box .table.type_1 tr th,
.table_box .table.type_1 tr td {
  border: 1px solid var(--bs-border-color);
  padding: 8px 3px;
}
.table_box .table.type_2 tr th,
.table_box .table.type_2 tr td {
  padding: 8px 8px;
}

ul.disc_list {
  list-style: disc;
  padding-left: 15px;
}
ul.disc_list li {
  color: var(--para-color);
  list-style: disc;
}

.outline-badge {
  padding: 0.2em 0.6em;
  border-radius: 0.5rem;
  border: 1px solid #006045;
  width: 80px;
}

.outline-badge2 {
  padding: 0 10px;
  border-radius: 0.4rem;
  border: 1px solid #006045;
  min-width: 100px;
  max-width: 100px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.outline-badge2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user_dropdown_wrap {
  padding: 10px 0 10px 15px;
}
.user_dropdown_wrap .user-dropdown {
  position: relative;
  display: inline-block;
}
.user_dropdown_wrap .user-dropdown .user-avatar {
  width: calc(var(--navbar-height) - 25px);
  height: calc(var(--navbar-height) - 25px);
  border-radius: 50%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.user_dropdown_wrap .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  width: 260px;
  background: var(--white);
  animation: fadeIn 0.2s ease-in-out;
  z-index: 9999;
}
.user_dropdown_wrap .dropdown-menu .user-info {
  display: flex;
  gap: 12px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 6px;
}
.user_dropdown_wrap .dropdown-menu .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.user_dropdown_wrap .dropdown-menu .user-info h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.user_dropdown_wrap .dropdown-menu .user-info small {
  color: #6c757d;
  font-size: 0.8rem;
}
.user_dropdown_wrap .dropdown-menu .theme-toggle {
  display: flex;
  justify-content: space-between;
  background: #f1f3f5;
  border-radius: 8px;
  padding: 6px;
  margin: 8px 10px;
}
.user_dropdown_wrap .dropdown-menu .theme-toggle button {
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.2s;
}
.user_dropdown_wrap .dropdown-menu .theme-toggle button.active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.user_dropdown_wrap .dropdown-menu .theme-toggle button:hover {
  background: #fff;
}
.user_dropdown_wrap .dropdown-menu .dropdown_item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.user_dropdown_wrap .dropdown-menu .dropdown_item i {
  font-size: 1rem;
  color: #6c757d;
}
.user_dropdown_wrap .dropdown-menu .dropdown_item:hover {
  background: var(--bs-tertiary-bg);
}
.user_dropdown_wrap:hover .dropdown-menu {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feedback-modal {
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: var(--white);
  padding: 1rem;
  max-width: 340px;
  margin: auto;
}
.feedback-modal .modal-body {
  padding: 1.25rem;
}
.feedback-modal .modal-body h5 {
  font-size: 1.1rem;
}
.feedback-modal .modal-body p {
  font-size: 0.9rem;
}
.feedback-modal .modal-body .rating-text {
  font-size: 0.95rem;
  color: #6c63ff;
}
.feedback-modal .star-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.feedback-modal .star-rating i {
  font-size: 1.7rem;
  color: #ffd43b;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.feedback-modal .star-rating i:hover {
  transform: scale(1.15);
}

.donation-wrapper-2.product-wrappper .donation-card-item-2 {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.donation-wrapper-2.product-wrappper .donation-card-item-2 .donation-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: unset;
  flex-grow: 1 !important;
  gap: 10px;
}

.financing-overview {
  background: var(--white);
  border-radius: 1rem;
  /* Typography fix */
}
.financing-overview h5 {
  color: #0d3c55;
}
.financing-overview p {
  font-size: 0.9rem;
}
.financing-overview .stats-row {
  /* Mobile (stacked) */
  /* Tablet (optional – keep simple or same as desktop) */
  /* LG and above – EXACT like second image */
}
.financing-overview .stats-row .stat {
  padding: 12px 18px;
  text-align: left;
}
@media (max-width: 576px) {
  .financing-overview .stats-row .stat {
    border-bottom: 1px solid #dee2e6;
    text-align: center;
  }
  .financing-overview .stats-row .stat:last-child {
    border-bottom: none;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .financing-overview .stats-row .stat {
    border-right: 1px solid #dee2e6;
  }
  .financing-overview .stats-row .stat:last-child {
    border-right: none;
  }
}
@media (min-width: 992px) {
  .financing-overview .stats-row {
    display: flex;
  }
  .financing-overview .stats-row .stat {
    flex: 1;
    border-right: 1px solid #dee2e6;
    padding: 0 24px;
  }
  .financing-overview .stats-row .stat:last-child {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .financing-overview h5 {
    font-size: 1rem;
  }
}

.dt-layout-start {
  display: none !important;
}

.upload-area {
  border: 2px dashed #d8d8d8;
  border-radius: 12px;
  padding: 1.2rem 0.5rem;
  text-align: center;
  background: #fafafa;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.upload-area:hover {
  border-color: var(--theme-2);
}
.upload-area .upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.upload-area .upload-box {
  pointer-events: none;
}
.upload-area .upload-box .upload-icon {
  font-size: 40px;
  color: #6c6f75;
  margin-bottom: 10px;
  display: block;
}
.upload-area .upload-box .upload-title {
  font-size: 16px;
  color: #6c6f75;
  margin-bottom: 4px;
}
.upload-area .upload-box .upload-size {
  font-size: 14px;
  color: #9a9a9a;
  margin-bottom: 12px;
}

.modal-content {
  border-radius: 20px;
}
.modal-content .modal-header {
  padding: 1.5rem 2rem;
}
.modal-content .modal-body {
  padding: 1.5rem 2rem;
}
.modal-content .modal-footer {
  padding: 1.5rem 2rem;
}

.qr-product-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.component-tag {
  background: #7C3AED;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.qty-box .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.qty-box .qty-btn:hover {
  background: #e8e8e8;
}
.qty-box .qty-value {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}
.qty-box.type_1 {
  background: unset;
  border-radius: 20px;
}
.qty-box.type_1 .qty-btn {
  background: transparent;
  font-size: 16px;
}
.qty-box.type_1 .qty-value {
  font-size: 14px;
  width: 25px;
  height: 25px;
}

.summary-section {
  position: sticky;
  top: 100px;
}
.summary-section .summary-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #eee;
}
.summary-section .subtotal-amount {
  font-size: 20px;
  color: var(--theme);
}

.product-box {
  border-radius: 18px;
  padding: 18px 22px;
  display: block;
  transition: all 0.25s ease-in-out;
  border-left: 4px solid transparent;
  margin-bottom: 16px;
}
.product-box:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--theme);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.product-box h6 {
  min-width: 250px;
  max-width: 250px;
  word-wrap: break-word;
}
@media only screen and (max-width: 575px) {
  .product-box h6 {
    min-width: 150px;
    max-width: 150px;
  }
}

.product-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.price-text {
  color: var(--theme);
  max-width: 100px;
  min-width: 100px;
  word-break: break-all;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .price-text {
    text-align: end;
  }
}

.dlt-btn {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 18px;
  cursor: pointer;
}
.dlt-btn:hover {
  background: transparent;
  color: #dc3545;
}

.address-card {
  padding: 1rem 1.25rem;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.address-card.selected {
  border: 1px solid var(--theme-2) !important;
}
.address-card.active {
  border: none !important;
}
.address-card .badge {
  font-size: 0.5rem;
  padding: 0.5em 0.8em;
  border-radius: 0.5rem;
}

.togglePassword {
  cursor: pointer;
}

.eye_icon {
  position: absolute;
  right: 0;
  font-size: 18px;
  color: var(--text-color);
}

.list-area li {
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .list-area li {
    font-size: 16px;
  }
}
.list-area li:not(:last-child) {
  margin-bottom: 8px;
}
.list-area li a {
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: baseline;
  text-align: justify;
}
.list-area li i {
  margin-right: 8px;
  color: var(--theme);
  font-size: 16px;
}
.list-area li:hover a {
  padding-left: 5px;
  color: var(--theme);
}
.list-area.type_1 li {
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  text-align: justify;
}
.list-area.type_1 li i {
  margin-right: 8px;
  color: var(--theme);
  font-size: 16px;
}
@media (max-width: 1399px) {
  .list-area.type_1 li {
    font-size: 16px;
  }
}
.list-area.type_1 li:not(:last-child) {
  margin-bottom: 8px;
}
.list-area.type_2 li a {
  color: var(--theme-2);
  text-align: justify;
}

.dot_indi {
  height: 14px;
  width: 14px;
  min-height: 14px;
  min-width: 14px;
  border-radius: 50%;
  margin-right: 6px !important;
  display: inline-block;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.dot_indi:after {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border-radius: 50%;
  position: absolute;
}
.dot_indi.bg-primary:after {
  background-color: rgba(var(--bs-primary-rgb), 0.3);
}

.dot_line_steps {
  display: flex;
  flex-wrap: wrap;
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 0;
  --v-gap: 20px;
  margin: 0 15px;
}
@media only screen and (max-width: 575px) {
  .dot_line_steps {
    --bs-gutter-y: 0;
  }
}
.dot_line_steps .step_card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: var(--v-gap) 20px;
  position: relative;
  padding: 0 10px 0;
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card {
    flex-direction: row;
    text-align: start;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
  }
}
.dot_line_steps .step_card::before {
  content: "";
  height: 8px;
  width: 100%;
  border-radius: 50px;
  background: var(--gray-15);
  top: calc(20px + var(--v-gap) + 7px - 4px);
  position: absolute;
  transform: scaleX(1.1);
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card::before {
    height: 100%;
    width: 8px;
    top: 0;
    left: calc(20px + var(--v-gap) + 7px);
    transform: scaleY(1.1);
  }
}
.dot_line_steps .step_card h5 {
  color: var(--bs-primary);
  margin-bottom: 0;
  line-height: 1;
}
.dot_line_steps .step_card .dot_indi {
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card .dot_indi {
    left: unset;
    transform: none;
  }
}
.dot_line_steps .step_card p {
  max-width: 260px;
  letter-spacing: 0.08px;
  margin: 0 auto;
}
.dot_line_steps .step_card p a {
  color: var(--para-color);
  text-decoration-line: underline;
  text-underline-offset: auto;
}
.dot_line_steps .step_card p a:hover {
  color: var(--bs-primary);
}

.district-category {
  max-height: 300px;
  overflow-y: scroll;
}

.form-check-input {
  border-radius: 2px;
}
.form-check-input:focus {
  border-color: var(--bs-primary) !important;
}
.form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.form-check-input.size_lg {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.step_cicle {
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.step_cicle::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: rgba(var(--bs-primary-rgb), 0.35);
  border-radius: 50%;
}

.step_wrap {
  position: relative;
}
.step_wrap::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 10px;
  left: 50px;
  width: 4px;
  height: 100%;
  background: var(--theme);
}
.step_wrap .step_count {
  width: 40px;
  min-width: 40px;
  justify-content: space-between;
  align-items: center;
}

.input-check-wrap .check-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--bs-primary);
  pointer-events: none;
}

.box-icon img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-box {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-15);
}

.category-header {
  background: var(--bs-primary);
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
}

.category-list {
  margin: 0;
  padding: 0;
}
.category-list .category-item {
  padding: 12px 18px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s ease;
}
.category-list .category-item:hover {
  background: #f4f7ff;
  padding-left: 22px;
}
.category-list .category-item:last-child {
  border-bottom: none;
}

.quick-wrapper .quick_items a {
  width: 100%;
}
.quick-wrapper .quick_items img {
  max-height: 90px;
  min-height: 90px;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.quick-wrapper .quick_items:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.cart-btn .badge {
  top: -4px;
  right: -4px;
  font-size: 8px;
  padding: 3px 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grievance_description {
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  max-width: 100px;
}

.info-form {
  background-color: var(--white);
  border-radius: 16px;
  max-width: 550px;
  margin: auto;
  padding: 2rem 0 1.5rem;
  --sds-size-depth-0: 2px;
  box-shadow: var(--sds-size-depth-0) 16px 16px -4px rgba(12, 12, 13, 0.08), var(--sds-size-depth-0) 4px 4px 4px rgba(12, 12, 13, 0.05);
}
.info-form .content {
  display: flex;
  justify-content: center;
  background-color: transparent;
  min-height: 350px;
}
.info-form .content .body {
  width: 100%;
  height: 100%;
  position: relative;
}
.info-form .steps ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.info-form .steps ul li {
  width: unset;
}
.info-form .steps ul li a {
  padding: 0 !important;
  margin: 0 !important;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}
.info-form .steps ul li a:hover {
  width: 12px;
  height: 12px;
}
.info-form .steps ul li a span {
  display: none;
}
.info-form .steps ul li.current a {
  width: 12px;
  height: 12px;
  background: var(--bs-primary) !important;
}
.info-form .steps ul .done a {
  background: var(--bs-primary);
}
.info-form .steps ul .done a:hover {
  background-color: var(--bs-primary);
}
.info-form.hide_steps {
  padding: 0;
}
.info-form.hide_steps .steps {
  display: none;
}
.info-form.no_shadow {
  box-shadow: none;
}
.info-form .actions {
  margin-top: 1rem;
}
.info-form .actions ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.info-form .actions ul li {
  margin: 0;
}
.info-form .actions ul li a {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  padding: 6px 20px !important;
  border-radius: 4px !important;
  min-width: 100px;
  text-align: center;
}
.info-form .actions ul li a:hover {
  background-color: var(--bs-primary);
}
.info-form .actions ul li:first-child a {
  background: transparent;
  color: var(--bs-primary);
}
.info-form .actions ul li:first-child.disabled {
  display: none;
}
.info-form.drp_from {
  max-width: 992px;
}
.info-form.type_1 .content .body {
  height: 60vh !important;
}
.info-form .custom_label_radio label {
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: #FFF;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
}
.info-form .custom_label_radio input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.info-form .custom_label_radio input:checked + label {
  border-color: var(--bs-primary);
  border-radius: 8px;
}
.info-form .custom_label_radio input:checked + label.dynamic_border {
  border-color: var(--color, var(--bs-primary));
}
.info-form .custom_label_radio input:checked + label.dynamic_border p,
.info-form .custom_label_radio input:checked + label.dynamic_border i {
  color: var(--color, var(--bs-primary)) !important;
}
.info-form .custom_label_radio.time_radio label {
  padding: 10px 6px;
}
.info-form .custom_label_radio.time_radio input:checked + label {
  border-color: var(--bs-border-color);
  background: var(--gray-15);
}
.info-form .custom_label_radio.rating_filter label {
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  background: var(--white-color);
  transition: all ease-in-out;
}
.info-form .custom_label_radio.rating_filter input:checked + label {
  border-color: var(--blue);
  background: var(--blue) !important;
  color: var(--white-color) !important;
}
.info-form .custom_label_radio.floor_plan label {
  border-radius: 16px !important;
  border-color: #efefef;
  padding: calc(6px + 1vw) !important;
}
@media only screen and (min-width: 992px) {
  .info-form .custom_label_radio.floor_plan label {
    padding: 14px !important;
  }
}
.info-form .custom_label_radio.floor_plan label .floor_name {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px !important;
  background: rgba(var(--bs-primary-rgb), 0.1);
}
.info-form .custom_label_radio.floor_plan label .floor_name h1 {
  color: rgba(var(--bs-primary-rgb), 0.5);
}
@media only screen and (max-width: 991px) {
  .info-form .custom_label_radio.floor_plan label .floor_name {
    height: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .info-form .custom_label_radio.floor_plan label h5 {
    font-size: 14px !important;
  }
  .info-form .custom_label_radio.floor_plan label h6 {
    font-size: 11px !important;
  }
  .info-form .custom_label_radio.floor_plan label h6 svg {
    width: 18px;
    height: 18px;
  }
}
.info-form .custom_label_radio.floor_plan input:checked + label .floor_name {
  background: rgba(var(--bs-primary-rgb), 0.3);
}
.info-form .custom_label_radio.floor_plan input:checked + label .floor_name h1 {
  color: rgba(var(--bs-primary-rgb), 1);
}
.info-form .custom_label_radio.floor_plan input:disabled + label svg * {
  fill: var(--gray-25);
}
.info-form .custom_label_radio.floor_plan input:disabled + label .floor_name {
  background: var(--gray-15);
}
.info-form .custom_label_radio.floor_plan input:disabled + label .floor_name h1 {
  color: var(--gray-25);
}
.info-form .custom_label_radio.floor_plan input:disabled + label .fw-semibold {
  color: var(--gray-50);
}
.info-form .custom_label_radio.floor_plan input:disabled + label .symbol {
  color: var(--gray-25) !important;
}

.updates_modal .modal-body {
  padding: 0;
}
.updates_modal .whats-content {
  position: relative;
  min-height: 420px;
  background-image: url("/assets/img/modal-image.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 18px 16px;
}
.updates_modal .cross_btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.updates_modal .header_modal {
  position: relative;
  z-index: 5;
}
.updates_modal h6 {
  color: var(--theme);
}
.updates_modal .benefits-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.2;
}
.updates_modal .benefits-list li {
  margin-bottom: 6px;
}
.updates_modal .content-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.directory__child::after {
  border-left: 1px solid;
  content: "";
  height: 100%;
  left: -1em;
  position: absolute;
  top: 0;
}

.title-site {
  border-bottom: 1px dotted #d3e7c0;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  margin: 0;
  padding: 0;
}

.inner-cont {
  padding: 10px;
  border-radius: 10px;
  min-height: 500px;
  margin-top: -15px;
}

.line {
  padding-left: 36px;
}

.sitemap .directory {
  line-height: 2em;
}
.sitemap .directory__child {
  position: relative;
  list-style: none;
  padding: 0 0 0 5px !important;
}
.sitemap .directory__child a {
  color: var(--white);
  display: inline-block;
  transition-duration: 0.3s;
  padding: 2px 10px 2px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: var(--bs-primary);
  text-decoration: none;
  margin-bottom: 5px;
}
.sitemap .directory__child a:hover {
  color: var(--white);
  padding-left: 5px;
  background-color: var(--theme);
  text-decoration: none;
}
.sitemap .directory__child:last-child::after {
  display: none;
}
.sitemap .directory__child::before {
  border-bottom: 1px solid;
  border-left: 1px solid;
  content: "";
  height: 1em;
  left: -1em;
  position: absolute;
  width: 0.7em;
}
.sitemap .directory__child::after {
  border-left: 1px solid;
  content: "";
  height: 100%;
  left: -1em;
  position: absolute;
  top: 0;
}
.sitemap .title-site {
  border-bottom: 1px dotted #d3e7c0;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  margin: 0;
  padding: 0;
}
.sitemap .inner-cont {
  padding: 10px;
  border-radius: 10px;
  min-height: 500px;
  margin-top: -15px;
}
.sitemap .line {
  padding-left: 36px;
}

.image_card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

.image_card .card_top {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 280px;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  background: #000;
}

.image_card .card_top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}

.image_card .text_wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.8) 100%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.image_card .text_wrap h6 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.image_card .text_wrap p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
}

.image_card .card_top:focus,
.image_card .card_top:hover {
  outline: none;
}

.image_card .card_top:focus .text_wrap,
.image_card .card_top:hover .text_wrap {
  transform: translateY(0);
  opacity: 1;
}

.image_card .card_top:focus img,
.image_card .card_top:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.image_card:hover,
.image_card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
}

@media (max-width: 576px) {
  .image_card .card_top {
    height: 210px;
    border-radius: 10px;
  }
  .image_card .text_wrap {
    padding: 12px 14px;
  }
  .image_card .text_wrap h6 {
    font-size: 0.96rem;
  }
}
.image_card .card_top:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.row.gx-2.gx-md-4 > [class*=col-] {
  margin-bottom: 0;
}

/* Figure wrapper */
.gallery-card {
  margin: 0;
}

.gallery-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  outline: none;
  height: 280px;
  /* adjust to taste */
  background-color: #000;
}

/* Image */
.gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  will-change: transform;
}

/* Always visible bottom gradient with text */
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.85) 100%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* caption text styling */
.caption-title {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.12;
  margin-bottom: 6px;
}

.caption-date {
  font-size: 0.88rem;
  opacity: 0.95;
}

/* Zoom icon (hidden by default, visible on hover/focus) */
.gallery-zoom {
  position: absolute;
  inset: 0;
  /* full card area */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  /* so clicking the icon triggers the link */
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.gallery-zoom i {
  font-size: 34px;
  background: rgba(0, 0, 0, 0.45);
  padding: 12px;
  border-radius: 50%;
  pointer-events: none;
}

.gallery-link:hover .gallery-img,
.gallery-link:focus .gallery-img {
  transform: scale(1.06);
  filter: brightness(0.94);
}

.gallery-link:hover .gallery-zoom,
.gallery-link:focus .gallery-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-link:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}

/* Card lift */
.gallery-link:hover,
.gallery-link:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
}

/* Responsive heights */
@media (max-width: 576px) {
  .gallery-link {
    height: 200px;
    border-radius: 10px;
  }
  .gallery-caption {
    padding: 10px 12px;
  }
  .caption-title {
    font-size: 0.98rem;
  }
  .gallery-zoom i {
    font-size: 28px;
    padding: 10px;
  }
}
.form_title {
  color: var(--header);
  font-size: 24px;
  margin-bottom: 1rem;
}

.shadow_box_card {
  padding: 1rem 1rem 0.75rem;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 24px 0px;
  border-radius: 16px;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .shadow_box_card {
    padding: 1.5rem 1.5rem 1rem;
    --footer-height: 394.45px;
  }
}
.shadow_box_card.zedTabContent {
  max-height: 550px;
  overflow-y: auto;
}
.shadow_box_card ul {
  padding-left: 15px;
}
.shadow_box_card ul,
.shadow_box_card li {
  list-style: unset;
  color: var(--para-color);
  font-size: 14px;
}
.shadow_box_card h5 {
  font-size: 1.2rem;
}

.card_para h5 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card_para p {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.08px;
}

.nav-tabs {
  background: #F8F7FC;
  padding: 6px;
  border-radius: 8px;
}
.nav-tabs:not(.border) {
  border: none !important;
}
.nav-tabs .nav-item {
  margin-bottom: 0 !important;
  min-width: 60px;
  text-align: center;
}
.nav-tabs .nav-item .nav-link {
  margin-right: 0;
  padding: 5px 8px;
  border: none;
  font-size: 18px;
  border-radius: 4px;
  color: var(--text);
}
.nav-tabs .nav-item .nav-link.active {
  background: var(--bg-success-strong) !important;
  border-color: var(--bg-success-strong) !important;
  color: #fff !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  font-weight: normal;
}
.nav-tabs:not(:last-child) .nav-link {
  margin-right: 5px !important;
}
.nav-tabs.style_2 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 6px;
  background: var(--white);
  box-shadow: 0px 6.471px 24.267px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.nav-tabs.style_2 .nav-item .nav-link {
  border-bottom: 3px solid transparent;
  color: #808082;
  border-radius: 0;
  font-size: 16px;
  padding: 0.75rem 0.5rem;
}
@media only screen and (min-width: 576px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 2.5rem;
  }
}
.nav-tabs.style_2 .nav-item .nav-link.active {
  background: transparent !important;
  border-color: var(--bg-success-strong) !important;
  color: var(--bg-success-strong) !important;
  font-weight: 500;
}
.nav-tabs.style_3 {
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
}
.nav-tabs.style_3 .nav-item .nav-link {
  border: 1px solid var(--gray-15);
  color: var(--para-color);
  padding: 2px 12px;
  font-size: 12px;
  border-radius: 14px;
}
.nav-tabs.style_3 .nav-item .nav-link.active {
  color: var(--white) !important;
  background: var(--theme) !important;
  border: var(--theme) !important;
}
.nav-tabs.style_4 {
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}
.nav-tabs.style_4 li {
  position: relative;
  z-index: 2;
}
.nav-tabs.style_4::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  background: var(--gray-15);
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.nav-tabs.style_5 li {
  position: relative;
  z-index: 2;
}
.nav-tabs.style_5 .nav-item .nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px 8px 0 0 !important;
}
.nav-tabs.style_5 .nav-item .nav-link.active {
  background: var(--theme-2) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px 8px 0 0 !important;
}

.date-toggle {
  display: inline-flex;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}
.date-toggle label {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  border-right: 1px solid #d1d5db;
  position: relative;
}
.date-toggle label:last-child {
  border-right: none;
}
.date-toggle label:hover {
  background-color: #f1f5f9;
}
.date-toggle label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: transparent;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
}
.date-toggle label span {
  position: relative;
  z-index: 2;
}
.date-toggle input[type=radio] {
  display: none;
}
.date-toggle input[type=radio]:checked + label {
  background-color: transparent;
  color: #ffffff;
}
.date-toggle input[type=radio]:checked + label::before {
  background-color: var(--bs-primary);
  height: calc(100% + 8px);
}

.profile-percent-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  z-index: 3;
}

.featured_scheme {
  position: relative;
}
@media (max-width: 767px) {
  .featured_scheme .arrow-button {
    display: none;
  }
}
.featured_scheme .arrow-button .array-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%);
  color: var(--white);
  font-size: 14px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background-color: var(--theme-2);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  line-height: 40px;
}
@media (min-width: 1400px) {
  .featured_scheme .arrow-button .array-prev {
    left: -35px;
  }
}
.featured_scheme .arrow-button .array-prev:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}
.featured_scheme .arrow-button .array-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  color: var(--white);
  font-size: 14px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background-color: var(--theme-2);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  line-height: 40px;
}
@media (min-width: 1400px) {
  .featured_scheme .arrow-button .array-next {
    right: -35px;
  }
}
.featured_scheme .arrow-button .array-next:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.people_section .p_card {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: none;
  --size: 145px;
}
.people_section .p_card .img_wrap {
  position: relative;
  z-index: 2;
  min-width: var(--size);
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bs-primary);
  background: #fff;
  transition: all 0.3s ease;
}
.people_section .p_card .img_wrap::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.people_section .p_card .img_wrap img {
  width: 100%;
  height: 100%;
  border-radius: 154px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
@media (max-width: 1399px) {
  .people_section .p_card .img_wrap img {
    border-radius: 1000px;
  }
}
.people_section .p_card .content {
  margin-left: -18px;
  padding: 14px 18px 14px 40px;
  flex-grow: 1;
  background: var(--bg-light);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  text-align: left;
  color: var(--colors-text-text-body) !important;
}
.people_section .p_card .content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.people_section .p_card .content .designation {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.people_section .p_card .content .state {
  font-size: 13px;
}
.people_section .p_card.is_cm .img_wrap {
  border-color: #f0c35a;
}
.people_section .p_card.is_cm .content {
  background-color: var(--bg-light);
  border-right: 3px solid #f0c35a;
}
.people_section .p_card:hover .img_wrap::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.people_section .p_card:hover .img_wrap img {
  transform: scale3d(1.1, 1.1, 1);
}

.auth-wrapper {
  min-height: calc(100vh - 550px);
  /* Slide base */
  /* Image wrapper */
  /* Quote icon */
}
.auth-wrapper .auth-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.auth-wrapper .auth-swiper .swiper-slide {
  position: relative;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.auth-wrapper .slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Overlay */
}
.auth-wrapper .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auth-wrapper .slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 20%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.25) 100%);
}
.auth-wrapper .quote {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.auth-wrapper .quote i {
  display: block;
}
.auth-wrapper .auth-swiper h4 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 3.5rem;
  color: var(--white);
}
.auth-wrapper .auth-swiper .swiper-pagination {
  bottom: 1.5rem;
  left: 50%;
  width: auto;
  text-align: center;
  position: absolute;
}
.auth-wrapper .auth-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin-right: 8px;
  transition: 0.25s ease;
}
.auth-wrapper .auth-swiper .swiper-pagination-bullet-active {
  background: var(--theme);
}
.auth-wrapper .auth-swiper .swiper-button-prev,
.auth-wrapper .auth-swiper .swiper-toggle-btn,
.auth-wrapper .auth-swiper .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  z-index: 6;
  transition: 0.25s ease;
}
.auth-wrapper .auth-swiper .swiper-button-prev::after,
.auth-wrapper .auth-swiper .swiper-toggle-btn::after,
.auth-wrapper .auth-swiper .swiper-button-next::after {
  font-size: 10px;
  color: var(--white);
  font-weight: 600;
}
.auth-wrapper .auth-swiper .swiper-button-prev:hover,
.auth-wrapper .auth-swiper .swiper-toggle-btn:hover,
.auth-wrapper .auth-swiper .swiper-button-next:hover {
  background: var(--theme);
}
.auth-wrapper .auth-swiper .swiper-button-prev:hover::after,
.auth-wrapper .auth-swiper .swiper-toggle-btn:hover::after,
.auth-wrapper .auth-swiper .swiper-button-next:hover::after {
  color: var(--white);
}
.auth-wrapper .auth-swiper .swiper-button-prev {
  left: 1.5rem;
}
.auth-wrapper .auth-swiper .swiper-toggle-btn {
  color: var(--white);
  left: 4rem;
}
.auth-wrapper .auth-swiper .swiper-toggle-btn.is-paused i::before {
  content: "\f4f4";
}
.auth-wrapper .auth-swiper .swiper-button-next {
  left: 6.5rem;
  right: auto;
}
.auth-wrapper .or_divider {
  font-size: 13px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auth-wrapper .or_divider::before, .auth-wrapper .or_divider::after {
  content: "";
  width: calc(50% - 20px);
  height: 1px;
  background: var(--colors-text-text-body);
  display: inline-block;
}

.max-w-400 {
  max-width: 400px;
}

.form_layout .input-group.with_input_icon {
  display: flex;
}
.form_layout .input-group.with_input_icon input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.otp-container {
  display: flex;
  gap: 10px;
}
@media (max-width: 575px) {
  .otp-container {
    gap: 5px;
  }
}
.otp-container .otp-input {
  width: 40px;
  height: 40px;
  font-size: 14px;
  text-align: center;
  border-radius: 12px;
  color: var(--colors-text-text-body);
  border: 1px solid #e0e0e0;
  outline: none;
  transition: border 0.2s ease;
  border-color: rgb(229, 231, 235);
  background: rgb(249, 250, 251);
  box-shadow: 0px 1px 0.5px 0.05px rgba(29, 41, 61, 0.02) !important;
}
.otp-container .otp-input:focus {
  border-color: #ff6600;
}

.workshop_img {
  aspect-ratio: 3/1;
}
.workshop_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal {
  --bs-modal-zindex: 100000;
}
.modal .modal-dialog {
  width: 96%;
}
.modal .modal-lg {
  --bs-modal-width: 800px;
}

.video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-assam-content {
  width: 100%;
  padding-right: 20px;
}

.video_card_about_assam {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.video_card_about_assam video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .about-assam-content {
    padding-right: 0;
  }
  .video_card_about_assam {
    height: 260px;
  }
}
.swiper-wrapper {
  height: 100% !important;
}
.swiper-wrapper .content {
  flex-grow: 1 !important;
  height: unset;
  display: flex;
  flex-direction: column;
}
.swiper-wrapper .content.h-100 {
  height: 100% !important;
}
.swiper-wrapper .swiper-slide {
  height: unset !important;
  display: flex;
  flex-direction: column;
}
.swiper-wrapper .swiper-slide.h-100 {
  height: 100% !important;
}

.assam-travel-card {
  background: #fff;
}

.assam-travel-controls {
  font-size: 14px;
  font-weight: 600;
}

.assam-arrow {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.assam-indicators button {
  background: none;
  border: none;
  margin: 0 6px;
  color: #999;
  cursor: pointer;
  font-weight: 600;
}

.assam-indicators button.active {
  color: #000;
  border-bottom: 2px solid #000;
}

.assam-travel-card img {
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.long_tabs {
  overflow: visible !important;
}
.long_tabs .dropdown-menu {
  position: absolute;
  z-index: 1055;
  border-top-left-radius: var(--bs-dropdown-border-radius);
  border-top-right-radius: var(--bs-dropdown-border-radius);
}

.consultant-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.consultant-img img {
  width: 100%;
  height: 100%;
}
.consultant-img:hover img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

.text_ellipse {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.input-icon-wrapper {
  position: relative;
}
.input-icon-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--colors-text-text-body);
  pointer-events: none;
}
.input-icon-wrapper .form-control {
  padding-left: 40px;
  height: var(--input-height);
}
.input-icon-wrapper.type_1 i {
  left: unset;
  right: 14px;
}

.news-widget-categories ul {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 12px;
}
.news-widget-categories ul .nav-item {
  display: flex;
  align-items: center;
  align-items: center;
  line-height: 1.5;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  min-height: 50px;
}
.news-widget-categories ul .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 0;
  transition: width 0.5s ease;
  border-radius: 12px;
}
.news-widget-categories ul .nav-item.active {
  background-color: var(--theme-2) !important;
}
.news-widget-categories ul .nav-item .nav-link {
  color: var(--header);
  border: none;
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  font-size: 14px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: wrap;
}
.news-widget-categories ul .nav-item .nav-link.active {
  background-color: var(--theme-2) !important;
}
.news-widget-categories ul .nav-item span {
  transition: all 0.3s ease-in-out;
  color: var(--header);
}
.news-widget-categories ul .nav-item:not(:last-child) {
  margin-bottom: 16px;
}
.news-widget-categories ul .nav-item:hover::before {
  width: 100%;
}
.news-widget-categories ul .nav-item:hover a {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.news-widget-categories ul .nav-item:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.sidebar-tabs {
  background: #f7f7fb;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-radio {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border-radius: 14px;
}
.tab-radio::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: var(--theme);
  transition: width 0.35s ease;
  z-index: 1;
}
.tab-radio input {
  display: none;
}
.tab-radio span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  color: var(--theme-2);
  transition: color 0.25s ease, background 0.25s ease;
}
.tab-radio:hover::before {
  width: 100%;
  color: var(--white);
}
.tab-radio:hover span {
  color: #fff;
}
.tab-radio input:checked + span {
  background: var(--theme-2);
  color: #fff;
  font-weight: 600;
}

.white_space {
  white-space: nowrap;
}

/* LEVEL 2 – CHILD ACCORDION HEADER */
.level-2 {
  margin-left: 12px;
}
.level-2 .accordion-item {
  border: 0;
  margin-bottom: 10px;
  background: transparent;
}
.level-2 .child-header {
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #12372a;
  padding: 14px 18px 14px 22px;
  border-radius: 8px;
  border: 1px solid #eee;
  position: relative;
}
.level-2 .child-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: #0b5d44;
  border-radius: 4px;
}
.level-2 .child-header::after {
  background-size: 12px;
  opacity: 0.6;
}
.level-2 .child-header:not(.collapsed) {
  background: #f3faf7;
  border-color: #cde6dc;
}
.level-2 .child-header:not(.collapsed)::before {
  background: #0b5d44;
}
.level-2 .child-header:focus {
  box-shadow: none;
}
.level-2 .accordion-body {
  background: #fafafa;
  margin-left: 10px;
  border-radius: 0 0 8px 8px;
  padding: 16px 18px;
  border-left: 2px solid #e3e3e3;
}

.video_card .card_top {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 16px !important;
  width: 100%;
  /* Image inside the card */
  /* Heading text over the image */
  /* Overlay for play button on hover */
}
.video_card .card_top img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.video_card .card_top .card-heading {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 1;
  font-family: mainFontSansSemiBold;
  margin: 0;
  max-width: calc(100% - 40px);
}
.video_card .card_top .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Play button */
}
.video_card .card_top .overlay .play-button i {
  font-size: 55px;
  color: var(--white);
}
.video_card .card_top .overlay .search_btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bs-primary);
}
.video_card .card_top .overlay .search_btn:hover {
  background-color: #000;
}
.video_card .card_top .overlay .search_btn i {
  font-size: 16px;
  color: var(--white);
}
.video_card .card_bottom {
  flex-wrap: wrap;
  gap: 1px 12px;
}
.video_card:hover img {
  transform: scale(1.1);
}
.video_card:hover .overlay {
  opacity: 1;
}
.video_card.type_2 .overlay {
  opacity: 1;
}
.video_card.type_2 h5 {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.video_card.type_2 h5::before {
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  background: var(--theme);
}
.video_card.type_3 .text_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 15px;
}

.full_modal {
  --bs-modal-width: 100%;
}
.full_modal .modal-dialog {
  margin: 0;
  border-radius: 0;
  padding: 0;
}
.full_modal .modal-dialog .modal-content {
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.full_modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.full_modal .modal-dialog .modal-content .modal-body .ratio {
  width: 100%;
  height: calc(100vh - 50px);
}
.full_modal .full_scroll {
  height: calc(100vh - 40px);
  overflow-y: auto;
}
.full_modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  background-size: 15px;
}

.notify_dropdown .dropdown-menu {
  position: absolute;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 300px;
  top: 50% !important;
  right: -10px !important;
  z-index: 9999;
}
.notify_dropdown .dropdown-menu::after {
  content: "";
  width: 60px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: -40px;
  right: 0;
}
.notify_dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 10px;
  transform: translateX(0%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.notify_dropdown .dropdown-menu > a {
  z-index: 9999;
}
.notify_dropdown .dropdown-menu .dropdown-scroll {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}
.notify_dropdown ul li {
  line-height: 1.5;
}
.notify_dropdown ul li:first-child {
  border-radius: 8px 8px 0 0;
}
.notify_dropdown ul li:last-child {
  border-radius: 0 0 8px 8px;
}
.notify_dropdown ul li:hover {
  background: var(--gray-15);
}
.notify_dropdown ul li:hover > a {
  color: var(--text-color);
}
@media only screen and (min-width: 992px) {
  .notify_dropdown ul li {
    background-color: var(--white);
  }
}
.notify_dropdown .badge_notify {
  top: 4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bs-danger);
}

.sidepanel_layout .sidebar_menu {
  background: var(--white);
  width: 98%;
  max-width: 350px;
  padding: 20px 10px;
  z-index: 99;
  position: fixed;
  top: 0px;
  height: calc(100vh - 5px);
  transform: translateX(-110%);
  transition: all 0.3s ease-in-out;
  left: 0;
}
@media screen and (min-width: 992px) {
  .sidepanel_layout .sidebar_menu {
    display: none;
  }
}
.sidepanel_layout .sidebar_menu .scroll_wrap {
  height: 100%;
  overflow-y: auto;
  margin-right: -6px;
  padding-right: 6px;
}
.sidepanel_layout .sidebar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
  width: 100%;
  display: none;
}
.sidepanel_layout .show_menu .sidebar_menu {
  transform: translateX(0);
}
@media screen and (min-width: 992px) {
  .sidepanel_layout .show_menu .sidebar_menu {
    display: none;
  }
}
.sidepanel_layout .show_menu .sidebar_overlay {
  display: block;
}
.sidepanel_layout .inner_content {
  max-width: 100%;
}

.scrolled_body .sidepanel_layout .sidebar_menu {
  --navbar-height: 100px;
}
@media screen and (min-width: 768px) {
  .scrolled_body .sidepanel_layout .sidebar_menu {
    --navbar-height: 58px;
  }
}

.compliance-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.compliance-card:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}
.compliance-card__description {
  font-size: 14px;
  color: var(--colors-text-text-body);
  text-align: justify;
  line-height: 1.5;
  flex-grow: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px !important;
  border-radius: 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}
.pill i {
  font-size: 10px;
}
.pill__success {
  background: #d1fae5;
  color: #059669;
}
.pill__mandatory {
  background: rgba(254, 226, 226, 0.4196078431);
  color: #dc2626;
}
.pill__warning {
  background: #feefc7;
  color: #b45309;
}

.step-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  overflow-y: scroll;
  max-height: 400px;
}
.step-list li {
  display: flex !important;
  margin-bottom: 16px;
  position: relative;
}
.step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: #4285f4;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin-right: 20px;
  flex-shrink: 0;
}
.step-list li span {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.5;
}
.step-list li:last-child {
  margin-bottom: 0;
}

.wizard > .content > .body ul {
  list-style: none !important;
}/*# sourceMappingURL=main.css.map */

.aspect-12 {
  aspect-ratio: 12/7;
}

.aspect-5 {
  aspect-ratio: 5/4;
}

.radius-start {
  border-radius: 14px 0 0 0 !important;
}

.appendProducts img {
  aspect-ratio: 4/3;
}
.appendProducts .remove-product {
  background: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 14px;
}
.appendProducts.hide_delete .remove-product {
  display: none;
}/*# sourceMappingURL=main.css.map */


.page-nav-wrap ul li .page-numbers.active {
    background: var(--theme-2);
    color: var(--white);
    border: 1px solid var(--theme-2);
}

    .page-nav-wrap ul li .page-numbers.active i {
        color: var(--white);
    }