/* ==============
 ========= css table of contents =========

 * template name: Charitia
 * version: 1.0
 * description: Nonprofit NGO Fundraising HTML5 Template
 * author: webnextpro
 * author-url: https://themeforest.net/user/webnextpro

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> custom cursor
     3.05 --> scroll progress button

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> partner
     5.02 --> difference
     5.03 --> overview
     5.04 --> counter
     5.05 --> help
     5.06 --> cause
     5.07 --> contact
     5.08 --> blog
     5.09 --> volunteer
     5.10 --> community
     5.11 --> award
     5.12 --> donation
     5.13 --> testimonial
     5.14 --> faq
     5.15 --> shop
     5.16 --> event
     5.17 --> gallery
     5.18 --> team
     5.19 --> authentication
     5.20 --> coming soon
     5.21 --> error

    ==================================
============== */
@import url("bootstrap.min.css");
@import url("../fonts/css/all.min.css");
@import url("../fonts/css/flag-icons.min.css");
@import url("../fonts/css/charitia.css");
@import url("magnific-popup.css");
@import url("aos.css");
@import url("nice-select.css");
@import url("odometer.css");
@import url("swiper-bundle.min.css");
/* ==== 
 --------- (1.01) mixins start ---------
 ==== */
/* ==== 
   --------- (1.01) mixins end ---------
   ==== */
/* ==== 
 --------- (1.02) variables start ---------
 ==== */
: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: #046a58;
    --secondary-color: #122f2a;
    --tertiary-color: #046a58;
    --quaternary-color: #00715d;
    --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);
}

/* ==== 
   --------- (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,
span {
    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 ---------
 ==== */
img {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left top;
    object-position: left 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;
}

.sidebar-cart {
    background: 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));
    padding: 15px 15px 0 15px;
    position: fixed;
    display: block;
    width: 320px;
    height: 100vh;
    z-index: 99999;
    top: 0;
    inset-inline-end: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-box-shadow: -10px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.sidebar-cart .close-cart {
    height: 16px;
    width: 16px;
    margin: 0 0 15px 0;
    text-decoration: none;
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    border: 0px;
    outline: 0px;
}
.sidebar-cart .close-cart .close-icon {
    width: 16px;
    height: 16px;
    background: var(--black);
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M30.3 32c-.5 0-.9-.2-1.2-.5L16 18.4 3 31.5c-.4.3-.8.5-1.3.5s-.9-.2-1.2-.5c-.7-.7-.7-1.8 0-2.4L13.6 16 .5 2.9C-.2 2.2-.2 1.2.5.5.8.2 1.2 0 1.7 0s.9.2 1.2.5l13.1 13 13-13c.7-.7 1.7-.7 2.4 0 .4.3.6.7.6 1.2s-.2.9-.5 1.2L18.4 16l13.1 13.1c.7.7.7 1.8 0 2.4-.3.3-.8.5-1.2.5z'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M30.3 32c-.5 0-.9-.2-1.2-.5L16 18.4 3 31.5c-.4.3-.8.5-1.3.5s-.9-.2-1.2-.5c-.7-.7-.7-1.8 0-2.4L13.6 16 .5 2.9C-.2 2.2-.2 1.2.5.5.8.2 1.2 0 1.7 0s.9.2 1.2.5l13.1 13 13-13c.7-.7 1.7-.7 2.4 0 .4.3.6.7.6 1.2s-.2.9-.5 1.2L18.4 16l13.1 13.1c.7.7.7 1.8 0 2.4-.3.3-.8.5-1.2.5z'/%3E%3C/svg%3E");
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.sidebar-cart h2 {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    margin: 5px 0 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.sidebar-cart h2 span.count {
    color: var(--white);
    background: var(--black);
    padding: 8px;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    position: relative;
    top: -1px;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    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-top: -4px;
}
.sidebar-cart .cart-items {
    margin-top: 30px;
}
.sidebar-cart .cart-item-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0px;
    border-bottom: 1px solid #e5e5e5;
    -webkit-padding-end: 24px;
    padding-inline-end: 24px;
    position: relative;
}
.sidebar-cart .cart-item-single .delete-item {
    position: absolute;
    top: 50%;
    inset-inline-end: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--base-bg);
    background-color: transparent;
    font-size: 20px;
}
.sidebar-cart .cart-item-single .delete-item:hover {
    color: var(--hover-color);
}
.sidebar-cart .cart-item-single .cart-item-thumb a {
    width: 80px;
    height: 100px;
}
.sidebar-cart .cart-item-single .cart-item-thumb a img {
    width: 100%;
    height: 100%;
}
.sidebar-cart .cart-item-single .h6 a {
    font-weight: 600;
    color: var(--black);
    font-size: 18px;
}
.sidebar-cart .cart-item-single .h6 a:hover {
    color: var(--hover-color);
}
.sidebar-cart .cart-item-single .price {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}
.sidebar-cart .cart-item-single .measure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.sidebar-cart .cart-item-single .measure button {
    width: 28px;
    min-width: 28px;
    height: 28px;
    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-color: var(--base-bg);
    color: var(--base-color);
    font-size: 14px;
}
.sidebar-cart .cart-item-single .item-quantity {
    min-width: 16px;
    color: var(--black);
    font-weight: 700;
    text-align: center;
}
.sidebar-cart .der {
    height: calc(100% - 140px);
    overflow-y: auto;
}
.sidebar-cart div.totals {
    position: absolute;
    bottom: 80px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 45px;
    background: var(--white);
    border-top: 1px solid #e5e5e5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.sidebar-cart div.totals div.subtotal,
.sidebar-cart div.totals div.shipping,
.sidebar-cart div.totals div.tax {
    padding: 15px;
    text-align: center;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.sidebar-cart div.totals div.subtotal span.amount,
.sidebar-cart div.totals div.subtotal .total-price,
.sidebar-cart div.totals div.shipping span.amount,
.sidebar-cart div.totals div.shipping .total-price,
.sidebar-cart div.totals div.tax span.amount,
.sidebar-cart div.totals div.tax .total-price {
    color: var(--secondary-color);
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    font-weight: 700;
}
.sidebar-cart div.totals div.subtotal .total-price,
.sidebar-cart div.totals div.shipping .total-price,
.sidebar-cart div.totals div.tax .total-price {
    margin: 0px;
}
.sidebar-cart div.totals div.subtotal span.label,
.sidebar-cart div.totals div.shipping span.label,
.sidebar-cart div.totals div.tax span.label {
    color: var(--secondary-color);
    font-weight: 700;
}
.sidebar-cart div.action-buttons {
    padding: 0;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    display: block;
    white-space: nowrap;
}
.sidebar-cart div.action-buttons a.view-cart-button,
.sidebar-cart div.action-buttons a.checkout-button {
    display: inline-block;
    padding: 10px;
    margin: 20px 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    font-weight: 700;
}
.sidebar-cart div.action-buttons a.view-cart-button {
    background: var(--black);
    border-color: var(--black);
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    color: var(--white);
    width: 80px;
}
.sidebar-cart div.action-buttons a.checkout-button {
    border-color: var(--base-bg);
    background: var(--base-bg);
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    color: var(--base-color);
    width: 200px;
}

.sidebar-cart-active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.cart-backdrop {
    position: fixed;
    top: 0px;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.5921568627);
    z-index: 9999;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.cart-backdrop-active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
        progress;
}

.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 form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    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 button {
    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 form {
    -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: 50%;
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.parallax-image {
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.parallax-image-wrap,
.parallax-image-inner {
    border-radius: inherit;
}

.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;
}

.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: #ffffff;
    line-height: 1;
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 0px;
    color: var(--white);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 12px;
    content: "/";
    font-weight: 700;
    color: #ffffff;
}
.breadcrumb .active {
    color: var(--white) !important;
}

.section__header {
    max-width: 460px;
    margin-inline: auto;
}
.section__header span {
    font-weight: 700;
    color: var(--quaternary-color);
    margin-top: -8px;
}
.section__header h2 {
    color: var(--black);
    font-weight: 700;
    margin: 12px 0px 20px;
}
.section__header i {
    font-size: 24px;
    color: var(--quaternary-color);
}
.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;
}

.main-pagination {
    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: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.main-pagination button,
.main-pagination a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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: 1px solid #9eb3af;
    background-color: transparent;
    color: var(--black);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 800;
    font-size: 14px;
}
.main-pagination button:hover,
.main-pagination a:hover {
    border-color: var(--base-bg);
    background-color: var(--base-bg);
    color: var(--base-color);
}
.main-pagination .active {
    border-color: var(--base-bg);
    background-color: var(--base-bg);
    color: var(--base-color);
}
.main-pagination button {
    background-color: var(--quaternary-color);
    color: var(--white);
}
.main-pagination button:hover {
    background-color: var(--base-bg);
    color: var(--base-color);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9e9e9;
    border-radius: 10px;
    position: relative;
}
.progress-bar .progress-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--base-color);
    border-radius: inherit;
}

.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;
}
.video-btn-wrapper .open-video-popup i {
    font-size: 20px;
    color: var(--secondary-color);
}
@-webkit-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);
    }
}
@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);
    }
}

@-webkit-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;
    }
}

@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;
    }
}
.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-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);
}

.privacy {
    padding: 100px 0px;
    background-color: var(--white);
}
.privacy .privacy-group {
    margin-bottom: 60px;
    margin-top: -7px;
}
.privacy .privacy-group:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.privacy .privacy-group h4 {
    font-weight: 600;
    color: var(--black);
}
.privacy .privacy-group p {
    margin-top: 20px;
    font-size: 18px;
}

/* ==== 
 --------- (2.03) global styles end ---------
 ==== */
/* ==== 
 --------- (3.01) buttons styles start ---------
 ==== */
.btn--primary {
    padding: 13px 24px;
    background-color: var(--base-bg);
    color: var(--black);
    position: relative;
    font-weight: 700;
    z-index: 1;
    gap: 16px;
    overflow: hidden;
    letter-spacing: 0.8px;
}
.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);
}

.btn--secondary {
    overflow: hidden;
    color: var(--white);
    background-color: var(--quaternary-color);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
    text-align: center;
    padding: 18px 40px;
    border-radius: 5px;
    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;
}
.btn--secondary.btn--inverted {
    color: #37474f;
    border-color: #37474f;
}
.btn--secondary::before,
.btn--secondary::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: var(--base-bg);
    color: var(--base-color);
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    pointer-events: none;
}
.btn--secondary::before {
    top: 0;
    padding-top: 18px;
}
.btn--secondary::after {
    bottom: 0;
    line-height: 0;
}
.btn--secondary > span {
    display: inline-block;
    -webkit-transform: scale3d(0.2, 0.2, 1);
    transform: scale3d(0.2, 0.2, 1);
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.5s;
    transition: opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 0.5s, opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.5s;
    font-weight: 700;
    letter-spacing: 0.8px;
}
.btn--secondary:hover::before {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.btn--secondary:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.btn--secondary:hover > span {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.btn--tertiary {
    padding: 13px 24px;
    background-color: var(--base-bg);
    color: var(--black);
    position: relative;
    font-weight: 700;
    z-index: 1;
    gap: 16px;
    overflow: hidden;
    letter-spacing: 0.8px;
}
.btn--tertiary::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--tertiary:hover {
    color: var(--white);
}
.btn--tertiary:hover::after {
    width: 100%;
    inset-inline-start: 0%;
}

/* ==== 
 --------- (3.01) buttons styles end ---------
 ==== */
/* ==== 
 --------- (3.02) forms styles start ---------
 ==== */
.input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.input-group .input-single {
    width: 100%;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 9px 16px;
    background-color: var(--white);
    border: 1px solid #707070;
    color: var(--quaternary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--base-color);
}
.input-group input::-webkit-input-placeholder,
.input-group textarea::-webkit-input-placeholder {
    color: var(--quaternary-color);
}
.input-group input::-moz-placeholder,
.input-group textarea::-moz-placeholder {
    color: var(--quaternary-color);
}
.input-group input:-ms-input-placeholder,
.input-group textarea:-ms-input-placeholder {
    color: var(--quaternary-color);
}
.input-group input::-ms-input-placeholder,
.input-group textarea::-ms-input-placeholder {
    color: var(--quaternary-color);
}
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--quaternary-color);
}
.input-group textarea {
    min-height: 300px;
}

