/* Header Styles */
:root {
    --pri-color: #4b614c;
    --sec-color: #d5e4d5;
    --accent-color: #99bfc8;
    --accent-color-2: #003449;
    --primarytext: "Sorts Mill Goudy", serif;
    --secondarytext: Calibri, sans-serif;
}

.dark-bg {
    background-color: var(--accent-color-2) !important;
    color:white;
}


.link {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    transition: 1s ease all;
    cursor: pointer;
}

    .link:hover {
        color: var(--accent-color) !important;
    }


#page-cover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 20;
    backdrop-filter: blur(4px);
    color: white;
    z-index: -2;
    opacity: 0;
    transition: 1s ease all;
    cursor: pointer;
}

    #page-cover.open {
        display: block;
        z-index: 20;
        opacity: 1;
    }

    #page-cover.modal-open {
        display: block;
        z-index: 20;
        opacity: 1;
    }

        #page-cover.modal-open #page-modal {
            display: flex;
        }

#page-modal {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: none;
}

#page-modal-content {
    background: rgba(255,255,255,.7);
    width: 800px;
    max-width: 80%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #373737;
    padding: 20px;
}


.link:hover {
    color: var(--sec-color);
    font-weight: bold;
}

.button {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    position: relative;
    transition: 1s ease all;
}

    .button:hover {
        color: #373737;
        font-weight: bold;
        opacity: .6;
    }


        .button:hover .dot {
            opacity: 1;
        }

.button-accent {
    background: var(--pri-color);
    color: white !important;
}

    .button-accent.blue {
        background: var(--accent-color-2);
    }

.button-rounded {
    border-radius: 4px;
    padding: 10px;
}

.floating-dot .dot {
    position: absolute;
    right: 8px;
    top: 50%;
    right: 20px;
    transform: translate(50%, -50%);
    font-size: 10px;
    opacity: 0;
    color: var(--accent);
    display: block;
    display: none;
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

html, body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: var(--secondarytext);
    box-sizing: border-box;
    overflow-x: hidden;
    color: var(--accent-color-2) !important;
}

body {
    margin-top: 130px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Hind Madurai', sans-serif;
    font-family:var(--primarytext);
}



.outer {
    display: flex;
    padding: 12px;
    letter-spacing: 1px;
    box-sizing: border-box;
    position: relative;
}


.inner {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.max-width {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: orange;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: left;
}

/*Established*/

.smaller-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    margin: 0 auto;
    min-height: 300px;
}

.smaller-div-left {
    width: 50%;
    display: flex;
    flex-direction: row;
    column-gap: 0;
    align-items: center;
    justify-content: center;
}

.smaller-div div {
    padding: 12px;
}

.smaller-div .established {
    font-size: 36px;
    font-weight: bold;
    text-align: right;
    font-weight: bold;
}

.year {
    color: white;
    font-size: 96px;
    text-align: center;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--accent-color);
}

.smaller-div .summary-text {
    font-size: 14px;
    color: #575757;
}

.smaller-div .see-more {
    width:100% !important;
    max-width: 300px;
}


#main-banner-outer, .main-banner-outer {
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 110px);
    min-width: 100%;
    position: relative;
    padding: 0;
    box-sizing:border-box;
}

    #main-banner-outer #banner-image, .main-banner-outer .banner-image {
        background-attachment: fixed;
        /* background-image: url(image/banner.jpg); */
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-size: cover;
        background-position: top center;
        transition: background-image 1s ease-in-out; /* Smooth fade effect */
        background-position: top center;
    }
.banner-image.about {
    background-image: url(../image/banner-5.jpg);
}

.banner-image.academics {
    background-image: url(../image/academics-bg.jpg) !important;
}

.banner-image.enrollment {
    background-image: url(../image/admissions-bg.jpg) !important;
}
.banner-image

@keyframes slideshow {
    0% {
        background-image: url(image/banner.jpg);
    }

    33% {
        background-image: url("image/banner-5.jpg");
    }

    66% {
        background-image: url("image/banner-1.jpg");
    }

    100% {
        background-image: url("image/banner-4-new.png");
    }
}

