:root {
    --font: "Roboto", sans-serif;
    --pri: #db2123;
    --sec: #111013;
    --bg: #ffffff;
    --text: #232127;
    --text2: #404040;
    --surface: #ffffff;
    --surface-2: #f4f4f4;
    --border: #e3e3e3;
    --text-color: var(--text);
    --white: #ffffff;
    --black: #111013;
    --para-color: var(--text2);
    --off-color: var(--surface-2);
    --border-color: var(--border);
    --liner: linear-gradient( 0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
    --liner2: linear-gradient( 0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.97));
    --box-shadow-inset: 0 0 50px 1px rgba(0, 0, 0, 0.08) inset;
    --box-shadow-inset-sm: 0 0 20px 1px rgba(0, 0, 0, 0.1) inset;
    --success: #22c55e;
}

:root[data-theme="dark"] {
    --sec: #2d2d30;
    --bg: #0f1115;
    --text: #f8f8f8;
    --text2: #e3e6eb;
    --surface: #14181b;
    --surface-2: #1a1e22;
    --border: #2a2f36;
    --para-color: var(--text2);
    --border-color: var(--border);
    --liner: linear-gradient(0deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.15));
    --liner2: linear-gradient( 0deg, rgba(18, 18, 18, 0.93), rgba(18, 18, 18, 0.95));
    --box-shadow-inset: 0 0 50px 1px rgba(60, 60, 60, 0.2) inset;
    --box-shadow-inset-sm: 0 0 20px 1px rgba(60, 60, 60, 0.1) inset;
    color-scheme: light dark;
}

body {
    background: var(--bg);
    font-family: var(--font);
    color: var(--text2);
    font-size: 15px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

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

p {
    color: var(--text2);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--font);
    line-height: 1.6;
}

a {
    display: block;
    text-decoration: none;
    color: var(--para-color);
}

a:hover {
    color: var(--pri);
}

p a {
    display: inline;
}

strong,
b {
    font-weight: 700;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes bounce {
    0%,
    to {
        transform: translateY(-20px);
        animation-timing-function: linear;
    }
    50% {
        transform: none;
        animation-timing-function: linear;
    }
}


/* ########## Utilities Classes ######### */

.head-sec {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 35px;
}

.head-sec.text-start {
    margin-inline: 0;
}

.head-sec .sub-tt {
    margin-bottom: 5px;
    color: var(--pri);
    font-weight: 500;
    font-size: 15px;
}

.head-sec.line .sub-tt {
    position: relative;
    padding-left: 37px;
    letter-spacing: 0.5px;
}

.head-sec.line .sub-tt::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 10px;
    width: 30px;
    height: 1px;
    border-bottom: 1px dashed var(--pri);
}

.head-sec .tt {
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 7px;
    position: relative;
}

.head-sec .tt span {
    color: var(--pri);
}

.head-sec p {
    font-size: 15px;
    color: var(--para-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.7;
}

.head-sec ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.head-sec ul li {
    margin-bottom: 5px;
    padding-left: 25px;
    position: relative;
    text-align: justify;
    color: var(--para-color);
}

.head-sec ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="white" class="bi bi-check" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>');
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--liner);
    background-color: var(--pri);
    border-radius: 100%;
    text-align: center;
    align-content: center;
}

.head-sec.text-white .tt {
    color: white;
}

.head-sec.text-white p,
.head-sec.text-white li {
    color: #f3f3f3;
    font-weight: 300;
}

.main-btn {
    padding: 9px 17px;
    color: var(--white);
    border: 1px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
    background: var(--pri);
    outline: none;
    transition: 0.2s ease-in-out;
    justify-content: center;
    border-radius: 20px;
}

.main-btn.sm {
    font-size: 13px;
    padding: 6px 13px;
}

.main-btn.light {
    background-color: var(--white);
    color: var(--pri);
}

.main-btn.dark {
    background-color: var(--sec);
    border-color: var(--sec);
}

.main-btn:hover {
    background-color: var(--sec);
    border-color: var(--sec);
    color: var(--white);
}

.main-btn.dark:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--pri);
}

.main-btn.light:hover {
    background: var(--pri);
    border-color: var(--pri);
    color: var(--white);
}

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

.form-control,
.form-select {
    font-size: 14px;
    border: 1px solid var(--surface-2);
    border-radius: 8px;
    box-shadow: none !important;
    padding: 8px 12px;
    background-color: var(--surface) !important;
    color: var(--text-color);
    height: 47px;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--surface) inset !important;
    box-shadow: 0 0 0px 1000px var(--surface) inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    caret-color: var(--text-color);
    color: var(--text-color) !important;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
    font-size: 14px;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 47px;
}

.width-max-content {
    width: max-content;
}

.form-control::placeholder {
    color: var(--text-color);
    opacity: 0.5;
}

textarea.form-control {
    min-height: 100px;
    height: auto;
}

.g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
    border: 1px solid var(--surface-2);
    background: var(--surface-2);
    box-shadow: var(--box-shadow-inset-sm);
    color: var(--pri);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    text-align: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
    color: var(--white);
    background: var(--liner);
    background-color: var(--pri);
    border-color: var(--pri);
}

.swiper-button-next,
.swiper-next {
    right: 10px;
    left: auto;
}

.swiper-button-prev,
.swiper-prev {
    left: 10px;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px;
    font-weight: bold;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.6;
}

.swiper_wrap {
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    position: static;
}

.swiper-pagination-bullet {
    transition: 0.2s ease;
    background-color: var(--text-color);
}

.swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 4px;
    background-color: var(--pri);
}

.lead-sure-section {
    padding: 55px 0;
    scroll-margin-top: 140px;
    overflow: hidden;
}

.bg-sec {
    background: var(--liner2) !important;
    background-color: var(--pri) !important;
}

.bg-surface {
    background-color: var(--surface) !important;
}

.bg-surface2 {
    background-color: var(--surface-2) !important;
}