.contact__form .input-single,
.checkout__form .input-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 0px 16px;
    border-radius: 8px !important;
    border: 2px solid #7e7e7e;
    background: #046150;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 30px;
}
.contact__form .input-single:nth-last-of-type(1),
.checkout__form .input-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.contact__form .input-single input,
.contact__form .input-single textarea,
.contact__form .input-single .nice-select,
.checkout__form .input-single input,
.checkout__form .input-single textarea,
.checkout__form .input-single .nice-select {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: transparent;
    color: var(--white);
    border: 0px;
    padding: 20px 0px;
}
.contact__form .input-single input::-webkit-input-placeholder,
.contact__form .input-single textarea::-webkit-input-placeholder,
.contact__form .input-single .nice-select::-webkit-input-placeholder,
.checkout__form .input-single input::-webkit-input-placeholder,
.checkout__form .input-single textarea::-webkit-input-placeholder,
.checkout__form .input-single .nice-select::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::-moz-placeholder,
.contact__form .input-single textarea::-moz-placeholder,
.contact__form .input-single .nice-select::-moz-placeholder,
.checkout__form .input-single input::-moz-placeholder,
.checkout__form .input-single textarea::-moz-placeholder,
.checkout__form .input-single .nice-select::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input:-ms-input-placeholder,
.contact__form .input-single textarea:-ms-input-placeholder,
.contact__form .input-single .nice-select:-ms-input-placeholder,
.checkout__form .input-single input:-ms-input-placeholder,
.checkout__form .input-single textarea:-ms-input-placeholder,
.checkout__form .input-single .nice-select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::-ms-input-placeholder,
.contact__form .input-single textarea::-ms-input-placeholder,
.contact__form .input-single .nice-select::-ms-input-placeholder,
.checkout__form .input-single input::-ms-input-placeholder,
.checkout__form .input-single textarea::-ms-input-placeholder,
.checkout__form .input-single .nice-select::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single input::placeholder,
.contact__form .input-single textarea::placeholder,
.contact__form .input-single .nice-select::placeholder,
.checkout__form .input-single input::placeholder,
.checkout__form .input-single textarea::placeholder,
.checkout__form .input-single .nice-select::placeholder {
    color: rgba(255, 255, 255, 0.5647058824);
}
.contact__form .input-single i,
.checkout__form .input-single i {
    font-size: 18px;
    color: var(--base-color);
}
.contact__form .alter-input,
.checkout__form .alter-input {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contact__form .alter-input i,
.checkout__form .alter-input i {
    margin-top: 20px;
}
.contact__form .input-group,
.checkout__form .input-group {
    margin-bottom: 30px;
}
.contact__form .input-group .input-single,
.checkout__form .input-group .input-single {
    margin-bottom: 0px;
}
.contact__form .form-cta,
.checkout__form .form-cta {
    margin-top: 40px;
}
.contact__form .btn--primary,
.checkout__form .btn--primary {
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
    background-color: var(--black);
}
.contact__form .btn--primary::before,
.contact__form .btn--primary::after,
.checkout__form .btn--primary::before,
.checkout__form .btn--primary::after {
    border-radius: 0px;
}
.contact__form .btn--primary i,
.checkout__form .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;
}
.contact__form .btn--primary:hover,
.checkout__form .btn--primary:hover {
    color: var(--white);
}
.contact__form .btn--primary:hover i,
.checkout__form .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.contact__form .input-single {
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.checkout__form .input-group .input-single {
    width: 100%;
}
.checkout__form .input-single {
    padding: 0px 20px;
    background-color: #efefef;
    border: 0px solid transparent;
}
.checkout__form .input-single input,
.checkout__form .input-single textarea {
    color: var(--black);
}
.checkout__form .input-single input::-webkit-input-placeholder,
.checkout__form .input-single textarea::-webkit-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::-moz-placeholder,
.checkout__form .input-single textarea::-moz-placeholder {
    color: #667471;
}
.checkout__form .input-single input:-ms-input-placeholder,
.checkout__form .input-single textarea:-ms-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::-ms-input-placeholder,
.checkout__form .input-single textarea::-ms-input-placeholder {
    color: #667471;
}
.checkout__form .input-single input::placeholder,
.checkout__form .input-single textarea::placeholder {
    color: #667471;
}
.checkout__form .input-single i {
    color: #adadad;
}
.checkout__form .nice-select {
    z-index: 9;
}
.checkout__form .btn--primary {
    width: 100%;
    border-radius: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* ==== 
 --------- (3.02) forms styles end ---------
 ==== */
/* ==== 
 --------- (3.03) preloader styles start ---------
 ==== */
.preloader {
    background-color: var(--black);
    position: fixed;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.preloader i {
    width: 100px;
    min-width: 100px;
    height: 100px;
    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);
    font-size: 40px;
    color: var(--black);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation: flipY 3s linear infinite;
    animation: flipY 3s linear infinite;
}
.preloader p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    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 flipY {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes flipY {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@-webkit-keyframes moveBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes moveBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* ==== 
 --------- (3.03) preloader styles end ---------
 ==== */
/* ==== 
 --------- (3.05) custom cursor styles start ---------
 ==== */
.cursor-outer {
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--quaternary-color);
    background-color: var(--quaternary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.cursor-outer.cursor-hover {
    opacity: 0.14;
}
.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}
.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
}

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--quaternary-color);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
    color: var(--template-color);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}
.cursor-inner.cursor-big span {
    opacity: 1;
}
.cursor-inner.cursor-hover {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #686363;
    opacity: 0;
}

/* ==== 
 --------- (3.05) custom cursor styles end ---------
 ==== */
/* ==== 
 --------- (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: #acd5ce;
    -webkit-box-shadow: inset 0 0 0 8px #acd5ce;
    box-shadow: inset 0 0 0 8px #acd5ce;
    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: 99;
    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: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color: #076051;
    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: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color: #076051;
    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: #076051;
    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);
}

/* ==== 
 --------- (3.04) scroll porgress button styles end ---------
 ==== */
/* ==== 
 --------- (4.01) header styles start ---------
 ==== */
.topbar {
    background-color: #ececec;
    overflow-x: clip;
}
.topbar .container {
    max-width: 1564px;
}

.topbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    row-gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.topbar__list a {
    font-weight: 500;
    line-height: 20px;
}
.topbar__list a i {
    color: var(--hover-color);
    font-size: 22px;
}
.topbar__list a:hover {
    color: var(--hover-color);
}
.topbar__list li {
    line-height: 0px;
}
.topbar__list li:nth-of-type(1) a {
    font-size: 14px;
}

.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);
}
.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: 40px;
    padding-top: 10px;
}
.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: relative;
    z-index: 9;
}
.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: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header .navbar-logo img {
    max-width: 100%;
    height: 60px;
}
.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: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
}
.header .navbar__item a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 42px 15px;
    width: 100%;
    line-height: 1;
    color: #16171a;
}
.header .navbar__item a:hover {
    color: var(--hover-color);
}
.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 6 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: 20px 0px;
    border-radius: 5px;
    z-index: 9;
}
.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: 16px 32px;
    color: var(--black);
    position: relative;
    font-size: 15px;
    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(--hover-color);
}
.header .navbar__sub-menu a:hover {
    color: var(--hover-color);
    -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;
}
.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: 18px 40px;
    border-radius: 5px;
}
.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: 1564px;
}

.header-secondary .container {
    max-width: 1564px;
}
.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: -30px;
    margin-bottom: -30px;
}
.header-secondary .navbar__mobile-options .btn--secondary {
    padding: 38px 40px;
    border-radius: 0px;
    -webkit-margin-start: 20px;
    margin-inline-start: 20px;
}
.header-secondary .navbar__mobile-options .btn--secondary::before {
    padding-top: 38px;
}

.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));
}
@-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: -40px;
    inset-inline-end: 0px;
}
.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: 60px 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: 60px;
    -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 6 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 .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;
}

/* ==== 
 --------- (4.01) header styles end ---------
 ==== */
/* ==== 
 --------- (4.02) banner styles start ---------
 ==== */
.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.7;
    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 bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.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;
}
.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: 50%;
    -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;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.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;
}

@-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;
    }
}
.banner-three {
    background-color: #101a24;
    padding: 120px 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.banner-three .sub-title {
    margin-top: 0px;
    color: var(--base-bg);
    text-transform: capitalize;
}
.banner-three h1 {
    font-weight: 700;
    color: var(--white);
    margin: 16px 0px 24px;
    text-transform: capitalize;
}
.banner-three h1 span {
    color: var(--base-bg);
}
.banner-three p {
    color: var(--white);
    max-width: 560px;
}
.banner-three .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-three .btn--primary {
    border-radius: 5px;
    padding: 18px 40px;
    background-color: var(--quaternary-color);
    color: var(--white);
}
.banner-three .btn--primary::after {
    background-color: var(--base-bg);
}
.banner-three .btn--primary:hover {
    color: var(--black);
}
.banner-three .banner-three__thumb {
    min-width: 60vw;
}
.banner-three .banner-three__thumb-inner {
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.banner-three .banner-three__thumb-inner .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.banner-three .banner-three__thumb-inner .m-one img,
.banner-three .banner-three__thumb-inner .m-four img,
.banner-three .banner-three__thumb-inner .m-five img {
    border-radius: 90px;
}
.banner-three .banner-three__thumb-inner .m-three img,
.banner-three .banner-three__thumb-inner .m-two img {
    border-radius: 60px;
}
.banner-three .banner-three__content .sub-title,
.banner-three .banner-three__content h1,
.banner-three .banner-three__content p,
.banner-three .banner-three__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-three .swiper-slide-active .banner-three__content .sub-title {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.banner-three .swiper-slide-active .banner-three__content h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}
.banner-three .swiper-slide-active .banner-three__content p {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}
.banner-three .swiper-slide-active .banner-three__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-three .shape-lg {
    position: absolute;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-end: 20%;
}
.banner-three .shape-lg img {
    max-width: 30vw;
    min-width: 80px;
    -webkit-animation: pulseSm 4s infinite ease-in-out;
    animation: pulseSm 4s infinite ease-in-out;
}
.banner-three .sprade-shape {
    position: absolute;
    top: 25%;
    inset-inline-start: 10%;
    z-index: -1;
}
.banner-three .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-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;
}
.banner-three .parasuit img {
    max-width: 8vw;
    min-width: 40px;
}

@-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);
    }
}
.banner-four {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 90px;
    max-width: 1700px;
    margin-inline: auto;
}
.banner-four .banner-four__slider-single {
    padding-block: 120px 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.banner-four .banner-four-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.banner-four .banner-four-bg::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.banner-four .shape {
    position: absolute;
    bottom: 0px;
    inset-inline: 0px;
    width: 100%;
}
.banner-four .shape img {
    width: 100%;
}
.banner-four .slider-navigation {
    position: absolute;
    top: 50%;
    -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;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.banner-four .banner-bg {
    width: 100%;
    height: 100%;
}
.banner-four .banner-four__inner {
    position: relative;
    z-index: 3;
}
.banner-four .sub-title,
.banner-four h1,
.banner-four p {
    color: var(--white);
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-four p {
    max-width: 560px;
    margin-inline: auto;
}
.banner-four .banner__content-cta {
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-four .btn--primary {
    border-radius: 5px;
    padding: 18px 40px;
    background-color: var(--quaternary-color);
    color: var(--white);
}
.banner-four .btn--primary::after {
    background-color: var(--base-bg);
}
.banner-four .btn--primary:hover {
    color: var(--black);
}
.banner-four .swiper-slide-active .banner-four-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-four .swiper-slide-active .sub-title {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.banner-four .swiper-slide-active h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}
.banner-four .swiper-slide-active p {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}
.banner-four .swiper-slide-active .banner__content-cta {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.common-banner {
    padding-block: 100px 140px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.common-banner::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: -2;
    opacity: 0.7;
}
.common-banner h2 {
    color: var(--white);
    font-weight: 800;
    margin-top: -8px;
}
.common-banner .banner-bg {
    position: absolute;
    inset: 0px;
    z-index: -3;
    overflow: hidden;
}
.common-banner .banner-bg img {
    width: 100%;
    height: 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(--black);
}

@-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;
    }
}
/* ==== 
 --------- (4.02) banner styles end ---------
 ==== */
/* ==== 
 --------- (4.03) footer styles start ---------
 ==== */
.footer {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}
.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%
    );
    z-index: -2;
}
.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 24px;
    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;
}
.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;
}
.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;
}
.footer .footer__widget li {
    margin-bottom: 12px;
}
.footer .footer__widget li:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.footer .footer__widget li a {
    color: var(--white);
    font-weight: 500;
}
.footer .footer__widget li a:hover {
    color: var(--base-bg);
    -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 .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: 27px 0px;
    border-top-right-radius: 50px;
    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;
}
.footer-two .footer__bottom-left a {
    color: var(--base-color);
    font-weight: 700;
}
.footer-two .footer__bottom-left a:hover {
    color: #704444;
}
.footer-two .footer__bottom-left p {
    margin-top: 12px;
    color: var(--base-color);
}
.footer-two .footer__bottom-left p a {
    color: #704444;
}
.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(--black);
    color: var(--white);
}
.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;
    }
}
/* ==== 
 --------- (4.03) footer styles end ---------
 ==== */
/* ==== 
 --------- (5.01) partner section styles start ---------
 ==== */
.partner {
    padding: 80px 0px;
    background-color: #edeeef;
}
.partner .partner__slider-single {
    text-align: center;
}

.partner-alt {
    position: relative;
    top: -128px;
    margin-bottom: -128px;
    z-index: 2;
    background-color: transparent;
    padding: 0px;
}
.partner-alt .partner__inner {
    background-color: #edeeef;
    padding: 25px 20px;
    border-radius: 10px;
}

/* ==== 
 --------- (5.01) partner section styles end ---------
 ==== */
/* ==== 
 --------- (5.02) difference section styles start ---------
 ==== */
.difference {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.difference .difference__inner {
    position: relative;
}
.difference .difference__single {
    text-align: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 80px 0px;
}
.difference .difference__single:hover .difference__single-thumb {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.difference .difference__single-thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
    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);
    margin-inline: auto;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.difference .difference__single-thumb i {
    font-size: 50px;
    color: var(--white);
}
.difference .difference__single-content {
    margin-top: 34px;
}
.difference .difference__single-content h5 {
    font-weight: 800;
    color: var(--secondary-color);
}
.difference .difference__single-content h5:hover {
    color: var(--hover-color);
}
.difference .difference__single-content p {
    max-width: 260px;
    margin-inline: auto;
    font-weight: 500;
    margin-top: 20px;
}
.difference .difference__single-first .difference__single-thumb {
    background-color: #ffc107;
}
.difference .difference__single-second .difference__single-thumb {
    background-color: #122f2a !important;
}
.difference .difference__single-third .difference__single-thumb {
    background-color: #ff5528;
}
.difference .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.difference .shape-hand {
    position: absolute;
    inset-inline-start: 0px;
    inset-block-start: 0px;
    z-index: -1;
}
.difference .shape-hand img {
    max-width: 10vw;
    min-width: 30px;
    animation: moveUpDown 10s ease-in-out infinite alternate-reverse;
}

@-webkit-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;
    }
}

