@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --nunito: "Nunito", sans-serif;
  --cursive: "Edu AU VIC WA NT Pre", cursive;
  --template-font: var(--nunito);
  --template-bg: #ffffff;
  --template-color: #4e4e4e;
  --white: #ffffff;
  --black: #000000;
  --primary-color: #0054A6;
  --secondary-color: #122f2a;
  --tertiary-color: #046a58;
  --quaternary-color: #0054A6;
  --quinary-color: #061408;
  --septenary-color: #0c141f;
  --senary-color: #d9d9d9;
  --hover-color: #836600;
  --transition: all 0.5s ease;
  --shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
  --shadow-secondary: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  --shadow-tertiary: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
  /* --base-bg: #9A3F3F; */
  --base-bg: #9A3F3F;
  --base-color: #000000;
  --cream-bg: rgb(249 246 239);
}

/* ==== 
   --------- (1.02) variables end ---------
   ==== */
/* ==== 
 --------- (2.01) reset styles start ---------
 ==== */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::-moz-selection {
  color: #ffffff;
  background-color: #1770c8;
}

*::selection {
  color: #ffffff;
  background-color: #1770c8;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--template-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--template-color);
  background-color: var(--template-bg);
  overflow-x: clip;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #b5c8d4;
  border-radius: 5px;
}

body::-webkit-scrollbar-button,
body::-webkit-scrollbar-thumb {
  background-color: #076051;
  border-radius: 5px;
}

button {
  background-color: transparent;
  border: 0px;
  outline: 0px;
}

a,
button {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  outline: 0px;
  border: 0px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  color: var(--template-color);
}

a i,
a span,
button i,
button span {
  font-size: inherit;
  line-height: inherit;
  /* color: inherit; */
}

a:hover,
button:hover {
  text-decoration: none;
  border: 0px;
  outline: 0px;
}

a:focus,
button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0px;
}

ul,
ol {
  list-style-type: none;
  list-style-position: inside;
  margin: 0px;
  padding: 0px;
}

hr,
blockquote,
textarea {
  margin: 0px;
  opacity: 1;
}

input,
textarea {
  border: 0px;
  outline: 0px;
}

input:focus,
textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0px;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input[type=checkbox] {
  width: initial;
  height: initial;
}

textarea {
  min-height: 150px;
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

iframe {
  border: 0px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0px;
  margin: 0px;
}

/* ==== 
 --------- (2.01) reset styles end ---------
 ==== */
/* ==== 
 --------- (2.02) typography styles start ---------
 ==== */
p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--template-color);
}

.text-xxl {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 18px;
  line-height: 28px;
}

.text-lg {
  font-size: 16px;
  line-height: 26px;
}

.text-md {
  font-size: 16px;
  line-height: 26px;
}

.text-sm {
  font-size: 14px;
  line-height: 20px;
}

.text-xs {
  font-size: 12px;
  line-height: 20px;
}

a,
button {
  font-size: 16px;
  line-height: 24px;
}

h1 {
  font-size: 30px;
  line-height: 40px;
}

h2 {
  font-size: 30px;
  line-height: 40px;
}

h3 {
  font-size: 24px;
  line-height: 34px;
}

h4 {
  font-size: 20px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 18px;
  line-height: 28px;
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.neutral-top {
  margin-top: -8px;
}

/* ==== 
 --------- (2.02) typography styles end ---------
 ==== */
/* ==== 
 --------- (2.03) global styles start ---------
 ==== */
.community-bg img{
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;  
}
img {
  max-width: 100%;
  height: auto;
  border: 0px;
  outline: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

span {
  display: inline-block;
}

.unset {
  max-width: unset;
}

.dir-rtl {
  direction: rtl;
}

.bg-img {
  background-color: var(--template-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* div {
  line-height: 0px;
} */

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.fw-8 {
  font-weight: 800;
}

.lh-0 {
  line-height: 0;
}

.template-color {
  color: var(--template-color);
}

.primary-text {
  color: var(--primary-color);
}

.secondary-text {
  color: var(--secondary-color);
}

.tertiary-text {
  color: var(--tertiary-color);
}

.quaternary-text {
  color: var(--quaternary-color);
}

.quinary-text {
  color: var(--quinary-color);
}

.septenary-text {
  color: var(--septenary-color);
}

.senary-text {
  color: var(--senary-color);
}

.template-bg {
  background-color: var(--template-bg);
}

.primary-bg {
  background-color: #f9f9f9;
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.tertiary-bg {
  background-color: var(--tertiary-color);
}

.quaternary-bg {
  background-color: var(--quaternary-color);
}

.quinary-bg {
  background-color: var(--quinary-color);
}

.septenary-bg {
  background-color: var(--septenary-color);
}

.senary-bg {
  background-color: var(--quinary-color);
}

.white-bg {
  background-color: var(--white);
}

.black-bg {
  background-color: var(--black);
}

.section-bg-primary {
  background-color: var(--primary-color);
}

.section-bg-secondary {
  background-color: var(--secondary-color);
}

.section-bg-tertiary {
  background-color: var(--tertiary-color);
}

.section-bg-quaternary {
  background-color: var(--quaternary-color);
}

.gutter-60 {
  row-gap: 60px;
}

.gutter-40 {
  row-gap: 40px;
}

.gutter-30 {
  row-gap: 30px;
}

.gutter-24 {
  row-gap: 24px;
}

.gutter-16 {
  row-gap: 16px;
}

.gutter-12 {
  row-gap: 16px;
}

.pt-120 {
  padding-top: 100px;
}

.pt-100 {
  padding-top: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-120 {
  padding-bottom: 100px;
}

.pb-100 {
  padding-bottom: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mt-120 {
  margin-top: 100px;
}

.mt-100 {
  margin-top: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-60 {
  margin-top: 40px;
}

.mt-55 {
  margin-top: 35px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mb-120 {
  margin-bottom: 100px;
}

.mb-100 {
  margin-bottom: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 40px;
}

.mb-55 {
  margin-bottom: 35px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.sticky-wrapper {
  position: relative;
}

.sticky-item {
  position: sticky;
  top: 120px;
}

.divider {
  background-color: #ebebec;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.social a {
  font-size: 16px;
  color: var(--white);
}

.social a:hover {
  color: var(--base-color);
}

.select {
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
  padding: 0px;
  -webkit-padding-end: 16px;
  padding-inline-end: 16px;
  z-index: 999;
}

.select .option {
  padding-inline: 18px !important;
  min-height: 34px;
}

.select::after {
  right: unset;
  inset-inline-end: 0px !important;
  width: 7px;
  height: 7px;
  border-color: var(--black);
  margin-top: -5px;
}

.select .option,
.select .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 0px;
}

.select .option span,
.select .option i,
.select .current span,
.select .current i {
  width: 30px;
  height: 20px;
}

.select .current {
  color: var(--black);
  line-height: 1;
}

.select .list {
  padding: 12px 0px;
}


/* main css */
.event-seciton {
  padding: 80px 0;
}

/* header css */
.topbar {
  background-color: #ececec;
  overflow-x: clip;
}

.topbar .container {
  max-width: 1200px;
}

.topbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  row-gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.grecaptcha-badge {
    display: none;
}
.topbar__secondary::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/new-images/manu-top-bar.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
}


.topbar__list a {
  font-weight: 500;
  line-height: 20px;
}

.topbar__list a i {
  color: var(--base-bg);
  font-size: 18px;
}

.topbar__list a:hover {
  color: var(--base-bg);
}

.top-phone-container {
    display:flex;
    gap:4px;
}
.topbar__list li {
  line-height: 0px;
}

.phone-margin {
    margin-right:5px;
}

.topbar__list li:nth-of-type(1) a {
  font-size: 12px;
}

.topbar__items {
  width: 100%;
  gap: 40px;
  row-gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.topbar__items-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.topbar__items-menu__icon {
  line-height: 0px;
}

.topbar__items-menu__icon i {
  font-size: 20px;
}

.topbar__items-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.topbar__items-menu__link a {
  font-weight: 500;
  color: var(--black);
}

.topbar__items-menu__link a:hover {
  color: var(--hover-color);
}

.topbar__items-menu__link li:nth-last-of-type(1) a {
  color: var(--hover-color);
}

.topbar__items-menu__link li:nth-last-of-type(1) a:hover {
  color: var(--black);
}

.country-select .current {
  color: var(--template-color);
  font-weight: 600;
}

.country-select::after {
  border-color: var(--template-color);
}

.topbar__social-menu {
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  padding-block: 14px;
  position: relative;
  overflow-y: clip;
  z-index: 1;
  line-height: 0px;
}

.topbar__social-menu::before {
  content: "";
  position: absolute;
  inset-inline-start: 0px;
  inset-block-start: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--base-bg);
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 0%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 0%);
}

.topbar__social-menu::after {
  content: "";
  position: absolute;
  inset-inline-start: 99%;
  inset-block: 0px;
  width: 50vw;
  height: 100%;
  background-color: var(--base-bg);
  z-index: -1;
}

.topbar__social-menu a {
  color: var(--base-color);
}

.topbar__social-menu a:hover {
  color: var(--hover-color);
}

.topbar__secondary {
  background-color: var(--primary-color);
  position: relative;
}

.topbar__secondary .container {
  max-width: 1400px;
}

.topbar__secondary .topbar__social-menu {
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

.topbar__secondary .topbar__social-menu::before,
.topbar__secondary .topbar__social-menu::after {
  content: none;
}

.topbar__secondary .topbar__inner {
  padding-bottom: 20px;
}

.topbar__secondary .topbar__list a {
  color: var(--white);
}

.topbar__secondary .topbar__list a i {
  color: var(--white);
}

.topbar__secondary .social a {
  color: var(--white);
}

.topbar__secondary .select .current {
  color: var(--white);
}

.topbar__secondary .select::after {
  border-color: var(--white);
}

.topbar__secondary .topbar__items-menu i {
  color: var(--white);
}

.topbar__secondary .topbar__items-menu a {
  color: var(--white);
}

.topbar__secondary .topbar__items-menu li {
  color: var(--white);
}

.topbar__secondary .topbar__items-menu li:nth-last-of-type(1) a {
  color: #ffc071;
}

.header {
  /* background-color: var(--white); */
  position: absolute;
  z-index: 9;
  width: 100%;
}

.header div {
  line-height: 0px;
}

.header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header.sticky-header .navbar-logo img {
    display:block;
    box-sizing:border-box;
    height: 80px;
    position: absolute;
    top: auto;
}
.header .navbar-logo img {
  max-width: 100%;
  height: 106px;
  position: absolute;
  top: -30px;
}
.header.sticky-header .navbar-logo img {
  transition: all 0.3s ease;
}

/*@media (min-width: 280px) and (max-width: 599px) {*/
/*    .header.sticky-header .navbar-logo img {*/
/*        position: absolute;*/
/*        top: 0px;*/
/*        height:80px;*/
/*    }*/
/*}*/

.header .navbar__menu {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-margin-start: -15px;
  margin-inline-start: -15px;
}

.header .navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end
}

.header.sticky-header .navbar__item a {
  /* padding: 42px 15px; */
}

.header .navbar__item a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 32px 15px;
  width: 100%;
  line-height: 1;
  color: #16171a;
}

.header .navbar__item a:hover {
  color: var(--base-bg);
}

.header .navbar__item .dropdown-label-alter {
  position: relative;
}

.header .navbar__item .dropdown-label-alter::before {
  content: "";
  position: absolute;
  bottom: 0px;
  inset-inline-start: 50%;
  border: 10px solid transparent;
  border-bottom-color: var(--hover-color);
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(100%);
  -ms-transform: translateX(-50%) translateY(100%);
  transform: translateX(-50%) translateY(100%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.header .navbar__item:hover .dropdown-label-alter::before {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
}

.header .navbar__item--has-children {
  position: relative;
}

.header .navbar__item--has-children:hover>.navbar__dropdown-label {
  color: var(--hover-color);
}

.header .navbar__item--has-children:hover>.navbar__dropdown-label::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header .navbar__item--has-children:hover>.navbar__dropdown-label-sub::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header .navbar__item--has-children:hover>.navbar__sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  pointer-events: all;
}

.header .navbar__dropdown-label {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .navbar__dropdown-label::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f107";
  border: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  font-size: inherit;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header .navbar__sub-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0px;
  min-width: 230px;
  max-width: 260px;
  /*background-color: var(--white);*/
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  pointer-events: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /*-webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);*/
  /*box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);*/
  padding: 10px 0px;
  border-radius: 10px;
  z-index: 9;
  
}

.header .navbar__sub-menu li{
    background : var(--white);
}

.header .navbar__sub-menu li:nth-last-of-type(1)  {
    border-radius: 0px 0px 10px 10px;
}

 .header .navbar__sub-menu li:first-child {
    border-radius:  10px 10px 0px 0px; 
 }

.header .navbar__sub-menu li:nth-last-of-type(1)>a {
  border-bottom: 0px;
}

.header .navbar__sub-menu a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 32px;
  color: var(--black);
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid rgba(228, 218, 218, 0.4784313725);
  text-transform: capitalize;
}

.header .navbar__sub-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-start: 20px;
  height: 1px;
  margin-top: 0px;
  width: 0px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--base-bg);
}

.header .navbar__sub-menu a:hover {
  color: var(--base-bg);
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
}

.header .navbar__sub-menu a:hover::before {
  opacity: 1;
  -webkit-transform: translateY(-50%) scaleX(1);
  -ms-transform: translateY(-50%) scaleX(1);
  transform: translateY(-50%) scaleX(1);
  width: 10px;
}

.header .navbar__sub-menu .active>a {
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
}

.header .navbar__sub-menu .active>a::before {
  opacity: 1;
  -webkit-transform: translateY(-50%) scaleX(1);
  -ms-transform: translateY(-50%) scaleX(1);
  transform: translateY(-50%) scaleX(1);
  width: 10px;
}

.header .navbar__sub-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
  color: var(--hover-color);
}

.header .navbar__sub-menu__nested {
  top: 0%;
  inset-inline-start: 100%;
  min-width: 230px;
}

.header .navbar__sub-menu__nested::before {
  content: "";
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
  inset-inline-start: -20px;
  border: 10px solid transparent;
  top: 12px;
  border-inline-end-color: var(--hover-color);
}

.header .active>.navbar__dropdown-label,
.header .active>a {
  color: var(--hover-color);
}

.header .contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.header .contact-btn i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: -3px;
}

.header .contact-btn p {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
  color: #828a8d;
  margin-bottom: 8px;
}

.header .contact-btn a {
  color: #555555;
  line-height: 1;
  font-weight: 700;
}

.header .contact-btn a:hover {
  color: var(--hover-color);
}

.header .navbar__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  /* flex: 1; */
}

.header .navbar__mobile-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  
}

.header .btn--secondary,
.header .btn--primary {
  padding: 10px 14px;
  border-radius: 5px;
}

.header .btn--primary span {
    font-size:14px;
}

.header .search-box button {
  font-size: 24px;
  color: var(--black);
}

.header .search-box button:hover {
  color: var(--hover-color);
}

.header .cart-box {
  position: relative;
  -webkit-margin-end: 12px;
  margin-inline-end: 12px;
}

.header .cart-box button {
  font-size: 24px;
  color: var(--black);
}

.header .cart-box button:hover {
  color: var(--hover-color);
  border-color: var(--hover-color);
}

.header .cart-box span {
  position: absolute;
  top: -12px;
  inset-inline-end: -12px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--base-bg);
  color: var(--base-color);
  font-size: 12px;
  font-weight: 700;
}

