:root {
    --primary: #002874;
    --light: #f8f8f8;
    --text: #777;
    --gold: #030e28;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url("../images/bg.png");
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
}

a {
    text-decoration: none;
}

section {
    padding: 90px 0;
}

.main-header {
    padding: 25px 0;
    position: relative;
    z-index: 99;
}

.navbar-brand {
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 10px;
    text-transform: uppercase;
}




.custom-btn {
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}






/* =========================================
PREMIUM HERO SECTION
========================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 40px 0px 30px 10px;
}

/* =========================================
OWL FIX
========================================= */

.hero-carousel .owl-stage-outer {
    overflow: visible;
}

.hero-carousel .owl-item {
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-carousel .owl-item.active {
    opacity: 1;
}

/* =========================================
HERO ITEM
========================================= */

.hero-item {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* =========================================
BIG BACKGROUND TEXT
========================================= */

.hero-bg-text {
    position: absolute;


    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 220px;
    line-height: .82;

    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;

    text-transform: uppercase;
    text-align: center;

    letter-spacing: 14px;

    color: rgb(11 14 189 / 5%);

    z-index: 1;

    opacity: 0;
}

/* =========================================
CENTER IMAGE
========================================= */

.hero-image-box {
    position: relative;
    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 450px !important;
    height: 620px;

    object-fit: cover;

    box-shadow:
        0 60px 120px rgba(0, 0, 0, .08),
        0 20px 40px rgba(0, 0, 0, .05);

    transition: .7s ease;

    opacity: 0;

    transform: scale(.88) translateY(80px);
}

/* =========================================
IMAGE HOVER
========================================= */

.hero-image:hover {
    transform: scale(1.03) translateY(-6px);
}

/* =========================================
RIGHT CONTENT
========================================= */

.hero-right-content {
    position: relative;
    z-index: 5;

    opacity: 0;
    transform: translateX(50px);
}

.hero-right-content span {
    display: block;

    font-size: 11px;
    letter-spacing: 5px;

    color: #777;

    margin-bottom: 14px;

    text-transform: uppercase;
}

/* =========================================
ARROWS
========================================= */

.hero-arrow-left {
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
}

.hero-arrow-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 45px;
    padding-right: 20px;
}

.hero-nav-btn {
    width: 68px;
    height: 68px;

    border-radius: 50%;
    border: 1px solid rgba(15, 31, 61, .1);

    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);

    color: #002874;

    transition: .45s ease;

    font-size: 20px;

    position: relative;
    z-index: 20;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.hero-nav-btn:hover {
    background: #002874;
    color: #fff;

    transform: translateY(-6px) scale(1.05);
}

/* =========================================
ACTIVE ANIMATIONS
========================================= */

.owl-item.active .hero-bg-text {
    animation: heroTextReveal 1.8s ease forwards;
}

.owl-item.active .hero-image {
    animation:
        heroImageReveal 1.5s ease forwards,
        floatingImage 5s ease-in-out infinite 1.5s;
}

.owl-item.active .hero-right-content {
    animation: heroRightReveal 1.5s ease forwards;
}

/* =========================================
TEXT ANIMATION
========================================= */

@keyframes heroTextReveal {

    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.7);
        letter-spacing: 40px;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        letter-spacing: 14px;
        filter: blur(0);
    }

}

/* =========================================
IMAGE FADE IN
========================================= */

@keyframes heroImageReveal {

    0% {
        opacity: 0;
        transform: scale(.88) translateY(80px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }

}

/* =========================================
FLOAT EFFECT
========================================= */

@keyframes floatingImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================
RIGHT CONTENT ANIMATION
========================================= */

@keyframes heroRightReveal {

    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .hero-section {
        padding: 40px 0 70px;
    }

    .hero-item {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-bg-text {
        font-size: 80px;
        letter-spacing: 4px;
    }

    .hero-image {
        width: 100% !important;
        height: auto;
    }

    .hero-right-content {
        text-align: center;
        margin-top: 35px;
    }

    .hero-arrow-left {
        display: none;
    }

    .hero-arrow-right {
        justify-content: center;
        padding-right: 0;
    }

}

/* =========================================
TAILOR SECTION
========================================= */

.tailor-section {
    padding: 40px 0 100px;
    background: #fff;
}

.tailor-title {
    font-size: 56px;
    line-height: .95;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    margin-bottom: 0;
}

.tailor-script-text {
    font-size: 80px;
    color: #d7c4af;
    font-family: "Marck Script", cursive;
    margin-top: -15px;
    margin-bottom: 50px;
}

.tailor-image-box img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

/* =========================================
TAILOR ARROWS
========================================= */

.tailor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(15, 31, 61, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: #002874;
    z-index: 20;
    transition: .3s;
}

.tailor-arrow:hover {
    background: #002874;
    color: #fff;
}

.tailor-prev {
    left: -80px;
}

.tailor-next {
    right: -80px;
}

/* =========================================
ANIMATION
========================================= */

@keyframes zoomText {

    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.7);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes imageUp {

    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .hero-slide {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-bg-text {
        font-size: 70px;
    }

    .hero-main-image {
        width: 100%;
        height: auto;
    }

    .tailor-title {
        font-size: 42px;
    }

    .tailor-script-text {
        font-size: 34px;
    }

    .tailor-image-box img {
        height: auto;
    }

    .tailor-prev {
        left: 10px;
    }

    .tailor-next {
        right: 10px;
    }

}

/* =========================================
WORKSPACE SECTION
========================================= */

.workspace-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================================
SUBTITLE
========================================= */

.workspace-subtitle {
    font-size: 24px;
    color: #d7c0a6;

    font-family: cursive;

    display: inline-block;

    margin-bottom: 10px;
}

/* =========================================
TITLE
========================================= */

.workspace-title {
    font-size: 50px;
    line-height: .95;

    color: #002874;

    font-family: 'Cormorant Garamond', serif;

    text-transform: uppercase;

    margin-bottom: 0;
}

/* =========================================
ITEM
========================================= */

.workspace-item {
    position: relative;
}

/* =========================================
IMAGE
========================================= */

.workspace-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.workspace-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    transition: .8s ease;
}

/* IMAGE HOVER */

.workspace-item:hover img {
    transform: scale(1.08);
}

/* =========================================
OVERLAY
========================================= */

.workspace-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(15, 31, 61, .88),
            rgba(15, 31, 61, .08));

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: .5s ease;
}