@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;
    }
}
.difference-two {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.difference-two .section__header {
    max-width: 500px;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
}
.difference-two .difference-two__thumb-wrapper {
    direction: rtl;
}
.difference-two .difference-two__thumb {
    text-align: end;
    position: relative;
    min-width: 60vw;
    direction: ltr;
}
.difference-two .difference-two__thumb .thumb-lg {
    display: inline-block;
    margin-bottom: 80px;
    -webkit-margin-end: 80px;
    margin-inline-end: 80px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.difference-two .difference-two__thumb .thumb-lg img {
    border-radius: 30px;
}
.difference-two .difference-two__thumb .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;
}
.difference-two .difference-two__thumb .thumb-sm {
    position: absolute;
    bottom: 0px;
    inset-inline-end: 0px;
    z-index: 2;
}
.difference-two .difference-two__thumb .thumb-sm img {
    border: 8px solid var(--white);
    border-radius: 40px;
    -webkit-box-shadow: var(--shadow-secondary);
    box-shadow: var(--shadow-secondary);
}
.difference-two .difference-two__thumb .grid-line {
    position: absolute;
    inset-inline-start: -35px;
    top: -40px;
    z-index: -1;
}
.difference-two .difference-two__thumb .grid-line img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
}
.difference-two .difference-two__content .sub-title {
    color: var(--quaternary-color);
}
.difference-two .difference-two__content h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin: 16px 0px 20px;
}
.difference-two .difference-two__content h2 span {
    color: var(--base-bg);
}
.difference-two .difference-two__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.difference-two .difference-two__inner-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.difference-two .difference-two__tab-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #dedede;
    position: relative;
    padding-bottom: 16px;
}
.difference-two .difference-two__tab-btns .difference-two__tab-btn {
    padding: 12px 30px;
    border-radius: 40px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 700;
    color: var(--secondary-color);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.difference-two .difference-two__tab-btns .difference-two__tab-btn:hover {
    background-color: var(--quaternary-color);
    color: var(--white);
}
.difference-two .difference-two__tab-btns .active {
    background-color: var(--quaternary-color);
    color: var(--white);
}
.difference-two .difference-two__tab-content {
    margin-top: 30px;
}
.difference-two .difference-two__tab-content li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #696969;
    margin-bottom: 6px;
}
.difference-two .difference-two__tab-content li:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.difference-two .difference-two__tab-content li i {
    color: var(--base-bg);
    font-size: 20px;
}
.difference-two .difference-two__progress {
    margin-top: 35px;
    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;
}
.difference-two .difference-progress-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.difference-two .difference-progress-single p {
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.4;
}
.difference-two .difference-progress-single p br {
    display: none;
}
.difference-two .difference-progress-single .progress-bar-single {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}
.difference-two .difference-progress-single .circular-progress {
    position: relative;
    width: 100%;
    height: 100%;
}
.difference-two .difference-progress-single .progress-circle {
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.difference-two .difference-progress-single .circle-bg,
.difference-two .difference-progress-single .circle-progress {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}
.difference-two .difference-progress-single .circle-bg {
    stroke: #e6e6e6;
}
.difference-two .difference-progress-single .circle-progress {
    stroke: var(--quaternary-color);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    -webkit-transition: stroke-dashoffset 0.3s;
    transition: stroke-dashoffset 0.3s;
}
.difference-two .difference-progress-single .percent-value {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}
.difference-two .difference-two__card {
    width: 100%;
    min-width: 200px;
    border-radius: 13px;
    border: 1px solid rgba(18, 47, 42, 0.1882352941);
    background: rgba(177, 179, 185, 0.062745098);
    padding: 0px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.difference-two .difference-two__card .card-group {
    padding: 24px 0px;
    text-align: center;
    display: block !important;
}
.difference-two .difference-two__card .card-group .thumb {
    display: block;
    margin-bottom: 20px;
}
.difference-two .difference-two__card .card-group .thumb i {
    font-size: 30px;
    color: var(--base-bg);
}
.difference-two .difference-two__card .card-group h6 {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}
.difference-two .difference-two__card .card-group p {
    font-size: 20px;
    font-family: var(--caveat);
    font-weight: 800;
    color: var(--base-bg);
}
.difference-two .difference-two__card hr {
    border: 0px solid transparent;
    height: 1px;
    background-color: rgba(18, 47, 42, 0.1882352941);
}
.difference-two .difference-two__card .card-group-alt .thumb i {
    color: var(--quaternary-color);
}
.difference-two .difference-two__card .card-group-alt p {
    color: var(--quaternary-color);
}
.difference-two .spade {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.difference-two .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 {
    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;
    min-width: 550px;
    direction: ltr;
}
.difference-three .difference-three__thumb-inner .thumb-lg {
    -webkit-margin-end: 100px;
    margin-inline-end: 100px;
    border-radius: 16px;
}
.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;
}

.about-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.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 {
    min-height: 600px;
}
.about-area .about__thumb-big .video-btn-wrapper {
    top: 40px;
    left: 40%;
    -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: 0px;
    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;
}

/* ==== 
 --------- (5.02) difference section styles end ---------
 ==== */
/* ==== 
 --------- (5.03) overview section styles start ---------
 ==== */
.overview {
    position: relative;
    top: -100px;
    z-index: 1;
    margin-bottom: -100px;
}
.overview .overview__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.overview .overview__single {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    background-color: var(--base-bg);
}
.overview h4 {
    margin-top: -8px;
    font-weight: 800;
    color: var(--black);
}
.overview .cause__progress {
    margin-block: 30px 25px;
}
.overview .progress-bar {
    overflow: visible;
}
.overview .progress-bar-percent {
    background-color: var(--black);
}
.overview .percent-value {
    position: absolute;
    bottom: 100%;
    inset-inline-end: 0px;
    color: var(--black);
    font-weight: 700;
}
.overview .overview__left {
    border-radius: 10px;
}
.overview .cause-progress__goal {
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.overview .cause-progress__goal span {
    font-weight: 600;
    color: var(--black);
}
.overview .cause-progress__goal h5 {
    font-weight: 800;
    color: var(--black);
}
.overview .overview__right {
    background-color: var(--quaternary-color);
    border-radius: 10px;
}
.overview .overview__right span {
    padding: 4px 24px;
    border: 1px solid var(--white);
    border-radius: 30px;
}
.overview .overview__right h4 {
    margin-block: 16px 12px;
    font-weight: 600;
}
.overview .overview__right span,
.overview .overview__right h4,
.overview .overview__right p {
    color: var(--white);
}

/* ==== 
 --------- (5.03) overview section styles end ---------
 ==== */
/* ==== 
 --------- (5.04) counter section styles start ---------
 ==== */
.counter {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.counter .counter__inner {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 60px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.counter .divider {
    border-right: 1px dashed var(--base-bg);
    display: none;
}
.counter .counter__single {
    text-align: center;
    width: 100%;
}
.counter .counter__single:hover .thumb {
    border-color: var(--base-bg);
    background-color: var(--base-bg);
}
.counter .counter__single:hover .thumb i {
    color: var(--black);
}
.counter .counter__single div {
    line-height: inherit !important;
}
.counter .counter__single h2 {
    color: var(--white);
    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-weight: 600;
}
.counter .counter__single h5 {
    font-weight: 500;
    color: var(--white);
    margin-bottom: -8px;
}
.counter .counter__single .prefix {
    margin-top: -10px;
    margin-left: 10px;
}
.counter .counter__single .thumb {
    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;
    border: 1px solid var(--white);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-inline: auto;
    margin-bottom: 30px;
}
.counter .counter__single .thumb i {
    font-size: 30px;
    color: var(--white);
    -webkit-transition: inherit;
    transition: inherit;
}
.counter .poor {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: -3;
}
.counter .poor::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--black);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.counter .poor .parallax-image-wrap,
.counter .poor .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}
.counter .poor .parallax-image {
    width: 100%;
    height: 100%;
}
.counter .shape-left {
    position: absolute;
    inset-inline-start: 0px;
    top: -50px;
    bottom: 0px;
    z-index: -2;
}
.counter .shape-left img {
    -webkit-animation: moveTopBottom 4s ease-in-out infinite;
    animation: moveTopBottom 4s ease-in-out infinite;
    max-width: 20vw;
    min-width: 50px;
}

.counte-area {
    padding-bottom: 100px;
    background-color: var(--base-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}
.counte-area div {
    line-height: unset;
}
.counte-area .thumb {
    margin-bottom: 20px;
    padding-top: 16px;
    padding-right: 16px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.counte-area .thumb::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 170, 170, 0)), to(#999));
    background: linear-gradient(rgba(170, 170, 170, 0) 0%, #999 100%);
    z-index: -1;
}
.counte-area .thumb i {
    font-size: 64px;
    color: var(--black);
}
.counte-area .counter__single {
    text-align: center;
}
.counte-area .counter__single h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
.counte-area .counter__single p {
    font-family: var(--montserrat);
    color: var(--white);
    margin-top: 12px;
    font-weight: 500;
}

.counter-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.counter-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 130px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #f6f6f6;
}
.counter-area div {
    line-height: 1;
}
.counter-area .counter__inner {
    background-color: var(--base-bg);
    padding: 60px;
    border-radius: 15px;
}
.counter-area .counter__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.counter-area .counter__single h3 {
    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: 8px;
    font-weight: 700;
    color: var(--black);
}
.counter-area .counter__single h3 .prefix {
    color: var(--black);
    line-height: 0px;
    margin-top: -8px;
}
.counter-area .counter__single p {
    color: var(--black);
}
.counter-area .counter__single-icon {
    width: 120px;
    min-width: 120px;
    height: 120px;
    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(--quaternary-color);
}
.counter-area .counter__single-icon__inner {
    width: 100px;
    min-width: 100px;
    height: 100px;
    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: 1px dashed var(--white);
}
.counter-area .counter__single-icon__inner i {
    font-size: 50px;
    color: var(--white);
}

.counter-area-alter::after {
    content: none;
}

/* ==== 
 --------- (5.04) counter section styles end ---------
 ==== */
/* ==== 
 --------- (5.05) help section styles start ---------
 ==== */
.help {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.help .help__thumb {
    direction: rtl;
}
.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 .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;
}
.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;
}
.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;
}
.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 ---------
 ==== */
/* ==== 
 --------- (5.06) cause slider section styles start ---------
 ==== */
.cause {
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cause .section__header {
    max-width: 100%;
}
.cause .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
}
.cause .cause__slider-wrapper {
    margin-top: 35px;
}
.cause .cause__slider-single {
    padding: 12px;
    background-color: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 15px;
}
.cause .cause__slider-single:hover .thumb img {
    -webkit-transform: scale(1.3) rotate(5deg);
    -ms-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
}
.cause .cause__slider-single:hover .thumb .tag a {
    background-color: var(--base-bg);
    color: var(--black);
}
.cause .thumb {
    position: relative;
    margin-bottom: 50px;
}
.cause .thumb a {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}
.cause .thumb a img {
    height: 200px;
    width: 100%;
    border-radius: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.cause .thumb .tag {
    position: absolute;
    bottom: 0px;
    inset-inline-end: 20px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}
.cause .thumb .tag a {
    padding: 8px 24px;
    background-color: var(--quaternary-color);
    border-radius: 5px;
    color: var(--white);
    position: relative;
}
.cause .thumb .tag a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.cause .content {
    padding-inline: 20px;
}
.cause .content h6 {
    margin-top: -8px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--secondary-color);
}
.cause .content h6:hover {
    color: var(--hover-color);
}
.cause .content p {
    font-size: 14px;
    line-height: 20px;
}
.cause .cause__slider-cta {
    padding: 20px;
    border-radius: 10px;
    background: rgba(157, 153, 139, 0.1);
    margin-top: 24px;
}
.cause .cause__slider-cta .cause-progress__intro p {
    font-size: 14px;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--secondary-color);
    font-weight: 600;
}
.cause .cause__slider-cta .cause-progress__goal {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cause .cause__slider-cta .cause-progress__goal p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}
.cause .cause__slider-cta .cause-progress__goal .goal {
    color: var(--hover-color);
    font-weight: 800;
}
.cause .cause-progress__bar {
    margin: 5px 0px 10px;
}
.cause .cause__cta {
    margin-top: 30px;
}
.cause .cause__cta .btn--primary {
    padding: 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 5px;
    background-color: var(--quaternary-color);
    color: var(--white);
}
.cause .cause__cta .btn--primary::after {
    background-color: var(--base-bg);
}
.cause .cause__cta .btn--primary:hover {
    color: var(--black);
}
.cause .pagination-one {
    margin-top: 40px;
}
.cause .swiper-slide-active .thumb img {
    -webkit-transform: scale(1.3) rotate(5deg);
    -ms-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
}
.cause .swiper-slide-active .thumb .tag a {
    background-color: var(--secondary-color);
    color: var(--white);
}
.cause .swiper-slide-active .cause__cta a {
    color: var(--white);
}
.cause .swiper-slide-active .cause__cta a::before,
.cause .swiper-slide-active .cause__cta a::after {
    width: 0% !important;
}
.cause .spade {
    position: absolute;
    top: 75%;
    inset-inline-start: 5%;
    z-index: -1;
}
.cause .spade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.cause-two {
    overflow: hidden;
    padding-top: 0px;
}
.cause-two .row > * {
    padding-left: 0px;
    padding-right: 0px;
}
.cause-two .cause-two__slider-single {
    position: relative;
    z-index: 5;
}
.cause-two .cause-two__slider-single img {
    width: 100%;
    height: 600px;
}
.cause-two .cause-two__slider-single .cause-thumb {
    position: relative;
}
.cause-two .cause-two__slider-single .cause-thumb a {
    width: 120px;
    min-width: 120px;
    height: 120px;
    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: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--quaternary-color);
    color: var(--white);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: 99 !important;
}
.cause-two .cause-two__slider-single .cause-thumb a i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 36px;
}
.cause-two .cause-two__slider-single .cause-thumb a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.cause-two .swiper-slide-active .cause-two__slider-single .cause-thumb a {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
    visibility: visible;
    opacity: 1;
}
.cause-two .cause-two__inner {
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 3;
}
.cause-two .cause-two__inner::before {
    content: "";
    position: absolute;
    width: 500vw;
    height: 500vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 80%;
    border-radius: 50%;
    background-color: var(--white);
    z-index: 3;
}
.cause-two .cause-two__inner::after {
    content: "";
    position: absolute;
    width: 500vw;
    height: 500vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 80%;
    border-radius: 50%;
    background-color: var(--white);
    z-index: 3;
}
.cause-two .cause-two__content-slider {
    position: relative;
    z-index: 9;
    top: -90px;
    margin-bottom: -90px;
    pointer-events: none !important;
}
.cause-two .cause-two__content-slider h4 {
    text-transform: capitalize;
}
.cause-two .cause-two__content-slider .swiper-slide {
    pointer-events: none !important;
}
.cause-two .cause-two__content-slider .swiper-slide-active .cause-content {
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
}
.cause-two .cause-content {
    text-align: center;
    max-width: 580px;
    margin-inline: auto;
    -webkit-transform: translateY(100%) !important;
    -ms-transform: translateY(100%) !important;
    transform: translateY(100%) !important;
    -webkit-transition: var(--transition) !important;
    transition: var(--transition) !important;
    -webkit-transition-delay: 0.3s !important;
    transition-delay: 0.3s !important;
}
.cause-two .cause-content h4 {
    font-weight: 800;
    color: var(--secondary-color);
}
.cause-two .slider-navigation {
    position: absolute;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    display: none;
    pointer-events: none;
}
.cause-two .slider-navigation button {
    pointer-events: all;
}

.cause-alt .cause-inner__wrapper {
    position: relative;
}
.cause-alt .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cause-alt .btn--primary {
    border-radius: 5px;
}
.cause-alt .cause__slider-single:hover .tag a {
    background-color: var(--base-bg) !important;
    color: var(--black) !important;
}
.cause-alt .swiper-slide-active .thumb img {
    -webkit-transform: scale(1.3) rotate(5deg);
    -ms-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
}
.cause-alt .swiper-slide-active .thumb .tag a {
    background-color: var(--base-bg);
    color: var(--black);
}
.cause-alt .swiper-slide-active .content h6 {
    color: var(--hover-color);
}
.cause-alt .swiper-slide-active .cause__cta a {
    color: var(--black);
}
.cause-alt .swiper-slide-active .cause__cta a::before,
.cause-alt .swiper-slide-active .cause__cta a::after {
    width: 100% !important;
    background-color: var(--base-bg);
}
.cause-alt .swiper-slide-active .cause__cta a i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.cause-three {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}
.cause-three::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 50%;
    background-color: #efefef;
    z-index: -1;
}