.header .open-offcanvas-nav {
  padding: 0px;
  display: inline-block;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.header .open-offcanvas-nav span {
  height: 2px;
  background-color: var(--quaternary-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.header .open-offcanvas-nav .top-bar {
  width: 30px;
}

.header .open-offcanvas-nav .middle-bar {
  width: 34px;
}

.header .open-offcanvas-nav .bottom-bar {
  width: 16px;
}

.header .open-offcanvas-nav:hover span {
  background-color: var(--hover-color);
}

.header .open-offcanvas-nav-active .middle-bar {
  opacity: 0;
}

.header .open-offcanvas-nav-active .top-bar,
.header .open-offcanvas-nav-active .bottom-bar {
  width: 30px !important;
}

.header .open-offcanvas-nav-active .top-bar {
  -webkit-transform: rotate(45deg) translateY(5px) translateX(9px);
  -ms-transform: rotate(45deg) translateY(5px) translateX(9px);
  transform: rotate(45deg) translateY(5px) translateX(9px);
  background-color: var(--base-color);
}

.header .open-offcanvas-nav-active .bottom-bar {
  -webkit-transform: rotate(-45deg) translateY(-5px) translateX(9px);
  -ms-transform: rotate(-45deg) translateY(-5px) translateX(9px);
  transform: rotate(-45deg) translateY(-5px) translateX(9px);
  background-color: var(--base-color);
}

.mega-menu {
  min-width: -webkit-max-content !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
  max-width: 100% !important;
  background-color: var(--white);
  padding: 20px !important;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.mega-menu li>a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0px !important;
  padding-left: 32px !important;
  font-weight: 700;
}

.mega-menu li>a::before {
  content: none !important;
}

.mega-menu li {
  padding: 20px !important;
  padding-bottom: 0px !important;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.mega-menu li:hover .mega-content-wrapper .mega-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.mega-menu .mega-content-wrapper {
  position: relative;
  width: 190px;
  overflow: hidden;
  border-radius: 5px;
}

.mega-menu .mega-content-wrapper img {
  width: 100%;
  height: 230px;
  border-radius: 5px;
}

.mega-menu .mega-content {
  position: absolute;
  inset: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
}

.mega-menu .mega-content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 140px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 60px !important;
  border: 0px solid transparent !important;
  font-weight: 700;
}

.mega-menu .mega-content a::before,
.mega-menu .mega-content a::after {
  content: none !important;
}

.mega-menu .mega-content a:hover {
  padding-left: 32px !important;
}

.mega-menu .mega-content .btn--primary:hover {
  background-color: var(--white) !important;
  color: var(--black) !important;
}

.mega-menu .mega-content .btn--secondary {
  background-color: var(--white) !important;
  color: var(--black) !important;
}

.mega-menu .mega-content .btn--secondary:hover {
  background-color: var(--base-bg) !important;
  color: var(--black) !important;
}

.header-primary {
  padding: 27px 0px;
}

.header-primary .container {
  max-width: 1200px;
}

.header-secondary .container {
  /*max-width: 1200px;*/
}

.header-secondary .main-header__menu-box {
  -webkit-padding-start: 24px;
  padding-inline-start: 24px;
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
  position: relative;
  top: -20px;
  margin-bottom: -30px;
  padding-right: 12px;
  border-radius: 50px 50px 50px 0px;
}

.header-secondary .navbar__mobile-options .btn--secondary {
  padding: 16px 40px;
  border-radius: 100px !important;
}

.header-secondary .navbar__mobile-options,
.header-tertiary .navbar__mobile-options,
.header-quaternary .navbar__mobile-options {
  gap: 6px;
}

.header-secondary .navbar__mobile-options .btn--secondary,
.header-tertiary .navbar__mobile-options .btn--secondary,
.header-quaternary .navbar__mobile-options .btn--secondary {
  border-radius: 0px;
}

.header-tertiary,
.header-quaternary {
  padding: 27px 0px;
}

.header-quaternary {
  position: absolute;
  top: 0px;
  inset-inline: 0px;
}

.sticky-header {
  position: fixed !important;
  z-index: 999;
  top: 0px;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  width: 100%;
  -webkit-animation: stickyNavbar 0.5s linear;
  animation: stickyNavbar 0.5s linear;
  background: var(--white) !important;
  -webkit-filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.07));
  padding:16px 0;
}

@-webkit-keyframes stickyNavbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes stickyNavbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.sticky-header .topbar {
  display: none;
}

.header-secondary.sticky-header .main-header__menu-box {
  position: static;
  top: 0px;
  margin-bottom: 0px;
  -webkit-filter: none;
  filter: none;
}

.mobile-menu {
  position: fixed;
  inset: 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  max-width: 400px;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

.mobile-menu .mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0px 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-menu .logo img {
  max-width: 150px;
}

.mobile-menu .close-mobile-menu {
  font-size: 36px;
  color: var(--hover-color);
  position: relative;
  top: -10px;
  inset-inline-end: 0px;
}

.close-mobile-menu i {
       font-size:18px ;
}
.mobile-menu .mobile-menu__wrapper {
position: absolute;
    inset-inline-start: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: var(--white);
    padding: 30px 0 40px 0px;
    z-index: 9999;
    border-radius: 0px;
    overflow-y: auto;
    overflow-x: clip;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-transition: all 900ms 
ease;
    transition: all 900ms 
ease;
}

.mobile-menu .mobile-menu__wrapper::-webkit-scrollbar {
  width: 0px;
}

.mobile-menu .navbar__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 0px !important;
}

.mobile-menu .navbar__list>li>a,
.mobile-menu .navbar__list>li button {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__list>li:nth-of-type(1) {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__item {
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-menu .navbar__item a {
  color: var(--black);
  padding-block: 20px;
  padding-inline: 40px 80px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  width: 100%;
  position: relative;
  font-weight: 700;
}

.mobile-menu .navbar__item a:hover {
  color: var(--hover-color);
}

.mobile-menu .navbar__item a::after {
  -webkit-transition: none;
  transition: none;
}

.mobile-menu .nav-fade {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.7s ease-in-out !important;
  transition: all 0.7s ease-in-out !important;
}

.mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  bottom: 0px;
  height: 100%;
  width: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-border-start: 1px solid rgba(0, 0, 0, 0.08);
  border-inline-start: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.mobile-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
  color: var(--hover-color) !important;
}

.mobile-menu .navbar__item-active {
  color: var(--hover-color) !important;
  font-weight: 600 !important;
}

.mobile-menu .navbar__item-active::after {
  content: "\f068" !important;
  font-family: "Font Awesome 7 Free" !important;
  font-weight: 900;
}

.mobile-menu .navbar__sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  width: 100%;
  max-width: 100%;
  padding: 0px;
  display: none;
  -webkit-transition: none;
  transition: none;
  background-color: transparent;
  border-radius: 0px;
}

.mobile-menu .navbar__sub-menu::before {
  content: none;
}

.mobile-menu .navbar__sub-menu a,
.mobile-menu .navbar__sub-menu button {
  color: var(--black);
  padding: 20px 40px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__sub-menu a::before,
.mobile-menu .navbar__sub-menu button::before {
  content: none;
}

.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .mobile-menu__options {
  padding: 0px 40px;
}

.mobile-menu .mobile-menu__options a,
.mobile-menu .mobile-menu__options button {
  width: 100%;
}

.mobile-menu .mobile-menu__cta {
  text-align: center;
  padding: 0px 40px;
}
.mobile-menu .mobile-menu__cta.mob-cta .btn--primary {
    padding: 10px 20px;
    border-radius: 5px;
    gap: 12px;
    width: max-content;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size:14px;
}
.mobile-menu .mobile-menu__cta .btn--primary {
  padding: 16px 40px;
  border-radius: 5px;
  gap: 12px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile-menu .mobile-menu__cta .btn--primary::after,
.mobile-menu .mobile-menu__cta .btn--primary::before {
  border-radius: 0px;
}

.mobile-menu .mobile-menu__cta .btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}

.mobile-menu .mobile-menu__cta .btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.mobile-menu .btn--primary-alt i {
  font-size: 25px !important;
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.mobile-menu .mobile-menu__social {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 0px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.mobile-menu .mobile-menu__social a {
  font-size: 16px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--white);
}

.mobile-menu .mobile-menu__social a:hover {
  background-color: var(--base-color);
  color: var(--black);
}

.mobile-menu .active>.navbar__dropdown-label,
.mobile-menu .active>a {
  color: var(--hover-color);
  font-weight: 600;
}

.mobile-menu .active>.navbar__dropdown-label::after,
.mobile-menu .active>a::after {
  font-weight: 900;
}

.mobile-menu .btn--secondary {
  width: 100%;
}

.mobile-menu__backdrop {
  position: fixed;
  inset-inline-end: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
  visibility: hidden;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.mobile-menu__backdrop-active {
  width: 100%;
  visibility: visible;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.show-menu {
  opacity: 1;
  visibility: visible;
}

.show-menu .mobile-menu__wrapper {
  inset-inline-start: 0px;
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.show-menu .nav-fade {
  -webkit-animation: navLinkFade 0.5s ease forwards;
  animation: navLinkFade 0.5s ease forwards;
  -webkit-transition: all 0.7s ease-in-out !important;
  transition: all 0.7s ease-in-out !important;
}

.nav-fade-active {
  animation: navLinkFade 1s ease reverse !important;
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes navLinkFadeReverse {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes navLinkFadeReverse {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.mfp-bg {
  z-index: 9999;
}

.mfp-wrap {
  z-index: 99999;
}



.search-popup {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.search-popup .popup-container {
  position: absolute;
  max-width: 700px;
  top: 30%;
  inset-inline-start: 15px;
  inset-inline-end: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-popup .search-popup__group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .search-popup__group input {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: var(--black);
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-padding-end: 80px;
  padding-inline-end: 80px;
  border-radius: 5px;
}

.search-popup .search-popup__group button {
  color: var(--secondary-color);
}

.search-popup .search-popup__group button:hover {
  color: var(--hover-color);
}

.search-popup .popup-container a {
  position: absolute;
  left: 50%;
  translate: -50%;
  margin-top: 30px;
}

.close-search i {
    color: var(--white);
}

.search-popup .close-search {
  position: absolute;
  inset-inline-end: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: var(--white);
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-popup .close-search {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--base-bg);
  width: 70px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  color: var(--base-color);
}

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 20px;
  line-height: 70px;
  color: var(--black);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-top: 0;
}

.search-active .search-popup .popup-container {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 30%;
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

/* ==== 
 --------- (4.01) header styles end ---------
 ==== */

 .banner-two .banner-two__slider-content h1 {
  background: -webkit-gradient(linear, left top, right top, from(#ffcc00), color-stop(#00ccff), color-stop(#ff6600), to(#ffcc00));
  background: linear-gradient(90deg, #ffcc00, #00ccff, #ff6600, #ffcc00);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
   color: transparent !important; 
  -webkit-animation: moveBg 5s ease-in-out infinite;
  animation: moveBg 5s ease-in-out infinite;
}

@-webkit-keyframes moveBg {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



.section__header {
  /* max-width: 460px; */
  margin-inline: auto;
}

.section__header span {
  font-weight: 700;
  /*color: var(--quaternary-color);*/
  margin-top: -8px;
}

.section__header .mini-title {
   color: var(--quaternary-color);
}

.section__header h2 {
  color: var(--black);
  font-weight: 700;
  font-size: 34px;
   margin: 12px 0px 20px; 
}

.section__header i {
  font-size: 24px;
  color: var(--quaternary-color);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.section__header .icon-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.section__header .icon-thumb .icon-thumb-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3px;
  line-height: 0px;
  padding-bottom: 4px;
}

.section__header .icon-thumb .icon-thumb-single:nth-of-type(2) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section__header .icon-thumb span {
  width: 70px;
  height: 1px;
  background-color: var(--quaternary-color);
  display: inline-block;
  line-height: 0px;
}

.section__header .icon-thumb span:nth-of-type(2) {
  width: 56px;
}

.section__header .mini-title {
  /*margin-bottom: 14px;*/
}



.btn--primary {
  padding: 13px 24px;
  background-color: var(--base-bg);
  color: var(--white) !important;
  position: relative;
  font-weight: 700;
  z-index: 1;
  gap: 16px;
  overflow: hidden;
  letter-spacing: 0.8px;
  border-radius: 50px !important;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  inset-inline-end: 0%;
  width: 0px;
  height: 100%;
  background-color: var(--quaternary-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
}

.btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}

.btn--primary:hover {
  color: var(--white);
}

.btn--primary:hover::after {
  width: 100%;
  inset-inline-start: 0%;
}

.btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}


/* banner section  */
.banner {
  margin-top: 0px !important;
  padding: 120px 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset-block: 0px;
  inset-inline-start: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.08) 9.94%, rgba(9, 31, 27, 0.17) 22.52%, rgba(9, 31, 27, 0.37) 36.84%, rgba(9, 31, 27, 0.67) 56.36%, #091f1b 79.8%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%);
  z-index: -3;
}

.banner .circle-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: linear-gradient(138deg, rgba(18, 47, 42, 0) 23.66%, #122f2a 91.54%);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: -2;
}

.banner .sub-title,
.banner h1,
.banner p {
  color: var(--white);
}

.banner h1 {
  font-weight: 800;
  margin-block: 15px 20px;
}

.banner h1 span {
  color: var(--base-bg);
}

.banner p {
  max-width: 800px;
  margin-inline: auto;
}

.banner .banner__content-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.banner .banner__content-cta .btn--primary {
  background-color: var(--quaternary-color);
  color: var(--white);
}

.banner .banner__content-cta .btn--primary::after {
  background-color: var(--base-bg);
}

.banner .banner__content-cta .btn--primary:hover {
  color: var(--black);
}

.banner .banner__content .sub-title,
.banner .banner__content h1,
.banner .banner__content p,
.banner .banner__content .banner__content-cta {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner .swiper-slide-active .banner__content .sub-title {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.banner .swiper-slide-active .banner__content h1 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner .swiper-slide-active .banner__content p {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner .swiper-slide-active .banner__content .banner__content-cta {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner .btn--tertiary,
.banner .btn--primary {
  padding: 18px 40px;
  border-radius: 5px;
  font-weight: 700;
  gap: 8px;
}

.banner .btn--tertiary::before,
.banner .btn--tertiary::after,
.banner .btn--primary::before,
.banner .btn--primary::after {
  border-radius: 0px;
}

.banner .btn--tertiary i,
.banner .btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
  font-size: 18px;
}

.banner .btn--tertiary:hover i,
.banner .btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.banner .banner-bg {
  position: absolute;
  inset: 0px;
  z-index: -4;
  overflow: hidden;
}

.banner .banner-bg img {
  width: 100%;
  height: 100%;
}


.banner .banner-bg .parallax-image-wrap,
.banner .banner-bg .parallax-image-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
}

.banner .alter-shape {
  position: absolute;
  inset-block-end: 0px;
  inset-inline-start: 0px;
  -webkit-margin-start: -100px;
  margin-inline-start: -100px;
  -webkit-margin-after: -100px;
  margin-block-end: -100px;
  background-color: rgba(255, 255, 255, 0.21);
  width: 300px;
  height: 300px;
  z-index: -1;
  border-radius: 50%;
  border-start-start-radius: 200px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.banner .bottom-shape {
  position: absolute;
  bottom: -2px;
  inset-inline: 0px;
}

.banner .bottom-shape img {
  width: 100%;
  height: 80px;
}

.banner-two {
  margin-top: 0px !important;
  position: relative;
  overflow: hidden;
}

.banner-two .banner-two__slider-single {
  padding-block: 120px 180px;
  position: relative;
  z-index: 1;
}

.banner-two .banner-two__slider-single::after {
  content: "";
  position: absolute;
  inset-block: 0px;
  inset-inline-start: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.5;
  z-index: -3;
}

.banner-two .btn--primary {
  padding: 18px 40px;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--quaternary-color);
}

.banner-two .btn--primary::after {
  background-color: var(--base-bg);
}

.banner-two .btn--primary:hover {
  color: var(--black);
}

.banner-two .banner-two__slider-bg {
  position: absolute;
  inset: 0px;
  z-index: -4;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-two .banner-two__slider-content .sub-title {
  color: var(--base-bg);
  text-transform: capitalize;
}

.banner-two .banner-two__slider-content h1 {
  color: var(--white);
  font-weight: 800;
  margin-top: 16px;
  max-width: 460px;
  font-size:50px;
  line-height:1.2;
}

.banner-two .banner-two__slider-content h1 br {
  display: none;
}

.banner-two .banner-two__slider-content h1 span {
  color: var(--base-bg);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 0px bottom 0px;
}

.banner-two .banner-two__slider-content .sub-title,
.banner-two .banner-two__slider-content h1,
.banner-two .banner-two__slider-content .banner__content-cta {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-two .banner__content-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.banner-two .slider-navigation {
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-end: 60px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  gap: 20px;
}

.banner-two .swiper-slide-active .banner-two__slider-bg {
  -webkit-animation: backgroundAnimation 12s ease-in-out;
  animation: backgroundAnimation 12s ease-in-out;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.banner-two .swiper-slide-active .banner-two__slider-content .sub-title {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.banner-two .swiper-slide-active .banner-two__slider-content h1 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-two .swiper-slide-active .banner-two__slider-content .banner__content-cta {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-two .shape-left {
  position: absolute;
  inset-inline-start: 0px;
  top: 60%;
  bottom: 0px;
  z-index: 2;
}

.banner-two .shape-left img {
  width: 100%;
  height: 100%;
  -webkit-animation: moveTopBottom 4s ease-in-out infinite;
  animation: moveTopBottom 4s ease-in-out infinite;
}

.banner-two .sprade-shape {
  position: absolute;
  top: 60%;
  inset-inline-start: 80%;
  z-index: 2;
}

.banner-two .sprade-shape img {
  max-width: 5vw;
  min-width: 30px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.banner-two .shape {
  position: absolute;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  top: -5px;
  z-index: 3;
}

.banner-two .shape img {
  width: 100%;
  height: 28px;
}

.banner-two .unity {
  position: absolute;
  inset-block-end: 0px;
  inset-inline-end: 0px;
  z-index: 1;
}

.banner-two .unity img {
  -webkit-animation: moveLeftRight 4s ease-in-out infinite;
  animation: moveLeftRight 4s ease-in-out infinite;
  max-width: 15vw;
  min-width: 50px;
}


.slider-navigation .slider-btn {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 20px;
}

.slider-navigation .slider-btn:hover {
  background-color: var(--base-bg);
  color: var(--black);
}

.slider-btn i {
    color:var(--black);
}

.slider-navigation .slider-btn:hover i { 
        color:var(--white);
}

.slider-btn-next i {
    color:var(--white) !important;
}

.slider-navigation .slider-btn-next:hover i { 
        color:var(--black) !important;
}


.slider-navigation .slider-btn-next {
  background-color: var(--base-bg);
  color: var(--black);
}

.slider-navigation .slider-btn-next:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.banner-four .slider-navigation .slider-btn,
.banner-two .slider-navigation .slider-btn {
  background-color: var(--white);
  color: var(--black);
}

.banner-four .slider-navigation .slider-btn:hover,
.banner-two .slider-navigation .slider-btn:hover {
  background-color: var(--base-bg);
  color: var(--black);
}

.banner-four .slider-navigation .slider-btn-next,
.banner-two .slider-navigation .slider-btn-next {
  background-color: var(--base-bg);
  color: var(--black);
}

.banner-four .slider-navigation .slider-btn-next:hover,
.banner-two .slider-navigation .slider-btn-next:hover {
  background-color: var(--white);
  color: var(--black);
}

@-webkit-keyframes backgroundAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes backgroundAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes moveLeftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }
}

@keyframes moveLeftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }
}

@keyframes moveTopBottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }
}

@-webkit-keyframes fall {
  0% {
    top: -150px;
    -webkit-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(-45%) rotate(-40deg);
    transform: translateX(-45%) rotate(-40deg);
  }

  50% {
    top: 400px;
    -webkit-transform: translateX(-50%) rotate(-10deg);
    transform: translateX(-50%) rotate(-10deg);
  }

  75% {
    -webkit-transform: translateX(-55%) rotate(-30deg);
    transform: translateX(-55%) rotate(-30deg);
  }

  100% {
    top: 1600px;
    -webkit-transform: translateX(-50%) rotate(-10deg);
    transform: translateX(-50%) rotate(-10deg);
  }
}

@keyframes fall {
  0% {
    top: -150px;
    -webkit-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(-45%) rotate(-40deg);
    transform: translateX(-45%) rotate(-40deg);
  }

  50% {
    top: 400px;
    -webkit-transform: translateX(-50%) rotate(-10deg);
    transform: translateX(-50%) rotate(-10deg);
  }

  75% {
    -webkit-transform: translateX(-55%) rotate(-30deg);
    transform: translateX(-55%) rotate(-30deg);
  }

  100% {
    top: 1600px;
    -webkit-transform: translateX(-50%) rotate(-10deg);
    transform: translateX(-50%) rotate(-10deg);
  }
}



/* --------- events section styles start ---------
 ==== */
.help {
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
  background:#faf8f3;
}

.help .help__thumb {
  direction: rtl;
  padding-right: 60px;
}

.help .section__header {
  margin-inline: 0px;
}

.help .help__thumb-inner {
  text-align: end;
  position: relative;
  min-width: 575px;
  direction: ltr;
}

.help .help__thumb-inner .thumb {
  display: inline-block;
  border: 8px solid var(--white);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
}

.help__thumb-inner .thumb-lg img {
  width: 478px;
  height: 560px;
  object-fit: cover;
}

.help__thumb-inner .thumb-bottom img,
.help__thumb-inner .thumb-top img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}


.help .help__thumb-inner .thumb .parallax-image-inner,
.help .help__thumb-inner .thumb .parallax-image-wrap {
  border-radius: 10px;
}

.help .help__thumb-inner .thumb img {
  border-radius: 10px;
}

.help .thumb-lg {
  margin-bottom: 100px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.help .thumb-lg::before {
  content: "";
  position: absolute;
  inset: 0px;
  /* background: linear-gradient(104deg, rgba(12, 26, 23, 0) 1.9%, rgba(0, 113, 93, 0.08) 18.93%, rgba(0, 113, 93, 0.17) 29.72%, rgba(0, 113, 93, 0.37) 83.58%, rgba(0, 113, 93, 0.67) 109.85%, #00715d 133.89%, #00715d 133.91%, rgba(0, 113, 93, 0.91) 149.32%); */
  border-radius: inherit;
}

.help .thumb-lg::after {
  content: "";
  position: absolute;
  bottom: -100px;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  border: 1px solid var(--base-bg);
  border-radius: 20px;
  z-index: -1;
}

.help .video-btn-wrapper::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--black);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.help .video-btn-wrapper i {
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
}

.help .thumb-bottom {
  position: absolute;
  bottom: 0px;
  inset-inline-end: 0px;
  z-index: 2;
}

.help .thumb-top {
  position: absolute;
  top: 0px;
  inset-inline-start: 0px;
  z-index: 2;
}

.help .line {
  position: absolute;
  display: inline-block;
  top: 10px;
  inset-inline-end: 50px;
}

.help .line img {
  -webkit-animation: wave 3s linear infinite;
  animation: wave 3s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.help .grid-line {
  position: absolute;
  inset-inline-start: -35px;
  top: 60%;
}

.help .grid-line img {
  -webkit-animation: moveTopBottom 4s ease-in-out infinite;
  animation: moveTopBottom 4s ease-in-out infinite;
}


@keyframes moveTopBottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }
}


.help .vertical-text {
  padding: 50px 30px;
  background-color: var(--quaternary-color);
  display: inline-block;
  position: absolute;
  bottom: 0px;
  inset-inline-start: 0px;
  border-top: 5px solid var(--base-bg);
  border-bottom: 5px solid var(--base-bg);
  border-radius: 20px;
  z-index: 3;
}

.help .vertical-text h5 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  font-weight: 800;
  color: var(--white);
  text-transform: lowercase;
}

.help .vertical-text h5 span {
  color: var(--base-bg);
}

.help .sub-title {
  color: var(--quaternary-color);
}

.help h2 {
  font-weight: 800;
  color: var(--secondary-color);
  margin: 16px 0px 10px;
}

.help h2 span {
  color: var(--base-bg);
}

.help p {
  max-width: 630px;
}

.help .help__content-icon-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  row-gap: 24px;
  margin: 35px 0px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.help .help__content-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.help .help__content-icon .thumb {
  position: relative;
}

.help .help__content-icon .thumb::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  background-color: var(--base-bg);
  z-index: -1;
  border-radius: 50%;
}

.help .help__content-icon .thumb i {
  font-size: 60px;
  color: var(--secondary-color);
}

.help .content h6 {
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: -8px;
  margin-bottom: 6px;
}

.help .content p {
  font-size: 15px;
  line-height: 24px;
}

.help .help__content-list li {
  margin-bottom: 8px;
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.help .help__content-list li i {
  font-size: 20px;
}

.help .help__content-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  row-gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.help .help__content-cta .btn--primary {
  /* padding: 23px 46px; */
  border-radius: 5px;
}

.help .help__content-cta .btn--primary::before,
.help .help__content-cta .btn--primary::after {
  border-radius: 0px;
}

.help .help__content-cta .contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.help .help__content-cta .contact-btn div {
  line-height: 0px;
}

.help .help__content-cta .contact-btn i {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: -5px;
}

.help .help__content-cta .contact-btn p {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #828a8d;
  margin-bottom: 8px;
}

.help .help__content-cta .contact-btn a {
  color: var(--secondary-color);
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
}

.help .help__content-cta .contact-btn a:hover {
  color: var(--hover-color);
}

.help .hand {
  position: absolute;
  z-index: -1;
  top: 5%;
  inset-inline-start: 0px;
}

.help .hand img {
  max-width: 10vw;
  min-width: 30px;
  animation: moveUpDown 10s ease-in-out infinite alternate-reverse;
}


@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0.5;
  }
}

.help .spade {
  position: absolute;
  top: 65%;
  inset-inline-end: 3%;
  z-index: -1;
}

.help .spade img {
  max-width: 5vw;
  min-width: 30px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}


@keyframes pulse {

  0%,
  100% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 0.3;
  }

  50% {
    -webkit-transform: scale(1.2) translate(-50%, -50%);
    transform: scale(1.2) translate(-50%, -50%);
    opacity: 1;
  }
}


.help .parasuit {
  position: absolute;
  top: -150px;
  inset-inline-start: 8%;
  z-index: -1;
  -webkit-transform: translate(0px);
  -ms-transform: translate(0px);
  transform: translate(0px);
  -webkit-animation: fall 15s ease-in-out infinite;
  animation: fall 15s ease-in-out infinite;
}

.help .parasuit img {
  max-width: 8vw;
  min-width: 40px;
}

.help-two {
  position: relative;
  overflow: hidden;
}

.help-two .help-two__thumb,
.help-two .help-two__content {
  height: 100%;
}

.help-two .help-two__thumb {
  direction: rtl;
}

.help-two .section__header {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.help-two .help-two__thumb-inner {
  min-width: 640px;
  direction: ltr;
  height: 100%;
  position: relative;
  z-index: 1;
}

.help-two .help-two__thumb-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-start: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px dashed #f84d42;
  z-index: -1;
}

.help-two .help-two__thumb-inner .thumb-lg {
  position: absolute;
  bottom: 0px;
  inset-inline-end: 50px;
}

.help-two .help-two__thumb-inner .thumb-lg img {
  min-height: 240px;
  border-radius: 20px;
}

.help-two .help-two__thumb-inner .parallax-image-inner,
.help-two .help-two__thumb-inner .parallax-image-wrap {
  border-radius: 20px;
}

.help-two .help-two__thumb-inner .thumb-sm {
  position: absolute;
  top: 60px;
  inset-inline-start: 0px;
}

.help-two .help-two__thumb-inner .thumb-sm img {
  min-height: 160px;
  border-radius: 0px 16px 16px 0px;
}

.help-two .help-two__thumb-inner .thumb-md {
  position: absolute;
  top: 0px;
  inset-inline-end: 20px;
}

.help-two .help-two__thumb-inner .thumb-md img {
  min-height: 160px;
  border-radius: 16px;
}

.help-two .help-two__thumb-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.47);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.help-two .help-two__thumb-content i {
  font-size: 65px;
  color: var(--quaternary-color);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.help-two .help-two__thumb-content h2 {
  font-weight: 800;
}

.help-two .help-two__thumb-content h2 div {
  line-height: inherit !important;
}

.help-two .help-two__thumb-content p {
  font-size: 20px;
  font-weight: 600;
}

.help-two .help-two__thumb-content h2,
.help-two .help-two__thumb-content p {
  color: var(--quaternary-color);
}

.help-two .help-two__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.help-two .help-two__inner .help-two__inner-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.help-two .help-two__inner .help-two-card-wrapper {
  min-width: 100%;
}

.help-two .help-two__inner hr {
  margin: 30px 0px;
  border-color: #d9d9d9;
}

.help-two .help__content-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.help-two .help__content-icon .thumb {
  position: relative;
}

.help-two .help__content-icon .thumb::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  background-color: var(--base-bg);
  z-index: -1;
  border-radius: 50%;
}

.help-two .help__content-icon .thumb i {
  font-size: 60px;
  color: var(--secondary-color);
}

.help-two .content h6 {
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: -8px;
  margin-bottom: 6px;
}

.help-two .content p {
  font-size: 15px;
  line-height: 24px;
}

.help-two .help__content-list {
  margin-top: 34px;
}

.help-two .help__content-list li {
  margin-bottom: 8px;
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.help-two .help__content-list li i {
  font-size: 20px;
}

.help-two .help-two__card {
  padding: 0px 12px 60px;
  position: relative;
  z-index: 1;
}

.help-two .help-two__card::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-31deg, white 70%, transparent 50%);
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  z-index: -1;
}

.help-two .help-two__card::after {
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background-color: var(--base-bg);
}

.help-two .help-two__card .help-card-thumb {
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-inline: auto;
}

.help-two .help-two__card .help-card-thumb img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.help-two .help-two__card .help-card-thumb i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-start: -30px;
  font-size: 60px;
  color: var(--base-bg);
}

.help-two .help-card-content {
  text-align: center;
  margin-top: 30px;
}

.help-two .help-card-content h4 {
  font-weight: 800;
  color: var(--quaternary-color);
}

.help-two .help-card-content h6 {
  color: var(--secondary-color);
  font-weight: 700;
  margin: 6px 0px;
}

.help-two .help-card-content p {
  color: #747474;
  font-size: 14px;
}

.help-three {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 100px;
}

.help-three .section__header {
  text-align: center;
}

.help-three .section__header h2 {
  text-align: center !important;
}

.help-three .help-three__inner {
  padding: 5px 20px 80px;
  background: var(--white);
  -webkit-box-shadow: 0px 21px 33px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 21px 33px 0px rgba(0, 0, 0, 0.04);
}

.help-three .help-three__wrapper {
  position: relative;
  z-index: 1;
}

.help-three .help-three__wrapper .v-line {
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.help-three .help-cta {
  text-align: center;
}

.help-three .btn--primary {
  padding: 18px 40px;
  border-radius: 5px;
  font-weight: 700;
  gap: 8px;
}

.help-three .btn--primary::before,
.help-three .btn--primary::after {
  border-radius: 0px;
}

.help-three .btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
  font-size: 18px;
}

.help-three .btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.help-three .help-three__single {
  text-align: center;
}

.help-three .help-three__single:hover .thumb {
  border-color: var(--base-bg);
}

.help-three .help-three__single:hover .thumb i {
  color: var(--black);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.help-three .help-three__single:hover .help-three__tag {
  background-color: var(--base-bg);
}

.help-three .help-three__single:hover .help-three__tag h6 {
  color: var(--black);
}

.help-three .help-three__thumb {
  position: relative;
  margin-bottom: 25px;
}

.help-three .thumb {
  width: 194px;
  min-width: 194px;
  height: 194px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 8px 23px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 8px 23px rgba(0, 0, 0, 0.07));
  border: 1px solid transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.help-three .thumb i {
  font-size: 60px;
  color: var(--quaternary-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.help-three .help-three__tag {
  padding: 20px 40px;
  background-color: var(--quaternary-color);
  -webkit-clip-path: polygon(0% 0%, 100% 30%, 80% 100%, 10% 90%, 0% 0%);
  clip-path: polygon(0% 0%, 100% 30%, 80% 100%, 10% 90%, 0% 0%);
  width: 194px;
  margin-inline: auto;
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.help-three .help-three__tag h6 {
  color: var(--white);
  font-weight: 700;
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  margin-bottom: -6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.help-three .help-three__content {
  padding-top: 25px;
}

.help-three .help-three__content h6 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.help-three .help-three__content p {
  color: #5e5f63;
  font-size: 15px;
  max-width: 230px;
  margin-inline: auto;
}

.help-three .help-three-bg {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 70%;
  z-index: -1;
  overflow: hidden;
}

.help-three .help-three-bg::before {
  content: "";
  position: absolute;
  top: -80px;
  inset-inline-start: -80px;
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--base-bg);
  z-index: -2;
}

.help-three .help-three-bg .bg-help {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: -4;
}

.help-three .poor-boy {
  position: absolute;
  inset-inline-end: 0px;
  top: 0px;
  bottom: 0px;
  height: 100%;
  width: 45%;
  z-index: -3;
}

.help-three .poor-boy::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.08) 16.64%, rgba(9, 31, 27, 0.17) 28.59%, rgba(9, 31, 27, 0.37) 38.19%, rgba(9, 31, 27, 0.67) 56.36%, #091f1b 61.29%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.help-three .poor-boy .parallax-image-wrap,
.help-three .poor-boy .parallax-image-inner {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
}

.help-three .poor-boy .poor {
  width: 100%;
  height: 100%;
}

.help-three .poor-boy .shape {
  position: absolute;
  inset-inline-start: 0px;
  inset-block: 0px;
  z-index: 1;
}

.help-three .parasuit {
  position: absolute;
  top: -150px;
  inset-inline-start: 8%;
  z-index: -1;
  -webkit-transform: translate(0px);
  -ms-transform: translate(0px);
  transform: translate(0px);
  -webkit-animation: fall 15s ease-in-out infinite;
  animation: fall 15s ease-in-out infinite;
}

.help-three .parasuit img {
  max-width: 8vw;
  min-width: 40px;
}

.about-two {
  background-color: var(--white);
  overflow-x: clip;
}

.about-two .section__header {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.about-two .about-two__thumb {
  position: relative;
  z-index: 1;
}

.about-two .about-two__thumb-inner {
  min-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.about-two .thumb-two-lg {
  margin: 50px 0px;
  position: relative;
  padding: 50px;
  padding-left: 0px;
}

.about-two .thumb-two-lg::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--base-bg);
  border-radius: 50%;
  left: 250px;
  top: -50px;
  z-index: -1;
}

.about-two .thumb-two-lg img {
  border-radius: 15px;
  border: 15px solid var(--quaternary-color);
  min-width: 600px;
}

.about-two .thumb-two-lg .shape {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 340px;
  height: 100%;
  bottom: 0px;
  z-index: -1;
  border: 15px solid var(--base-bg);
  border-left: 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.about-two .thumb-two-lg .shape::before,
.about-two .thumb-two-lg .shape::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--base-bg);
  top: 0px;
  left: 0px;
  -webkit-transform: translateX(-100%) translateY(-68%);
  -ms-transform: translateX(-100%) translateY(-68%);
  transform: translateX(-100%) translateY(-68%);
}

.about-two .thumb-two-lg .shape::after {
  top: 100%;
  -webkit-transform: translateX(-100%) translateY(-30%);
  -ms-transform: translateX(-100%) translateY(-30%);
  transform: translateX(-100%) translateY(-30%);
}

.about-two .thumb-two-sm {
  position: absolute;
  top: 0px;
  left: 0px;
}

.about-two .thumb-two-sm img {
  border: 15px solid var(--base-bg);
  border-radius: 15px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.about-two .video-btn-wrapper {
  position: absolute;
  top: 65%;
  left: 20%;
  bottom: unset;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.about-two .video-btn-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-55%, -45%);
  -ms-transform: translate(-55%, -45%);
  transform: translate(-55%, -45%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.about-two .video-btn-wrapper::after {
  content: "";
  position: absolute;
  top: 63%;
  left: 7%;
  width: 140px;
  height: 140px;
  border: 6px solid var(--secondary-color);
  border-radius: 15px;
  z-index: -1;
}

.about-two .video-btn-wrapper a {
  width: 200px;
  height: 200px;
}

.about-two .video-btn-wrapper a i {
  font-size: 40px;
}

.about-two .video-btn-wrapper::after {
  inset: 30px;
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  25% {
    -webkit-transform: translateX(5px) translateY(-5px);
    transform: translateX(5px) translateY(-5px);
  }

  50% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  75% {
    -webkit-transform: translateX(-5px) translateY(5px);
    transform: translateX(-5px) translateY(5px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  25% {
    -webkit-transform: translateX(5px) translateY(-5px);
    transform: translateX(5px) translateY(-5px);
  }

  50% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  75% {
    -webkit-transform: translateX(-5px) translateY(5px);
    transform: translateX(-5px) translateY(5px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

/* ==== 
 --------- (5.05) help section styles end ---------
 ==== */




.organ-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  border: 1px solid #f8cec2;
  padding: 20px 30px;
  border-radius: 10px;
  background: #fffcfc;
  box-shadow: 7px 10px #ffe2d9;
  transition: all 0.4s ease;
  min-height: 248px;
}


.organ-card:hover {
  background-color: #ffe2d9;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transform: translateY(3px) scale(0.98);
}

.organ-card:hover .organ-card-content h3 {
  /* color: var(--white); */
}

.organ-card-img img {
  padding: 10px;
}

.organ-card .organ-card-content h3 {
  color: var(--base-bg);
  font-weight: 800;
  text-align: center;
}

.organ-card .organ-card-content h5 {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.total-organ-donated-content {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight:600;
  font-size:18px;
  
}


/* ==== 
 --------- (5.10) community section styles start ---------
 ==== */
.community {
  padding-top: 100px;
  position: relative;
  z-index: 2;
  overflow-x: clip;
}

.community .community-bg {
  position: absolute;
  inset-inline: 0px;
  inset-block-start: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.community .section__header .mini-title {
    color:var(--white);
}
.community .community-bg::after {
  position: absolute;
  inset: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

.community .community-bg img {
  width: 100%;
  height: 100%;
}

.community .community-bg .parallax-image-wrap,
.community .community-bg .parallax-image-inner {
  position: absolute;
  inset-inline: 0px;
  inset-block-start: 0px;
  width: 100%;
  height: 100%;
}

.community .section__header {

  /* max-width: 560px; */
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.community .section__header .sub-title {
  color: var(--white);
}

.community .section__header h2 {
  color: var(--white);
}

.community .community-donation {
  padding: 30px 40px;
  border-radius: 30px;
  background: var(--white);
  -webkit-box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  bottom: -140px;
  margin-top: -140px;

}

.community .community-donation .community__thumb {
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  bottom: 0px;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
  -webkit-mask-image: url("../images/new-images/mask.png");
  mask-image: url("../images/new-images/mask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left;
  mask-position: left;
}

.community .community-donation .community__thumb img {
  -o-object-position: center;
  object-position: center;
  height: 100%;
  max-width: 30vw;
  border-radius: 0px 30px 30px 0px;
}

.community .community-donation__inner h4 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: -8px;
}

.community .warning {
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #d8dde1;
  background: #fdf8ea;
  position: relative;
  margin: 30px 0px 40px;
}

.community .warning p {
  line-height: 1.5;
}

.community .warning strong {
  font-weight: 700;
  color: var(--secondary-color);
}

.community .warning .line {
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 50px;
  background-color: var(--secondary-color);
  display: none;
}

.community .warning .line i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--base-bg);
}

.community .donation-form__single h5 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: -8px;
}

.community .donation-form__single .made-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.community .donation-form__single .donation-amount {
  padding: 12px 16px;
  border: 1px solid #d8dde1;
  border-radius: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-color);
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.community .donation-form__single .donation-amount:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.community .donation-form__single .active {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.community .input-group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 5px;
  border-radius: 30px;
  background: #efefef;
  margin: 15px 0px 20px;
}

.community .input-group-icon .thumb {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.community .input-group-icon .thumb i {
  font-size: 20px;
  color: var(--white);
}

.community .input-group-icon input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
}

.community .radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  row-gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

.community .radio-single input {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  width: 0px;
  height: 0px;
}

.community .radio-single label {
  position: relative;
  padding-left: 8px;
  margin-left: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
}

.community .radio-single label::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #d8dde1;
  border-radius: 100%;
}

.community .radio-single label::after {
  content: "";
  position: absolute;
  right: calc(100% + 3px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #d8dde1;
  border-radius: 100%;
  top: 50%;
}

.community .radio-single input:checked+label::before {
  border-color: var(--quaternary-color);
}

.community .radio-single input:checked+label::after {
  background-color: var(--quaternary-color);
}

.community .btn--primary {
  /* padding: 16px 40px; */
  border-radius: 5px;
  gap: 12px;
}

.community .btn--primary::after,
.community .btn--primary::before {
  border-radius: 0px;
}

.community .btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
}

.community .btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.community .gift {
  position: absolute;
  inset-inline-start: 5%;
  bottom: 0px;
}

.community .gift img {
  -webkit-animation: moveLeftRight 4s ease-in-out infinite;
  animation: moveLeftRight 4s ease-in-out infinite;
  max-width: 15vw;
  min-width: 50px;
}

.community .spade {
  position: absolute;
  top: 35%;
  inset-inline-start: 77%;
  z-index: -1;
}

.community .spade img {
  max-width: 20vw;
  min-width: 60px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.community-alter {
  margin-bottom: 140px;
}

/* ==== 
 --------- (5.10) community section styles end ---------
 ==== */


.explore-area {
  background-color: var(--white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.explore-area .explore__single {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  overflow: hidden;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 10px;
}

.explore-area .explore__single {
  margin: 0px;
  height: 340px;
}

.explore-area .explore__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-rows: 340px;
  grid-auto-flow: dense;
}

.explore-area .explore__single-tall {
  height: 710px;
  grid-row: span 2;
}

.explore-area .explore__single-wide {
  grid-column: span 2;
}

.explore-area .explore__single:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.explore-area .explore__single .thumb {
  min-height: 240px;
  height: 100%;
}

.explore-area .explore__single .thumb a {
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.explore-area .explore__single .thumb a img {
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  min-height: 270px;
}

.explore-area .explore__single .content {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  padding: 20px 20px 40px 20px;
}

.explore-area .explore__single .content p {
  color: var(--white);
}

.explore-area .explore__single .content h5 a {
  font-weight: 600;
  margin-top: 5px;
  color: var(--white);
}

.explore-area .explore__single .content h5 a:hover {
  color: var(--white);
}

.explore-area .explore__single::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000BB));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000000BB 100%);
}

.explore-area .explore__single .arr {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: transparent;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: var(--base-bg);
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.explore-area .explore__single .arr i {
    color:var(--white);
}

.explore-area .explore__single:hover .arr i {
    color:var(--black);
}

.explore-area .explore__single .arr:hover {
  background-color: var(--white);
}

.explore-area .explore__single:hover .thumb img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.explore-area .explore__single:hover .content h5 a {
  color: var(--white);
}

.explore-area .explore__single:hover .arr {
  background-color: var(--white);
}

.explore-area .explore__wrapper {
  margin-bottom: 40px;
}

.explore-area .section__header--secondary h3 {
  font-weight: 600;
  color: var(--secondary-color);
}

.explore-area .section__header--secondary p {
  color: #555555;
  margin-top: 10px;
}

.explore-area .spade {
  position: absolute;
  bottom: 30%;
  inset-inline-start: 18%;
  z-index: -1;
}

.explore-area .spade img {
  max-width: 20vw;
  min-width: 60px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.explore-alt {
  margin-top: 130px;
  padding: 130px 0;
}
.politician-section {
    padding-bottom: 130px;
}

.community-donation .donation-form {
  max-width: 800px;
}


/* Politician Slider */


.custom-freemode-slider {
  padding: 0 0 20px 0;
}

.custom-freemode-slider .swiper-slide,
.custom-freemode-slider-2 .swiper-slide {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  width: 550px !important;
  margin: 0;
}

/* .custom-freemode-slider .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    } */



.custom-freemode-slider .project-card-item .project-image,
.custom-freemode-slider-2 .project-card-item .project-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.custom-freemode-slider .project-card-item .project-image img,
.custom-freemode-slider-2 .project-card-item .project-image img {
  height: 350px;
  width: 550px;

  object-fit: cover;
  border-radius: 20px;
  
  transition: all 1.5s ease-out;
}


.custom-freemode-slider .project-card-item .project-image .shape-image img,
.custom-freemode-slider-2 .project-card-item .project-image .shape-image img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  
  transition: all 1.5s ease-out;
}

.custom-freemode-slider .project-card-item:hover .project-image img,
.custom-freemode-slider-2 .project-card-item:hover .project-image img {
  /*-webkit-transform: scale3d(1.1, 1.1, 1);*/
  /*transform: scale3d(1.1, 1.1, 1);*/
}

.custom-freemode-slider .project-card-item .project-image .shape-image,
.custom-freemode-slider-2 .project-card-item .project-image .shape-image {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  left: -30px;
  bottom: 0;
  max-width: 580px;
  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-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}

.custom-freemode-slider .project-card-item:hover .project-image .shape-image,
.custom-freemode-slider-2 .project-card-item:hover .project-image .shape-image {
  visibility: visible;
  opacity: 1;
  left: 0;
}


.custom-freemode-slider .project-card-item .project-image .project-content,
.custom-freemode-slider-2 .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.4s ease-in-out;
}

.custom-freemode-slider .project-card-item:hover .project-image .project-content,
.custom-freemode-slider-2 .project-card-item:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.custom-freemode-slider .project-card-item .project-image .project-content .content h3,
.custom-freemode-slider-2 .project-card-item .project-image .project-content .content h3 {
  font-size: 36px;
}

.custom-freemode-slider-2 .project-card-item .project-image .project-content .content {
  text-align: left;
}

.custom-freemode-slider .project-card-item .project-image .project-content .content h3 a,
.custom-freemode-slider-2 .project-card-item .project-image .project-content .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.custom-freemode-slider .project-card-item .project-image .project-content .arrow-icon,
.custom-freemode-slider-2 .project-card-item .project-image .project-content .arrow-icon {

  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid #0B4E3D;
  transition: all 0.4s ease-in-out;
  padding: 14px;
}

.custom-freemode-slider .project-card-item .project-image .project-content .arrow-icon i,
.custom-freemode-slider-2 .project-card-item .project-image .project-content .arrow-icon i {
  rotate: -45deg;
}

/* story section */


.about-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom:130px;
}

.about-area .section__header {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.about-area .about__thumb {
  position: relative;
  max-width: 600px;
}

.about-area .about__thumb img {
  border-radius: 20px;
}

.about-area .about__thumb-big {
  position: relative;
}

.about-area .about__thumb-big::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 400px;
  background-color: var(--base-bg);
  z-index: -1;
}

.about-area .about__thumb-big img {
  height: 490px;
}

.about-area .about__thumb-big .video-btn-wrapper {
  top: 210px;
  left: 50%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.about-area .about__thumb-big .video-btn-wrapper a {
  background-color: var(--base-bg);
}

.about-area .about__thumb-big .video-btn-wrapper a i {
  color: var(--base-color);
}

/* .about-area .about__thumb-big .video-btn-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-55%, -45%);
  -ms-transform: translate(-55%, -45%);
  transform: translate(-55%, -45%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--quaternary-color);
} */

.about-area .about__thumb-sm {
  position: absolute;
  right: 0px;
  bottom: 120px;
  width: 260px;
}

.about-area .about__thumb-sm img {
  min-height: 130px;
}

/* 
.about-area .about__thumb-sm__content {
  padding: 20px 30px;
  background-color: var(--white);
  border-radius: 10px;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -40px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
} */

.about-area .divider {
  background-color: #e9e9e9;
  border: 0px;
  width: 100%;
  height: 1px;
  margin: 30px 0px;
}

.about-area .about__thumb-sm__content-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}

.about-area .about__thumb-sm__content-counter h2 {
  font-weight: 700;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.about-area .about__thumb-sm__content-counter i {
  font-size: 40px;
  color: var(--base-color);
}

.about-area .help__content-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 8px;
}

.about-area .help__content-list li {
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-weight: 600;
}

.about-area .help__content-list li i {
  font-size: 20px;
  color: var(--quaternary-color);
}

.about-area .about__content-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 34px;
}

.about-area .about__content-review h3 {
  color: var(--black);
  font-weight: 700;
}

.about-area .about__content-inner__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  row-gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-area .join-users {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px;
  padding-left: 24px;
}

.about-area .join-users .single-user {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -24px;
}

.about-area .join-users .single-user img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.about-area .about-thumb-left,
.about-area .about-thumb-right {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  min-width: 400px;
  min-height: 600px;
  pointer-events: none;
  opacity: 0.6;
}

.about-area .about-thumb-left img,
.about-area .about-thumb-right img {
  max-width: 20vw;
  min-width: 80px;
}

.about-area .about-thumb-right {
  left: unset;
  right: 0px;
}

.about-area div {
  line-height: 1;
}



.video-btn-wrapper {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 4;
}

.video-btn-wrapper .open-video-popup {
  width: 80px;
  height: 80px;
  background: var(--base-bg);
  border-radius: 100%;
  position: relative;
  -webkit-animation: pulse-shadow 3s 2s linear infinite;
  animation: pulse-shadow 3s 2s linear infinite;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}



@keyframes pulse-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
  }

  100% {
    -webkit-box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
  }
}


.video-btn-wrapper .open-video-popup i {
  font-size: 20px;
  color: var(--secondary-color);
}

.title-animation {
  text-transform: lowercase !important;
}

.title-animation>div>div:nth-child(1) {
  text-transform: uppercase;
}

.title-animation>span>div>div:nth-child(1) {
  text-transform: uppercase;
}

/* banner section */


.breadcrumb {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumb .breadcrumb-item,
.breadcrumb a {
  color: var(--white);
  line-height: 1;
  font-weight: 700;

}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .item+.item {
  padding-left: 0px;
  color: #ababab;
}

.breadcrumb .item+.item::before {
  padding-right: 12px;
  content: "/";
  font-weight: 700;
  color: #ffffff;
}

.breadcrumb .item-current.item {
  color:  #ababab !important;
  font-weight: 700;
}

.bwg_thumbnail.bwg_container .search_line.bwg_tag_select_view {
    box-shadow:unset !important;
}


.common-banner {
  padding-block: 200px 240px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url("../images/banner/banner-bg.jpg");
  background-position: top;
  background-size: cover;
  /*max-width: 1920px;*/

  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 600"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 434.474V0H1920V599.565C1920 599.565 1915.6 589.879 1909.61 589.276C1902.9 588.6 1903.08 597.779 1896.62 599.565C1885.78 602.562 1881.9 589.144 1870.65 587.873C1863.58 587.074 1859.16 591.486 1852.47 589.276C1846.14 587.184 1846.07 575.88 1840 578.519C1836.71 579.951 1838.41 585.005 1834.81 585.534C1832.2 585.916 1831.14 583.723 1828.57 583.196C1820.63 581.568 1813.35 595.379 1808.83 589.276C1807 586.802 1808.71 584.468 1807.27 581.793C1801.85 571.72 1792.79 600.586 1780.78 597.694C1773.29 595.891 1773.77 587.157 1766.23 585.534C1759.34 584.051 1755.64 588.776 1748.57 589.276C1737.93 590.029 1731.8 588.235 1721.56 585.534C1713.79 583.485 1710.42 577.982 1702.34 578.519C1697.86 578.817 1695.82 580.953 1691.43 581.793C1683.29 583.349 1677.79 584.715 1670.13 581.793C1659.04 577.561 1664.24 563.318 1653.51 558.409C1646.39 555.157 1639.93 559.988 1633.25 556.07C1624.87 551.164 1632.85 534.835 1622.86 535.025C1615.68 535.161 1613.17 540.777 1609.35 546.249C1606.04 550.994 1604.16 559.812 1604.16 559.812C1604.16 559.812 1596.81 569.527 1589.61 572.439C1571.39 579.811 1560.76 532.774 1547.53 546.249C1544.35 549.493 1546.57 555.39 1541.82 556.07C1538.5 556.545 1537.25 551.943 1534.03 552.797C1529.36 554.035 1534.63 559.671 1534.03 564.021C1532.54 574.807 1530.64 582.689 1521.04 589.276C1511.54 595.79 1502.34 597.058 1490.91 593.953C1484.28 592.152 1482.63 586.753 1475.84 585.534C1472.06 584.856 1469.68 586.481 1465.97 585.534C1459.35 583.843 1460.39 574.178 1453.51 574.31C1450.49 574.368 1449.18 576.05 1446.23 576.648C1424.62 581.047 1431.4 535.85 1409.35 537.831C1403.16 538.387 1400.5 542.779 1394.29 542.508C1388.83 542.27 1386.75 537.573 1381.3 537.831C1373.12 538.218 1373.2 547.477 1365.71 550.458C1347.38 557.76 1338.56 524.78 1319.48 530.348C1313.42 532.116 1311.54 536.149 1305.45 537.831C1282.41 544.199 1286.41 496.989 1262.34 498.078C1245.7 498.831 1239.26 529.755 1227.01 519.592C1222.94 516.212 1225.79 508.559 1220.26 508.367C1216.21 508.227 1215.33 511.961 1211.95 513.979C1181.33 532.258 1143.84 493.339 1117.92 516.785C1114.06 520.283 1114.3 525.077 1109.09 526.607C1102.45 528.557 1099.35 516.993 1092.99 519.592C1088.11 521.585 1090.39 527.297 1086.23 530.348C1079 535.661 1071.33 532.597 1062.34 530.348C1052.04 527.771 1048.85 512.149 1039.48 516.785C1034.89 519.056 1036.39 524.529 1031.69 526.607C1027.32 528.539 1023.93 525.495 1019.22 526.607C1011.68 528.387 1010.97 535.462 1003.64 537.831C995.998 540.298 989.903 534.206 982.857 537.831C979.121 539.753 978.504 542.517 975.065 544.846C962.047 553.665 947.994 541.411 933.507 548.12C926.687 551.278 925.511 557.882 917.922 558.877C910.684 559.825 907.517 554.088 900.26 553.264C890.465 552.153 885.159 557.782 875.325 557.006C868.854 556.495 865.664 554.001 859.221 553.264C852.781 552.529 849.083 553.011 842.597 553.264C829.927 553.76 822.261 561.023 810.39 557.006C796.831 552.418 800.649 536.786 788.052 530.348C770.73 521.496 752.581 544.486 737.143 533.154C733.016 530.125 732.607 526.635 728.312 523.801C717.349 516.566 706.727 526.644 693.507 523.801C680.976 521.105 674.314 503.881 663.896 510.706C661.103 512.536 661.49 515.89 658.182 516.785C653.548 518.04 652.583 511.321 647.792 510.706C641.592 509.909 639.484 517.292 633.247 516.785C625.102 516.124 625.189 498.741 618.701 503.223C616.737 504.58 617.372 507.089 615.065 507.9C611.658 509.097 610.819 504.029 607.273 503.223C602.875 502.223 600.376 504.903 595.844 505.093C585.571 505.525 580.386 496.839 570.39 499.014C565.007 500.185 563.444 504.72 557.922 505.093C551.493 505.528 548.788 501.289 542.857 499.014C524.026 491.79 513.947 484.105 493.507 483.113C477.254 482.324 468.672 491.034 452.468 489.66C435.777 488.245 422.247 463.37 412.468 475.63C409.474 479.383 411.444 483.194 408.312 486.854C399.266 497.423 387.03 473.153 372.468 475.63C366.656 476.618 364.316 481.39 358.442 480.774C353.842 480.292 352.516 476.737 348.052 475.63C340.556 473.77 334.887 474.232 328.312 477.968C325.519 479.555 325.371 482.887 322.078 483.113C318.476 483.359 318.023 479.446 314.805 477.968C311.255 476.337 308.75 474.592 304.935 475.63C301.774 476.49 301.509 479.209 298.701 480.774C290.768 485.198 283.891 482.691 274.805 480.774C267.465 479.226 264.673 473.432 257.143 473.759C250.346 474.054 248.356 481.042 241.558 480.774C231.955 480.396 233.692 467.14 224.416 464.873C215.057 462.586 209.562 474.107 200.519 470.953C194.766 468.946 194.698 463.45 189.091 461.132C177.999 456.545 169.698 473.841 158.961 468.615C152.322 465.383 154.394 457.414 147.532 454.584C138.31 450.781 132.705 460.369 122.597 461.132C118.352 461.452 115.898 460.54 111.688 461.132C106.807 461.818 104.654 465.331 99.7403 464.873C93.0203 464.247 93.3733 455.798 86.7533 454.584C81.0158 453.532 78.0408 458.316 72.2078 457.858C61.8828 457.046 62.0596 440.377 51.9481 442.424C48.5834 443.106 47.5326 445.535 44.1558 446.166C35.4499 447.793 33.8922 436.999 25.4545 434.474C16.0215 431.651 0 434.474 0 434.474Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: cover;
}

.common-banner::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -2;
  opacity: 0.7;
}

.common-banner h1 {
  color: var(--white);
  font-weight: 800;
  margin-top: -8px;
  font-size: 40px;
}

.common-banner .banner-bg {
  position: absolute;
  inset: 0px;
  z-index: -3;
  overflow: hidden;
}

.common-banner .banner-bg img {
  width: 100%;
  height: 100%;
}

.common-banner .banner-bg img {
  width: 100%;
  height: 100%;
  display: block;

  /* add your SVG mask */
  -webkit-mask-image: url("../images/banner-shape.svg");
  /* your SVG */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  -webkit-mask-size: 100% 100%;

  mask-image: url("../images/banner-shapesvg");
  mask-repeat: no-repeat;
  mask-position: bottom;
  mask-size: 100% 100%;
}

.common-banner .sprade {
  position: absolute;
  z-index: -1;
  bottom: 9%;
  inset-inline-start: 7%;
}

.common-banner .sprade img {
  max-width: 5vw;
  min-width: 30px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.common-banner .line {
  position: absolute;
  inset-inline: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.common-banner .line img {
  width: 100%;
}

.common-banner .breadcrumb {
  /* position: absolute; */
  bottom: 0px;
  inset-inline-end: 0px;
  width: 100%;
  /*max-width: 500px;*/
  padding: 20px 32px;
  /* background-color: var(--quaternary-color); */
  z-index: 2;
}

.common-banner .breadcrumb a:hover {
  color: var(--white);
}

@-webkit-keyframes pulseSm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes pulseSm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes backgroundAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes moveLeftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.8;
  }
}

@keyframes moveTopBottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }

  25% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }
}



/* salute section  */

.contact-mc {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /*margin-top: 60px;*/
}

.contact-mc::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(249 246 239);
  opacity: 0.7;
  z-index: -1;
}

.contact-mc .section__header {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.contact-mc .btn--primary {
  /* padding: 18px 40px; */
}

.contact-mc .section__header .btn--primary span {
  font-weight: 400;
  color: inherit;
  margin-top: 0px;
}

.contact-mc .section__header .btn--primary {
  margin-top: 16px;
}

.contact-mc .contact__content {
  padding-inline: 20px;
  background-color: black;
}

.contact-mc .contact__content .input-single {
  background-color: #222222;
}

.contact-mc .contact__content .input-single input,
.contact-mc .contact__content .input-single textarea {
  color: var(--white);
}

.contact-mc .contact__content .input-single input::-webkit-input-placeholder,
.contact-mc .contact__content .input-single textarea::-webkit-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::-moz-placeholder,
.contact-mc .contact__content .input-single textarea::-moz-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input:-ms-input-placeholder,
.contact-mc .contact__content .input-single textarea:-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::-ms-input-placeholder,
.contact-mc .contact__content .input-single textarea::-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::placeholder,
.contact-mc .contact__content .input-single textarea::placeholder {
  text-transform: capitalize;
}

.contact-mc .sub-title {
  color: var(--base-bg);
}

.contact-mc h2 {
  color: var(--black);
}

.contact-mc .row>* {
  padding-inline: 0px;
}

.contact-mc .contact-bg {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: -3;
}

.contact-mc .contact-bg::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.08) 16.64%, rgba(9, 31, 27, 0.17) 28.59%, rgba(9, 31, 27, 0.37) 38.19%, rgba(9, 31, 27, 0.67) 56.36%, rgba(9, 31, 27, 0.1882352941) 61.29%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-mc .contact-bg .parallax-image-wrap,
.contact-mc .contact-bg .parallax-image-inner {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.contact-mc .contact-bg .parallax-image {
  width: 100%;
  height: 100%;
}

.contact-mc .contact__form .input-single i {
  color: var(--white);
}

.contact-mc .btn--secondary:hover {
  background-color: var(--secondary-color);
}

.contact-mc .shape-left {
  position: absolute;
  inset-inline-end: 0px;
  top: -50px;
  bottom: 0px;
  z-index: -2;
  right: 0;
}

.contact-mc .shape-left img {
  -webkit-animation: moveTopBottom 4s ease-in-out infinite;
  animation: moveTopBottom 4s ease-in-out infinite;
  max-width: 20vw;
  min-width: 50px;
}


.salute-swiper {
  padding: 36px;
  padding-right: 0 !important;
}

.salute-swiper .swiper-slide {
  width: 100%;
  border: 4px solid #e3dfcf;
  border-radius: 30px;
}

.salute-swiper .swiper-slide img {
  width: 100%;
  border-radius: 30px;

}

.salute-content-container {
  position: relative;

}

.salute-content-container .salute-count-container {
  display: flex;
  justify-content: space-between;


}


.salute-content-container {
  padding: 0 50px;
}


.salute-count-no {
  width: 50%;
  padding-bottom: 20px;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.salute-count-no p {
  font-size: 18px;
}

.salute-count-no .salute-count-number {
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  /* margin-bottom: px; */
  line-height: 1;
  padding-bottom: 6px;
}

.salute-count-container-padd-top {
  padding-top: 20px;
}

.salute-count-no.border-right {
  border-right: 1px solid #000;

}

.salute-count-container.border-bottom {
  border-bottom: 1px solid #000 !important;

}

.salute-btn-container {
  /*padding: 10px 50px;*/
}


/* photo gallery */

.bwg_container .bwg-a.bwg-album.bwg_album_0 {

  /*padding: 16px !important;*/
  border-radius: 20px !important;
  box-shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08) !important;
  transition: all 1s ease;
  overflow: hidden;
  flex-direction:column;    
  
}



.bwg_container .bwg-a.bwg-album.bwg_album_0 .bwg-title2 {
      text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight:normal !important;
}

.bwg_container .bwg-a.bwg-album.bwg_album_0 {
    
}


.bwg_thumbnail .bwg_search_container_2 {
    display: inline-block;
    position: relative;
    border-radius: 4px;
    border: 2px solid #000 !important ;
}

.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container {
    height:40px !important;
}


.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container1 , .bwg_thumbnail.bwg_container .search_line .bwg_search_reset_container {
    padding:6px 0;
} 

.bwg_search_input {
    padding:7px 0 !important;
    height:unset !important;
}
.bwg_search_input::placeholder {
    font-size:16px;
    
}



.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1 .bwg_search_container_2 {
    width: 420px !important;
}
.bwg_container .bwg-a.bwg-album.bwg_album_0:hover .bwg-item1 img {
  transform: scale(1.1);
  
}

.search_placeholder_title {
    display:none !important;
}

.bwg_gal_title_0 {
    font-size:40px !important ;
    font-family: var(--template-font) !important;
    line-height:normal !important;
}



#bwg_container1_0  .bwg-item2  { 
  position: unset !important;
  margin-top:0 !important;
}
#bwg_container1_0  .bwg-item2:after  { 
 content: '';
    position: absolute;
    bottom: -72px;
    left: 0px;
    width: 100%;
    height: 98px;
    background: url(../images/new-images/blog-shape.png);
    background-repeat: no-repeat;
    background-size: 210%;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item1 img {
  border-radius: 10px !important;
    padding: 0 !important;
    width: 330px !important;
    height: 200px !important;
    transition: all 1s ease;
}




.bwg_lightbox .bwg-item0 .bwg-item1 {
  border-radius: 10px !important;
}

.bwg_container .bwg-title1 {
  background: transparent !important;
      padding: 0px 14px 20px 10px !important;
}

.bwg_container .bwg-title1 .bwg-title2 {
  color: #000 !important;
}


#bwg_container1_0  .bwg-item1 {
  padding-top: 0 !important;
}

.bwg_nav_cont_0 {
    display:flex;
    justify-content:center;
    margin-top: 10px;
}

#bwg_container1_0 #bwg_container2_0 .bwg_nav_cont_0 a {

  padding: 8px 14px !important;
  width: 36px !important;
  border: 2px solid #7d7d7d  !important;
  background: transparent !important;
  border-radius: 20px;
}

#bwg_container1_0 #bwg_container2_0 .bwg_nav_cont_0 a:hover{
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid transparent  !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg_current_page {
    color: var(--white) !important;
}
.pagination-links_0 span{
    font-family: var(--template-font) !important;
}

#bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 input.bwg_current_page {
    padding: 8px 14px !important;
    width: 36px !important;
    background: var(--primary-color) !important;
    border-radius: 20px;
    border: 2px solid transparent !important;
    color:var(--white) !important !important;
}




.bwg_thumbnail .bwg_search_container_2 {
  border-radius: 24px !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item1 img {
    width:400px !important;
    height:240px !important;
}

.hip-grid-vg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
} 

.hip-grid-vg .hip-item {
    width: 33%;
    padding: 10px;
}
#csr_gallery_light .pagination-block {
    width: 100%;
    text-align: center;
    justify-content: center;
    gap: 8px;
}

.pagination {
    gap:8px;
    justify-content:center;
}

.page-numbers{
     padding: 6px 14px;
    border-radius: 20px;
        border: 2px solid #7d7d7d ;
    
}
.page-numbers:hover {
    
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
}

.page-numbers.current {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
    
}
.gallery-section,
.gallery-section .section-title {
  position: relative
}

.gallery-section .filters {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
      padding: 70px 0 0 0;
}



#bwg_search_container_1_0 {
    max-width: unset !important;
}

.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container {
    width:100% !important;
    /*height:unset !important;*/
}

.search_line.bwg_tag_select_view {
    display:flex !important;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}

.gallery-section .filters li {
  color: #6e6e6e;
  cursor: pointer;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 5px 30px;
  margin: 0 6px;
  position: relative;
  transition: all .3s ease 0s;
  text-transform: uppercase;
  border-radius: 20px;
  border: 2px solid #000;
}

.gallery-section .filters li a {
  color: #282828
}

.gallery-section .filters li .txt {
  position: relative;
  display: block;
  z-index: 1
}

.gallery-section .filters li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  /* width: 100%;
    height: 100%; */
  opacity: 1;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease
}

