.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s;
}

.header.scrolled {
    background: #fff;
}

.header__top {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #fff;
    padding: 15px 0;
}

.header__logo {
    margin: 0 auto 0 0;
    width: 100%;
    max-width: 140px;
}

.header__logo img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__lang {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__lang a {
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.header__lang a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #E07203;
    transition: .3s;
}

.header__lang a:hover {
    color: #E07203;
}

.header__lang a:hover::after {
    width: 100%;
}

.header__top label {
    border-radius: 26.5px;
    border: 1px solid #E5E5E5;
    background: rgba(255, 255, 255, 0.11);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.header__top label input {
    background: transparent;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    width: 100%;
    /* 128.571% */
}

.header.scrolled .header__top label {
    border-color: #111;
}

.header.scrolled .header__lang a {
    color: #111;
}

.header.scrolled .header__top label input {
    color: #111;
}

.header__top label input::-moz-placeholder {
    color: #FFF;
}

.header__top label input::placeholder {
    color: #FFF;
}

.header.scrolled .header__top label button circle {
    stroke: #111;
}

.header.scrolled .header__top label button path {
    stroke: #111;
}

.header.scrolled .header__top label input::-moz-placeholder {
    color: #111;
}

.header.scrolled .header__top label input::placeholder {
    color: #111;
}

.header__container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__container ul a svg path {
    transition: .3s;
}

.header__container ul a:hover svg path {
    fill: #E07203;
}

.header__top ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__bot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.header__bot ul {
    display: flex;
    align-items: center;
    gap: 70px;
}

.header__bot ul>li {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 112.5% */
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
    padding-bottom: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header.scrolled .header__bot ul>li {
    color: #111;
}

.header .sub-item path {
    transition: 0.3s;
}

.header.scrolled .sub-item path {
    stroke: #111;
}

.header .color-logo {
    display: none;
}

.header.scrolled .logo {
    display: none;
}

.header.scrolled .color-logo {
    display: block;
}

.header__bot ul a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 112.5% */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.header.scrolled .header__container ul a svg path {
    fill: #004B87;
    transition: .3s;
}

.header.scrolled .header__container ul a:hover svg path {
    fill: #E07203;
}

.header.scrolled .header__container ul a svg circle {
    stroke: #004B87;
}

.header.scrolled .header__bot ul a {
    color: #111;
}

.header__container ul a:hover circle {
    stroke-opacity: 1;
}

.header__bot ul a::after,
.header .sub-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #E07203;
    transition: 0.3s;
}

.header__bot ul a:hover,
.header .sub-item:hover {
    color: #E07203;
}

.header .sub-item:hover path {
    stroke: #E07203;
}

.header__bot ul a:hover::after,
.header .sub-item:hover::after {
    width: 100%;
}

.header .sub-item {
    position: relative;
}

.header .sub-item svg {
    transition: 0.3s;
}

.header .sub-item.active svg {
    transform: rotate(180deg);
}

.header .sub-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 250px;
    align-items: baseline;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    top: 42px;
    left: 0;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
}

.header .sub-list.active {
    opacity: 1;
    visibility: visible;
}

.header__bot .sub-list li {
    background: #fff;
    padding: 8px 20px;
    width: 100%;
}

.header__bot .sub-list li::after {
    display: none;
}

.header__bot .sub-list a {
    color: #171717;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: none;
    padding: 0;
    /* 100% */
}

.header__bot .sub-list li:hover {
    background: rgba(0, 114, 212, 0.0784313725);
}

.header__bot .sub-list li:hover a {
    color: #004B87;
}

.header__bot .sub-list a::after {
    display: none;
}

.header .burger {
    position: relative;
    width: 25px;
    height: 18px;
    cursor: pointer;
    display: none;
}

.header .burger span {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.header.scrolled .burger span {
    background: #111;
}

.header .burger span:first-of-type {
    top: 0;
}

.header .burger span:nth-last-of-type(2) {
    top: 46%;
}

.header .burger span:last-of-type {
    bottom: 0;
}

.header .burger.active span:first-of-type {
    transform: rotate(-45deg);
    top: 8px;
    background-color: #fff;
}

.header .burger.active span:last-of-type {
    transform: rotate(45deg);
    bottom: 8px;
    background-color: #fff;
}

.header.scrolled .burger.active span:first-of-type {
    transform: rotate(-45deg);
    top: 8px;
    background-color: #111;
}

.header.scrolled .burger.active span:last-of-type {
    transform: rotate(45deg);
    bottom: 8px;
    background-color: #111;
}

.header .burger.active span:nth-last-of-type(2) {
    display: none;
}

.header__bot .header__container {
    display: none;
}

.header__mob {
    display: none;
}

@media (max-width: 992px) {
    .header__bot {
        margin-top: 0;
        padding: 0;
    }

    .header__desc {
        display: none;
    }

    .header__mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header__lang {
        padding: 35px 20px 0;
    }

    .header__mob .header__logo {
        margin: 0;
    }

    .header__top .header__container {
        display: none;
    }

    .header__bot .header__container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: baseline;
        padding: 0 20px;
    }

    .header__bot .header__container ul {
        flex-direction: row;
        padding: 0;
        margin-top: 40px;
    }

    .header .burger {
        display: block;
        z-index: 1000;
        order: 1;
    }

    .header__right a {
        background: transparent;
        border: none;
    }

    .header__nav {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        background: #004B87;
        background-size: cover;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        z-index: 100;
        overflow: auto;
    }

    .header__nav.active {
        left: 0;
    }

    .header.scrolled .header__nav.active {
        background: #fff;
    }

    .header.scrolled .header__top label button path {
        stroke: #111;
    }

    .header__nav ul {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 20px;
        padding: 35px 20px 0;
    }
}

@media (max-width: 767px) {
    .header__logo {
        max-width: 100px;
    }
}

.hero {
    position: relative;
}

.hero__mob-img {
    display: none;
}

.hero__wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 220px;
    padding-top: 20%;
    padding-bottom: 20%;
}

