:root {
    --font-primary: 'Noto Sans', sans-serif;
    --font-secondary: 'Days One', sans-serif;
    --text-color: #313133;
    --secondary-text-color: #7B8C98;
    --accent-color: #545DD7;
    --dark-accent-color: #0A0235;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    outline: none !important;
}

*:hover, *:focus {
    outline: none !important;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    /* overflow: hidden; */
}

body {
    min-width: 320px;
    position: relative;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.19;
    color: var(--text-color);
    background: #F6F7FA;
    opacity: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.wrapper {
    /* width: 430px; */
    overflow: hidden;
    width: 100%;
}

.wrapper__in {
    overflow: hidden;
    /* padding-bottom: 60px; */
    /*max-width: 375px;*/
    /* max-width: 1440px; */
}

.wrap {
    max-width: 1248px;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: auto;
    margin-left: auto;
}

input[type="search"]::-ms-clear {
    width : 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

a, button {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    background: none;
    padding: 0;
    border: none;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
}

a {
    transition: color 0.3s ease 0s;
}

a:hover, a:focus {
    color: #125285;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

@media (min-width: 1248px) {
    .d-xl-block {
        display: block;
    }
    .d-xl-none {
        display: none;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

@media (min-width: 1248px) {
    .flex-lg-row {
        flex-direction: row;
    }
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

@media (min-width: 1248px) {
    .justify-content-lg-between {
        justify-content: space-between;
    }
}

.text-center {
    text-align: center;
}

.float-start {
    float: left;
}


.ratio {
    position: relative;
    width: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio>* {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio img {
    width: 100%;
    height: 100%;
}





.burger-icon {
    width: 18px;
    height: 12px;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    display: block;
}

.burger-icon span {
    width: 18px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 1px;
}

.burger-icon span:nth-child(1) {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 5px;
}

.burger-icon span:nth-child(3) {
    top: 10px;
}

.nav-open .burger-icon span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.nav-open .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-open .burger-icon span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}