.search-box {
    display:flex;
    justify-content: center ;
}

.search-box .hip-search-input {
        border: 2px solid #000;
    border-radius: 30px;
    padding: 8px 16px;
    width: 420px;
    margin-bottom: 20px;
}

.gallery-section .filters li:hover a,
.gallery-section .filters li a:hover,
.gallery-section .filters li.active,
.gallery-section .filters li.active a,
.gallery-section .filters li:hover {
  color: #fff;
  background: #23282B;
}


/*datatables icon*/


table.dataTable thead .sorting:after , table.dataTable thead .sorting_asc:after , table.dataTable thead .sorting_desc:after {
    content:'\f338' !important ;
    font-family: "Font Awesome 7 Free" !important;
    
}

.gallery-section .gallery-item {
  margin-top: 30px;
  text-align: center
}

.gallery-section .img-holder {
  position: relative;
  transition: all .5s ease 0s
}

.gallery-section .img-holder img {
  width: 100%
}

.gallery-section .gallery-item .overlay .overlay-span {
  background: rgba(0, 0, 0, .4);
  top: 0;
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: 700;
  left: 0;
  opacity: 0;
  padding-bottom: 22px;
  padding-top: 150px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  transition: all .5s ease 0s
}

.gallery-section .gallery-item:hover .overlay .overlay-span {
  opacity: 1
}