#quote-div-outer {
    min-height: 400px;
    background: #373737;
}

#main-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 12px;
    box-sizing: border-box;
}

#main-banner-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#main-banner-content .logo img {
    max-height: 300px;
}

#main-banner-header {
    text-transform: uppercase;
    max-width: 800px;
    text-shadow: 6px 6px 0px rgba(0,0,0,0.2);
}

.main-banner-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 800px;
}

#main-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

#main-banner-subtext {
    font-size: 1rem;
}

.cover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #181818;
    z-index: 1;
    opacity: .7;
}

.cover .floating-logo {
    position:relative;
   width: 240px;
   filter:invert(1);
   top:50%;
   left:50%;
   transform:translate(-50%, -50%);
   z-index:0;
   opacity:.2;
}
.cover .floating-logo img {
    width: 100%;
}

section {
    position:relative;
}


#main-banner-buttons {
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    margin-top: 20px;
    justify-content: start;
    column-gap: 12px;
}

    #main-banner-buttons .button {
    }


.button.give {
    background: var(--pri-color);
}

.button.enroll {
    background: transparent;
    background-color: var(--pri-color);
    width: 50%;
    max-width: 140px;
    font-weight: normal;
    font-size: 18px;
}

#content-div-outer {
    min-height: 50vh;
    border-bottom: 10px solid var(--pri-color);
}


.sidebar-style {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 45%;
    min-width: 200px;
}

    .sidebar-style.left {
        left: 0;
    }

    .sidebar-style.right {
        right: 0;
    }

    .sidebar-style.green {
        background-color: var(--pri-color);
        background-size: cover;
        z-index: -1;
    }


    .sidebar-style.darkblue {
        background-color: var(--accent-color-2);
    }

#content-div-outer .image {
}

    #content-div-outer .image img {
        width: 100%;
    }

#content-div-

.animate {
    transition: 1.5s ease-in all;
    transform: none;
}

.slide-right {
    transform: translateX(-100%);
}

.slide-left {
    transform: translateX(100%);
}

.slide-up {
    transform: translateY(50%);
    opacity: 0 !important;
}

.slight-shift {
    transform: translate(0%,10%) !important;
    opacity: 0 !important;
}




.quote {
    min-height:200px;
    box-sizing:border-box;
}


.split-div-outer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    box-sizing: border-box;
    align-items: stretch;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

    .split-div-outer .left-split, .split-div-outer .right-split {
        padding: 12px;
        box-sizing: border-box;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 55%;
    }

    .split-div-outer.left .left-split, .split-div-outer.right .right-split {
        background: var(--accent-color-2);
        width: 45%;
    }

    .split-div-outer.left .right-split, .split-div-outer.right .left-split {
        background-color: #e7e7e7;
        text-align: justify;
    }

.left-split, .right-split {
    display: flex;
    flex-direction: column;
    background-position: center center;
}

.split-div-outer.right .left-split .content {
    text-align: right;
}

.split-div-outer.right .right-split .split-image {
    background-position: center center;
}

.split-div-outer.right-split {
}


.left-split {
    align-items: end;
}

.right-split {
    justify-content: start;
}

.left-split img {
    position: absolute;
    width: 90%;
    top: 50%;
    right: -5%;
    transform: translate(0%,-50%);
    max-height: 60%;
    width: auto;
    margin-right: -30px;
}


.split-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    opacity: .5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.split-div-outer .content {
    max-width: 460px;
    padding: 40px;
/*    font-family: 'DM Sans', sans-serif;
*/}

    .split-div-outer .content h1 {
        font-weight: bolder;
        text-transform: uppercase;
        margin: 0;
        text-shadow: none;
    }

    .split-div-outer .content p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 1px;
        font-weight: normal;
    }

.action-button {
    display:inline !important;
    background: var(--pri-color);
    text-decoration: none;
    color: white;
    padding: 12px 40px;
    border-radius: 2px;
    margin: 2px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    transition: 1s ease all;
}

    .action-button span {
        margin-left: 14px;
        transition: 1s ease all;
    }

    .action-button:hover {
        background: white;
        color: var(--pri-color);
    }

        .action-button:hover span {
            margin-left: 30px;
        }


