:root {
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 100%;
}

body {
    overflow-y: scroll;
    background: #ffffff;
    line-height: 1.375rem;
    font-family: 'Man Europe', sans-serif;
    min-height: 100dvh;
    min-width: 320px;
    font-size: 1rem;
    color: #303c49;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

body:has(#home) {
    gap: 0;
}

body.main-menu-open {
    overflow: hidden;
    position: relative;
    margin-right: var(--scrollbar-width, 0px);
}

body.main-menu-open::after {
    content: '';
    display: block;
    background: #eeeeee;
    position: fixed;
    z-index: 1300;
    bottom: 0;
    top: 0;
    width: var(--scrollbar-width, 0px);
    right: 0;
}

.container {
    width: 100%;
    padding-right: 7.5vw;
    padding-left: 7.5vw;
}

#header {
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid #cbd3dc;
    box-shadow: 0 2px 4px #00000013;
    /*position: sticky;
    top: 0;*/
}

#header .skip-to-page-content {
    text-align: center;
    position: fixed;
    z-index: 2000;
    transition: transform .2s ease-in;
    transform: translateY(-100%);
    right: 0;
    left: 0;
    top: 0;
}

#header .skip-to-page-content:focus-within {
    transform: translateY(0%);
}

/*#header .skip-to-page-content .bg {
    max-width: 300px;
    display: inline-block;
    background: #f0e7d2;
    border-bottom: 1px solid #b5891c;
    border-right: 1px solid #b5891c;
    border-left: 1px solid #b5891c;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    padding: 14px;
}

#header .skip-to-page-content .bg a {
    padding: 2px 6px;
    outline-offset: 4px;
    color: #000000;
    display: block;
}*/

#header #real-header {
    display: flex;
    padding: 16px 0;
    align-items: center;
    flex-direction: row;
    gap: 16px;
}

#header #real-header .man-logo a,
#header #real-header .ak12-logo a {
    display: block;
}

#header #real-header .man-logo a img,
#header #real-header .ak12-logo a img {
    display: block;
    height: 40px;
}

#header #real-header .menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

#header #real-header .menu-wrapper .page-name {
    font-size: 0.875em;
    font-weight: 300;
    color: #5b6f85;
}

#header #real-header .menu-wrapper .main-menu-bg {

}

#header #real-header .menu-wrapper .main-menu {
    display: none;
}

#header #real-header .menu-toggle a {
    position: relative;
    z-index: 1300;
    display: block;
    height: 24px;
    width: 24px;
}

#header #real-header .menu-toggle a .icon {
    display: block;
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
    height: 24px;
    width: 24px;
    transition: opacity 0.2s ease 0s;
    transform: translate3d(0, 0, 0);
    fill: #261000;
    opacity: 1;
}

#header #real-header .menu-toggle a .icon-close {
    opacity: 0;
}

#header #real-header .menu-toggle .toggled .icon-menu {
    opacity: 0;
}

#header #real-header .menu-toggle .toggled .icon-close {
    opacity: 1;
}

#header #real-header .ak12-logo {
    display: none;
}

