@charset "UTF-8";


:root {
    --default-font: "Lato",  sans-serif;
    --heading-font: "Lato",  sans-serif;
    --nav-font: "Lato",  sans-serif;
    --primary-font: "Lato",  sans-serif;

}

:root {
    --background-color: #ffffff;
    --heading-color: #2d465e;
    --accent-color: #0a4db8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --default-color: color-mix(in srgb, var(--heading-color), transparent 20%);

    --nav-color: #212529;
    --nav-hover-color: #0a4db8;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #0a4db8;

}


.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-check {
    display: flex;
    align-items: center;
}
.mjx-container {
    margin: 0 0;
}
.light-background {
    --background-color: color-mix(in srgb, var(--accent-color), transparent 95%);;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #22140a;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #492b16;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

p {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 18px;
    text-align: start;
}

.Madrasti {
    color: var(--heading-color);
}
.Madrasti span {
    color: var(--accent-color);
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    text-align: start;
}


/* whatsapp btn */
*[dir="ltr"] .whatsapp{
    position: fixed;
    font-size: 16px;
    right: 40px;
    bottom: 65px;
    z-index: 9999;
    background-color: var(--accent-color);
    border-radius:25px 25px 25px 0px ;
    padding: 1px 10px;
}

*[dir="rtl"] .whatsapp{
    position: fixed;
    font-size: 16px;
    left: 40px;
    bottom: 65px;
    z-index: 9999;
    background-color: var(--accent-color);
    border-radius:25px 25px 25px 0px ;
    padding: 1px 10px;
}
.whatsapp i,
.whatsapp .chat{
    display: inline-block;
}
.whatsapp:hover{
    background-color: var(--heading-color);
}
.whatsapp a{
    text-decoration: none !important;
    color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 6px 0;
    gap: 10px;
}
.whatsapp .chat{
    font-size: 12px;
}
@media (max-width: 768px){
    .whatsapp .chat {
        display: none;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
    color: var(--nav-color);
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
}

.mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
}

.navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    transition: 0.3s;
    width: 300px;
    overflow: hidden;
    background-color: var(--nav-mobile-background-color);
}

.navmenu ul {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
}

.navmenu a,
.navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
}

.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
    right: 0;
    font-size: 30px;

    width: 30px;
    height: 30px;
    display: flex;
    margin: 0 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

*[dir="rtl"] .mobile-nav-active .mobile-nav-toggle {
    right: 232px;
}



.mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--nav-mobile-background-color);
    transition: 0.3s;
    overflow-y: auto;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color:
        color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.introductory {
    position: relative;
    overflow: hidden;
}

.introductory .introductory-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
    line-height: 1.2;
}

@media (max-width: 992px) {
    .introductory .introductory-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .introductory .introductory-content h2 {
        font-size: 32px;
    }
}

.introductory .introductory-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
    line-height: 1.2;
    text-align: start;
}

.introductory .introductory-content h1 span {
    color: var(--accent-color);
    position: relative;
}

.introductory .introductory-content h1 span::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    z-index: -1;
}

.introductory .introductory-content .subtitle {
    font-size: 20px;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    margin-bottom: 24px;
    font-weight: 500;
    text-align: justify;
}

@media (max-width: 768px) {
    .introductory .introductory-content .subtitle {
        font-size: 18px;
    }
}

.introductory .introductory-content .author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.introductory .introductory-content .author span {
    font-size: 18px;
    color: var(--default-color);
}

.introductory .introductory-content .author h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.introductory .introductory-content .book-description {
    margin-bottom: 32px;
    color: var(--default-color);
    font-size: 18px;
    line-height: 1.6;
}

.introductory .introductory-content .cta {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.introductory .introductory-content .cta .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    place-items: center;
}

.introductory .introductory-content .cta .btn-primary:hover {
    background-color:
        color-mix(in srgb, var(--accent-color), transparent 20%);

    transform: translateY(-3px);
}

.introductory .introductory-content .cta .btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    place-items: center;
}

.introductory .introductory-content .cta .btn-outline:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
    color: var(--default-color);
}

.introductory .introductory-cover {
    position: relative;
    transform: rotate(-3deg);
    transition: all 0.5s ease;
    max-width: 400px;
}

.introductory .introductory-cover .introductory-cover-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(15px);
    border-radius: 50%;
    z-index: -1;
}

.introductory .introductory-cover:hover {
    transform: rotate(0) translateY(-10px);
}

.introductory .introductory-cover:hover img {
    filter: brightness(1.05);
    transition: 0.3s;
}