.gallery-item h4 {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: #28679f;
  border-color: navy #ECECEC #ECECEC;
  border-image: none;
  border-right: 1px solid #ECECEC;
  border-style: none solid solid;
  border-width: medium 1px 1px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 24px;
  font-size: 16px;
  padding: 17px 5px
}

.gallery-section .gallery-item .img-holder {
  overflow: hidden;
  position: relative;
  transition: all .5s ease 0s;
  height: 300px;
}

.gallery-section .gallery-item .img-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  width: 100%
}

.gallery-section .page-list {
  margin-top: 66px;
  text-align: center
}


/* team css */
.team-seciton.trustee-section {
  background: rgb(249 246 239) !important;
}

.trustee-section {
  padding-bottom: 60px;
  padding-top: 60px;
}

.whole-team-section {
  /* background: rgb(249 246 239) !important; */
  padding: 60px 0;
}

.whole-team-section img{
    border-radius:14px;
    margin-bottom:20px;
}

.whole-team-section .quotes {
    color:var(--primary-color);
    font-size:18px;
    margin-bottom:10px;
}

.trustee-section .cause .cause__slider-single {
    background-image: linear-gradient(to bottom, #eff7ff, #f9f6ef) !important;
}
.cause .cause__slider-single {
  padding: 10px;
  /* background-color: var(--white);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow); */
  border-radius: 25px;
  background-image: linear-gradient(to bottom, #eff7ff, #fff);
  margin-bottom: 16px;
}

.team-item .fade:not(.show) {
  opacity: 1 !important;
}

.team-seciton .modal-body {
  margin-bottom: 20px !important;
}

.team-seciton .modal-content {
  border-radius: 20px;
  max-height: 400px !important;
}

.team-seciton .modal-title {
  color: var(--black) !important;
}

.cause__slider-single .content {
  margin-bottom: 16px;
}


.cause .cause__slider-single:hover .thumb .tag a {
  background-color: var(--base-bg);
  color: var(--white);
}

.cause .thumb {
  position: relative;
  margin-bottom: 14px;
}

.cause .thumb a {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  display: block;
}

.cause .thumb a img {
  height: 324px;
  width: 100%;
  border-radius: 0 15px 15px 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.cause .thumb .tag {
 position: absolute;
    top: -20px;
    right: 0px;
    /* translate: -50%; */
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.cause .thumb .tag a {
     padding: 8px 9px 10px 15px;
    font-size: 14px;
    background-color: var(--quaternary-color);
    border-radius: 0px 17px 0px 50px;
    color: var(--white);
    position: relative;
}

.cause .thumb .tag a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.cause .content {
  padding-inline: 20px;
  text-align: center;
}

.cause .content h6 {
  font-size: 14px;
  margin-top: -8px;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 70px;
}

.cause .content h6:hover {
  color: var(--base-bg);
}

.cause .content p {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.cause .cause__slider-cta {
  padding: 20px;
  border-radius: 10px;
  background: rgba(157, 153, 139, 0.1);
  margin-top: 24px;

}


/* footer css  */


.footer::after {
  position: absolute;
  top: 0;


  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1762' height='158' viewBox='0 0 1762 158' fill='none'%3E%3Cpath d='M24 1.69305C15.4365 -2.11632 0 1.69305 0 1.69305V157.693H1762V143.693H1725C1715.82 143.693 1709.65 147.904 1701.5 143.693C1696.1 140.905 1696.36 131.08 1690.5 132.693C1686.76 133.722 1687.83 139.579 1684 140.193C1681.13 140.652 1679.88 138.063 1677 137.693C1670.56 136.864 1667.16 146.87 1661.5 143.693C1657.76 141.594 1660.2 135.066 1656 134.193C1651.13 133.179 1647.5 143.693 1647.5 143.693H1627.5C1627.5 143.693 1622.31 140.136 1618.5 139.193C1610.73 137.272 1606.5 143.54 1598.5 143.693C1585.35 143.945 1579.65 133.131 1566.5 133.193C1558.53 133.23 1546.5 137.193 1546.5 137.193C1533.62 138.488 1528.63 135.935 1525 123.693L1524.9 123.482C1521.62 116.611 1518.91 110.935 1502.5 114.193C1485.92 117.484 1498.52 94.8115 1489 93.6929C1478.18 92.4213 1480.58 108.884 1472.5 116.193C1466.11 121.969 1462.52 126.969 1454 128.193C1438.4 130.432 1437.07 92.3817 1424 101.193C1419.24 104.403 1421.23 112.812 1415.5 113.193C1412.1 113.419 1410.86 110.274 1407.5 109.693C1393.63 107.293 1407.2 135.862 1395.5 143.693C1384.63 150.969 1373.94 149.036 1362 143.693C1359.13 142.407 1358.04 140.521 1355 139.693C1351.23 138.664 1348.74 141.347 1345 140.193C1339.45 138.48 1340.48 131.119 1335 129.193C1330 127.433 1321.5 130.693 1321.5 130.693C1321.5 130.693 1313.06 94.5849 1296 95.1929C1290.01 95.4062 1287.48 99.7785 1281.5 100.193C1274.7 100.665 1271.27 95.3976 1264.5 96.1929C1256.05 97.1848 1254.43 106.542 1246 107.693C1232.21 109.575 1230.4 88.4165 1216.5 87.6929C1206.39 87.1664 1202.12 96.6392 1192 96.1929C1172.38 95.3275 1178.08 57.2318 1158.5 58.6929C1144.51 59.7365 1143.29 86.9541 1130.5 81.1929C1124.57 78.5222 1125.59 70.9618 1119.5 68.6929C1110.49 65.3377 1106.35 76.4529 1097 78.6929C1076.14 83.689 1063.45 62.223 1043 68.6929C1030.92 72.5158 1028.2 90.1209 1016 86.6929C1010.73 85.213 1009.81 80.0057 1004.5 78.6929C994.665 76.2617 991.631 90.7063 981.5 90.6929C970.013 90.6777 967.4 71.5672 956.5 75.1929C950.729 77.1123 950.819 83.9267 945 85.6929C941.076 86.8838 938.452 84.5986 934.5 85.6929C928.74 87.2878 928.078 93.0444 922.5 95.1929C915.758 97.7899 910.729 92.5629 904 95.1929C898.688 97.2689 897.644 101.73 892.5 104.193C881.216 109.595 872.44 98.9564 860.5 102.693C851.71 105.444 849.673 114.367 840.5 115.193C832.993 115.869 829.535 109.863 822 109.693C814.991 109.534 811.491 113.168 804.5 113.693C794.063 114.476 788.461 110.035 778 109.693C764.638 109.256 756.603 118.155 744 113.693C730.714 108.989 732.965 91.3552 719.5 87.1929C706.548 83.1893 698.694 97.307 685.5 94.1929C675.689 91.8773 673.308 83.0174 663.5 80.6929C652.988 78.2016 646.499 86.237 636 83.6929C625.841 81.2311 623.634 66.6271 613.5 69.1929C608.351 70.4966 602.5 77.1929 602.5 77.1929C602.5 77.1929 597.371 71.5783 593 71.1929C588.299 70.7784 586.716 76.364 582 76.1929C574.962 75.9374 575.537 61.0718 569 63.6929C566.181 64.8233 566.487 68.6398 563.5 69.1929C559.772 69.8832 559.221 64.4169 555.5 63.6929C551.549 62.9241 549.517 65.9382 545.5 66.1929C537.304 66.7124 533.684 59.0133 525.5 59.6929C518.959 60.236 516.364 64.5858 510 66.1929C486.287 72.181 475.444 45.9924 451 45.1929C435.375 44.6818 426.866 54.5707 411.5 51.6929C398.279 49.2169 393.257 30.1535 381 35.6929C373.774 38.9584 375.928 48.9193 368.5 51.6929C358.028 55.6028 354.112 37.4788 343 38.6929C337.087 39.3389 334.939 44.3592 329 44.6929C321.651 45.1057 318.855 37.4008 311.5 37.6929C304.083 37.9874 301.891 46.8818 294.5 46.1929C288.664 45.6489 287.235 39.9036 281.5 38.6929C272.256 36.7413 267.943 46.4983 258.5 46.1929C249.041 45.8869 245.463 37.105 236 37.1929C228.158 37.2657 224.621 45.5429 217 43.6929C209.213 41.8026 211.99 30.2832 203 28.6929C194.913 27.2623 191.043 36.8521 183 35.1929C176.42 33.8354 175.54 26.7345 169 25.1929C159.744 23.0108 155.214 35.5464 146 33.1929C137.969 31.1415 138.758 19.4104 130.5 18.6931C124.14 18.1405 121.715 23.7345 115.5 25.1931C109.784 26.5343 106.261 25.0624 100.5 26.1931C95.8935 27.0972 93.6551 30.299 89 29.6931C82.9509 28.9056 82.9361 21.0984 77 19.6931C71.373 18.3609 68.1489 23.929 62.5 22.6931C54.8106 21.0107 56.334 8.95829 48.5 8.19305C43.5836 7.71282 41.4057 12.7725 36.5 12.1931C30.1688 11.4452 29.8249 4.28419 24 1.69305Z' fill='white'/%3E%3C/svg%3E");

  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}

.footer {
  /* background-color: var(--secondary-color); */
  background-color: #141414;
  position: relative;
  z-index: 1;
  /*max-width: 1920px;*/
  margin-top: 200px;
}



.footer .footer__thumb-left {
  position: absolute;
  bottom: 0px;
  inset-inline-start: 0px;
  z-index: -1;
}

.footer .footer__thumb-left img {
  max-width: 20vw;
  min-width: 50px;
}

.footer .footer__thumb-right {
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  z-index: -1;
}

.footer .footer__thumb-right img {
  max-width: 20vw;
  min-width: 50px;
}

.footer::after {
  content: "";
  position: absolute;
  /* inset: 0px;
  width: 100%;
  height: 100%; */
  /* background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.08) 37.31%, rgba(9, 31, 27, 0.17) 40.18%, rgba(9, 31, 27, 0.37) 47.05%, rgba(9, 31, 27, 0.67) 56.36%, #091f1b 73.4%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%); */
  top: -189px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1762' height='158' viewBox='0 0 1762 158' fill='none'%3E%3Cpath d='M24 1.69305C15.4365 -2.11632 0 1.69305 0 1.69305V157.693H1762V143.693H1725C1715.82 143.693 1709.65 147.904 1701.5 143.693C1696.1 140.905 1696.36 131.08 1690.5 132.693C1686.76 133.722 1687.83 139.579 1684 140.193C1681.13 140.652 1679.88 138.063 1677 137.693C1670.56 136.864 1667.16 146.87 1661.5 143.693C1657.76 141.594 1660.2 135.066 1656 134.193C1651.13 133.179 1647.5 143.693 1647.5 143.693H1627.5C1627.5 143.693 1622.31 140.136 1618.5 139.193C1610.73 137.272 1606.5 143.54 1598.5 143.693C1585.35 143.945 1579.65 133.131 1566.5 133.193C1558.53 133.23 1546.5 137.193 1546.5 137.193C1533.62 138.488 1528.63 135.935 1525 123.693L1524.9 123.482C1521.62 116.611 1518.91 110.935 1502.5 114.193C1485.92 117.484 1498.52 94.8115 1489 93.6929C1478.18 92.4213 1480.58 108.884 1472.5 116.193C1466.11 121.969 1462.52 126.969 1454 128.193C1438.4 130.432 1437.07 92.3817 1424 101.193C1419.24 104.403 1421.23 112.812 1415.5 113.193C1412.1 113.419 1410.86 110.274 1407.5 109.693C1393.63 107.293 1407.2 135.862 1395.5 143.693C1384.63 150.969 1373.94 149.036 1362 143.693C1359.13 142.407 1358.04 140.521 1355 139.693C1351.23 138.664 1348.74 141.347 1345 140.193C1339.45 138.48 1340.48 131.119 1335 129.193C1330 127.433 1321.5 130.693 1321.5 130.693C1321.5 130.693 1313.06 94.5849 1296 95.1929C1290.01 95.4062 1287.48 99.7785 1281.5 100.193C1274.7 100.665 1271.27 95.3976 1264.5 96.1929C1256.05 97.1848 1254.43 106.542 1246 107.693C1232.21 109.575 1230.4 88.4165 1216.5 87.6929C1206.39 87.1664 1202.12 96.6392 1192 96.1929C1172.38 95.3275 1178.08 57.2318 1158.5 58.6929C1144.51 59.7365 1143.29 86.9541 1130.5 81.1929C1124.57 78.5222 1125.59 70.9618 1119.5 68.6929C1110.49 65.3377 1106.35 76.4529 1097 78.6929C1076.14 83.689 1063.45 62.223 1043 68.6929C1030.92 72.5158 1028.2 90.1209 1016 86.6929C1010.73 85.213 1009.81 80.0057 1004.5 78.6929C994.665 76.2617 991.631 90.7063 981.5 90.6929C970.013 90.6777 967.4 71.5672 956.5 75.1929C950.729 77.1123 950.819 83.9267 945 85.6929C941.076 86.8838 938.452 84.5986 934.5 85.6929C928.74 87.2878 928.078 93.0444 922.5 95.1929C915.758 97.7899 910.729 92.5629 904 95.1929C898.688 97.2689 897.644 101.73 892.5 104.193C881.216 109.595 872.44 98.9564 860.5 102.693C851.71 105.444 849.673 114.367 840.5 115.193C832.993 115.869 829.535 109.863 822 109.693C814.991 109.534 811.491 113.168 804.5 113.693C794.063 114.476 788.461 110.035 778 109.693C764.638 109.256 756.603 118.155 744 113.693C730.714 108.989 732.965 91.3552 719.5 87.1929C706.548 83.1893 698.694 97.307 685.5 94.1929C675.689 91.8773 673.308 83.0174 663.5 80.6929C652.988 78.2016 646.499 86.237 636 83.6929C625.841 81.2311 623.634 66.6271 613.5 69.1929C608.351 70.4966 602.5 77.1929 602.5 77.1929C602.5 77.1929 597.371 71.5783 593 71.1929C588.299 70.7784 586.716 76.364 582 76.1929C574.962 75.9374 575.537 61.0718 569 63.6929C566.181 64.8233 566.487 68.6398 563.5 69.1929C559.772 69.8832 559.221 64.4169 555.5 63.6929C551.549 62.9241 549.517 65.9382 545.5 66.1929C537.304 66.7124 533.684 59.0133 525.5 59.6929C518.959 60.236 516.364 64.5858 510 66.1929C486.287 72.181 475.444 45.9924 451 45.1929C435.375 44.6818 426.866 54.5707 411.5 51.6929C398.279 49.2169 393.257 30.1535 381 35.6929C373.774 38.9584 375.928 48.9193 368.5 51.6929C358.028 55.6028 354.112 37.4788 343 38.6929C337.087 39.3389 334.939 44.3592 329 44.6929C321.651 45.1057 318.855 37.4008 311.5 37.6929C304.083 37.9874 301.891 46.8818 294.5 46.1929C288.664 45.6489 287.235 39.9036 281.5 38.6929C272.256 36.7413 267.943 46.4983 258.5 46.1929C249.041 45.8869 245.463 37.105 236 37.1929C228.158 37.2657 224.621 45.5429 217 43.6929C209.213 41.8026 211.99 30.2832 203 28.6929C194.913 27.2623 191.043 36.8521 183 35.1929C176.42 33.8354 175.54 26.7345 169 25.1929C159.744 23.0108 155.214 35.5464 146 33.1929C137.969 31.1415 138.758 19.4104 130.5 18.6931C124.14 18.1405 121.715 23.7345 115.5 25.1931C109.784 26.5343 106.261 25.0624 100.5 26.1931C95.8935 27.0972 93.6551 30.299 89 29.6931C82.9509 28.9056 82.9361 21.0984 77 19.6931C71.373 18.3609 68.1489 23.929 62.5 22.6931C54.8106 21.0107 56.334 8.95829 48.5 8.19305C43.5836 7.71282 41.4057 12.7725 36.5 12.1931C30.1688 11.4452 29.8249 4.28419 24 1.69305Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  height: 190px;
  width: 100%;
  z-index: -2;
}

.footer::after {
  background: #141414 !important;
  position: absolute;

}


.footer .footer__newsletter-form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.footer .footer__newsletter-form form .input-icon {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.footer .footer__newsletter-form form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--secondary-color);
}

.footer .footer__newsletter-form form input::-webkit-input-placeholder {
  color: var(--template-color);
}

.footer .footer__newsletter-form form input::-moz-placeholder {
  color: var(--template-color);
}

.footer .footer__newsletter-form form input:-ms-input-placeholder {
  color: var(--template-color);
}

.footer .footer__newsletter-form form input::-ms-input-placeholder {
  color: var(--template-color);
}

.footer .footer__newsletter-form form input::placeholder {
  color: var(--template-color);
}

.footer .footer__newsletter-form form button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 50px;
  border-radius: 8px;
  min-width: 60px;
  height: 54px;
}

.footer .footer__newsletter-form form button::before,
.footer .footer__newsletter-form form button::after {
  border-radius: 0px;
}

.footer .footer__newsletter-content h3 {
  font-weight: 800;
  color: var(--white);
  margin: -8px 0px 8px;
}

.footer .footer__newsletter-content p {
  font-weight: 600;
  font-size: 18px;
  color: #949d9c;
}

.footer .divider {
  margin: 80px 0px;
  width: 100%;
  opacity: 0.2;
  border-color: transparent;
}

.footer .footer__widget .footer__widget-logo {
  margin-bottom: 30px;
}

.footer .footer__widget p {
  color: #949d9c;
  font-weight: 500;
}

.footer .footer__widget .social {
  gap: 14px;
  margin-top: 35px;
}

.footer .footer__widget .social a {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--base-bg);
  color: var(--base-color);
  border-color: var(--base-bg);
  font-size: 14px;
}

.footer .footer__widget .social a:hover {
  color: var(--black);
  background-color: var(--white);
}

.footer .footer__widget h5 {
  font-weight: 800;
  color: var(--white);
  margin-top: -8px;
  font-size: 14px;
}
.footer .footer__widget h5 i {
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    height: 30px;
    margin-right: 6px;
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
    width: 30px;
}

.footer .footer__widget .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.pt-70 {
  padding-top: 70px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}

.footer .footer__widget span {
  background-color: var(--base-bg);
  height: 2px;
  width: 10px;
}

.footer .footer__widget .large-line {
  width: 50px;
}

.footer .footer__widget .footer__widget-intro {
  margin-bottom: 30px;
  position: relative;
}

.footer__widget-intro h5 {
  margin-top: 8px;
}

.footer__widget-intro h5:before {
  position: absolute;
  content: '';
  background: var(--base-bg);
  width: 85px;
  height: 2px;
  left: 0px;
  bottom: -8px;
  -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.6) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

.footer__widget-intro h5:after {
  position: absolute;
  content: '';
  background: #222;
  width: 3px;
  height: 2px;
  left: 26px;
  bottom: -8px;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}


.footer .footer__widget li {
  margin-bottom: 12px;
  text-align:start;
}

.footer .footer__widget li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.footer .footer__widget li a {
  color: #c7c4c4;
  font-weight: 500;
  position:relative;
}

.footer .footer__widget li a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
    width: 10px;
}

.footer .footer__widget li a::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -3px;
    height: 1px;
    margin-top: 0px;
    width: 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: var(--white);
}


