@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-main: #000000;
    --text-main: #0071BC;
    --bg-gray: #eeeeee;
    --bg-white: #ffffff;
    --text-purple: #8681b5;
}

* {
    box-sizing: border-box;
}

.text-bl {
    color: var(--text-main);
}

body {
    margin: 0;
    font-family: "Codec Pro", sans-serif;
    padding: 30px 0;
    background: var(--bg-gray) !important;
}

.wrapper {
    width: min(100% - 24px, 900px);
    margin: 0 auto;
    padding: 0;
    box-shadow: 0px 0px 3px #bfbbbb;
    background: var(--bg-white);
}

.page {
    min-height: 100vh;
}

.logo {
    width: 350px;
    max-width: 100%;
}


.header .title {
    font-size: clamp(35px, 5.5vw, 45px);
    line-height: 100%;
    margin-bottom: 20px;
}

.header .sub-title {
    font-size: clamp(16px, 3.5vw, 26px);
    line-height: 100%;
    font-weight: 400;
}

.page .wrapper-sm {
    max-width: 450px;
    margin: 0 auto;
    align-items: center;
}

ul.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 170px;
    margin: 0 auto;
}

li.contact-list__item {
    display: flex;
    flex-direction: column;
    color: var(--text-purple);
    position: relative;
}

li.contact-list__item::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--text-main);
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.contact-list__item:first-child::before {
    content: url('../images/phone.svg') !important;
}

li.contact-list__item:nth-child(2)::before {
    content: url('../images/phone.svg') !important;
}

li.contact-list__item:last-child::before {
    content: url('../images/email.svg') !important;
}

li.contact-list__item:not(:last-child) {
    margin-bottom: 15px;
}


.footer {
    position: relative;
    padding-bottom: 50px;
}

.footer::before {
    content: '';
    background: var(--text-main);
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
}


@media (min-width: 640px) {
    .footer::after {
        content: '';
        width: 100%;
        height: 20px;
        background: var(--bg-white);
        position: absolute;
        left: 0;
        right: 0;
        max-width: 500px;
        bottom: 20px;
        margin: 0 auto;
        border-radius: 0px 0px 30px 30px;
    }
}
