/*
@File: Carea. Template Styles

This files table contents are outlined below

*********************************************
*********************************************

** - Default CSS
** - Section Title CSS
** - Go Top Button CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Responsive Navbar Area CSS
** - Popup Search CSS
** - Hero Area CSS
** - About Us Area CSS
** - Testimonials Area CSS
** - Choose Us Area CSS
** - Fun Fact Area CSS
** - Blog Area CSS
** - Footer Area CSS
** - Page Banner Area CSS
** - About Us Page
** - Testimonials Page
** - Faq Page
** - Blog Details Page
** - Contact Us Page
** - Products Page
** - Product Details Page
** - Cart Page
** - Checkout Page
** - Login Page
** - Terms & Condition Page
** - 404 Error Page CSS
** - Service Pagination CSS
** - Go Top Button CSS
** - keyframes CSS
*/

/*
Google Fonts
==========================================================================*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --headingFontFamily: "Playfair Display", serif;
    --bodyFontFamily: "Noto Sans", sans-serif;
    --dark: #000000;
    --white: #ffffff;
    --paragraph: #474747;
    --info-color: #00715D;
    --arrow-color: #005949;
    --gray-color: #dddddd;
    --primary: #ff9C81;
    --primary2: #f77a58;
    --title-color: #242424;
    --givewell-black-rgb: 21, 21, 21;
    --star-color: #ffb31c;
    --cardColor: #a0a0a0;
    --bg-color: #faf3ea;
    --font-size: 16px;
    --transition: all 0.5s;
}

.bg-color {
    background: #faf3ea;
}

.bg-color1 {
    background-color: #f1e9de;
    !important;
}

.bg-info1 {
    background-color: var(--info-color) !important;
}

.bg-arrow {
    background-color: var(--arrow-color);
}

.bg-f7f7f7 {
    background-color: #F7F7F7;
}

/* Default CSS */

body {
    font-size: var(--font-size);
    font-family: var(--bodyFontFamily);
    color: var(--paragraph);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p {
    font-weight: 400;
    font-family: var(--bodyFontFamily);
    margin-bottom: 15px;
    color: var(--paragraph);
    line-height: 1.65;
    transition: var(--transition);
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--headingFontFamily);
    line-height: 1.4;
    color: var(--title-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title-color);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--primary) !important;
}

a {
    outline: 0 !important;
    text-decoration: none;
    color: var(--paragraph);
    transition: var(--transition);
}

a:hover {
    color: var(--primary) !important;
}

:focus {
    outline: 0 !important;
    box-shadow: unset !important;
}

img {
    max-width: 100%;
    height: auto;
}

.form-control {
    height: 60px;
    padding: 20px;
    border-radius: 10px;
    color: var(--title-color);
    background-color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: unset !important;
    transition: var(--transition);
}

.form-control::-moz-placeholder {
    color: var(--title-color);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.form-control::placeholder {
    color: var(--title-color);
    transition: var(--transition);
}

.form-control:focus {
    border: 1px solid var(--info-color);
}

.form-control:focus::-moz-placeholder {
    color: var(--title-color);
}

.form-control:focus::placeholder {
    color: var(--title-color);
}

.form-check-input:checked {
    background-color: var(--primary2);
    border-color: var(--primary2);
}

/* Section Padding */

.pxy-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-120 {
    padding-top: 120px;
}

.px-120 {
    padding-bottom: 120px;
}

.pxy-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-100 {
    padding-top: 100px;
}

.px-100 {
    padding-bottom: 100px;
}

.pxy-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-80 {
    padding-top: 80px;
}

.px-80 {
    padding-bottom: 80px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.p-40 {
    padding: 40px;
}

.p-30 {
    padding: 30px;
}

.lr-p {
    padding: 30px 35px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-25 {
    font-size: 25px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-40 {
    font-size: 40px;
}

.fs-50 {
    font-size: 50px;
}

.fs-70 {
    font-size: 70px;
}

.br-10 {
    border-radius: 10px !important;
}

.transition {
    transition: var(--transition);
}

.c-p {
    color: var(--primary);
}

.c-p2 {
    color: var(--primary2) !important;
}

.c-span {
    color: var(--paragraph);
}

.c-title {
    color: var(--title-color);
}

.c-info {
    color: var(--info-color) !important;
}

.c-arrow {
    color: var(--arrow-color);
}

.text-g {
    color: var(--gray-color);
}

.d-headingfamily {
    font-family: var(--headingFontFamily);
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading .sub-title {
    font-size: 18px;
    position: relative;
    font-weight: 600;
    padding: 4px 20px 5px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--white);
    background-color: var(--primary2);
}

.section-heading h2 {
    font-size: 60px;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--title-color);
}

.section-heading h2 span {
    color: var(--primary);
}

.section-title {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 45px;
}

.section-title .sub-title {
    font-size: 18px;
    position: relative;
    font-weight: 600;
    padding: 4px 20px 5px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--white);
    background-color: var(--primary2);
}

.section-title h2 {
    font-size: 60px;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--title-color);
}

.section-title h2 span {
    color: var(--primary);
}

/*
Popup Btn CSS
================================================================================*/

.popup-btn {
    transition: var(--transition);
}

.popup-btn i {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--white);
    width: 120px;
    height: 120px;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--info-color);
    text-align: center;
    transition: var(--transition);
}

.popup-btn i::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 120px;
    height: 120px;
    content: "";
    z-index: -1;
    position: absolute;
    border-radius: 100%;
    background-color: rgba(0, 113, 93, 0.5);
    animation: ripple 2s infinite linear;
}

/*
Default Btn CSS
================================================================================*/

.default-btn {
    border: none;
    box-shadow: none;
    display: inline-block;
    padding: 14px 55px 14px 20px;
    color: var(--white);
    border-radius: 100px;
    background-color: var(--info-color);
    transition: var(--transition);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.default-btn::before {
    position: absolute;
    content: "";
    right: 0;
    width: 0%;
    height: 0%;
    bottom: 0;
    border-radius: 100px;
    background-color: var(--primary2);
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
}

.default-btn i {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--arrow-color);
    transition: var(--transition);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.default-btn.style-2 {
    background-color: var(--primary);
    color: var(--white) !important;
}

.default-btn.style-2 i {
    background-color: var(--primary2);
    color: var(--white) !important;
}

.default-btn.style-2:hover {
    color: var(--white) !important;
}

.default-btn.style-2:hover::before {
    background-color: var(--info-color);
}

.default-btn.style-2:hover i {
    background-color: var(--arrow-color);
    color: var(--white);
}

.default-btn:hover {
    color: var(--white) !important;
}

.default-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.default-btn:hover i {
    background-color: var(--primary);
    color: var(--white);
}

/* read */

.read {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.read i {
    font-size: 23px;
    font-weight: 500;
    transition: var(--transition);
}

.read:hover {
    color: var(--info-color);
}

/*
Default Container CSS
================================================================================*/

.container-fluid.lr-padding {
    max-width: 1890px;
}

.container-fluid.side-padding {
    max-width: 1670px;
}

.container-fluid.wa-padding {
    max-width: 1520px;
}

.container-fluid.left-padding {
    max-width: 1620px;
    margin-left: auto;
    margin-right: 0;
    padding-right: calc(var(--bs-gutter-x) * 0);
}

/*
Popup Search CSS
================================================================================*/

.search-offcanvas .offcanvas-backdrop.show {
    opacity: 0.8;
}

.search-offcanvas .offcanvas.offcanvas-top {
    height: 200px;
}

.search-offcanvas .offcanvas .offcanvas-header .btn-close {
    top: 32px;
    right: 30px;
    padding: 10px;
    font-size: 20px;
    position: absolute;
    z-index: 2;
    opacity: 1;
}

.search-offcanvas .offcanvas-body {
    padding: 50px 200px;
}

.search-offcanvas .offcanvas-body .popup-form {
    position: relative;
}

.search-offcanvas .offcanvas-body .popup-form .form-control {
    font-size: 18px;
    font-weight: 600;
    border: none;
    color: var(--dark);
    height: 80px;
    padding: 12px 20px 12px;
    border-radius: 10px;
    border-bottom: 3px solid var(--primary);
    background-color: #f2f2f2;
}

.search-offcanvas .offcanvas-body .popup-form .form-control::-moz-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.search-offcanvas .offcanvas-body .popup-form .form-control::placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.search-offcanvas .offcanvas-body .popup-form .form-control:focus {
    border-color: var(--dark);
}

.search-offcanvas .offcanvas-body .popup-form .p-btn {
    padding: 0;
    border: none;
    box-shadow: unset !important;
    color: var(--primary);
    top: 18%;
    right: 20px;
    position: absolute;
    font-size: 40px;
    transition: var(--transition);
    text-align: center;
    background-color: transparent;
}

.search-offcanvas .offcanvas-body .popup-form .p-btn:hover {
    color: var(--info-color);
}

/*
Navbar Area CSS
================================================================================*/

.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 999;
}

.navbar.style-2 {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
}

.navbar.style-2 .navbar-nav .nav-item .nav-link {
    color: var(--white);
}

.navbar.style-2 .navbar-nav .nav-item .nav-link::after {
    color: var(--white);
}

.navbar.style-2 .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    color: var(--white);
}

