

/* Start:/local/templates/modern/template_styles.css?17497123115562*/
body {
    background: #E7F1F7;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.header {
    background: #FFC445;
    -webkit-box-shadow: 0px 0px 9px 0px #333;
    box-shadow: 0px 0px 9px 0px #333;
}

@media (min-width: 320px) {
    .header {
        min-height: 94px;
    }
}

@media (min-width: 410px) {
    .header {
        min-height: 94px;
    }
}

@media (min-width: 640px) {
    .header {
        min-height: 105px;
    }
}

@media (min-width: 1024px) {
    .header {
        min-height: 105px;
    }
}

@media (min-width: 1280px) {
    .header {
        min-height: 110px;
    }
}

@media (min-width: 1440px) {
    .header {
        min-height: 110px;
    }
}

.header-flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 24px 0;
    align-items: center;
}

.logo-col {

}

.logo-col img {
    max-width: 100%;
    height: auto;
}

.menu-col ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 64px;
}

.menu-col a {
    color: var(--GRAY_900);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.menu-col a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--GRAY_900);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.menu-col a:hover:after {
    transform: scaleX(1);
}

@media (min-width: 320px) {
    .menu-col {
        display: none;
    }
    .menu-col a {
        font-size: 18px;
    }
    .logo-col img {
        width: 80px;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .menu-col a {
        font-size: 18px;
    }
    .logo-col img {
        width: 120px;
    }
}

@media (min-width: 1024px) {
    .menu-col a {
        font-size: 18px;
    }
    .logo-col img {
        width: 70px;
    }
    .menu-col {
        display: block;
    }
}

@media (min-width: 1280px) {
    .menu-col a {
        font-size: 20px;
    }
    .logo-col img {
        width: 80px;
    }
}

@media (min-width: 1440px) {
    .menu-col a {
        font-size: 24px;
    }
    .logo-col img {
        width: 120px;
    }
}

.contacts-col {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

.contacts-col div {
    margin-left: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.contacts-col i {
    color: var(--GRAY_900);
    font-size: 18px;
    font-weight: 400;
}

.contacts-col a {
    color: var(--PRIMARY_900);
    font-weight: 400;
    text-decoration: underline!important;
    cursor: pointer;
}

@media (min-width: 320px) {
    .contacts-col a {
        font-size: 13px;;
    }
    .contacts-col div {
        gap: 4px;
    }
    .contacts-col {
        gap: 4px;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .contacts-col a {
        font-size: 18px;;
    }
    .contacts-col div {
        gap: 8px;
    }
    .contacts-col {
        gap: 8px;
    }
}

@media (min-width: 1024px) {
    .contacts-col a {
        font-size: 16px;;
    }
    .contacts-col {
        gap: 16px;
    }
}

@media (min-width: 1280px) {
    .contacts-col a {
        font-size: 18px;;
    }
}

@media (min-width: 1440px) {
    .contacts-col a {
        font-size: 18px;;
    }
}

.main-wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background: #E7F1F7;
    padding: 24px;
}

.main-wrapper h1 {
    font-size: clamp(16px, 4vw, 48px);
    font-weight: 700;
    color: var(--GRAY_900);
    text-align: center;
}

.main-wrapper h2 {
    font-size: clamp(14px, 4vw, 36px);
    font-weight: 500;
    color: var(--GRAY_900);
    text-align: center;
}

.offers-pics {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.offers-pics div {
    display: flex;
    flex-flow: row nowrap;
}

.offers-pics div:nth-child(1) {
    justify-content: flex-end;
}

.offers-pics div:nth-child(2) {
    justify-content: flex-start;
}

.offers-pics div:nth-child(1) img {
    margin: auto 0 auto auto;
}

.offers-pics div:nth-child(2) img {
    margin: auto auto auto 0;
}


.offers-pics img {
    display: block;
}

@media (min-width: 320px) {
    .main-wrapper {
        min-height: calc(100svh - 94px);
    }
    .main-wrapper h2 br {
        display: none;
    }
    .main-wrapper h1 {
    margin-bottom: 16px;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .main-wrapper {
        min-height: calc(100svh - 105px);
    }
    .main-wrapper h2 br {
        display: inline-block;
    }
    .main-wrapper h1 {
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .main-wrapper {
        min-height: calc(100svh - 105px);
    }
}

@media (min-width: 1280px) {
    .offers-pics img {
        width: 70%;
    }
    .main-wrapper {
        min-height: calc(100svh - 110px);
    }
}

@media (min-width: 1440px) {
    .offers-pics img {
        width: 90%;
    }
    .main-wrapper {
        min-height: calc(100svh - 110px);
    }
}

/* End */
/* /local/templates/modern/template_styles.css?17497123115562 */
