body.show-menu{
    overflow: hidden;
}
header {
    padding: 17px 0;
    position: fixed;
    z-index: 650;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: var(--base-transition);
}
header .header-logo{
    height: 30px;
    width: 65px;
    margin-right: auto;
}
header .btn-phone{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--color-white);
}
header .btn-phone i:before{
    font-size: 14px;
}
header .menu-toggle i:before{
    font-size: 16px;
    color: var(--color-white);
}
.header-menu-wrapper {
    position: fixed;
    top: 0;
    left: -125vw;
    transition: var(--base-transition);
    width: 100%;
    height: 100%;
    z-index: 1010;
    background: var(--color-black);
    padding: 17px 12px;
}
body.show-menu .header-menu-wrapper {
    left: 0;
}
header .header-menu-wrapper .mobile-menu-top{
    padding: 0 12px 17px 12px;
}
header .header-menu-wrapper .mobile-menu-top img{
    height: 30px;
    width: auto;
}
header .header-menu-wrapper .menu-close{
    color: var(--color-white);
}
header .header-menu-wrapper .mobile-menu-top .languages-wrapper > span{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-grey-2);
}
body.sticky-header header{
    background: var(--color-black);
}
.language-switcher{
    margin: 0;
    list-style: none;
    padding: 4px;
    border-radius: 50px;
    background: #18181B80;
    border: var(--border-style-1);
}
.language-switcher li{
    line-height: 0;
}
.language-switcher li a,
.language-switcher li span{
    padding: 2px 8px;
    border-radius: 50px;
    overflow: hidden;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    transition: var(--base-transition);
    color: var(--color-grey-3);
    display: block;
}
.language-switcher li span,
.language-switcher li a:hover{
    cursor: pointer;
    background: var(--color-grey-6);
    color: var(--color-white);
}
.mobile-menu-inner{
    overflow-y: auto;
    height: calc(100% - 47px);
    padding-top: 12px;
}
header .mobile-menu-inner .bottom:before{
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 1px;
    background: var(--color-grey-2);
    display: block;
}
header .mobile-menu-inner .bottom{
    margin-top: 32px;
    padding: 20px 12px 0 12px;
    position: relative;
}
header .mobile-menu-inner .bottom .working-time,
header .mobile-menu-inner .bottom .address{
    color: var(--color-grey-2);
}
header .mobile-menu-inner .bottom .phones i:before,
header .mobile-menu-inner .bottom .working-time i:before,
header .mobile-menu-inner .bottom .address i:before{
    font-size: 24px;
    color: var(--color-grey-2);
}
header .mobile-menu-inner .bottom .address{
    margin-bottom: 16px;
}
header .mobile-menu-inner .bottom .working-time{
    margin-bottom: 20px;
}
header .mobile-menu-inner .bottom .phones a{
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.45px;
    vertical-align: middle;
    color: var(--color-white);
}
.mobile-menu-wrapper{
    padding: 0 12px;
}
.header-menu,
.header-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.header-menu{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.header-menu a{
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-grey-4);
}
.header-menu li.parent{
    flex-wrap: wrap;
}
.header-menu li.parent > ul{
    display: none;
    flex-direction: column;
    row-gap: 12px;
    width: 100%;
}
.header-menu li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    position: relative;
}
.header-menu li.active > a{
    color: var(--color-purple);
    position: relative;
    z-index: 5;
}
.header-menu li.active:before{
    width: calc(100% + 24px);
    left: -12px;
    height: calc(100% + 20px);
    top: -10px;
    border: var(--border-style-2);
    background: var(--color-grey-5);
    z-index: 1;
    content: "";
    border-radius: 12px;
    position: absolute;
    display: block;
    overflow: hidden;
}
.header-menu .toggle{
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.header-menu .toggle i:before{
    transition: var(--base-transition);
    transform: rotate(-90deg);
    color: var(--color-grey-4);
    font-size: 18px;
}
.header-menu li.parent.show-sub-menu > ul{
    display: flex;
    margin-top: 12px;
}

.header-menu li.parent > ul a{
    display: flex;
    column-gap: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    align-items: center;
    text-transform: none;
    color: #E5E5E5;

}
.header-menu li.parent > ul a .image{
    width: 28px;
    height: 28px;
    background: #26262680;
    border: var(--border-style-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.header-menu li.parent > ul a .image svg{
    width: 16px;
    height: 16px;
}
.header-menu li.show-sub-menu > .toggle i:before{
    transform: rotate(0);
}
.header-menu li.show-sub-menu li.active:before{
    display: none;
}
.header-menu li.show-sub-menu li.active > a{
    color: var(--color-purple);
}
.header-menu li.show-sub-menu li.active > a .image svg path{
    stroke: var(--color-purple);
}
.socials{
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 15px;
}
.socials a{
    text-decoration: none;
}
.socials a i:before{
    color: var(--color-white);
    font-size: 18px;
}

footer .footer-logo{
    margin-bottom: 12px;
}
footer .footer-text{
    font-weight: 400;
    font-size: 14px;
    line-height: 19.5px;
    vertical-align: middle;
    color: var(--color-grey-3);
    margin-bottom: 24px;
}
footer .socials {
    margin-bottom: 32px;
}
.footer-header {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--color-white);
    margin-bottom: 16px;
}
.footer-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    row-gap: 12px;
    margin-bottom: 12px;
}
.footer-menu a{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    color: var(--color-grey-3);
}
footer .row:nth-of-type(2) > .col-12:nth-of-type(2) .footer-menu,
footer .row:nth-of-type(2) > .col-12:nth-of-type(5) .footer-menu{
    margin-bottom: 50px;
}
.footer-contacts .inner > div span,
.footer-contacts .inner > div a{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    color: var(--color-grey-3);
}
.footer-contacts .inner > div i:before{
    color: var(--color-grey-3);
}
footer .footer-bottom{
    row-gap: 12px;
    padding: 16px 0;
    margin: 0;
    list-style: none;
    margin-top: 34px;
    border-top: var(--border-style-1)
}
footer .footer-bottom li a,
footer .footer-bottom li{
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
    vertical-align: middle;
    color: #616169;
}
footer .footer-bottom li.dev{
    column-gap: 2px;
}
footer .footer-bottom li.dev img{
    height: 10px;
}
.custom-modal .modal-content{
    padding: 32px;
    background: var(--color-grey-9);
    border: var(--border-style-1);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(40px)
}
.custom-modal .header .text{
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--color-grey);
}
.custom-modal .modal-content .modal-body{
    padding: 0;
    border: none;
    position: unset;
}
.custom-modal .close{
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin: 0;
}
.custom-modal .close i:before{
    color: var(--color-white);
    font-size: 14px;
}