.bgGradient {
    background: radial-gradient( circle at left, #300e0e 0, #000 40%, #111827 100%);
}

.bgGradient .main-btn {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--pri);
}

.bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    /* box-shadow: var(--box-shadow-inset); */
}

.bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--black);
    opacity: 0.015;
}

[data-theme="dark"] .bg-img::before {
    opacity: 0.8;
}

.drop-shadow-img img {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.1));
}


/* ########## header ########### */

.lead-sure-header {
    background: var(--surface);
}

.sticky-header {
    animation: fadeInDown 0.6s both;
    position: fixed;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.logo,
[data-theme="dark"] .logo.dark {
    display: block;
    max-width: 190px;
}

.logo.dark,
[data-theme="dark"] .logo {
    display: none;
}

.top-bar {
    background-color: var(--off-color);
}

.top-bar p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--text);
    font-weight: 400;
}

.top-bar p svg {
    margin-top: -1px;
    color: var(--text);
    margin-right: 2px;
    stroke: var(--text);
    stroke-width: 0.1;
}

.top-bar p a {
    color: var(--text);
    font-weight: 400;
}

.top-bar p a:hover {
    color: var(--pri);
}

.user-login-icon {
    background-color: var(--pri);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    transition: 0.2s ease-in-out;
    border: 0;
    cursor: pointer;
}

.user-login-icon:hover {
    background-color: var(--sec);
    color: #fff;
}

.theme-switch {
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    position: relative;
}

.theme-switch .label {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px;
    border-radius: 15px;
    position: relative;
    gap: 8px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.theme-switch.dark .label {
    background-color: #2c2727;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5) inset;
}

.theme-switch .label:hover .moon,
.theme-switch .label:hover .sun {
    transform: rotate(360deg);
}

.theme-switch .ball {
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    position: absolute;
    border-radius: 50%;
    top: 5px;
    left: 6px;
    height: 21px;
    width: 21px;
    transform: translatex(0);
}

.theme-switch .moon {
    color: var(--pri);
    transform-origin: center center;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transform: rotate(0);
    width: 19px;
    height: 19px;
}

.theme-switch .sun {
    color: var(--pri);
    transform-origin: center center;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transform: rotate(0);
    width: 19px;
    height: 19px;
}

.theme-switch.dark .ball {
    transform: translatex(29px);
    background-color: #000;
}

.navbar {
    padding: 0;
    border-bottom: 1px solid var(--surface-2);
}

.dropdown-toggle::after {
    vertical-align: middle;
    content: "";
    width: 11px;
    height: 11px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor' stroke='currentColor' stroke-width='0.2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 11px;
    border: 0;
    margin-left: 3px;
    transition: 0.2s;
}

[data-theme="dark"] .dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.navbar .dropdown .dropdown-menu {
    background: var(--surface);
    border: 0;
    border-top: 1px solid var(--surface-2);
    box-shadow: 0 0.8rem 1rem #33333321;
    border-radius: 0 0 12px 12px;
    padding: 20px;
}

.navbar .dropdown .dropdown-item {
    padding: 3px 0;
    font-size: 15px;
    color: var(--para-color);
    display: inline-block;
    width: auto;
}

.navbar .dropdown .dropdown-item:hover,
.navbar .dropdown .dropdown-item:focus,
.navbar .dropdown .dropdown-item:active,
.navbar .dropdown .dropdown-item.active {
    color: var(--pri);
    background-color: transparent;
}

.mega-menu-bx.image-bg .main-cate {
    font-weight: 600;
    font-size: 17px;
}

.mega-menu-bx .main-cate {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
    align-content: center;
}

.mega-menu-bx a.main-cate:hover {
    color: var(--pri);
}

.mega-menu-bx .main-cate img {
    width: 22px;
    margin-right: 4px;
}

[data-theme="dark"] .mega-menu-bx .main-cate img {
    filter: brightness(0) invert(1);
}


/* ############ HomePage ############ */

.leadSure-main-section {
    background: linear-gradient( 170deg, rgb(174 177 183 / 30%) 0%, rgb(232 222 217 / 40%) 100%);
    padding: 55px 0;
    box-shadow: 0px 0px 50px 1px rgba(0, 0, 0, 0.1) inset;
}

.leadSure-main-section .sub-tt {
    font-size: 16px;
    color: var(--pri);
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.leadSure-main-section .tt {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 15px;
}

.leadSure-main-section .tt span {
    color: var(--pri);
    font-weight: 800;
}

.type-icon {
    border-right: 5px solid var(--pri);
    animation: caret 1s steps(1) infinite;
    margin-left: 5px;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}

.leadSure-main-section p {
    margin-bottom: 0;
    list-style: 1.8;
}

.proposal-bx {
    border: 1px solid var(--border-color);
    background-color: var(--surface);
    max-width: 400px;
    display: flex;
    padding: 4px;
    border-radius: 10px;
    margin-top: 30px;
    width: max-content;
}

.proposal-bx input {
    background-color: transparent;
    border: 0;
    outline: 0;
    height: 36px;
    padding: 5px 10px;
    font-size: 14px;
    color: var(--text-color);
    flex-grow: 1;
}

.proposal-bx .main-btn {
    background: var(--liner);
    background-color: var(--pri);
    border: 0;
    border-radius: 10px;
    color: white;
}

.proposal-bx .main-btn:hover {
    background-color: var(--sec);
}

.section-nav {
    position: sticky;
    top: 50px;
    display: flex;
    justify-content: center;
    z-index: 99;
}

.section-nav .nav {
    display: inline-flex;
    gap: 0;
    justify-content: center;
    margin: 25px auto;
    border-radius: 20px;
    padding: 5px;
    box-shadow: var(--box-shadow-inset-sm);
    background-color: var(--surface);
    border: 1px solid var(--border-color);
}

.section-nav button {
    background-color: transparent;
    outline: 0;
    border: 0;
    color: var(--text-color);
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 18px;
}

.section-nav button:hover {
    background-color: var(--surface);
}

.section-nav button.active {
    background: var(--liner);
    background-color: var(--pri);
    color: var(--white);
}

.circle-pointer {
    /* border: 2px solid var(--border-color); */
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow-inset);
}

.circle-pointer .tt {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
}

.reels-vid {
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-inset-sm);
    border-radius: 20px;
}