.hero__wrapper h1 {
    color: #FFF;
}

.hero__wrapper p {
    color: #FFF;
    margin-top: 20px;
}

.hero__wrapper a {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 100px;
    right: 0;
    left: 0;
}

.hero__slide .mob-img {
    display: none;
}

@media (max-width: 767px) {
    .hero {
        padding-bottom: 62%;
    }

    .hero__wrapper a {
        bottom: 0;
    }

    .hero__slide .mob-img {
        display: block;
    }

    .hero__slide .desc-img {
        display: none;
    }

    .hero__mob-img {
        display: block;
    }

    .hero__desc-img {
        display: none;
    }
}

@media (max-width: 767px) and (max-width: 540px) {
    .hero {
        padding-top: 30%;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 43, 43, 0.6078431373);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    max-width: 405px;
    margin: auto;
    padding: 40px;
    border-radius: 32px;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    width: 30px;
    height: 30px;
}

.modal__wrapper form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.modal__wrapper form input {
    border: 1px solid rgba(17, 17, 17, 0.1019607843);
    padding: 12px 20px;
    border-radius: 26.5px;
}

.about-block {
    margin-bottom: 100px;
}

@media (max-width:992px) {
    .about-block {
        margin-bottom: 50px;
    }
}

.about-block__wrapper {
    display: grid;
    grid-template-columns:  1fr;
    border-radius: 30px;
    box-shadow: 0px 5px 10px 2px rgba(35, 107, 255, 0.2);
    gap: 20px;
}

