@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #f9f9f9;
}

a {
    color: #194995;
}

.wrapper {
    max-width: 1200px;
    padding: 15px;
    margin: 0 auto;
}

.header {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.logo {
    display: grid;
    gap: 7px;
    text-decoration: none;
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
}

a.logo img {
    width: 230px;
}

a.logo > span {
    display: flex;
    align-items: center;
    gap: 12px;
}

a.logo > span i {
    content: '';
    mask-image: url(../images/ico_logo.svg);
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #000;
}

a.logo > span > :first-child {
    color: #194995;
}

a.logo > span > :last-child {
    color: #FF7127;
}

.header__menu {
    display: flex;
    gap: 30px;
}

.header__menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.header__menu a:hover {
    color: #FF7127;
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
}

.header__contact__lang {
    display: flex;
    gap: 5px;
}

.header__contact__lang a {
    width: 20px;
    height: 20px;
}

.header__contact__lang > :nth-child(1) {background-image: url(../images/ico_flag_ru.svg);}
.header__contact__lang > :nth-child(2) {background-image: url(../images/ico_flag_pl.svg);}

.header__contact__cnt {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header__contact__cnt__msg {
    display: flex;
    gap: 10px;
}

.header__contact__cnt__msg a {
    mask-repeat: no-repeat;
    background-color: #000;
    width: 20px;
    height: 20px;
}

.header__contact__cnt__msg > :nth-child(1) {mask-image: url(../images/ico_msg_tg.svg);}
.header__contact__cnt__msg > :nth-child(2) {mask-image: url(../images/ico_msg_vb.svg);}
.header__contact__cnt__msg > :nth-child(3) {mask-image: url(../images/ico_msg_wa.svg);}

.header__contact__cnt > a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.header__contact > a {
    text-decoration: none;
}

.header__contact a:hover {
    color: #FF7127;
}

.home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.home__txt {
    font-family: "Unbounded", sans-serif;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: grid;
}

.home__txt__title {
    background-color: #FF7127;
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.home__txt__subtitle {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.home__cover {}

.home__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.buds {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 10px;
    margin: 50px 0 50px 0;
}

.buds__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.buds__item {
    display: grid;
    text-align: center;
    justify-items: center;
    font-family: "Unbounded",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.buds__item::before {
    content: '';
    width: 60px;
    height: 60px;
    background-color: #FF7127;
    mask-repeat: no-repeat;
}

.buds__items > :nth-child(1)::before {mask-image: url(../images/ico_top1.svg);}
.buds__items > :nth-child(2)::before {mask-image: url(../images/ico_top2.svg);}
.buds__items > :nth-child(3)::before {mask-image: url(../images/ico_top3.svg);}

.buds__item span {}

.buds__mng {
    display: grid;
    grid-template-columns: 130px auto;
    gap: 10px;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.buds__mng__cover {}

.buds__mng__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.buds__mng__content {
    display: grid;
    gap: 5px;
}

.buds__mng__content__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.buds__mng__content__title span {
    display: block;
    font-weight: 400;
}

.buds__mng__content__links {
    display: grid;
}

.buds__mng__content__links a {
    text-decoration: none;
    font-size: 14px;
    display: grid;
    grid-template-columns: 14px auto;
    gap: 5px;
    align-items: center;
}

.buds__mng__content__links a::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #000;
}

.buds__mng__content__links > :nth-child(1)::before {mask-image: url(../images/ico_phone.svg);}
.buds__mng__content__links > :nth-child(2)::before {mask-image: url(../images/ico_email.svg);}

.cargo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 25px 0 0;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    gap: 40px 20px;
}

.cargo h2 {
    grid-column: span 4;
    text-align: center;
    font-family: "Unbounded",sans-serif;
    text-transform: uppercase;
    margin: 25px 0 0;
}

.cargo__item {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.cargo__item img {
    width: 70px;
}

.autopark {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 25px 0 0 0;
}

.autopark h2 {
    grid-column: span 5;
    text-align: center;
    font-family: "Unbounded",sans-serif;
    text-transform: uppercase;
    margin: 25px 0 0;
}

.autopark__item {
    background-color: #fff;
    display: grid;
    justify-items: center;
    border-radius: 10px;
}

.autopark__item img {
    width: 70%;
}

.autopark__item__act {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 15px;
    border-top: solid 1px #f0f0f0;
}

.autopark__item__act strong {
    font-weight: 700;
    font-size: 14px;
}

.autopark__item__act span {
    background-color: #FF7127;
    color: #fff;
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 12px auto;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

.autopark__item__act span::before {
    content: '';
    mask-image: url(../images/ico_check.svg);
    mask-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-color: #fff;
}

.cta {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    margin: 50px 0;
    align-items: center;
}

.cta__cnt {}

.cta__cnt h2 {
    font-family: "Unbounded",sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
}

.cta__cnt p {
    font-size: 24px;
    line-height: 26px;
    margin: 15px 0;
}

.cta__cnt img {
    max-width: 220px;
}

.form_cta {
    background-color: #194995;
    padding: 25px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    color: #fff;
}

.form_cta > :nth-child(5),
.form_cta > :nth-child(6),
.form_cta > :nth-child(7) {
    grid-column: span 2;
}

.cta__col {
    display: grid;
    gap: 3px;
}

.cta__col label {
    font-size: 14px;
}

.cta__col input,
.cta__col select,
.cta__col textarea {
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 10px 8px;
    font-family: "Jost", sans-serif;
}

.form_cta p {
    font-size: 10px;
    font-weight: 300;
    margin: 0;
}

.form_cta button {
    background-color: #FFCF0F;
    border: none;
    border-radius: 3px;
    padding: 12px 0;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    cursor: pointer;
    font-size: 18px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.about__content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.about__content h2 {
    font-family: "Unbounded",sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
}

.about__faq {
    display: grid;
    gap: 10px;
}

.about__faq__item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

.about__faq__item__title {
    display: grid;
    grid-template-columns: 12px auto;
    gap: 10px;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.about__faq__item__title:hover {
    color: #194995;
}

.about__faq__item__title::before {
    content: '';
    mask-image: url(../images/ico_triangle.svg);
    mask-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-color: #FF7127;
}

.about__faq__item__title:hover::before {
    background-color: #194995;
}

.about__faq__item__title.active::before {
    transform: rotate(-90deg);
}

.about__faq__item__content {
    padding: 10px 0 0;
}

.partners {
    background-color: #fff;
    padding: 30px 20px;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 50px;
}

.partners h2 {
    grid-column: span 5;
    font-family: "Unbounded",sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin: 0 0 25px;
}

.partners span {
    height: 100px;
}

.partners span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__map iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.contact__cnt {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__cnt h2 {
    font-family: "Unbounded",sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
    margin: 0;
}

.contact__cnt p {
    margin: 0;
}

.contact__cnt p a {
    display: grid;
    grid-template-columns: 18px auto;
    gap: 10px;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.contact__cnt p a::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: #000;
}

.contact__cnt > :nth-child(2) a::before {mask-image: url(../images/ico_phone.svg);}
.contact__cnt > :nth-child(3) a::before {mask-image: url(../images/ico_email.svg);}

.contact__cnt__msg {
    display: flex;
    gap: 5px;
}

.contact__cnt .header__contact__cnt__msg {}

.modal__park {
    max-width: 800px;
}

.modal__park__body {}

.modal__park__header {
    display: grid;
    grid-template-columns: auto 80px;
    gap: 10px;
    align-items: center;
}

.modal__park__header__cover {}

.modal__park__header__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal__park__header__title {
    font-size: 24px;
    font-weight: 500;
}

.modal__park__header__title span {}

.modal__park__body form {
    color: #000;
    background: none;
    padding: 0;
}

.modal__park__body form .cta__col input,
.modal__park__body form .cta__col select,
.modal__park__body form .cta__col textarea {
    border: solid 1px #ddd;
}

.burger__btn {
    display: none;
}

.blocker {
    z-index: 15;
}

/* .ui-datepicker {
    z-index: 99999 !important;
    position: absolute !important;
  }
  .modal__park {
    z-index: 9999;
  } */

@media screen and (max-width: 899px) {
    .autopark {
        gap: 10px;
    }
    .autopark__item__act {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    .autopark__item__act span {
        justify-content: center;
        padding: 8px 0;
    }
}

@media screen and (max-width: 849px) {
    .header {
        padding-right: 60px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: -150vw;
        background-color: #000;
        width: 100vw;
        height: 100vh;
        z-index: 10;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
    }
    .header__menu.active {
        right: 0;
        transition: all 0.4s ease 0s;
    }
    .header__menu a {
        color: #fff;
        font-size: 21px;
    }
    .burger__btn {
        position: fixed;
        background-color: #fff;
        z-index: 11;
        right: 20px;
        top: 55px;
        display: grid;
        gap: 8px;
        cursor: pointer;
        padding: 5px;
        border-radius: 5px;
    }
    .burger__btn::before,
    .burger__btn::after {
        content: '';
    }
    .burger__btn span,
    .burger__btn::before,
    .burger__btn::after {
        width: 35px;
        height: 2px;
        background-color: #000;
        transition: all 0.4s ease 0s;
    }
    .burger__btn.active {
        background: none;
    }
    .burger__btn.active span,
    .burger__btn.active::before {
        background-color: #fff;
        position: relative;
    }
    .burger__btn.active::after {
        display: none;
    }
    .burger__btn.active span {
        transform: rotate(45deg);
        bottom: 5px;
        transition: all 0.4s ease 0s;
    }
    .burger__btn.active::before {
        transform: rotate(-45deg);
        top: 4px;
        transition: all 0.4s ease 0s;
    }
    .buds {
        grid-template-columns: auto 275px;
    }
    .buds__mng {
        grid-template-columns: 100px auto;
    }
    .buds__item {
        font-size: 10px;
    }
    .home__txt {
        font-size: 21px;
    }
    .home__cover {
        height: 30vw;
    }
}

@media screen and (max-width: 799px) {
    .cta {
        grid-template-columns: 1fr;
    }
    .cta__cnt {
        text-align: center;
    }
    .cta__cnt img {
        max-width: 120px;
    }
    .about {
        grid-template-columns: 1fr;
    }
    .header__contact {
        gap: 2px;
    }
    .header__contact__cnt>a {
        font-size: 16px;
    }
    .header__contact__cnt__msg {
        gap: 7px;
    }
    .header__contact__cnt__msg a {
        width: 16px;
        height: 16px;
    }
    .header__contact>a {
        font-size: 14px;
    }
    .home__txt {
        font-size: 18px;
    }
    .cargo h2,
    .autopark h2,
    .cta__cnt h2,
    .partners h2,
    .about__content h2, .contact__cnt h2 {
        font-size: 21px;
    }
}

@media screen and (max-width: 749px) {
    .contact {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 699px) {
    .cargo {
        gap: 30px 20px;
    }
    .cargo__item {
        font-size: 16px;
    }
    .cargo__item img {
        width: 55px;
    }
}

@media screen and (max-width: 649px) {
    .home__txt {
        font-size: 16px;
        padding: 10px;
    }
    .home__txt__title,
    .home__txt__subtitle {
        padding: 5px 10px;
    }
    .buds {
        grid-template-columns: 1fr;
        margin: 25px 0;
    }
    .buds__item {
        gap: 15px;
    }
    .buds__mng {
        grid-template-columns: 130px auto;
    }
    .autopark {
        display: flex;
        flex-direction: column;
    }
    .autopark__item {
        grid-template-columns: 120px auto;
        justify-content: center;
    }
    .autopark__item__act {
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 20px;
    }
    .autopark__item__act span {
        padding: 8px 10px;
    }
    .cargo {
        gap: 30px 10px;
    }
    .cargo__item {
        font-size: 14px;
    }
    .cargo__item img {
        width: 50px;
    }
    .modal__park__header__title {
        font-size: 21px;
    }
}

@media screen and (max-width: 599px) {
    .cargo h2,
    .autopark h2,
    .cta__cnt h2,
    .partners h2,
    .about__content h2, .contact__cnt h2 {
        font-size: 18px;
    }
    .cta__cnt p {
        font-size: 21px;
        line-height: normal;
        margin: 10px 0;
    }
    .home {
        gap: 15px;
        margin: 15px 0;
    }
    .home__txt {
        font-size: 12px;
    }
    a.logo {
        font-weight: 500;
        font-size: 8px;
    }
    a.logo img {
        width: 170px;
    }
    a.logo>span {
        gap: 5px;
    }
    a.logo>span i {
        width: 12px;
        height: 12px;
    }
    .partners span {
        height: 60px;
    }
}

@media screen and (max-width: 549px) {
    .wrapper {
        padding: 5px;
    }
    .header {
        justify-content: start;
        gap: 35px;
    }
    .header__contact {
        align-items: start;
    }
    .header__contact__lang {
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .header__contact__cnt {
        gap: 5px;
        flex-direction: row-reverse;
    }
    .header__contact__cnt>a {
        font-size: 14px;
    }
    .header__contact__cnt__msg {
        gap: 5px;
    }
    .header__contact__cnt__msg a {
        width: 14px;
        height: 14px;
    }
    .buds__item::before {
        width: 45px;
        height: 45px;
    }
    .burger__btn {
        top: 35px;
        gap: 6px;
    }
    .burger__btn span, .burger__btn::before, .burger__btn::after {
        width: 30px;
    }
    .cargo h2, .autopark h2, .cta__cnt h2, .partners h2, .about__content h2, .contact__cnt h2 {
        font-size: 16px;
        margin: 0;
        line-height: 22px;
    }
    .cta__cnt p {
        font-size: 18px;
        margin: 0;
    }
    .cta__cnt img {
        margin: 10px 0 0;
    }
    .partners {
        gap: 20px 25px;
    }
}

@media screen and (max-width: 519px) {
    .cargo {
        grid-template-columns: repeat(2, 1fr);
    }
    .cargo h2 {
        grid-column: span 2;
    }
    .cargo__item {
        font-size: 16px;
    }
}

@media screen and (max-width: 499px) {
    .form_cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .header__contact__cnt {
    }
    .header__contact__cnt>a {
        font-size: 12px;
    }
    .header__contact__cnt__msg {
        gap: 10px;
        position: absolute;
        right: 10px;
        top: 70px;
    }
    .header__contact__cnt__msg a {
        width: 16px;
        height: 16px;
        background-color: #333;
    }
    .burger__btn {
        right: 5px;
    }
    .cargo h2, .autopark h2, .cta__cnt h2, .partners h2, .about__content h2, .contact__cnt h2 {
        font-size: 14px;
    }
    .cta__cnt p {
        font-size: 16px;
        line-height: 18px;
    }
}

@media screen and (max-width: 449px) {
    .modal__park__header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    .modal__park__header__cover {
        max-width: 100px;
        margin: 0 auto;
    }
    .modal__park__header__title {
        font-size: 18px;
    }
}

@media screen and (max-width: 429px) {
    .header {
        gap: 20px;
    }
}

@media screen and (max-width: 399px) {
    .partners {
        gap: 20px 10px;
        grid-template-columns: 1fr 1fr;
    }
    .partners h2 {
        grid-column: span 2;
    }
    .partners span {
        height: 40px;
    }
    .contact__cnt {
        font-size: 14px;
        gap: 8px;
    }
    .contact__cnt p a {
        grid-template-columns: 14px auto;
        gap: 5px;
    }
    .contact__cnt p a::before {
        width: 14px;
        height: 14px;
    }
    .header {
        /* gap: 10px; */
        padding-right: 0;
    }
    .home {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .home__cover {
        height: 45vw;
    }
    .home__txt {
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 10px;
    }
    .home__txt__title {
        border-radius: 5px;
        padding: 15px 10px;
    }
    a.logo img {
        width: 150px;
    }
    .header__contact__lang {
        top: 2px;
    }
    .header__contact__cnt__msg {
        position: fixed;
        top: unset;
        bottom: 10px;
        flex-direction: column;
        background-color: #fff;
        padding: 8px;
        border-radius: 3px;
        gap: 15px;
    }
    .header__contact__cnt__msg a {
        width: 20px;
        height: 20px;
        background-color: #000;
    }
    .buds__item::before {
        width: 35px;
        height: 35px;
    }
    .buds__item {
        gap: 10px;
        font-size: 9px;
    }
}

@media screen and (max-width: 349px) {
    a.logo img {
        width: 130px;
    }
    a.logo {
        font-size: 7px;
        gap: 5px;
    }
    .header__contact {
        gap: 0;
    }
    .burger__btn {
        top: 25px;
    }
}

@media screen and (max-width: 329px) {
    .buds__mng {
        grid-template-columns: 100px auto;
    }
    .header {
        flex-direction: column;
    }
    .header__contact {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {

}