﻿* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
/* Change text selection background and text color */
::selection {
    background: rgba(255, 177, 37,0.5);
    color: #000; /* text color */
}

/* For Firefox */
::-moz-selection {
    background: rgba(255, 177, 37,0.1);
    color: #000;
}

html, body {
    overflow-x: hidden;
}

:root {
    /* Primary Colors 125F12 */
    --primary: #2f6b3a;
    /* Secondary Colors */
    --secondary: #FFB125;
    /*Footer color*/
    --palleteshade: #2f6b3a;
    /**/
    --muddycolor: #5F3D22;
    /**/
    --jagerryclr: #D09F66;
}
/*------- font --------*/
.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 0 0 10px 10px;
}

.logo-symbol {
    height: 120px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    height: 30px;
    width: auto;
    margin-top: 6px;
    flex-shrink: 0;
}
/*-------- custom classes --------------*/
.themePrimary {
    color: var(--primary);
}

.themePrimary-bg {
    background-color: var(--primary);
}

.themeSecondary {
    color: var(--secondary);
}

.themeOlive-bg {
    background-color: var(--muddycolor);
}

.themeSecondary-bg {
    background-color: var(--secondary);
}

.themejaggeryclr-bg {
    background-color: var(--jagerryclr);
}

.custom-border-radius {
    border-radius: 40px 0
}

.button {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease-in;
}

    .button:hover {
        background-color: #fff;
        color: var(--primary);
    }

#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--secondary);
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000;
}

/*------------ layout ------------*/
/* header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Optional: transparent over banner */
.site-navbar {
    background: transparent;
}

/* After banner section */
.page-content {
    margin-top: 120px; /* same as navbar height */
}

.site-header .navbar {
    padding: 15px 0;
    transition: background 0.3s;
}

    .site-header .navbar a.nav-link {
        position: relative;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 600;
        margin-left: 15px;
        letter-spacing: 1.2px;
        padding: 6px 14px;
        border-radius: 20px;
        transition: all 0.35s ease;
    }

        .site-header .navbar a.nav-link:hover,
        .site-header .navbar a.nav-link.active {
            background: rgba(57, 72, 2, 0.75);
            color: #fff;
        }

/*--------footer ---------*/
.footer-section {
    background: var(--palleteshade);
    font-size: 15px;
}

.footer-logo {
    height: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.footer-links a {
    color: #fff !important;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: var(--secondary) !important;
    }

.footer-about {
    font-size: 14px;
    line-height: 1.7;
}

.social-icons a {
    font-size: 30px;
    color: #fff !important;
}

    .social-icons a:hover {
        color: var(--secondary) !important;
    }

.footer-bottom {
    font-size: 14px;
    color: #f6f6f6;
}

/*========================== home =======================-*/

.carousel-item {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    z-index: 2;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* Optional: Navbar color change on scroll */
.navbar.scrolled {
    background: rgba(15, 42, 69, 0.9);
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 1;
    -webkit-animation: none;
    animation: none;
    transition: transform 0.8s ease;
    transform: scale(1);
    transition: transform 9s ease;
}


/* Active slide animation */
.carousel-item.active img {
    /*opacity: 1;
    -webkit-animation: zoomOut 8s ease forwards;
    animation: zoomOut 8s linear forwards;*/
    transform: scale(1.15);
}

/* WebKit keyframes – smooth zoom-out */
@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.banner-heading {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-size: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

.badge-style span {
    font-family: "Poppins", sans-serif;
    padding: 8px 22px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.6s;
}

.sec-banner-heading span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
}

.sec-banner-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    max-width: 700px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

.turmeric-heading {
    line-height: 1.2;
    letter-spacing: 1.5px;
}

    .turmeric-heading .thin-line {
        font-family: "Poppins", sans-serif;
        display: block;
        font-size: 2.8rem;
        font-weight: 100;
        margin-bottom: 6px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1.2s ease forwards;
        animation-delay: 0.3s;
    }

    .turmeric-heading .bold-line {
        font-family: "Poppins", sans-serif;
        display: block;
        font-size: 4.2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 2px 2px 3px var(--primary);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1.2s ease forwards;
        animation-delay: 0.6s;
    }

    .turmeric-heading .last-line {
        display: block;
        font-family: "Poppins", sans-serif;
        font-size: 3.1rem;
        font-weight: 200;
        letter-spacing: 3px;
        margin-top: 10px;
        position: relative;
        padding-left: 40px;
        color: #fff;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1.2s ease forwards;
        animation-delay: 0.8s;
    }

.banner-heading-style h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 12px;
    max-width: 800px;
    padding-left: 15px;
}

.banner-heading-style p {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 2.8rem;
    color: #E6F2D6;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
    margin-top: 8px;
}

.banner-heading-style h2,
.banner-heading-style p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
}

.banner-heading-style h2 {
    animation-delay: 0.3s;
}

.banner-heading-style p {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/***********====== about section =======*************/

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    padding: 25px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    transition: background-color 0.3s ease-in;
}

    .video-wrapper:hover {
        background-color: #fff;
    }

    .video-wrapper video {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 18px;
    }

