:root {
    --primary: #c3912f;
    --primary-light: rgba(195, 145, 47, 0.1);
    --white: #ffffff;
    --black: #1d1a13;
}

/* Generic */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1350px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border: 1px solid transparent;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    color: var(--primary) !important;
    background-color: transparent !important;
    border-color: var(--primary) !important;
}

.btn-white {
    color: var(--primary);
    background-color: var(--white);
    border-color: var(--primary);
}

.btn-white:hover {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    border-color: var(--white) !important;
}

.section-title-row {
    margin-bottom: 40px;
}

.section-title-row h2 {
    font-size: 44px;
    font-weight: 700 !important;
    margin-bottom: 20px;
}

.section-title-row p {
    margin: 0;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
}
/* Generic */

/* Auth */
.authentication .navbar-brand {
    max-width: 350px;
}

/* Header */
header .navbar {
    box-shadow: none;
    border-bottom: 1px solid rgba(195, 145, 47, 0.4);
}

header .nav-link {
    font-size: 16px;
}

header .megamenu-item .dropdown-menu {
    margin-top: 2px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
/* Header */

/* Hero */
.hero-section {
    position: relative;
    padding: 150px 0;
    background: var(--primary-light);
    text-align: center;
    overflow: hidden;
}

.hero-section .hero-bg-left,
.hero-section .hero-bg-right {
    position: absolute;
}

.hero-section .hero-bg-left {
    left: 0;
    top: 0;
}

.hero-section .hero-bg-right {
    top: 200px;
    right: 0;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 500 !important;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.7);
}

.hero-section .btn {
    border-radius: 8px;
}

.hero-section .feature--items {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.hero-section .feature-card {
    position: relative;
    text-align: center;
    height: 100%;
    padding: 30px 55px;
    background-color: var(--white);
    border: 12px solid rgba(195, 145, 47, 0.2);
    border-radius: 30px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.hero-section .feature-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px 0px;
    transform: translateY(-4px);
}

.hero-section .feature-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 0 auto;
}

.hero-section .feature-card .feature-title {
    margin-top: 25px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}
/* Hero */

/* Campaign Slider */
.campaign-slider-v2 {
    padding: 100px 0 0;
}

.campaign-slider-v2 .swiper-navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.campaign-slider-v2 .swiper-navigation-wrapper .swiper-button {
    background-color: var(--primary);
    transition: all 0.3s ease-in;
}

.campaign-slider-v2
    .swiper-navigation-wrapper
    .swiper-button.swiper-button-prev {
    left: 0;
}

.campaign-slider-v2
    .swiper-navigation-wrapper
    .swiper-button.swiper-button-next {
    right: 0;
}

.campaign-slider-v2 .swiper-navigation-wrapper .swiper-button::after {
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease-in;
}

.campaign-slider-v2 .swiper-navigation-wrapper .swiper-button:hover {
    background-color: var(--white);
}

.campaign-slider-v2 .swiper-navigation-wrapper .swiper-button:hover::after {
    color: var(--black);
}
/* Campaign Slider */

/* Why us */
.why-us {
    padding-top: 100px;
}

.why-us .nav-pills {
    gap: 30px;
}

.why-us .nav-pills .nav-link {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(29, 26, 19, 0.2);
    border-radius: 100px;
    color: var(--black);
}