.navbar.style-2 .navbar-nav .nav-item .nav-link.active,
.navbar.style-2 .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary2) !important;
}

.navbar.style-2 .navbar-nav .nav-item .nav-link.active::after,
.navbar.style-2 .navbar-nav .nav-item .nav-link:hover::after {
    color: var(--primary2) !important;
}

.navbar.style-2 .navbar-nav .nav-item:hover .nav-link {
    color: var(--primary2);
}

.navbar.style-2 .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
    color: var(--primary2);
}

.navbar.style-2.sticky {
    background-color: var(--arrow-color) !important;
}

.navbar .navbar-brand {
    margin-right: 10px;
}

.navbar .navbar-brand .main-logo {
    height: 60px;
}

.navbar .pd-navbar {
    padding: 10px 25px 14px;
}

.navbar .navbar-nav .nav-item {
    margin-left: 20px;
    margin-right: 20px;
}

.navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar .navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--title-color);
    transition: 0.6s;
    position: relative;
    padding: 20px 0;
    z-index: 1;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--headingFontFamily);
}

.navbar .navbar-nav .nav-item .nav-link::after {
    font-size: var(--font-size);
    color: var(--title-color);
}

.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 20px;
}

/* 
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    position: absolute;
    vertical-align: 0;
    content: "\eb0b";
    margin-left: 0;
    border: 0;
    right: 0;
    top: 21px;
    color: var(--title-color);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--headingFontFamily);
    line-height: 26px;
    transition: var(--transition);
    font-family: tabler-icons !important;
} */

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--white) !important;
}

.navbar .navbar-nav .nav-item .nav-link.active::after,
.navbar .navbar-nav .nav-item .nav-link:hover::after {
    color: var(--white) !important;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    left: 0;
    border: 0;
    top: 60px;
    opacity: 0;
    width: 200px;
    padding: 15px 0;
    border-radius: 0;
    visibility: hidden;
    display: block !important;
    background-color: var(--white);
    box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
    border-top: 3px solid var(--primary);
    transition: var(--transition);
    transform: scaleY(0);
}

.navbar .navbar-nav .nav-item .dropdown-menu li {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    display: block;
    padding: 10px 25px;
    position: relative;
    color: var(--dark);
    background-color: transparent !important;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--headingFontFamily);
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle {
    padding-right: 18px;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-toggle::after {
    position: absolute;
    vertical-align: 0;
    content: "\eb0b";
    margin-left: 0;
    right: 20px;
    border: 0;
    top: 12px;
    transition: 0.6s;
    font-size: 12px;
    font-weight: 600;
    font-family: tabler-icons !important;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    visibility: hidden;
    left: auto;
    right: -100%;
    opacity: 0;
    top: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown {
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown.dropdown-toggle::after {
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu .nav-link {
    font-size: 18px;
    font-weight: 600;
}

.navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--white);
}

.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
    color: var(--white);
}

.navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.navbar .navbar-toggler {
    color: var(--dark);
    font-size: inherit;
    box-shadow: unset;
    border: none;
    padding: 0;
}

.navbar .navbar-toggler .burger-menu {
    cursor: pointer;
}

.navbar .navbar-toggler .burger-menu span {
    height: 3px;
    width: 30px;
    margin: 5px 0;
    display: block;
    background-color: black;
    !important;
}

.navbar .others-options {
    margin-top: 10px;
    padding-left: 0px !important;
    vertical-align: middle;
}

.navbar .others-options ul li {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    margin-right: 25px;
}

.navbar .others-options ul li .search-btn {
    border: none;
    box-shadow: none;
    font-size: 25px;
    padding: 0;
    background-color: transparent;
    color: var(--white);
}

.navbar .others-options ul li .search1 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    color: var(--white);
    background-color: var(--primary) !important;
    transition: var(--transition);
    position: relative;
    top: -3px;
}

.navbar .others-options ul li .search1:hover {
    color: var(--white);
    background-color: var(--info-color) !important;
}

.navbar .others-options ul li:last-child {
    margin-right: 0;
}

