html {
    box-sizing: border-box;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

*,
:after,
:before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    min-height: 100dvh;
}

button,
h1,
h2,
h3,
h4,
input,
label {
    line-height: 1.1;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

textarea:not([rows]) {
    min-height: 10em;
}

:target {
    scroll-margin-block: 5ex;
}

@font-face {
    font-family: "League Spartan";
    src: url("../assets/fonts/new_fonts/LeagueSpartan-VariableFont_wght.woff2") format("woff2"),
        url("../assets/fonts/new_fonts/LeagueSpartan-VariableFont_wght.ttf") format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'League Spartan', "Helvetica Neue", Arial, sans-serif !important;
    color: #FFFFFF;
}

/*  */

body {
    background-color: #031D3D;
}

#contact_links_wrapper {
    padding: 40px 16px;
    min-height: 100dvh;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_links_container {
    max-width: 454px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: calc(100dvh - 80px);
}

.contact_links_img {
    width: 113px;
    height: 113px;
    margin: 0 auto 24px;
}

.contact_links_title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.18em;
    text-align: center;
}

.contact_links_position {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.contact_links_position_txt-first,
.contact_links_position_txt-second {
    color: #99CAFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4em;
}

.contact_links_position_txt-second {
    text-decoration: underline;
}

.contact_links_position a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact_links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact_link {
    display: flex;
    gap: 7px;
}

.contact_link_icon {
    flex-shrink: 0;
    height: 52px;
    width: 52px;
    background-color: #10335F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_link_btn {
    background-color: #077DFD;
    padding: 10px 10px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 200px;
    gap: 10px;
}

.contact_link_btn span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 1em;
    padding-top: 4px;
}

.contact_links_logo {
    width: 100px;
    margin: 0 auto;
}

@media screen and (max-width: 450px) {
    .contact_link_btn span {
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .contact_link_btn {
        padding: 6px 6px 6px 14px;
    }

    .contact_link_btn svg {
        width: 25px;
        height: 25px;
    }

    .contact_link_btn span {
        font-size: 16px;
    }

    .contact_links {
        gap: 18px;
    }

    .contact_link_icon {
        height: 38px;
        width: 38px;
    }

    .contact_link_icon img {
        transform: scale(0.8);
    }

    .contact_links {
        margin-bottom: 60px;
    }
}