@import url('https://fonts.cdnfonts.com/css/helvetica-neue-5');

html {
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-y: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.html-stopscroll {
    overflow-y:hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: auto;
}

.section-wrapper {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-container {
    max-width: 1440px;
    width: 100%;
    height: auto;
    display: flex;
}

/* ===== Standard Form Section ===== */

.standard-header-overlay-gap {
    width: 100%;
    height: 70px;
}

.standard-form-page-container {
    width: 100%;
    height: 860px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 10px;
}

.standard-form-container {
    width: 350px;
    height: auto;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.151);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.standard-form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.standard-form-container form input{
    width: 70%;
    font-family: Helvetica Neue;
    font-weight: 400;
    font-size: 14px;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.standard-form-container form textarea{
    width: 70%;
    font-family: Helvetica Neue;
    font-weight: 400;
    font-size: 14px;
    height: auto;
    padding: 10px;
    resize: none;
}

.standard-form-container form button{
    width: 30%;
    height: 30px;
}

/* ===== Global Brand Kit ===== */

h1, h2, h3, p, a, li, button {
    font-family: Helvetica Neue;
    font-weight: 500px;
    color: black;
}

button {
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: rgb(26, 26, 26);
    background-color: rgb(168, 195, 211);
    cursor: pointer;
    user-select: none;
    border-radius: 2px;
}

button:hover {
    background-color: rgb(197, 197, 197);
}

button:active {
    background-color: rgb(224, 224, 224);
}

.button-highlighted {
    color: rgb(243, 243, 243);
    background-color: rgb(0, 119, 255);
}

.button-highlighted:hover {
    background-color: rgb(81, 135, 197);
}

.button-highlighted:active {
    background-color: rgb(127, 187, 255);
}

.tooltip {
    position: relative;
}

.tooltip:before, .tooltip:after {
    position: absolute;
    content: '';
    transition: all 0.4s ease;
    opacity: 0;
}

.tooltip:before {
    border-width: 10px 8px 0 8px;
    border-style: solid;
    border-color: rgb(169,209,255) transparent transparent;
    bottom: 40px;
    transform: translateY(20px);
}

.tooltip::after {
    content: attr(data-tooltip);
    background: rgb(169,209,255);
    width: auto;
    height: auto;
    font-family: Helvetica Neue;
    font-size: 16px;
    font-weight: 500;
    color: rgb(34, 34, 34);
    bottom: 48px;
    left: -10px;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 1px;
    transform: translateY(20px);
}

.tooltip:hover:before, .tooltip:hover:after {
    transform: translateY(-2px);
    opacity: 1;
}

/* ===== Header ===== */

header {
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(3px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.151);
    z-index: 950;
}

.header-container {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.header-container img {
    max-width: 200px;
    width: 100%;
    max-height: 30px;
    height: 100%;
    object-fit: cover;
}

.header-container nav {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.header-container nav a {
    width: auto;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    transition: padding-bottom 0.15s ease;
}

.header-container nav a:hover {
    background-color: rgba(241, 241, 241, 0.548);
    text-decoration: underline;
    box-shadow: inset 0 0 20px 1px #00000010;
    padding-bottom: 5px;
}

.header-container nav a:active {
    background-color: rgb(224, 224, 224);
}

.header-container div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header-container button {
    width: 90px;
    height: 40px;
}

.header-container span {
    color: black;
    font-size: 48px;
    display: none;
}

.mobile-nav-dropdown {
    user-select: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.747);
    z-index: 945;
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    padding-top: 15px;
    transition: opacity 500ms;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav-dropdown-nav{
    position: fixed;
    display: flex;
    flex-direction: column;
    transition: left 500ms;
    left: -100vw;
    pointer-events: all;
}

.mobile-nav-dropdown a{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    cursor: pointer;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.mobile-nav-dropdown a:active{
    background-color: rgba(197, 197, 197, 0.678);
}

.open_mobile-nav-dropdown-background {
    opacity: 1;
}

.open_mobile-nav-dropdown-nav {
    left: 0;
}

/* @keyframes mobile-nav-dropdown-animation{
    0% {
        opacity: none;
    }

    1% {
        opacity: 1;
    }
} */

@media (max-width: 768px) {

    .header-container span {
        display: block;
    }

    .header-container nav {
        display: none;
    }
}

/* ===== Hero Section ===== */

/* .main-section-wrapper {
    width: 100%;
    height: auto;
    background-image: url('Images/Ftu_assets/Ftu_white_background_wrapper.png');
    background-repeat: repeat;
    background-size: cover;
} */

.main-section-wrapper {
    width: 100%;
    height: 100vh;
    background-image: url('Images/Ftu_assets/Test_ftu_background_1.png');
    background-size: cover;
}

.hero-container {
    width: 100%;
    min-height: 820px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 30px;
    animation: slide-in-left 500ms;
}

.hero-container h2 {
    color: gray;
    font-size: 32px;
    font-weight: 700;
}

.hero-container div {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.hero-container div h1 {
    color: rgb(0, 0, 0);
    font-size: 84px;
    font-weight: 800;
}

.hero-container div h2 {
    color: rgb(0, 0, 0);
    font-size: 64px;
    font-weight: 500;
    font-style: italic;
}

.hero-container h3 {
    width: 60%;
    color: rgb(24, 24, 24);
    font-size: 24px;
    font-weight: 600;
}

.hero-cta-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    animation: pop-up 500ms;
}

.hero-cta-element {
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: rgb(255, 255, 255);
    border-radius: 60px;
    border: solid 5px black;
    margin-top: -200px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-cta-element span {
    font-size: 70px;
    margin: auto;
    margin-top: 10px;
}

/* ===== Standard Wrapper ===== */

.standard-wrapper {
    height: 500px;
    background-color: white;
}

.standard-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-right: 15%;
    padding-left: 15%;
}

.standard-container h1 {
    font-size: 56px;
    font-weight: 900;
}

.standard-container p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(66, 66, 66);
    width: 100%;
    text-align: left;
}

.standard-container button {
    width: 60%;
    height: 50px;
    font-size: 20px;
    font-weight: 500;
    color: black;
}

/* ===== Logo Short Repeat Section ===== */

.logo_short-wrap-section-wrapper {
    height: 100px;
    background-color: rgb(5, 5, 5);
    background-image: url(Images/Ftu_assets/Ftu_logo_short_white_horizontal_wrap.png);
    background-position-y: center;
    background-repeat: space no-repeat;
    background-size: 150px;
}

/* ===== Mission Contrast Section ===== */

.mission-contrast-section-wrapper {
    min-height: 350px;
    background-color: rgb(169, 209, 255);
}

.mission-contrast-section-container {
    min-height: 350px;
    background-color: rgb(169, 209, 255);
}

.mission-contrast-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 75px;
    padding-left: 75px;
    gap: 25px;
}

.mission-contrast-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: rgb(24, 24, 24);
}

.mission-contrast-container p {
    color: rgb(63, 63, 63);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

/* ===== Projects Grid ===== */

.projects-grid-section-wrapper {

}

.projects-section-grid-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.projects-section-grid-container h1 {
    font-size: 56px;
    font-weight: 900;
}

.projects-grid-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 300px 300px;
    grid-gap: 10px;
}

.projects-grid-cell {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: left;
    padding: 25px;
    border-radius: 5px;
    gap: 10px;
}

.projects-grid-cell:hover {
    background-color: rgb(247, 247, 247);
}

.projects-grid-cell h3 {
    font-size: 16px;
    color: #1386EB;
}

.projects-grid-cell h2 {
    font-size: 20px;
    color: rgb(24, 24, 24);
    font-weight: 800;
}

.projects-grid-cell p {
    color: rgb(61, 61, 61);
    font-weight: 500;
}

.projects-grid-cell button {
    width: 100px;
    height: 35px;
    cursor: not-allowed;
}

@media (max-width: 1439px) {

    .projects-grid-container {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: auto auto;
        grid-gap: 5px;
    }
    
    .projects-grid-cell {
        width: 100%;
        height: 100%;
        background-color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: left;
        padding: 25px;
        border-radius: 5px;
        gap: 10px;
    }

}

@media (max-width: 900px) {

    .projects-grid-container {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto auto;
        grid-gap: 5px;
    }
    
    .projects-grid-cell {
        width: 100%;
        height: 100%;
        background-color: rgb(255, 255, 255);
        gap: 10px;
    }

}

/* ===== Key Describers Section ===== */

.key-describers-section-wrapper {
    min-height: 150px;
    height: 150px;
    background-color: rgb(169, 209, 255);
}

.key-describers-section-container {
    display: grid;
    min-height: 150px;
    background-color: rgb(169, 209, 255);
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 100%;
    grid-gap: 0px;
}

.key-describers-contrast-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 35px;
    padding-left: 35px;
    gap: 8px;
    background-color: rgb(169, 209, 255);
}

.key-describers-contrast-container h3 {
    font-weight: 600;
    color: #1170c4;
}

.key-describers-contrast-container h2 {
    font-weight: 900;
    color: rgb(31, 31, 31);
}

.key-describers-contrast-container hr {
    width: 75%;
    border-color: rgba(83, 139, 184, 0.308);
    color: rgba(83, 139, 184, 0.247);
}

@media (max-width: 1439px) {

    .key-describers-contrast-container {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 20px;
        padding-left: 20px;
        gap: 8px;
    }

    .key-describers-contrast-container h2 {
        font-size: 1.8vw;
        font-weight: 900;
        color: rgb(31, 31, 31);
    }

}

@media (max-width: 900px) {

    .key-describers-section-wrapper {
        min-height: 150px;
        height: 400px;
        background-color: rgb(169, 209, 255);
    }
    
    .key-describers-contrast-container {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 20px;
        padding-left: 20px;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .key-describers-contrast-container h2 {
        font-size: 3vw;
        font-weight: 900;
        color: rgb(31, 31, 31);
    }

    .key-describers-section-container {
        display: grid;
        height: 48.5%;
        background-color: rgb(169, 209, 255);
        grid-template-columns: 50% 50%;
        grid-template-rows: 100% 100%;
        grid-gap: 5px;
    }

}

/* ===== Basic Articles ===== */

.basic-article-wrapper {
    height: auto;
    background-color: white;
}

.article-url-container {
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding-top: 30px;
    gap: 7px;
}

.article-url-container a{
    font-size: 14px;
    color: rgb(100, 100, 100);
    font-weight: 400;
    text-decoration: none;
}

.article-url-container a:hover{
    font-size: 14px;
    color: rgb(0,119,255);
    font-weight: 400;
    text-decoration: none;
}

.article-url-container span{
    font-size: 24px;
    color: rgb(100, 100, 100);

}

.basic-article-container {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.basic-article-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 20px;
}

.basic-article-section h2 {
    font-size: 30px;
    color: rgb(0, 0, 0);
}

.basic-article-container hr{
    width: 100%;
    height: 3px;
    background-color: rgb(114, 180, 255);
    border: none;
}

.basic-article-section img {
    width: 720px;
    height: auto;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Subscribe Form ===== */

.subscribe-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.subscribe-form input {
    font-style: Helvetica Neue;
    font-weight: 500;
    width: 700px;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.subscribe-form button {
    color: white;
}

/* ===== Secondary Colors for Standard ===== */

.color-A9D1FF{
    background-color: #A9D1FF;
}

.color-96bde9 {
    background-color: #96bde9;
}

.color-96bde9:hover {
    background-color: #bbdbff;
}

.color-96bde9:active {
    background-color: #d4e8ff;
}

.color-black {
    background-color: black;
}

.color-white {
    color: white;
}

/* ===== Footer ===== */

footer {
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    margin-left: auto;
    margin-right: auto;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    height: auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 10px;
}

.footer-top-container a {
    max-width: 200px;
    width: min-content;
}


.footer-top-container a img {
    max-width: 200px;
    width: auto;
    max-height: 40px;
    height: 100%;
    object-fit: cover;
    margin-left: 10px;
}

.footer-top-container nav {
    width: auto;
    display: flex;
    flex-direction: column;
}

.footer-top-container nav a {
    width: 145px;
    height: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    padding-left: 10px;
}

.footer-top-container nav a:hover {
    background-color: rgb(241, 241, 241);
    text-decoration: underline;
    box-shadow: inset 0 0 20px 1px #00000010;
    transition: padding-left 0.5s ease;
    padding-left: 20px;
}

.footer-top-container nav a:active {
    background-color: rgb(224, 224, 224);
}



.footer-bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-bottom-container p {
    color: rgb(71, 71, 71);
}

.footer-bottom-container nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-bottom-container nav a {
    color: rgb(71, 71, 71);
    cursor: pointer;
}

.footer-bottom-container nav a:hover {
    color: rgb(105, 105, 105);
    text-decoration: underline;
}

/* ===== Keyframe Animations ===== */

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0%;
    }

    50% {
        opacity: 0%;
    }

    100% {
        transform: translateX(0);
        opacity: 100%;
    }
}

@keyframes pop-up {

    0% {
        transform: translateY(100%);
        opacity: 0%;
    }

    100% {
        transform: translateY(0);
        opacity: 100%;
    }
    
}