:root {
    --theme-color: #e61e25;
    --theme-color-2: hsla(210, 11%, 15%, 0.031);
    --theme-color-3: hsla(0, 0%, 0%, 0.18);
    --bs-primary: #e61e25c7;
}

* {
    font-family: "Roboto", sans-serif;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

.main-logo.logo {
    width: 200px;
    object-fit: contain;
}

.btn-button {
    background: #fff;
    color: #000;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
}

.btn {
    align-items: center;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
}

button.btn.btn-success {
    background: #198754;
    color: #fff;
}

.btn-secondary {
    background: #363a40;
    color: #fff;
}

.btn-outline-secondary {
    border: 1px solid;
}

.btn-sm {
    font-size: 11px;
    padding: 5px 15px;
    text-transform: uppercase;
    line-height: normal;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 70px;
    z-index: 10;
}

.header-options {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}

.containerArea {
    position: relative;
}

input.form-control,
select.form-control,
select.form-select,
.form-control {
    border-color: #d5d5d5;
    position: relative;
    padding: 10px;
}

input.form-control:focus,
select.form-control:focus,
select.form-select:focus,
.form-control:focus,
.focus .ts-control {
    box-shadow: none;
}

.accordion-item button.accordion-button {
    border-radius: 0 !important;
    border: none !important;
    background: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.focus .ts-control {
    box-shadow: none !important;
}

button:focus {
    box-shadow: none !important;
}

a.sidebar-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    gap: 10px;
}

.border-dashed {
    border-style: dashed !important;
}

.logo-upload-wrapper,
.profile-upload-wrapper {
    width: 150px;
    height: 150px;
}

.logo-preview,
.profile-preview {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../image/upload-img.jpg);
}

.upload-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    transition: background 0.3s;
}

.upload-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.sec-body a {
    position: relative;
}

.sec-body a[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

.sec-body a[data-title]:after {
    content: attr(data-title);
    position: absolute;
    top: 110%;
    right: 0%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    font-size: 12px;
    background-color: #0a0a0ab3;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 200px;
}

[data-title] {
    position: relative;
}

table.table td span {
    cursor: pointer;
}

button.btn-button.shadow {
    box-shadow: var(--bs-box-shadow) !important;
}

button.btn-button.btn-dark {
    background: #0a0a0a;
    color: #fff;
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #000;
}

.nav-tabs .nav-link:hover {
    border: none;
    border-bottom: 2px solid #000;
}

.nav-tabs .nav-link {
    border: none;
    color: #000;
    font-weight: 500;
    padding: 1em;
}

span.color-box {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-right: 8px;
    vertical-align: middle;
}

input.big-color-box {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
}

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

.dropdown-item.d-align {
    justify-content: start;
}

.border-right {
    border-right: 1px solid var(--theme-color-3);
}

p {
    margin-top: 0;
    margin-bottom: 5px;
}

.gross-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sec {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
    padding: 20px 0;
}

.form-control-color {
    display: block;
}

span.password-show {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    height: 100%;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-input {
    position: relative;
}

.cursor-pointer {
    cursor: pointer;
}

button.search-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    z-index: 2;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

label.form-label {
    font-weight: 500;
    font-size: 14px;
}

.btn-submit {
    border: none;
    width: 100%;
    padding: 15px;
    display: block;
    margin-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    background-image: linear-gradient(to right, var(--theme-color), #747de3, #2a14e5, #cf5e78);
    background-size: 200% auto;
    background-position: left center;
    color: #fff;
    transition: background-position 1s ease;
}

.btn-submit:hover {
    background-position: right center;
}

h2.fw-bold {
    font-size: 30px;
    margin-bottom: 10px;
}

img.mobile-show-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-custom .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .sub-navbar .nav {
        flex-direction: column;
        align-items: center;
    }

    .sub-navbar .nav-link {
        padding: 0.5rem 0;
    }
}

/* Main Navbar */
.navbar-custom {
    background-color: rgb(136 139 165 / 16%);
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1050;
}

.navbar-custom.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
}

main.main-page-area {
    padding: 0rem 0;
    min-height: 100vh;
}

nav.sub-navbar {
    background: #e61e25c7;
    padding: 5px 0;
}

nav.sub-navbar a.nav-link {
    color: #fff;
    font-weight: 500;
}

nav.navbar a.nav-link {
    color: #000;
    font-weight: 500;
}

nav.sub-navbar {
    margin-top: 88px;
    transition: all 0.5s;
}

.card.mobiles-show-card {
    overflow: hidden;
}

.rows.g-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

a {
    text-decoration: none;
}

.mobile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.18);
    width: 20%;
    transition: all 0.5s;
    box-sizing: border-box;
}