/* ==== 
 --------- (5.06) cause slider section styles end ---------
 ==== */
/* ==== 
 --------- (5.07) contact section styles start ---------
 ==== */
.contact-mc {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact-mc::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: #222222;
    opacity: 0.7;
    z-index: -1;
}
.contact-mc .section__header {
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
}
.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(--white);
}
.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-start: 0px;
    top: -50px;
    bottom: 0px;
    z-index: -2;
}
.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-map .map-inner iframe {
    max-height: 400px;
}

.contact {
    position: relative;
    z-index: 1;
}
.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: 30px 20px;
    border-radius: 10px;
    border: 1px solid #cdcbc4;
    background: #f6fdff;
    width: 100%;
    margin-bottom: 30px;
}
.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: capitalize;
    line-height: 22px;
}
.contact .topbar__item .topbar__item-single a:hover {
    color: var(--hover-color);
}
.contact .topbar__item .topbar__item-single i {
    color: var(--hover-color);
}

/* ==== 
 --------- (5.07) contact section styles end ---------
 ==== */
/* ==== 
 --------- (5.08) blog section styles start ---------
 ==== */
.blog {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.blog .blog__single {
    padding: 20px 20px 60px;
    background-color: var(--white);
    border-radius: 24px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.blog .blog__single:hover {
    background-color: var(--tertiary-color);
}
.blog .blog__single:hover .blog__single-thumb a img {
    -webkit-transform: scale(1.2) rotate(6deg);
    -ms-transform: scale(1.2) rotate(6deg);
    transform: scale(1.2) rotate(6deg);
}
.blog .blog__single:hover .blog__single-meta p {
    color: var(--white);
}
.blog .blog__single:hover .blog__single-content h5 {
    color: var(--white);
}
.blog .blog__single:hover .blog__single-cta a {
    color: var(--white);
}
.blog .blog__single:hover .blog__single-cta a::before {
    background-color: var(--white);
}
.blog .blog__single:hover .blog__single-cta a i {
    color: var(--base-bg);
}
.blog .blog__single:hover .spade-two {
    opacity: 1;
    visibility: visible;
}
.blog .blog__single .spade-two {
    position: absolute;
    bottom: 20px;
    inset-inline-end: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.blog .blog__single-thumb {
    position: relative;
    margin-bottom: 30px;
}
.blog .blog__single-thumb a {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}
.blog .blog__single-thumb a img {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog__single-thumb .tag {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
}
.blog .blog__single-thumb .tag a {
    padding: 8px 24px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    color: var(--white);
}
.blog .blog__single-thumb .tag a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.blog .blog__single-thumb .tag a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.blog .blog__single-meta {
    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;
    margin-bottom: 20px;
    padding: 0px 12px;
}
.blog .blog__single-meta p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog__single-meta p i {
    color: var(--base-bg);
}
.blog .blog__single-content {
    padding: 0px 12px;
}
.blog .blog__single-content h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: -8px;
}
.blog .blog__single-cta {
    margin-top: 32px;
    padding: 0px 12px;
    -webkit-padding-before: 24px;
    padding-block-start: 24px;
    border-top: 1px solid #ebebeb;
}
.blog .blog__single-cta a {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blog .blog__single-cta a i {
    color: var(--tertiary-color);
    font-size: 20px !important;
    margin-bottom: -2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog .blog-bg {
    position: absolute;
    top: 0px;
    inset-inline: 0px;
    z-index: -2;
    width: 100%;
    height: 60%;
    min-height: 400px;
}
.blog .blog-bg img {
    width: 100%;
    height: 100%;
}
.blog .spade {
    position: absolute;
    top: 25%;
    inset-inline-start: 10%;
    z-index: -1;
}
.blog .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.blog-two {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.blog-two .blog__single-thumb {
    margin-top: 30px;
    margin-bottom: 0px;
}
.blog-two .blog__single-cta {
    margin-top: 40px;
}
.blog-two .spade {
    top: 80%;
    inset-inline-start: 90%;
}

.blog-main .blog__single-thumb {
    position: relative;
    margin-bottom: 30px;
}
.blog-main .blog__single-thumb a {
    width: 100%;
    overflow: hidden;
}
.blog-main .blog__single-thumb a img {
    width: 100%;
    min-height: 280px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-main .blog__single-thumb .tag {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
}
.blog-main .blog__single-thumb .tag a {
    padding: 8px 24px;
    background-color: var(--secondary-color);
    color: var(--white);
}
.blog-main .blog__single-thumb .tag a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.blog-main .blog__single-thumb .tag a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.blog-main .blog__single-meta {
    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;
    margin-bottom: 20px;
}
.blog-main .blog__single-meta p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.blog-main .blog__single-meta p i {
    color: var(--base-bg);
}
.blog-main .blog__single-content h4 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
    margin-bottom: 8px;
}
.blog-main .blog__single-content h4:hover {
    color: var(--hover-color);
}
.blog-main .blog__single-cta {
    margin-top: 32px;
}
.blog-main .blog__single-cta a {
    font-weight: 800;
    color: var(--black);
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    gap: 12px;
}
.blog-main .blog__single-cta a:hover {
    color: var(--hover-color);
}
.blog-main .blog__single-cta a i {
    font-size: 16px;
    margin-bottom: 0px;
}
.blog-main .blockquote-wrapper {
    padding: 24px 24px;
    background-color: #ebebeb;
    border-left: 5px solid var(--quaternary-color);
}
.blog-main .blockquote-wrapper blockquote {
    font-weight: 600;
    font-style: italic;
    color: var(--black);
}
.blog-main .blockquote-wrapper p {
    margin-top: 12px !important;
    font-weight: 700;
    color: var(--quaternary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
}
.blog-main .blockquote-wrapper p .line {
    width: 26px;
    height: 1px;
    background-color: var(--quaternary-color);
}
.blog-main .details-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog-main .details-footer .details-tag {
    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;
}
.blog-main .details-footer .tag-header h6 {
    font-weight: 600;
    color: var(--black);
}
.blog-main .details-footer .tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.blog-main .details-footer .tag-wrapper a {
    font-size: 14px;
    color: #555555;
    border: 1px solid #707070;
    padding: 2px 14px;
}
.blog-main .details-footer .tag-wrapper a:hover {
    border-color: var(--base-bg);
    background-color: var(--base-bg);
    color: var(--black);
}
.blog-main .details-footer .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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;
    font-size: 14px;
    color: var(--black);
    background-color: #ebebeb;
}
.blog-main .details-footer .social a:hover {
    background-color: var(--base-bg);
}
.blog-main .cm-details-author {
    padding-block: 80px !important;
    text-align: center;
}
.blog-main .cm-details-author .author-thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
    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;
    margin-bottom: 30px;
}
.blog-main .cm-details-author .author-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.blog-main .cm-details-author h6 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
}
.blog-main .cm-details-author p {
    max-width: 300px;
    margin-inline: auto;
}
.blog-main .cm-details-author p:nth-last-of-type(1) {
    margin-top: 16px;
}
.blog-main .cm-details-author .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}
.blog-main .cm-details-author .social a {
    width: 48px;
    min-width: 48px;
    height: 48px;
    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;
    color: #7d7e80;
    border: 1px solid #7d7e80;
    font-size: 14px;
}
.blog-main .cm-details-author .social a:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: var(--base-bg);
}
.blog-main .cm-sidebar-widget {
    background-color: #ebebeb !important;
}
.blog-main .cm-sidebar-widget form {
    background-color: #ebebeb;
    border-color: #e9d1d1 !important;
}
.blog-main .cm-sidebar-widget form input {
    background-color: transparent;
}
.blog-main .cm-categories a {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px 20px;
    background-color: var(--white);
    border: 1px solid #e9d1d1;
    margin-bottom: 20px;
    color: var(--black);
}
.blog-main .cm-categories a:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.blog-main .cm-categories a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}

.blog-area {
    background-color: var(--white);
}
.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: 40px 30px;
    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 .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 .blog__single-content .time span {
    color: var(--black);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}
.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-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;
}
.blog-area .blog__single-cta {
    border-top: 1px solid #dedede;
    padding-top: 24px;
    margin-top: 27px;
    -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;
}

/* ==== 
 --------- (5.08) blog section styles start ---------
 ==== */
/* ==== 
 --------- (5.09) volunteer section styles start ---------
 ==== */
.volunteer .warning {
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #d8dde1;
    background: #fdf8ea;
    position: relative;
    margin: 30px 0px 40px;
}
.volunteer .warning p {
    line-height: 1.5;
}
.volunteer .warning strong {
    font-weight: 700;
    color: var(--secondary-color);
}
.volunteer .warning .line {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 50px;
    background-color: var(--secondary-color);
    display: none;
}
.volunteer .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);
}
.volunteer .section__header {
    max-width: 100%;
}
.volunteer .cause__progress {
    margin-bottom: 14px;
}
.volunteer .cause__progress:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.volunteer .cause__progress p {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.volunteer .progress-bar {
    overflow: visible;
}
.volunteer .progress-bar-percent {
    background-color: var(--quaternary-color);
}
.volunteer .percent-value {
    position: absolute;
    bottom: calc(100% + 4px);
    inset-inline-end: 0px;
    color: var(--black);
    font-weight: 700;
}
.volunteer .team-details__list {
    margin-top: 40px !important;
}
.volunteer .team-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;
}
.volunteer .team-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;
}
.volunteer .team-details__list ul li i {
    color: var(--quaternary-color);
}
.volunteer .team-details__list ul li i::before {
    font-weight: 700;
}
.volunteer .volunteer__form {
    padding: 60px 20px;
    border-radius: 17px;
    border: 1px solid rgba(0, 0, 0, 0.17);
}
.volunteer .volunteer__form h4 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
}
.volunteer .volunteer__form p {
    max-width: 400px;
    margin-top: 8px;
}
.volunteer .form-cta .btn--primary {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 5px;
}
.volunteer .form-cta .btn--primary::before,
.volunteer .form-cta .btn--primary::after {
    width: 52%;
    border-radius: 0px;
}
.volunteer .form-cta .btn--primary:hover::before,
.volunteer .form-cta .btn--primary:hover::after {
    width: 0%;
}

/* ==== 
 --------- (5.09) volunteer section styles end ---------
 ==== */
/* ==== 
 --------- (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 .community-bg::after {
    position: absolute;
    inset: 0px;
    content: "";
    background: linear-gradient(
        -104deg,
        rgba(12, 26, 23, 0) 1.9%,
        rgba(9, 31, 27, 0.08) 15.92%,
        rgba(9, 31, 27, 0.17) 24.99%,
        rgba(9, 31, 27, 0.37) 29.75%,
        rgba(9, 31, 27, 0.67) 56.36%,
        #091f1b 73.4%,
        #091f1b 95.2%,
        rgba(9, 31, 27, 0.91) 103.44%
    );
    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: 60px 20px;
    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/community/mask.png");
    mask-image: url("../images/community/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: left;
    object-position: left;
    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: 40%;
    inset-inline-start: 78%;
    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 ---------
 ==== */
/* ==== 
 --------- (5.11) award section styles start ---------
 ==== */
.award {
    position: relative;
    z-index: 1;
}
.award .award__single {
    position: relative;
    overflow: hidden;
}
.award .award__single:hover .content {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.award .award__single .thumb a {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.award .award__single .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    min-height: 300px;
    max-height: 300px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.award .award__single .content {
    padding: 40px 20px;
    border-radius: 11px;
    background: rgba(10, 32, 28, 0.51);
    -webkit-backdrop-filter: blur(10.5px);
    backdrop-filter: blur(10.5px);
    position: absolute;
    bottom: 30px;
    margin-inline: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 460px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -webkit-transform: translateY(150%);
    -ms-transform: translateY(150%);
    transform: translateY(150%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.award .award__single .content h5 {
    font-weight: 700;
    color: var(--white);
}
.award .award__single .content h5:hover {
    color: var(--base-bg);
}
.award .award__single .content p {
    color: var(--white);
    font-size: 14px;
}
.award .award__single .content .award__thumb a {
    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;
    background-color: var(--base-bg);
    color: var(--black);
}
.award .award__single .content .award__thumb a:hover {
    background-color: var(--white);
    color: var(--black);
}
.award .award__single .content .award__thumb a i {
    font-size: 20px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.award .spade {
    position: absolute;
    bottom: 5%;
    inset-inline-start: 20%;
    z-index: -1;
}
.award .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.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: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(--base-bg);
}
.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(#000));
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 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: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: 140px;
}

/* ==== 
 --------- (5.11) award section styles start ---------
 ==== */
/* ==== 
 --------- (5.12) donation section styles start ---------
 ==== */
.donation-future {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 100px;
}
.donation-future .donation-future__content {
    position: relative;
    z-index: 2;
}
.donation-future .sub-title {
    color: var(--base-color);
}
.donation-future h2 {
    color: var(--white);
}
.donation-future .video-btn-wrapper {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 40px;
}
.donation-future .video-btn-wrapper a {
    background-color: var(--quaternary-color);
    color: var(--white);
    width: 130px;
    min-width: 130px;
    height: 130px;
    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;
}
.donation-future .video-btn-wrapper a i {
    color: var(--white);
    font-size: 30px;
}
.donation-future .donation-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 70%;
    z-index: -3;
}
.donation-future .donation-bg .parallax-image-wrap,
.donation-future .donation-bg .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}
.donation-future .donation-bg .parallax-image {
    width: 100%;
    height: 100%;
    -o-object-position: top;
    object-position: top;
}
.donation-future .donation-bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    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%
    );
    z-index: -2;
}
.donation-future .donation-bg .shape {
    position: absolute;
    bottom: -40px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 1;
    height: 70px;
    -o-object-position: top;
    object-position: top;
}
.donation-future .donation-future__thumb {
    padding: 60px 20px;
    margin-bottom: 10px;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-size: 110% 110%;
    background-position: center center;
    border-radius: 11px;
    border: 14px solid #fff;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 2;
}
.donation-future .donation-future__thumb h4 {
    font-weight: 800;
    margin-top: -8px;
    color: var(--secondary-color);
}
.donation-future .donation-future__thumb .progress-bar-single {
    margin-top: 80px;
}
.donation-future .donation-future__thumb .progress-bar {
    height: 16px;
    overflow: visible;
    background-color: var(--white);
}
.donation-future .donation-future__thumb .percent-value {
    position: absolute;
    bottom: calc(100% + 20px);
    inset-inline-end: -10px;
    color: var(--quaternary-color);
    font-weight: 700;
}
.donation-future .donation-future__thumb .progress-bar-percent {
    background-color: var(--quaternary-color);
}
.donation-future .donation-future__thumb .progress-bar-percent::before {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-end: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    outline: 8px solid var(--quaternary-color);
    border-radius: 50%;
}
.donation-future .donation-future__thumb .cause-progress__goal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
}
.donation-future .donation-future__thumb .cause-progress__goal p {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}
.donation-future .donation-future__thumb hr {
    margin: 30px 0px 40px;
    border: 0px;
    width: 100%;
    height: 1px;
    background: #d9d9d9;
}
.donation-future .donation-future__thumb .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;
}
.donation-future .donation-future__thumb .donation-amount {
    padding: 16px 30px;
    border: 1px solid var(--white);
    background-color: var(--white);
    border-radius: 30px;
    font-size: 18px;
    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);
}
.donation-future .donation-future__thumb .donation-amount:hover {
    background-color: var(--quaternary-color);
    color: var(--white);
    border-color: var(--quaternary-color);
}
.donation-future .donation-future__thumb .active {
    background-color: var(--quaternary-color);
    color: var(--white);
    border-color: var(--quaternary-color);
}
.donation-future .donation-future__thumb .btn--primary {
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
}
.donation-future .donation-future__thumb .btn--primary::before,
.donation-future .donation-future__thumb .btn--primary::after {
    border-radius: 0px;
    background-color: var(--quaternary-color);
}
.donation-future .donation-future__thumb .btn--primary i {
    -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;
}
.donation-future .donation-future__thumb .btn--primary:hover {
    background-color: var(--base-color);
    color: var(--black);
}

