:root {
    --blue-logo: rgb(0, 38, 75);
    --text-logo: rgb(249, 248, 246);
    --hover-text-2: #3399FF;
    --hover-text: #007BFF;
    --text-color-3: rgb(248, 247, 245);
}

@font-face {
    font-family: "SFPro";
    src: url("./fonts/SF-Pro-Display-Light.otf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFPro";
    src: url("./fonts/SF-Pro-Display-Regular.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFPro";
    src: url("./fonts/SF-Pro-Display-Medium.otf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "SFPro", Arial, sans-serif;
}

body {
    margin: 0;
    background-color: var(--blue-logo);
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--blue-logo);
    width: 100%;
    margin-bottom: 150px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.logo_img {
    width: 250px;
    border-radius: 20px;
    align-items: center;
    margin: 0 0 30px;
}

h1 {
    margin: 0 0 5px;
    font-size: 32px;
    color: #FFF;
    font-weight: 500;
    text-align: center;
}

.slogan {
    font-size: 24px;
    color: var(--text-logo);
    text-align: center;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 900px;
}

.list_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-bottom: 10px;
}

.list_point {
    background-color: var(--text-logo);
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
    margin-inline-end: 10px;
}

.list_item > .text {
    color: var(--text-logo);
    font-size: 20px;
    font-weight: 300;
}

.bold {
    color: var(--hover-text-2);
    font-weight: 400;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 2px solid var(--text-logo);
}

footer > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    width: 100%;
    max-width: 900px;
    flex-wrap: wrap;
}

.link {
    text-decoration: none;
    color: var(--hover-text-2);
    font-weight: 400;
    font-size: 20px;
    margin-inline-end: 30px;
    white-space: nowrap;
    margin-bottom: 10px;
}

.link:last-child {
    margin-inline-end: 0;
}

@media only screen and (max-width: 560px) {
    footer > div {
        flex-direction: column;
        justify-content: center;
    }

    .link {
        margin-inline-end: 0;
    }
}