.workspace-item:hover .workspace-overlay {
    opacity: 1;
}

/* =========================================
VIEW BUTTON
========================================= */

.workspace-btn {
    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .95);

    color: #002874;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 12px;
    letter-spacing: 3px;

    transition: .5s ease;

    transform: scale(.7);
}

.workspace-item:hover .workspace-btn {
    transform: scale(1);
}

.workspace-btn:hover {
    background: #002874;
    color: #fff;
}

/* =========================================
BOTTOM TEXT
========================================= */

.workspace-content {
    position: absolute;

    left: 25px;
    bottom: -80px;

    z-index: 5;

    transition: .5s ease;
}

/* TITLE */

.workspace-content h5 {
    font-size: 18px;
    color: #fff;

    margin-bottom: 5px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

/* SUBTITLE */

.workspace-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);

    letter-spacing: 1px;
}

/* =========================================
TEXT HOVER
========================================= */

.workspace-item:hover .workspace-content {
    bottom: 28px;
}

/* =========================================
OWL NAV
========================================= */

.workspace-carousel .owl-nav {
    text-align: center;
    margin-top: 50px;
}

.workspace-carousel .owl-nav button.owl-prev,
.workspace-carousel .owl-nav button.owl-next {

    width: 60px;
    height: 60px;

    border-radius: 50% !important;

    border: 1px solid rgba(15, 31, 61, .12) !important;

    background: #fff !important;

    color: #002874 !important;

    font-size: 20px !important;

    margin: 0 10px;

    transition: .4s ease;
}

.workspace-carousel .owl-nav button.owl-prev:hover,
.workspace-carousel .owl-nav button.owl-next:hover {

    background: #002874 !important;
    color: #fff !important;

    transform: translateY(-4px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .workspace-section {
        padding: 80px 0;
    }

    .workspace-title {
        font-size: 42px;
    }

    .workspace-image img {
        height: 420px;
    }

    .workspace-content {
        bottom: 20px;
    }

}


/* =========================================
REMARKABLE SECTION
========================================= */

.remarkable-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================================
HEADING
========================================= */

.remarkable-title {
    font-size: 56px;
    line-height: .95;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.remarkable-script {
    font-size: 52px;
    color: #d9c9b6;
    font-family: "Marck Script", cursive;
    margin-top: -15px;
    margin-bottom: 70px;
}

/* =========================================
ITEM
========================================= */

.remarkable-item {
    position: relative;
    transition: .4s ease;
    padding: 14px;
}

.remarkable-item:hover {
    transform: translateY(-8px);
}

/* =========================================
IMAGE
========================================= */

.remarkable-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.remarkable-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: .7s ease;

}

.remarkable-item:hover img {
    transform: scale(1.06);
}

/* =========================================
CUSTOM SPACING
IMAGE KHALI VAR
========================================= */

.item-up {
    margin-top: -40px;
}

.item-space-top {
    margin-top: 45px;
}

.item-space-top-medium {
    margin-top: 55px;
}

.item-space-top-large {
    margin-top: 65px;
}

/* =========================================
CONTENT
========================================= */

.remarkable-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.remarkable-content h5 {
    font-size: 13px;
    letter-spacing: 2px;
    color: #002874;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.remarkable-content span {
    font-size: 12px;
    color: #999;
}

/* =========================================
BADGE
========================================= */

.sold-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #002874;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 10px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .remarkable-section {
        padding: 80px 0;
    }

    .remarkable-title {
        font-size: 42px;
    }

    .remarkable-script {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .item-up,
    .item-space-top,
    .item-space-top-medium,
    .item-space-top-large {
        margin-top: 25px;
    }

    .remarkable-image img {
        height: 300px;
    }

}