.abt-vid-bx iframe,
.reels-vid iframe {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-inset-sm);
    overflow: hidden;
    border-radius: 20px;
    pointer-events: none;
    transform: scale(1.01);
    transform-origin: 50% 50%;
}

.reels-vid iframe {
    aspect-ratio: 35 / 62;
}

.counter-bx {
    text-align: center;
}

.counter-bx .tx-bx .count {
    font-size: 35px;
    font-weight: 800;
    color: var(--text-color);
}

.counter-bx .tx-bx .count .icon {
    color: var(--pri);
    margin-left: 1px;
}

.counter-bx .tx-bx p {
    color: var(--para-color);
}

.custom-nav .nav-pills .nav-link {
    border: 0;
    width: auto;
    text-align: left;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 14px;
    padding: 12px 15px;
    position: relative;
    box-shadow: var(--box-shadow-inset);
    align-content: center;
}

.custom-nav .nav-pills .nav-link img {
    width: 20px;
    margin-right: 3px;
}

.custom-nav .nav-pills .nav-link.active {
    background: var(--liner);
    background-color: var(--pri);
    color: var(--white);
}

.custom-nav .nav-pills .nav-link.active img {
    filter: brightness(0) invert(1);
}

.custom-nav .tab-content {
    box-shadow: var(--box-shadow-inset);
    padding: 30px;
}

.home-form {
    box-shadow: var(--box-shadow-inset);
    padding: 30px;
    border-radius: 15px;
    background-color: var(--surface);
}

.why-us-sec {
    background: url(../images/bg/why-us-bg.webp) no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.why-us-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.5;
    z-index: -1;
}

.why-us-card {
    background-color: var(--surface);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.why-us-card.service-bx {
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-inset);
    transition: 0.2s linear;
}

.why-us-card.service-bx:hover {
    transform: scale(1.03);
}

.why-us-card .icon-bx {
    display: inline-block;
    border-radius: 100%;
    padding: 15px;
    box-shadow: var(--box-shadow-inset-sm);
    margin-bottom: 10px;
}

.why-us-card.service-bx .icon-bx {
    background-color: var(--pri);
}

.why-us-card.service-bx .icon-bx img {
    filter: brightness(0) invert(1);
}

.why-us-card .icon-bx img {
    width: 30px;
    margin: 0;
}

[data-theme="dark"] .why-us-card .icon-bx img {
    filter: brightness(0) invert(1);
}

.why-us-card .tt {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-us-card img {
    margin: 15px auto;
    width: 250px;
}

.why-us-card.service-bx .tt {
    font-size: 16px;
    margin-bottom: 3px;
}

[data-theme="dark"] .why-us-card .tt {
    color: var(--pri);
}

.why-us-card p {
    color: var(--para-color);
    margin-bottom: 0;
    font-size: 14px;
}

.why-us-card.service-bx p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.blog-bx {
    padding: 18px;
    border-radius: 15px;
    height: 100%;
    box-shadow: var(--box-shadow-inset);
}

.blog-bx.blog-card {
    padding: 15px;
}

.blog-bx .img-bx {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.blog-bx .img-bx img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx:hover .img-bx img {
    transform: scale(1.03);
}

.blog-bx ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 13px;
}

.blog-bx ul li {
    font-size: 11px;
    color: var(--para-color);
}

.blog-bx ul li svg {
    color: var(--text-color);
    width: 14px;
    height: 14px;
    margin-right: 2px;
    margin-top: -2px;
}

.blog-bx ul li.category a {
    border-radius: 15px;
    color: var(--pri);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--liner2);
    background-color: var(--pri);
}

.blog-bx ul li.category a:hover {
    background: var(--pri);
    color: var(--white);
}

