* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #000;
    color: #2d3340;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

.vs-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.vs-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 103;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
}

.vs-header__top {
    background: #00529c;
    border-bottom: 1px solid #237ac8;
    color: #84bbec;
    font-size: 12px;
    line-height: 30px;
}

.vs-header__top-inner,
.vs-header__brand-inner {
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.vs-header__region {
    color: #fff;
    padding: 0 10px;
}

.vs-header__hours {
    margin-left: 35px;
    white-space: nowrap;
}

.vs-header__phone {
    margin-left: auto;
    color: #84bbec;
}

.vs-header__langs {
    display: flex;
    gap: 8px;
    margin-left: 100px;
    color: #84bbec;
}

.vs-header__langs .is-active {
    color: #fff;
}

.vs-icon {
    display: inline-block;
    position: relative;
    width: 13px;
    height: 13px;
    margin-right: 4px;
    vertical-align: -2px;
}

.vs-icon--pin::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 1px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 11px solid #fff;
    transform: rotate(45deg);
}

.vs-icon--clock {
    border: 2px solid #84bbec;
    border-radius: 50%;
}

.vs-icon--clock::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 2px;
    height: 5px;
    background: #84bbec;
}

.vs-icon--clock::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 4px;
    height: 2px;
    background: #84bbec;
}

.vs-chevron {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.vs-chevron--blue {
    color: #328bdc;
}

.vs-header__brand {
    background: #2f63ad;
    color: #fff;
}

.vs-header__brand-inner {
    position: relative;
    min-height: 75px;
}

.vs-search {
    position: relative;
    width: 320px;
}

.vs-search input {
    width: 100%;
    height: 38px;
    padding: 0 42px 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font: inherit;
    font-size: 16px;
}

.vs-search input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.vs-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.vs-search button::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    width: 13px;
    height: 13px;
    border: 2px solid #7faadc;
    border-radius: 50%;
}

.vs-search button::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 23px;
    width: 9px;
    height: 2px;
    background: #7faadc;
    transform: rotate(45deg);
}

.vs-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -.6px;
    line-height: 1;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.vs-logo i {
    width: 34px;
    height: 34px;
    border: 6px solid #fff;
    transform: rotate(45deg);
}

.vs-logo i::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 7px;
    background: #fff;
}

.vs-header__actions {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-left: auto;
    min-height: 58px;
}

.vs-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 62px;
    padding-bottom: 7px;
    color: #fff;
    font-size: 13px;
}

.vs-action::before {
    content: "";
    width: 29px;
    height: 25px;
    margin-bottom: 3px;
    border: 2px solid #c3d7ee;
    opacity: .95;
}

.vs-action--bonus::before {
    height: 18px;
    border-radius: 5px;
}

.vs-action--bonus span {
    position: absolute;
    top: 15px;
    min-width: 38px;
    padding: 1px 0;
    border: 2px solid #c3d7ee;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
}

.vs-action--login::before {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 35% 35%;
    border-bottom-width: 0;
}

.vs-action--cart::before {
    width: 28px;
    height: 18px;
    border-top: 0;
    transform: skewX(-12deg);
}

.vs-nav {
    background: #f3f3f3;
    border-bottom: 1px solid #1266b1;
    color: #303742;
}

.vs-nav__list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 35px;
    margin: 0;
    list-style: none;
}

.vs-nav__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-left: 1px solid #ddd;
    font-size: 17px;
    font-weight: 900;
}

.vs-nav__list li:last-child a {
    border-right: 1px solid #ddd;
}

.vs-nav__list a:hover,
.vs-nav__list a.is-active {
    color: #2f63ad;
}

.vs-nav__list a.is-active::after {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #f3f3f3;
}

.vs-page {
    min-height: 360px;
    padding-top: 156px;
    background: #000;
}

.vs-demo-hero,
.vs-error {
    max-width: 1440px;
    min-height: 420px;
    margin: 0 auto;
    padding: 70px 35px;
    background: #f2f2f2;
    text-align: center;
}

.vs-demo-hero h1,
.vs-error h1 {
    margin: 0 0 12px;
    color: #282a2e;
    font-size: 62px;
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.vs-demo-hero p,
.vs-error p {
    margin: 0 auto;
    max-width: 720px;
    color: #5a5f67;
    font-size: 18px;
    font-weight: 600;
}

.vs-category-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1px;
    margin: 55px auto 0;
    padding: 0;
    list-style: none;
}