.footer .footer__widget li a:hover {
  color: var(--white);
  -webkit-padding-start: 12px;
  padding-inline-start: 12px;
}

.footer .footer__widget .footer__widget-content--contact li {
  margin-bottom: 16px;
}

.footer .footer__widget .footer__widget-content--contact li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.footer .footer__widget .footer__widget-content--contact a {
  gap: 12px;
  text-transform: lowercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
}

.footer .footer__widget .footer__widget-content--contact a i {
  color: var(--base-bg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 24px;
  margin-top: 4px;
}

.footer .footer__widget .footer__widget-content--contact a:hover {
  color: var(--base-bg);
}

.footer .footer__logo {
  margin-bottom: 35px;
}


.footer__logo a img {
    width: auto;
    

}


.footer .footer__widget-content p {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 360px;
}

.footer .footer__widget-content p:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.footer .footer__contact-list li a {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.footer .footer__contact-list li a i {
  margin-top: 6px;
}

.footer .footer__contact-list li a:hover {
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

.footer .footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 80px;
  padding: 30px 0px;
}

.footer .footer__copyright-inner {
  direction: ltr;
}

.footer .footer__copyright-inner p {
  font-weight: 600;
  color: var(--white);
}

.footer .footer__copyright-inner p a {
  color: var(--base-bg);
}

.footer .footer__copyright-inner p a:hover {
  color: var(--white);
}

.footer .footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  row-gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .footer__bottom-list a {
  color: var(--white);
}

.footer .footer__bottom-list a:hover {
  color: var(--base-bg);
}

.footer .sprade,
.footer .sprade-light {
  position: absolute;
  z-index: -1;
  top: 27%;
  inset-inline-start: 4%;
}

.footer .sprade img,
.footer .sprade-light img {
  max-width: 5vw;
  min-width: 30px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.footer .sprade-light {
  bottom: 30%;
  top: unset;
  inset-inline-start: unset;
  inset-inline-end: 8%;
}

.footer .sprade-light img {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.footer .footer__newsletter {
  padding-block: 80px;
  padding-inline: 20px;
  background-color: var(--base-bg);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.footer .footer__newsletter h3 {
  font-weight: 700;
  color: var(--base-color);
  margin-top: -8px;
}

.footer .footer__newsletter img {
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-two .footer__blog-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-two .footer__blog-single:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.footer-two .footer__blog-single .thumb img {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-two .footer__blog-single h6 {
  margin-top: -5px;
  margin-bottom: 6px;
}

.footer-two .footer__blog-single a {
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.footer-two .footer__blog-single a:hover {
  color: var(--base-bg);
}

.footer-two .footer__blog-single p {
  color: #c1b0b0;
  font-size: 14px;
}

.footer-two .footer__bottom {
  margin-top: 80px;

}

.footer-two .footer__bottom-inner {
  background-color: var(--base-bg);
  position: relative;
  padding: 24px;
  border-radius: 30px 30px 0 0;
  z-index: 1;
}

/* .footer-two .footer__bottom-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0px;
  bottom: 0px;
  width: 200%;
  height: 100%;
  background-color: var(--base-bg);
  z-index: -1;
} */

.footer-two .footer__bottom-list {
  gap: 16px;
  row-gap: 6px;
}

.copyright-text {
    color:#e3e3e3 !important;
    font-size:15px !important;
}
.copyright-text a {
    color:#e3e3e3 !important;
    font-weight:500 !important;
} 

.footer-two .footer__bottom-left a {
  color: var(--white);
  font-weight: 700;
}

.footer-two .footer__bottom-left a:hover {
  color: var(--black);
}

.footer-two .footer__bottom-left p {
  margin-top: 12px;
  color: var(--white);
}

.footer-two .footer__bottom-left p a {
  color: var(--white);
}

.footer-two .footer__bottom-left p a:hover {
  color: var(--base-color);
}

.footer-two .social {
  gap: 8px;
}

.footer-two .social a {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--white);
  color: var(--black);
}

.footer-two .social a:hover {
  /*background-color: var(--quaternary-color);*/
}

.footer-three .footer__newsletter-wrapper {
  position: relative;
  top: -120px;
  margin-bottom: -120px;
}

.footer-three .footer__newsletter-wrapper .btn--tertiary {
  background-color: var(--quaternary-color);
  color: var(--white);
}

@-webkit-keyframes pulse {

  0%,
  100% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 0.3;
  }

  50% {
    -webkit-transform: scale(1.2) translate(-50%, -50%);
    transform: scale(1.2) translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 0.3;
  }

  50% {
    -webkit-transform: scale(1.2) translate(-50%, -50%);
    transform: scale(1.2) translate(-50%, -50%);
    opacity: 1;
  }
}

/* 
 --------- (3.04) scroll porgress button styles start ---------
 ==== */
.progress-wrap {
  position: fixed;
  inset-inline-end: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  padding: 6px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  background-color: #ffcccc;
  -webkit-box-shadow: inset 0 0 0 8px #ffcccc;
  box-shadow: inset 0 0 0 8px #ffcccc;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  z-index: 999;
  overflow: hidden;
}

.progress-wrap span {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background-color: var(--white);
  border-radius: 50%;
  overflow: hidden;
}

.progress-wrap span::after {
  content: "\f062";
  font-family: "Font Awesome 7 Free";
  /*font-weight: 700;*/
  position: absolute;
  text-align: center;
  line-height: 34px;
  font-size: 18px;
  border-radius: 50%;
  color: var(--base-bg);
  inset-inline-start: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 200%);
  -ms-transform: translate(-50%, 200%);
  transform: translate(-50%, 200%);
  height: 34px;
  width: 34px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap span::before {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 7 Free";
  /*font-weight: 700;*/
  text-align: center;
  line-height: 34px;
  font-size: 18px;
  border-radius: 50%;
  color: var(--base-bg);
  inset-inline-start: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 34px;
  width: 34px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover span::before {
  -webkit-transform: translate(-50%, -200%);
  -ms-transform: translate(-50%, -200%);
  transform: translate(-50%, -200%);
}

.progress-wrap:hover span::after {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.progress-wrap path {
  fill: none;
}

.progress-wrap .progress-circle path {
  stroke: var(--base-bg);
  stroke-width: 4;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer .widget-title,
.wp-block-heading {
  display: none;
}




.cm-details .cm-details__poster {
  border-radius: 20px;
}

.cm-details .cm-details__poster .parallax-image-wrap,
.cm-details .cm-details__poster .parallax-image-inner {
  border-radius: 20px;
}

.cm-details .cm-details__poster img {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
}

.cm-details .cm-details-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cm-details .cm-details-meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--black);
}

.cm-details .cm-details-meta p i {
  font-size: 20px;
  color: var(--base-bg);
}

.cm-details .cm-group h3 {
  font-weight: 800;
  color: var(--black);
  margin-top: -8px;
  margin-bottom: 18px;
}

.cm-details .cm-group p {
  margin-top: 24px;
}

.cm-details .cm-group p:nth-of-type(1) {
  margin-top: 0px;
}

.cm-details .cm-details__list {
  margin-top: 40px;
}

.cm-details .cm-details__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cm-details .cm-details__list ul li {
  width: 100%;
  font-weight: 700;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.cm-details .cm-details__list ul li i {
  color: var(--quaternary-color);
}

.cm-details .cm-details__list ul li i::before {
  font-weight: 700;
}

.cm-details .cm-img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cm-details .cm-img-group .cm-img-single {
  width: 100%;
  border-radius: 5px;
}

.cm-details .cm-img-group .cm-img-single .parallax-image-wrap,
.cm-details .cm-img-group .cm-img-single .parallax-image-inner {
  border-radius: 5px;
}

.cm-details .cm-img-group .cm-img-single img {
  width: 100%;
  border-radius: 5px;
  min-height: 200px;
}



.cm-details .cm-sidebar-widget {
  padding: 40px 20px;
  border-radius: 20px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.cm-details .cm-sidebar-widget:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.cm-details .cm-sidebar-widget .intro {
  margin-bottom: 30px;
}

.cm-details .cm-sidebar-widget .intro h5 {
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.cm-details .cm-sidebar-widget form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding-inline: 16px;
}

.cm-details .cm-sidebar-widget form input {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-block: 12px;
  color: var(--black);
}

.cm-details .cm-sidebar-widget form button:hover {
  color: var(--base-bg);
}

.cm-details .cm-sidebar-widget .single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  row-gap: 16px;
  margin-bottom: 30px;
}

.cm-details .cm-sidebar-widget .single-item:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.cm-details .cm-sidebar-widget .single-item .thumb {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 10px;
}

.cm-details .cm-sidebar-widget .single-item .thumb a,
.cm-details .cm-sidebar-widget .single-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.cm-details .cm-sidebar-widget .single-item .content {
  margin: 0px;
  padding: 0px !important;
  border-radius: 0px !important;
  background-color: transparent !important;
  text-transform: uppercase;
}

.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(2) {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 24px;
}

.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(2):hover {
  color: var(--quaternary-color);
}

.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 700;
}

.cm-details .cm-sidebar-widget .single-item .content p:nth-of-type(1) i {
  line-height: 1;
  margin-top: -3px;
}

.cm-details .cm-sidebar-widget .tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cm-details .cm-sidebar-widget .tag-wrapper a {
  padding: 8px 20px;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  border-radius: 0px;
  color: var(--black);
  font-weight: 500;
}

.cm-details .cm-sidebar-widget .tag-wrapper a:hover {
  background-color: var(--base-bg);
  color: var(--base-color);
}

/* home blog */

.blog-area {
  background-color: var(--white);
  padding:130px 0 30px 0;
}

.blog-area .blog__single-thumb {
  position: relative;
}

.blog-area .blog__single-thumb a {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-area .blog__single-thumb img {
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area .blog__single:hover .blog__single-thumb img {
  -webkit-transform: scale(1.2) rotate(5deg);
  -ms-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.blog-area .blog__single:hover .blog__single-content::before {
  /* background-color: var(--base-bg); */
}

.blog-area .blog__single:hover .blog__single-content a {
  color: var(--black);
}

.blog-area .blog__single:hover .blog__single-cta {
  border-top: 1px solid #5e5959;
}

.blog-area .blog__single-content {
      padding: 0px 40px 40px 10px;
  /* background-color: var(--white);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  position: relative;
  top: -50px;
  margin-bottom: -50px;
  width: calc(100% - 30px);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto; */
  /* z-index: 1; */
}

.blog-area .blog__single-content::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 10px;
  /* background-color: var(--white); */
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area .time {
  position: absolute;
  top: 0px;
  right: 30px;
  border-radius: 0px 0px 5px 5px;
  background: #ffb800;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.blog-area .time span {
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 8px;
}

.blog-area .blog__single-content .time span:nth-last-of-type(1) {
  font-size: 24px;
  margin-top: 4px;
}

.blog-area .tag a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}


  #blog_table_paginate .pagination { 
      gap:0;
  }
  #blog_table_paginate .paginate_button .active{
      padding:0;
  }
  #blog_table_paginate .paginate_button .current { 
       padding: 6px 14px;
    border-radius: 20px;

  }
  #blog_table_paginate .paginate_button {
  border-radius: 30px;
  border: 0px solid transparent !important;
}
.blog-area .tag a i {
  font-size: 18px;
  color: var(--primary-color);
}

.blog-area .blog__single-title {
  /* margin-top: 25px; */
}

.blog-area .blog__single-title a {
  color: var(--black);
  font-weight: 700;
    overflow: hidden;
    max-width: 340px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-area .blog__single-cta {
  border-top: 1px solid #dedede;
  padding-top: 20px;
    margin-top: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area .blog__single-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--black);
}

.blog-area .blog__single-cta a i {
  margin-top: 2px;
  color: var(--black);
}

.blog-area-two {
  background-color: var(--white);
}

.blog-area-two .blog__single-thumb a {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-area-two .blog__single-thumb img {
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area-two .blog__single:hover .blog__single-thumb img {
  -webkit-transform: scale(1.2) rotate(5deg);
  -ms-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.blog-area-two .blog__single:hover .blog__single-content::before {
  background-color: var(--base-bg);
}

.blog-area-two .blog__single:hover .blog__single-content a {
  color: var(--black);
}

.blog-area-two .blog__single:hover .tag {
  background-color: var(--black);
}

.blog-area-two .blog__single:hover .tag a,
.blog-area-two .blog__single:hover .tag p {
  color: var(--white);
}

.blog-area-two .blog__single:hover .blog__single-cta {
  border-color: rgba(85, 85, 85, 0.3137254902);
}

.blog-area-two .blog__single-content {
  padding: 30px 30px;
  padding-top: 0px;
  background-color: var(--white);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  position: relative;
  top: -50px;
  margin-bottom: -50px;
  width: calc(100% - 30px);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  text-align: center;
}

.blog-area-two .blog__single-content::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 10px;
  background-color: var(--white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area-two .blog__single-content .time {
  position: absolute;
  top: 0px;
  right: 30px;
  border-radius: 0px 0px 5px 5px;
  background: #ffb800;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-area-two .blog__single-content .time span {
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-area-two .blog__single-content .time span:nth-last-of-type(1) {
  font-size: 24px;
  margin-top: 4px;
}

.blog-area-two .blog__single-title {
  margin-top: 20px;
}

.blog-area-two .blog__single-title a {
  color: var(--black);
  font-weight: 600;
}

.blog-area-two .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  row-gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 12px 20px;
  background-color: var(--primary-color);
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  top: -27px;
  margin-bottom: -27px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area-two .tag a,
.blog-area-two .tag p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-transform: capitalize;
}

.blog-area-two .blog__single-cta {
  border-top: 1px solid #dedede;
  padding-top: 24px;
  margin-top: 27px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-area-two .blog__single-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-area-two .blog__single-cta a i {
  color: var(--secondary-color);
}

.blog-area-two .bubble-blog {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.blog-area-two .bubble-blog .bubble {
  background: white;
  opacity: 0.15;
}

.blog-area-two .partner {
  background-color: var(--white);
  padding-top: 100px;
}


.bottom-shape {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.blog-area .blog__single:hover .bottom-shape img {
  -webkit-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(5deg);
  transform: scale(1) rotate(0deg);
}

.bottom-shape img {
  min-height: unset !important;
}

.blog-margin-top {
  margin-top: 30px;
}


/* Datatable Css */

.btn-info.btn-block {
  font-size: 14px;
  background-color: var(--base-bg);
  border-radius: 20px;
  color: #fff;
  border: none;
  outline: none;
}




.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--primary-color) !important;
  border-radius: 30px;
  border: 2px solid transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover a {
    color:var(--white) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.active a {
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.active {
  background: var(--primary-color) !important;
  border: 2px solid transparent !important;
  border-radius: 30px;
}


 .dataTables_wrapper .dataTables_paginate .paginate_button  {
    border: 2px solid #7d7d7d !important;
    border-radius: 120px !important;
    padding: 6px 14px !important;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  font-size: 14px;
}

.dataTables_wrapper {
  margin-top: 20px;
}

.forminator-ui#forminator-module-2257.forminator-design--default .forminator-input {
  border-radius: 10px;
}

.select2-selection.select2-selection--single {
  border-radius: 10px;
}

#forminator-field-upload-1_68da6068d7264_button {
  border-radius: 10px;
}

.forminator-button {
  padding: 13px 24px;
  background-color: var(--base-bg);
  color: var(--white) !important;
  position: relative;
  font-weight: 700;
  z-index: 1;
  gap: 16px;
  overflow: hidden;
  letter-spacing: 0.8px;
  border-radius: 50px !important;
}

.forminator-button::before {
  content: unset !important;
}

.forminator-button::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  inset-inline-end: 0%;
  width: 0px;
  height: 100%;
  background-color: var(--quaternary-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
}




.forminator-button:hover {
  color: var(--white);
}

.forminator-button:hover::after {
  width: 100%;
  inset-inline-start: 0%;
}

.forminator-button:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}


.twenty-years-logo {
  position: absolute;
  right: 20px;
  top: -140px;

}


.twenty-years-logo::after {
  content: '';
  position: absolute;
  top: 116px;
  left: 50%;
  width: 2px;
  height: 100px;
  background-color: #fff;
}

.twenty-years-logo img {
  position: relative;
  width: 180px;
  z-index: 99;
}



.difference-three {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.difference-three .difference-three__thumb {
  direction: rtl;
}

.difference-three .section__header {
  max-width: 540px;
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.difference-three .difference-three__thumb-inner {
  position: relative;
  padding-top: 40px;
}

.difference-three .difference-three__thumb-inner .thumb-lg {
  -webkit-margin-start: 50px;
  margin-inline-start: 50px;
  border-radius: 16px;
  padding: 8px;
  background: #d7ebff;
}

.difference-three .difference-three__thumb-inner .thumb-lg .parallax-image-wrap {
  border-radius: 16px;
}

.difference-three .difference-three__thumb-inner .thumb-lg img {
  border-radius: 16px;
  min-height: 400px;
}

.difference-three .difference-three__thumb-inner .thumb-sm {
  position: absolute;
  bottom: 80px;
  inset-inline-end: 0px;
}

.difference-three .difference-three__thumb-inner .thumb-sm img {
  border-radius: 50%;
  border: 10px solid var(--white);
  -webkit-filter: drop-shadow(0px 4px 21px rgba(0, 0, 0, 0.09));
  filter: drop-shadow(0px 4px 21px rgba(0, 0, 0, 0.09));
}

.difference-three .difference-three__thumb-inner .line {
  position: absolute;
  top: 0px;
  inset-inline-end: 40%;
}

.difference-three .difference-three__thumb-inner .line img {
  -webkit-animation: wave 3s linear infinite;
  animation: wave 3s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.difference-three .difference-three__thumb-inner .spade {
  position: absolute;
  top: 150px;
  inset-inline-start: 15%;
  z-index: 1;
}

.difference-three .difference-three__thumb-inner .spade img {
  max-width: 5vw;
  min-width: 30px;
  -webkit-animation: pulse 4s infinite ease-in-out;
  animation: pulse 4s infinite ease-in-out;
}

.difference-three .differnce-quote {
  padding: 24px 30px;
  background-color: var(--white);
  max-width: 580px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  margin-top: 34px;
  border-left: 4px solid var(--base-bg);
}

.difference-three .differnce-quote q {
  font-weight: 700;
  color: var(--secondary-color);
}

.difference-three .differnce-quote q span {
  color: var(--quaternary-color);
  font-size: inherit;
  font-weight: 700;
}

.difference-three .difference-three-cta {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  row-gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.difference-three .difference-three-cta .btn--primary {
  padding: 18px 40px;
  border-radius: 5px;
  font-weight: 700;
  gap: 8px;
}

.difference-three .difference-three-cta .btn--primary::before,
.difference-three .difference-three-cta .btn--primary::after {
  border-radius: 0px;
}

.difference-three .difference-three-cta .btn--primary i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: color 0s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0s ease;
  transition: transform 0.5s ease, color 0s ease, -webkit-transform 0.5s ease;
  font-size: 18px;
}

.difference-three .difference-three-cta .btn--primary:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.difference-three .help__content-list {
  margin-top: 34px;
}

.difference-three .help__content-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 8px;
}

.difference-three .help__content-list li {
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-weight: 700;
}

.difference-three .help__content-list li i {
  font-size: 20px;
  color: var(--quaternary-color);
}

.difference-three .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.difference-three .author-info .author-thumb {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.difference-three .author-info .author-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.difference-three .author-info h6 {
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-top: 8px;
}

.difference-three .author-info span {
  font-size: 14px;
  line-height: 1;
}

.cream-bg {
  background-color: rgb(249 246 239);
}

.difference-three.cream-bg::after {
  content: "";
  position: absolute;
  bottom: -93px;
  left: 0px;
  width: 100%;
  height: 100px;
  background: url('https://donatelife.kombee.co.in/wp-content/uploads/2025/09/mission-bar.svg');
  background-repeat: no-repeat;
}


.difference-three.pb-70 {
  padding-bottom: 70px;
}

.event-seciton img,
.donorview2 img,
.donorview3 img {
  border-radius: 20px;
}

.donorview2 img ,.donorview3 img {
  height: 371px;
  width: 100%;
}

.news-well::after {
  content: '';
  position: absolute;
  bottom: -75px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/new-images/blog-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.news-well {
  background-color: #F9F6EF;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, .05) inset;
  margin-bottom: 30px;
  min-height: 120px;
  padding: 35px;
  position: relative;
  border-radius: 20px;
  border-bottom: 0 !important;
}

.news-well .video-gallery .btn--primary i {
  -webkit-transform: unset;
  transform: unset;
}

.news-well img {
  padding: 8px;
  background: #d7ebff;
  border-radius: 30px;
}


.news-well .date {
  background-color: #004c7d;
  color: #fff;
  margin-right: 20px;
  padding: 3px 10px;
  position: absolute;
  border-radius: 30px;
  right: 8px;
  top: -13px
}

.news-well .date i {
  color: #FFF
}

.news-well h3 {
  font-size: 16px;
  margin-bottom: 5px
}

.news-well p {
  margin-bottom: 0
}

.main-content img {
  border-radius: 16px;
}



.time-of-organ-donation ul {
  padding-left: 0px;
  padding-bottom: 15px;
  color: #28679f;
  display: flex;
  gap: 20px;
}

.time-of-organ-donation ul li {
  list-style: none;
  padding: 10px 0;
}

.time-of-organ-donation-list span {
  font-weight: 700;
  margin-left: 10px;
}


/* contact us  */

.contact-mc {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /*margin-top: 60px;*/
}

.contact-map {
    position:relative;
}
.map-inner{
    position: absolute;
    width: 100%;
    top: -260px;
}

.contact-mc::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(249 246 239);
  opacity: 0.7;
  z-index: -1;
}

.contact-mc .section__header {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.contact-mc .btn--primary {
  /* padding: 18px 40px; */
}

.contact-mc .section__header .btn--primary span {
  font-weight: 400;
  color: inherit;
  margin-top: 0px;
}

.contact-mc .section__header .btn--primary {
  margin-top: 16px;
}

.contact-mc .contact__content {
  padding-inline: 20px;
  background-color: black;
}

.contact-mc .contact__content .input-single {
  background-color: #222222;
}

.contact-mc .contact__content .input-single input,
.contact-mc .contact__content .input-single textarea {
  color: var(--white);
}

.contact-mc .contact__content .input-single input::-webkit-input-placeholder,
.contact-mc .contact__content .input-single textarea::-webkit-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::-moz-placeholder,
.contact-mc .contact__content .input-single textarea::-moz-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input:-ms-input-placeholder,
.contact-mc .contact__content .input-single textarea:-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::-ms-input-placeholder,
.contact-mc .contact__content .input-single textarea::-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-mc .contact__content .input-single input::placeholder,
.contact-mc .contact__content .input-single textarea::placeholder {
  text-transform: capitalize;
}

.contact-mc .sub-title {
  color: var(--base-bg);
}

.contact-mc h2 {
  color: var(--black);
}

.contact-mc .row>* {
  padding-inline: 0px;
}

.contact-mc .contact-bg {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: -3;
}

.contact-mc .contact-bg::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.08) 16.64%, rgba(9, 31, 27, 0.17) 28.59%, rgba(9, 31, 27, 0.37) 38.19%, rgba(9, 31, 27, 0.67) 56.36%, rgba(9, 31, 27, 0.1882352941) 61.29%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-mc .contact-bg .parallax-image-wrap,
.contact-mc .contact-bg .parallax-image-inner {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.contact-mc .contact-bg .parallax-image {
  width: 100%;
  height: 100%;
}

.contact-mc .contact__form .input-single i {
  color: var(--white);
}

.contact-mc .btn--secondary:hover {
  background-color: var(--secondary-color);
}

.contact-mc .shape-left {
  position: absolute;
  inset-inline-end: 0px;
  top: -50px;
  bottom: 0px;
  z-index: -2;
  right: 0;
}

.contact-mc .shape-left img {
  -webkit-animation: moveTopBottom 4s ease-in-out infinite;
  animation: moveTopBottom 4s ease-in-out infinite;
  max-width: 20vw;
  min-width: 50px;
}



.contact {
  position: relative;
  z-index: 1;
      margin-bottom: 400px;
}

.contact .topbar__item .topbar__item-single {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 25px 20px 25px 0;
  /*padding-left:0 !important;*/
  /*border-radius: 10px;*/
  border-bottom: 1px solid #cdcbc4;
  /*background: #fef6f6;*/
  width: 100%;
  /*margin-bottom: 30px;*/
}

.margin-left-contact {
    margin-left:50px;
}
.contact .topbar__item .topbar__item-single__icon {
    background: #fef6f6;
    padding:8px 10px;
    border-radius:40px;
}
.contact .topbar__item .topbar__item-single:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.contact .topbar__item .topbar__item-single span,
.contact .topbar__item .topbar__item-single p {
  font-size: 16px;
  line-height: 1;
}

.contact .topbar__item .topbar__item-single span {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.contact .topbar__item .topbar__item-single a {
  /* text-transform: lowercase; */
  line-height: normal;
}

.contact .topbar__item .topbar__item-single a:hover {
  color: var(--hover-color);
}

.contact .topbar__item .topbar__item-single i {
  color: var(--base-bg);
  font-size:18px;
}

.volunteer .volunteer__form {
  padding: 50px 40px;
  border-radius: 17px;
  /*border: 1px solid rgba(0, 0, 0, 0.17);*/
  box-shadow:var(--shadow);
  
}

.wpcf7-form {
  margin-top: 40px;
}

.wpcf7-form .wpcf7-form-control-wrap {
  width: 100% !important;
  margin-bottom: 20px;
}

.wpcf7-form .wpcf7-form-control-wrap input {
  
  border-radius: 10px !important;
  font-size: 14px !important;
  height: unset !important;
  padding: 11px 22px;
  width: 100%;
  
  border:1px solid #cdcbc4;
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  width: 100%;
  /*background-color: #eee !important;*/
  border:1px solid #cdcbc4;
  border-radius: 10px !important;
  font-size: 14px !important;
  height: 160px;
  padding: 10px 22px;
  /*box-shadow:var(--shadow-secondary);*/
  
}


/* founder page css */
.text-justify {
    text-align:justify;
}
.section-three p  {
    margin-bottom:8px;
}
 .founder-content {
    margin-bottom:8px;
}
.history-tl-container ul.tl li {
  list-style: none;
  margin: auto;
  margin-left: 200px;
  min-height: 50px;
  /*background: rgba(255,255,0,0.1);*/
  border-left: 1px dashed #932c2d;
  padding: 0 0 50px 30px;
  position: relative;
}

.history-tl-container ul.tl li:last-child {
  border-left: 0;
}

.history-tl-container ul.tl li::before {
  position: absolute;
  left: -10px;
  top: 3px;
  content: " ";
  border: 8px solid rgba(255, 255, 255, 0.74);
  border-radius: 500%;
  background: #932c2d;
  height: 20px;
  width: 20px;
  transition: all 500ms ease-in-out;

}

.history-tl-container ul.tl li:hover::before {
  border-color: #932c2d;
  transition: all 1000ms ease-in-out;
}

.history-tl-container ul.tl li .item-detail {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.history-tl-container ul.tl li .timestamp {
  color: #355b8a;
  position: absolute;
  width: 110px;
  left: -15%;
  text-align: right;
  font-size: 13px;
  font-weight: bold;
}

.section-eight.section-padding .history-tl-container ul.tl li {
  margin-left: 120px;
}

.section-siz.section-padding .history-tl-container ul.bullets li {
  margin-left: 34px !important;
}

.timestamp {
  font-size: 20px !important;
}

.founder-donatelife-tit {
  font-size: 20px;
  line-height: 1.8 !important;
  text-align: justify !important;
  font-weight: 500;
}

.founder-content {
  font-size: 18px;
  line-height: 28px !important;
}

.align-center {
  display: flex;
  align-items: center;
}

.section-four.section-padding,
.section-six.section-padding {
  padding: 30px 0;
}

.section-padding {
  padding: 30px 0 0 0;
}

.section-one.section-padding {
  padding-top: 60px;
}

.history-tl-container ul.bullets {
  margin: 20px 0;
  padding: 0;
  display: inline-block;
}

.history-tl-container ul.bullets li {
  list-style: disc;
  margin: auto;
  margin-left: 100px;
  padding: 10px 0;
  position: relative;

}

.history-tl-container {
  margin: auto;
  display: block;
  position: relative;
}

.history-tl-container ul.tl {
  margin: 20px 0;
  padding: 0;
  display: inline-block;

}

/* FAQ Section */
.faq {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq .section__header {
  max-width: 100%;
}

.faq .accordion-item {
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}

.faq .accordion-item:last-of-type {
  margin-bottom: 0px;
}


.faq .accordion-item .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--quaternary-color);
  border-radius: 10px 10px 0px 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}



.faq .accordion-item .accordion-button:not(.collapsed)::after {
  color: var(--white);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq .accordion-item .accordion-button {
  border-radius: 0px;
  color: var(--secondary-color);
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 10px;
  padding: 20px;
  font-weight: 700;
}

.faq .accordion-item .accordion-button::after {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0px;
  background-image: none;
  font-size: 20px;
  color: var(--secondary-color);
}

.faq .accordion-item:first-of-type>.accordion-header .accordion-button.collapsed {
  border-radius: 10px;
}

.faq .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-radius: 10px;
}

.faq h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}

.faq h6 button {
  padding: 0px;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  -webkit-box-shadow: 0px 0px 0px;
  box-shadow: 0px 0px 0px;
  padding: 16px 0px;
  border-radius: 10px;
  color: var(--secondary-color);
}

.faq .accordion-body {
  padding: 24px 20px;
  border: 0px;
}

.faq .accordion-body p {
  color: #747474;
}

.faq .faq__thumb-inner {
  min-width: 800px;
  position: relative;
}

.faq .faq__thumb-inner img {
  width: unset;
  border-radius: 10px;
}

.faq .faq__thumb-inner .thumb-sm {
  position: absolute;
  top: 80px;
  inset-inline-start: 40%;
  border: 10px solid #ebe5e5;
  border-radius: 20px;
}

.faq .faq__thumb-inner .thumb-lg {
  position: relative;
  display: inline-block;
  border: 10px solid #ebe5e5;
  border-radius: 20px;
}

.faq .faq__thumb-inner .thumb-lg::before {
  content: "";
  position: absolute;
  bottom: 0px;
  inset-inline-end: -40px;
  width: 20px;
  height: 400px;
  background-color: var(--base-bg);
  border-radius: 20px;
}


.content-section h4,
.first-organ-section .main-content h4,
.role-donatelife-section h4 {
  color: var(--base-bg);
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.role-donatelife-section .donate-text {
    font-size:18px;
    font-weight:600;
    color: var(--base-bg);
    padding:20px 0;
}

.role-donate-list {
    margin-bottom:20px;
}

table.figure-table {
  border: 2px solid #28679f;
  border-collapse: collapse;
  margin: 15px 0;
}

.figure-table td {
    padding: 5px;
    width: 170px;
    color: #000;
    border: 1px solid #28679f;
}

.figure-table .row-head, .figure-table tfoot tr td, .figure-table thead td, .left-sticky {
    color: var(--base-bg);
    font-weight: 700;
}

.mission-block li:before,
.role-donatelife-section li:before {
  font-family: FontAwesome;
  content: '\f058';
  margin: 0 8px 0 -22px;
  font-size: 16px;
}

.mission-block li, .role-donatelife-section li {
    margin-bottom: 6px;
}

.role-donatelife-section p strong {
    color: #266199;
    font-size: 18px;
}

.testimonial-block .quote {
    padding-right: 20px;
    color: #28679f;
    font-size: 100px;
    font-family: arial;
    font-style: normal;
    position: relative;
    bottom: -32px;
    font-weight: 700;
}

.first-donor-surat img {
  border-radius: 18px;
}
.first-donor-surat .col-sm-9 {
  font-size: 18px;
}


.dwidget_content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.dwidget_content li {
    margin-bottom: 10px;
    background: #f6faff;
    padding: 15px;
    color: #3d3d3d;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    border-radius: 16px;
}

.dwidget_content .how-to-doante-grp li {
    text-align: center;
    width: 50%;
}

.how-to-doante-grp {
  display: flex;
  width: 100%;
  gap: 10px;
}

.how-to-doante-single {
  width: 100%;
}

.forminator-ui#forminator-module-2270.forminator-design--default .forminator-input {
  border-radius: 10px;
}

.role-donatelife-section img { 
  border-radius: 16px;
}

    .photo-gallery-section  .filter-tabs{
    gap: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .green-corridor-images img {
    height: 240px;
    width: 100%;
    margin: 15px 0;
    border-radius: 16px;
  }
  .video-wrapper iframe { 
      border-radius: 16px;
  }
@media only screen and (min-width: 768px) {
    .banner-two .banner-two__slider-content h1 {
        max-width: 100%;
    }
}



@media (min-width:1024px) and  (max-width: 1300px)   { 
    .search-active .search-popup .close-search {
        top:40%;
    }
    .search-popup .popup-container {
        max-width:520px;
    }
    .header .navbar__sub-menu a {
        padding: 10px 32px;
font-size: 12px;
    }
    .header-secondary .main-header__menu-box {
        padding:10px 20px;
    }
}
@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 72px;
        line-height: 82px;
    }
      .banner-two .banner-two__slider-single {
    padding-block: 380px 300px;
  }
  .banner-two .banner-two__slider-content h1 br {
      display:block;
  }
}

@media (min-width: 992px) {
  .green-corridor-images img {
    height: 240px;
    width: 100%;
    margin: 15px 0;
    border-radius: 16px;
  }
}

@media (max-width: 992px) {
    .section__header h2 {
        font-size:26px;
    }
  .explore__wrapper {
    display: block !important;

  }

  .explore-area .explore__single-tall {
    height: 340px;
  }
}

@media (max-width: 769px) {
    .topbar__item-single__content p br {
        display:none;
    } 
    .margin-left-contact {
        margin:0;
    }
    .contact .topbar__item .topbar__item-single {
            padding: 25px 61px 25px 0px;
    }
    .salute-content-container .section__header.mb-80 {
        margin-bottom:30px;
    }
    .salute-btn-container.mt-40{
        margin:20px 0;
    }
  
    .header-secondary .main-header__menu-box { 
        top: 20px ;
    }
    
    .banner-two .banner-two__slider-content h1 {
        font-size:28px;
    }

  .difference-three .difference-three__thumb-inner .thumb-lg {
    margin-bottom: 30px;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
  }

.about-area .about__thumb-big img {
  display: none;
}
.about-area .about__thumb-sm {
  position: unset;
  width: 100%;
}

.about-area .about__thumb-sm img {
  width: 100% !important;
  min-height: unset !important;
}

.about-area .about__thumb-big .video-btn-wrapper {
    top: 190px;
    translate: -50%;
    left: 50%;
}

.role-donatelife-section img {
    margin-top: 10px;
}


  .header-secondary .main-header__menu-box {
        padding: 20px 30px;
  }
  
  .video-gallery .btn--primary {
   margin-bottom: 30px;
  }
  .role-donatelife-section ul {
    padding-left: 20px;
  }
  .twenty-years-logo {
    display: none;
  }

  .custom-freemode-slider .swiper-slide,
  .custom-freemode-slider-2 .swiper-slide {
    height: 210px;
    width: 300px !important;
  }

  .salute-content-container {
    padding: 0 20px;
  }

  .salute-count-no .salute-count-number {
    font-size: 34px !important;
  }

  .salute-btn-container {
        /*padding:10px;*/
    }

  .salute-count-no p {
    font-size: 16px;
  }

  .salute-swiper {
    padding: 26px 10px !important;
  }

  .blog-area .gutter-40 {
    row-gap: 10px !important;
  }

  .blog-margin-top {
    margin-top: 10px;
  }

  .about-area.pt-120.pb-120 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore__single {
    margin-bottom: 20px !important;
  }
}



@media (min-width: 992px) {

  .blog-post:nth-child(3n+1),
  .photo-gallery-section .photogallery-block:nth-child(3n+1) {
    clear: both
  }

  .banner-full-width {
    margin: 0 auto
  }

  #about-donatelife-section .section-title,
  .main-title {
    margin-bottom: 40px
  }

  #blog .course-details__title {
    padding-right: 50px
  }

  #blog .st_sharethis_large {
    position: absolute;
    top: 0;
    right: 0
  }

  .blog-seciton.blog-pag .blog-post:nth-child(1) .blog-item,
  .blog-seciton.blog-pag .blog-post:nth-child(2) .blog-item,
  .blog-seciton.blog-pag .blog-post:nth-child(3) .blog-item {
    margin-top: 0
  }

  .zoom1 img,
  .zoom2 img {
    height: 100px
  }


  .donorview2 {
    padding-right: 0
  }
  
 
  .founder-section-img {
    float: left;
    width: 370px;
    padding-right: 15px;
    padding-bottom: 15px
  }

  .abt-donatelife-block-img,
  .role-donatelife-img {
    float: right;
    padding-left: 15px;
    padding-bottom: 15px
  }

  .abt-donatelife-block-img {
    width: 620px;
    z-index: 1;
    position: relative
  }

  .role-donatelife-img {
    width: 570px
  }

  .content-section h4,
  .first-organ-section .main-content h4,
  .role-donatelife-section h4 {
    font-size: 22px
  }

.organ-surat-container {
    padding:20px 20px 40px 20px  ;
    margin:30px 0 50px 0px;
    background-color:var(--cream-bg);
    position:relative;
    border-radius:20px 20px 0 0;
}

.organ-surat-container::after { 
    content: '';
    position: absolute;
    bottom: -75px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/new-images/blog-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
}

  .role-img img {
    height: 380px;
    width: 100%;
    border-radius: 20px;
    margin: 20px 0;
  }

  .founder-img .half-img {
    width: 100%
  }
    .founder-img .col-sm-4 {
        margin-bottom:20px;
    }
    .founder-img .col-sm-4 img {
        border-radius:14px;
    }
  #about-donatelife-section .single-item .abt-donate-first-p,
  #about-donatelife-section p {
    padding-top: 0
  }

  #teamlightgallery .owl-carousel {
    margin-top: 20px
  }

  #teamlightgallery .owl-carousel .owl-next,
  #teamlightgallery .owl-carousel .owl-prev {
    top: 320px
  }

.modal-dialog {
    max-width:700px !important;
}
.modal-header {
    background: var(--cream-bg);
}
  .donator-seciton .item-right {
    padding-bottom: 140px;
  }

  .helping-seciton img {
    padding-top: 80px;
    height: 680px;
  }


}

@media (max-width: 340px) {
  .welcome-seciton .welcome-item .text a {
    width: 112px;
  }

  .welcome-seciton .welcome-item .text {
    padding-left: 3px;
    padding-right: 3px;
  }
}

@media (max-width: 767px) {


  .logo {
    padding-top: 5px
  }

  .contact-section.contact-page {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .contaat-item .icon {
    margin-bottom: 5px
  }

  .contaat-item .text h4 {
    padding-bottom: 10px;
    line-height: 30px;
  }

  .contact-section .section-title {
    clear: both
  }

  .contact-section .section-title p {
    margin-bottom: 20px
  }

  .contaat-item {
    padding-left: 5px !important;
    padding-top: 5px !important
  }

  .contact-section #submit {
    margin-bottom: 40px
  }

  .news-seciton .news-form input {
    margin-top: 12px !important
  }

  .section-title h2,
  .h1-title h1 {
    line-height: 35px;
    padding-bottom: 15px;
    font-size: 22px !important
  }

  .section-title p {
    padding-top: 15px
  }

  .event-seciton.event-page .section-title h2::before,
  .section-title h2::before {
    top: 100% !important
  }

  .news-seciton .news-btn {
    width: 100%;
    margin-bottom: 40px
  }

  .news-seciton .news-text p {
    padding-bottom: 2px
  }

  .footer-section {
    padding-top: 30px
  }

  .footer-bottom {
    margin-top: 30px
  }

  ul.fot-link {
    margin-bottom: 25px
  }

  .blog-seciton,
  .event-seciton,
  .welcome-seciton {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .blog-seciton.blog-pag .blog-item {
    margin-top: 40px
  }

  .blog-seciton.blog-pag .dont-btn {
    margin-top: 0
  }

  #blogside .category h2 {
    margin-top: 40px
  }

  .news-well h3 {
    margin-top: 25px
  }

  .section-title h2 span {
    line-height: normal
  }

  .video-seciton {
    padding-top: 50px
  }

  .video-seciton .single-item p {
    padding-right: 0
  }

  .event-seciton .m-b-20 {
    margin-top: 10px
  }

  .donator-seciton .winning {
    position: static
  }

  .donator-seciton .item-left {
    padding-top: 0 !important
  }

  .donator-seciton .item-left .text h4 {
    line-height: 1.5
  }

  .index-donator-seciton .category {
    margin-bottom: 0
  }

  .index-donator-seciton .item-left .text h4 {
    padding-top: 25px;
    padding-bottom: 15px
  }

  .dignitaries-img {
    margin-top: 15px
  }

  .role-donatelife-img {
    margin-bottom: 15px
  }

  .donator-seciton .donator {
    margin-top: 15px !important
  }

  .tissue-category .category {
    padding-top: 15px;
    clear: both
  }

  .tissue-category .img-holder {
    margin-bottom: 50px
  }

  .our-story .m-b-50,
  .our-story-img {
    margin-bottom: 20px
  }

  #sticky-social {
    display: none
  }

  .welcome-seciton .welcome-item {
    margin-top: 30px
  }

  .welcome-seciton .welcome-item .text .pro-text h4 {
    font-size: 16px
  }

  .donator-seciton .item-right .text h2,
  .helping-seciton .text h2 {
    padding-top: 60px !important
  }

  .donator-seciton .item-right,
  .helping-seciton {
    padding-bottom: 60px !important
  }

  .section-title h2 {
    padding-top: 5px
  }

  .event-seciton .event-item .text h4 .award-title {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px
  }

  .our-story-img {
    width: 100%;
    height: 100%
  }

  .donator-seciton .item-right .text h2 {
    font-size: 22px !important
  }

  .donator-seciton .item-right .text h4 {
    font-size: 14px
  }

  .dataTables_wrapper {
    overflow: auto;
    width: 100%
  }



  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 20px 3px !important
  }

  .digital-media-section .table td a {
    word-break: break-all
  }

  .press-coverage .filters li {
    width: 100%
  }

  .blog-seciton.blog-pag .blog-post:nth-child(2) .blog-item {
    margin-top: 40px !important
  }

  .section-block h4,
  .content-section h4,
  .first-organ-section .main-content h4,
  .role-donatelife-section h4 {
    line-height: normal !important
  }

  #modal-popup .close {
    top: -18px;
    right: 0px;
  }

  .mission-block .vision-img {
    margin-bottom: 10px
  }

  .founder-ebook {
    clear: both;
    float: none !important;
    margin-top: 10px !important;
  }

  .first-donor-surat img {
    margin-bottom: 10px;
  }

  #about-donatelife-section p {
    padding-top: 0 !important;
    float: none !important;
  }

  .helping-seciton {
    background-attachment: inherit;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .footer-item .col-md-3:nth-child(2n+1) {
    clear: both
  }

  .footer-item h2 {
    margin-top: 50px
  }

  .footer-section {
    padding-top: 30px
  }

  .founder-section-img {
    float: left;
    width: 370px;
    padding-right: 15px;
    padding-bottom: 15px
  }

  .news-btn,
  .news-seciton .news-form input {
    margin-top: 0 !important
  }

  .dataTables_wrapper {
    overflow: auto;
    width: 100%
  }

  .our-story-img {
    width: 100%;
    /* 		height: 195px;  */
  }

  #teamlightgallery .section-title p {
    padding-bottom: 20px;
  }

  .news-seciton .news-text p {
    padding-bottom: 0;
  }

  .news-seciton {
    padding-bottom: 25px;
  }

  .abt-donatelife-block-img {
    width: 100%;
  }
}

@media (max-width: 992px) {

.header-secondary .main-header__menu-box { 
    top:20px;
}
  .main-slider .grey-title .btn-3,
  .main-slider .grey-title h2,
  .main-slider .grey-title h4,
  .main-slider .grey-title p,
  .main-slider .white-title h2,
  .slider-bar,
  .tp-simpleresponsive .tp-caption {
    display: none
  }

  .navbar-toggle {
    display: block
  }

  .main-menu .navbar-toggle .icon-bar {
    background: #28679f
  }

  .main-menu .collapse.in {
    display: block !important
  }

  .navigation {
    display: none
  }

  .main-menu .navbar-header .navbar-toggle {
    margin-right: 0;
    padding: 9px 0;
    position: absolute;
    top: 7px !important;
    right: 0;
    margin-top: 0
  }

  .mobile-menu {
    /*margin-top: 40px;*/
  }

  .blog-seciton,
  .contact-section.contact-page,
  .event-seciton,
  .gallery-section,
  .section-block,
  .video-seciton,
  .welcome-seciton {
    padding-top: 60px;
    padding-bottom: 60px
  }

  .winning {
    position: static;
    margin-top: 20px
  }

  .donator-seciton .donator {
    margin-top: 0
  }

  .donator-seciton .item-left .click-here h4 {
    padding-top: 40px !important
  }

  .news-btn,
  .news-seciton .news-form input {
    margin-top: 20px !important
  }

  .news-seciton .news-form input[type=submit] {
    margin-top: 10px !important;
  }

  .video-seciton .single-item p {
    padding-right: 0
  }

  .section-title h2 {
    line-height: normal
  }

  .event-seciton.event-page .section-title h2::before,
  .section-title h2::before {
    content: none
  }

  .blog-seciton.blog-pag .blog-post:nth-child(2n+1),
  .gallery-block:nth-child(2n+1),
  .photogallery-block:nth-child(2n+1) {
    clear: both
  }

  .blog-seciton.blog-pag .blog-post:nth-child(1) .blog-item,
  .blog-seciton.blog-pag .blog-post:nth-child(2) .blog-item {
    margin-top: 0
  }

  .contact-page iframe {
    margin-top: 40px
  }

  .contaat-item .icon {
    margin-bottom: 0
  }

  .whole-team-img {
    margin: 20px 0
  }

  #teamlightgallery .owl-controls,
  .politics .owl-controls {
    display: none;
  }

  .left-sticky {
    left: 15px;
  }

  .page-title-small {
    padding: 10px 0 5px;
  }

  .content-section h4,
  .first-organ-section .main-content h4,
  .role-donatelife-section h4 {
    line-height: normal;
    text-align: left;
  }

  .mission-block .vision-img {
    margin-bottom: 10px;
  }
}

[class*=entypo-]:before {
  font-family: entypo, sans-serif
}

#sticky-social {
  right: 0;
  position: fixed;
  top: 200px;
  z-index: 999
}

#sticky-social a {
  background: #333;
  color: #fff;
  display: block;
  height: 35px;
  font: 16px "Open Sans", sans-serif;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 35px
}

#sticky-social a:hover span {
  right: 100%
}

#sticky-social a span {
  line-height: 35px;
  right: -120px;
  position: absolute;
  text-align: center;
  width: 120px
}

