@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --heading-font: "Raleway", serif;
    --body-font: "Roboto", sans-serif;
    --white: 0 0% 100%;
    --light-h: 0;
    --light-s: 1%;
    --light-l: 53%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --black-h: 0;
    --black-s: 0%;
    --black-l: 0%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --white-h: 0;
    --white-s: 0%;
    --white-l: 100%;
    --white: var(--white-h) var(--white-s) var(--white-l);
    --heading-color: var(--black);
    --body-color: var(--light);
    --border-color: 0 0% 88%;
    --section-bg: 208 100% 97%;
    --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
    --base: #db1a24;
    --secondary: #ffee00;
}

/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--white));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-weight: 400;
    margin: 0;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.1;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.75rem, 0.1327rem + 3.3694vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 0.3542rem + 2.6474vw, 3rem);
}

h3 {
    font-size: clamp(1.375rem, 0.3353rem + 2.1661vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 0.5569rem + 1.444vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 0.7784rem + 0.722vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.25rem);
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: 1.3;
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: #0667f6;
}

a:hover {
    color: #2f83ff;
}

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

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

.fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-end,
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.flex-align {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-between,
.header-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 1199px) {
    .section-heading {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

.section-heading__name {
    margin-bottom: 6px;
    background: linear-gradient(-225deg, var(--base) 0%, var(--secondary) 29%, var(--base) 67%, #15ff36 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textshorov 10s linear infinite;
    font-weight: 600;
    font-family: var(--hand-write);
}

.section-heading__title {
    position: relative;
    padding-bottom: 10px;
}

@keyframes textshorov {
    100% {
        background-position: 200% center;
    }
}

.section-heading__desc {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-left {
    text-align: left;
}

.section-heading.style-left .section-heading__title::before {
    left: 0;
    transform: translateX(0);
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

:root {
    --p-y: 120px;
    --p-60: 60px;
}

@media screen and (max-width: 1399px) {
    :root {
        --p-y: 100px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --p-y: 80px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --p-y: 60px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --p-y: 40px;
    }
}

@media screen and (max-width: 1399px) {
    :root {
        --p-60: 50px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --p-60: 40px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --p-60: 30px;
    }
}

.py-120 {
    padding-block: var(--p-y);
}

.pt-120 {
    padding-top: var(--p-y);
}

.pb-120 {
    padding-bottom: var(--p-y);
}

.my-120 {
    margin-block: var(--p-y);
}

.mt-120 {
    margin-top: var(--p-y);
}

.mb-120 {
    margin-bottom: var(--p-y);
}

.py-60 {
    padding-block: var(--p-60);
}

.pt-60 {
    padding-top: var(--p-60);
}

.pb-60 {
    padding-bottom: var(--p-60);
}

.my-60 {
    margin-block: var(--p-60);
}

.mt-60 {
    margin-top: var(--p-60);
}

.mb-60 {
    margin-bottom: var(--p-60);
}

.text--base {
    color: var(--base);
}

.form--control {
    width: 100%;
    height: 40px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    border-radius: 5px;
    padding: 0 10px;
    outline: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.form--control:focus {
    border-color: var(--base);
}

.btn {
    padding: 12px 18px;
    border-radius: 4px;
    color: hsl(var(--white));
    border: none;
    outline: none;
    transition: all 0.3s linear;
    line-height: 1;
    font-size: 0.9125rem;
}

.btn:has(.icon) {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn--lg {
    padding: 16px 24px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .btn--lg {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.btn--base {
    background-color: var(--base);
    border: 1px solid var(--base);
}

.btn--base:hover {
    background-color: var(--base);
    border: 1px solid var(--base);
    color: hsl(var(--white));
}

.btn-outline--base {
    background-color: transparent;
    color: var(--base);
    border: 1px solid var(--base);
}

.btn-outline--base:hover {
    background-color: var(--base);
    color: hsl(var(--white));
    border: 1px solid var(--base);
}

.btn--white {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--white));
    color: hsl(var(--black));
}

.btn--white:hover {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--white));
    color: hsl(var(--black));
}

.pill {
    border-radius: 99px;
}

.section-devider {
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-devider::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    background-color: hsl(var(--black)/0.1);
    z-index: -1;
}

.section-devider-text {
    padding-inline: 32px;
    background-color: hsl(var(--white));
    display: inline-block;
}

.banner-section-content {
    min-height: clamp(11.25rem, 8.5rem + 13.75vw, 25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    width: 100%;
}

.banner-section-title {
    color: hsl(var(--white));
    margin-bottom: 24px;
}

.banner-section-desc {
    color: hsl(var(--white)/0.75);
}

.about-card {
    text-align: center;
}

.about-card.style-two {
    text-align: left;
}

.about-card.style-two .about-card-desc {
    margin: 0;
}

.about-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.about-card-title {
    margin-bottom: 24px;
    color: var(--base);
}

.about-card-desc {
    color: hsl(var(--black));
    font-family: var(--heading-font);
    max-width: 500px;
    margin: 0 auto;
}

.contact-aria {
    background-color: var(--base);
}

.contact-aria-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-aria-wrapper h6 {
    color: hsl(var(--white));
}

.feature-card-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    max-width: 160px;
    width: 100%;
    margin: 0 auto;
}

.video-section iframe {
    width: 100%;
    height: 600px;
}

@media screen and (max-width: 991px) {
    .video-section iframe {
        height: 400px;
    }
}

@media screen and (max-width: 575px) {
    .video-section iframe {
        height: 300px;
    }
}

.about-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--white));
}

.about-banner * {
    color: hsl(var(--white));
}

.content-box {
    padding: 20px;
    background-color: hsl(var(--black)/0.03);
    border-radius: 3px;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-card-thumb {
    transition: all linear 0.6s;
}

.team-card-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 0, 0, 0.164);
    transition: all linear 0.2s;
    opacity: 0;
    visibility: hidden;
}

.team-card:hover .team-card-content {
    opacity: 1;
    visibility: visible;
}

.team-card:hover .team-card-thumb {
    transform: scale(1.25);
}

.breadcrumb * {
    color: hsl(var(--white));
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-list li .text {
    position: relative;
}

.breadcrumb-list li .text::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: hsl(var(--white)/0.4);
    left: 0;
    bottom: -3px;
    width: 100%;
}

.breadcrumb-list li:not(:last-child) {
    margin-bottom: 12px;
}

.about-card.grid-style {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.about-card.grid-style .about-card-icon {
    flex-shrink: 0;
    font-size: 32px;
    height: 72px;
    width: 72px;
    display: grid;
    place-content: center;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 50%;
}

@media screen and (max-width: 1399px) {
    .about-card.grid-style .about-card-icon {
        font-size: 28px;
        height: 60px;
        width: 60px;
    }
}

.about-card.grid-style .about-card-content {
    flex: 1;
}

.about-card.grid-style .about-card-title {
    margin-bottom: 16px;
}

.content-image {
    overflow: hidden;
    border: 4px solid hsl(var(--black)/0.1);
    border-radius: 4px;
}

.contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media screen and (max-width: 575px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 32px;
    }
}

.contact-info {
    width: 320px;
}

@media screen and (max-width: 991px) {
    .contact-info {
        width: 200px;
    }
}

@media screen and (max-width: 575px) {
    .contact-info {
        width: 100%;
    }
}

.contact-right {
    flex: 1;
}

.fw-body {
    font-family: var(--heading-font);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .contact-info-card {
        gap: 16px;
    }
}

@media screen and (max-width: 575px) {
    .contact-info-card {
        padding: 20px;
        border-radius: 4px;
        border: 1px solid hsl(var(--black)/0.1);
    }
}

.contact-info-card .icon {
    color: #4f4f4f;
    font-size: 48px;
}

@media screen and (max-width: 991px) {
    .contact-info-card .icon {
        font-size: 32px;
    }
}

.contact-info-card .icon.whatsapp {
    color: #63c76a;
}

.contact-info-card .text {
    color: #4f4f4f;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
}

.contact-info-card:not(:last-child) {
    margin-bottom: 32px;
}

.whats-app-wrapper {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    font-size: 28px;
    display: grid;
    place-content: center;
    background-color: #63c76a;
    color: hsl(var(--white));
    position: fixed;
    bottom: 24px;
    right: 24px;
}

.whats-app-wrapper:hover {
    background-color: #45ad4c;
    color: hsl(var(--white));
}


.whatsapp-floater {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.2s ease;
}

.whatsapp-floater i {
    font-size: 22px;
}

.whatsapp-floater:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
    color: hsl(var(--white));
}