.donate-inner {
    padding: 80px 20px 160px;
    margin-inline: 8px;
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
    top: -60px;
    margin-bottom: -60px;
    position: relative;
    z-index: 3;
}
.donate-inner .community-donation__inner h5 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
}
.donate-inner .community-donation {
    padding: 0px !important;
    border-radius: 0px !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.donate-inner .community-donation hr {
    height: 1px;
    width: 100%;
    background-color: #d9d9d9;
    margin: 80px 0px;
    border: 0px !important;
}
.donate-inner .community-donation .cta {
    margin-top: 40px !important;
}
.donate-inner .community-donation .form-cta .btn--primary {
    padding: 16px 20px !important;
}
.donate-inner .warning {
    margin: 20px 0px 0px !important;
}
.donate-inner .donation-form {
    margin-top: 50px !important;
}
.donate-inner .checkout__form {
    padding-bottom: 60px;
}
.donate-inner .radio-wrapper {
    padding: 0px !important;
    margin: 16px 0px 0px !important;
}

/* ==== 
 --------- (5.12) donation section styles end ---------
 ==== */
/* ==== 
 --------- (5.13) testimonial section styles start ---------
 ==== */
.testimonial {
    padding: 240px 0px 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial .testimonial__inner {
    position: relative;
}
.testimonial .testimonial__slider-single {
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 30px;
    -webkit-box-shadow: var(--shadow-secondary);
    box-shadow: var(--shadow-secondary);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid var(--white);
    position: relative;
    z-index: 1;
}
.testimonial .testimonial__slider {
    padding-block: 24px;
    margin-block: -24px;
}
.testimonial q {
    font-weight: 600;
}
.testimonial .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.testimonial .review i {
    font-size: 18px;
    color: var(--base-bg);
}
.testimonial .shape {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.testimonial .author-info {
    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;
    margin-top: 32px;
}
.testimonial .author-info .author-thumb {
    width: 54px;
    min-width: 54px;
    height: 54px;
    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;
}
.testimonial .author-info .author-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial .author-info h6 {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial .author-info p {
    font-size: 14px;
    line-height: 1;
}
.testimonial .quote {
    position: absolute;
    z-index: -1;
    top: 30px;
    inset-inline-end: 20px;
}
.testimonial .quote img {
    opacity: 0.05;
    max-width: 10vw;
    min-width: 20px;
}
.testimonial .swiper-slide-active .testimonial__slider-single {
    border-color: var(--base-bg);
}
.testimonial .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-two {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial-two::before {
    content: "";
    position: absolute;
    top: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    height: 100%;
    width: 20%;
    background-color: var(--base-bg);
    z-index: -1;
}
.testimonial-two .blog-bg {
    position: absolute;
    top: 0px;
    inset-inline: 0px;
    z-index: -2;
    width: 100%;
    height: 60%;
    min-height: 400px;
}
.testimonial-two .blog-bg img {
    width: 100%;
    height: 100%;
}
.testimonial-two .section__header {
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    max-width: 400px;
}
.testimonial-two .testimonial-two__inner {
    background-color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
.testimonial-two .testimonial-two__content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}
.testimonial-two .testimonial-two__content .quote {
    position: absolute;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-end: 5%;
}
.testimonial-two .testimonial-two__thumb {
    position: relative;
}
.testimonial-two .testimonial-two__thumb img {
    width: 100%;
    min-height: 500px;
}
.testimonial-two .testimonial-two__thumb .quote-thumb {
    width: 120px;
    min-width: 120px;
    height: 120px;
    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(--quaternary-color);
    position: absolute;
    top: 30px;
    inset-inline-start: 30px;
}
.testimonial-two .testimonial-two__thumb .quote-thumb i {
    font-size: 50px;
    color: var(--white);
}
.testimonial-two .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.testimonial-two .review i {
    font-size: 18px;
    color: var(--base-bg);
}
.testimonial-two .author-info {
    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;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-two .author-info .author-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    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;
}
.testimonial-two .author-info .author-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-two .author-info h5 {
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-two .author-info p {
    line-height: 1;
}
.testimonial-two .testimonial-two__single-content {
    margin-top: 35px;
}
.testimonial-two .testimonial-two__single-content h6 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: -8px;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    font-size: 18px;
}
.testimonial-two .testimonial-two__single-content .review {
    margin-top: 24px;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-two .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.testimonial-two .swiper-slide-active .author-info {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.testimonial-two .swiper-slide-active .testimonial-two__single-content h6 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}
.testimonial-two .swiper-slide-active .testimonial-two__single-content .review {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}
.testimonial-two .spade {
    position: absolute;
    bottom: 0%;
    inset-inline-start: 20%;
    z-index: -1;
}
.testimonial-two .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.testimonial-three {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial-three .testimonial-three__single {
    padding: 40px 20px 60px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.testimonial-three .testimonial-three__single::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-end: 0px;
    width: 66%;
    height: 8px;
    background-color: var(--quaternary-color);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 2% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 2% 100%);
}
.testimonial-three .thumb {
    min-width: 100%;
}
.testimonial-three .thumb img {
    width: 100%;
    min-height: 200px;
    max-height: 340px;
}
.testimonial-three .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.testimonial-three .review i {
    font-size: 18px;
    color: var(--base-bg);
}
.testimonial-three .author-info {
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-right: 30px;
}
.testimonial-three .author-info .quote i {
    font-size: 34px;
    color: var(--quaternary-color);
}
.testimonial-three .author-info h6 {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-three .author-info p {
    line-height: 1;
    color: var(--quaternary-color);
}
.testimonial-three p {
    color: #747474;
    font-weight: 600;
}
.testimonial-three .slider-navigation {
    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;
}
.testimonial-three .swiper {
    padding: 20px !important;
}
.testimonial-three .testimonial-three__inner {
    margin: -20px;
    overflow: hidden !important;
}
.testimonial-three .spade {
    position: absolute;
    bottom: -20%;
    left: 25%;
    z-index: -1;
}
.testimonial-three .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.testimonial-three .spade-green {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.testimonial-three .spade-green img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.testimonial-alter {
    padding: 100px 0px !important;
}

.testimonial-area {
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: #f6fdff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial-area .testimonial__inner {
    position: relative;
    z-index: 1;
}
.testimonial-area .testimonial__inner::before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 40vw;
    height: 100%;
    background-color: var(--base-bg);
    border-radius: 15px 180.5px 15px 15px;
    z-index: -1;
}
.testimonial-area .testimonial__inner-wrapper {
    padding: 80px 24px;
    border-radius: 15px;
    background: var(--white);
    -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
}
.testimonial-area .testimonial__slider-thumb {
    padding-right: 30px;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}
.testimonial-area .testimonial__slider-thumb::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 80%;
    height: 80%;
    border: 8px solid var(--primary-color);
    border-left: 0px;
    border-bottom: 0px;
    border-top-right-radius: 70px;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-area .testimonial__slider-thumb img {
    width: 100%;
    min-height: 240px;
    border-radius: 50px 50px 50px 5px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-area .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-area .review i {
    color: var(--base-bg);
    font-size: 20px;
}
.testimonial-area p {
    font-size: 18px;
    text-transform: none;
    margin: 25px 0px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-area .testimonial__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 100px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.testimonial-area .testimonial__cta .quote-icon {
    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;
    background-color: var(--primary-color);
}
.testimonial-area .testimonial__cta .quote-icon i {
    font-size: 24px;
    color: var(--white);
}
.testimonial-area .testimonial__cta span {
    font-size: 14px;
    color: var(--primary-color);
}
.testimonial-area .testimonial__cta h4 {
    font-weight: 600;
    color: var(--base-bg);
}
.testimonial-area .cloud {
    position: absolute;
    z-index: -1;
    left: 0px;
    right: 0px;
    bottom: -10px;
}
.testimonial-area .cloud img {
    width: 100%;
}
.testimonial-area .swiper-slide-active .testimonial__slider-thumb::before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.testimonial-area .swiper-slide-active .testimonial__slider-thumb img {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.testimonial-area .swiper-slide-active .review {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}
.testimonial-area .swiper-slide-active p {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}
.testimonial-area .swiper-slide-active .testimonial__cta {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}
.testimonial-area .slider-navigation {
    position: absolute;
    bottom: 80px;
    left: 24px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.testimonial-area-two {
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.testimonial-area-two .testimonial__intro-wrapper {
    margin-bottom: 60px;
}
.testimonial-area-two .section__header {
    max-width: 400px;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
}
.testimonial-area-two .section__header h2 {
    margin-bottom: 0px;
}
.testimonial-area-two div {
    line-height: 1;
}
.testimonial-area-two .testimonial__intro {
    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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.testimonial-area-two .about__content-review__counter h3 {
    color: var(--black);
    font-weight: 700;
}
.testimonial-area-two .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;
}
.testimonial-area-two .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;
}
.testimonial-area-two .join-users .single-user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-area-two .swiper-slide {
    border-radius: 15px 15px 100px 15px;
}
.testimonial-area-two .testimonial-two-slider {
    padding: 0px 20px;
    margin: -20px -20px;
}
.testimonial-area-two .testimonial-two__single {
    padding: 40px 24px;
    border-radius: 15px 15px 100px 15px;
    background: var(--white);
    -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 20px 0px;
}
.testimonial-area-two .testimonial-two__single .cloud {
    position: absolute;
    bottom: 0px;
    inset-inline-end: 20px;
    z-index: -1;
    opacity: 0.2;
    max-width: 120px;
}
.testimonial-area-two .testimonial-two__single:hover .testimonial-two__single-intro {
    background-color: var(--base-bg);
}
.testimonial-area-two .testimonial-two__single:hover .testimonial-two__single-intro h6 {
    color: var(--black);
}
.testimonial-area-two .testimonial-two__single:hover .testimonial-two__single-intro p {
    color: var(--black);
}
.testimonial-area-two .testimonial-two__single:hover .testimonial-two__single-intro i {
    color: var(--black);
}
.testimonial-area-two .testimonial-two__single-intro {
    border-radius: 50px 50px 50px 50px;
    background: #eef0f6;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 35px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-align: center;
}
.testimonial-area-two .testimonial-two__single-intro i {
    font-size: 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.testimonial-area-two .left-intro {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.testimonial-area-two .left-intro .thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
    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: 3px solid #a19d9d;
}
.testimonial-area-two .left-intro .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-area-two .left-intro h6,
.testimonial-area-two .left-intro p {
    font-weight: 700;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.testimonial-area-two .left-intro h6 {
    color: var(--base-bg);
}
.testimonial-area-two .left-intro p {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
    margin-top: -4px;
}
.testimonial-area-two .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    margin-top: 25px;
}
.testimonial-area-two .review i {
    font-size: 20px;
    color: var(--hover-color);
}
.testimonial-area-two .swiper-slide-active .testimonial-two__single .testimonial-two__single-intro {
    background-color: var(--base-bg);
}
.testimonial-area-two .swiper-slide-active .testimonial-two__single .testimonial-two__single-intro h6 {
    color: var(--black);
}
.testimonial-area-two .swiper-slide-active .testimonial-two__single .testimonial-two__single-intro p {
    color: var(--black);
}
.testimonial-area-two .swiper-slide-active .testimonial-two__single .testimonial-two__single-intro i {
    color: var(--black);
}
.testimonial-area-two .testimonial-two__wrapper {
    position: relative;
}
.testimonial-area-two .testimonial-two__wrapper .slider-navigation {
    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: 16px;
    margin-top: 40px;
}

.testimonial-area-three .testimonial__thumb {
    position: relative;
}
.testimonial-area-three .testimonial__thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: #000;
    opacity: 0.6;
    z-index: 1;
}
.testimonial-area-three .testimonial__thumb img {
    min-height: 400px;
    max-height: 800px;
    width: 100%;
}
.testimonial-area-three .testimonial__wrapper {
    background-color: #f5f5f5;
    padding: 80px 20px;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, auto;
    background-position: right bottom, top 60px right 40%;
    position: relative;
    top: -180px;
    margin-bottom: -180px;
    z-index: 2;
}
.testimonial-area-three .testimonial__wrapper .black-img {
    -webkit-filter: brightness(0) saturate(100%);
    filter: brightness(0) saturate(100%);
    position: absolute;
    top: 0px;
    right: 30%;
    top: 20%;
    opacity: 0.3;
}
.testimonial-area-three .section__header {
    margin: 0px;
}
.testimonial-area-three .section__header span {
    color: var(--quaternary-color) !important;
}
.testimonial-area-three .testimonial__single span,
.testimonial-area-three .testimonial__single h2 {
    color: var(--black);
}
.testimonial-area-three .testimonial__single .icon-thumb span {
    background-color: #b3a2a2;
}
.testimonial-area-three .content {
    margin-top: 40px;
}
.testimonial-area-three .content blockquote {
    font-size: 18px;
    color: var(--black);
}
.testimonial-area-three .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.testimonial-area-three .author p {
    color: var(--black);
}
.testimonial-area-three .author h5 {
    font-weight: 600;
    color: var(--black);
}
.testimonial-area-three .author-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
}
.testimonial-area-three .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.testimonial-area-three .review i {
    font-size: 16px;
    color: #000;
}
.testimonial-area-three .slider-navigation {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 12px;
}

/* ==== 
 --------- (5.13) testimonial section styles end ---------
 ==== */
/* ==== 
 --------- (5.14) faq section styles start ---------
 ==== */
.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: transparent;
    -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 6 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;
}

/* ==== 
 --------- (5.14) faq section styles start ---------
 ==== */
/* ==== 
 --------- (5.15) shop section styles start ---------
 ==== */
.shop .shop__content-intro {
    padding: 24px 20px;
    border: 1px solid #ececec;
    border-radius: 15px;
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}
.shop .shop__content-intro p strong {
    color: var(--quaternary-color);
}
.shop .shop-intro__right {
    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;
}
.shop .select {
    float: unset;
}
.shop .shop-right-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.shop .shop-right-single button {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.shop .shop__single .btn--primary {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
    -ms-transform: translateX(-50%) translateY(100%);
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    visibility: hidden;
    bottom: 16px;
    padding: 12px 50px;
    border-radius: 5px;
    color: var(--black);
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}
.shop .shop__single .btn--primary::before,
.shop .shop__single .btn--primary::after {
    background-color: var(--quaternary-color);
    border-radius: 0px;
}
.shop .shop__single .btn--primary:hover {
    background-color: var(--base-bg);
    color: var(--white);
}
.shop .shop__single:hover .shop__single-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.shop .shop__single:hover .shop-thumb {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.shop .shop__single:hover .btn--primary {
    -webkit-transform: translateX(-50%) translateY(0%);
    -ms-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
    visibility: visible;
}
.shop .shop__single-thumb {
    position: relative;
    padding: 40px 20px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ececec;
    border-radius: 15px;
}
.shop .shop__single-thumb img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
}
.shop .shop-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.shop .shop-thumb a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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: #ececec;
    border-radius: 5px;
    color: var(--black);
}
.shop .shop-thumb a:nth-last-of-type(1) i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.shop .shop-thumb a:hover {
    color: var(--black);
    background-color: var(--base-bg);
}
.shop .shop__single-content {
    text-align: center;
    margin-top: 20px;
}
.shop .shop__single-content .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shop .shop__single-content .review i {
    font-size: 18px;
    color: var(--base-bg);
}
.shop .shop__single-content p {
    color: var(--black);
}
.shop .shop__single-content a {
    font-weight: 700;
    color: var(--black);
    margin-block: 12px 4px;
}
.shop .shop__single-content a:hover {
    color: var(--quaternary-color);
}

.shop-sidebar-widget {
    padding: 40px 24px;
    background-color: var(--white);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
.shop-sidebar-widget:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.shop-sidebar-widget .intro {
    margin-bottom: 30px;
}
.shop-sidebar-widget .intro h5 {
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    -webkit-border-start: 2px solid var(--base-bg);
    border-inline-start: 2px solid var(--base-bg);
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
}
.shop-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;
}
.shop-sidebar-widget form input {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-block: 12px;
    color: var(--black);
}
.shop-sidebar-widget form button:hover {
    color: var(--base-bg);
}
.shop-sidebar-widget .sidebar-list li {
    margin-bottom: 8px;
}
.shop-sidebar-widget .sidebar-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.shop-sidebar-widget .sidebar-list a {
    color: var(--black);
}
.shop-sidebar-widget .sidebar-list a i {
    font-size: 14px;
}
.shop-sidebar-widget .sidebar-list a:hover {
    -webkit-padding-start: 12px;
    padding-inline-start: 12px;
    color: var(--quaternary-color);
}
.shop-sidebar-widget .filter-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.shop-sidebar-widget .filter-wrapper .range__slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background-color: #e3e5f1;
    border: 0px solid transparent;
    border-radius: 6px;
}
.shop-sidebar-widget .filter-wrapper .range__slider:focus {
    border: 0px solid transparent;
    -webkit-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    outline: none;
}
.shop-sidebar-widget .filter-wrapper .range__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
}
.shop-sidebar-widget .filter-wrapper .filter-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
.shop-sidebar-widget .filter-wrapper .filter-cta p {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 700;
    color: var(--black);
}
.shop-sidebar-widget .filter-wrapper .filter-cta .btn--primary {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    border-radius: 5px;
}
.shop-sidebar-widget .size-wrapper .radio-single {
    margin-bottom: 16px;
}
.shop-sidebar-widget .size-wrapper .radio-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.shop-sidebar-widget .size-wrapper .radio-single input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0px;
    display: none;
    cursor: pointer;
}
.shop-sidebar-widget .size-wrapper .radio-single label {
    position: relative;
    cursor: pointer;
    font-weight: 700;
    color: var(--black);
}
.shop-sidebar-widget .size-wrapper .radio-single label:before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid #c5bcbc;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    -webkit-margin-end: 12px;
    margin-inline-end: 12px;
    margin-top: -2px;
}
.shop-sidebar-widget .size-wrapper .radio-single input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    inset-inline-start: 9px;
    width: 6px;
    height: 10px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.shop-sidebar-widget .size-wrapper .radio-single input:checked + label::before {
    border-color: var(--base-bg);
    background-color: var(--base-bg);
}
.shop-sidebar-widget .review-wrapper label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}
.shop-sidebar-widget .review-wrapper label i {
    font-size: 14px;
}
.shop-sidebar-widget .review-wrapper label .checked {
    color: var(--base-bg);
}
.shop-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;
}
.shop-sidebar-widget .tag-wrapper a {
    padding: 8px 16px;
    border: 1px solid #eff2f6;
    border-radius: 30px;
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
}
.shop-sidebar-widget .tag-wrapper a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}

.product-details .product-details__slider-thumb {
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #ede6e6;
}
.product-details .product-details-slider-single {
    text-align: center;
}
.product-details .product-details-slider-single img {
    min-height: 280px;
}
.product-details .product-details-slider-gallery {
    margin-top: 40px;
}
.product-details .sm-gallery {
    padding: 12px 20px;
    border: 1px solid #ede6e6;
    border-radius: 15px;
    text-align: center;
}
.product-details .product-details__content .review-wrapper {
    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;
}
.product-details .product-details__content .review-wrapper span {
    background-color: #ff1b1b;
    border-radius: 5px;
    padding-inline: 8px;
    color: var(--white);
}
.product-details .product-details__content .review-wrapper .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.product-details .product-details__content .review-wrapper .review i {
    font-size: 18px;
    color: var(--base-bg);
}
.product-details .product-details__content .review-wrapper p {
    font-weight: 600;
    color: var(--black);
}
.product-details .product-details__content .product-meta {
    margin-top: 24px;
}
.product-details .product-details__content .product-meta h3 {
    font-weight: 700;
    color: var(--black);
}
.product-details .product-details__content .product-meta p {
    font-weight: 500;
    margin-top: 8px;
}
.product-details .product-details__content .product-price {
    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-block: 25px;
}
.product-details .product-details__content .product-price h4 {
    font-weight: 700;
    color: var(--black);
}
.product-details .product-details__content .product-price h6 {
    font-weight: 700;
    color: #ff1b1b;
}
.product-details .product-details__content .product-color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.product-details .product-details__content .product-color p {
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin: 0px;
}
.product-details .product-details__content .product-color .product-colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.product-details .product-details__content .product-color .product-colors span {
    width: 16px;
    min-width: 16px;
    height: 16px;
    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;
    line-height: 1;
    background-color: var(--quaternary-color);
    cursor: pointer;
}
.product-details .product-details__content .product-color .product-colors span:nth-of-type(2) {
    background-color: var(--tertiary-color);
}
.product-details .product-details__content .product-color .product-colors span:nth-of-type(3) {
    background-color: var(--base-bg);
}
.product-details .product-details__content .product-color .product-colors span:nth-of-type(4) {
    background-color: var(--black);
}
.product-details .product-details__content .product-color .product-colors span:nth-of-type(5) {
    background-color: var(--template-color);
}
.product-details .product-details__content .product-size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.product-details .product-details__content .product-size p {
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin: 0px;
}
.product-details .product-details__content .product-size .product-sizes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.product-details .product-details__content .product-size .product-sizes span {
    padding: 6px 12px;
    border: 1px solid #f2f2f2;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 12px;
    cursor: pointer;
}
.product-details .product-details__content .product-size .product-sizes span:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.product-details .product-details__content .product-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.product-details .product-details__content .product-quantity p {
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin: 0px;
}
.product-details .product-details__content .product-quantity .measure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 10px 16px;
    border: 1px solid #beb6b6;
    border-radius: 10px;
}
.product-details .product-details__content .product-quantity .measure button,
.product-details .product-details__content .product-quantity .measure .item-quantity {
    width: 30px;
    min-width: 30px;
    height: 30px;
    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;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
}
.product-details .product-details__content .product-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-block: 40px 16px;
}
.product-details .product-details__content .product-cta .btn--primary {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 24px;
    border-radius: 5px;
}
.product-details .product-details__content .product-cta .btn--primary::before,
.product-details .product-details__content .product-cta .btn--primary::after {
    border-radius: 0px;
}
.product-details .product-details__content .product-cta .btn--primary i {
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}
.product-details .product-details__content .product-cta .fav-btn {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    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;
    border-radius: 36px;
    background: var(--white);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
    font-size: 20px;
    color: var(--black);
}
.product-details .product-details__content .product-cta .fav-btn:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.product-details .product-details__content .productsku {
    margin-bottom: 20px;
}
.product-details .product-details__content .productsku p {
    text-transform: capitalize;
}
.product-details .product-details__content .productsku strong {
    font-weight: 700;
    color: var(--black);
}
.product-details .product-details__content .sku p {
    margin-bottom: 6px;
}
.product-details .product-details__content .sku p:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.product-details .product-details__content .sku strong {
    font-weight: 700;
    color: var(--black);
}

