﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/*#region Local Inter Font*/
/* inter-100 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/inter-v12-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/inter-v12-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v12-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v12-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v12-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/inter-v12-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*#endregion*/
/*########################################################################################################*/

* {
    font-family: 'Inter', Sans-Serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: #101828;
    overflow: auto;
    /*scroll-snap-type: y mandatory;*/
}

/*    body::-webkit-scrollbar {
        width: 0 !important;
    }*/

section {
    /*scroll-snap-align: start;*/
    height: 100%;
/*    display: flex;*/
/*    flex-direction: column;*/
}

button {
    border: 0;
    outline: 0;
}

.blue-button {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #2A65A1;
    background: #2A65A1;
    max-width: 130px;
}

.page {
    /*    overflow-y: scroll;
    height: 100vh;*/
    /*scroll-snap-type: y proximity;*/
    /*scroll-snap-type: mandatory;*/
}

/*    .page::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

*::-webkit-scrollbar-thumb {
    background-color: #F7BD59;
}

    *::-webkit-scrollbar-thumb:hover {
        background-color: #346ca6;
    }

*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-corner {
    display: none;
}*/

span, p {
    cursor: default;
}


/* TEXT STYLES PRESETS ################################################################################*/

.regular {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.medium {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.semi {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.semi-bold {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.semi-bold-header {
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
}

.semi-bold-sub-header {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: 36px;
}

.underline-text {
    text-decoration: underline;
}

.red-text {
    color: #F04438;
}

.blue-text {
    color: #1A2A71;
}

.blue2-text {
    color: #285D9B;
}

.light-blue-text {
    color: #3778AA;
}

.white-text {
    color: #FFFFFF;
}

.yellow-text {
    color: #F2A736;
}

.gray-200-text {
    color: #EAECF0;
}

.gray-500-text {
    color: #667085;
}

.gray-600-text {
    color: #475467;
}

.gray-700-text {
    color: #344054;
}

.gray-800-text {
    color: #1D2939;
}

.gray-900-text {
    color: #101828;
}

.gray-border {
    border: 1px solid #D0D5DD;
}

.title-size {
    font-size: 60px;
    font-weight: 600;
    line-height: 120%;
}

.subtitle-size {
    font-size: 20px;
    line-height: 150%;
}

/* MAIN COLOR SCHEMES ################################################################################*/

.yellow {
    background-color: #F2A736;
}

.white {
    background-color: #ffffff;
}

.blue-gradient {
    background: linear-gradient(221deg, #001056 10%, #267bc3 100%) fixed no-repeat;
}

.gray-gradient {
    background: linear-gradient(180deg, #ffffff 50%, #F6F6F9 100%);
}

.blue {
    background: #1A2A71;
}

.red {
    background-color: #F04438;
}

.gray {
    background-color: #f2f4f7;
}

/* GENERAL ASSETS ################################################################################*/
.rounded-btn {
    cursor: pointer;
    padding: 12px 25px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.2s ease !important;
    font-size: 14px;
}

.rounded-btn-content {
    cursor: pointer;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.2s ease !important;
    /**/
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

    .rounded-btn:hover,
    .rounded-btn-content:hover {
        transform: scale(1.1);
        /*color: inherit;*/
    }

/*################################################################################*/

.backdrop {
    width: 100%;
    height: 100%;
    opacity: 0;
    /**/
    background: #0000001c;
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    transition: opacity 0.6s ease;
}

.carousel-arrows {
    display: flex;
    gap: 15px;
}

    .carousel-arrows .arrow {
        width: 48px;
        height: 48px;
        border: 1px solid #EAECF0;
        border-radius: 50%;
        background-position: center;
        background-size: auto;
        background-repeat: no-repeat;
        background-color: white;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .carousel-arrows .arrow.filled {
            border-color: white;
        }

        .carousel-arrows .arrow.unfilled {
            filter: invert(1) contrast(10) brightness(10) saturate(0);
            background-color: transparent;
            border-color: black;
        }

        .carousel-arrows .arrow:not(:disabled):hover {
            transform: scale(1.2);
        }

        .carousel-arrows .arrow:disabled {
            opacity: 0.5;
        }

    .carousel-arrows .left {
        background-image: url('../images/arrow.svg');
    }

    .carousel-arrows .right {
        background-image: url('../images/arrow.svg');
        rotate: 180deg;
    }

.landing-bar {
    padding: 40px 105px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

    .landing-bar .landing-logo {
        width: 200px;
        height: 40px;
        background-size: cover;
        background-position: center;
    }

a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        text-decoration: none;
    }

.hidden {
    opacity: 0;
    filter: blur(2px);
    transition: all 0.7s;
}

.show {
    filter: blur(0);
    opacity: 1;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

/*################################################################################*/

input {
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    /**/
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
}

.search-bar-container {
    display: flex;
    gap: 64px;
    min-width: 252px;
    flex-wrap: wrap;
}

.search-bar-icon {
    width: 20px;
    height: 20px;
}

.search-box {
    display: flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.search-input {
    border: 1px solid transparent;
}

.display-flex {
    display: flex;
}

.display-flex-direction-column {
    display: flex;
    flex-direction: column;
}

.justify-space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.padding-0-100 {
    padding: 0px 100px;
}

#commentsTextarea {
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    /**/
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    height: 38px;
    height: 38px;
    max-height: 255px;
    resize: none;
    overflow: auto;
}

    #commentsTextarea:focus {
        outline: none;
    }

html { /*For fixed width and height*/
   /* min-width: 1903px;
    max-width: 1903px;*/
    margin: 0 auto; /*Center the website*/
    /*background-color: black;*/
}

/*@media (max-width:375px) {
    html {*/
/* force devises with a smaller width to observe this style */
/*min-width: 1903px;
        max-width: 1903px;
    }*/

/*.title-size {
        font-size: 15px;
    }

    .subtitle-size, .medium {
        font-size: 9px;
    }

    .rounded-btn-content {
        padding: 5px 10px;
        border-radius: 20px;
    }

    .semi-bold {
        font-size: 7px;
    }*/
/*}*/

.validation-div {
    text-wrap: nowrap;
}

.validation-message {
    font-size: 12px;
    color: #d30000;
    padding: 0;
    margin: 0;
}

select {
    width: 100%;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    outline: none;
    /* Arrow */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('../images/chevron-down-black.svg');
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
    background-size: 10px;
}

/* Footer Email validation message*/
#emailValidationMessage {
    margin-bottom: 10px;
}

/*################################################################################*/
/*#########                Uniform Landing Page Formatting               #########*/
/*################################################################################*/

.learn-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #D0D5DD;
    background: white;
    box-shadow: 0px 1px 2px 0px #1018280d;
    cursor: pointer;
    /**/
    color: #344054;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.learn-more-arrow {
    background-image: url('../images/Resources/arrow-up-right-dark.svg');
    background-size: cover;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.expand-collapse-button {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: 0;
    font-size: 14px;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.overflow-hide > .expand-collapse-button {
    opacity: 0;
}

.overflow-hide:hover > .expand-collapse-button {
    opacity: 1;
}

.award-MSS {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin-right: 405px;
    width: 400px;
    height: 400px;
    z-index: 1;
    background-image: url(../images/award-white.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.grecaptcha-badge {
    visibility: hidden;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    width: 100%;
}

@media (max-width: 768px) {
    .title-size{
        font-size: 48px;
    }
}