.animate-me {
    transition: transform 1.5s ease-in, opacity 2s ease-in;
    transform: none;
    opacity: 1;
    z-index:2;
}

/* Initial out-of-view positions */
.slide-left {
    transform: translateX(60%);
    opacity: 0;
}

.slide-right {
    transform: translateX(-60%);
    opacity: 0
}

.slide-up {
    transform: translateY(-100%);
    opacity: 0;
}

.fade {
    opacity: 0;
}


#philosophy-div {
    padding: 150px 0;
    justify-content: center;
    align-items: center;
}

    #philosophy-div .outer-column {
        text-align: center;
        padding: 10px;
    }

    #philosophy-div img {
        width: 100%;
        height: auto;
    }

    #philosophy-div h1 {
        text-align: center;
        text-shadow: none;
        font-size: 60px;
    }


    #philosophy-div p {
        text-align: center;
    }

#main-banner .content {
    z-index: 3;
    position: relative;
    color: white;
    max-width: 800px;
    padding-left: 20px;
    box-sizing: border-box;
}

    #main-banner .content .button {
        margin-right: auto;
    }

h1 {
    font-size: 55px !important;
    line-height: 60px !important;
    margin:0;
}

p {
    font-size: 18px;
    line-height: 24px;
}

#grades-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 100px auto;
}

    #grades-div h1, #testi-div-outer h2 {
        margin-bottom: 8px;
        font-size: 32px;
        color:white;
        z-index:5;
        margin-top:8px;
        line-height:33px;
    }

    #testi-div-outer h2 {
        text-align:left;
    }

    #grades-div .inner h2 {
        width: 100%;
    }

.grades-row {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
    width: 100%;
    justify-content: center;
}

    .grades-row .grade {
        width: 33.3%;
        padding: 12px;
    }

#grades-div .inner {
    flex-wrap: wrap;
}

.grade-image-container {
    background: var(--accent-color);
    position: relative;
    padding: 8px;
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
    position: relative;
    left: -12px;
}

.grade-image {
    position: absolute;
    left: 12px;
    top: 12px;
    right: -12px;
    bottom: -12px;
    background-size: cover;
    background-position: center center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 4px;
}


.grade {
    max-width: 340px;
}

    .grade h3 {
        margin-top: 24px;
        margin-bottom: 8px;
    }

    .grade b {
        font-size: .9rem;
        color: #575757;
        display: block;
    }

    .grade p {
        font-size: 12px;
    }

#footer-div-outer {
    padding: 80px 0 20px;
    background: #171717;
    background: linear-gradient(var(--accent-color-2),#e7e7e7 12%);
}

#footer-div {
    color: #373737;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left, .footer-right {
    width: 25%;
}

.footer-center {
    width: 50%;
}

.footer-left img {
    width: 140px;
}

#footer-under-construction {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    justify-content: center;
    background: #121212;
    color: #373737;
    font-size: 32px;
    font-weight: bold;
    flex-direction: column;
}

    #footer-under-construction img {
        width: 200px;
    }

.education-for-life {
    color: var(--pri-color);
    font-weight:bolder !important;
    margin-bottom:4px;
    opacity:.5;
    font-size:20px;
    letter-spacing:1px;

}


.hide-on-desktop {
    display: none;
}

#main-banner-outer, .main-banner-outer {
    padding: 20px;
    box-sizing: border-box;
    height: calc(100dvh - 80px);
    text-align: center;
}

#main-banner-content, .main-banner-content {
  
    padding: 0 20px;
}

#main-banner-text h1, .main-banner-text h1 {
    font-size: 56px;
    line-height: 59px;
    margin: 0 !important;
}

#main-banner-text p, .main-banner-text p {
    font-size: 18px;
}

