﻿/*-- -------------------------- -->
<---     Root CSS               -->
<--- -------------------------- -*/
/*

    Primary Blue        #13284D     rgb(19,40,77)   - primary
    Primary Light       #2E4A7D
    Secondary Yellow    #E5C71A     rgb(229,199,26) - secondary 
    Secondary Light     #F0D84A
    
    Cool Gray:  #657081 (subheadings, UI text)
    Light Gray: #BAC0CB (backgrounds, dividers)
    White:      #FEFEFE
    
    Montserrat SemiBold / Bold → headlines      weight 600
    Montserrat Regular → body text      
    
    .montserrat-<uniquifier> {
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
    }
   
*/


:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #13284D; /* Dark Blue – strong brand color */
    --primaryLight: #2E4A7D; /* Light Blue – softer variant for highlights */

    --secondary: #E5C71A; /* Gold – accent or CTA color */
    --secondaryLight: #F0D84A; /* Slightly lighter gold for hover states or soft accents */

    --headerColor: #13284D; /* Dark Blue – works well for headings */
    --bodyTextColor: #2F3640; /* #6B7280Dark Gray – clean and highly readable */
    --bodyTextColorWhite: #FEFEFE; /* White – for text on dark backgrounds */
    --text-muted: #3A4250;
    /* ------ */
    --accentPrimary: #2C5E9E; /*blue*/
    --accentSecondary: #1F5E3B; /*green*/
    /*-----*/
    --colorLightAccent: #f7f7f7;
    --colorHeaderGray: #4B5563;
    --navTextColor: #333;
    --colorBorder: #ccc;
    --colorLtBkg: #F7F7F7;
    --border-subtle: #e5e7eb;
    --badge-bg: #eef2ff;
    --badge-text: #3730a3;
    /*  -----  FONTS ----- */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --subHeadingFontSize: clamp(1rem, 2vw, 1.5rem);
    --tagHeadingFontSize: clamp(1.125rem, 2.5vw, 1.75rem);
    --bodyFontSize: 1rem;
    --topperFontSize: clamp(0.9375rem, 1.75vw, 1.125rem);
    --sansFont: "Montserrat", sans-serif;
    --serifFont: "Montserrat", sans-serif;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    --borderRadius: .5rem;
    --borderRadiusLarge: 1rem;
}

body, html {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: var(--sansFont);
    font-weight: normal;
    line-height: 1.6;
    color: var(--bodyTextColor);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}

.cs-topper, .wysiwyg-sub {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-family:var(--serifFont);
    font-weight: 600;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

.headingGray {
    color:var(--colorHeaderGray);
}
.headingH1Size {
    font-size: var(--headerFontSize);
    font-weight: 600;
}

.headingSubSize {
    font-size: var(--subHeadingFontSize);
}

.fontFSans {
    font-family: var(--sansFont)
}

.fontFSerif {
    font-family: var(--serifFont)
}

.uppercase {
    text-transform:uppercase;
}

/*#region colors*/
.colorPrimary {
    color:var(--primary)
}
.colorSecondary {
    color:var(--secondary);
}

.colorPrimaryLight {
    color: var(--primaryLight)
}

.colorSecondaryLight {
    color: var(--secondaryLight);
}

.colorAccentPrimary {
    color: var(--accentPrimary);
}

.colorAccentSecondary {
    color: var(--accentSecondary);
}
/*#endregion*/

/*#region buttons*/
.cs-button-primary {
    background-color: var(--primary) !important;
}
.cs-button-4 {
    text-align: center;
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(1.75rem, 8vw, 2.125rem);
    text-decoration: none !important;
    font-weight: 700;
    min-width: 10.875rem;
    margin: 0;
    overflow: hidden;
    color: var(--bodyTextColorWhite) !important;
    padding: .25rem 3rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: var(--borderRadius)
}
    .cs-button-4:hover {
        color: var(--primary) !important;
    }

.cs-button-4:before {
    content: '';
    width: 150%;
    height: 110%;
    background: var(--secondary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    left: -140%;
    z-index: -2;
    transform: skew(45deg) translateY(-50%);
    transition: left .3s;
}

.cs-button-4:hover:before {
    left: -20%;
}


 .cs-button-solid {   
    text-align: center;
    text-decoration: none;   
    /* clips corners of the before element */
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 1.75rem;
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    white-space: nowrap;
    padding: 0 1rem;
    border-radius: var(--borderRadius);
    -webkit-animation: fadeIn .75s;
    -moz-animation: fadeIn .75s;
    -ms-animation: fadeIn .75s;
    -o-animation: fadeIn .75s;
    animation: fadeIn .75s;
}

.cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: var(--secondary);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}

.cs-button-solid:hover {
    color: #fff;
}

.cs-button-solid:hover:before {
    width: 100%;
}

/*#endregion*/

/*#region move*/
.fadeMoveDown {
    -webkit-animation: fade-in-move-down .75s;
    -moz-animation: fade-in-move-down .75s;
    -ms-animation: fade-in-move-down .75s;
    -o-animation: fade-in-move-down .75s;
    animation: fade-in-move-down .75s;
}
.fadeMoveUp {
    -webkit-animation: fade-in-move-up .75s;
    -moz-animation: fade-in-move-up .75s;
    -ms-animation: fade-in-move-up .75s;
    -o-animation: fade-in-move-up .75s;
    animation: fade-in-move-up .75s;
}
/*#endregion*/

/* #region reveal */
    .revealCustom {
        position: relative;
        transform: translateY(150px);
        opacity: 0;
        transition: .75s all ease;
    }

    .revealCustom.active {
        transform: translateY(0);
        opacity: 1;
    }

    .revealNewsItem {
        position: relative;
        transform: translateX(3000px);
        transition: .75s all ease;
    }

    .revealNewsItem.active {
        transform: translateX(0);
        -webkit-animation: fadeIn 2.5s ease-out;
        -moz-animation: fadeIn 2.5s ease-out;
        -o-animation: fadeIn 2.5s ease-out;
        animation: fadeIn 2.5s ease-out;
        transition: all .75s ease-in-out;
    }

    .revealNewsItem:nth-of-type(1).active {
        transition-delay: .25s;
    }

    .revealNewsItem:nth-of-type(2).active {
        transition-delay: .45s;
    }

    .revealNewsItem:nth-of-type(3).active {
        transition-delay: .65s;
    }

    .revealNewsItem:nth-of-type(4).active {
        transition-delay: .85s;
    }

    .revealNewsItem:nth-of-type(5).active {
        transition-delay: .95s;
    }

    .revealCustomZoom {
        transition: all .75s ease-in-out;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .revealCustomZoom.active {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
/* #endregion */

/*#region keyframes*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in-move-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-move-right {
    0% {
        opacity: 0;
        transform: translateX(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-move-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-move-up {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*#endregion*/