@media (max-width: 999px) {
    #header #real-header .menu-wrapper .main-menu-bg {
        display: none;
        background: #0006;
        content: '';
        position: fixed;
        opacity: 0;
        top: calc(var(--header-height, 0px) - var(--scroll-y, 0px));
        bottom: 0;
        right: 0;
        left: 0;
    }

    #header #real-header .menu-wrapper.mobile .main-menu-bg {
        transition: opacity .4s, display .4s allow-discrete;
    }

    #header #real-header .menu-wrapper .main-menu {
        display: none;
        background: #f4f5f6;
        max-width: 480px;
        top: calc(var(--header-height, 0px) - var(--scroll-y, 0px));
        overflow-y: auto;
        position: fixed;
        bottom: 0;
        width: calc(100% - var(--scrollbar-width, 0px));
        transform: translateX(100%);
        right: var(--scrollbar-width, 0px);
    }

    #header #real-header .menu-wrapper.mobile .main-menu {
        transition: transform .4s, display .4s allow-discrete;
    }

    #header #real-header .menu-wrapper .main-menu-bg:has(+ .main-menu-open) {
        display: block;
        opacity: 1
    }

    #header #real-header .menu-wrapper .main-menu.main-menu-open {
        display: block;
        transform: translateX(0%);
    }

    @starting-style {
        #header #real-header .menu-wrapper .main-menu-bg:has(+ .main-menu-open) {
            opacity: 0;
        }

        #header #real-header .menu-wrapper .main-menu.main-menu-open {
            transform: translateX(100%);
        }
    }

    #header #real-header #main-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #header #real-header #main-menu li {
        background: #ffffff;
    }

    #header #real-header #main-menu li a {
        display: block;
        text-decoration: none;
        border-bottom: 1px solid #cbd3dc;
        padding: 16px 20px;
        font-weight: 300;
        color: inherit;
    }
}

@media (min-width: 1000px) {
    #header #real-header {
        align-items: end;
        gap: 32px;
    }

    /*#header #real-header .man-logo a img,
    #header #real-header .ak12-logo a img {
        display: block;
        height: 60px;
    }*/

    #header #real-header .man-logo a img {
        display: block;
        height: 50px;
    }

    #header #real-header .menu-wrapper .main-menu {
        display: block;
    }

    #header #real-header #main-menu {
        padding-top: 8px;
        font-weight: bold;
        align-items: center;
        display: flex;
        gap: 16px;
    }

    #header #real-header #main-menu li {

    }

    #header #real-header #main-menu li a {
        text-decoration: none;
        text-transform: uppercase;
        font-stretch: condensed;
        color: inherit;
    }

    /*#header #real-header #main-menu li a::after {
        content: '';
        border-bottom: 2px solid #ffffff;
        transition: border-color .2s ease-in-out;
        display: block;
        width: 100%;
    }

    @media (hover: hover) {
        #header #real-header #main-menu li a:hover::after {
            border-bottom: 2px solid #ac003f;
        }
    }*/

    #header #real-header .menu-toggle {
        display: none;
    }

    #header #real-header .ak12-logo {
        display: block;
    }
}

@media (min-width: 1100px) {
    #header #real-header #main-menu {
        gap: 32px;
    }
}

#content {
    flex-grow: 1;
}

#content .section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#content .section .section-title {
    font-weight: bold;
    line-height: 1.2;
    font-size: 1.8rem;
    text-align: left;
}

#content .section .section-content {
}

@media (min-width: 768px) {
    #content .section .section-title {
        font-size: 2rem;
    }

    #content .section .section-content {
    }
}

#banners {
    position: relative;
}

#banners .banners {
    display: block;
    height: calc(100svh - var(--header-height, 0px));
    position: relative;
    z-index: 100;
}

#banners .banners li {
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#banners .banners li img {
    display: block;
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#banners .banners li .content {
    display: flex;
    padding: 32px 0 108px 0;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    height: 100%;
    top: 0;
}

#banners .banners li .content .body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#banners .banners li .content .body .text {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    font-stretch: condensed;
    color: #ffffff;
}

#banners .banners li .content .body .button a {
    display: inline-block;
    text-decoration: none;
    border-radius: 0px;
    line-height: 1;
    font-size: 0.875rem;
    background-color: #e40045;
    transition: background-color .3s ease;
    text-transform: uppercase;
    font-weight: 500;
    padding: 16px;
    color: #ffffff;
    border: 0;
    flex-grow: 1;
}

@media (hover: hover) {
    #banners .banners li .content .body .button a:hover {
        cursor: pointer;
        background-color: #ac003f;
        color: #ffffff;
    }
}

#banners .controls {
    width: 100%;
    height: 44px;
    position: absolute;
    z-index: 110;
    bottom: 32px;
}

#banners .controls ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