.blog-bx .tt a {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-bx.blog-card .tt a {
    font-size: 16px;
}

.blog-bx .tt a:hover {
    color: var(--pri);
}

.blog-bx p {
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.read-mr {
    font-size: 13px;
    color: var(--pri);
    font-weight: 400;
    transition: 0.2s;
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: 0;
}

.read-mr.text-decoration:hover {
    text-decoration: underline;
}

.read-mr:hover {
    color: var(--pri);
}

.read-mr:hover svg {
    transition: 0.2s;
    transform: translateX(2px);
}

.result-bx {
    padding: 35px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--surface);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.result-bx:hover {
    transform: scale(1.01);
}

.result-bx .head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.result-bx .head .tx-bx .tt {
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
}

.result-bx .head .tx-bx p {
    margin-bottom: 0;
    color: var(--para-color);
    font-size: 14px;
}

.result-bx .icon {
    max-width: 44px;
}

.result-bx .mini-icon {
    border-radius: 100%;
    min-width: 30px;
    width: 30px;
    height: 30px;
    align-content: center;
    text-align: center;
    margin-left: auto;
}

.result-bx .mini-icon svg {
    width: 13px;
    height: 13px;
}

.result-bx .img-bx {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.matrix-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}

.matrix-row .matrix-bx {
    text-align: center;
}

.matrix-row .matrix-bx .tt {
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

.matrix-row .matrix-bx .tt span {
    color: var(--pri);
}

.matrix-row .matrix-bx p {
    color: var(--para-color);
    font-size: 13px;
    margin-bottom: 0;
}

.tech-bx {
    padding: 18px;
    padding-top: 65px;
    border-radius: 15px;
    height: 100%;
    box-shadow: var(--box-shadow-inset-sm);
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
}

.tech-bx .tt {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--liner);
    background-color: var(--pri);
    color: white;
    padding: 4px 10px;
    align-content: center;
    border-radius: 0 6px 6px 0;
}

.tech-bx .tt svg {
    width: 18px;
    height: 18px;
    margin-top: -2px;
}

.tech-bx .icon-bx {
    text-align: center;
    width: calc(100% / 3 - 7px);
}

.tech-bx .icon-bx img,
.tech-bx .icon-bx svg {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.tech-bx .icon-bx p {
    margin-bottom: 0;
    font-size: 13px;
    margin-top: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.industry-bx {
    background: linear-gradient( 270deg, rgba(58, 58, 58, 0.25) 0, rgba(255, 255, 255, 0.15) 100%);
    padding-inline: 18px;
    padding-top: 25px;
    padding-bottom: 15px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-bx:hover {
    transform: scale(1.03);
}

.industry-bx:hover p,
.industry-bx:hover {
    color: var(--pri);
}

.industry-bx p {
    margin-bottom: 0;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.industry-bx svg {
    width: 70px;
    height: 70px;
}

.industry-bx2 img {
    display: block;
    width: 100%;
}

.industry-bx2 {
    background-color: var(--surface);
    border: 0;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.industry-bx2 .tt {
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-color);
    padding: 10px;
    height: 100%;
    transition: 0.2s ease-in-out;
}

.industry-bx2:hover .tt {
    background-color: var(--pri);
    color: var(--surface);
}


/* ############## inner pages ############# */

.breadcum-sec {
    box-shadow: var(--box-shadow-inset-sm);
    padding: 6px 0;
    border: 1px solid var(--surface-2);
}

.breadcum-sec ul {
    display: flex;
    gap: 0 15px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcum-sec ul li {
    color: var(--para-color);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    padding: 0;
    position: relative;
}

.breadcum-sec ul li a {
    color: var(--text-color);
    opacity: 0.7;
}

.breadcum-sec ul li a:hover {
    opacity: 1;
    color: var(--pri);
}

.breadcum-sec ul li a::before {
    content: "/";
    position: absolute;
    top: 1px;
    right: -10px;
    font-size: 12px;
    color: var(--text-color);
}

.img-breadcum {
    background-image: url(../images/about-banner.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 70px 0;
}

.img-breadcum::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 70deg, #300e0e 0%, #000 40%, rgba(17, 16, 19, 1) 100%);
    opacity: 0.85;
    z-index: -1;
}

.img-breadcum .head-sec .tt span {
    filter: brightness(2);
}

.img-breadcum .head-sec p {
    margin-bottom: 15px;
}

.img-breadcum .head-sec .main-btn:hover,
.qut-bx .main-btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--pri);
}

.abt-count-bx {
    border-radius: 20px;
    box-shadow: var(--box-shadow-inset-sm);
    background-color: var(--surface-2);
    padding: 25px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.abt-counter .row .col-lg-6:first-child .row .col-6:first-child .abt-count-bx {
    animation: bounce 1.5s ease infinite;
}

.abt-count-bx .icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.abt-count-bx .icon svg {
    width: 32px;
    height: 32px;
}

.abt-count-bx:hover .icon svg {
    color: var(--pri);
}

.abt-count-bx .tt {
    color: var(--pri);
    font-weight: 800;
    font-size: 40px;
    margin-top: 15px;
}

.abt-count-bx .tt .count {
    color: var(--text-color);
    margin-right: 2px;
}

.abt-count-bx p {
    color: var(--para-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.timeline-container {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 40px 25px;
    padding-left: 50px;
    margin-left: 15px;
}

.timeline-container .time-line-bx .icon svg {
    width: 40px;
    height: 40px;
    color: var(--pri);
}

.timeline-container .time-line-bx .tt {
    position: relative;
    font-size: 22px;
    color: white;
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.timeline-container .time-line-bx .tt::before {
    content: "";
    position: absolute;
    top: 6px;
    left: -60px;
    background: url('data:image/svg+xml;charset=utf-8,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="10.3047" cy="10.9766" r="3" fill="%23db2123"/> <circle cx="10.3047" cy="10.9766" r="9.5" stroke="%23db2123"/> </svg>') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.timeline-container .time-line-bx p {
    color: #f1f1f1;
    font-weight: 300;
}

.abt-count-bx.why-us-card2 {
    background-color: var(--surface);
    box-shadow: var(--box-shadow-inset);
    border: 0;
    padding: 25px;
    height: 100%;
}

.abt-count-bx.why-us-card2 .icon {
    position: static;
    color: var(--pri);
}

.abt-count-bx.why-us-card2 .icon svg {
    width: 50px;
    height: 50px;
}

.abt-count-bx.why-us-card2 .tt {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.abt-count-bx.why-us-card2 .count {
    position: absolute;
    right: 20px;
    top: 6px;
    font-size: 55px;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.1;
    line-height: 90px;
    transition: all 0.5s linear;
}

.abt-count-bx.why-us-card2 p {
    font-size: 14px;
}

.historySwiper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 3px;
    border-top: 1px dashed var(--border-color);
    z-index: -1;
}

.history-bx {
    text-align: center;
    position: relative;
    transition: 0.3s ease;
    opacity: 0.5;
}

.swiper-slide-active .history-bx {
    opacity: 1;
}

.history-bx .year {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 35px;
    position: relative;
}

.swiper-slide-active .history-bx .year {
    color: var(--pri);
}

.history-bx .year::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: url('data:image/svg+xml;charset=utf-8,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="10.3047" cy="10.9766" r="3" fill="%23db2123"/> <circle cx="10.3047" cy="10.9766" r="9.5" stroke="%23db2123"/> </svg>') no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.history-bx .tt {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.history-bx p {
    font-size: 14px;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
    margin-bottom: 15px;
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    background-color: var(--surface);
    box-shadow: var(--box-shadow-inset);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    font-weight: 500;
    outline: 0 !important;
    font-size: 16px;
    padding: 7px 0;
    color: var(--text-color);
}

.accordion-body {
    font-size: 14px;
    color: var(--para-color);
    opacity: 0.8;
    padding: 0;
    padding-bottom: 2px;
    line-height: 1.7;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    border: 0;
    color: var(--pri);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: 0;
}

[data-theme="dark"] .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23db2123'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.map-bx {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--surface);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--box-shadow-inset-sm);
}

.button-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

.button-left svg {
    width: 30px;
    height: 30px;
}

.button-right {
    background-color: var(--pri);
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.contact-form {
    box-shadow: var(--box-shadow-inset);
    padding: 40px;
    border-radius: 15px;
    background-color: var(--surface);
    border: 1px solid var(--border-color);
}

.contact-detail-bx {
    margin-bottom: 20px;
    padding-left: 65px;
    position: relative;
}

.contact-detail-bx:last-child {
    margin-bottom: 0;
}

.contact-detail-bx .icon {
    width: 46px;
    height: 46px;
    background: var(--liner);
    background-color: var(--pri);
    align-content: center;
    text-align: center;
    color: var(--white);
    border-radius: 100%;
    padding: 11px;
    position: absolute;
    top: 4px;
    left: 0;
}

.contact-detail-bx .icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-bx .tt {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2px;
}

.contact-detail-bx p,
.contact-detail-bx a {
    color: var(--para-color);
    margin-bottom: 0;
}

.contact-detail-bx a {
    display: inline-block;
}

.contact-detail-bx a:hover {
    color: var(--pri);
}

.contact-detail-bx ul.social {
    display: flex;
    gap: 5px;
    justify-content: start;
}

.contact-detail-bx ul.social li a {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    align-content: center;
    text-align: center;
    line-height: 1;
}

.contact-detail-bx ul.social li a svg {
    width: 16px;
    height: 16px;
}

.contact-detail-bx ul.social li.facebook a {
    background: #3c5b9b;
    color: white;
    border: 0;
}

.contact-detail-bx ul.social li.twitter a {
    background: var(--liner);
    background-color: #000;
    color: white;
    border: 0;
}

.contact-detail-bx ul.social li.linkedin a {
    background: #027ba5;
    color: white;
    border: 0;
}

.contact-detail-bx ul.social li.youtube a {
    background: #f70000;
    color: white;
    border: 0;
}

.contact-detail-bx ul.social li.pinterest a {
    background: #e60023;
    color: white;
    border: 0;
}

.contact-detail-bx ul.social li.instagram a {
    background: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
    border: 0;
}

.filter-bx .tt {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 17px;
}

.accordion-header {
    position: relative;
}

#filterAccordion .accordion-item {
    padding: 0;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid var(--surface-2);
    overflow: hidden;
}

#filterAccordion .accordion-item .accordion-button {
    font-size: 14px;
    color: var(--para-color);
    font-weight: 500;
    padding: 13px 10px;
    background-color: var(--surface-2);
}

#filterAccordion .accordion-item .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

[data-theme="dark"] #filterAccordion .accordion-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5f5f5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#filterAccordion .accordion-item .accordion-body {
    font-size: 14px;
    padding: 10px;
}

#filterAccordion .accordion-item label {
    display: block;
    color: var(--text-color);
    position: relative;
    padding-left: 10px;
    cursor: pointer;
    padding-block: 2px;
}

#filterAccordion .accordion-item label input[type="checkbox"] {
    opacity: 0;
    pointer-events: none;
}

#filterAccordion .accordion-item label .checkbx::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid var(--border-color);
    position: absolute;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    left: 0;
    border-radius: 3px;
    background-color: white;
}

#filterAccordion .accordion-item label input[type="checkbox"]:checked~.checkbx::before {
    border: 1px solid var(--pri);
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 1280.000000 1185.000000" preserveAspectRatio="xMidYMid meet"> <g transform="translate(0.000000,1185.000000) scale(0.100000,-0.100000)" fill="%23db2123" stroke="none"> <path d="M12525 11747 c-1052 -607 -2241 -1476 -3359 -2456 -901 -790 -1862 -1742 -2752 -2726 -614 -680 -1276 -1471 -1874 -2240 -208 -268 -746 -986 -915 -1223 -87 -122 -135 -181 -145 -178 -8 2 -769 430 -1690 950 l-1675 947 -38 -43 c-20 -24 -42 -50 -47 -59 -9 -16 133 -182 3754 -4381 l291 -338 40 0 40 0 227 453 c1121 2231 2222 4068 3471 5792 1377 1899 2936 3648 4690 5259 125 115 227 212 227 216 0 5 -69 103 -82 116 -2 1 -75 -39 -163 -89z" /> </g> </svg>') no-repeat;
    background-size: 10px;
    background-position: center;
}

#filterAccordion .accordion-item .accordion-header label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    z-index: 99;
    align-content: center;
}

.search-bx {
    overflow: hidden;
    width: 100%;
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.search-bx form {
    display: flex;
    align-items: center;
}

.search-bx input {
    height: 40px;
    outline: none;
    background-color: transparent !important;
    padding: 0;
    padding-left: 15px;
    width: calc(100% - 45px);
    color: var(--text-color);
    border: 0 !important;
}

.search-bx button {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    width: 45px;
    align-content: center;
    text-align: center;
    color: var(--para-color);
}

.search-bx button:hover {
    color: var(--pri);
}

.qut-bx {
    background: linear-gradient( 70deg, #300e0e 0%, #000 40%, rgba(17, 16, 19, 1) 100%);
    border-radius: 13px;
    padding: 30px 20px;
}

.qut-bx p {
    line-height: 1.4;
    font-size: 14px;
}

.cate-form {
    padding: 25px;
    border-radius: 13px;
    background-color: var(--surface-2);
}

.cate-form .form-control,
.cate-form .form-select,
.form-control.sm,
.cate-form .iti--allow-dropdown .iti__flag-container,
.cate-form .iti--separate-dial-code .iti__flag-container {
    height: 40px;
    font-size: 13px;
}

.cate-form .tt {
    font-size: 19px;
}

.blog-tt {
    padding-left: 15px;
    padding-block: 5px;
    font-weight: 600;
    border-left: 5px solid var(--pri);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.blog-cate {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.blog-cate li {
    font-size: 14px;
    color: var(--text-color);
}

.blog-cate li svg {
    color: var(--pri);
    width: 14px;
    height: 14px;
    margin-right: 2px;
    margin-top: -2px;
}

.blog-cate li.category a {
    border-radius: 15px;
    color: var(--pri);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--liner2);
    background-color: var(--pri);
}

.blog-detailBx .img-bx {
    margin-block: 30px;
    max-width: 800px;
    margin-inline: auto;
}

.blog-detailBx .img-bx img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.share-section {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
}

.share-section a {
    width: 22px;
    height: 22px;
    line-height: 1;
    align-content: center;
    text-align: center;
    color: white;
    border-radius: 100%;
}

.share-section a svg {
    width: 12px;
    height: 12px;
}

.share-section a#share-facebook {
    background: #3c5b9b;
}

.share-section a#share-twitter {
    background: var(--liner);
    background-color: #000;
}

.share-section a#share-linkedin {
    background: #027ba5;
}

.content-bx h1,
.content-bx h2,
.content-bx h3,
.content-bx h4,
.content-bx .tt,
.content-bx .cmTitle {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.content-bx h2,
.content-bx h3,
.content-bx h4,
.content-bx .tt,
.content-bx .cmTitle {
    font-size: 20px;
}

.content-bx .tt,
.content-bx .cmTitle {
    color: var(--pri);
}

.content-bx p {
    text-align: justify;
}

.content-bx ol,
.content-bx ul {
    padding-left: 20px;
    line-height: 1.7;
}

.form-group .tt {
    margin-bottom: 8px;
    color: var(--para-color);
    font-size: 15px;
    font-weight: 500;
}

.custom-check-box {
    margin: 0;
    padding: 0;
}

.custom-check-box label {
    border-radius: 5px;
    color: var(--para-color);
    font-size: 14px;
    padding: 8px 14px;
    padding-left: 32px;
    /* box-shadow: var(--box-shadow-inset-sm); */
    align-content: center;
    cursor: pointer;
    background-color: var(--surface);
    border: 1px solid var(--border-color);
}

.form-check-input:checked,
.form-check-input:focus {
    background-color: var(--pri);
    border-color: var(--pri);
    box-shadow: none !important;
}

.stepper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.stepper #progress-container {
    content: "";
    position: absolute;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--surface-2);
    z-index: -1;
}

.stepper #progress-bar {
    height: 2px;
    background: var(--liner);
    background-color: var(--success);
}

.stepper .step-box {
    text-align: center;
    width: calc(100% / 6);
}

.stepper .step-box .count {
    width: 37px;
    height: 37px;
    line-height: 37px;
    background-color: var(--surface);
    border-radius: 100%;
    align-content: center;
    margin-inline: auto;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-color);
    box-shadow: var(--box-shadow-inset-sm);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.stepper .step-box.active .count {
    background: var(--liner);
    background-color: var(--pri);
    color: white;
}

.stepper .step-box.done .count::before {
    /* content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="37" fill="white" class="bi bi-check" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>'); */
    content: "✓";
    position: absolute;
    color: white;
    font-weight: 600;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--liner);
    background-color: var(--success);
    border-radius: 100%;
    line-height: 37px;
}

