:root {
    --black: #0F0F0F;
    --white: #F3F3F3;
    --white-light: #F5F5F5;
    --white-dark: #E5E5E5;
    --red: #9E0505;
    --gray: #585858;
}
html, body {
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter-regular", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: var(--white);
}
.h1 {
    font-family: "Inter-semibold", sans-serif;
    font-weight: 600;
    font-size: 32px;
}
.h2 {
    font-family: "Inter-semibold", sans-serif;
    font-weight: 600;
    font-size: 20px;
}
.h3 {
    font-family: "Inter-semibold", sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.h4 {
    font-family: "Inter-regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.h5 {
    font-family: "Inter-medium", sans-serif;
    font-weight: 500;
    font-size: 12px;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1439px) {
    .container {
        padding: 0 20px;
    }
}
@media (max-width: 1024px) {
    h1,
    .h1 {
        font-size: 20px;
    }
    .h2 {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}