.product-tab {
    background: #f5f5f5;
}
.product-tab .product-tab__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-tab .product-tab__btns .product-tab__btn {
    padding: 12px 40px;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 30px;
    font-weight: 700;
    color: var(--black);
}
.product-tab .product-tab__btns .product-tab__btn:hover {
    background-color: var(--black);
    color: var(--white);
}
.product-tab .product-tab__btns .active {
    background-color: var(--black);
    color: var(--white);
}
.product-tab .product-tab__content {
    margin-top: 60px;
}
.product-tab .content h4 {
    font-weight: 700;
    color: var(--black);
    margin-block: -8px 8px;
}
.product-tab .content p {
    font-weight: 500;
}
.product-tab .content-list h5 {
    font-weight: 700;
    color: var(--black);
    margin-block: -8px 8px;
}
.product-tab .content-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
}
.product-tab .content-list ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.product-tab .content-list ul li i {
    color: var(--quaternary-color);
}

.cart-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cart-main .cart-table {
    overflow-y: auto;
}
.cart-main .cart-table table {
    min-width: 800px;
}
.cart-main .cart__inner {
    border: 1px solid #f2f2f2;
}
.cart-main .cart__inner table {
    width: 100%;
}
.cart-main .cart__inner tr {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
}
.cart-main .cart__inner tr th {
    width: 20%;
    padding: 24px;
    font-weight: 700;
}
.cart-main .cart__inner tr th:nth-of-type(1) {
    width: 40%;
}
.cart-main .cart__inner tr td {
    width: 20%;
    padding: 0px 24px;
}
.cart-main .cart__inner tr td:nth-of-type(1) {
    width: 40%;
}
.cart-main .cart__inner .price,
.cart-main .cart__inner .sub {
    font-weight: 700;
    color: var(--black);
}
.cart-main .cart__inner .cart-product-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0px;
}
.cart-main .cart__inner .cart-product-wrapper .thumb {
    width: 70px;
    min-width: 70px;
    position: relative;
}
.cart-main .cart__inner .cart-product-wrapper .thumb a {
    width: 100%;
}
.cart-main .cart__inner .cart-product-wrapper .thumb .delete-item {
    position: absolute;
    bottom: 80%;
    inset-inline-start: 80%;
    font-size: 20px;
    color: #fb2b39;
}
.cart-main .cart__inner .cart-product-wrapper p {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}
.cart-main .cart__inner .cart-product-wrapper p:hover {
    color: var(--quaternary-color);
}
.cart-main .cart__inner .measure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0px;
    margin-top: 10px;
}
.cart-main .cart__inner .measure button,
.cart-main .cart__inner .measure .item-quantity {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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;
    border: 1px solid #f2f2f2;
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
}
.cart-main .cart__inner .measure .item-quantity {
    background-color: #ededed;
    border: 0px;
}
.cart-main .cart-main__single {
    padding: 30px 20px;
    border: 1px solid #f2f2f2;
    margin-bottom: 40px;
}
.cart-main .cart-main__single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.cart-main .cart-main__single .intro {
    text-align: center;
    margin-bottom: 24px;
}
.cart-main .cart-main__single .intro h6 {
    font-weight: 700;
    color: var(--black);
}
.cart-main .cart-main__single .content-single {
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 14px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart-main .cart-main__single .content-single p {
    font-weight: 700;
    color: var(--black);
}
.cart-main .cart-main__single .content-single p:nth-last-of-type(1) {
    color: var(--template-color);
}
.cart-main .cart-main__single .content a {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 20px;
    font-weight: 700;
    color: var(--black);
    background-color: #f2f2f2;
    border-radius: 5px;
}
.cart-main .cart-main__single .content a:hover {
    background-color: var(--base-bg);
    color: var(--black);
}
.cart-main .cart-main__single .content .total {
    background-color: var(--base-bg);
    color: var(--black);
}
.cart-main .cart-main__single .content .total:hover {
    color: var(--black);
    background-color: var(--base-bg);
}
.cart-main .update-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    row-gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0px 24px 40px;
}
.cart-main .update-cart a {
    padding: 16px 24px;
    background-color: var(--white);
    border-radius: 43px;
    border: 1px solid #ededed;
    font-weight: 700;
}
.cart-main .update-cart a:hover {
    background-color: var(--base-bg);
    color: var(--black);
    border-color: var(--base-bg);
}
.cart-main .coupon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    row-gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 24px;
    border-top: 1px solid #f2f2f2;
    -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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cart-main .coupon-wrapper .right-c {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}
