body {
    overflow: initial;
}
.content {
    margin-top: 0px;
    overflow-x: hidden;
}
.header {
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 0 20px #0003;
}
.header__top {
    background: #f5f5f5;
    padding-top: 15px;
    padding-bottom: 11px;
    font-size: 10px;
    font-weight: 300;
}

.header__top--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__top--part {
    display: flex;
    align-items: center;
}
.header__top--part .header__icons{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
}

.header__top--part .header__icons .header__icon{
    width: 25px;
    height: 25px;
}

.header__top--part .header__icons .header__icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__top a {
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

.header__email {
    display: flex;
    align-items: center;
    margin-right: 35px;
}

.header__email:before {
    content: '';
    width: 14px;
    height: 14px;
    margin-right: 5px;
    display: block;
    background-image: url(../images/envelope.png);
    background-size: cover;
    background-position: center;
}

.header__phones {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
}

.header__phones i {
    display: none;
}

.header__phones li + li {
    margin-left: 16px;
}

.header__phones:before {
    content: '';
    width: 14px;
    height: 14px;
    margin-right: 5px;
    display: block;
    background-image: url(../images/phone.png);
    background-size: cover;
    background-position: center;
}

.languages__widget {
    font-size: 12px;
    margin-left: 24px;
    position: relative;
}

.languages__widget .dropdown-lang {
    display: none;
}

.languages__widget input {
    display: none;
}

.languages__widget label {
    font-size: 12px;
    color: #D94350;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.languages__widget label:after {
    content: '';
    width: 9px;
    height: 9px;
    background-image: url(../images/chevron.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}


.header__bottom {
    background: #fff;
    padding-top: 14px;
    padding-bottom: 19px;
}

.header__bottom--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header__bottom--right,
.header__bottom--left {
    display: flex;
    align-items: center;
}

.header__bottom--right {
    justify-content: space-between;
}

.logo img {
    width: 117px;
    height: auto;
}

.slogan {
    font-size: 10px;
    font-weight: 300;
    max-width: 135px;
    margin-left: 11px;
}

.header__bottom .btn-consultation {
    background: #d94350;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    text-align: center;
}

@media (max-width: 991px) {
    .header {
        top: -44px;
    }
    .desktop-only {
        display: none;
    }

    .header__top {
        background: #fff;
    }

    .header__bottom {
        background: #f5f5f5;
        padding-top: 8px;
        padding-bottom: 21px;
    }

    .header__bottom--left,
    .header__bottom--right {
        width: 100%;
    }

    .header__bottom--left {
        justify-content: space-between;
    }

    .header__bottom--right {
        margin-top: 14px;
    }

    .header__bottom--center {
        display: none;
    }

    .show-menu .header__bottom--center {
        display: flex;
        flex-direction: column;
        position: absolute;
        width: 100%;
        background: #f5f5f5;
        padding: 15px;
        left: 0px;
        z-index: 20;
        top: 110px;
        max-height: calc(100vh - 170px);
        overflow-y: auto;
    }

    .show-menu .header__bottom--center ul#nav {
        margin: 0px;
    }
    .show-menu #nav li:hover > ul {
        display: none;
    }

    .logo img {
        width: 154px;
    }

    .header__bottom .header__phones {
        display: grid;
        grid-template-columns: 30px 1fr;
        grid-template-rows: auto auto;
    }

    .header__bottom .header__phones li {
        margin: 0;
        font-size: 12px;
        line-height: 1.2;
    }

    .header__bottom .header__phones li.header__icon {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .header__bottom .header__phones .header__icon--telegram {
        width: 20px;
        height: 20px;
    }
    .header__bottom .header__phones .header__icon--telegram img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header__bottom .header__phones a {
        color: #000;
    }

    .header__bottom .header__phones:before {
        /*grid-column: 1 / 2;*/
        /*grid-row: 1 / 3;*/
        /*background-image: url(/storage/icons/telegram.png);*/
        display: none;
    }

    .mobile-toggle {
        background: #fff;
        width: 50px;
        height: 47px;
        background-image: url(../images/bar.png);
        background-position: center;
        background-repeat: no-repeat;
    }

    .languages__widget .dropdown-lang a {
        color: #000;
    }

    .header__bottom .btn-consultation {
        width: 100%;
        max-width: 300px;
    }

    #nav li ul li {
        border: none;
    }

    .languages__widget input:checked + .dropdown-lang {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 1000;
        background: #f5f5f5;
        padding: 15px;
        left: -10px;
        gap: 15px;
    }

}

@media (min-width: 991px) {
    .mobile-only {
        display: none;
    }

    .header__bottom--center .navbar-nav i {
        display: none;
    }
    .header__bottom--center #nav li {
        border: none;
    }
    .header__bottom--center #nav li li:hover > ul.sub-menuu li {
        background: #f5f5f5;
    }

    .header__bottom--center #nav li:hover a {
        background: transparent;
    }

    .header__bottom--center #nav > li > a {
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .header__bottom--center #nav li a {
        font-size: 14px;
    }
    .header__bottom--center #nav li:hover > a {
        text-decoration: underline;
        color: #000;
    }
    .header__bottom--center #nav li:has(.sub-menuu) a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .header__bottom--center #nav li:has(.sub-menuu) > a:after {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        background-image: url(../images/chevron.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .header__bottom--center #nav li:hover > ul.sub-menuu {
        display: flex;
        flex-direction: column;
        top: calc(100% - 4px);
        background: #f5f5f5;
        left: 0px;
        border: none;
    }

    .header__bottom--center #nav li:hover > ul.sub-menuu a {
        color: #000;
        opacity: .5;
    }

    .header__bottom--center #nav li:hover > ul.sub-menuu li:hover > a {
        opacity: 1;
    }

    .header__bottom--center #nav li li:hover > ul.sub-menuu {
        top: 0px;
        left: 100%;
    }

    .languages__widget .dropdown-lang:hover,
    .languages__widget label:hover ~ .dropdown-lang,
    .languages__widget input:checked + .dropdown-lang {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 1000;
        background: #f5f5f5;
        padding: 15px;
        left: -10px;
        gap: 15px;
    }
}


.img-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 20px;
}
.img-tiles > div {
    padding-right: 10px;
    padding-left: 10px;
}
.img-tiles > div > div {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 20px;
    overflow: hidden;
}
.img-tiles > div > div > img {
    object-fit: contain;
    width: 100%;
}
@media (min-width: 768px) {
    .img-tiles > div {
        width: 33.33333%;
    }
}
@media (min-width: 992px) {
    .img-tiles > div {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .img-tiles > div {
        width: 20%;
    }
}
@media (max-width: 767px) {
    .img-tiles > div {
        width: 50%;
    }
}
@media (max-width: 575px) {
    .img-tiles > div {
        width: 100%;
    }
}


.color-222 > a {
    color: #222;
}
.mt-30 {
    margin-top: 30px;
}