@media (max-width: 576px) {
    .whatsapp-floater {
        right: 10px !important;
        bottom: 16px;
    }
}

.ns__newsletter {
    padding: 1.5rem 0px;
    background-color: hsl(var(--black)/0.1);
    background-size: cover;
    text-align: center;
    background-repeat: repeat-x;
}

.ns__newsletter_title {
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--black));
    font-weight: 600;
    margin-bottom: 12px;
}

.ns__newsletter_text {
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--black)/0.75);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.ns__newsltter_form {
    max-width: 470px;
    margin: 0px auto;
    margin-top: 24px;
}

.ns__newsletter_inner {
    width: 100%;
    height: 50px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.ns__input {
    height: 100%;
    width: 100%;
    border: 1px solid #1919190d;
    outline: none;
    padding: 0px 16px;
    font-size: 14px;
}

.ns__input_btn {
    color: var(--base);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    font-size: 19px;
    cursor: pointer;
}

/* ============= Header Start Here ======================= */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand.logo img {
    max-width: 165px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand.logo img {
        max-width: 120px;
    }
}

.header {
    z-index: 999;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .header {
        padding: 16px 0;
    }
}

.header.fixed-header {
    transition: 0.3s linear;
    position: sticky;
    top: 0px;
    animation: slide-down 0.8s;
    width: 100%;
    box-shadow: 0px 2px 10px hsl(var(--black)/0.1);
    z-index: 999;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

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

.navbar {
    padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 992px) {
    .navbar-nav {
        position: relative;
    }

    .nav-item {
        position: relative;
    }

    .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-menu .nav-item {
        position: relative;
    }

    .nav-menu .nav-item.active .nav-link {
        color: var(--base) !important;
    }

    .nav-menu .nav-item.active .active {
        background-color: hsl(var(--base-l-300)) !important;
    }

    .nav-menu .nav-item:hover .nav-link {
        color: var(--base) !important;
    }

    .nav-menu .nav-item:hover .nav-link::before {
        width: 100%;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(180deg);
        transition: 0.2s;
    }

    .nav-menu .nav-item .nav-link {
        font-size: 16px;
        color: hsl(var(--black)/0.8) !important;
        padding: 24px 15px;
        position: relative;
        cursor: pointer;
        font-size: 0.9125rem;
        /* ======================== Style two ================ */
    }

    .nav-menu .nav-item .nav-link .nav-item__icon {
        transition: 0.3s;
        margin-left: 2px;
    }
}

@media screen and (min-width: 992px) and (max-width: 991px) {
    .nav-menu .nav-item .nav-link .nav-item__icon {
        margin-right: 6px;
    }
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        top: 100%;
        left: 0;
        padding: 0 !important;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 0.3s;
        overflow: hidden;
        border-radius: 0;
        min-width: 190px;
    }

    .dropdown-menu__list {
        border-bottom: 1px solid hsl(var(--black)/0.08);
    }

    .dropdown-menu__list:last-child {
        border-bottom: 3px solidvar(--base);
    }

    .dropdown-menu__link {
        padding: 12px 16px;
        transition: 0.3s;
        color: hsl(var(--black));
        font-size: 15px;
    }

    .dropdown-menu__link:focus,
    .dropdown-menu__link:hover {
        color: hsl(var(--white));
        background-color: var(--base);
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1);
    }
}

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 991px) {
    .navbar .offcanvas-header {
        background-color: var(--white);
    }

    .navbar .offcanvas-header .btn-close {
        opacity: 1;
    }

    .navbar .offcanvas-body {
        background-color: hsl(var(--white));
    }

    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .nav-menu .nav-item {
        text-align: left;
        display: block;
        position: relative;
        margin: 0;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(0deg) !important;
    }

    .nav-item:first-child {
        border-bottom: none;
    }

    .nav-item:last-child>a {
        border-bottom: 0;
    }

    .nav-item .nav-link {
        padding: 8px 13px !important;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        border-bottom: 0;
        color: hsl(var(--black));
        font-size: 16px;
        font-weight: 600;
        background: hsl(var(--base-two)/0.2);
        margin-bottom: 12px;
        border-radius: 6px;
    }

    .nav-item .nav-link.show[aria-expanded=true] {
        color: var(--base) !important;
    }

    .nav-item .nav-link.show[aria-expanded=true] i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 2px;
        width: 100%;
        margin: 0px !important;
        padding: 0 !important;
        border: 0;
        background-color: inherit;
        overflow: hidden;
    }

    .dropdown-menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .dropdown-menu li .dropdown-item {
        padding: 10px 0px;
        font-weight: 500;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        margin-left: 20px;
        color: hsl(var(--black));
    }

    .dropdown-menu li .dropdown-item:hover,
    .dropdown-menu li .dropdown-item:focus {
        background-color: transparent;
    }
}

.navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--black));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 2rem;
}

@media screen and (max-width: 767px) {
    .navbar-toggler.header-button {
        font-size: 1.5rem;
    }
}

.navbar-toggler.header-button:focus {
    box-shadow: none !important;
}

.navbar-toggler.header-button[aria-expanded=true] i::before {
    content: "\f00d";
}

/* ================================= Header Css End =========================== */
.header-dropdown {
    border: 1px solid hsl(var(--white)/0.15);
    border-radius: 12px;
    background-color: hsl(var(--section-bg));
}

@media screen and (max-width: 991px) {
    .header-dropdown {
        margin-bottom: 12px !important;
    }
}

.header-dropdown .dropdown-menu__list {
    border: 0;
}

@media screen and (max-width: 991px) {
    .header-dropdown .dropdown-menu__list .dropdown-item {
        border: 0 !important;
        padding: 7px 0;
    }
}

.login-registration-list {
    gap: 12px;
}

.header-top {
    padding-block: 16px;
    background-color: var(--base);
}

.social-links {
    gap: 12px;
}

.social-links a {
    color: hsl(var(--white));
}

/* ============= Footer Start Here ======================= */
.footer-area {
    background-color: var(--base);
    margin-top: auto;
}

.footer-item__desc {
    color: hsl(var(--white));
    font-size: 15px;
}