.navbar.sticky {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    background-color: var(--bgcolor1) !important;
    background-image: none;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.navbar-area {
    top: 100px;
    left: 0;
    right: 0;
    position: absolute;
}

/*
Responsive Navbar Area CSS
================================================================================*/

.mobile-navbar .offcanvas-header {
    padding: 30px 30px 65px;
    background-color: transparent;
    border-bottom: 1px solid #e7e7e7;
}

.mobile-navbar .offcanvas-header .btn-close {
    transition: var(--transition);
    font-size: 15px;
    cursor: pointer;
    top: 30px;
    left: 30px;
    position: absolute !important;
    width: 30px;
    height: 30px;
    border-radius: 0;
    background-color: #e7e7e7 !important;
    opacity: 1;
}

.mobile-navbar .offcanvas-header .btn-close:hover {
    color: var(--primary);
}

.mobile-navbar .offcanvas-body {
    padding: 30px 30px;
}

.mobile-navbar .offcanvas-body .mb-4 {
    margin-bottom: 35px !important;
}

.mobile-navbar .offcanvas-body ul {
    list-style-type: none;
    margin-bottom: 0;
}

.mobile-navbar .offcanvas-body ul.mobile-menu {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list {
    border-bottom: 1px solid #e7e7e7;
    position: relative;
    line-height: 1;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    clear: both;
    width: 100%;
    color: var(--heading);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.active .mobile-menu-items {
    padding: 18px 0 0 0;
    margin: 18px 0;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:last-child {
    border-bottom: 1px solid #e7e7e7;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a {
    height: 100%;
    padding-right: 0;
    text-decoration: none;
    position: relative;
    display: block;
    color: var(--heading);
    font-size: 16px;
    font-weight: 500;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:after {
    top: 15%;
    right: 0;
    content: "\eb0b";
    position: absolute;
    transform: translateY(-14%);
    transition: 0.6s;
    font-size: 16px;
    font-style: normal;
    font-family: tabler-icons !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover,
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active {
    color: var(--primary);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover::after,
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active::after {
    color: var(--primary);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .icon::after {
    display: none !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items {
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items li {
    padding: 0 0 20px 0 !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a {
    padding: 0 20px;
    font-size: 16px;
    font-size: 15px;
    font-weight: 500;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a.active {
    color: var(--primary);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a:hover {
    color: var(--primary);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a::after {
    display: none;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list {
    padding: 0;
    margin: 0;
    border: none;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list .nav-link.active {
    color: var(--primary) !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list::after {
    right: 15px;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list .mobile-menu-items {
    padding: 0 !important;
    background-color: var(--bs-gray-100);
    margin: 0 20px !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list.active .mobile-menu-items {
    padding: 18px 0 0 0 !important;
    margin: 18px 20px !important;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon:after {
    display: none;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon a::after {
    display: none;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .active:after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-navbar .offcanvas-body ul.mobile-menu .active>.mobile-menu-items {
    transition: all 300ms;
    display: block;
    height: auto;
    clear: both;
    float: left;
    width: 100%;
    background-color: #ededed;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .active>.mobile-menu-items li:last-child {
    border: none;
}

.mobile-navbar .offcanvas-body ul.mobile-menu .active>a {
    color: var(--primary);
}

.mobile-navbar .others-options {
    padding-left: 0px !important;
    vertical-align: middle;
}

.mobile-navbar .others-options ul li {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.mobile-navbar .others-options ul li .search-btn {
    border: none;
    box-shadow: none;
    font-size: 25px;
    padding: 0;
    background-color: transparent;
    color: var(--white);
}

.mobile-navbar .others-options ul li .search1 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    color: var(--white);
    background-color: var(--primary2);
    transition: var(--transition);
}

.mobile-navbar .others-options ul li .search1:hover {
    color: var(--white);
    background-color: var(--info-color);
}

.mobile-navbar .others-options ul li:last-child {
    margin-right: 0;
}

.a-c {
    color: #464646;
}

/*
Top Header CSS
================================================================================*/

.top-header-area {
    padding-top: 25px;
    padding-bottom: 20px;
}

.top-header-area .top-header-content .adress-card .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--info-color);
}

.top-header-area .top-header-content .adress-card .icon i {
    font-size: 20px;
    color: var(--info-color);
}

.top-header-area .top-header-content .adress-card:hover .icon {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.top-header-area .top-header-content .adress-card:hover .icon i {
    color: var(--white);
}

.top-header-area .social i {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--info-color);
    color: var(--info-color);
    transition: var(--transition);
}

.top-header-area .social i:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

/*
Hero Area CSS
================================================================================*/

.hero-area .hero-warps {
    padding-top: 200px;
}

.hero-area .hero-warps::before {
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 1060px;
    height: 100%;
    z-index: -1;
    border-radius: 40px;
    background-color: var(--bg-color);
}

.hero-area .hero-warps::after {
    top: 0;
    right: 0;
    content: "";
    position: absolute;
    width: 780px;
    height: 100%;
    z-index: -1;
    border-radius: 40px;
    background-color: var(--bg-color);
}

.hero-area .hero-warps .hero-content h1 {
    font-size: 90px;
    font-weight: 700;
}

.hero-area .hero-warps .h-image {
    max-width: 520px;
}

.hero-area .hero-warps .h-image .vedio-btn {
    top: 30px;
    left: 30px;
    position: absolute;
}

.hero-area .hero-warps .h-image h5 {
    top: 50%;
    left: 0;
    right: 0;
    position: absolute;
    padding: 5px 40px;
    background-color: rgba(0, 113, 93, 0.5);
}

.hero-area .hero-warps .man-image {
    top: 140px;
    right: -24px;
    height: 100%;
    position: absolute;
}

.hero-area .hero-warps .small-image-items .image-fluid {
    top: 200px;
    left: 51%;
    position: absolute;
}

.hero-area .hero-warps .small-image-items .image-fluid1 {
    top: 45%;
    left: 45%;
    position: absolute;
}

.hero-area .hero-warps .small-image-items .image-fluid2 {
    bottom: 200px;
    right: 29%;
    position: absolute;
}

/*
Main Banner Area CSS
================================================================================*/

.main-banner-warps .banner-swiper-btn {
    bottom: 58px;
    position: relative;
}

.main-banner-warps .banner-swiper-btn .swiper-button-next,
.main-banner-warps .banner-swiper-btn .swiper-button-prev {
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 35px;
    color: var(--white);
    align-items: center;
    transition: var(--transition);
    justify-content: center;
    background-color: var(--info-color);
}

.main-banner-warps .banner-swiper-btn .swiper-button-next::after,
.main-banner-warps .banner-swiper-btn .swiper-button-prev::after {
    display: none;
}

.main-banner-warps .banner-swiper-btn .swiper-button-next:hover,
.main-banner-warps .banner-swiper-btn .swiper-button-next.active,
.main-banner-warps .banner-swiper-btn .swiper-button-prev:hover,
.main-banner-warps .banner-swiper-btn .swiper-button-prev.active {
    background-color: var(--primary);
}

.main-banner-warps .banner-swiper-btn .swiper-button-prev {
    left: auto;
    right: 80px;
    border-right: 1px solid var(--cardColor);
}

.main-banner-area {
    padding-top: 280px;
    padding-bottom: 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner-area::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 4.51%, rgba(45, 22, 0, 0.5) 27.08%, rgba(92, 46, 0, 0.29) 43.1%, rgba(158, 78, 0, 0) 58.47%);
}

.main-banner-area .main-banner-content {
    margin-right: -15px;
}

.main-banner-area .main-banner-content .sub-title {
    letter-spacing: 1.8px;
}

.main-banner-area .main-banner-content .sub-title img {
    max-width: 50px;
}

.main-banner-area .main-banner-content h1 {
    font-size: 90px;
    font-weight: 700;
}

.main-banner-area .banner-shape {
    bottom: 20px;
    left: 40%;
    z-index: -1;
    pointer-events: none;
    position: absolute;
}

/*
Banner Area CSS
================================================================================*/

.banner-area {
    padding-top: 280px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-area .container-fluid.left-padding {
    max-width: 1785px;
    margin-left: auto;
    margin-right: 0;
    padding-right: calc(var(--bs-gutter-x) * 0);
}

.banner-area::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
}

.banner-area .banner-content {
    position: relative;
    z-index: 2;
}

.banner-area .banner-content .sub-title {
    letter-spacing: 1.8px;
}

.banner-area .banner-content .sub-title img {
    max-width: 50px;
}

.banner-area .banner-content h1 {
    font-size: 90px;
    font-weight: 700;
}

.banner-area .banner-image-items .banner-image img {
    border-radius: 100px 0 0 100px;
}

.banner-area .swiper-pagination {
    margin-top: 50px;
    position: relative;
}

.banner-area .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 15px;
    border-radius: 5px;
    background-color: var(--white);
    transition: var(--transition);
}

.banner-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 90px;
    border-radius: 5px;
    background-color: var(--primary);
}

.banner-area .banner-services {
    max-width: 1150px;
    padding: 30px 50px;
    position: relative;
    border-radius: 0 200px 0 0;
}

.banner-area .banner-services::before {
    top: 0;
    bottom: 0;
    left: -149px;
    width: 150px;
    height: 183px;
    content: "";
    position: absolute;
    background-color: var(--info-color);
}

.banner-area::after {
    top: 41%;
    left: 0;
    content: "";
    width: 1000px;
    height: 120px;
    z-index: 1;
    position: absolute;
    border-radius: 0 100px 100px 0;
    background-color: var(--info-color);
}

/*
Page Banner Area CSS
================================================================================*/

.page-banner-area {
    padding-top: 215px;
    padding-bottom: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #122F2A;
    background: linear-gradient(353deg, rgb(18, 47, 42) 0%, rgba(18, 47, 42, 0.74) 100%);
    mix-blend-mode: multiply;
    content: "";
}

.page-banner-area .page-banner-content h2 {
    font-size: 50px;
    margin-bottom: 15px;
}

.page-banner-area .page-banner-content .pages-list li {
    display: inline-block;
    position: relative;
    font-size: 20px;
    margin-right: 15px;
    color: var(--gray-color);
}

.page-banner-area .page-banner-content .pages-list li a {
    color: var(--gray-color);
}

.page-banner-area .page-banner-content .pages-list li a:hover {
    color: var(--primary);
}

.page-banner-area .page-banner-content .pages-list li::before {
    position: absolute;
    content: "/";
    top: 0;
    right: -14px;
    color: var(--white);
}

.page-banner-area .page-banner-content .pages-list li:last-child {
    margin-right: 0;
}

.page-banner-area .page-banner-content .pages-list li:last-child::before {
    display: none;
}

/*
About Area CSS
================================================================================*/

.about-area .about-image-items .about-image1 {
    margin-top: 100px;
    position: relative;
}

.about-area .about-image-items .about-card {
    position: relative;
    margin-left: -100px;
    border: 5px solid var(--bg-color);
}

.about-us-area .warps-card .icon img {
    max-width: 80px;
}

/*
Charity About Area CSS
================================================================================*/

.charity-about-area .charity-image-items .a-image1 {
    margin-top: -50px;
    position: relative;
}

.charity-about-area .charity-image-items .a-image {
    margin-top: 50px;
    position: relative;
}

.charity-about-area .charity-image-items .circle-items {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.charity-about-area .charity-image-items .circle-items .circle-card {
    width: 160px;
    height: 160px;
}

.charity-about-area .charity-image-items .circle-items .circle-card i {
    top: 50%;
    left: 50%;
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    flex-shrink: 0;
    font-size: 30px;
    color: var(--title-color);
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--white);
    transform: translate(-50%, -50%);
}

.charity-about-area .about-shape {
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

.charity-about-area .shape {
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

/*
Features Area CSS
================================================================================*/

.features-area .features-card .features-card-body {
    bottom: 0;
    left: 40px;
    right: 40px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
}

.features-area .features-card .features-card-body .icon {
    width: 80px;
    height: 80px;
}

.features-area .features-card .features-card-body .icon img {
    max-width: 40px;
    transition: var(--transition);
    filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(1330%) hue-rotate(144deg) brightness(100%) contrast(101%);
}

.features-area .features-card .features-card-body h3 a:hover {
    color: var(--primary) !important;
}

.features-area .features-card:hover .features-card-body,
.features-area .features-card.active .features-card-body {
    background-color: rgba(0, 113, 93, 0.7);
}

.features-area .features-card:hover .features-card-body .icon,
.features-area .features-card.active .features-card-body .icon {
    animation: pop 0.3s 1;
    background-color: var(--primary) !important;
}

.features-area .features-card:hover .features-card-body .icon img,
.features-area .features-card.active .features-card-body .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.features-area .features-card:hover .features-card-body h3 a,
.features-area .features-card.active .features-card-body h3 a {
    color: var(--white);
}

.features-area .features-card:hover .features-card-body p,
.features-area .features-card.active .features-card-body p {
    color: var(--white);
}

.features-area .features-card:hover .features-card-body .read,
.features-area .features-card.active .features-card-body .read {
    color: var(--primary2) !important;
}

.features-area .features-card:hover .features-card-body .read i,
.features-area .features-card.active .features-card-body .read i {
    color: var(--primary2) !important;
}

/*
Funfact Area CSS
================================================================================*/

.funfact-area .funfact-card {
    position: relative;
}

.funfact-area .funfact-card::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10px;
    width: 1px;
    height: 40px;
    transform: translateY(-50%) !important;
    border: 1px solid var(--cardColor);
}

.funfact-area .col-lg-4:first-child .funfact-card::before {
    display: none;
}

.funfact-area .col-lg-3:first-child .funfact-card::before {
    display: none;
}

/*
Facility Area CSS
================================================================================*/

.facility-area .facility-card .icon {
    width: 90px;
    height: 90px;
    transition: var(--transition);
    background-color: #FEF4F3;
}

.facility-area .facility-card .icon img {
    max-width: 50px;
}

.facility-area .facility-card:hover .icon {
    animation: pop 0.3s 1;
    background-color: var(--primary);
}

/*
Donte Area CSS
================================================================================*/

.donte-area .donte-items {
    margin: 0 -120px 0 25px;
}

.donte-area .donate-swiper-btn {
    margin-top: 100px;
}

.donte-area .donate-swiper-btn .swiper-button-next,
.donte-area .donate-swiper-btn .swiper-button-prev {
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 35px;
    color: var(--white);
    align-items: center;
    transition: var(--transition);
    justify-content: center;
    background-color: var(--info-color);
}

.donte-area .donate-swiper-btn .swiper-button-next::after,
.donte-area .donate-swiper-btn .swiper-button-prev::after {
    display: none;
}

.donte-area .donate-swiper-btn .swiper-button-next:hover,
.donte-area .donate-swiper-btn .swiper-button-next.active,
.donte-area .donate-swiper-btn .swiper-button-prev:hover,
.donte-area .donate-swiper-btn .swiper-button-prev.active {
    background-color: var(--primary);
}

.donte-area .donate-swiper-btn .swiper-button-next {
    right: auto;
    left: 90px;
}

/*
Become Area CSS
================================================================================*/

.become-area .bacome-card {
    padding: 50px;
}

.become-area .bacome-card .section-heading h2 {
    font-size: 45px;
}

.become-area .bacome-card .shape {
    top: 0;
    right: 0;
    z-index: -1;
    position: absolute;
}

.become-area .bacome-card .shape1 {
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

/*
Why Choose Area CSS
================================================================================*/

.why-choose-area .warps-card .icon {
    width: 70px;
    height: 70px;
    background-color: #F7F7F7;
}

.why-choose-area .warps-card .icon img {
    max-width: 40px;
    transition: var(--transition);
}

.why-choose-area .warps-card:hover,
.why-choose-area .warps-card.active {
    background-color: var(--arrow-color) !important;
}

.why-choose-area .warps-card:hover h4,
.why-choose-area .warps-card.active h4 {
    color: var(--white);
}

.why-choose-area .warps-card:hover p,
.why-choose-area .warps-card.active p {
    color: var(--gray-color);
}

.why-choose-area .warps-card:hover .icon,
.why-choose-area .warps-card.active .icon {
    background-color: var(--primary2);
}

.why-choose-area .warps-card:hover .icon img,
.why-choose-area .warps-card.active .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(0%) hue-rotate(359deg) brightness(103%) contrast(101%);
}

.why-choose-area .c-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose-area .c-image .vedio-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    position: absolute;
}

.why-choose-area .c-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

/*
Charity Area CSS
================================================================================*/

.charity-area .shape {
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
    position: absolute;
}

.charity-area .shape1 {
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

.charity-area .d-image {
    position: relative;
}

.charity-area .d-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

/*
Events Area CSS
================================================================================*/

.latest-events-area .single-events-card .events-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.latest-events-area .single-events-card .events-image img {
    transition: var(--transition);
    border-radius: 10px 10px 0 0;
}

.latest-events-area .single-events-card .events-image .date {
    width: 70px;
    height: 70px;
    text-align: center;
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary2);
    padding: 6px;
    clip-path: polygon(0px 20%, 20% 0px, 100% 0px, 100% 100%, 0px 100%);
}

.latest-events-area .single-events-card .events-card-body {
    border-radius: 0 0 10px 10px;
}

.latest-events-area .single-events-card:hover .events-image {
    border-radius: 10px 10px 0 0;
}

.latest-events-area .single-events-card:hover .events-image img {
    border-radius: 10px 10px 0 0;
    transform: scale(1.1);
}

/*
Review Area CSS
================================================================================*/

.review-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.review-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #122F2A;
    background: linear-gradient(353deg, rgb(18, 47, 42) 0%, rgba(18, 47, 42, 0.74) 100%);
    mix-blend-mode: multiply;
    content: "";
}

.review-area .review-content .review-quote {
    padding: 0 160px;
    font-size: 18px;
    color: #D1D1D1;
    margin-bottom: 0;
}

.review-area .review-swiper-btn .swiper-button-next,
.review-area .review-swiper-btn .swiper-button-prev {
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 35px;
    color: var(--white);
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    justify-content: center;
    border: 1px solid var(--cardColor);
    background-color: rgba(255, 255, 255, 0.2);
}

.review-area .review-swiper-btn .swiper-button-next::after,
.review-area .review-swiper-btn .swiper-button-prev::after {
    display: none;
}

.review-area .review-swiper-btn .swiper-button-next:hover,
.review-area .review-swiper-btn .swiper-button-next.active,
.review-area .review-swiper-btn .swiper-button-prev:hover,
.review-area .review-swiper-btn .swiper-button-prev.active {
    color: var(--white);
    background-color: var(--primary);
}

.review-area .review-swiper-btn .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 220px);
    top: 60%;
}

.review-area .review-swiper-btn .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 220px);
    top: 60%;
}

/*
Artical Area CSS
================================================================================*/

.single-artical-card .a-card-body {
    border-radius: 0 0 10px 10px;
}

.single-artical-card .a-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.single-artical-card .a-image img {
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.single-artical-card:hover .a-image {
    border-radius: 10px 10px 0 0;
}

.single-artical-card:hover .a-image img {
    border-radius: 10px 10px 0 0;
    transform: scale(1.1);
}

/*
Causes Area CSS
================================================================================*/

.causes-area .nav-pills .nav-item {
    margin-right: 10px;
}

.causes-area .nav-pills .nav-item:last-child {
    margin-right: 0;
}

.causes-area .nav-pills .nav-link {
    font-size: 25px;
    font-weight: 500;
    color: var(--dark);
    padding: 20px 35px;
    transition: var(--transition);
    border-radius: 5px;
    border-radius: 100px;
    background: var(--bg-color);
}

.causes-area .nav-pills .nav-link:hover,
.causes-area .nav-pills .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.causes-area .wrapper header h2 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.causes-area .wrapper .price-input {
    display: flex;
    margin: 10px 0 0;
    justify-content: center;
}

.causes-area .wrapper .price-input .field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.causes-area .wrapper .price-input .field input {
    width: 30%;
    height: auto;
    border: none;
    outline: 0;
    font-size: 14px;
    text-align: start;
    background-color: transparent;
    -moz-appearance: textfield;
    color: var(--paragraph);
}

.causes-area .wrapper input[type=number]::-webkit-outer-spin-button,
.causes-area .wrapper input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.causes-area .wrapper .slider {
    height: 6px;
    position: relative;
    border-radius: 0;
    background-color: hsla(0, 21.05%, 85.1%, 0.5);
}

.causes-area .wrapper .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 0;
    background-color: var(--primary);
}

.causes-area .wrapper .range-input {
    position: relative;
}

.causes-area .wrapper .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -10px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.causes-area .wrapper input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -webkit-appearance: none;
}

.causes-area .wrapper input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -moz-appearance: none;
}

.causes-area .shape {
    top: 0;
    left: 0;
    position: absolute;
}

.causes-area .shape1 {
    top: 0;
    right: 0;
    opacity: 0.3;
    position: absolute;
}

.causes-area .causes-swiper-btn .swiper-button-next,
.causes-area .causes-swiper-btn .swiper-button-prev {
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 35px;
    color: var(--primary2);
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    justify-content: center;
    border: 1px solid var(--cardColor);
    background-color: var(--white);
}

.causes-area .causes-swiper-btn .swiper-button-next::after,
.causes-area .causes-swiper-btn .swiper-button-prev::after {
    display: none;
}

.causes-area .causes-swiper-btn .swiper-button-next:hover,
.causes-area .causes-swiper-btn .swiper-button-next.active,
.causes-area .causes-swiper-btn .swiper-button-prev:hover,
.causes-area .causes-swiper-btn .swiper-button-prev.active {
    color: var(--white);
    background-color: var(--primary);
}

.causes-area .causes-swiper-btn .swiper-button-prev {
    left: -40px;
}

.causes-area .causes-swiper-btn .swiper-button-next {
    right: -40px;
}

/*
Donation Area CSS
================================================================================*/

.donation-area .donation-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.donation-area .donation-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

.donation-area .shape {
    top: 120px;
    left: 0%;
    z-index: -1;
    position: absolute;
}

.donation-area .shape1 {
    top: 0;
    right: 0%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    position: absolute;
}

/*
Services Area CSS
================================================================================*/

.services-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #122F2A;
    background: linear-gradient(353deg, rgb(18, 47, 42) 0%, rgba(18, 47, 42, 0.74) 100%);
    mix-blend-mode: multiply;
    content: "";
}

.services-area .section-heading {
    background-color: rgba(var(--givewell-black-rgb), 0.8);
}

.services-area .section-heading h2 {
    font-size: 50px;
}

.services-area .single-services-card .number {
    margin-left: 60px;
}

.services-area .single-services-card .number::before {
    top: 50%;
    left: -63px;
    width: 60px;
    height: 1px;
    content: "";
    transition: var(--transition);
    position: absolute;
    border: 1px solid var(--info-color);
}

.services-area .single-services-card h3 a:hover {
    color: var(--primary) !important;
}

.services-area .single-services-card .icon-items img {
    max-width: 50px;
    filter: brightness(0) saturate(100%) invert(80%) sepia(38%) saturate(7497%) hue-rotate(325deg) brightness(103%) contrast(94%);
}

.services-area .single-services-card .icon-items i {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 25px;
    border-radius: 5px;
    color: var(--title-color);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--title-color);
}

.services-area .single-services-card .icon-items i:hover {
    color: var(--white);
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

.services-area .single-services-card:hover,
.services-area .single-services-card.active {
    background-color: var(--arrow-color) !important;
}

.services-area .single-services-card:hover .number,
.services-area .single-services-card.active .number {
    color: var(--white) !important;
}

.services-area .single-services-card:hover .number::before,
.services-area .single-services-card.active .number::before {
    border: 1px solid var(--white);
}

.services-area .single-services-card:hover h3 a,
.services-area .single-services-card.active h3 a {
    color: var(--white);
}

.services-area .single-services-card:hover p,
.services-area .single-services-card.active p {
    color: var(--gray-color) !important;
}

.services-area .single-services-card:hover .icon-items i,
.services-area .single-services-card.active .icon-items i {
    background-color: var(--white);
    border: 1px solid var(--white);
}

/*
Events Area CSS
================================================================================*/

.events-area .events-card .events-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.events-area .events-card .author-card ul li {
    margin-right: -15px;
}

.events-area .events-card .author-card ul li img {
    width: 70px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
    border: 1px solid var(--primary2);
}

.events-area .events-card .author-card ul li:last-child {
    margin-right: 0;
}

/*
Cta Area CSS
================================================================================*/

.cta-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #122F2A;
    background: linear-gradient(353deg, rgb(18, 47, 42) 0%, rgba(18, 47, 42, 0.74) 100%);
    mix-blend-mode: multiply;
    content: "";
}

/*
Volunteer Area CSS
================================================================================*/

.volunteer-area .single-volunteer-card .social {
    top: -30px;
    right: 30px;
    opacity: 0;
    z-index: 2;
    transition: var(--transition);
    visibility: hidden;
    position: absolute;
}

.volunteer-area .single-volunteer-card .social li {
    margin-bottom: 8px;
}

.volunteer-area .single-volunteer-card .social li:last-child {
    margin-bottom: 0;
}

.volunteer-area .single-volunteer-card .social i {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 25px;
    align-items: center;
    border-radius: 100%;
    color: var(--white);
    justify-content: center;
    transition: var(--transition);
    background-color: var(--info-color);
}

.volunteer-area .single-volunteer-card .social i:hover {
    background-color: var(--primary2);
}

.volunteer-area .single-volunteer-card .t-image {
    overflow: hidden;
    transition: var(--transition);
}

.volunteer-area .single-volunteer-card .t-image::after {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0%;
    content: "";
    border-radius: 10px;
    position: absolute;
    transition: var(--transition);
    background: linear-gradient(175deg, rgba(0, 89, 73, 0.67) 0%, rgba(0, 89, 73, 0.76) 48%, rgba(0, 89, 73, 0.75) 50%, rgba(0, 89, 73, 0.49) 100%);
}

.volunteer-area .single-volunteer-card:hover .t-image .social,
.volunteer-area .single-volunteer-card.active .t-image .social {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.volunteer-area .single-volunteer-card:hover .t-image::after,
.volunteer-area .single-volunteer-card.active .t-image::after {
    height: 100%;
}

/*
Testimonial Area CSS
================================================================================*/

.testimonial-area .t-image {
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-area .pb-40 {
    padding-bottom: 40px;
}

.testimonial-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
}

.testimonial-area .main-shape {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    position: absolute;
}

.testimonial-area .testimonial-content .star {
    font-size: 25px;
    color: var(--star-color);
}

.testimonial-area .testimonial-content .qoute img {
    max-width: 80px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(48%) saturate(4511%) hue-rotate(325deg) brightness(103%) contrast(94%);
}

.testimonial-area .swiper-pagination {
    text-align: end;
}

.testimonial-area .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--white);
    transition: var(--transition);
}

.testimonial-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--primary);
}

/*
Clients Area CSS
================================================================================*/

.clients-area .testimonial-content .star {
    font-size: 20px;
    color: var(--star-color);
}

.clients-area .testimonial-content .qoute img {
    max-width: 50px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(48%) saturate(4511%) hue-rotate(325deg) brightness(103%) contrast(94%);
}

.clients-area .swiper-pagination {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.clients-area .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--title-color);
    transition: var(--transition);
}

.clients-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--primary);
}

/*
Blog Area CSS
================================================================================*/

.blog-area .newslatter-form {
    position: sticky;
    top: 100px;
}

.blog-area .pb-30 {
    padding-bottom: 30px;
}

.blog-area .section-heading h2 {
    font-size: 50px;
}

.blog-area .blog-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*
Footer Area CSS
================================================================================*/

.footer-area .footer-shape {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.03;
    position: absolute;
}

.footer-area .ps-xl-1 {
    padding-left: 70px !important;
}

.footer-area .ps-xl-2 {
    padding-left: 50px !important;
}

.footer-widget ul li {
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: var(--gray-color);
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li i {
    font-size: 20px;
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-widget ul li:hover i {
    color: var(--primary);
}

.footer-widget ul li img {
    max-width: 50px;
    border-radius: 3px;
}

.footer-widget .social i {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 20px;
    align-items: center;
    border-radius: 100%;
    color: var(--white);
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--cardColor);
}

.footer-widget .social i:hover {
    color: var(--white) !important;
    background-color: var(--primary2);
    border: 1px solid var(--primary2);
}

/*
newslatter Area CSS
================================================================================*/

.newslatter-area .footer-shape {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.03;
    position: absolute;
}

.newlatter-form .form-control:focus {
    background-color: var(--white);
}

.newlatter-form .default-btn {
    top: 0;
    right: 0;
    height: 60px;
    position: absolute;
}

.newlatter-form .icon {
    top: 0;
    right: 0;
    height: 60px;
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    border: none;
    font-size: 30px;
    box-shadow: none;
    display: inline-block;
    color: var(--white);
    border-radius: 100px;
    background-color: var(--primary2);
    transition: var(--transition);
}

.newlatter-form .icon:hover {
    background-color: var(--info-color);
}

/*
What Are Area CSS
================================================================================*/

.single-what-are-card .icon {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary2);
}

.single-what-are-card .icon img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(16deg) brightness(108%) contrast(100%);
}

.single-what-are-card:hover .icon {
    background-color: var(--arrow-color);
}

.single-what-are-card:hover .icon img {
    animation: pop 0.3s 1;
}

/*
Charity Donation Area CSS
================================================================================*/

.charity-donation-area .single-donation-card .donation-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.charity-donation-area .wrapper header h2 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.charity-donation-area .wrapper .price-input {
    display: flex;
    margin: 10px 0 0;
    justify-content: center;
}

.charity-donation-area .wrapper .price-input .field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.charity-donation-area .wrapper .price-input .field input {
    width: 30%;
    height: auto;
    border: none;
    outline: 0;
    font-size: 14px;
    text-align: start;
    background-color: transparent;
    -moz-appearance: textfield;
    color: var(--paragraph);
}

.charity-donation-area .wrapper input[type=number]::-webkit-outer-spin-button,
.charity-donation-area .wrapper input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.charity-donation-area .wrapper .slider {
    height: 6px;
    position: relative;
    border-radius: 0;
    background-color: hsla(0, 21.05%, 85.1%, 0.5);
}

.charity-donation-area .wrapper .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 0;
    background-color: var(--primary);
}