#banners .controls ul a {
    display: flex;
    color: #cbd3dc;
    transition: color .3s ease-in-out;
    text-decoration: none;
    align-items: center;
    height: 24px;
    width: 24px;
}

#banners .controls ul a.left,
#banners .controls ul a.right {
    font-family: 'Man Icons';
}

#banners .controls ul a.left span,
#banners .controls ul a.right span {
    font-size: 24px;
}

#banners .controls ul a.left span::after {
    content: '\e953';
}

#banners .controls ul a.right span::after {
    content: '\e954';
}

#banners .controls ul .pagination {
    display: flex;
    gap: 16px;
}

#banners .controls ul .pagination a span {
    display: block;
    transition: background-color .3s ease-in-out;
    background: #cbd3dc;
    width: 100%;
    height: 2px;
}

#banners .controls ul .pagination a.active span {
    background: #e40045;
}

@media (hover: hover) {
    #banners .controls ul a:hover {
        cursor: pointer;
    }

    #banners .controls ul a:hover {
        color: #e40045;
    }

    #banners .controls ul .pagination a:hover span {
        background: #e40045;
    }
}

@media (min-width: 768px) {
    #banners .banners li .content .body {
        max-width: 75%;
    }
}

@media (min-width: 1000px) {
    #banners .banners li .content .body {
        max-width: 60%;
    }
}

.fancybox-content.gdpr-popup {
    border-radius: 3px;
    max-width: 800px;
}

.responsive-form {
    position: relative;
    border-radius: 3px;
    background: #f4f5f6;
    padding: 16px;
}

.responsive-form form {
}

.responsive-form form .overlay {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    z-index: 100;
}

@keyframes loading-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.responsive-form form .overlay .loading {
    animation: loading-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 24px;
    left: 50%;
    margin: -12px 0 0 -2px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 24px;
    z-index: 99999;
}

.responsive-form form .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.responsive-form form .form .row {
    scroll-margin-top: 32px;
}

.responsive-form form .form .columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .responsive-form form .form .columns {
        flex-direction: row;
    }

    .responsive-form form .form .columns[data-columns="2"] .row {
        flex: 1 1 0px;
    }
}

.responsive-form form .row.input > label,
.responsive-form form .row.input > .label {
    display: block;
    margin-bottom: 4px;
    line-height: 1.1;
}

.responsive-form form .row.input > label span::after,
.responsive-form form .row.input > .label span::after {
    content: ':';
}

.responsive-form form .row.input.required > label::after,
.responsive-form form .row.input.required > .label::after {
    content: ' *';
    font-weight: bold;
    color: #f04124;
}

.responsive-form form input[type=text],
.responsive-form form textarea {
    display: block;
    width: 100%;
    border: 2px solid #000000;
    border-radius: 2px;
    color: #000000;
    background: #ffffff;
    line-height: 22px;
    padding: 6px 6px;
}

.responsive-form form textarea {
    line-height: 22px;
    height: 120px;
}

.responsive-form form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #000000;
    background: #ffffff;
    display: block;
    float: left;
    color: #000000;
    margin-right: 6px;
    border-radius: 2px;
    line-height: 22px;
    padding: 6px 10px;
    padding-right: 28px;
    position: relative;
    background-image: url('/images/form-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 10px;
}

@media (hover: hover) {
    .responsive-form form select:hover {
        cursor: pointer;
    }
}

.responsive-form form select::-ms-expand {
    /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
    display: none;
}

.responsive-form form select:last-child {
    margin-right: 0;
}

.responsive-form form .radiobox .check {
    border: 2px solid #000000;
    height: 20px;
    width: 20px;
}

.responsive-form form .radiobox .check a {
    overflow: hidden;
}

.responsive-form form .radiobox .check a span {
    margin: 2px;
    height: 12px;
    width: 12px;
}

.responsive-form form .radiobox .check a.checked span {
    background: #000000;
}

.responsive-form form .checkbox .check {
    border: 2px solid #000000;
    border-radius: 2px;
    height: 20px;
    width: 20px;
}