#sticky-social a[class*=facebook],
#sticky-social a[class*=facebook] span,
#sticky-social a[class*=facebook]:hover {
  background: #3b5998
}

#sticky-social a[class*=twitter],
#sticky-social a[class*=twitter] span,
#sticky-social a[class*=twitter]:hover {
  background: #00aced
}

#sticky-social .youTube-social,
#sticky-social .youTube-social span,
#sticky-social .youTube-social:hover {
  background: #cc2127
}

#sticky-social .instagram-social,
#sticky-social .instagram-social span,
#sticky-social .instagram-social:hover {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

.dataTables_wrapper .input-sm {
  border-radius: 10px;
  box-shadow: none
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border-top: 1px solid #ddd;
  border-right: none
}

.founder-ebook {
  float: right;
  margin: 0
}

.m-t-25 {
  margin-top: 25px
}

.slider-donor-link {
  width: 260px;
}

.highlight-p {
  font-weight: bold;
  font-size: 18px;
}

.digit-below {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  color: #28679f;
  font-size: 20px;

}

.digit-below span {
  color: #a43636;
}

.form-note-container {
  padding: 20px 0;
}
.form-note-container h3 {
  color: var(--base-bg);
 }
 
     .founder-section  .quotes {
         font-size:18px;
        color:var(--primary-color);
    }
    
    .video-wrapper {
        display: flex; 
        gap: 26px;
    }