.charity-donation-area .wrapper .range-input {
    position: relative;
}

.charity-donation-area .wrapper .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -10px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.charity-donation-area .wrapper input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -webkit-appearance: none;
}

.charity-donation-area .wrapper input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -moz-appearance: none;
}

/*
Helping Area CSS
================================================================================*/

.helping-area .shape {
    top: 100px;
    right: 200px;
    position: absolute;
}

/*
Faq Area CSS
================================================================================*/

.faq-area .mail-card {
    padding: 20px 35px;
}

.faq-area .faq-content .accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 20px;
    background-color: var(--bg-color);
}

.faq-area .faq-content .accordion-item .accordion-button {
    border: none;
    box-shadow: none;
    color: var(--title-color);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--bg-color);
    padding: 20px 25px;
    border-radius: 10px 10px 10px 10px;
    position: relative;
    border-bottom: 1px solid var(--cardColor);
}

.faq-area .faq-content .accordion-item .accordion-button::after {
    display: none;
}

.faq-area .faq-content .accordion-item .accordion-button::before {
    position: absolute;
    content: "\eb0b";
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-family: tabler-icons !important;
    color: var(--title-color);
}

.faq-area .faq-content .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 10px 10px 0 0;
}

.faq-area .faq-content .accordion-item .accordion-button:not(.collapsed)::before {
    content: "\eaf2";
}

