@font-face {
    font-family: 'Montserrat'; /* Имя шрифта */
    src: url(fonts/Montserrat/Montserrat-Regular.otf); /* Путь к файлу со шрифтом */
    font-weight: normal;
}

@font-face {
    font-family: 'Montserrat'; /* Имя шрифта */
    src: url(fonts/Montserrat/Montserrat-Medium.otf); /* Путь к файлу со шрифтом */
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat'; /* Имя шрифта */
    src: url(fonts/Montserrat/Montserrat-SemiBold.otf); /* Путь к файлу со шрифтом */
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat'; /* Имя шрифта */
    src: url(fonts/Montserrat/Montserrat-Bold.otf); /* Путь к файлу со шрифтом */
    font-weight: bold;
}

@font-face {
    font-family: 'Jost'; /* Имя шрифта */
    src: url(fonts/jost/Jost-Regular.ttf); /* Путь к файлу со шрифтом */
    font-weight: normal;
}

@font-face {
    font-family: 'Jost'; /* Имя шрифта */
    src: url(fonts/jost/Jost-Medium.ttf); /* Путь к файлу со шрифтом */
    font-weight: 500;
}

@font-face {
    font-family: 'Jost'; /* Имя шрифта */
    src: url(fonts/jost/Jost-SemiBold.ttf); /* Путь к файлу со шрифтом */
    font-weight: 600;
}

@font-face {
    font-family: 'Jost'; /* Имя шрифта */
    src: url(fonts/jost/Jost-Bold.ttf); /* Путь к файлу со шрифтом */
    font-weight: bold;
}

@font-face {
    font-family: 'Roboto'; /* Имя шрифта */
    src: url(fonts/roboto/roboto-regular.ttf); /* Путь к файлу со шрифтом */
    font-weight: normal;
}

@font-face {
    font-family: 'Roboto'; /* Имя шрифта */
    src: url(fonts/roboto/roboto-medium.ttf); /* Путь к файлу со шрифтом */
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto'; /* Имя шрифта */
    src: url(fonts/roboto/roboto-bold.ttf); /* Путь к файлу со шрифтом */
    font-weight: 600;
}

body {
    font-family: 'Montserrat' !important;
    position: absolute;
    font-size: 18px;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;

}

* {
    box-sizing: border-box;
}

a {
    color: #3D61E0;
}

h1 {
    color: #213457;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 46px;
    line-height: 150%;
}

h2 {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 35px;
    line-height: 150%;
}

h2 span {
    color: #3D61E0;
    min-width: 50px;
    display: inline-block;
}

h2 .section-title-h2 {
    font-size: 20px;
    color: #637394;
    margin-top: 12px;
    font-weight: 700;
}

h3 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
}

h4 {
    margin-bottom: 20px;
    line-height: 150%;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

h4 span {
    color: #637394;
}

h5 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}

.container-box {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 30px 50px 20px 50px;
    display: flex;
    flex-direction: column;
    background: url("img/bg.png") no-repeat top center;
    background-size: 100%;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.title h1 {
    margin-bottom: 0;
}

.scroll-box {
    overflow-y: auto;
    width: 100%;
    overflow-x: clip;
    margin-bottom: 20px;
    scrollbar-color: #c6cdde #f3f5f6;
    scrollbar-width: thin;
    padding-right: 10px;
}

.scroll-box::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 10px;
    height: 0;
}

.scroll-box::-webkit-scrollbar-track {
    background-color: #f3f5f6;
    border-radius: 10px;
    width: 10px;
}

.scroll-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c6cdde;
}

.scroll-box::-webkit-resizer {
    width: 10px;
    height: 0;
}

.scroll-box::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

.fast-nav-box {
    display: flex;
    align-items: center;
}


.go-home {
    background-size: cover !important;
    background: url(img/go-home.svg) no-repeat;
    width: 39px;
    height: 44px;
    transition: 0.3s ease;
    opacity: 0.5;
    margin-right: 20px;
}

.go-home:hover {
    cursor: pointer;
    opacity: 1;
}

.go-back {
    background-size: cover !important;
    background: url(img/go-back.svg) no-repeat;
    width: 39px;
    height: 30px;
    transition: 0.3s ease;
    opacity: 0.5;
    margin-right: 20px;
}

.go-back:hover {
    cursor: pointer;
    opacity: 1;
}

.section-menu-box {
    margin-top: auto;
}


/*modal*/
.overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.overlay.open {
    opacity: 1;
    pointer-events: inherit;
}


.modal {
    display: none;
}


.modal::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 10px;
    height: 0;
}

.modal::-webkit-scrollbar-track {
    background-color: #f3f5f6;
    border-radius: 10px;
    width: 10px;
}

.modal::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #dbe0ec;
}

.modal::-webkit-resizer {
    width: 10px;
    height: 0;
}

.modal::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

.overlay.open .modal {
    background: #fff;
/ / text-align: center;
    padding: 40px 50px;
    box-shadow: 0px 1px 10px rgb(255 255 255 / 35%);
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    display: block;
    border-radius: 10px;
    position: relative;
    max-width: 800px;
}

.overlay .modal.open {
    opacity: 1;
    pointer-events: inherit;
}

.overlay .modal.open .content {
    transform: translate(0, 0px);
    opacity: 1;
}

.overlay .modal .content {
    transform: translate(0, -10px);
    opacity: 0;
    transition: 0.35s ease-in-out;
}

.overlay .modal h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}


.close-modal {
    background: url('img/close.svg') no-repeat;
    width: 35px;
    height: 35px;
    background-size: 35px;
    position: absolute;
    right: 50px;
    top: 40px;
    border: 0 !important;
    z-index: 100;
    opacity: 0.2;
    padding: 0 !important;
}

.overlay-start .modal h2 {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 30px;
    text-align: center;
    line-height: initial;
}

.top-box {
    width: 100%;
    height: 400px;
    background: url("img/logo.svg") 0 70px no-repeat;
}

.box-navigation {
    display: grid;
    grid-row-gap: 30px;
    margin-bottom: 50px;
}

.line-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
}

.line-box a:hover {
    text-decoration: none;
}

.line-box .button {
    border-radius: 20px;
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.line-box .button.min {
    height: 70px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    align-items: center;
    justify-content: center;
}

.line-box .button.max {
    height: 475px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 27px;
    line-height: 130%;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 40px;
}

.line-box .button.bg5 {
    background: #445877;
    color: #FFFFFF;
}

.line-box .button.bg1 {
    background: #61A7CB;
    color: #FFFFFF;
}

.line-box .button.bg2 {
    background: url("img/1.jpg") center no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.line-box .button.bg3 {
    background: url("img/2.jpg") center no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.line-box .button.bg4 {
    background: url("img/3.jpg") center no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.line-box .button:hover {
    opacity: 0.9;
}

.item-levels-mask {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -5%;
    z-index: 1;
}

.item-levels-name {
    position: relative;
    z-index: 20;
    transition: 0.3s ease;
}