:root {
    --bs-body-font-size: 15px;
}
.form-control{
    font-size: 14px;
}
body {
    font-family: "PT Sans", sans-serif;
    font-size: var(--bs-body-font-size);
}
table{ font-size: var(--bs-body-font-size); }
.max-width-screen {
    max-width: 1920px;
    margin: 0 auto;
}

.max-width-sm {
    max-width: 360px;
}

.bg-blue {
    background: rgba(232, 239, 242, 1);
}

.bg-blue__light {
    background: rgba(226, 241, 248, 1);
}

.bg-gray {
    background-color: rgba(32, 34, 34, 1);
}

.bg-gray__dark {
    background-color: rgba(21, 21, 21, 1);
}

.bg-gray__light {
    background: rgba(242, 242, 242, 1);
}

.bg-gray__middle {
    background: rgba(238, 238, 238, 1);
}

.mt-142 {
    margin-top: 142px;
}

.grid-xxs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 8px;
}

.grid-xs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 8px;
}

.grid-sm-max {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 8px;
}

.grid-md {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
}

.grid-lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}

@media (max-width: 1199.98px) {
    .grid-xxs {
        grid-template-columns: repeat(5, 1fr);
    }

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

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

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

    .grid-sm-max {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767.98px) {
    .grid-xxs {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-xs {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 575.98px) {
    .grid-xxs {
        grid-template-columns: repeat(3, 1fr);
    }

    .mt-142 {
        margin-top: 100px;
    }
}

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

    .mt-142 {
        margin-top: 70px;
    }

    .grid-sm-max {
        grid-template-columns: repeat(1, 1fr);
    }
}

h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 16px;
}

.text-xs {
    font-size: 13px;
    line-height: normal;
}

.text-sm {
    font-size: 15px;
    line-height: normal;
}

.text-md {
    font-size: 18px;
    line-height: normal;
}

.text-md-max {
    font-size: 20px;
    line-height: normal;
}

.text-lg {
    font-size: 25px;
    line-height: normal;
}

.text-xl {
    font-size: 30px;
    line-height: normal;
}

.text-xl__large {
    font-size: 50px;
    line-height: normal;
}

.crop-text-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow: hidden;
}