.faq-area .faq-content .accordion-item .accordion-body {
    padding: 20px 35px 20px 25px;
    border-radius: 0 0 10px 10px;
}

.faq-area .faq-content .accordion-item:last-child {
    margin-bottom: 0;
}

/*
Touch Area CSS
================================================================================*/

.touch-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.touch-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #122F2A;
    background: linear-gradient(353deg, rgba(18, 47, 42, 0.99) 0%, rgba(18, 47, 42, 0.57) 100%);
    mix-blend-mode: multiply;
    content: "";
}

.touch-area textarea.form-control {
    height: 120px;
}

/*
Copy Right Area CSS
================================================================================*/

.copy-right-area {
    padding-top: 25px;
    padding-bottom: 25px;
}

.copy-right-area p img {
    max-width: 100px;
}

/*
Forget Password CSS
================================================================================*/

.forget-password-page {
    padding-top: 120px;
}

/*
Map Area CSS
================================================================*/

.map-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
}

.map-area iframe {
    width: 100%;
    height: 675px;
}

/*
Default Details Page Area CSS
================================================================================*/

.default-details-page .wrapper header h2 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.default-details-page .wrapper .price-input {
    display: flex;
    margin: 10px 0 0;
    justify-content: center;
}

.default-details-page .wrapper .price-input .field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.default-details-page .wrapper .price-input .field input {
    width: 30%;
    height: auto;
    border: none;
    outline: 0;
    font-size: 14px;
    text-align: start;
    background-color: transparent;
    -moz-appearance: textfield;
    color: var(--paragraph);
}