.form-styles .form-control{
    width: 100%;
    margin: 0;
    padding: 16px 16px 16px 40px;
    background: #05050580;
    border: var(--border-style-1);
    border-radius: 12px;
    color: var(--color-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
}
.form-styles .form-control::placeholder{
    color: var(--color-grey-3);
}
.form-styles .help-block{
    position: absolute;
    font-size: 12px;
    color: #d32f2f;
    line-height: 14px;
}
.form-styles .field-icon i{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.form-styles .field-icon.field-icon-top i{
    top: 13px;
    transform: unset;
}
.form-styles .field-icon i:before{
    color: var(--color-grey-3);
    font-size: 18px;
}
.form-message-modal.custom-modal .modal-content{
    background: var(--color-black);
}
.form-privacy-text{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #52525B;
}
blockquote{
    padding-left: 20px;
    position: relative;
    font-weight: 600;
    font-style: Italic;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-white);
    margin-top: 24px;
}
blockquote:before{
    height: calc(100% - 12px);
    width: 6px;
    border-radius:50px;
    content: '';
    display: block;
    background: var(--color-purple);
    flex-shrink: 0;
    position: absolute;
    top: 6px;
    left: 0;
}
.section-breadcrumbs-block{
    padding-top: 64px;
}
.breadcrumbs-block ul{
    display: inline-flex;
    margin: 0;
    list-style: none;
    column-gap: 8px;
    align-items: center;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
}
.breadcrumbs-block ul::-webkit-scrollbar {
    display: none;
}
.breadcrumbs-block ul li{
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.breadcrumbs-block ul li a span,
.breadcrumbs-block ul li > span{
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
    color: var(--color-grey-3);
    display: block;
}
.breadcrumbs-block ul li span{
    color: var(--color-grey-10);
}

.breadcrumbs-block ul li.divider svg{
    height: 14px;
    width: 14px;
}
.section-breadcrumbs-block .breadcrumbs-text{
    color: var(--color-white);
}
.seo-sitemap .text-content-wrapper ul{
    list-style: none;
}
.seo-sitemap .text-content-wrapper > ul{
    padding: 0;
    margin: 0;
}
.seo-sitemap .text-content-wrapper > ul ul{
    padding-left: 20px;
    margin: 20px 0;
}
.seo-sitemap .text-content-wrapper ul a{
    color: var(--color-white);
}
.section-map-block .map .inner{
    line-height: 0;
    border-radius: 12px;
    height: 400px;
    overflow: hidden;
    filter: invert(92%) hue-rotate(180deg) brightness(90%) contrast(110%);
    -webkit-filter: invert(92%) hue-rotate(180deg) brightness(90%) contrast(110%);
    border: var(--border-style-1)
}
.pagination{
    margin-top: 20px;
}
.pagination ul{
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    display: flex;
}
.pagination ul li a,
.pagination ul li span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #18181B80;
    border: var(--border-style-1);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: var(--color-grey);
    transition: var(--base-transition);
}
.pagination ul li a:hover,
.pagination ul li.active span,
.pagination ul li.active a{
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
}
