:root {
    --blue-dark: #001D3D;
    --blue-mid-dark: #003566;
    --yellow-dark: #CCA000;
    --yellow-light: #F5CC00;
    --primary-white: #EBEBEB;
    --white-second: #FFFFFF;
    --primary-black: #000000;
    --font-size-m: 20px;
    --font-size-l: 30px;
    --font-size-xl: 55px;
}

@font-face {
    font-family: Montserrat;
    src: url("fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: Bebas_Neue;
    src: url("fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Montserrat;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    background-color: var(--primary-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-logo-label {
    font-family: Bebas_Neue;
    font-size: var(--font-size-l);
}

.clickable {
    cursor: pointer;
}

.header-contacts-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 2.5em;
    padding: 0.3em;
}

.content-container {
    overflow-y: auto;
}

.landing-section {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1em;
}

.headline {
    background-color: var(--blue-dark);
}

.email-input {
    border: none;
    background-color: var(--primary-white);
    color: #333;
    font-size: var(--font-size-m);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: var(--yellow-light);
    color: var(--blue-dark);
    font-size: var(--font-size-m);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.primary-btn:hover {
    background-color: var(--primary-white);
}

.headline-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.headline-label-container {
    align-items: start;
    display: flex;
    flex-direction: column;
}

.headline-header-label {
    font-size: var(--font-size-xl) !important;
    font-family: Bebas_Neue;
    font-weight: bold;
}

.headline-label {
    color: var(--primary-white);
    font-size: var(--font-size-m);
    margin-bottom: 0.5em;
}

.sign-up-form {

}

.earth-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-img {
    height: 30em;
}

.project-description-section {
    background-color: var(--white-second);
    padding: 0;
}

.description-background-img-container {
    width: 50%;
    height: 100%;
    display: flex;
}

.description-background-img {
    height: 100%;
}

.project-description-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.project-description-header-label {
    font-family: Bebas_Neue;
    font-size: var(--font-size-xl);
    color: var(--blue-dark);
}

.project-description-label {
    margin: 1em;
    max-width: 80%;
    font-size: var(--font-size-m);
}

.project-description-list {
    font-size: var(--font-size-m);
}

.features-section {
    background-color: var(--blue-mid-dark);
    flex-direction: column;
    background-image: url("images/ornament-2.png");
    background-size: cover;
    background-position: center;
}

.features-header-label {
    font-size: var(--font-size-xl);
    color: var(--white-second);
    font-family: Bebas_Neue;
}

.features-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
}

.feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: var(--white-second);
    border-radius: 100px;
    padding: 1em;
    width: 20%;
    height: 100%;
    text-align: center;
}

.feature-container:hover {
    background: linear-gradient(to top, var(--yellow-light), var(--white-second));
}

.feature-icon {
    width: 3em;
    height: 3em;
}

.feature-label {
    font-size: var(--font-size-m);
    color: var(--blue-dark);
}

.partners-section {
    background: linear-gradient(to left, var(--yellow-light), var(--white-second))
}

.partners-layout {
    height: 600px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.partners-header-label {
    font-size: var(--font-size-xl);
    color: var(--blue-dark);
    font-family: Bebas_Neue;
    margin-left: 10%;
    align-self: baseline;
}

.partners-row {
    display: flex;
    flex-direction: row;
    height: 300px;
}

.partner-image {
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 300px;
}

.u24 {
    background-image: url("images/u24.png");
}

.cultural-foundation {
    background-image: url("images/cultural-foundation.png");
}

.pinchuk {
    background-image: url("images/pinchuk.png");
}

.internews {
    background-image: url("images/internews.png");
}

.partners-list {
    font-size: var(--font-size-l);
}

.contacts-section {
    background-color: var(--blue-dark);
}

.contacts-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts-header-label {
    font-size: var(--font-size-xl);
    color: var(--primary-white);
    font-family: Bebas_Neue;
}

.mockup-layout {
    width: 50%;
}

.contacts-container {
    border-radius: 20px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to left, var(--yellow-light), var(--white-second));
}

.contact-item {
    align-items: center;
    display: flex;
    width: 100%;
    text-align: start;
}

.contact-icon {
    width: 3em;
    height: 3em;
    padding: 0.5em;
}

.contact-label {
    font-size: var(--font-size-m);
}

.mockup {
    width: 900px;
    height: 712px;
    max-width: 900px;
    max-height: 712px;
    overflow: clip;
}