@media (max-width: 992px) {
    .introductory  {
        padding: 100px 0 60px;
    }

    .introductory .introductory-cover {
        margin-top: 40px;
        transform: rotate(0);
    }

    .introductory .introductory-cover:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .introductory {
        text-align: center;
        padding: 80px 0 40px;
    }

    .introductory .introductory-content .author {
        justify-content: center;
    }

    .introductory .introductory-content .hero-cta {
        justify-content: center;
    }

    .introductory .introductory-cover {
        margin: 40px auto 0;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding: 80px 0;
    overflow: hidden;
}

.features .feature-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 40px;
    background-color: var(--accent-color);
    transition: height 0.3s ease;
}

.features .feature-card .feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .feature-card .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.features .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.features .feature-card p {
    color: var(--default-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features .feature-card:hover::before {
    height: 70px;
}

.features .feature-chapters {
    margin-top: 50px;
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features .feature-chapters h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.features .feature-chapters h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--accent-color);
}

.features .feature-chapters .chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .features .feature-chapters .chapters-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

*[dir="rtl"] .features .feature-chapters .chapters-grid .chapter-item {
    text-align: right;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

*[dir="ltr"] .features .feature-chapters .chapters-grid .chapter-item {
    text-align: left;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .feature-chapters .chapters-grid .chapter-item .chapter-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.features .feature-chapters .chapters-grid .chapter-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.features .feature-chapters .chapters-grid .chapter-item p {
    font-size: 18px;
    color: var(--default-color);
    margin-bottom: 0;
}

.features .feature-chapters .chapters-grid .chapter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
    .features .section-intro h2 {
        font-size: 28px;
    }

    .features .feature-chapters {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .features .section-intro h2 {
        font-size: 24px;
    }

    .features .feature-card {
        padding: 25px;
    }

    .features .feature-card .feature-icon {
        width: 50px;
        height: 50px;
    }

    .features .feature-card .feature-icon i {
        font-size: 20px;
    }

    .features .feature-card h3 {
        font-size: 18px;
    }

    .features .feature-chapters {
        padding: 25px;
    }

    .features .feature-chapters h3 {
        font-size: 22px;
    }
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding: 80px 0;
    overflow: hidden;
}


.contact .contact-form h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.contact .contact-form p {
    color: var(--default-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 35px;
    position: relative;
    overflow: hidden;
}


.contact .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 15px;
}

.contact .contact-form-wrapper .contact-form .form-group label {
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-size: 18px;
    display: block;
}

.contact .contact-form-wrapper .contact-form .form-group .form-control {
    height: auto;
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 18px;
}

.contact .contact-form-wrapper .contact-form .form-group .form-control:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: none;
}

.contact .contact-form-wrapper .contact-form .form-group .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form-wrapper .contact-form .form-group textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact .contact-form-wrapper .contact-form .form-check {
    margin-bottom: 20px;
}

.contact .contact-form-wrapper .contact-form .form-check .form-check-input {
    margin-top: 0.3em;
}

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

.contact .contact-form-wrapper .contact-form .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .contact-form .form-check .form-check-label {
    color: var(--default-color);
    font-size: 18px;
    padding-left: 5px;
}

.contact .contact-form-wrapper .contact-form button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact .contact-form-wrapper .contact-form button:hover {
    background-color:
        color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
}

@media (max-width: 992px) {

    .contact .contact-card,
    .contact .newsletter-card,
    .contact .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact .contact-card h3 {
        font-size: 20px;
    }

    .contact .newsletter-card h3 {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product {
    padding: 80px 0;
    overflow: hidden;
}

.product .product-wrapper {
    background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    border-radius: 15px;
    padding: 50px;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product .product-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

@media (max-width: 768px) {
    .product .product-wrapper {
        padding: 30px;
        text-align: center;
    }
}

.product .product-image {
    position: relative;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.product .product-image img {
    border-radius: 8px;
    max-width: 100%;
}

.product .product-image:hover {
    transform: rotate(0) translateY(-10px);
}

@media (max-width: 768px) {
    .product .product-image {
        margin: 0 auto 30px;
        max-width: 200px;
    }
}

.product .product-content {
    position: relative;
    z-index: 1;
}

.product .product-content .badge {
    display: inline-block;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product .product-content h2 , .product .product-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .product .product-content h2 , .product .product-content h3{
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product .product-content h2 , .product .product-content h3 {
        font-size: 24px;
    }
}

.product .product-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: justify;
}

.product .product-content .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.product .product-content .product-features .feature-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.product .product-content .product-features .feature-item i {
    font-size: 18px;
    margin-right: 8px;
}

.product .product-content .product-features .feature-item span {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .product .product-content .product-features {
        justify-content: center;
    }

    .product .product-content .product-features .feature-item {
        margin-right: 0;
    }
}


.product .product-content .product-buttons {
    display: flex;
    gap: 15px;
}

.product .product-content .product-buttons .btn-primary {
    background-color: var(--contrast-color);
    color: var(--accent-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product .product-content .product-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    transform: translateY(-3px);
}

.product .product-content .product-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--contrast-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product .product-content .product-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .product .product-content .product-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product .product-content .product-buttons .btn-primary,
    .product .product-content .product-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product {
        padding: 60px 0;
    }
}


.invalid-feedback {
    display:block;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
}

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

.form-check .form-check-input {
    margin-left: -1.5em;
    margin-right: -1.5em;
    border: 3px solid transparent;
    box-shadow:0 0 5px var(--accent-color);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    padding-right: 1.5em;
    margin-bottom: .125rem;
}
.form-check-input:checked {
    background-color: var(--heading-color);
    border-color: var(--heading-color);
}


#register {
    width: 100%;
    padding: 75px 0 36px 0;
    overflow: hidden;
    position: relative;
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);;
}


#register .item-position {
    display: inline-grid;
}
#register .logo-position{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .logo{
    width: 250px;
    height: 150px;
    background: rgba(93, 93, 93, 0.4);
    /* #064469 */
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}




#register .btn-register {
    height: 102px;
    margin: 29px 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    border-radius: 10px;
    width: 200px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .btn-register a {
    color: inherit;
    text-decoration: none;
}

#register .btn-register:hover {
    background: rgb(255 255 255 / 0%);
    border: 2px solid #064469;
}

@media (max-width: 1250px) {

}
@media (max-width: 500px) {

    #register .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}

#register .bg-register {
    background: var(--background-color);
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#register .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}
#register .required-label i{
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--accent-color);
    padding-right: 0.25rem;
}

