@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background: #000F2E;
    --foreground: #FFFFFF;
    --hover-dark: #001A4D;
    --active-dark: #003366;
    --accent: #4ff1df;

    --text-dark: #000000;

    --small-breakpoint: 576px;
    --medium-breakpoint: 768px;
    --large-breakpoint: 992px;
    --xlarge-breakpoint: 1200px;

}

body {
    margin: 0;
    padding: 0;

    background: var(--background);
    color: var(--foreground);
    font-family: 'Montserrat', sans-serif;
}

.no-scroll {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

.navbar-list {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--foreground);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.6px;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link__bold {
    font-weight: 700;
}

.select {
    padding: 8px;
    border-radius: 4px;
}

.navbar-locale {
    display: none;
}

@media (min-width: 1200px) {
    .select {
        display: none;
    }

    .navbar-locale {
        display: flex;
    }
}

/* header section */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 34px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header_container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* end of header section  */

/* title section */

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;

    padding: 124px 40px 120px 40px;
    background-image: url('./images/bg.png');
    background-repeat: no-repeat;
    background-position: center -50%;
}

.title_container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.title_title {
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.title_subtitle {
    font-weight: 700;
    font-size: 32px;
    line-height: 24px;
    text-align: center;
}

.title_question-section {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 42px 52px;

    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);

    background: rgba(160, 232, 255, 0.3);
    backdrop-filter: blur(29px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.title_question-section_img {
    position: absolute;
    width: 120px;
    height: 196px;
    rotate: 4.26deg;
    left: -60px;
}

.title_question-button {
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    padding: 16px 20px;
    background: rgba(0, 30, 245, 1);
    border: none;
    outline: none;
    color: var(--foreground);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.title_question-text-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 100%;
}

.title_question-text-1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    max-width: 700px;

    padding: 0;
    margin: 0;
}

.title_question-text-2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    max-width: 700px;

    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .title_question-section {
        flex-direction: row;
    }

    .title_question-button {
        border-radius: 100px;
        padding: 32px 40px;
        width: auto;
        text-wrap: nowrap;
    }
}


@media (min-width: 992px) {
    .title {
        padding: 124px 40px 120px 40px;
        background-position: center -50%;
        gap: 160px;
    }

    .title_container {
        max-width: 800px;
    }

    .title_title {
        font-size: 60px;
        line-height: 60px;
    }


    .title_question-text-1 {
        font-size: 24px;
        line-height: 28px;
    }

    .title_question-text-2 {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 1200px) {
    .title {
        padding: 124px 40px 120px 40px;
        gap: 220px;
        background-position: center -160%;
    }

    .title_container {
        max-width: 900px;
    }

    .title_title {
        font-size: 100px;
        line-height: 100px;
    }
}

/* end of title section */


/* documents section */

.documents {
    background: var(--foreground);
    color: var(--text-dark);
}

.documents_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.documents_left_section {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.documents_right_section {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center;
}

.documents_img {
    width: 100%;
    background-image: url('./images/documents.png');
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.documents_title {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.documents_text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents_subtitle {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.documents_subtitle:after {
    content: '';
    display: inline-block;
    width: 46px;
    height: 4px;
    background: rgba(0, 30, 245, 1);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.documents_text-container-inner {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents_link {
    position: relative;
    color: var(--text-dark);
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    margin-left: 20px;
}

.documents_link:before {
    content: ' ';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 6px;
    left: -20px;
}

@media (min-width: 768px) {
    .documents_container {
        flex-direction: row;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .documents_title {
        font-size: 34px;
        line-height: 40px;
    }

    .documents_text-container {
        flex-direction: row;
        gap: 94px;
    }
}

/* end of documents section */

/* publications section */

.publications_top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.publications_title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    background: var(--background);
    z-index: 1;
    padding: 20px;
    display: flex;
    width: min-content;
}

.publications_line {
    position: absolute;
    width: calc(100% - 40px);
    height: 4px;
    background: var(--accent);

    left: 20px;
    top: calc(50% - 4px);
}

.publications_bottom-container {
    background: var(--foreground);
    color: var(--text-dark);

}

.publications_items-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -120px;
    flex-direction: column;
    gap: 80px;
}

.publications_item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;

    color: var(--text-dark);
    text-decoration: none;
    flex: 0 0 30%;
}

.publications_img {
    display: block;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
    width: 168px;
    height: 238px;
}

.publications_item-title {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
}

.publications_item-subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.6px;
    text-align: center;
    text-transform: capitalize;
    color: #888888;
}

@media (min-width: 768px) {
    .publications_title {
        font-size: 36px;
        line-height: 40px;
        width: auto;
    }

    .publications_items-container {
        flex-direction: row;
        gap: 0;
    }
}

/* end of publications section */

/* footer section */

.footer {
    background: var(--text-dark);
    color: var(--foreground);
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    border-top: 4px solid rgba(0, 30, 245, 1);
}

.footer_top-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px;
    border-bottom: 1px solid #93DDFE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer_navbar-container {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer_contact-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer_contact-info-label {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    letter-spacing: 0.77px;
    text-transform: uppercase;
}

.footer_contact-info-email {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    letter-spacing: 0.77px;
    text-decoration: none;
    color: var(--foreground);
}

.footer_bottom-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 20px;
}

.footer_bottom-text {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.77px;
    text-transform: uppercase;
    text-align: left;
}

@media (min-width: 768px) {
    .footer_top-container {
        flex-direction: row;
    }
}

/* end of footer section */