:root {
    --base-strong: #000;
    --base-weak: #fff;
    --base-text-strong: #292b2c;
    --base-text-weak: #26282b;
    --main-background: #ed008c;
    --accent-strong: #b7c8d8;
    --accent-weak: #f1f6fa;
    --accent-text-strong: #000;
    --accent-text-weak: #000;
    --font-family: var(--ui-font-family-open-sans);
    --input-border-color: #b0bec2;
}
a {
    text-decoration: none;
    transition: all 0.3s;
    color: #26282b;
    color: var(--base-text-weak);
    &:hover {
        color: #26282b;
        color: var(--base-text-weak);
    }
}
body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
}
header {
    background: linear-gradient(to bottom, #e4eaf0 0%, var(--base-weak) 58%);
    display: flex;
    justify-content: center;
    & .container {
        /*max-width: unset;*/
        padding: 25px 20px 20px;
        display: flex;
        column-gap: 50px;
        row-gap: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: 15px;
        & .contacts-wrapper {
            display: flex;
            gap: 10px 50px;
            flex-wrap: wrap;
            justify-content: space-around;
            @media(max-width: 1200px){
                margin: auto;
            }
        }
        & .contacts {
            font-weight: 700;
            display: flex;
            flex-wrap: wrap;
            align-items: end;
            column-gap: 25px;
            row-gap: 5px;
            justify-content: center;
            min-height: 52px;
            & > div {
                display: flex;
                gap: 5px;
                align-items: center;
            }
            & span {
                margin-left: 5px;
            }
        }
        & .enter {
            display: flex;
            align-items: flex-end;
            gap: 20px;
            & svg {
                height: 24px;
                width: 24px;
                margin-right: 4px;
                position: relative;
            }
            & a {
                & span {
                    border-bottom: 1px dashed var(--base-text-strong);
                    padding-bottom: 2px;
                    position: relative;
                    top: 2px;
                    &:hover {
                        border-bottom: 1px dashed transparent;
                    }
                }
                &:hover {

                }
            }
        }
    }
}
.btn--default {
    background-color: var(--main-background);
    color: var(--base-weak);
    &:hover {
        background-color: hsl(from var(--main-background) h s calc(l + 20));
        color: var(--base-weak);
    }
}
.checkbox {
    display:flex;
    align-items:flex-end;
    max-width:-webkit-fit-content;
    max-width:-moz-fit-content;
    max-width:fit-content
}
.checkbox__input {
    position:absolute;
    z-index:-1;
    width:0;
    height:0;
    opacity:0
}
.checkbox__label {
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    cursor:pointer;
    margin-bottom:0;
    display:flex;
    align-items: center;
    position: relative;
}
.checkbox__icon {
    position:relative;
    margin-right:10px;
    width:16px;
    height:16px;
    border-radius:2px
}
.checkbox__icon svg {
    position:absolute;
    top:-2px;
    left:-2px
}
.checkbox__icon svg path {
    fill: var(--input-border-color);
    stroke:#0085ff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:71px;
    stroke-dashoffset:71px;
    transition:all .5s ease
}
.checkbox__icon svg polyline {
    fill:none;
    stroke:#fff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:18px;
    stroke-dashoffset:18px;
    transition:all .3s ease
}
.checkbox__input:checked+.checkbox__icon svg path {
    fill:var(--selected-color)
}
.checkbox__input:checked+.checkbox__icon svg polyline {
    stroke-dashoffset:0
}
.checkbox__text {
    margin-right:10px;
    pointer-events:none;
    transition:all .5s ease;
    line-height:16px;
    color:#323232
}
.checkbox__count {
    color: #c7c7c7;
    font-size: 12px;
}
.clearfix::before {
    content: '';
    display: table;
}
.clearfix::after {
    display: block;
    clear: both;
    content: '';
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.flex {
    display: flex;
}
.flex-between {
    justify-content: space-between;
}
.hidden {
    display: none;
}
.lh-0 {
    line-height: 0
}
.svg-icons {
    display: none;
}
/*intro*/
.intro {
    background: url(images/intro.jpg) 100% 100%;
    background-size: cover;
    padding: 20px 0;
    margin-bottom: 1px !important;
    text-align: center;
}
.intro__block {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px 30px;
    box-shadow: inset 0px 0 0px 1px #b8c9d9;
    border: 7px solid #fff;
}
.intro__title {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 40px;
    letter-spacing: 1px;
    overflow-wrap: break-word;
}
.intro__subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 30px;
}
.intro .btn {
    padding: 2px 12px 4px;
    font-size: 14px;
}
/*nav*/
.nav {
    position: relative;
    z-index: 20;
    display: block;
    /*overflow: hidden;*/ }
.nav__list {
    margin: 0;
    text-align: center;
    border: 1px solid #b7c8d8;
    box-shadow: inset 0 1px #fff, inset 0 -1px #fff;
    background-color: #b7c8d8;
    border: 1px solid var(--accent-strong);
    box-shadow: inset 0 1px var(--base-weak), inset 0 -1px var(--base-weak);
    background-color: var(--accent-strong);
    color: var(--accent-text-strong);
    padding: 19px 0;
    /*margin-left: -3px;*/
    /*margin-right: -3px; */  }
.nav__item {
    display: inline;
    list-style-type: none;
    padding: 10px 34px;
    position: relative;
}
.nav__item:first-child {
    padding-left: 0;
}
.nav__item:last-child {
    padding-right: 0;
}
.nav__item + .nav__item:before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    left: 0;
    top: 0;
}
.nav__link {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
.nav__link.is-active, .nav__link:hover {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.nav__link2 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
.nav__link2.is-active, .nav__link2:hover {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.nav .dropdown-menu {
    left: 22px;
    top: unset;
    background-color: #b7c8d8;
    background-color: var(--accent-strong);
    padding: 0.5rem;
}
.nav .nav__item2 > .dropdown-menu {
    left: 50px;
    top: 22px;
}
.nav__item:hover > .dropdown-menu,
.nav__item.submenu-opened > .dropdown-menu,
.nav__item2:hover > .dropdown-menu,
.nav__item2.submenu-opened > .dropdown-menu
{
    display: block;
}
.nav .has-submenu:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

@media (max-width: 940px) {
    .nav__item {
        padding: 5px 17px;
    }
    .nav__link {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .nav__item {
        display: block;
        padding: 0;
    }
    .nav__item:before {
        display: none;
    }
    .nav__link {
        font-size: 14px;
    }
    .nav .dropdown-menu {
        left: 50%;
        top: 22px;
    }
}
.section {
    padding-bottom: 18px;
    & .section-title {
        font-size: 18px;
        font-weight: 400;
        text-transform: uppercase;
        text-align: center;
        margin: 50px 0;
    }
    & .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        & .list-item {
            text-align: center;
            cursor: pointer;
            & span {
                font-size: 14px;
            }
        }
    }
    &.formats img {
        margin: 0 94px 3px;
    }
    &.regions .list {
        padding: 0 20px;
        gap: 36px;
        @media(max-width: 396px){
            & img {
                max-width: calc(100vw - 36px);
            }
        }
    }
}
footer {
    background-color: var(--accent-strong);
    padding: 36px 20px 80px;
    & .container {
        display: flex;
        justify-content: space-between;
        & .contacts {
            display: flex;
            justify-content: center;
            align-items: end;
            gap: 5px 25px;
            flex-wrap: wrap;
            font-size: 15px;
            font-weight: 700;
        }
        @media (max-width: 940px){
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
    }
}

/* auth */
.form-group-auth {
    margin-bottom: 15px;
}
.form-group-auth:last-child {
    margin-bottom: 0;
}
.form-group-auth .control-label {
    margin-bottom: 5px;
    display: inline-block;
}
.form-group-auth .captcha {
    margin-bottom: 10px;
    text-align: center;
}
.form-group-auth a span {
    border-bottom: 1px dashed var(--base-text-strong);
    padding-bottom: 2px;
    position: relative;
    top: 2px;
}