.default-details-page .wrapper input[type=number]::-webkit-outer-spin-button,
.default-details-page .wrapper input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.default-details-page .wrapper .slider {
    height: 6px;
    position: relative;
    border-radius: 0;
    background-color: hsla(0, 21.05%, 85.1%, 0.5);
}

.default-details-page .wrapper .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 0;
    background-color: var(--primary);
}

.default-details-page .wrapper .range-input {
    position: relative;
}

.default-details-page .wrapper .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -10px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.default-details-page .wrapper input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -webkit-appearance: none;
}

.default-details-page .wrapper input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 50%;
    background-color: var(--info-color);
    pointer-events: auto;
    -moz-appearance: none;
}

.default-details-page .progress-card {
    position: relative;
    margin-top: -60px;
    margin-left: 40px;
}

.default-details-page .cardbtn-style {
    padding: 30px 25px;
    border-radius: 10px;
    background-color: var(--bg-color);
}

.default-details-page .default-sidebar .categori-card ul li {
    font-weight: 500;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
}

.default-details-page .default-sidebar .categori-card ul li:last-child {
    margin-bottom: 0;
}

.default-details-page .default-sidebar .tag-card ul li {
    display: inline-block;
    margin-right: 5px;
}

.default-details-page .default-sidebar .tag-card ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.default-details-page .default-sidebar .tag-card ul li.mb-3 {
    margin-bottom: 8px !important;
}

.default-details-page .default-sidebar .tag-card ul li a {
    color: var(--title-color);
    padding: 8px 15px 8px;
    border-radius: 5px;
    display: inline-block;
    background-color: var(--white);
}

.default-details-page .default-sidebar .tag-card ul li a:hover {
    color: var(--white) !important;
    background-color: var(--primary);
}

.default-details-page .default-sidebar .search-box .form-control {
    padding: 12px 20px;
    height: 60px;
    border-radius: 10px;
}

.default-details-page .default-sidebar .search-box .read-more {
    top: 50%;
    right: 5px;
    position: absolute;
    transform: translateY(-50%);
    font-size: 20px;
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 28px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.default-details-page .default-sidebar .search-box .read-more:hover {
    color: var(--white);
    background-color: var(--info-color);
}

.default-details-page .default-sidebar .getin-card {
    padding: 80px 20px;
    border-radius: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.default-details-page .default-sidebar .getin-card::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5803921569) 0% 100%);
    z-index: -1;
    border-radius: 10px;
}

.default-details-page .default-sidebar .getin-card .call {
    width: 100px;
    height: 100px;
    font-size: 40px;
    color: var(--white);
    display: flex;
    margin: auto;
    border-radius: 100%;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    background-color: var(--primary2);
}

.default-details-page .default-sidebar .social i {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 25px;
    align-items: center;
    border-radius: 100%;
    color: var(--primary2);
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--primary2);
}

.default-details-page .default-sidebar .social i:hover {
    color: var(--white) !important;
    background-color: var(--primary2);
    border: 1px solid var(--primary2);
}

.default-details-page .default-sidebar iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.default-details-page .default-sidebar .recent-card img {
    max-width: 100px;
}

.default-details-page .volunteer-image .social i {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 18px;
    align-items: center;
    border-radius: 100%;
    color: var(--primary2);
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--primary2);
}

.default-details-page .volunteer-image .social i:hover {
    color: var(--white) !important;
    background-color: var(--primary2);
    border: 1px solid var(--primary2);
}

.default-details-page .volunteer-image .volunteer-name {
    left: 30px;
    right: 30px;
    bottom: 30px;
    position: absolute;
}

.default-details-page .qoute-card {
    border-bottom: 3px solid var(--primary);
}