.mobile-card:hover {
    border-bottom: 1px solid #000;
}

.mobile-card .mobile-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #000;
    text-align: center;
}

img.mobile-images {
    width: 100px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
}

img.mobile-board-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.overflow-hidden {
    overflow: hidden;
}

.map-img-ara {
    width: 50%;
}

.existing-area {
    position: absolute;
    cursor: pointer;
    background: #e61e25b0;
    border: 2px dashed transparent;
    transition: all .5s;
    cursor: pointer;
}

.existing-area:hover {
    border: 2px solid #fff;
}

.existing-area::after {
    content: attr(data-index);
    position: absolute;
    top: 0;
    right: 0;
    color: #dfff83;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-row.active {
    z-index: 10;
    background: rgba(255, 0, 0, 0.3);
}

.hot-row.active {
    background: #ffe6e6;
}

.custom-tooltip {
    position: absolute;
    bottom: 110%;
    /* show above the area */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.simple-tooltip {
    display: none;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 50;
}

.existing-area:hover .simple-tooltip {
    display: block;
}

.simple-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

h4.mobile-name-head {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
    color: var(--theme-color);
}

.card-header.table-headers {
    background: var(--bs-primary);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.table-like {
    display: grid;
    align-items: flex-start;
    transition: all 0.5s;
}

.ic-lists {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    transition: all 0.5s;
}

.ic-lists:hover {
    background-color: rgb(185 185 185 / 25%);
}

.ic-items {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #5c5c5c;
}

a.btn.btn-outline-primary {
    border: 1px solid;
    color: var(--theme-color);
}

a.btn.btn-outline-primary:hover {
    border: 1px solid;
    color: #fff;
    background-color: var(--theme-color);
}

h4.ic-titles {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
    padding: 10px;
    display: block;
    color: var(--theme-color);
}

p.show-code {
    padding: 10px;
    background: var(--theme-color-2);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #3e3131;
    font-family: monospace;
}

a.navbar-brand {
    padding-right: 50px;
}

li.nav-item {
    padding-right: 20px;
}

img.brand-logo-img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
    border: 1px solid rgb(0 0 0 / 18%) !important;
    padding: 5px;
    border-radius: 5px;
}

footer.bg-footer {
    background-color: #810004;
    color: #fff;
}

footer.bg-footer a {
    color: #fff;
}

h6.mobile-titles {
    text-align: center;
}

section {
    position: relative;
    overflow: hidden;
}

section.breadcrumb-sec {
    padding: 70px 0;
    background-image: url(../image/breadcrumb-bg.png);
    background-position: center;
    background-size: cover;
    color: #fff;
}

section.breadcrumb-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 30, 67, 0.92);
    z-index: -1;
}

h1.breadcrumb-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
}

ol.breadcrumb-list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

ol.breadcrumb-list li a {
    color: #ffcb05;
    font-size: 16px;
    font-weight: 700;
    position: relative;
}

ol.breadcrumb-list li a::after {
    content: "";
    position: relative;
    width: 5px;
    height: 5px;
    background-color: #fff;
    display: inline-block;
    margin-left: 10px;
    border-radius: 50%;
}

ol.breadcrumb-list li a.breadcrumb-items.active {
    color: #d2d6dc;
    pointer-events: none;
}

ol.breadcrumb-list li a.breadcrumb-items.active::after {
    display: none;
}

.card.abt-card {
    padding: 40px;
}