@media (max-width: 900px) {
    body {margin-top: 150px !important;}
    

    .hide-mobile {
        display: none;
    }

   

   

    .smaller-div {
        flex-direction: row;
        font-size: 12px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }



        .smaller-div .medium, .smaller-div .small {
            width: 100%;
            text-align: center;
            
        }

        .smaller-div .small {
            margin-top:12px;
        }

    .smaller-div {
        width: 100%;
        box-sizing: border-box;
        min-height: 100vh;
        flex-direction: column;
        justify-self: center;
        max-width: 500px;
    }

    .smaller-div-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

        .smaller-div-left .small {
            font-weight: bolder;
            box-sizing: border-box;
        }

        .smaller-div-left .medium {
            font-size: 140px;
            margin-top: -40px;
            box-sizing: border-box;
        }

    .smaller-div .large {
        width: 100% !important;
        box-sizing: border-box;
    }

    .split-div-outer {
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
    }

        .split-div-outer .content {
            max-width: 100vw !important;
            padding: 20px;
            box-sizing: border-box;
        }

        .split-div-outer.right {
            flex-direction: column-reverse;
        }

        .split-div-outer div {
            width: 100% !important;
            text-align: center !important;
        }

        .split-div-outer .split-image {
            width: 100%;
        }

    .left-split, .right-split {
        min-height: 240px;
    }

    .split-div-outer h1 {
        font-size: 32px;
    }

    .slide {
       /* display: none;*/
    }

        .slide.show {
            display: block;
        }

    .grade {
        width: 100% !important;
        max-width: 90vw;
    }

    #grades-div {
        position: relative;
        min-height: calc(100vh - 60px) !important;
        flex-direction:column;
    }

        #grades-div h1 {
            font-size: 30px;
            line-height: 34px;
        }

    .hide-on-desktop {
        display: block;
    }

    #grade-slides-buttons {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
    }

    .testi {
        width: 100%;
        aspect-ratio: 9/16;
        border-radius: 8px;
        max-width: 95vw;
    }

    #testi-div-outer h1 {
        font-size: 32px;
        line-height: 36px;
    }

    /* Shared Styles for All Dots */
    #testi-position-dots i, #grade-position-dots i {
        font-size: 1rem; /* Adjust size as needed */
        color: #ccc !important; /* Inactive dot color */
        margin: 0 5px;
        cursor: pointer;
        transition: color 0.3s ease-in-out; /* Smooth transition for active state */
        z-index: 2;
        display:block;
        display:none;
    }

        #testi-position-dots i.active-dot, #grade-position-dots i.active-dot {
            color: var(--pri-color) !important; /* Active dot color (e.g., blue) */
        }

    /* Dot Container Styling */
    #testi-position-dots, #grade-position-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px; /* Space above/below the dots */    }

        /* Optional: Hover Effect for Dots */
        #testi-position-dots i:hover, #grade-position-dots i:hover {
            color: #555; /* Slightly darker hover effect */
        }


    .top-left {
        text-align: center;
        margin-right: 0 !important;
        width: 100% !important;
border:none;

    }

}

@media (max-width: 900px) {
    /* Shared Dot Styles */
    #testi-position-dots i, #grade-position-dots i {
        font-size: 1.2rem; /* Adjust size as needed */
        color: #ccc; /* Inactive dot color */
        margin: 0 5px;
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
        display:none;
    }

        #testi-position-dots i.active-dot, #grade-position-dots i.active-dot {
            color: #007BFF; /* Active dot color */
            transform: scale(1.2); /* Slightly enlarge the active dot */
        }

    /* Containers for Dots */
    #testi-position-dots, #grade-position-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 15px; /* Adds spacing above the dots */
    }

        /* Optional: Hover Effect for Interactive Dots */
        #testi-position-dots i:hover, #grade-position-dots i:hover {
            color: #555; /* Slightly darker on hover */
        }

    .testi.fade-out, .grade.fade-out {
        opacity: 1;
    }

    .testi {max-width:600px !important;width:100% !important;aspect-ratio:2/4 !important; margin:12px !important;}

    /* Slide Animation: Fade In and Fade Out */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    /* Fade-in and fade-out classes */
    .fade-in {
        animation: fadeIn 2s ease-in-out; opacity:1;
    }

    .fade-out {
       /* animation: fadeOut 2s ease-in-out;*/
    }

    /* Container Styling for Grade and Testimonial Sections */
    .grades-row, #testi-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 95vw;
        align-items: center;
        box-sizing: border-box;
        margin: 0;
        flex-direction:column;
    }

    .grade, .testi {
        /*display: none !important;*/ /* Start hidden */
        width: 100%; /* Adjust to your container size */
    }

        .grade.fade-in {
            display: block !important; /* Show element when it fades in */
            opacity: 1;
        }

        .testi.fade-in {
            display: flex !important; /* Show element when it fades in */
            opacity: 1;
        }
    /* Optional: Adjust margins or padding as needed for layout */

}
.testi.fade-in {
    opacity:1;
}

