body {
    font-family: "Montserrat", Arial, sans-serif !important;
}

p {
    font-family: "Montserrat", Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Chau Philomene One", Arial, sans-serif !important;
}

section {
    margin: 50px 0px;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1A19;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 190px;
    padding: 30px 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-loader-card img {
    width: 118px;
    max-height: 86px;
    object-fit: contain;
}

.site-loader-ring {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: #1677ff;
    border-radius: 50%;
    animation: siteLoaderSpin 0.8s linear infinite;
}

.site-loader-card span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body.site-loading {
    overflow: hidden;
}

@keyframes siteLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    .site-loader,
    .site-loader-ring {
        transition: none;
        animation: none;
    }
}


/* all cta */

.btn-1 {
    background-color: #2469EA;
    padding: 12px 40px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    font-weight: 700;
}

.hero-section .btn-2 {
    color: #000;
}

.btn-2 {
    background-color: #fff;
    padding: 12px 40px;
    text-align: center;
    color: #2469EA;
    text-decoration: none;
    display: inline-flex;
    font-size: 16px;
     font-weight: 700;
}

/* featured */
.featured-section .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    font-weight: 700;
}

.featured-section .product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-section .card-image {
    width: 100%;
    display: block;
}

.featured-section .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 5%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.65) 100%,
            rgba(0, 0, 0, 0.99) 100%);

    opacity: 0;
    transition: all 0.4s ease;
}

.featured-section .product-card:hover .overlay {
    opacity: 1;
}

.featured-section .card-text {
    position: absolute;
    top: 119px;
    max-width: 320px;
    color: #ffffff;
    left: 20px;
}

.featured-section .card-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.featured-section .card-text p {
    font-size: 14px;
    line-height: normal;
    margin: 0;
}

/* cta-section */
.cta-section {
    background-image: url("../images/home/cta-bg3.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 500px; */
    display: flex-end;
    /* justify-content: flex-end; */
    padding-top: 50px;
}

.cta-section .cta-content {
    color: #ffffff;
    /* padding-top: 140px; */
    /* padding-bottom: 120px; */
    /* padding-left: 15px; */
}

.cta-section .cta-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: sans-serif;
}

.cta-section .cta-heading-accent {
    color: #d4ee2f;
}

.cta-section .cta-heading-main {
    color: #ffffff;
}

.cta-section .cta-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0.95;
}


.cta-section .btn-1:hover {
    background-color: #f0f0f0;
}

.cta-section .cta-image img {
    height: 546px;
}

@media (max-width: 767px) {
    .cta-section .cta-image img {
        height: 100%;
    }
}

@media (max-width: 992px) {
    br {
      display: none !important;
    }
}