.responsive-form form .checkbox .check a {
    overflow: hidden;
}

.responsive-form form .checkbox .check a span {
    border-radius: 0;
    height: 12px;
    width: 12px;
    margin: 2px;
}

.responsive-form form .checkbox .check a.checked span {
    border-radius: 1px;
    background: #000000;
}

.responsive-form form .checkbox .check a.checked span::after {
    content: none;
}

.responsive-form form .vehicles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.responsive-form form .vehicles li {
    display: block;
}

@media (min-width: 768px) {
    .responsive-form form .vehicles {
        flex-direction: row;
        gap: 32px;
    }
}

.responsive-form form .vehicles li label {
    display: block;
    line-height: 18px;
    padding: 1px 0;
    margin-bottom: 0;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
}

.responsive-form form .vehicles li label .radiobox {
    overflow: hidden;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.responsive-form form .vehicles li label .radiobox {
    transform: translateY(-50%);
    top: 50%;
}

.responsive-form form .service-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.responsive-form form .service-items li {
    display: block;
}

@media (min-width: 640px) {
    .responsive-form form .service-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media (min-width: 960px) {
    .responsive-form form .service-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.responsive-form form .service-items li label {
    display: block;
    line-height: 18px;
    padding: 1px 0;
    margin-bottom: 0;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
}

.responsive-form form .service-items li label .checkbox {
    overflow: hidden;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.responsive-form form .service-items li label .checkbox {
    transform: translateY(-50%);
    top: 50%;
}

.responsive-form form .gdpr-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.responsive-form form .gdpr-list li {
    display: block;
}

.responsive-form form .gdpr-list li label {
    display: block;
    line-height: 18px;
    padding: 1px 0;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
}

.responsive-form form .gdpr-list li label .radiobox {
    overflow: hidden;
    position: absolute;
    display: block;
    transform: translateY(-50%);
    top: calc(50%);
    left: 0;
}

.responsive-form form .error {
    display: none;
    color: #f04124;
    margin-top: 6px;
    line-height: 1.2;
    font-size: 0.9em;
}

.responsive-form form .generic-error {
    display: none;
}

.responsive-form form .generic-error p {
    display: block;
    color: #f04124;
}

.responsive-form form .buttons button {
    display: block;
    position: relative;
    text-decoration: none;
    border: none;
    background: #ffffff;
    transition: background-color .3s ease;
    line-height: 1;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    color: #000000;
    padding: 12px 40px;
    border-radius: 3px;
    text-align: center;
    flex-grow: 1;
}

.responsive-form form .buttons button span {
}

.responsive-form form .buttons button.send {
    background-color: #e40045;
    color: #ffffff;
}

@media (hover: hover) {
    .responsive-form form .buttons button:hover {
        cursor: pointer;
        text-decoration: underline;
        background-color: #ac003f;
    }
}

.responsive-form form .success {
    display: none;
}

#footer {
    background: #f4f5f6;
    padding: 32px 0 32px 0;
    font-size: 0.875em;
}

#footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#footer .block {

}

#footer .block .block-title {
    margin-bottom: 12px;
    font-weight: bold;
}

#footer .block .block-body {
    font-weight: 300;
}

#footer #footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer #footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#footer #footer-menu ul li {

}

#footer #footer-menu ul li a {
    text-decoration: none;
    color: inherit;
}

@media (hover: hover) {
    #footer #footer-menu ul li a:hover {
        text-decoration: underline;
        color: #e40045;
    }
}

#footer #footer-contacts {
}

#footer #copyright {
    margin-top: 32px;
    font-weight: 300;
}

@media (max-width: 767px) {
    #footer #footer-menu ul li a::before {
        content: '> ';
    }
}

@media (min-width: 768px) {
    #footer #footer-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1000px) {
    #footer .wrapper {
        flex-direction: row;
    }

    #footer #footer-menu {
        width: 60%;
    }

    #footer #footer-contacts {
        width: 40%;
    }
}