.footer-item__title {
    color: hsl(var(--white));
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Footer List Item */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu__item {
    display: block;
    padding-bottom: 16px;
}

.footer-menu__item:last-child {
    padding-bottom: 0;
}

.footer-menu__link {
    color: hsl(var(--white));
    font-size: 15px;
}

.footer-menu__link:hover {
    color: hsl(var(--white));
    text-decoration: underline;
}

/* Footer Contact */
.footer-contact-menu__item {
    display: flex;
    padding-bottom: 12px;
}

.footer-contact-menu__item:last-child {
    padding-bottom: 0;
}

.footer-contact-menu__item-icon {
    width: 15px;
    color: var(--base);
    font-size: 1.25rem;
}

.footer-contact-menu__item-content {
    width: calc(100% - 15px);
    padding-left: 15px;
    color: hsl(var(--white));
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
    background-color: hsl(var(--black));
    border-top: 1px solid hsl(var(--white)/0.2);
}

/* =============Bottom Footer End Here ======================= */
.social-list {
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
    .social-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .social-list {
        margin-top: 15px;
    }
}

/* ================================= Template Selection Css Start =========================== */
::selection {
    color: hsl(var(--white));
    background: var(--base);
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.social-list__link {
    transition: 0.3s;
    cursor: pointer;
    color: hsl(var(--white));
    font-size: 20px;
}

.social-list__link:hover,
.social-list__link:focus {
    color: var(--base) !important;
}

@media screen and (max-width: 767px) {
    .social-list__link {
        font-size: 20px;
    }
}


.wyg:not(:has(h1,h2,h3,h4,h5,h6))  * {
    font-family: var(--body-font) !important;
}


.wyg :is(h1,h2,h3,h4,h5,h6){
font-family: var(--heading-font) !important;
}

.breadcrumb {
    padding: clamp(3.75rem, 3rem + 3.75vw, 7.5rem) 0;
}


/* ================================= Social Icon Css End ===========================  */
/*# sourceMappingURL=main.css.map */