.about-block__left {
    padding: 120px 100px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-block__left::before {
    position: absolute;
    top: 0;
    left: -110px;
    background: url('../img/about-icon.svg') center no-repeat;
    width: 250px;
    height: 212px;
    content: '';
}

.about-block__left img {
    width: 100%;
    max-width: 180px;
}

.about-block__left p {
    color: #333;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 50px;
    /* 123.81% */
}

.about-block__right {
    position: relative;
    padding: 20%;
    border-radius: 30px;
    overflow: hidden;
}

.about-block__right .map__wrapper {
    bottom: 50px;
    right: 50px;
    left: auto;
    gap: 10px;
}

@media (max-width: 992px) {
    .about-block__wrapper {
        grid-template-columns: 1fr;
    }

    .about-block__left {
        padding: 50px;
    }

    .about-block__left p {
        font-size: 16px;
        margin-top: 25px;
    }
}

@media (max-width:767px) {
    .about-block__left {
        padding: 25px;
    }

    .about-block__right {
        padding: 35%;
    }

    .about-block__right .map__wrapper {
        bottom: 20px;
        right: 20px;
        padding-left: 20px;
    }
}

.mechanical {
    position: relative;
}

.mechanical__case {
    padding: 100px 20px;
}

.mechanical__wrapper {
    position: relative;
    z-index: 5;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mechanical__box {
    width: 100%;
    max-width: 470px;
}

.mechanical__box h2 {
    color: #fff;
    margin-top: 10px;
}

.mechanical__box span {
    color: #fff;
}

.mechanical__wrapper p {
    width: 100%;
    max-width: 640px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.mechanical__container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mechanical__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mechanical__card::after {
    position: absolute;
    content: "";
    background: rgba(17, 17, 17, 0.6588235294);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.mechanical__card:hover::after {
    opacity: 1;
}

.mechanical__card p {
    position: absolute;
    padding: 0 30px 30px;
    top: 62%;
    opacity: 0;
    visibility: hidden;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
    transition: 0.3s;
    z-index: 11;
}

.mechanical__card:hover p {
    opacity: 1;
    visibility: visible;
}

.mechanical__wrapp {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 320px 30px 30px;
}

.mechanical__wrapp h3 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    /* 125% */
    text-transform: uppercase;
    transition: 0.3s;
}

.mechanical__wrapp rect {
    transition: 0.3s;
}

.mechanical__card:hover h3 {
    color: #E07203;
}

.mechanical__card:hover rect {
    fill: #E07203;
}

@media (max-width: 1180px) {
    .mechanical__wrapp h3 {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .mechanical__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .mechanical__wrapper {
        flex-direction: column;
        align-items: baseline;
        margin-bottom: 50px;
    }

    .mechanical__box {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .mechanical__container {
        grid-template-columns: 1fr;
    }
}

.map {
    position: relative;
    padding: 23% 20px;
    border-radius: 30px;
    overflow: hidden;
}

.map__wrapper {
    position: absolute;
    z-index: 5;
    bottom: 50px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.map__wrapper span {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    text-transform: capitalize;
    border-radius: 14px;
    opacity: 0.6;
    background: #000;
    padding: 20px;
}

@media (max-width: 767px) {
    .map {
        padding: 35%;
    }
}

.partners {
    margin-bottom: 100px;
}

.partners h2 {
    text-align: center;
}

.partners__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.partners__card {
    border-radius: 17px;
    background: #F7F7F7;
    padding: 25px 50px;
}

.partners__card img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .partners {
        margin-bottom: 50px;
    }

    .partners__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .partners__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .partners__wrapper {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: #2d2d2d;
    position: relative;
    color: #fff;
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/footer-bg.svg") center no-repeat;
}

.footer__wrapper {
    position: relative;
    z-index: 5;
}

.footer__top {
    border-bottom: 0.5px solid rgba(231, 231, 231, 0.3490196078);
    padding-bottom: 40px;
}

.footer__wrapp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    padding-top: 60px;
    padding-bottom: 15px;
}

.footer__wrapp p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
}

.footer__wrapp h3 {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    text-transform: uppercase;
}

.footer__soc ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__nav ul {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-top: 40px;
}

.footer__nav ul a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 112.5% */
    text-transform: uppercase;
}

.footer__bot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 15px;
}

.footer__bot span,
.footer__bot a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
}

@media (max-width: 767px) {
    .footer__wrapp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer__wrapp p {
        order: 3;
        text-align: center;
    }

    .footer__soc {
        order: 3;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 540px) {
    .footer__bot {
        flex-direction: column;
    }
}

.breadcrumbs {
    padding-top: 170px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumbs ul {
    color: #979797;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
}

.breadcrumbs ul a {
    color: #979797;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
}

.breadcrumbs ul a:hover {
    color: #E07203;
}

@media (max-width: 767px) {
    .breadcrumbs {
        padding-top: 115px;
    }
}

.services__img {
    position: relative;
    padding: 10%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 50px;
}

.services__wrapper h1 {
    margin-bottom: 30px;
    margin-top: 40px;
}

.services__wrapper p,
.services__wrapper ol {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 143.75% */
}

.services__wrapper ol li {
    list-style-type: decimal;
    margin-left: 20px;
}

.feedback {
    position: relative;
}

.feedback__wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15% 20px;
}

.feedback__left {
    width: 100%;
    max-width: 450px;
}

.feedback__left h2 {
    color: #E07203;
}

.feedback__left p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    margin-top: 30px;
}

.feedback__right {
    width: 100%;
    max-width: 320px;
}

.feedback__right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.feedback__right form input {
    border: 1px solid rgba(17, 17, 17, 0.1019607843);
    padding: 12px 20px;
    border-radius: 26.5px;
}

@media (max-width: 767px) {
    .feedback__wrapper {
        flex-direction: column;
    }

    .feedback__left {
        max-width: 100%;
    }

    .feedback__right {
        max-width: 100%;
    }
}

.production__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.production__img {
    position: relative;
    padding-top: 35%;
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.production__card {
    display: flex;
    gap: 30px;
}

.production__wrapp {
    width: 50%;
}

.production__wrapp h2 {
    color: #004B87;
    font-size: 25px;
    margin-bottom: 20px;
}

.production__wrapp p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

@media (max-width: 992px) {
    .production__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .production__card {
        flex-direction: column;
    }

    .production__img {
        width: 100%;
        padding-top: 50%;
    }

    .production__wrapp {
        width: 100%;
    }
}

.contacts__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contacts__card {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(35, 107, 255, 0.23);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.contacts__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__group ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contacts__card span {
    color: #cbcbcb;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
}

.contacts__card a,
.contacts__card p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
}

.contacts__card a:hover {
    color: #0066b9;
}

.contacts__card:hover {
    border-color: #0066b9;
}

@media (max-width: 992px) {
    .contacts__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .contacts__wrapper {
        grid-template-columns: 1fr;
    }
}

.contacts-map {
    border-radius: 30px;
    overflow: hidden;
    margin-top: 50px;
}

.contacts-map iframe {
    width: 100%;
    min-height: 400px;
    border-radius: 30px;
}

.error {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

.error img {
    width: 100%;
    max-width: 370px;
    height: 100%;
    max-height: 500px;
}

@media (max-width: 767px) {
    .error {
        margin-top: 100px;
    }
}




/* Фон модального окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Затемненный фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    /* Скрываем элемент, когда он невиден */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Переход для плавного исчезновения */
}

/* Показ модального окна */
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    /* Показываем элемент */
}

/* Контейнер модального окна */
.custom-modal {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 350px;
    max-width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    /* Переход для плавного увеличения */
}

/* Анимация для показа модального окна */
.modal-overlay.show .custom-modal {
    transform: scale(1);
}

.modal-header {
    background-color: #4CAF50;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-content {
    padding: 20px;
    font-size: 16px;
    color: #333;
}

.close-btn {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.close-btn:hover {
    color: #ffdddd;
}


.logo-foot {
    width: 100%;
    max-width: 140px;
}