@media (max-width: 767px) {
        .green-corridor-images {
            margin-top:10px;
        }

       .video-wrapper {
     flex-direction:column;
     
    }
  .main-menu .navbar-header .navbar-toggle {
    top: 10px !important;
  }
}


@media (min-width: 768px) and (max-width: 1300px) { 
    .help .help__thumb {
        padding-right:0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-menu .navbar-header .navbar-toggle {
    top: 14px !important;
  }
  .header-secondary .main-header__menu-box {
      padding: 14px 30px;
  }
}
@media (min-width: 100px) and (max-width: 767px) {
    .header .navbar-logo img {
        height: 66px;
      }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .header .navbar-logo img {
        height: 78px;
      }
}
@media (max-width: 1199px) {

  #teamlightgallery .owl-controls,
  .politics .owl-controls {
    display: none;
  }
}


@media (min-width: 992px) and (max-width: 1199px) {
  .donator-seciton .item-right .text h2 {
    padding-top: 175px;
  }

  .main-menu {
    float: left !important;
  }

  .main-menu .navigation {
    padding-left: 0 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {

  .politics .owl-carousel .owl-next,
  .politics .owl-carousel .owl-prev {
    top: 200px;
  }
}



@media (min-width: 1200px) {
  .main-menu .navigation {
    margin-top: 0px;
  }

  .main-menu .navigation li {
    margin-top: 25px;
  }

      .donate-btn {
        background: #932c2d;
        color: #fff;
        padding: 10px !important;
        /* margin-top: 16px !important; */
        border-radius: 22px;
        margin-left: 5px;
        margin-right: 0px !important;
        font-size: 14px;
    }

  .black-btn {
    background: #000;
  }

  .donate-btn a {
    color: #fff !important;
  }

  .main-menu .navigation li.donate-btn a {
    padding-bottom: 0;
  }

  .main-menu .navigation>li.current.donate-btn {
    border-bottom: none;
    border-radius: 5px;
  }

  .main-menu .navigation {
    padding-left: 22px;
  }
}


@media (max-width: 767px) {
  .difference-three .difference-three__thumb {
    direction: unset;
}
.difference-three .difference-three__thumb-inner {
    position: relative;
    padding-top: 40px;
    min-width: 490px;
    direction: unset;
}

  .hip-grid-vg {
    grid-template-columns: 100%;
  }

  .hip-grid-vg .hip-item {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .hip-pagination {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (min-width: 768px) {
    
  .custom-flex {
    display: flex !important;
    overflow: auto !important;
  }

}

@media (min-width: 1199px) {
  .organ-div {
    padding-left: 5px !important;
    padding-right: 5px !important;
    width: 12.5% !important;
  }

  .welcome-seciton .organ-div .welcome-item .text a {
    width: 110px !important;
  }
}



@media (min-width: 768px) and (max-width: 1140px) {
  .img-box img {
    width: 100%;
    height: 100% !important;
  }

  .h-400 {
    width: 100%;
    height: 100% !important;
  }

}

@media (min-width: 768px) and (max-width: 992px) {
  .img-box img {
    width: 100%;
    height: 260px !important;
  }

  .founder-content {
    font-size: 16px;
    line-height: 22px !important;
  }

  .section-four.section-padding,
  .section-six.section-padding {
    padding: 10px 0;
  }

  .section-padding {
    padding: 10px 0 0 0;
  }

  .mb-20 {
    margin-bottom: 10px;
  }

  .mob-mb {
    margin-bottom: 20px;
  }
}

@media (min-width: 300px) and (max-width: 767px) {

  .about-area .about__thumb-big .video-btn-wrapper {
    top: 120px;
  }

  .section-four.section-padding,
  .section-six.section-padding {
    padding: 10px 0;
  }

  .section-padding {
    padding: 10px 0 0 0;
  }

  .mb-20 {
    margin-bottom: 10px;
  }

  .mob-mb {
    margin-bottom: 20px;
  }

  .founder-donatelife-tit {
    font-size: 18px;
    line-height: 1.4 !important;
    text-align: left !important;
    font-weight: 500;
  }

  .h-400 {
    width: 100%;
    height: 100% !important;
  }

  .align-center {
    display: block;
    align-items: center;
  }

  .founder-section-img {
    margin-bottom: 20px;
  }

  .section-one.section-padding h2 {
    font-size: 24px;
  }

  .section-one.section-padding p.quotes {
    font-size: 14px;
    
  }

  .founder-content {
    font-size: 16px;
    line-height: 24px !important;
  }
}



@media (max-width: 768px) {
  .history-tl-container ul.tl li .timestamp {
    left: -52%;
  }

  .history-tl-container ul.tl li {
    margin-left: 120px;
  }
  .pagination {
      flex-wrap:wrap;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .history-tl-container ul.tl li .timestamp {
    left: -22%;
  }
}



@media (max-width: 1440px) {
  .popup-content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .popup-content .popup-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .popup-certi p {
    font-size: 42px;
    line-height: 62px !important;
  }
}

@media (max-width: 450px) and (min-width: 370px) { 
   .team-item {
        padding: 0 40px;

  }
}
@media (max-width: 450px) {
  .popup-content {
    width: 90%;
  }

  .popup-content .popup-heading {
    font-size: 18px;
  }

  .popup-content p {
    text-align: center;
    font-size: 14px;
  }

  .popup-content row {
    flex-direction: column;
  }

  .popup-certi p {
    font-size: 34px;
    line-height: 54px !important;
  }

  .popup-content {
    margin: 22% auto;
  }

  .popup-content .pop-note {
    margin: 20px 0 0;
  }
}


@media (min-width: 992px) {
  .team-seciton .team-item .team-single-item:nth-child(4n+1) {
    clear: both;
  }
}
.error-page-padding img{
    height:460px;
}
.error-page-padding p{
    font-size:18px;
}
.error-page-padding h1{
    font-size:150px;
    margin-bottom:50px;
}
.error-page-padding{
    padding-top:150px;
    padding-bottom:100px;
}

@media (min-width: 280px) and (max-width: 767px) { 
    .header-secondary.sticky-header .main-header__menu-box{
        padding:0;
    }
    .header.sticky-header .navbar-logo img{
        height:60px;
    }
    .sticky-header{
        padding: 8px 0;
        height: 80px;
        display: flex;
        align-items: center;
    }
    .error-page-padding img{
        height:280px;
    }  
}
@media (min-width: 768) and (max-width: 1199px) { 
    .sticky-header{
        padding: 8px 0;
        height: 90px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 280px) and (max-width: 599px) {
    .mobile-menu .mobile-menu__cta{
        padding-left:6px;
        padding-right:6px;
    }
    .progress-wrap {
        position: fixed;
        inset-inline-end: 30px;
        bottom: 25px;
        height: 36px;
        width: 36px;
    }
    .footer-two .social a {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }
    .copyright-text {
        font-size: 12px !important;
    }
    .footer-two .footer__bottom-list a{
        font-size:14px;
    }
    .footer-two .footer__bottom-list{
        gap:10px;
    }
          .section__header h2 {
        font-size:22px;
    }
    .common-banner h1 {
        font-size:22px;
    }
    .time-of-organ-donation ul {
        display:block;
    }
    
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails {
    display:block;
}
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails {
    width:100% !important;
}
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
    max-width:100% !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item1 img {
    width:100% !important;
    height:auto !important;
    
}

#bwg_container1_0 .bwg-item2:after {
    height:92px !important;
}

#bwg_container3_0 .bwg-item {
    width:100% !important;
}
    .help .thumb-top{
            position: relative;
    }
    .help__thumb-inner .thumb-lg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .help .thumb-lg{
       margin-top: 20px; 
    }
    .help__thumb-inner .thumb-bottom img, .help__thumb-inner .thumb-top img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .help .thumb-lg {
        margin-bottom : 15px;
        margin-top: 20px;
        position: relative;
        z-index: 1;
        width: 100%;
    }
    .help .thumb-bottom {
        position: relative;
        bottom: 0px;
        inset-inline-end: 0px;
        z-index: 2;
    }
    .help .help__thumb {
        direction: rtl;
        padding-right: unset;
    }
    .help.pb-120 {
        padding-bottom: 30px;
    }
    .help.pt-120 {
        padding-top: 30px;
    }
    .help .help__thumb-inner {
        text-align: end;
        position: relative;
        min-width: unset;
        direction: ltr;
    }
}
.news-well h3{
    font-weight:bold;
}