.contact-card {
    background-color: #ffffff;
    border-left: 5px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.phone-icon {
    background-color: #28a745;
}

.email-icon {
    background-color: #17a2b8;
}

.website-icon {
    background-color: #ffc107;
}

.location-icon {
    background-color: #dc3545;
}

.contact-info h5 {
    font-size: 1.1rem;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: row;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

h4.sub-heading {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

h2.heading {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

img.mission-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

img.abt-img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

h6.mobile-titles small {
    font-size: 14px;
}

img.ic-img-shows {
    display: block;
    width: 130px;
    height: auto;
    object-fit: contain;
}

.ic-brand-show {
    width: 100%;
    display: grid;
    align-items: center;
    align-content: center;
    justify-content: center;
}


/* ======================================== */
.btn-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}

/* Toggle button */
.toggle-btn {
    background: var(--bs-primary);
    /* OFF color */
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

/* ON state */
.toggle-btn.on {
    background: #2e8b57;
    /* ON color */
}

/* Icon between buttons */
.icon-mid {
    font-size: 20px;
    color: #444;
    user-select: none;
    line-height: normal;
    font-size: smaller;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    cursor: none;
    background-repeat: no-repeat;
    z-index: 99;
}

.hide-cursor {
    cursor: none !important;
}

.hide-cursor .existing-area {
    pointer-events: none;
}

.hide-hotspot {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.existing-area.hot-spot.hide-hotspot::after {
    content: none;
}

/* payment */
ul.list-style {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

li.list-style-item {
    word-break: break-word;
    display: flex;
    background: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
    gap: 0px;
    font-size: 12px;
    font-weight: 500;
}

i.list-style-icon {
    color: var(--theme-color);
    font-size: 16px;
    margin-right: 10px;
    line-height: normal;
}

.payment-card {
    padding: 22px;
    text-align: left;
    border-radius: 24px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px 0px rgb(0 0 0 / 10%);
    position: relative;
    background-color: #fff;
}

.payment-heading {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
}

p.payment-disc {
    font-size: 14px;
    color: #5e5e5e;
    margin-bottom: 20px;
    text-align: justify;
}

span.subs {
    font-size: 10px;
    font-weight: 400;
    vertical-align: middle;
    color: #fff;
    background: var(--bs-primary);
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    display: inline;
    line-height: normal;
}

.payment-amount {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    background-color: #FAC12E;
    stroke: #FAC12E;
    background-size: 100% 100%;
    background-clip: text;
    -webkit-text-stroke: 1px #FAC12E;
    font-family: "Red Hat Display", sans-serif;
    overflow-wrap: break-word;
    line-height: normal;
}

span.month-count {
    font-size: 12px;
    color: var(--bs-primary);
    font-weight: 500;
}

.payment-amount-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-button.subs-btn {
    background: var(--bs-primary);
    border-radius: 2rem;
    line-height: normal;
    color: #fff;
    border: 2px solid var(--theme-color);
}

.btn-button.subs-btn:hover {
    background: var(--theme-color);
}

.navbar-nav .dropdown-menu {
    left: auto;
    right: 0;
}

.reseller-button {
    background: var(--bs-primary);
    padding: 10px 18px;
    color: #fff !important;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

/* Shine animation */
.reseller-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 60px;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
    transform: skewX(-20deg);
    animation: shineEffect 2.5s infinite;
}

@keyframes shineEffect {
    0% {
        left: -80px;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

select#currencySwitcher {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 2rem;
    background: #ffa8ae;
}

select#currencySwitcher:focus,
select#currencySwitcher:hover,
select#currencySwitcher:focus-visible {
    border: none;
    box-shadow: none;
    outline: none;
}

.currency-switcher-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd6d8;
    padding: 10px;
    border-radius: 2rem;
    gap: 20px;
}

.trial-badge {
    background: linear-gradient(135deg, #72c5ff, #ff9191);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 15px;
}

.trial-info-box {
    background: #f0fff4;
    border-left: 4px solid #198754;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #14532d;
}

.navbar-nav {
    align-items: center;
}

/* ad-marquee-section */
.ad-marquee {
    overflow: hidden;
    background: var(--bs-primary);
    padding: 10px 18px;
    color: #fff !important;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.ad-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 18s linear infinite;
}

.ad-marquee-content span.text-highlight {
    color: #ffee00;
}

.ad-marquee-content {
    display: flex;
}

.ad-marquee-content span {
    white-space: nowrap;
    margin-right: 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
}

.ad-marquee-content strong {
    font-weight: 800;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ad-marquee:hover .ad-marquee-track {
    animation-play-state: paused;
}

.nav-justify-center {
    justify-content: end;
}



/* ================= PROMO MODAL ================= */
.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.promo-modal.active {
    display: block;
}

/* Overlay */
.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

/* Content */
.promo-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    height: 700px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    background: url(../image/model-popup.png) center/cover no-repeat;
    border-radius: 16px;
    overflow: hidden;
    animation: promoZoom 0.35s ease forwards;
}

/* Close button */
.promo-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 30px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 0;
    z-index: 10;
}

/* Inner content */
.promo-body {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.3)); */
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-body h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-body p {
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* CTA Button */
.promo-btn {
    display: inline-block;
    background: linear-gradient(45deg, #5f4700, #000000);
    color: #ffae00;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
    position: absolute;
    bottom: 24%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    border: 4px solid #ffae00;
    min-width: 415px;
    text-align: center;
}

/* Animation */
@keyframes promoZoom {
    to {
        transform: translateY(-50%) scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .promo-content {
        height: 420px;
    }

    .promo-body {
        padding: 30px;
    }

    .promo-body h2 {
        font-size: 26px;
    }

    .promo-btn {
        font-size: 12px;
        border: 2px solid #ffae00;
        min-width: 65%;
        text-align: center;
    }
}

button.btn.btn-outline-primary.border-1, button.btn.btn-outline-success.border-1 {
    border: 1px solid;
}