@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter_18pt-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter_18pt-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter_18pt-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'PT Sans';
    src: url('/assets/fonts/PT_Sans/PTSans-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PT Sans';
    src: url('/assets/fonts/PT_Sans/PTSans-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/Roboto/Roboto-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Cyrillic';
    src: url('/assets/fonts/Bebas_Neue/bebasneuecyrillic.ttf');
    font-weight: 400;
    font-style: normal;
}

main {
    overflow-x: clip;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F1F1F1;
}

a {
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}

button {
    transition: 0.3s;
    cursor: pointer;
    border: 0;
    outline: 0;
    background-color: inherit;
}

input {
    border: 0;
    outline: 0;
    background-color: transparent;
}

.container {
    max-width: 1920px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

.main-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.main-top h2 {
    color: #26347F;
    font-family: "PT Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1700px) {
    .main-top h2 {
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 36px */
        text-transform: uppercase;
    }
}

@media (max-width: 639px) {
    .main-top {
        justify-content: flex-start;
    }
}