.vs-category-strip a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.vs-category-strip li:nth-child(1) a { background: #3b74c5; }
.vs-category-strip li:nth-child(2) a { background: #173e9b; }
.vs-category-strip li:nth-child(3) a { background: #060606; }
.vs-category-strip li:nth-child(4) a { background: #ec7624; }
.vs-category-strip li:nth-child(5) a { background: #a7344c; }
.vs-category-strip li:nth-child(6) a { background: #5ccbd2; }
.vs-category-strip li:nth-child(7) a { background: #d9bd35; }
.vs-category-strip li:nth-child(8) a { background: #86bf6f; color: #142514; }

.vs-footer {
    background: #f3f3f3;
    color: #59606b;
}

.vs-footer__subscribe {
    padding: 45px 35px;
    background: #f7f7f7;
    border-top: 1px solid #2f63ad;
}

.vs-footer__subscribe-inner {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 35px;
    align-items: center;
}

.vs-footer__subscribe-title {
    color: #2f6fc6;
    font-size: 26px;
    font-weight: 900;
    line-height: .95;
    text-align: center;
}

.vs-footer__form,
.vs-footer__mini-form {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 16px 35px;
    align-items: start;
}

.vs-footer input[type="email"] {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #626873;
    font: inherit;
    font-size: 18px;
}

.vs-footer input[type="email"]::placeholder {
    color: #c6c6c6;
}

.vs-footer button {
    height: 56px;
    border: 0;
    background: #4079cf;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.vs-footer__agree {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #303742;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.vs-footer__agree input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.vs-footer__agree a {
    text-decoration: underline;
}

.vs-footer__main {
    padding: 65px 35px 55px;
    border-top: 1px solid #1f69b3;
}

.vs-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr .8fr 1.3fr;
    gap: 35px;
}

.vs-footer h3 {
    margin: 0 0 16px;
    color: #2f6fc6;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.vs-footer__col a {
    display: block;
    margin: 5px 0;
    color: #68707c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}

.vs-footer__col a:hover,
.vs-footer__right a:hover {
    color: #2f63ad;
}

.vs-footer__phone,
.vs-footer__mail {
    display: block;
    margin-bottom: 10px;
    color: #404857;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.vs-footer__mail {
    margin-top: 20px;
}

.vs-footer__contacts p {
    margin: 20px 0 0;
    color: #59606b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.vs-footer__question {
    display: block;
    position: relative;
    margin-bottom: 18px;
    padding-left: 42px;
    color: #303742;
    font-size: 18px;
    font-weight: 600;
}

.vs-footer__question::before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 18px;
    border: 2px solid #4079cf;
    border-radius: 2px;
}

.vs-footer__mini-form {
    grid-template-columns: 1fr 165px;
    gap: 15px;
    margin-top: 35px;
}

.vs-footer__mini-form input[type="email"],
.vs-footer__mini-form button {
    height: 52px;
    font-size: 16px;
}

.vs-footer__mini-form .vs-footer__agree {
    grid-column: 1 / -1;
    font-size: 15px;
    text-transform: none;
}

.vs-footer__socials {
    display: flex;
    gap: 26px;
    margin-top: 55px;
}

.vs-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid #d8e1ee;
    color: #2f6fc6;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.vs-footer__bottom {
    background: #3677c7;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.vs-footer__bottom .vs-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 35px;
}

@media (max-width: 980px) {
    .vs-header {
        position: static;
    }

    .vs-header__top-inner,
    .vs-header__brand-inner {
        padding: 0 20px;
    }

    .vs-header__hours,
    .vs-header__phone {
        display: none;
    }

    .vs-header__langs {
        margin-left: auto;
    }

    .vs-header__brand-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .vs-logo {
        position: static;
        order: -1;
        width: 100%;
        justify-content: center;
        transform: none;
    }

    .vs-search {
        width: min(100%, 360px);
    }

    .vs-header__actions {
        gap: 20px;
        margin-left: 0;
    }

    .vs-nav__list {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .vs-page {
        padding-top: 0;
    }

    .vs-footer__subscribe-inner,
    .vs-footer__grid {
        grid-template-columns: 1fr;
    }

    .vs-footer__form,
    .vs-footer__mini-form {
        grid-template-columns: 1fr;
    }

    .vs-footer__agree {
        grid-column: 1;
    }
}

@media (max-width: 560px) {
    .vs-logo {
        font-size: 23px;
    }

    .vs-logo i {
        width: 26px;
        height: 26px;
        border-width: 5px;
    }

    .vs-header__actions {
        width: 100%;
        justify-content: space-between;
    }

    .vs-nav__list {
        grid-template-columns: 1fr;
    }

    .vs-demo-hero h1,
    .vs-error h1 {
        font-size: 42px;
    }

    .vs-footer__subscribe,
    .vs-footer__main {
        padding-left: 20px;
        padding-right: 20px;
    }
}