.crop-text-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .text-md-max {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {

    h1,
    .text-xl__large {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .text-lg {
        font-size: 20px;
    }

    .text-xl {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .text-xl__large {
        font-size: 30px;
    }
}

.border-radius-xs {
    border-radius: 5px;
    overflow: hidden;
}

.border-radius-sm {
    border-radius: 15px;
    overflow: hidden;
}

.text-blue {
    color: rgba(0, 160, 227, 1);
}

.text-gray {
    color: rgba(70, 70, 70, 1);
}

.text-gray__light {
    color: rgba(185, 185, 185, 1);
}

.text-darkgray {
    color: rgba(23, 23, 23, 1);
}

.text-gray__dark {
    color: rgba(23, 23, 23, 1);
}

a {
    color: rgba(0, 160, 227, 1);
}

.btn {
    height: 52px;
    font-weight: 700;
    font-size: 15px;
    line-height: normal;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    cursor: pointer;
    padding-left: 24px;
    padding-right: 24px;
}

.btn-blue {
    color: #ffffff;
    background-color: rgba(0, 160, 227, 1);
    border: 1px solid rgba(0, 160, 227, 1);
}

.btn-blue:hover {
    color: rgb(0 160 227);
    background-color: rgb(255 255 255);
    border: 1px solid rgba(0, 160, 227, 1);
}

.btn-blue:hover svg rect {
    fill: rgb(0 160 227);
}

.btn-white {
    background: #FFFFFF;
    color: rgba(32, 34, 34, 1);
}

.btn-white:hover {
    color: #ffffff;
    background-color: rgba(0, 160, 227, 1);
}

.btn-disabled {
    background: rgba(219, 219, 219, 1);
    color: rgba(127, 127, 127, 1);
}

.btn-disabled:hover {
    background: rgba(219, 219, 219, 1);
    color: rgba(127, 127, 127, 1);
    cursor: auto;
}

.btn-gray__light {
    background: rgba(231, 231, 231, 1);
    color: rgba(70, 70, 70, 1);
}

.btn-gray__light.active {
    background: rgba(0, 160, 227, 1);
    color: #ffffff;
}

.btn-gray__dark {
    background: rgba(23, 23, 23, 1);
    color: #ffffff;
    border: 1px solid rgba(23, 23, 23, 1);
}

.btn-gray__dark:hover {
    color: rgba(23, 23, 23, 1);
    border: 1px solid rgba(23, 23, 23, 1);
}

.button-w-auto {
    width: auto;
}

@media (max-width: 1399.98px) {
    .btn {
        height: 46px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767.98px) {
    .button-w-auto {
        width: 100%;
    }
}

@media (max-width: 576.98px) {}

.label-green {
    color: rgba(14, 214, 57, 1);
}

.label-green::before {
    content: '•';
    color: rgba(14, 214, 57, 1);
    padding-right: 4px;
}

.label-red {
    color: rgba(245, 11, 11, 1);
}

.label-red::before {
    content: '•';
    color: rgba(245, 11, 11, 1);
    padding-right: 4px;
}

.label-quantity {
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 8px;
    color: #ffffff;
    background-color: rgba(32, 34, 34, 1);
}

.form-control__sm {
    width: 164px;
}

.form-control__xl {
    width: 588px;
}

.form-control__light {
    background-color: rgba(75, 74, 78, 1);
    color: rgba(114, 113, 117, 1);
    border: 1px solid rgba(75, 74, 78, 1);
}

.form-control__light:focus {
    color: rgba(114, 113, 117, 1);
    background-color: rgba(75, 74, 78, 1);
    border-color: rgba(75, 74, 78, 1);
    outline: 0;
    box-shadow: none;
}

.form-control__light::placeholder {
    color: rgba(114, 113, 117, 1);
}

.form-control__dark {
    background-color: rgba(30, 30, 30, 1);
    color: rgba(136, 136, 136, 1);
    border: 1px solid rgba(30, 30, 30, 1);
}

input.form-control__dark::placeholder {
    color: rgba(136, 136, 136, 1);
}

.form-control:focus {
    box-shadow: none;
    border-color: #00a0e3;
}

@media (max-width: 1399.98px) {
    .form-control__xl {
        max-width: 450px;
    }
}

@media (max-width: 1199.98px) {
    .form-control__xl {
        max-width: 350px;
    }
}

@media (max-width: 575.98px) {
    form {
        width: 100%;
    }

    .form-control__xl {
        width: 100%;
        max-width: 100%;
    }
}

.page-link {
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    border-radius: 3px;
    margin: 0 5px;
    font-size: 20px;
    color: rgba(163, 163, 163, 1);
    background-color: rgba(238, 238, 238, 1);
    border: 1px solid rgba(238, 238, 238, 1);
}

.active>.page-link,
.page-link.active {
    background-color: rgba(0, 160, 227, 1);
    border: 1px solid rgba(0, 160, 227, 1);
    font-weight: 700;
}

.page-item.disabled {
    display: none;
}

.page-link:hover {
    color: rgba(163, 163, 163, 1);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .page-link {
        font-size: 14px;
        min-width: 30px;
        min-height: 30px;
    }
}

@media (max-width: 480px) {
    .page-link {
        font-size: 12px;
        min-width: 20px;
        min-height: 20px;
    }
}

ul.arrow {
    list-style-image: url("../images/ico/arrow-list.svg");
    padding-left: 20px;
}

.multi-column-2 {
    column-count: 2;
}

.nav-link {
    font-size: 13px;
    line-height: 100%;
}

.nav-link__bottom {
    margin-right: 30px;
}

.nav-link__bottom:last-child {
    margin-right: 0;
}

.nav-link__bottom::before {
    content: '+';
}

.nav-contacts {
    display: flex;
}

.navbar-menu {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .nav-contacts .nom-1 {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-toggler-icon {
        background-image: url('../images/ico/menu.svg');
    }

    .js-navbar-collapse {
        position: absolute;
        width: 100%;
        height: max-content;
        top: 28px;
        left: 0;
        padding: 0 16px 16px 16px;
        border-radius: 0 0 14px 14px;
        border-top: 1px solid rgba(204, 204, 204, 1);
        margin-top: 10px;
        background: #ffffff;
        z-index: 6;
    }

    .js-navbar-collapse .text-white {
        color: #000000 !important;
    }

    .multi-column-2__md {
        column-count: 2;
    }

    .nav-link__bottom::before {
        display: none;
    }

    .navbar-toggler~div .btn-link {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .navbar-menu .btn {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .navbar-menu .btn {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .multi-column-2 {
        column-count: 1;
    }

    .multi-column-2__md {
        column-count: 1;
    }

}

.bg-header {
    width: 100%;
    height: 760px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible !important;
}

.bg-header__overlay {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px)
}

.bg-header__light-gray {
    background-color: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px)
}

.bg-header__title {
    max-width: 480px;
    font-size: 60px;
    line-height: 57px;
}

.navbar-brand {
    width: 204px;
}


.bg-header__light-gray a svg g,
.bg-header__light-gray a svg g path {
    fill: rgba(23, 23, 23, 1);
}

@media (max-width: 1399.98px) {
    .navbar-brand {
        max-width: 140px;
    }
}

@media (max-width: 991.98px) {}

@media (max-width: 575.98px) {
    .bg-header {
        height: 640px;
    }
}

@media (max-width: 480px) {
    .bg-header__title {
        font-size: 50px;
        line-height: 54px;
    }
}

@media (max-width: 420px) {
    .bg-header {
        height: 520px;
    }

    .bg-header__overlay .btn {
        height: 36px;
        font-size: 12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .bg-header__title {
        font-size: 42px;
        line-height: 44px;
    }
}

/**select2 **/
.select2-container {
    min-width: 135px;
    font-size: 15px;
    line-height: normal;
}

.select2-search--dropdown {
    display: none;
}

.select2-container .select2-selection--single {
    height: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    color: rgba(70, 70, 70, 1);
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url('../images/ico/up.svg');
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(230, 230, 230, 1);
    color: rgba(70, 70, 70, 1);
    font-weight: bold;
}

.select2-results__option {
    padding: 9px 6px;
}

.select2-container--default .select2-selection--single {
    background-color: rgba(230, 230, 230, 1);
    color: rgba(70, 70, 70, 1);
    border: 1px solid rgba(230, 230, 230, 1)
}

.select2-dropdown {
    background-color: rgba(230, 230, 230, 1);
    border: 1px solid rgba(230, 230, 230, 1)
}


.table>:not(caption)>*>* {
    color: rgba(70, 70, 70, 1);
}

/**  **/

section {
    margin: 50px 0;
}

.section-item {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 767.98px) {
    .section-item {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (max-width: 575.98px) {
    .section-item {
        font-size: 32px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    .section-item {
        font-size: 30px;
        line-height: 34px;
    }
}

.category-item {
    height: 427px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

figure.category-item__hover {
    background: rgba(0, 0, 0, 1);
}

figure.category-item__hover figcaption>div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 40%;
}

figure.category-item__hover:hover figcaption>div {
    height: 50%;
}

figure.category-item__hover .category-item__title,
figure.category-item__hover .hidden-text {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

figure.category-item__hover .category-item__title {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.category-item__hover .hidden-text {
    color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

figure.category-item__hover:hover .category-item {
    opacity: 0.6;
}

figure.category-item__hover:hover .hidden-text {
    opacity: 1;
}

figure.category-item__hover:hover .category-item__title,
figure.category-item__hover:hover .hidden-text {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.category-item__hover:hover .hidden-text {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

@media (max-width: 1199.98px) {
    .category-item {
        height: 380px;
    }

    figure.category-item__hover:hover figcaption>div {
        height: 60%;
    }
}

@media (max-width: 767.98px) {
    .category-item {
        height: 350px;
    }

    figure.category-item__hover .category-item {
        opacity: 0.6;
    }

    figure.category-item__hover figcaption>div {
        height: 65%;
        padding: 1em 2em;
    }

    figure.category-item__hover .hidden-text {
        opacity: 1;
    }
}

@media (max-width: 479.98px) {
    .category-item {
        height: 300px;
    }

    figure.category-item__hover figcaption>div {
        height: 76%;
    }
}

@media (max-width: 360px) {
    figure.category-item__hover figcaption>div {
        height: 100%;
    }
}

.catalog-list__item {
    height: 500px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


@media (max-width: 1199.98px) {
    .catalog-list__item {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .catalog-list__item {
        height: 300px;
    }
}

@media (max-width: 420px) {
    .catalog-list__item {
        height: 240px;
    }
}

@media (max-width: 360px) {
    .catalog-list__item {
        height: 200px;
    }
}

.services-item {
    width: 33%;
    background-color: rgba(237, 237, 237, 1);
    margin-bottom: 10px;
}

.product-item:hover .highlighted-size {
    width: 49%;
}

.services-item__img {
    width: 100%;
    height: 392px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {
    .services-item {
        width: 49.5%;
    }
}

@media (max-width: 767.98px) {
    .services-item__img {
        height: 235px;
    }
}

@media (max-width: 480px) {
    .services-item {
        width: 100%;
    }
}

.option-img {
    height: 298px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.adva-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
    padding-top: 100px;
}

@media (max-width: 991.98px) {
    .adva-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
        padding-top: 50px;
        margin-bottom: 32px;
    }
}

@media (max-width: 767.98px) {
    .adva-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 35px;
    }
}

@media (max-width: 575.98px) {
    .adva-grid {
        padding-top: 24px;
    }
}

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

.footer {
    padding-top: 60px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    max-width: 135px;
}

.modal-title {
    font-size: 30px;
    line-height: normal;
}

.form-check__radial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    padding: 7px 12px !important;
}

.form-check__radial label {
    margin-right: 24px;
}

.panel-acc__item {
    color: rgba(125, 121, 121, 1);
    border: 1px solid rgba(237, 236, 236, 1);
}

.panel-acc .form-check__radial {
    justify-content: flex-start;
}

.panel-acc__item.active {
    color: rgba(0, 160, 227, 1);
    border-color: rgba(0, 160, 227, 1);
}

.form-check__radial .form-check-input {
    float: right;
    width: 14px;
    height: 14px;
    margin-top: 6px;
    border: 1px solid rgba(237, 236, 236, 1);
}

.form-check__radial .form-check-input:checked {
    background-color: rgba(0, 160, 227, 1);
    border-color: rgba(0, 160, 227, 1);
    box-shadow: none;
}

.panel-acc .form-check__radial .form-check-input {
    float: right;
}

.panel-acc .form-check-input:checked[type=radio] {
    background-image: none;
}

.form-check__radial .form-check-input:checked {
    background-color: rgba(0, 160, 227, 1);
    border-color: rgba(0, 160, 227, 1);
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 160, 227, 1);
    outline: none;
}

@media (max-width: 575.98px) {
    .modal-title {
        font-size: 20px;
    }

    .panel-acc {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .panel-acc__item {
        margin-right: 0 !important;
        margin-bottom: 16px;
    }
}

.play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(54px)
}

@media (max-width: 575.98px) {
    .play-btn {
        width: 100px;
        height: 100px;
    }
}


@media (max-width: 480px) {
    .play-btn {
        width: 80px;
        height: 80px;
    }
}

.search-btn {
    display: flex;
    align-items: center;
    height: 25px;
    cursor: pointer;
}

.search-form input {
    height: 25px;
}

.search-form__ico {
    top: 50%;
    right: 7px;
    transform: translate(-50%, -50%);
}

.search-form input:focus~.search-form__ico,
.search-form input:hover~.search-form__ico {
    display: none;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    max-width: 50%;
}

.popup-box img {
    border-radius: 20px;
}

.close-popup {
    position: absolute;
    right: 12px;
    top: 12px;

}

@media (max-width: 1200px) {
    .popup-box {
        max-width: 80%;
    }
}

@media (max-width: 991.98px) {
    .popup-box {
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .popup-box {
        max-width: 96%;
    }
}

@media (max-width: 480px) {
    .popup-box {
        padding: 16px;
        border-radius: 12px;
    }

    .popup-box img {
        border-radius: 12px;
    }
}

.product-item {
    position: relative;
    float: left !important;
    overflow: visible !important;
    min-height: 375px;
}

@media (min-width: 450px) {
    .product-item:hover .product-item-wrap {
        background: rgba(242, 242, 242, 1);
        -webkit-border-radius: 5px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 5px;
        -moz-background-clip: padding;
        border-radius: 5px;
        background-clip: padding-box;
        -webkit-box-shadow: 2px 1px 30px rgba(0, 0, 0, .3);
        -moz-box-shadow: 2px 1px 30px rgba(0, 0, 0, .3);
        box-shadow: 2px 1px 30px rgba(0, 0, 0, .3);
        z-index: 10;
    }

    .product-item:hover .product-item-wrap {
        position: absolute !important;
        top: 0;
    }

    .product-item-wrap>div .product-item_hidden {
        display: none !important;
    }

    .product-item:hover .product-item-wrap>div .product-item_hidden {
        display: block !important;
    }

}

.product-item:after,
.product-item:before {
    content: " ";
    display: table
}

.product-wrap:after {
    clear: both
}

@media (max-width: 991.98px) {
    .product-item-wrap>div .product-item_hidden {
        display: block !important;
    }
}

.accordion-button {
    position: relative;
}

.accordion-body {
    color: rgba(23, 23, 23, 1);
    background-color: rgba(238, 238, 238, 1);
    box-shadow: none;
    padding-left: 24px;
    padding-right: 24px;
}

.accordion-button {
    position: absolute;
    right: 24px;
    top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: rgba(23, 23, 23, 1);
    width: 179px;
    height: 52px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    background-image: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    background-color: rgba(238, 238, 238, 1);
    border: none;
}

.accordion-button.collapsed::before {
    content: "Смотреть подробнее";
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: rgba(23, 23, 23, 1);
}

.accordion-button:not(.collapsed)::before {
    content: "Свернуть";
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    display: none !important;
}

@media (max-width: 991.98px) {
    .max-map {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .social-grid~div .max-width-sm {
        max-width: 100%;
    }
}


@media (max-width: 575.98px) {
    .accordion-button {
        position: relative;
        right: 0;
        top: 0;
    }

    .accordion-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .max-map {
        height: 300px;
    }
}


.office-items .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.office-items .owl-nav button span {
    background: #ffffff;
    width: 34px;
    height: 34px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: -2px 5px 10px 0px rgb(0 0 0 / 32%);
}

.office-items .owl-prev {
    margin-right: 6px;
}

@media (max-width: 767.98px) {
    .office-items .owl-nav {
        position: relative;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        margin-top: 24px;
    }

    .office-items .owl-prev {
        margin-right: 0;
        margin-left: 10%;
    }

    .office-items .owl-next {
        margin-right: 10%;
    }
}

.video_contact {
    height: 600px;
}

@media (max-width: 767.98px) {
    .video_contact {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .video_contact {
        height: 300px;
    }
}


.footer-logo__max {
    max-width: 204px;
    height: auto;
}