.about-section {
    position: relative;
}

    /*.about-section .about-content::before {
        content: "about us";
        position: absolute;
        top: -1%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 6rem;*/ /* adjust as needed */
    /*font-weight: 900;
        color: rgba(57, 72, 2, 0.06);*/ /* light, subtle */
    /*letter-spacing: 8px;
        z-index: 0;
        pointer-events: none;*/ /* prevents overlap issues */
    /*white-space: nowrap;
    }*/

    /* Make sure your text stays above watermark */
    .about-section .about-content > * {
        position: relative;
        z-index: 1;
    }

/*=========== v-m-v section ===========*/
.vmv-box p {
    font-size: 15px;
}

/*=========== specialization section============*/
.specialization-section {
    position: relative;
    padding: 110px 0;
    background: url('../images/specialization/specialization-bg.jpg') center center / cover no-repeat fixed;
}

    .specialization-section .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .specialization-section .container {
        position: relative;
        z-index: 2;
    }

.spec-box img {
    width: 85px;
    margin-bottom: 12px;
}

.spec-box p {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}
/*---------------- product section------------*/
.read-more {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .read-more:hover {
        color: var(--primary);
        letter-spacing: 3px;
    }
/*------------- clip text ----------*/
.clip-text-section {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.clip-text {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 10vw, 100px);
    line-height: 1.05;
    text-transform: uppercase;
    background-image: url('../images/special_offer_text_bg.jpg');
    background-size: cover;
    background-position: 100%;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: moveImageVertical 8s linear infinite alternate;
    user-select: none;
}

@keyframes moveImageVertical {
    0% {
        background-position: 70% 45%;
    }

    100% {
        background-position: 40% 70%;
    }
}
/*-------------- glimpse ---------------*/
.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 18px;
    justify-items: center;
    align-items: center;
}

.glimpse-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .glimpse-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .glimpse-item:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

.video-item {
    grid-column: 2 / span 2; /* middle two columns */
    grid-row: 1 / span 2; /* taller video */
}

    .video-item iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 12px;
    }

/*----- certificate section---------*/
.certificate-card {
    cursor: pointer;
}

.certificate-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 9999;
    background: rgba(0,0,0,0.65);
    border: none;
    color: white;
    font-size: 22px;
    padding: 6px 10px;
    border-radius: 50%;
    cursor: pointer;
}

    .certificate-close-btn:hover {
        background: rgba(0,0,0,1);
    }
/*======================== inner-hero ======================*/
.inner-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 120px 0;
    text-align: left;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-subtitle {
    font-size: 14px;
}

.about-hero {
    background: url('../images/banner/about-banner.jpg') center center / cover no-repeat;
}

.brand-hero {
    background: url('../images/banner/brand-banner.jpg') center center / cover no-repeat;
}

.contact-hero {
    background: url('../images/banner/contact-banner.jpg') center center / cover no-repeat;
}

.media-hero {
    background: url('../images/banner/media-banner.jpg') center center / cover no-repeat;
}

.product-hero {
    background: url('../images/banner/product-banner.jpg') center center / cover no-repeat;
}
.jaggery-product-hero{
    background: url('../images/banner/jaggery-product-banner.jpg') center center / cover no-repeat;
}
/*======================== About Page ======================*/
.about-image-circle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

    .about-image-circle img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 40px 0;
        border: 3px solid var(--primary);
        transition: transform 0.4s ease;
    }

        .about-image-circle img:hover {
            transform: scale(1.08);
        }

.quality-timeline {
    position: relative;
    max-width: 800px;
    padding-left: 30px;
}

    .quality-timeline::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary);
    }

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-dot {
    position: absolute;
    left: 2px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 5px 0;
}

.timeline-content {
    background: #f8f9f6;
    padding: 20px;
    border-radius: 12px;
}

.object-fit-cover {
    object-fit: cover;
}

/*=================== contact page =================*/
.address-card {
    background-color: #fff;
    border: 1px dotted var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease-in;
}

    .address-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/*================= Media page ==================*/
.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}

.nav-pills .nav-link {
    border-radius: 8px;
    font-weight: 600;
    color: #000;
}

.media-bg-color {
    background-color: rgba(255, 177, 37,0.1);
}
/*--- news ---*/
.news-card {
    border-radius: 12px;
    overflow: hidden;
}