#register .upload__box {
    position: relative;
}

#register .upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#register .upload__btn {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    height: 64px;
    background: #2E4049;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

#register .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

#register .upload__btn-box {
    margin-bottom: 10px;
}

#register .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#register .upload__img-box {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 12px;
}

#register .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

#register .upload__img-close:after {
    content: '\2716';
    font-size: 18px;
    color: white;
}

#register .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

#register .document-bg {
    background-color: #EFEFEF;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
}
#register .document-bg a{
    color: var(--primary-color);
    line-height: 30px;
    font-size: 18px;
}
#register .document-bg a:hover{
    color: var(--accent-color);
}

#register .document-bg:hover {
    background-color: #afb0c14f;
    transition: background-color 0.3s ease;
}
#register .link-file {
    color: var(--accent-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
#register .title h2  {
    color: var(--accent-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

#register .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .form-control:focus {
    height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .form-control:-webkit-autofill {
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--multiple  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    min-height: 32px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

.launching .register {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--accent-color);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;

    text-align: center;
    border: 0;
    border-radius: 16px;
}
.launching .register:hover {
    background-color: var(--background-color) !important;
    color: var(--accent-color);
    border: 2px solid transparent;
    box-shadow: 0 0 5px var(--accent-color);
}

#register .submit {
    font-family: var(--primary-font);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    width: 100%;
    height: 64px;

    text-align: center;
    border: 0;
    border-radius: 16px;
}
#register .submit:hover {
    background-color: var(--contrast-color) !important;
    color: var(--accent-color);
    border: 2px solid transparent;
    box-shadow: 0 0 5px var(--accent-color);
}

#register .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    color: var(--accent-color);
}
#register .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--accent-color);

}
#register h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;

    color: var(--accent-color);
}

/* checkbox */
#register .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--accent-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}
#register .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
#register .form-control-checkbox-group {
    display: flex;
    align-items: center;
}
#register .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    padding-left: 12px;
}
#register .form-check-label a{
    color: #212121;
}
#register .logo-img {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#register .logo-img img {
    width: 200px;
}




.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.user-avatar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    margin: 0 30px;
}

.user-avatar a {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 12px;
    text-align: right;
    text-transform: capitalize;
    color: #000000;
    padding: 10px 5px;
    border: 2px solid #000000;
}

.logout-button a {
    color: #333;
    text-decoration: none;
}
.profile {
    margin: 0 30px;
}
@media (max-width: 990px) {
    .logout-button {
        margin-right: 0;
    }
    .user-avatar {
        justify-content: start;
        margin: 0 20px;
    }
    .profile {
        margin: 0;
    }
}


input.-internal-autofill-selected {
    background-color: transparent !important;
}