.default-details-page .qoute-card .icon img {
    max-width: 80px;
    filter: brightness(0) saturate(100%) invert(7%) sepia(96%) saturate(7420%) hue-rotate(3deg) brightness(89%) contrast(106%);
}

.default-details-page .qoute-card p {
    font-size: 25px;
    line-height: 1.2;
}

.default-details-page .share-tag {
    padding-top: 30px;
    margin-top: 35px;
    border-top: 1px solid rgba(217, 216, 216, 0.4);
}

.default-details-page .share-tag .tags li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

.default-details-page .share-tag .tags li a {
    color: var(--title-color);
}

.default-details-page .share-tag .tags li a:hover {
    color: var(--primary);
}

.default-details-page .share-tag .tags li:last-child {
    margin-right: 0;
}

.default-details-page .share-tag .share {
    text-align: end;
}

.default-details-page .share-tag .share li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.default-details-page .share-tag .share li a {
    display: inline-block;
    color: var(--white);
    background-color: var(--primary2);
    border-radius: 100%;
    text-align: center;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.default-details-page .share-tag .share li a:hover {
    color: var(--white);
    background-color: var(--info-color);
}

.default-details-page .share-tag .share li:last-child {
    margin-right: 0;
}

.comments-card .comments-info .comments-image img {
    max-width: 150px;
    border-color: var(--info-color) !important;
}

.comments-card .comments-info.style-2 {
    margin-left: 80px;
}

/*
Team About Area CSS
================================================================================*/

.team-about-area .skills {
    width: 100%;
    max-width: 100%;
}

.team-about-area .skills .skill {
    margin-bottom: 20px;
}

.team-about-area .skills .skill .skill-name {
    margin: 0 0 15px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.team-about-area .skills .skill .skill-bar {
    height: 6px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.3);
}

.team-about-area .skills .skill .skill-bar .skill-percentage {
    height: 6px;
    border-radius: 30px;
    background: var(--primary2);
    position: relative;
    animation: fillBars 2.5s 1;
}

.team-about-area .skills .skill .skill-bar .skill-percentage::before {
    content: attr(data-progress) !important;
    position: absolute;
    font-size: 12px;
    top: -35px;
    right: 0;
    color: #575757;
    font-size: 15px;
    font-weight: 600;
}

/*
Shop Area CSS
================================================================================*/

.shop-area .shop-top-bar .form-select {
    border: none;
    height: 50px;
    padding: 5px 15px;
    border-radius: 10px;
    color: var(--title-color);
    background-color: var(--bg-color);
}

.shop-area .shop-top-bar .form-select option {
    color: var(--dark);
}

.shop-area .shop-card .shop-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.shop-area .shop-card .shop-image img {
    border-radius: 10px 10px 0 0;
}

.shop-area .shop-card .shop-image .icon {
    bottom: -20px;
    right: 10px;
    left: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) !important;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: var(--transition);
}

.shop-area .shop-card .shop-image .icon li i {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    color: var(--white);
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: var(--primary);
}

.shop-area .shop-card .shop-image .icon li i:hover {
    color: var(--white);
    background-color: var(--info-color);
}

.shop-area .shop-card .shop-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    margin: auto;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
    background: linear-gradient(175deg, rgba(0, 89, 73, 0.67) 0%, rgba(0, 89, 73, 0.76) 48%, rgba(0, 89, 73, 0.75) 50%, rgba(0, 89, 73, 0.49) 100%);
}

.shop-area .shop-card .shop-card-body {
    border-radius: 0 0 10px 10px;
}

.shop-area .shop-card:hover .shop-image .icon,
.shop-area .shop-card.active .shop-image .icon {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.shop-area .shop-card:hover .shop-image::before,
.shop-area .shop-card.active .shop-image::before {
    width: 100%;
}

.shop-modal .modal-dialog {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px !important;
}

.shop-modal .modal-body {
    padding: 25px;
    border-radius: 10px !important;
}

.shop-modal .modal-header {
    display: flex;
    align-items: center;
    padding: 0;
}

.shop-modal .btn-close {
    top: 20px;
    right: 20px;
    opacity: 1;
    font-size: 25px;
    position: absolute;
    z-index: 1;
}

.shop-content .review-items i {
    font-size: 20px;
    color: var(--star-color);
}

.shop-content .price span {
    font-size: 30px;
    font-weight: 500;
    color: var(--title-color);
}

.shop-content .price .old-price {
    color: var(--paragraph);
}

.shop-content h5 span {
    font-weight: 500;
    color: var(--paragraph);
}

.shop-content .quantity-list {
    margin-bottom: 35px;
}

.shop-content .quantity-list li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.shop-content .quantity-list li:last-child {
    margin-right: 0;
}

.shop-content .quantity-selector {
    display: flex;
    align-items: center;
}

.shop-content .quantity-selector button {
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(40, 43, 45, 0.15);
    width: 40px;
    height: 40px;
    font-size: 20px;
    transition: var(--transition);
    background-color: transparent;
    cursor: pointer;
}

.shop-content .quantity-selector button:hover {
    background: var(--bg-color);
}

.shop-content .quantity-selector input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: none !important;
    color: var(--title-color);
    background-color: var(--primary);
}

.shop-content .quantity-selector .decrement {
    border-right: 0;
    color: var(--title-color);
    background-color: var(--bg-color);
    border-radius: 10px 0 0 10px;
}

.shop-content .quantity-selector .increment {
    border-left: 0;
    color: var(--title-color);
    background-color: var(--bg-color);
    border-radius: 0 10px 10px 0;
}

.shop-content .tags-list li {
    color: var(--paragraph);
    margin-bottom: 5px;
}

.shop-content .tags-list li span {
    color: var(--title-color);
}

.shop-content .tags-list li:last-child {
    margin-bottom: 0;
}

.shop-content .social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.shop-content .social-icons li::before {
    display: none;
}