.news-img-wrapper {
    position: relative;
    height: 250px;
    overflow: visible;
    z-index: 1;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge-absolute {
    position: absolute;
    bottom: -25px;
    left: 15px;
    background: #fff;
    color: var(--primary);
    padding: 6px 12px;
    font-weight: 600;
    border: 0.5px solid var(--primary);
    border-radius: 6px;
    text-align: center;
    z-index: 10;
}

    .date-badge-absolute .day {
        display: block;
        font-size: 18px;
    }

    .date-badge-absolute .month {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
    }

    .date-badge-absolute .year {
        display: block;
        font-size: 18px;
    }
/*--- news detail page ---*/
.breadcrumb {
    --bs-breadcrumb-divider: ">";
}

.breadcrumb-item a {
    font-size: 18px;
    color: #000;
    transition: color 0.3s;
}

    .breadcrumb-item a:hover {
        color: var(--primary);
    }

.breadcrumb-item.active {
    color: #555;
}

.news-actions .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--muddycolor);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s;
}

    .news-actions .back-btn:hover {
        transform: scale(1.1);
    }

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

    .share-btn.facebook {
        background: #3b5998;
    }

    .share-btn.twitter {
        background: #0F1419;
    }

    .share-btn.linkedin {
        background: #0077b5;
    }

    .share-btn:hover {
        transform: scale(1.1);
        opacity: 0.9;
        color: #fff;
    }

/*==================== product page ============================*/
.product-img {
    height: 400px;
    object-fit: cover;
}

.variety-item {
    height: 100%;
    border: 1px solid var(--secondary);
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    transition: .3s;
}

.variety-thumb {
    width: 200px;
    height: 200px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.5s ease;
    text-align: center;
}


.variety-badge {
    display: inline-block;
    background: #fae3a0;
    color: #5a3b00;
    padding: 2px 9px;
    font-size: .75rem;
    border-radius: 4px;
    margin: 0 4px 6px 0;
}

.variety-item:hover .variety-thumb {
    transform: scale(1.4) translateX(-10%);
    z-index: 1;
}
/*--- grade ---*/
.grades-modern-wrapper {
    gap: 30px;
}

.grade-modern {
    text-align: center;
    cursor: pointer;
    flex: 1 1 150px;
    position: relative;
    transition: transform 0.4s ease;
}

.circle-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--secondary);
    position: relative;
}

    .circle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .circle-img .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        font-size: 0.85rem;
        transition: opacity 0.4s ease;
        border-radius: 50%;
        text-align: center;
        padding: 10px;
    }

.grade-modern:hover .circle-img img {
    transform: scale(1.1);
}

.grade-modern:hover .circle-img .overlay {
    opacity: 1;
}

.grade-name {
    font-weight: 600;
    font-size: 1rem;
}

.product-bg-img {
    background: linear-gradient(rgba(207, 170, 68, 0.8), rgba(0,0,0,0.7)), url('../images/special_offer_text_bg.jpg') center center / cover no-repeat fixed;
}

.product-text {
    background: linear-gradient(90deg, #ffffff, rgba(255, 188, 0, 0.8), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/*================ jaggery product page=======================*/
.jaggery-sectn {
    background: rgba(208, 159, 102, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jaggery-image {
    padding: 40px;
}

.content-text {
    max-width: 700px;
    margin: 0 auto;
}

.signature-box {
    max-width: 520px;
    padding: 20px 30px;
    border-left: 4px solid var(--secondary);
    background: rgba(208, 159, 102, 0.08);
    border-radius: 8px;
    text-align: center;
}

.jaggery-types {
    background: #fafafa;
}

.type-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 22px;
    height: 100%;
    transition: all 0.35s ease;
}

    .type-card img {
        max-height: 200px;
        margin-bottom: 15px;
    }

    .type-card h4 {
        font-weight: 600;
        margin-bottom: 15px;
    }

.weight-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .weight-badges span {
        padding: 7px 18px;
        border-radius: 20px;
        font-size: 0.9rem;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.15);
    }

.type-card.kesari {
    background: linear-gradient( 135deg, rgba(255, 177, 37, 0.25), rgba(255, 177, 37, 0.08) );
}

.type-card.brown {
    background: linear-gradient( 135deg, rgba(208, 159, 102, 0.3), rgba(208, 159, 102, 0.1) );
}

.decor-img {
    position: absolute;
    pointer-events: none;
    opacity: 0.85;
}

.decor-top-left {
    top: -30px;
    left: -80px;
    width: 220px;
}

.decor-bottom-right {
    bottom: -30px;
    right: -80px;
    width: 220px;
}

/* Flip horizontally */
.flip-x {
    transform: scaleX(-1);
}

.jar-img{
    height:250px;
}

.center-highlight {
    background: rgba(208, 159, 102, 0.15);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: #333;
    position: relative;
}

    .center-highlight::before {
        content: "";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 50px;
        background: var(--secondary);
        border-radius: 4px;
    }

    .center-highlight::after {
        content: "";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 50px;
        background: var(--secondary);
        border-radius: 4px;
    }

.tub-img {
    max-width: 400px;
    object-fit:cover;
}

.weight-list span {
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(208, 159, 102, 0.15);
    transition: background 0.3s, color 0.3s;
}

.jaggery-cta {
    height: 500px;
    background: url('/images/products/jaggery/jaggery-group.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
}
    .jaggery-cta .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .jaggery-cta .content {
        position: relative;
        text-align: center;
        padding: 0 50px;
    }
.button-cta {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 15px;
    border: 3px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease-in;
}

    .button-cta:hover {
        border: 3px solid #fff;
        background-color: transparent;
        color: #fff;
    }