/* =========================================
SALE BADGE
========================================= */

.sale-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #002874;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 7px 12px;
    z-index: 10;
}

/* =========================================
HOVER SHADOW
========================================= */

.accessories-card:hover {
    transform: translateY(-8px);
    transition: .4s ease;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .accessories-section {
        padding: 80px 0;
    }

    .accessories-title {
        font-size: 42px;
    }

    .accessories-script-text {
        font-size: 34px;
    }

    .accessories-image img {
        height: 350px;
    }

    .accessories-btn {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }

}

/* =========================================
COUNTER SECTION
========================================= */

.counter-section {
    padding: 70px 0 40px;
    background: #fff;
}

.counter-box h2 {
    font-size: 85px;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0;
}

.counter-box p {
    color: #c7a17a;
    font-size: 36px;
    font-family: "Marck Script", cursive;
    margin-top: -10px;
}

/* =========================================
INTERIOR IMAGE
========================================= */

.interior-image-section {
    padding: 30px 0 100px;
}

.interior-image-box {
    overflow: hidden;
}

.interior-image-box img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 1s ease;
}

.interior-image-box:hover img {
    transform: scale(1.05);
}



/* =========================================
VIDEO SHOWCASE SECTION
========================================= */

.video-showcase-section {
    padding: 120px 0;
    background: #fff;
}

/* =========================================
IMAGE BOX
========================================= */

.video-image-box {
    position: relative;
    overflow: hidden;
}

.video-showcase-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* =========================================
PLAY BUTTON
========================================= */

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 110px;
    height: 110px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    color: #002874;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    text-decoration: none;

    transition: .4s ease;
    z-index: 10;

    animation: pulseVideo 2s infinite;
}

.video-play-btn:hover {
    background: #002874;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

/* =========================================
PULSE ANIMATION
========================================= */

@keyframes pulseVideo {

    0% {
        box-shadow: 0 0 0 0 rgba(15, 31, 61, 0.35);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(15, 31, 61, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 31, 61, 0);
    }
}

/* =========================================
VIDEO MODAL
========================================= */

.video-player {
    height: 80vh;
    object-fit: cover;
}

.video-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    font-size: 14px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .video-showcase-section {
        padding: 80px 0;
    }

    .video-showcase-image {
        height: 420px;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .video-player {
        height: auto;
    }

}

/* =========================================
CONTACT SECTION
========================================= */

.contact-modern-section {
    padding: 100px 0;
}

.contact-mini-title {
    display: block;
    color: #c7a17a;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 68px;
    line-height: .95;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 30px;
}

.contact-info p {
    color: #777;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info strong {
    color: #002874;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    border-bottom: 1px solid #002874;
    color: #002874;
    letter-spacing: 3px;
    font-size: 12px;
    padding-bottom: 8px;
    text-decoration: none;
}

.map-box iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%);
}

/* =========================================
BANNER SECTION
========================================= */

.banner-modern-section {
    position: relative;
    overflow: hidden;
}

.banner-image {
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 61, 0.28);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-content span {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    font-size: 12px;
}

.banner-content h2 {
    color: #fff;
    font-size: 82px;
    line-height: .95;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 20px;
}





/* =========================================
BLOG SECTION
========================================= */

.blog-modern-section {
    padding: 120px 0;
}

.blog-title {
    font-size: 56px;
    line-height: .95;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0;
}

.blog-script {
    font-size: 52px;
    color: #d9c8b4;
    font-family: "Marck Script", cursive;
    margin-top: -15px;
}

.blog-card {
    transition: .5s ease;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .7s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding-top: 18px;
}

.blog-content span {
    color: #c7a17a;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog-content h4 {
    font-size: 22px;
    line-height: 1.3;
    color: #002874;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 12px;
}

/* =========================================
FOOTER
========================================= */

.footer-modern {
    background: #0b1220;
    padding: 100px 0 30px;
}

.footer-logo {
    color: #fff;
    font-size: 42px;
    letter-spacing: 5px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: .3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    color: #0b1220;
}

.footer-modern h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-modern ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-modern ul li {
    margin-bottom: 12px;
}

.footer-modern ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: .3s ease;
}

.footer-modern ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-news-text {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-form input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 12px 0;
    outline: none;
}

.footer-form button {
    border: 0;
    background: transparent;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

    .contact-title,
    .banner-content h2,
    .blog-title {
        font-size: 42px;
    }

    .blog-script {
        font-size: 34px;
    }

    .banner-image img,
    .interior-image-box img {
        height: auto;
    }

    .map-box iframe {
        height: 350px;
    }

}





/* BACK TOP */
#backTop {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 9999;
}

#backTop.show {
    display: flex;
}



#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg)
            /* rtl:ignore */
        ;
        transform: rotate(360deg)
            /* rtl:ignore */
        ;
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg)
            /* rtl:ignore */
        ;
        transform: rotate(360deg)
            /* rtl:ignore */
        ;
    }
}

.spinner-border {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: -0.125em;
    border: 0.25em solid var(--primary);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: 0.75s linear infinite spinner-border;
    animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}