:root {
    --header-z-index: 20;
    --modal-z-index: 30;
    --white: #fff;
    --black: #000;
    --black-opacity-0-01: rgba(0, 0, 0, 0.1);
    --grey: #acacac;
    --orange: #ffa800;
    --light-orange: #ffc24d;
    --orange-opacity-0-02: rgba(255, 168, 0, 0.2);
    --blue: #23319D;
    --blue-opacity-0-07: rgba(35, 49, 157, 0.07);
    --dark-blue: #2B2C39;
    --vk-color: #4C668B;
    --vk-color-secondary: #2787f5;
    --facebook-color: #415A94;
    --facebook-color-secondary: #4267b2;
    --twitter-color: #4CABE7;
    --twitter-color-secondary: #1da1f2;
    --red: #F25C5C;
    --whitey: #F5F5F5;
    --white-grey: #AEAEAE;
    --almost-white: #EFEFEF;
    --muted-white: #dbdbdb;
    --almost-black: #333333;
    --muted-grey: #ccc;
    --faded-grey: #8E8E8E;
    --dark-grey: #636363;
    --deep-grey: #3E3E3E;
    --blue-grey: #23232D;
    --deep-blue: #27273F;
    --sapphire: #282F65;
    --dark-green: #609600;
    --muted-green: #90CE07;
    --almost-green: #92C819;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main {
    margin-top: 0;
}

input,
textarea,
select,
button {
    font-family: inherit;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    clip-path: inset(100%) !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 12px;
}

.container--none-900 {
    max-width: 100%;
    padding: 0;
}

.title {
    padding-top: 46px;
    padding-bottom: 40px;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: var(--black);
}

@media (max-width: 768px) {
    .title {
        padding-top: 36px;
        padding-bottom: 20px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .title {
        padding-top: 32px;
        font-size: 22px;
    }
}

.title__with-breadcrumbs {
    padding-bottom: 10px;
}

.paragraph {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #000000;
}