.stepper .step-box .label {
    color: var(--text-color);
    font-size: 12px;
}

.step-slider {
    box-shadow: var(--box-shadow-inset);
    padding: 30px;
    border-radius: 16px;
    background-color: var(--surface-2);
    scroll-margin-top: 180px;
}

.check {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    background: var(--liner);
    background-color: var(--success);
    margin: 15px auto 15px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.navigation .btn-prev,
.navigation .btn-next {
    /* background: var(--liner); */
    background-color: var(--sec);
    border: 0;
    color: white;
    padding: 8px 17px;
    border: 1px solid var(--border);
    border-radius: 10px;
    opacity: 0.95;
}

.navigation .btn-prev:hover,
.navigation .btn-next:hover {
    opacity: 1;
}

.navigation .btn-next {
    background-color: var(--pri);
}

.navigation .btn-prev.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.summary .tt {
    font-size: 14px;
    font-weight: 500;
    color: var(--para-color);
}

.summary p {
    font-size: 14px;
    opacity: 0.9;
    list-style: disc;
    margin-bottom: 5px;
    position: relative;
    padding-left: 16px;
}

.summary p a {
    opacity: 0.8;
    text-decoration: underline;
}

.summary p::before {
    background: var(--pri);
    height: 2px;
    left: 0;
    width: 10px;
    top: 9px;
    position: absolute;
    content: "";
    transition: 0.3s;
}

.lead-sure-section.img-before::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./designer/images/banner-map.webp);
    background-repeat: no-repeat;
    background-position: top 50px right;
    background-size: contain;
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
}

