/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap");
/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
    --heading-font: "DM Serif Display", serif;
    --body-font: "DM Sans", sans-serif;
  /* ========================= Theme Color Start ============================= */
    --base-h: 221;
    --base-s: 79%;
    --base-l: 48%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
  /* ========================= Theme Color End ============================= */
  /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --body-color: 60 1% 41%;
    --body-bg: 0 0% 100%;
    --heading-color: 60 3% 6%;
    --black: 0 0% 0%;
    --border-color: 60 8% 90%;
    --section-bg: 60 14% 97%;
  /* ================================ Box Shadow Start =============================== */
    --box-shadow: 0px 1px 4px 0 hsl(var(--heading-color) / 0.06);
  /* ================================ Box Shadow End =============================== */
}

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

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--body-bg));
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.container {
    max-width: 1072px;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 767px) {
    p {
        font-size: 14px;
    }
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    font-weight: 400;
}

h1 {
    font-size: 50px;
    letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
}

h2 {
    font-size: 38px;
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

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

a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    color: hsl(var(--heading-color));
}

a:hover {
    color: hsl(var(--base));
}

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;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ======================  Global Section Start  ======================*/
.py-80 {
    padding-block: 80px;
}

@media screen and (max-width: 991px) {
    .py-80 {
        padding-block: 50px;
    }
}

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

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

.section__wrap {
    border-top: 1px solid hsl(var(--border-color));
    border-bottom: 1px solid hsl(var(--border-color));
}

.section__heading span {
    color: hsl(var(--base));
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section__heading p {
    font-size: 15px;
    font-weight: 300;
}

.section__heading h2 {
    margin-bottom: 8px;
}

/* ======================  Global Section End  ======================*/
/* ======================  Button Section Start  ======================*/
.btn {
    color: hsl(var(--white)) !important;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-family: var(--body-font);
    border: none;
    line-height: 1.1;
}

.btn--base {
    background-color: hsl(var(--base)) !important;
}

.btn--base:hover, .btn--base:focus {
    background-color: hsl(var(--base-d-200)) !important;
}

.btn--black {
    background-color: hsl(var(--heading-color)) !important;
}

.btn--black:hover, .btn--black:focus {
    background-color: hsl(var(--base)) !important;
}

/* ======================  Button Section End  ======================*/
/* ======================  Header Section Start  ======================*/
.header__area {
    padding-block: 14px;
    border-bottom: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    position: sticky;
    top: 0;
    z-index: 99;
}

.header__area .container {
    max-width: 1200px;
}

.header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 575px) {
    .header__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.header__logo a img {
    width: 185px;
}

.header__widgets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.header__widgets .btn {
    font-size: 13px;
    padding: 11px 20px;
}

.header__contact {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    color: #3A3A38;
}

.header__contact img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 13px;
}

/* ======================  Header Section End  ======================*/
/* ======================  Footer Section Start  ======================*/
.footer__area {
    padding-block: 32px;
}

.footer__area .container {
    max-width: 1200px;
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__left h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer__left p {
    font-size: 12px;
}

.footer__top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__top ul li a {
    font-size: 13px;
    font-weight: 500;
    color: #3A3A38;
}

.footer__top ul li a:hover {
    color: hsl(var(--base));
}

.footer__top ul li:not(:last-child) {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid hsl(var(--border-color));
}

.footer__top ul li {
    line-height: 1;
}

.footer__bottom {
    border-top: 1px solid hsl(var(--border-color));
    margin-top: 20px;
    padding-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__bottom span {
    font-size: 12px;
    text-align: center;
}

.footer__bottom p {
    font-size: 11px;
    text-align: center;
}

/* ======================  Footer Section End  ======================*/
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ======================  Hero Section Start  ======================*/
.hero__area {
    padding-top: 96px;
    padding-bottom: 112px;
}

@media screen and (max-width: 991px) {
    .hero__area {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}

.hero__left > span {
    font-size: 12px;
    font-weight: 600;
    padding: 9px 11px;
    padding-left: 25px;
    color: hsl(var(--base));
    background-color: hsl(var(--section-bg));
    border-radius: 60px;
    position: relative;
    z-index: 1;
    line-height: 1;
    margin-bottom: 20px;
}

.hero__left > span::after {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: 8px;
    height: 8px;
    background-color: hsl(var(--base));
    content: "";
    border-radius: 50%;
}

.hero__left h1 span {
    color: hsl(var(--base));
    display: unset;
}

.hero__left h1 {
    margin-bottom: 20px;
}

.hero__left p {
    font-weight: 300;
}

.hero__right {
    padding: 32px;
    background-color: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    border-radius: 12px;
}

@media screen and (max-width: 575px) {
    .hero__right {
        padding: 24px;
    }
}

.hero__right h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--body-font);
    margin-bottom: 20px;
    color: hsl(var(--body-color));
}

.hero__inner {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    padding: 20px;
    border-radius: 8px;
}

.hero__inner span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
}