.shop-content .social-icons li a {
    display: inline-block;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-content .social-icons li a:hover {
    color: var(--white);
    background-color: var(--info-color);
}

.shop-content .social-icons li:last-child {
    margin-right: 0;
}

.shop-image-items {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-review-area .nav-tabs .nav-item {
    margin-bottom: 15px;
    margin-right: 10px;
}

.product-review-area .nav-tabs .nav-item .nav-link {
    width: 100%;
    text-align: start;
    font-size: 20px;
    color: var(--title-color);
    font-weight: 600;
    border: none;
    transition: var(--transition);
    border-radius: 10px;
    background-color: var(--bg-color);
}

.product-review-area .nav-tabs .nav-item .nav-link:hover,
.product-review-area .nav-tabs .nav-item .nav-link.active {
    color: var(--white);
    background-color: var(--primary);
}

.product-review-area .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

/*
Cart Page
================================================================*/

.cart-table .table thead tr {
    border-radius: 10px;
}

.cart-table .table thead tr th {
    padding: 15px 15px;
    border: none;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    background-color: var(--primary);
}

.cart-table .table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
}

.cart-table .table thead tr th:last-child {
    border-radius: 0 10px 10px 0;
}

.cart-table .table tbody tr td {
    padding: 20px 15px;
    vertical-align: middle;
    color: var(--title-color);
    white-space: nowrap;
    background-color: var(--white);
    border-bottom: 1px solid rgba(217, 216, 216, 0.37);
}

.cart-table .table tbody tr td:last-child {
    text-align: end;
}

.cart-table .table tbody tr .product-thumbnail img {
    width: 77px;
    height: 74px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cart-table .table tbody tr .product-name a {
    color: var(--title-color);
    font-weight: 500;
}

.cart-table .table tbody tr .product-name a:hover {
    color: var(--primary);
}

.cart-table .table tbody tr .product-quantity .quantity-selector {
    width: 120px;
    background-color: var(--bg-color);
}

.cart-table .table tbody tr .product-quantity .quantity-selector button {
    border: none;
    width: 40px;
    height: 40px;
    color: var(--title-color);
    background-color: transparent;
}

.cart-table .table tbody tr .product-quantity .quantity-selector input {
    border: none;
    width: 40px;
    height: 40px;
    color: var(--title-color);
    background-color: transparent;
}

.cart-table .table tbody tr .product-remove .remove {
    border: none;
    padding: 0;
    background-color: transparent;
    color: var(--primary);
    font-size: 20px;
}

.cart-buttons .continue-shopping-box .default-btn {
    background-color: var(--primary);
    padding: 14px 26px;
}

.cart-buttons .form-control {
    height: 60px;
    padding: 12px 20px;
    border-radius: 10px;
}

.cart-buttons .form-control::-moz-placeholder {
    color: var(--paragraph);
}

.cart-buttons .form-control::placeholder {
    color: var(--paragraph);
}

.cart-buttons .form-control:focus {
    border-color: var(--primary);
}

.summery-content {
    padding: 25px;
    border: 1px solid var(--primary);
}

.summery-content .summery-icon ul li {
    padding: 15px 20px;
    border: 1px solid rgba(40, 43, 45, 0.1);
    position: relative;
    color: var(--title-color);
    margin-bottom: 15px;
}

.summery-content .summery-icon ul li span {
    top: 50%;
    right: 20px;
    position: absolute;
    transform: translateY(-50%);
    color: var(--paragraph);
}

.summery-content .summery-icon ul li:last-child {
    margin-bottom: 0;
}

.summery-content .summery-icon ul li:last-child span {
    color: var(--title-color);
}

/*
Checkout Page
================================================================*/

.rating.p-4 {
    padding: 16px 24px !important;
    background-color: var(--primary);
}

.rating a {
    color: var(--white);
    font-size: var(--font-size);
    font-weight: 400;
}

.checkout-form {
    padding: 30px;
    border: 1px solid rgba(217, 216, 216, 0.5);
}

.checkout-form .form-label {
    color: var(--title-color);
    margin-bottom: 10px;
}

.checkout-form .textarea {
    min-height: 85px;
}

.checkout-form option {
    color: var(--dark);
}

.summarize-order {
    padding: 20px 40px 30px;
    border-radius: 10px;
    background-color: var(--bg-color);
}

.summarize-order .warp {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(217, 216, 216, 0.5);
}

.summarize-order .br-1 {
    margin-top: 15px;
    padding-top: 15px;
}

.summarize-order .list-total li {
    margin-bottom: 15px;
    color: var(--title-color);
}

.summarize-order .list-total li:last-child {
    margin-bottom: 0;
}

.payment-method {
    padding: 30px 40px;
    border-radius: 10px;
    background-color: var(--bg-color);
}

.payment-method .form-check {
    font-size: 18px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 20px;
}

.payment-method .form-check .form-check-input {
    border-radius: 0;
    background-color: var(--bg-color);
    border: 1px solid rgb(217, 216, 216);
}

.payment-method .form-check .form-check-input:focus {
    border-color: var(--primary);
}

.payment-method .form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/*
Contact Page
================================================================*/

.adress-area .adress-card .icon {
    width: 80px;
    height: 80px;
    font-size: 45px;
    color: var(--white);
    border-radius: 20px;
    background-color: var(--info-color);
}

/*
Default As Button CSS
================================================================================*/

.default-swiper-button .swiper-button-next,
.default-swiper-button .swiper-button-prev {
    font-size: 24px;
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--info-color);
    transition: var(--transition);
}

.default-swiper-button .swiper-button-next::after,
.default-swiper-button .swiper-button-prev::after {
    display: none;
}

.default-swiper-button .swiper-button-next:hover,
.default-swiper-button .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
}

.default-swiper-button .swiper-button-next:active,
.default-swiper-button .swiper-button-prev:active {
    color: var(--white);
}

.default-swiper-button .swiper-button-next {
    left: auto;
    right: 0;
    background-color: var(--primary);
}

.default-swiper-button .swiper-button-prev {
    left: auto;
    right: 60px;
}

/*
Terms & Condition Page
================================================================================*/

.tpdefault-content .mt-1 {
    margin-top: 35px !important;
}

.tpdefault-content .mb-1 {
    margin-bottom: 30px !important;
}

/*
404 Error Page CSS
================================================================================*/

.error-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.error-area .container {
    max-width: 700px;
}

.error-area .error-content-wrap {
    z-index: 1;
    position: relative;
}

.error-area .error-content-wrap p {
    margin: 25px 0 35px;
    font-size: 20px;
    font-weight: 500;
}

.error-area .health-shape-1 {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

/*
Go Top Button CSS
=================================================*/

.go-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    cursor: pointer;
    top: 50%;
    right: 15px;
    color: var(--white);
    opacity: 0;
    font-size: 30px;
    text-align: center;
    visibility: hidden;
    z-index: 4;
    font-weight: 600;
    border-radius: 100%;
    transition: var(--transition);
    background-color: var(--primary);
    animation: border-transform 10s linear infinite alternate forwards;
}

.go-top.active {
    top: 92%;
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background-color: var(--info-color);
}

/*
Default Pagination CSS
============================================================*/

.default-pagination .pagination {
    justify-content: center;
}

.default-pagination .pagination .page-item {
    margin-right: 10px;
    border-radius: 0;
}

.default-pagination .pagination .page-item .page-link {
    font-weight: 500;
    border: none;
    color: var(--heading);
    width: 50px;
    height: 50px;
    font-weight: 500;
    border-radius: 100%;
    text-align: center;
    transition: var(--transition);
    background-color: rgba(29, 70, 249, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-pagination .pagination .page-item .page-link span {
    font-size: 20px;
    position: relative;
    top: 2px;
    right: 0;
    color: var(--heading);
    transition: var(--transition);
}

.default-pagination .pagination .page-item .page-link.active {
    border-color: var(--white);
    color: var(--white);
    background-color: var(--primary);
}

.default-pagination .pagination .page-item .page-link:hover {
    color: var(--white) !important;
    background-color: var(--primary);
}

.default-pagination .pagination .page-item .page-link:hover span {
    color: var(--white);
}

.default-pagination .pagination .page-item:last-child {
    margin-right: 0;
}

/*
Scroll Animation  Style
======================================================*/

.reveal {
    opacity: 0;
    transition: 0.6s;
    clip-path: polygon(0 0, 38% 0, 35% 100%, 0% 100%);
}

.reveal.active {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.reveal2 {
    opacity: 0;
    transition: 0.6s;
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 58% 100%);
}

.reveal2.active {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*
Preloader Area CSS
============================================================*/

.container-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.container-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.container-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 100%;
    border: 10px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--primary);
    height: 100px;
    margin: 0 auto 20px auto;
    width: 100px;
}

.container-preloader .animation-preloader .txt-loading {
    font: bold 60px "Playfair Display", serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.container-preloader .animation-preloader .txt-loading .characters {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.container-preloader .animation-preloader .txt-loading .characters:before {
    animation: characters 4s infinite;
    color: var(--primary);
    content: attr(preloader-text);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg);
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}

.container-preloader .loader-section {
    background-color: var(--white);
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
    left: 0;
}

.container-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes characters {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes wavy {

    0%,
    40%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-20px);
    }
}

/**/

@keyframes fillBars {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.spinBorder {
    animation: spinBorder 20s linear infinite;
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6%);
    }
}

.slideBorder {
    animation: slideBorder 3s linear infinite alternate;
}

@keyframes slideBorder {
    0% {
        left: 0;
        right: 0;
    }

    100% {
        left: 85%;
    }
}

.borderAnim {
    animation: borderAnim 2s infinite alternate ease-in-out;
}

@keyframes borderAnim {
    0% {
        width: 0;
    }

    100% {
        width: 44px;
    }
}

.bounce-y {
    animation: bounce-y 10s linear infinite;
}

@keyframes bounce-y {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounce-x {
    animation: bounce-x 10s linear infinite;
}

@keyframes bounce-x {
    0% {
        transform: translatex(0);
    }

    50% {
        transform: translatex(-30px);
    }

    100% {
        transform: translatex(0);
    }
}

.d-pop {
    animation: pop 0.3s 1;
}

@keyframes pop {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.simple-rotate {
    animation: simple-rotate1 10s 1s linear infinite alternate;
}

.shine-animation {
    animation: Shine 10s 1s linear infinite alternate;
}

@keyframes Shine {
    100% {
        left: 125%;
    }
}

@keyframes simple-rotate1 {
    100% {
        transform: rotate(360deg);
    }
}

.rotateme {
    animation: rotateme 7s linear infinite;
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.movebounce {
    animation: movebounce 1s linear infinite;
}

@keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.movebounce1 {
    animation: movebounce1 1s linear infinite;
}

@keyframes movebounce1 {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

.ripple {
    animation: ripple 2s infinite linear;
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.border-transform {
    animation: border-transform 10s linear infinite alternate forwards;
}

@keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

/*# sourceMappingURL=style.css.map */