.how-pay-img {
    margin-left: -250px;
    max-width: none;
    width: calc(100% + 250px);
}

.pay-card {
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    transition: transform 0.22s ease;
    cursor: pointer;
    height: 100%;
}

.pay-card:hover {
    transform: scale(1.01);
}

.pay-card p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}

.pay-card small {
    opacity: 0.8;
    color: var(--para-color);
}

.pay-card .pay-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.pay-card .pay-top .icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--liner2);
    box-shadow: var(--box-shadow-inset-sm);
}

.pay-card .pay-top .icon img,
.pay-card .pay-top .icon svg {
    width: 30px;
    height: 30px;
}

.pay-card .pay-top .pay-title {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    color: var(--text-color);
}

.pay-card .pay-top .pay-desc {
    font-size: 14px;
    color: var(--pri);
    margin-bottom: 2px;
}

.pay-card .cta-btns {
    align-self: stretch;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.pay-card .cta-btns .main-btn {
    border-radius: 8px;
    font-size: 13px;
    text-transform: none;
}

.modal-content {
    border-radius: 15px;
    color: var(--text-color);
}

.modal-body {
    border-radius: 14px;
    box-shadow: var(--box-shadow-inset);
    padding: 22px 20px 18px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    box-shadow: var(--box-shadow-inset);
    position: relative;
    /* overflow: hidden; */
}

#bankModal .modal-body::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--surface-2), var(--pri));
    opacity: 0.9;
}

.modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text-color);
}

.btn-close {
    width: 22px;
    height: 22px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: var(--surface);
    position: relative;
    float: right;
}

.btn-close:focus {
    box-shadow: none !important;
}

.btn-close::before,
.btn-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--para-color);
    border-radius: 2px;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close:hover {
    background: var(--soft);
    border-color: var(--pri);
}

#bankModal .modal-body>p {
    margin: 4px 0 14px;
    color: var(--para-color);
    font-size: 14px;
}

.copy-sec {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 10px;
    position: relative;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.copy-sec .tt {
    font-weight: 500;
    margin: 2px 0 0;
    position: relative;
    padding-left: 42px;
}

.copy-sec .sub-tt,
.copy-sec .tt {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2px;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    padding: 2px 10px;
    border-radius: 12px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    font-size: 14px;
}

.copy-sec .sub-tt::before,
.copy-sec .tt::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--para-color);
}

.copy-sec .sub-tt span,
.copy-sec .tt span {
    color: var(--para-color);
}

.copy-sec>button {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--pri);
    background: var(--surface);
    border: 1px solid var(--pri);
    border-radius: 999px;
    transition: all 0.18s ease;
    cursor: pointer;
    line-height: 1.2;
    z-index: 2;
}

.copy-sec>button:hover {
    background: var(--pri);
    color: var(--surface);
    border-color: var(--pri);
}

.copy-sec>button svg {
    fill: currentColor;
}

.modal-body>small {
    display: block;
    margin-top: 10px;
    color: var(--para-color);
    opacity: 0.8;
}

.pay-toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: var(--pri);
    color: var(--surface);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}

.pay-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 560px) {
    .copy-sec .sub-tt,
    .copy-sec .tt {
        grid-template-columns: 140px 1fr;
    }
}

.gallery-img img {
    height: 300px;
    border-radius: 10px;
}

.gallery_slider .swiper-slide {
    width: auto;
    margin: 0 10px;
}

.gallery_slider {
    overflow: hidden;
    position: relative;
}


/* Filters */

.career-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.career-field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0px 12px;
}

.career-field label {
    font-size: 13px;
    color: var(--para-color);
    white-space: nowrap;
}

.career-field input,
.career-field select {
    flex: 1;
    border: 0;
    outline: 0;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    height: 40px;
}


/* Table */

.career-table-wrap {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.career-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.career-table thead th {
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--para-color);
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-color);
}

.career-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

#career-body tr:last-child td {
    border-bottom: 0;
}

.career-table tbody tr:hover {
    background: var(--off-color);
}

.career-role {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 5px;
}

.career-meta {
    display: inline-flex;
    gap: 7px;
    color: var(--para-color);
    font-size: 13px;
    margin-top: 0px;
}

.career-meta span {
    padding: 3px 9px;
    font-size: 13px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-inset-sm);
}

.career-download a {
    color: var(--pri);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.career-openings {
    font-weight: 600;
}


/* Empty state */

.career-empty {
    padding: 24px;
    text-align: center;
    color: var(--para-color);
}


/* Responsive */

@media (max-width: 980px) {
    .career-filters {
        grid-template-columns: auto;
    }
}

@media (max-width: 760px) {
    .career-filters {
        grid-template-columns: auto;
    }
    .career-table thead {
        display: none;
    }
    .career-table tbody tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 0;
    }
    .career-table tbody td {
        border: 0;
        padding: 4px 14px;
    }
    .career-table tbody td[data-th]::before {
        content: attr(data-th) " — ";
        font-weight: 700;
        color: var(--para-color);
        margin-right: 6px;
    }
}

.upload-wrapper {
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    background: var(--surface);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-wrapper.uploaded {
    background: var(--liner2);
    background-color: var(--success);
    border-color: var(--success);
}

.upload-wrapper.dragover {
    border-color: var(--pri);
    background: var(--surface-2);
}

.upload-wrapper svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: var(--pri);
}

.upload-wrapper .title {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.upload-wrapper .title span {
    color: var(--pri);
}

.upload-wrapper p {
    font-size: 13px;
    color: var(--para-color);
    opacity: 0.9;
    margin-top: 5px;
}

.upload-filename {
    margin-top: 5px;
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
}

.upload-error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

input.drag-upload {
    display: none;
}

.jd-bx h1 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.jd-bx h2,
.jd-bx h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
}

.jd-bx h2::after,
.jd-bx h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--pri);
    margin-top: 10px;
    border-radius: 2px;
}