.hero__inner h5 {
    font-size: 36px;
    color: hsl(var(--base));
}

.hero__inner p {
    font-size: 11px;
    max-width: 84%;
}

/* ======================  Hero Section End  ======================*/
/* ======================  Compare Section Start  ======================*/
.compare__main .accordion-item {
    color: hsl(var(--body-color));
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.compare__main .accordion-item:has(.accordion-button[aria-expanded=true]) {
    border-color: hsl(var(--base));
    -webkit-box-shadow: 0 4px 16px 0 hsl(var(--base)/0.08);
    box-shadow: 0 4px 16px 0 hsl(var(--base)/0.08);
}

.compare__main .compare__title {
    font-size: 16px;
    font-weight: 600;
    color: hsl(var(--heading-color));
    padding-left: 26px;
    position: relative;
    z-index: 1;
}

.compare__main .compare__title::after {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    content: "";
    width: 10px;
    height: 10px;
    background-color: hsl(var(--border-color));
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.compare__main .compare__badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: hsl(var(--body-color));
    background-color: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    padding: 3px 10px;
    border-radius: 60px;
    letter-spacing: 0.44px;
    margin-right: 12px;
    text-align: center;
}

.compare__main .accordion-button {
    padding: 21px 24px;
    font-size: 1rem;
    color: hsl(var(--body-color));
    text-align: left;
    background-color: hsl(var(--white));
    font-family: var(--body-font);
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.compare__main .accordion-button svg {
    fill: hsl(var(--body-color));
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.compare__main .accordion-button[aria-expanded=true] {
    border-color: hsl(var(--border-color));
}

.compare__main .accordion-button[aria-expanded=true] .compare__title::after {
    background-color: hsl(var(--base));
}

.compare__main .accordion-button[aria-expanded=true] .compare__badge {
    color: hsl(var(--base));
    border-color: hsl(var(--base)/0.1);
}

.compare__main .accordion-button[aria-expanded=true] svg {
    fill: hsl(var(--base));
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.compare__main .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.compare__main .accordion-button::after {
    display: none;
}

.compare__main .accordion-body {
    padding: 24px;
}

.compare__wrapper ul li {
    padding-block: 8px;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid hsl(var(--border-color));
}

.compare__wrapper ul li svg {
    width: 11px;
    margin-right: 10px;
}

.compare__wrapper ul li:last-child {
    border-bottom: none;
}

.compare__wrapper ul {
    margin-bottom: 22px;
}

.compare__inner {
    border: 1px solid #DBE4FF;
    padding: 16px 20px;
    border-radius: 6px;
    background-color: hsl(var(--section-bg));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.compare__inner p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.compare__inner h5 {
    font-size: 20px;
    margin-bottom: 0;
}

.compare__basics {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--section-bg));
}

.compare__basics h4 {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 16px;
}

.compare__basics ul li {
    font-size: 13px;
    font-weight: 400;
    padding-block: 9px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.compare__basics ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.compare__basics ul li svg {
    width: 4px;
    margin-right: 8px;
}

.compare__basics ul li:last-child {
    border-bottom: none;
}

.compare__cost {
    background-color: hsl(var(--heading-color));
    padding: 24px;
    border-radius: 8px;
    margin-top: 12px;
}

.compare__cost span {
    font-size: 11px;
    font-weight: 600;
    color: hsl(var(--white)/0.4);
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.88px;
}

.compare__cost h4 {
    color: hsl(var(--white));
    font-size: 40px;
    margin-bottom: 12px;
}

.compare__cost h5 {
    color: hsl(var(--white)/0.45);
    font-size: 11px;
    font-family: var(--body-font);
    font-style: italic;
    margin-bottom: 8px;
}

.compare__cost p {
    color: hsl(var(--white)/0.55);
    font-size: 12px;
    font-weight: 400;
}

/* ======================  Compare Section End  ======================*/
/* ======================  FAQ Section Start  ======================*/
.faq__area .section__heading h2 {
    font-size: 32px;
}

.faq__area .section__heading p {
    font-size: 14px;
}

.faq__wrap .accordion-item {
    color: hsl(var(--body-color));
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.faq__wrap .accordion-item:has(.accordion-button[aria-expanded=true]) {
    border-color: hsl(var(--base));
}

.faq__wrap .accordion-button::after {
    display: none;
}

.faq__wrap .accordion-button {
    padding: 15px 18px;
    font-size: 14px;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--white));
    font-family: var(--body-font);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.faq__wrap .accordion-button:hover {
    color: hsl(var(--base));
}

.faq__wrap .accordion-button[aria-expanded=true] {
    border-color: hsl(var(--border-color));
}

.faq__wrap .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq__wrap .accordion-body {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 300;
}

.faq__wrap .accordion-button:not(.collapsed) {
    color: hsl(var(--heading-color));
    background-color: hsl(var(--white));
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq__wrap .accordion-button .icon {
    width: 24px;
    height: 24px;
    border: 1px solid hsl(var(--border-color));
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.faq__wrap .accordion-button .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 7px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.072 6.88V0H4.112V6.88H3.072ZM0 3.904V2.944H7.184V3.904H0Z' fill='%236B6B68'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.faq__wrap .accordion-button[aria-expanded=true] .icon {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq__wrap .accordion-button[aria-expanded=true] .icon::after {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.072 6.88V0H4.112V6.88H3.072ZM0 3.904V2.944H7.184V3.904H0Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ======================  FAQ Section End  ======================*/
/* ======================  Compare2 Section Start  ======================*/
.compare2__area {
    background-color: hsl(var(--section-bg));
    border-top: 1px solid hsl(var(--border-color));
    border-bottom: 1px solid hsl(var(--border-color));
}

.compare2__slide {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.compare2__slide__topbar {
    padding: 22px 24px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.compare2__slide__topbar h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
}

.compare2__slide__topbar p {
    font-size: 13px;
    font-weight: 300;
}

.compare2__slide ul {
    padding: 16px 24px;
}

.compare2__slide ul li {
    padding-block: 9px;
    border-bottom: 1px solid hsl(var(--border-color));
    font-size: 13px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.compare2__slide ul li svg {
    margin-right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.compare2__slide ul li:last-child {
    border-bottom: none;
}

.swiper__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.swiper-button-next,
.swiper-button-prev {
    color: hsl(var(--body-color));
    height: 35px;
    position: unset;
    width: 80px;
    border-radius: 4px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    margin-top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 40px;
    fill: hsl(var(--body-color));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border-color: hsl(var(--base));
    background-color: hsl(var(--section-bg));
}

.swiper-button-next:hover svg,
.swiper-button-prev:hover svg {
    fill: hsl(var(--base));
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: auto;
}

.swiper-pagination {
    position: unset;
}

.swiper-pagination-bullet {
    background: hsl(var(--border-color));
    border-radius: 50%;
    height: 7px;
    opacity: 1;
    width: 7px;
}

.swiper-pagination-bullet-active {
    background: hsl(var(--base));
    opacity: 1;
}

.swiper-pagination-bullet {
    margin: 0 3px;
}

/* ======================  Compare2 Section End  ======================*/
/* ======================  Practice Section Start  ======================*/
.practice__single {
    border: 1px solid hsl(var(--border-color));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    border-radius: 8px;
}

.practice__topbar {
    background-color: hsl(var(--section-bg));
    border-bottom: 1px solid hsl(var(--border-color));
    margin-block: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.practice__topbar span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--heading-font);
    font-weight: 400;
}

.practice__topbar h3 {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--body-font);
    text-transform: uppercase;
    color: hsl(var(--body-color));
    margin-bottom: 4px;
}

.practice__topbar p {
    font-size: 14px;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.practice__single ul {
    padding: 24px;
}

.practice__single ul li:not(:last-child) {
    margin-bottom: 20px;
}

.practice__single ul li h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--body-font);
    text-transform: uppercase;
    color: hsl(var(--base));
    position: relative;
    z-index: 1;
    padding-left: 18px;
    line-height: 1;
}

.practice__single ul li h4::after {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: 12px;
    height: 2px;
    content: "";
    border-radius: 2px;
    background-color: hsl(var(--base));
}

.practice__single ul li p {
    font-size: 13px;
    font-weight: 300;
}

/* ======================  Practice Section End  ======================*/
/* ======================  Advertising Section Start  ======================*/
.advertising__area {
    background-color: hsl(var(--section-bg));
    border-top: 1px solid hsl(var(--border-color));
    border-bottom: 1px solid hsl(var(--border-color));
    padding-block: 32px;
}

.advertising__content h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3A3A38;
    font-family: var(--body-font);
    letter-spacing: 0.72px;
    margin-bottom: 8px;
}

.advertising__content p {
    font-size: 11px;
    font-weight: 400;
}

.advertising__area .container {
    max-width: 1200px;
}

/* ======================  Advertising Section End  ======================*/
/*# sourceMappingURL=main.css.map */