.cart-main .coupon-wrapper .right-c form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    row-gap: 20px;
    -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;
    width: 100%;
    border-radius: 5px;
}
.cart-main .coupon-wrapper .right-c form .input-single {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.cart-main .coupon-wrapper .right-c form input {
    padding: 16px 24px;
    border: 1px solid #f2f2f2;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.cart-main .coupon-wrapper .right-c form input:focus {
    border-color: var(--black);
}
.cart-main .coupon-wrapper .right-c form .btn--primary {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 20px 24px;
}
.cart-main .coupon-wrapper h6 {
    font-weight: 700;
    color: var(--black);
}

.checkout .intro {
    margin-bottom: 24px;
}
.checkout .intro h5 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
}
.checkout .content {
    padding: 60px 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
}
.checkout .content .form-cta .btn--primary {
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
    color: var(--white);
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.checkout .content .form-cta .btn--primary::before,
.checkout .content .form-cta .btn--primary::after {
    border-radius: 0px;
    background-color: var(--black);
    width: 55%;
}
.checkout .content .form-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;
}
.checkout .content .form-cta .btn--primary:hover {
    color: var(--white);
    background-color: var(--quaternary-color);
}
.checkout .content .form-cta .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.checkout .content .form-cta .btn--primary:hover::before,
.checkout .content .form-cta .btn--primary:hover::after {
    width: 0%;
}
.checkout .content-single {
    padding: 16px 24px;
    background-color: var(--white);
    border-radius: 8px;
    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: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.checkout .content-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.checkout .content-single p:nth-last-of-type(1) {
    font-weight: 700;
    color: var(--black);
}
.checkout .content-single-alt {
    padding: 0px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.checkout .content-single-alt input {
    -webkit-padding-start: 24px;
    padding-inline-start: 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}
.checkout .content-single-alt .btn--primary {
    padding: 19px 24px;
    border-radius: 0px 5px 5px 0px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}
.checkout .content-single-alt .btn--primary::before,
.checkout .content-single-alt .btn--primary::after {
    border-radius: 0px;
}
.checkout .total {
    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: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.checkout .total h6 {
    font-weight: 700;
    color: var(--black);
}
.checkout .radio-wrapper {
    padding: 30px 24px;
    background-color: var(--white);
    border-radius: 8px;
    margin-block: 20px 30px;
}
.checkout .radio-wrapper .radio-single {
    margin-bottom: 8px;
}
.checkout .radio-wrapper .radio-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.checkout .radio-wrapper .radio-single input {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
}
.checkout .radio-wrapper .radio-single label {
    position: relative;
    -webkit-padding-start: 12px;
    padding-inline-start: 12px;
    -webkit-margin-start: 14px;
    margin-inline-start: 14px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
}
.checkout .radio-wrapper .radio-single label::before {
    content: "";
    position: absolute;
    inset-inline-end: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #d8dde1;
    border-radius: 100%;
}
.checkout .radio-wrapper .radio-single label::after {
    content: "";
    position: absolute;
    inset-inline-end: calc(100% + 3px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #d8dde1;
    border-radius: 100%;
    top: 50%;
}
.checkout .radio-wrapper .radio-single input:checked + label::before {
    border-color: var(--quaternary-color);
}
.checkout .radio-wrapper .radio-single input:checked + label::after {
    background-color: var(--quaternary-color);
}

/* ==== 
 --------- (5.15) shop section styles end ---------
 ==== */
/* ==== 
 --------- (5.16) event section styles start ---------
 ==== */
.event {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.event .event__single-wrapper {
    margin-bottom: 30px;
}
.event .event__single-wrapper:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.event .event__single {
    position: relative;
    overflow: hidden;
}
.event .event__content {
    position: absolute;
    bottom: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    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;
    padding: 40px 20px;
}
.event .event__content::after {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0px 0px 5px 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 11, 27, 0)), to(rgba(8, 12, 38, 0.9)));
    background: linear-gradient(180deg, rgba(8, 11, 27, 0) 0%, rgba(8, 12, 38, 0.9) 100%);
}
.event .event__content span,
.event .event__content h4,
.event .event__content p {
    color: var(--white);
}
.event .event__content span {
    font-weight: 500;
}
.event .event__content h4 {
    font-weight: 700;
    margin: 12px 0px;
}
.event .event__content p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.event .event__content p i {
    font-size: 20px;
}
.event .event__single-thumb .parallax-image-inner,
.event .event__single-thumb .parallax-image-wrap {
    border-radius: 5px;
}
.event .event__single-thumb img {
    width: 100%;
    min-height: 380px;
    border-radius: 5px;
}
.event .event-single-alt .event__single-thumb img {
    min-height: 300px;
    max-height: 330px;
}
.event .spade {
    position: absolute;
    bottom: 30%;
    inset-inline-start: 18%;
    z-index: -1;
}
.event .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.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-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cm-details .cm-event .cm-event-single {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.cm-details .cm-event .cm-event-single:nth-of-type(2) a {
    background-color: #40aedf;
}
.cm-details .cm-event .cm-event-single:nth-of-type(3) a {
    background-color: #be1f31;
}
.cm-details .cm-event .cm-event-single:nth-of-type(4) a {
    background-color: #1881b8;
}
.cm-details .cm-event .cm-event-single:nth-of-type(5) a {
    background-color: #e85838;
}
.cm-details .cm-event a {
    width: 100%;
    background-color: #4c65a3;
    padding: 30px 20px;
    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;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cm-details .cm-event a img {
    position: absolute;
    z-index: -1;
    inset: 0px;
    width: 100%;
    height: 100%;
}
.cm-details .cm-map {
    height: 100%;
    min-height: 450px;
    position: relative;
    border-radius: 20px;
    pointer-events: none;
}
.cm-details .cm-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    border-radius: 20px;
}
.cm-details .blog-comment .comment-header h4 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
}
.cm-details .blog-comment .comment-single {
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.cm-details .blog-comment .comment-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.cm-details .blog-comment .comment-single .thumb {
    width: 120px;
    min-width: 120px;
    height: 120px;
    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;
    padding: 10px;
    border: 1px dashed var(--base-bg);
}
.cm-details .blog-comment .comment-single .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.cm-details .blog-comment .comment-single h5 {
    font-weight: 700;
    color: var(--black);
    margin-top: -8px;
    margin-bottom: 8px;
}
.cm-details .blog-comment .comment-single p {
    max-width: 540px;
}
.cm-details .blog-comment .comment-single .comment-single__meta {
    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;
    row-gap: 8px;
    margin-top: 15px;
}
.cm-details .blog-comment .comment-single .comment-single__meta p,
.cm-details .blog-comment .comment-single .comment-single__meta button {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.cm-details .blog-comment .comment-single .comment-single__meta button:hover {
    color: var(--hover-color);
}
.cm-details .blog-comment .comment-single .comment-single__meta .active {
    color: var(--hover-color);
}
.cm-details .blog-comment .comment-single .reply-comment {
    margin-top: 40px;
    display: none;
}
.cm-details .blog-comment .comment-single .reply-comment .input-group {
    margin-bottom: 0px !important;
    gap: 0px !important;
}
.cm-details .blog-comment .comment-single .reply-comment .input-single {
    width: 100%;
    margin-bottom: 20px;
}
.cm-details .blog-comment .comment-single .reply-comment .input-single textarea {
    background-color: transparent;
    border: 1px solid #ccc8c8;
    height: 120px;
    min-height: 120px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 10px;
    color: var(--black);
    width: 100%;
    padding: 9px 16px;
}
.cm-details .blog-comment .comment-single .reply-comment .btn--primary {
    width: auto;
    font-size: 16px !important;
    border-radius: 5px;
}
.cm-details .blog-comment .form-group {
    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;
}
.cm-details .blog-comment .form-group .input-icon {
    width: 100%;
}
.cm-details .blog-comment .input-icon {
    position: relative;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
}
.cm-details .blog-comment .input-icon input,
.cm-details .blog-comment .input-icon textarea {
    -webkit-padding-start: 24px !important;
    padding-inline-start: 24px !important;
    background-color: transparent;
    width: 100%;
    max-height: 160px;
}
.cm-details .blog-comment .input-icon i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-start: 16px;
}
.cm-details .blog-comment .input-icon-alt i {
    top: 25px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.cm-details .blog-comment .comment__form {
    padding: 60px 20px;
    background-color: #fff;
    margin-top: 80px;
    -webkit-filter: drop-shadow(0px 3px 13.5px rgba(66, 31, 210, 0.07));
    filter: drop-shadow(0px 3px 13.5px rgba(66, 31, 210, 0.07));
}
.cm-details .blog-comment .comment__form .comment-header {
    margin-bottom: 30px;
}
.cm-details .blog-comment .comment__form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.cm-details .blog-comment .comment__form .form-group .input-single {
    width: calc(50% - 12px);
    margin: 0px;
}
.cm-details .blog-comment .comment__form textarea:focus + .cmn-shape path {
    stroke-dasharray: 3000px;
    stroke-dashoffset: -3000px;
    -webkit-animation: animate-stroke-four 1.6s linear forwards;
    animation: animate-stroke-four 1.6s linear forwards;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
@-webkit-keyframes animate-stroke-four {
    0% {
        stroke-dasharray: 3000px;
        stroke-dashoffset: 3000px;
        stroke: var(--quaternary-color);
    }
    100% {
        stroke-dashoffset: 0;
        stroke: var(--quaternary-color);
    }
}
@keyframes animate-stroke-four {
    0% {
        stroke-dasharray: 3000px;
        stroke-dashoffset: 3000px;
        stroke: var(--quaternary-color);
    }
    100% {
        stroke-dashoffset: 0;
        stroke: var(--quaternary-color);
    }
}
.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: column;
    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;
}
.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;
}
.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);
}
.cm-details .cm-sidebar-overview {
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.cm-details .cm-sidebar-overview .parallax-image,
.cm-details .cm-sidebar-overview .parallax-image-wrap,
.cm-details .cm-sidebar-overview .parallax-image-inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
}
.cm-details .cm-sidebar-overview .cm-content {
    margin-block: 40px 60px;
}
.cm-details .cm-sidebar-overview .cm-content p {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
}
.cm-details .cm-sidebar-overview .cm-content h4 {
    font-weight: 700;
    color: var(--white);
}
.cm-details .cm-sidebar-overview .btn--primary {
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
}
.cm-details .cm-sidebar-overview .btn--primary::before,
.cm-details .cm-sidebar-overview .btn--primary::after {
    border-radius: 0px;
}
.cm-details .cm-sidebar-overview .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;
}
.cm-details .cm-sidebar-overview .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* ==== 
 --------- (5.16) event section styles end ---------
 ==== */
/* ==== 
 --------- (5.17) gallery slider section styles start ---------
 ==== */
.gallery__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    overflow: hidden;
    position: relative;
}

.gallery__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 16s linear infinite;
    animation: marquee 16s linear infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