@media (min-width:901px) {


    .fade-in {
        opacity: 1;
    }

    .fade-out {
        opacity: 0;
    }
}

#footer-div-outer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: stretch;
    align-content: stretch;
}

.top-row, .bottom-row {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #373737;
    box-sizing: border-box;
}

.top-row {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    /* border-top: 1px solid rgba(0,0,0,.1); */
    padding: 12px 0;
}

.top-left, .bottom-right {
}

.top-left {
    text-align: center;
    margin-right: 20px;
    width: 25%;
    border-right: 1px solid rgba(0,0,0,.2);
}

.top-right {
    width: 75%;
}

    .top-right h4 {
        margin-bottom: 13px;
        font-size: 13px;
    }

.top-left img {
    width: 120px;
}

.top-right, .bottom-left {
    flex-shrink: 0;
}

.footer-buttons {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 32px;
    background: gray;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: .5s ease all;
}

    .footer-social:hover {
        background-color: var(--accent-color-2);
    }

.footer-button {
    padding: 8px 12px;
    text-decoration: none;
    background: var(--pri-color);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}

    .footer-button.blue {
        background-color: var(--accent-color-2) !important;
    }

    .footer-button i {
        margin-left: 8px;
        font-size: 12px;
    }

.bottom-row {
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.bottom-left {
    width: 75%;
}

    .bottom-left p {
        font-size: 10px;
        color: rgba(0,0,0,.8);
        line-height: 14px;
        padding: 20px;
    }

.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 8px;
    transition: .5s ease-in-out all;
}

    .footer-links a {
        text-decoration: none;
        display: block;
        color: white;
        font-size: 10px;
        width: calc(50% - 12px);
        color: gray;
    }

        .footer-links a:hover {
            color: var(--pri-color);
        }

.copyright {
    font-size: 10px;
    color: black;
    text-align: center;
    padding: 12px;
    width: 100%;
    display: block;
}

#footer-div-outer .inner {
    max-width: 960px;
    
    box-sizing: border-box;
}

@media (max-width:900px) {
    .top-row, .bottom-row {
        flex-direction: column;
        box-sizing: border-box;
    }

    .top-row h4 {
        margin-bottom:30px;
    }

    .top-left, .top-right {
        width: 100%;
        margin-bottom: 12px;
        padding: 12px;
        box-sizing: border-box;
        text-align: center;
    }

    .footer-buttons {
        justify-content: center;
    }

    .top-right h4 {
        font-size: 12px;
    }

    .top-left img {
        width: 200px;
    }

    .bottom-left, .bottom-right {
        width: 100%;
    }

    .footer-links {
        padding: 12px;
        justify-content: center;
        align-items: center;
    }

        .footer-links a {
            font-size: 14px;
        }

       .copyright {
           margin: 10px 0 0 0 !important;
       }
}

/* Call to Action Section */
.cta {
    /*background-color: var(--accent-color-2);*/
    background-image: url(/image/aerial-building.jpg);
    background-position: center center;
    background-size: cover;
    color: white;
    text-align: center;
    min-height: 50vh;
    display:flex;
    justify-content:center;
    flex-direction:column;
}

    .cta .cover {
        background: var(--accent-color-2) !important;
        opacity: .9;
    }

.cta-inner {
    width: 100%;
    max-width: 700px;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
}

.cta .section-inner {
    display: flex;
    flex-direction: column;
    box-sizing:border-box;
}

.cta .btn {
    max-width: 300px !important;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--accent-color-2);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

    .btn:hover {
        background-color: white;
        transform: translateY(-3px);
    }