.jd-bx ul {
    padding-left: 20px;
    color: var(--para-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.jd-bx ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.jd-bx ul li {
    font-size: 14px;
}

.jd-bx ul:last-child {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jd-bx ul:last-child li {
    background: var(--off-color);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    border-left: 3px solid var(--pri);
}

.job-details-card.mini {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 20px;
}

.job-details-card.mini:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.job-details-card .icon {
    padding: 10px;
    line-height: 1;
    display: inline-flex;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 8px;
    background: transparent;
    float: right;
    width: 70px;
    height: 70px;
    border: 1px solid var(--border);
}

[data-theme="dark"] .job-details-card .icon img{
    filter: brightness(0) invert(1);
}

.job-details-card.mini .icon{
    padding: 8px;
    width: 60px;
    height: 60px;
}

.job-details-card .tt {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.job-details-card .tags {
    display: flex;
    gap: 10px;
    color: var(--para-color);
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 17px;
    flex-wrap: wrap;
}

.job-details-card .tags li {
    position: relative;
    line-height: 1;
    border-right: 1px solid var(--border);
    padding-right: 10px;
}

.job-details-card .tags li:last-child {
    border-right: 0;
    padding-right: 0;
}

.job-details-card .tags li svg {
    width: 17px;
    height: 17px;
    margin-right: 1px;
    color: var(--text);
    margin-top: -2px;
}

.job-details-card .info {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 15px;
}

.job-details-card .info li {
    position: relative;
    padding-left: 26px;
    margin: 5px 0;
}

.job-details-card .info li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="%23db2123" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" ><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 8h8.5a1.5 1.5 0 0 1 0 3h-7.5" /><path d="M13.5 11h2a1.5 1.5 0 0 1 0 3h-2.5" /><path d="M14.5 14a1.5 1.5 0 0 1 0 3h-1.5" /><path d="M13.5 17a1.5 1.5 0 1 1 0 3h-4.5a6 6 0 0 1 -6 -6v-2v.208a6 6 0 0 1 2.7 -5.012l.3 -.196q .718 -.468 5.728 -3.286a1.5 1.5 0 0 1 2.022 .536c.44 .734 .325 1.674 -.28 2.28l-1.47 1.47" /></svg>');
    position: absolute;
    left: 0;
    top: 3px;
}

.job-details-card .info li b {
    font-weight: 500;
}

#toast {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    left: -150px;
    position: fixed;
    bottom: 20px;
    background: var(--surface);
    z-index: 99;
}

#toast.show {
    left: 20px;
}


/* ########### footer ########### */

.lead-sure-footer {
    padding: 90px 0 50px;
    position: relative;
    background-color: #16161e;
    z-index: 1;
    overflow: hidden;
}

.lead-sure-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url(../images/shape/ft-icon2.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    z-index: -1;
    transform: rotateZ(270deg);
    pointer-events: none;
}

.lead-sure-footer::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 30px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: radial-gradient( circle, rgb(219 33 35 / 53%) 0%, rgb(219 33 35 / 31%) 70%, transparent 100%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.ft-bx .tt {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font);
    text-transform: capitalize;
}

.ft-bx .tt span {
    color: var(--pri);
}

.ft-bx ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ft-bx ul li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 0;
    font-size: 13px;
    transition: 0.2s;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.ft-bx ul li a:hover {
    color: var(--pri);
}

.ft-bx p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 400;
}

.ft-bx .con-bx {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
    min-width: 17px;
    width: 17px;
    height: 17px;
    color: var(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0px;
    letter-spacing: 0.3px;
}

.ft-bx .con-bx p strong {
    font-weight: 500;
}

.ft-bx .con-bx a {
    font-weight: 500;
}

.ft-bx .con-bx a:hover {
    color: var(--pri);
}

.social {
    display: flex;
    justify-content: end;
    list-style: none;
    gap: 15px;
    margin-bottom: 0;
    padding: 0;
}

.social li a {
    color: rgba(255, 255, 255, 0.8);
}

.social li a svg {
    width: 14px;
    height: 14px;
}

.social li a:hover {
    opacity: 1;
    color: var(--pri);
}

.ft-bx ul.social {
    display: flex;
    gap: 5px;
    justify-content: start;
}

.ft-bx ul.social li a {
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 100%;
    align-content: center;
    text-align: center;
    line-height: 1;
}

.ft-bx ul.social li a:hover {
    background: var(--liner);
    background-color: var(--pri);
    color: white;
    border-color: var(--pri);
}

.footer-copy {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

ul.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

ul.footer-menu-list li a {
    margin-right: 20px;
    display: inline-block;
    line-height: 1.3;
    position: relative;
    text-transform: capitalize;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

ul.footer-menu-list li a:hover {
    color: var(--pri);
}

ul.footer-menu-list li a::before {
    content: "|";
    padding: 0;
    font-size: 13px;
    position: absolute;
    right: -12px;
    top: 0px;
    color: rgba(255, 255, 255, 0.5);
}

ul.footer-menu-list li:last-child a::before {
    content: none;
}

.ft-banner {
    padding: 35px;
    background-image: url(../images/shape/ft-bg.webp);
    background-position: center right;
    background-size: contain;
    margin-bottom: 70px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.ft-banner .tx-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ft-banner .tx-bx img {
    margin-top: -132px;
    margin-bottom: -70px;
    max-width: 190px;
    margin-left: 28px;
}

.ft-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #ffffff00 12%, #cb0b0c 30%);
    z-index: -1;
    border-radius: 20px;
}

.ft-banner .tx-bx::after,
.ft-banner .tx-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shape/ft-banner.webp);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    border-radius: 20px;
}

.ft-banner .tx-bx .tt {
    color: white;
    font-size: 22px;
    max-width: 400px;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    margin-right: 70px;
}

.ft-banner .tx-bx .tt::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    background-image: url(../images/shape/ft-icon.webp);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.ft-banner .tx-bx a {
    color: var(--white);
    font-size: 25px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
}

.ft-banner .tx-bx a:hover {
    color: var(--black);
}

label.error {
    color: red;
    font-size: 14px;
}

.whatapp_btn {
    background: #01e675;
    width: 40px;
    height: 40px;
    color: var(--white);
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    /* box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15); */
    border: 0;
    box-shadow: 0px 1px 2px 1px rgb(0, 171, 86);
    animation: email-an linear 1s infinite;
}

@keyframes email-an {
    0% {
        box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 0 rgba(0, 171, 86, 0.2), 0 0 0 0 rgba(0, 171, 86, 0.2);
    }
    50% {
        box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 15px rgba(0, 171, 86, 0), 0 0 0 16px rgba(0, 171, 86, 0.067);
    }
    100% {
        box-shadow: 0 8px 10px rgba(0, 171, 86, 0.2), 0 0 0 18px rgba(0, 171, 86, 0), 0 0 0 20px rgba(0, 171, 86, 0);
    }
}

.whatapp_btn svg {
    width: 19px;
    height: 19px;
}

.whatapp_btn:hover {
    transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: var(--white);
}

.input-wrapper {
    position: relative;
}

.input-wrapper label.error {
    color: red;
    font-size: 13px;
    margin-top: 3px;
    display: block;
}