#pagination-links .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #064469;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #064469;
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: #064469;
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem #064469;;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #064469;
    --bs-pagination-active-border-color: #064469;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.progress, .progress-stacked {
    height: 11px;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #064469;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: #064469;
    border-radius: var(--bs-progress-border-radius);
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    padding: 0.9rem 0.75rem;
    overflow: hidden;
    line-height: 1.5;
    color: #495057;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 48px;padding: 0.9rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31px;
    position: absolute;
    top: 6px;
    right: 1px;
    width: 20px;
}
.icon_close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: var(--accent-color);
    font-family: var(--primary-font);
    font-size: 18px;
}


.form-switch {
    padding-left: 2.5em;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}






.launching {

    height: max-content;
}

.launching .launch-img {
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    height:300px;
}
.launching .title {
    font-family: var(--title-font) !important;
    color: var(--accent-color);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
}


.subjects {
    padding: 60px 0;
    overflow: hidden;
}
.subjects .back {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.subjects .subject-element {
    margin-top: 50px;
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.subjects .subject-element h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.subjects .subject-element h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: var(--accent-color);
}


.subjects .subject-element .element-grid {
    gap: 25px;
}

@media (max-width: 768px) {
    .subjects .subject-element .element-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.subjects .subject-element .element-grid .element-item {
    text-align: start;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.subjects .subject-element .element-grid .element-item .element-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.subjects .subject-element .element-grid .element-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.subjects .subject-element .element-grid .element-item p {
    font-size: 18px;
    color: var(--default-color);
    margin-bottom: 0;
}

.subjects .subject-element .element-grid .element-item:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {

    .subjects .subject-element {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .subjects .subject-element {
        padding: 25px;
    }

    .subjects .subject-element h3 {
        font-size: 22px;
    }
}

.subjects  .viewResults  {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--accent-color);
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    margin: 10px 4px;
    border-radius: 16px;
    width: 100%;
}
.subjects  .viewResults:hover  {
    background-color: var(--background-color) !important;
    color: var(--accent-color);
    border: 2px solid transparent;
    box-shadow: 0 0 5px var(--accent-color);
}


.subjects  .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
    margin: 0 5px;
}

.subjects  .btn-primary:hover {
    background-color:
        color-mix(in srgb, var(--accent-color), transparent 20%);

    transform: translateY(-3px);
}




.subjects #nextBtn ,.subjects .submit {
    color: var(--background-color);
    font-family: var(--primary-font);
    background: var(--accent-color);
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    border-radius: 16px;
}

.subjects #prevBtn  {
    color: var(--background-color);
    font-family: var(--primary-font);
    background: var(--accent-color);
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    border-radius: 16px;
}

.subjects #nextBtn:hover , .subjects .submit:hover {
    background-color: var(--background-color) !important;
    color: var(--accent-color);
    border: 2px solid transparent;
    box-shadow: 0 0 5px var(--accent-color);
}
.subjects #prevBtn:hover  {
    background-color: var(--background-color) !important;
    color: var(--accent-color);
    border: 2px solid transparent;
    box-shadow: 0 0 5px var(--accent-color);
}

.subjects .subject-element .element-grid .question{

    background-color:
        color-mix(in srgb, var(--accent-color), transparent 95%);
}
.subjects .subject-element .element-grid .question .badge {
    background-color: var(--accent-color);
}

.subjects .subject-element .element-grid .question img {
    margin: 30px 0;
    width: auto;
    border-radius: 20px;
    height: 250px;
}
.footer {
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    font-size: 14px;
    position: relative;

}


.footer .footer-main {
    padding: 50px 0 0;
}

.footer .footer-main .footer-widget {
    margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
    line-height: 1.2;
}

.footer .footer-main .footer-widget .logo span {
    color: var(--accent-color);
    position: relative;
}

.footer .footer-main .footer-widget p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 18px;
}

.footer .footer-main .footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer .footer-main .footer-widget h5 {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin: 0 12px;
}

.footer .footer-main .footer-contact .contact-item span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
}

.footer .footer-bottom {
    padding: 25px 0;
}



.footer .footer-bottom .copyright {
    padding-top: 10px;
    font-size: 18px;
}

.footer .footer-bottom .copyright p {
    margin-bottom: 0;
}

.footer .footer-bottom .copyright p strong {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}



@media (max-width: 991.98px) {


    .footer .footer-main {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {

    .footer .footer-newsletter .newsletter-form button {
        padding: 0 20px;
        font-size: 14px;
    }


    .footer .footer-bottom .copyright {
        text-align: center;
    }

}