.gallery__slider:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.gallery__single {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 76.9230769231%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.gallery__single::after {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgba(9, 31, 27, 0.5019607843);
    width: 100%;
    height: 0%;
    z-index: -1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.gallery__single:hover a {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.gallery__single:hover::after {
    height: 100%;
}
.gallery__single:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery__single img {
    width: 100%;
    min-height: 300px;
    z-index: -2;
    position: relative;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.gallery__single a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    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(--base-bg);
    color: var(--base-color);
    font-size: 24px;
}
.gallery__single a:hover {
    background-color: var(--white);
    color: var(--black);
}

@media (min-width: 768px) {
    .gallery__single {
        width: 33.3333333333%;
    }
}
@media (min-width: 992px) {
    .gallery__single {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .gallery__single {
        width: 20%;
    }
}
@media (min-width: 1600px) {
    .gallery__single {
        width: 16.6666666667%;
    }
}
@-webkit-keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@-webkit-keyframes marquee-rtl {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes marquee-rtl {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
/* ==== 
 --------- (5.17) gallery slider section styles end ---------
 ==== */
/* ==== 
 --------- (5.18) team section styles start ---------
 ==== */
.team {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.team .team__single {
    overflow: hidden;
}
.team .team__single:hover .team__single-thumb img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.team .team__single:hover .team__single-content {
    background-color: var(--base-bg);
}
.team .team__single:hover .team__single-content h6 {
    color: var(--black);
}
.team .team__single:hover .team__single-content p {
    color: var(--black);
}
.team .team__single:hover .team__single__thumb-social {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(-50%) translateX(0px);
    -ms-transform: translateY(-50%) translateX(0px);
    transform: translateY(-50%) translateX(0px);
}
.team .team__single-thumb {
    position: relative;
}
.team .team__single-thumb a {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
.team .team__single-thumb img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    min-height: 260px;
}
.team .team__single__thumb-social {
    position: absolute;
    inset-inline-end: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(100%);
    -ms-transform: translateY(-50%) translateX(100%);
    transform: translateY(-50%) translateX(100%);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team .team__single__thumb-social a {
    width: 45px;
    height: 45px;
    background-color: var(--quaternary-color);
    color: var(--white);
    border-radius: 0px;
    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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
}
.team .team__single__thumb-social a:hover {
    background-color: var(--base-bg);
    color: var(--base-bg);
}
.team .team__single-content {
    padding: 30px 30px 24px;
    background-color: #f1f0ee;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0px 0px 10px 10px;
    text-align: center;
}
.team .team__single-content h6 {
    margin-top: -8px;
    font-weight: 800;
    color: var(--secondary-color);
}
.team .team__single-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team .spade {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.team .spade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.team-three {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}
.team-three .team__single {
    padding: 12px;
    border-radius: 15px;
    border: 1px solid rgba(161, 159, 151, 0.22);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team-three .team__single:hover {
    border-color: var(--base-bg);
}
.team-three .team__single:hover .team__single-thumb::before {
    background-color: var(--base-bg);
}
.team-three .team__single-thumb {
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-margin-end: 74px;
    margin-inline-end: 74px;
}
.team-three .team__single-thumb a {
    width: 100%;
    text-align: start;
}
.team-three .team__single-thumb a img {
    height: 350px;
    max-height: 350px;
}
.team-three .team__single-thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--quaternary-color);
    -webkit-clip-path: polygon(20% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(20% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
    border-radius: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
}
.team-three .team__content-wrapper {
    padding: 30px 12px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team-three .team__single-content h5 {
    margin-top: -4px;
    font-weight: 800;
    color: var(--secondary-color);
}
.team-three .team__single-content h5:hover {
    color: var(--quaternary-color);
}
.team-three .team__single-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--quaternary-color);
}
.team-three .team__single-content__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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(--black);
    z-index: 3;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team-three .team__single-content__icon i {
    font-size: 16px;
    -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;
}
.team-three .team__single__thumb-social {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-end: 24px;
    z-index: 3;
}
.team-three .team__single__thumb-social ul {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.team-three .team__single__thumb-social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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;
    color: var(--quaternary-color);
    border: 1px solid rgba(62, 81, 77, 0.12);
    font-size: 16px;
}
.team-three .team__single__thumb-social a:hover {
    background-color: var(--quaternary-color);
    color: var(--white) !important;
}
.team-three .spade {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.team-three .spade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.team-area {
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom -100px;
}
.team-area .team__single {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.team-area .team__single:hover .thumb-wrapper .social {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.team-area .team__single:hover .thumb::before {
    background-color: var(--quaternary-color);
}
.team-area .team__single:hover .thumb circle {
    stroke: var(--base-bg);
}
.team-area .team__single:hover .content h4 {
    color: var(--hover-color);
}
.team-area .thumb-wrapper {
    position: relative;
}
.team-area .thumb-wrapper .social {
    position: absolute;
    inset: 0px;
    z-index: 2;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.team-area .thumb-wrapper .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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(--quaternary-color);
    color: var(--white);
    font-size: 16px;
    position: absolute;
}
.team-area .thumb-wrapper .social a:hover {
    background-color: var(--black);
    color: var(--base-bg);
}
.team-area .thumb-wrapper .social a:nth-of-type(1) {
    bottom: 35px;
    left: 70px;
}
.team-area .thumb-wrapper .social a:nth-of-type(2) {
    bottom: 20px;
    left: 140px;
}
.team-area .thumb-wrapper .social a:nth-of-type(3) {
    bottom: 50px;
    left: 210px;
}
.team-area .thumb-wrapper .social a:nth-of-type(4) {
    bottom: 120px;
    left: 242px;
}
.team-area .thumb {
    position: relative;
    width: 300px;
    height: 300px;
    padding: 31px;
}
.team-area .thumb::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: #d5d5d5;
    border-radius: 50%;
    -webkit-transform: translate(25%, 25%);
    -ms-transform: translate(25%, 25%);
    transform: translate(25%, 25%);
}
.team-area .thumb img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border-top-left-radius: 0px;
    position: relative;
    z-index: 2;
}
.team-area .thumb svg {
    position: absolute;
    inset: 0px;
    width: 300px;
    height: 300px;
    -webkit-transform: rotate(-80deg);
    -ms-transform: rotate(-80deg);
    transform: rotate(-80deg);
}
.team-area .thumb circle {
    fill: none;
    stroke-width: 20px;
    stroke: #d5d5d5;
    stroke-dasharray: 580;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team-area .content {
    padding-top: 24px;
    padding-left: 40px;
    padding-right: 40px;
}
.team-area .content span {
    font-weight: 700;
    color: var(--quaternary-color);
}
.team-area .content h4 {
    color: var(--black);
    font-weight: 600;
    margin: 8px 0px;
}
.team-area .content h4:hover {
    color: var(--hover-color);
}
.team-area .content p a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #777777;
}
.team-area .content p a i {
    font-size: 20px;
}
.team-area .content p a:hover {
    color: var(--hover-color);
}
.team-area .slider-navigation {
    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: 16px;
    margin-top: 40px;
}

.team-area-two {
    background-color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.team-area-two .thumb-wrapper {
    position: relative;
    overflow: hidden;
}
.team-area-two .thumb-wrapper .arr {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--quaternary-color);
    font-size: 20px;
    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: 3;
}
.team-area-two .thumb-wrapper .arr span {
    line-height: 0px;
}
.team-area-two .thumb-wrapper .arr span::before {
    font-weight: 700;
}
.team-area-two .thumb-wrapper .social {
    position: absolute;
    inset-inline-end: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(200%);
    -ms-transform: translateY(-50%) translateX(200%);
    transform: translateY(-50%) translateX(200%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team-area-two .thumb-wrapper .social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    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(--black);
    font-size: 14px;
}
.team-area-two .thumb a {
    width: 100%;
}
.team-area-two .thumb img {
    min-height: 260px;
    width: 100%;
}
.team-area-two .content {
    padding-top: 24px;
}
.team-area-two .content span {
    font-weight: 700;
    color: var(--hover-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.team-area-two .content h5 {
    color: var(--black);
    font-weight: 700;
    margin: 8px 0px;
}
.team-area-two .content h5:hover {
    color: var(--hover-color);
}
.team-area-two .content p a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #777777;
}
.team-area-two .content p a i {
    font-size: 16px;
    color: var(--hover-color);
}
.team-area-two .content p a:hover {
    color: var(--hover-color);
}
.team-area-two .team__single:hover .content h5 {
    color: var(--hover-color);
}
.team-area-two .team__single:hover .social {
    -webkit-transform: translateY(-50%) translateX(0%);
    -ms-transform: translateY(-50%) translateX(0%);
    transform: translateY(-50%) translateX(0%);
}
.team-area-two .spade {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.team-area-two .spade img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.team-details .team-details__thumb {
    border-radius: 24px;
    position: relative;
}
.team-details .team-details__thumb img {
    width: 100%;
    min-height: 300px;
    border-radius: 24px;
}
.team-details .team-details__meta {
    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: 24px;
    row-gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #edefef;
    margin-bottom: 30px;
}
.team-details .team-details__meta h4 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
}
.team-details .team-details__meta .designation {
    font-weight: 500;
    font-size: 18px;
    color: #747474;
    margin-top: 4px;
}
.team-details .social {
    gap: 12px;
}
.team-details .social a {
    width: 48px;
    min-width: 48px;
    height: 48px;
    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: 1px solid #cbcbcb;
    color: var(--quaternary-color);
}
.team-details .social a:hover {
    background-color: var(--quaternary-color);
    color: var(--white);
}
.team-details .my-word {
    margin-top: 40px;
    margin-bottom: 24px;
}
.team-details .my-word h5 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
}
.team-details .cause__progress {
    margin-bottom: 14px;
}
.team-details .cause__progress:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.team-details .cause__progress p {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.team-details .progress-bar {
    overflow: visible;
}
.team-details .progress-bar-percent {
    background-color: var(--quaternary-color);
}
.team-details .percent-value {
    position: absolute;
    bottom: calc(100% + 4px);
    inset-inline-end: 0px;
    color: var(--black);
    font-weight: 700;
}
.team-details .team-details__list {
    margin-top: 40px !important;
}
.team-details .team-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;
}
.team-details .team-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;
}
.team-details .team-details__list ul li i {
    color: var(--quaternary-color);
}
.team-details .team-details__list ul li i::before {
    font-weight: 700;
}
.team-details .btn--primary {
    padding: 22px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
}
.team-details .btn--primary::before,
.team-details .btn--primary::after {
    border-radius: 0px;
}
.team-details .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;
}
.team-details .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.team-details .about-me {
    margin-top: 20px;
}
.team-details .about-me h4 {
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
    margin-bottom: 18px;
}
.team-details .about-me p {
    color: #747474;
    font-size: 18px;
}

/* ==== 
 --------- (5.18) team section styles end ---------
 ==== */
/* ==== 
 --------- (5.19) authentication section styles start ---------
 ==== */
.authentication {
    background-color: var(--white);
}
.authentication .authentication__inner {
    margin-top: -8px;
}
.authentication .input-single {
    width: 100%;
    margin-bottom: 24px;
}
.authentication .input-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}
.authentication .input-single label {
    display: block;
    color: var(--template-color);
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}
.authentication .input-single a {
    display: block;
    text-align: end;
    margin-top: 12px;
    font-size: 16px;
    color: var(--template-color);
    font-weight: 600;
    direction: ltr;
}
.authentication .input-single a:hover {
    color: var(--black);
}
.authentication .input-single input {
    border-radius: 0px;
    border: 1px solid #e7e7e7;
    background: var(--white);
    padding: 16px 16px;
    width: 100%;
    color: var(--template-color);
}
.authentication .input-single input:focus {
    border-color: var(--black);
}
.authentication .input-single input::-webkit-input-placeholder {
    color: #a3a3a3;
}
.authentication .input-single input::-moz-placeholder {
    color: #a3a3a3;
}
.authentication .input-single input:-ms-input-placeholder {
    color: #a3a3a3;
}
.authentication .input-single input::-ms-input-placeholder {
    color: #a3a3a3;
}
.authentication .input-single input::placeholder {
    color: #a3a3a3;
}
.authentication .btn--secondary {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px;
}
.authentication .section__content-cta {
    margin-top: 40px;
}
.authentication .divider {
    margin: 30px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    background-color: transparent;
}
.authentication .divider p {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--template-color);
    font-weight: 600;
}
.authentication .divider span {
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #e9d7d7;
}
.authentication .auth-footer {
    margin-top: 16px;
    direction: ltr !important;
}
.authentication .auth-footer p {
    color: var(--template-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.authentication .auth-footer p a {
    color: var(--template-color);
    font-weight: 700;
}
.authentication .auth-footer p a:hover {
    color: var(--black);
}
.authentication .auth-cta {
    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;
    direction: ltr !important;
}
.authentication .auth-cta button {
    width: 60px;
    height: 44px;
    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;
    background-color: var(--black);
    border-radius: 5px;
}

/* ==== 
 --------- (5.19) authentication section styles end ---------
 ==== */
/* ==== 
 --------- (5.20) coming soon section styles start ---------
 ==== */
.soon {
    padding: 100px 0px;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: var(--black);
}
.soon .content {
    text-align: center;
}
.soon .content h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center !important;
}
.soon .content p {
    color: #e7e0e0;
    font-weight: 500;
    font-size: 18px;
}
.soon .content p:nth-last-of-type(1) {
    margin-top: 4px;
}
.soon .form-group {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
}
.soon .form-group input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 17px 24px;
    background-color: #ffffff;
    color: #000000;
}
.soon .form-group button {
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 0px;
}

.soon__inner {
    position: relative;
    z-index: 2;
}

.soon__logo {
    text-align: center;
}
.soon__logo img {
    width: 100%;
    max-width: 230px;
}

.time-counter {
    position: relative;
}

.time-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.counter-column {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    width: 180px;
    height: 180px;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 7;
    border-radius: 20px;
    margin: 0 15px 20px;
    background-color: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.count {
    position: relative;
    display: block;
    font-size: 72px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.soon-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.soon-bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.soon-bg img {
    width: 100%;
    height: 100%;
}
.soon-bg .parallax-image-wrap,
.soon-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
}

.countdown-wrapper {
    height: 500px;
    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-block: 60px;
}

.clock {
    position: relative;
    width: 500px;
    height: 500px;
    background-color: rgba(10, 10, 10, 0.3764705882);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
.clock::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), rgba(25, 25, 25, 0.1) 75%);
    pointer-events: none;
    z-index: -1;
}

.hand {
    position: absolute;
    background-color: #fff;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    border-radius: 99px;
}

.hour-hand {
    width: 15px;
    height: 175px;
    top: 75px;
    background-color: #bdbaba;
}

.minute-hand {
    width: 12px;
    height: 175px;
    top: 75px;
    background-color: #5a5a5a;
}

.second-hand {
    position: absolute;
    width: 6px;
    height: 200px;
    top: 50px;
    background-color: #9d9a95;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}
.second-hand::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 50px;
    top: 187px;
    background-color: #9d9a95;
    border-radius: 99px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.center-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.center-dot-orange {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hour-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hour-marker {
    position: absolute;
    color: #fff;
    -webkit-transform: rotate(0deg) translateY(-216.25px);
    -ms-transform: rotate(0deg) translateY(-216.25px);
    transform: rotate(0deg) translateY(-216.25px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.hour-marker span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgb(143, 137, 137);
}

.minute-marker {
    position: absolute;
    width: 2px;
    height: 11.25px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: rotate(0deg) translateY(-216.25px);
    -ms-transform: rotate(0deg) translateY(-216.25px);
    transform: rotate(0deg) translateY(-216.25px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    display: none;
}

@media only screen and (max-width: 991.98px) {
    .soon {
        padding: 100px 0px;
    }
    .soon .counter-column {
        width: calc(50% - 30px);
    }
    .soon .logo img {
        max-width: 180px;
    }
}
@media only screen and (max-width: 499.98px) {
    .soon .time-countdown {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        inset: unset;
    }
    .soon .counter-column {
        width: 180px;
        height: 180px;
    }
    .soon .countdown-wrapper {
        height: auto;
    }
    .soon .countdown-wrapper .clock {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .soon .form-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .soon .form-group button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}
.rtl .soon {
    direction: ltr;
}

/* ==== 
 --------- (5.20) coming soon section styles end ---------
 ==== */
/* ==== 
 --------- (5.21) error section styles start ---------
 ==== */
.error {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.error .thumb {
    margin-bottom: 40px;
}
.error .thumb img {
    max-width: 500px;
    width: 100%;
}
.error h3 {
    font-weight: 900;
    color: var(--black);
    text-align: center !important;
}
.error p {
    font-weight: 500;
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
    max-width: 600px;
    margin-inline: auto;
}
.error .btn--primary {
    padding: 18px 40px;
    border-radius: 5px;
    font-weight: 700;
    gap: 8px;
}
.error .btn--primary::before,
.error .btn--primary::after {
    border-radius: 0px;
}
.error .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;
}
.error .btn--primary:hover i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.error .spade {
    position: absolute;
    bottom: -5%;
    inset-inline-start: 10%;
    z-index: -1;
}
.error .spade img {
    max-width: 20vw;
    min-width: 60px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}
.error .spade-green {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}
.error .spade-green img {
    max-width: 5vw;
    min-width: 30px;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.error__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

@media only screen and (max-width: 767.98px) {
    .error p {
        max-width: 380px;
        font-size: 16px;
    }
}
.rtl .error {
    direction: ltr;
}

.dark-body .error {
    background: radial-gradient(#224646, #182828) repeat;
}
.dark-body .error p {
    color: var(--white);
}

/* ==== 
 --------- (5.21) error section styles end ---------
 ==== */


.contact-mc{
    background: url(../../img/bg.jpg) center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px 0px 2000px 3000px #0000006b;
    background-attachment: fixed;
    padding: 50px 0px;
}


.enquiry-btn {
  position: fixed;
  top: 40%;
  right: 0;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  border-radius: 8px 8px 8px 8px;
  z-index: 9999;
}

.enquiry-form {
  position: fixed;
  top: 20%;
  right: -320px; /* completely hidden */
  width: 300px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-radius: 8px 0 0 8px;
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 10000;
}

.enquiry-form.active {
  right: 0; /* fully visible when active */
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.form-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
}

.form-group {
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}





/* ---------- Gallery Tabs ---------- */
.section__header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.nav-tabs {
  border-bottom: none;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  border: none;
  background: #f5f5f5;
  margin: 0 5px;
  padding: 10px 25px;
  border-radius: 30px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background: #eee;
  color: #111;
}

.nav-tabs .nav-link.active {
  background: #ff5722;   /* active tab color */
  color: #fff;
}

/* ---------- Gallery Images ---------- */
.tab-content img {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tab-content img:hover {
  transform: scale(1.05);
}

/* ---------- Grid for "All" Tab ---------- */
#all .row {
  margin-top: 20px;
}

#all .col-md-4 {
  padding: 10px;
}



/* Make gallery images equal and fully cover the box */
.tab-content img {
    width: 500px;         /* full width of column */
    height: 200px;       /* fixed height for all images */
    object-fit: cover;   /* crop to cover container without distortion */
    display: block;
    border-radius: 8px;  /* optional rounded corners */
    cursor: pointer;
    transition: transform 0.3s;
    margin: 10px 10px;
}

.tab-content img:hover {
    transform: scale(1.05); /* slight zoom on hover */
}