.why-us .nav-pills .nav-link.active {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.why-us .arrow {
    float: right;
    font-size: 20px;
}

.why-us .tab-content {
    padding: 85px 40px;
    border: 1px solid rgba(29, 26, 19, 0.2);
    background-color: #ffffff;
    border-radius: 20px;
}

.why-us .tab-icon {
    width: 102px;
    height: 102px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-us h4 {
    font-size: 28px;
    font-weight: 600 !important;
    color: var(--black);
    margin-bottom: 20px;
}

.why-us p {
    color: var(--black);
    margin-bottom: 20px;
}
/* Why us */

/* Crowdfunding Platform */
.crowdfunding-platform {
    padding: 100px 0;
}

.crowdfunding-platform--wrapper {
    display: flex;
    align-items: center;
    gap: 135px;
    max-width: 90%;
}

.crowdfunding-platform--content h2 {
    font-size: 44px;
    font-weight: 600 !important;
    line-height: 1.7;
    margin-bottom: 10px;
}

.crowdfunding-platform--content p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.crowdfunding-platform--image {
    flex: 0 0 430px;
    max-width: 430px;
}
/* Crowdfunding Platform */

/* Charity Feature */
.charity-feature {
    padding: 100px 0;
    background: var(--primary-light);
}

.charity-feature--items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.charity-feature-card {
    padding: 24px;
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 20px;
}

.charity-feature-card--title {
    font-size: 20px;
    font-weight: 600 !important;
    margin-bottom: 15px;
}

.charity-feature-card--description {
    line-height: 1.8;
    margin: 0;
}
/* Charity Feature */

/* Support */
.support {
    padding: 100px 0;
}

.support--items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    text-align: center;
}

.support--item {
    padding: 40px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support--item .contact-form .title {
    text-align: left;
}

.support--item .contact-form .form-group {
    margin-bottom: 25px;
}

.support--item .contact-form .form-control {
    width: 100%;
    padding: 18px 16px;
    background-color: transparent;
    border: 1px solid rgba(29, 26, 19, 0.2);
    font-size: 16px;
    margin-bottom: 15px;
}

.support--item .contact-form .form-control::-webkit-input-placeholder {
    opacity: 0.5;
}

.support--item .contact-form .form-control::-moz-placeholder {
    opacity: 0.5;
}

.support--item .contact-form .form-control:-ms-input-placeholder {
    opacity: 0.5;
}

.support--item .contact-form .form-control:-moz-placeholder {
    opacity: 0.5;
}

.support--item .contact-form input[type="button"] {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border: 1px solid var(--primary);
    color: var(--white);
    background-color: var(--primary);
    border-radius: 30px;
}

.support--item .contact-form input[type="button"]:hover {
    color: var(--primary) !important;
    background-color: transparent !important;
    border-color: var(--primary) !important;
}

.support--item .contact-form textarea {
    resize: none;
}

.support--item .support-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.support--item .title {
    font-size: 24px;
    font-weight: 600 !important;
    margin-bottom: 20px;
}

.support--item p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.support--item .btn {
    margin-top: 20px;
}
/* Support */

/* Footer */
.footer {
    padding: 50px 0;
    background-color: #fdfbf8;
}

.footer__upper {
    padding-bottom: 30px;
}

.footer__upper-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.footer__upper-wrapper .logo {
    flex: 0 0 245px;
    max-width: 245px;
}

.footer__middle {
    padding: 30px 0 60px;
    border-top: 1px solid rgba(29, 26, 19, 0.2);
    border-bottom: 1px solid rgba(29, 26, 19, 0.2);
}

.footer__middle-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 135px;
}

.footer-nav .title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600 !important;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-nav ul li a {
    color: var(--black);
    text-decoration: none;
}

.footer-nav ul li a:hover {
    color: var(--primary);
}

.footer__bottom {
    padding-top: 30px;
}

.footer__bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__bottom-wrapper .credit-text {
    font-size: 16px;
}

.footer__bottom-wrapper .quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.footer__bottom-wrapper .quick-links ul li {
    position: relative;
}

.footer__bottom-wrapper .quick-links ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 3px;
    right: -10px;
    width: 1px;
    background: currentColor;
}

.footer__bottom-wrapper .quick-links ul li a {
    color: var(--black);
    font-size: 16px;
}

.footer__bottom-wrapper .quick-links ul li a:hover {
    color: var(--primary);
}
/* Footer */

/* < 1200px */
@media (max-width: 1199px) {
    .hero-section {
        padding: 100px 0;
    }
    .hero-section .feature-card {
        padding: 30px 25px;
    }
    .hero-section .feature-card .feature-title {
        font-size: 20px;
    }
    .crowdfunding-platform--wrapper {
        max-width: 100%;
    }
    .crowdfunding-platform--image {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

/* < 992px */
@media (max-width: 991px) {
    .section-title-row h2,
    .crowdfunding-platform--content h2 {
        font-size: 28px;
    }
    .hero-section {
        padding: 50px 0;
    }
    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section h1 br {
        display: none;
    }
    .hero-section .hero-bg-left,
    .hero-section .hero-bg-right {
        max-width: 100px;
    }
    .hero-section .feature--items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    .hero-section .feature-card .icon {
        width: 55px;
        height: 55px;
    }
    .campaign-slider-v2 {
        padding: 50px 0 0;
    }
    .why-us {
        padding-top: 50px;
    }
    .why-us .nav-pills {
        gap: 15px;
    }
    .why-us .nav-pills .nav-link {
        font-size: 15px;
    }
    .why-us .arrow {
        font-size: 14px;
    }
    .why-us .tab-content {
        padding: 35px;
    }
    .why-us .tab-icon {
        width: 70px;
        height: 70px;
        padding: 20px;
    }
    .why-us h4 {
        font-size: 24px;
    }
    .crowdfunding-platform,
    .charity-feature,
    .support {
        padding: 50px 0;
    }
    .crowdfunding-platform--wrapper {
        gap: 30px;
    }
    .charity-feature--items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .charity-feature-card--description {
        line-height: 1.5;
    }
    .footer__upper-wrapper,
    .footer__bottom-wrapper .quick-links ul {
        justify-content: center;
    }
    .footer__bottom {
        padding-top: 0;
    }
    .footer__bottom-wrapper {
        gap: 10px;
        flex-direction: column-reverse;
    }
    .support--item .title {
        font-size: 20px;
    }
    .support--item {
        padding: 30px;
    }
    .support--item .contact-form .form-group {
        margin-bottom: 15px;
    }
}

/* < 768px */
@media (max-width: 767px) {
    .crowdfunding-platform--wrapper {
        flex-direction: column-reverse;
    }
    .crowdfunding-platform--image {
        flex: none;
    }
    .support--items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* < 576px */
@media (max-width: 575px) {
    .hero-section .feature--items,
    .charity-feature--items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
