:root{
    --main-cl: #ECC161;
    --sub-cl-1: #A13D3B;
    --sub-cl-2: #364A85;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: #cedbff;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--main-cl);
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450 !important;
    border-color: #46b450 !important;
    color: #FFF !important;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output{
    background: red !important;
    border-color: red !important;
    color: #FFF !important;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output{
    margin-top: 19px !important;
    text-align: center !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 16px;
}
.form .form-group .wpcf7-not-valid-tip{
    font-size: 15px;
    margin-top: 0;
}
.wpcf7-list-item.first{
    margin-left: 0;
}
.wpcf7-radio .wpcf7-list-item label span.wpcf7-list-item-label{
    font-size: 1.6rem;
    margin-right: 1.5rem;
    margin-left: .5rem;
}
.submit-container{
    position: relative;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.submit-container .wpcf7-spinner{
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
#secondary .widget img{
    width: 100%;
    height: auto;
}
.category.archive .feed__post .feed__item{
    background:#eeeeee
}
.category.archive .feed__post .feed__item .feed__post--content p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.page-template-news .wrapper .feed__post--thumb img {
    transition: all .4s linear;
    height: 190px;
    width: 100%;
    object-fit: cover;
}
.page-template-news .feed__post--info .statistic:nth-child(2){
    display:none !important;
}
body.page-template-utilities .slider__gallery--nav .nav-image{
    border: 2px solid transparent;
}
body.page-template-utilities .slider__gallery--nav .nav-image.slick-active{
    background-color: var(--main-cl);
}
header.header .header__logo,
header.header .header__logo > a{
    height: 8rem;
    margin: 0;
}
header.header .header__logo a > img{
    height: 100%;
    width: auto;
}
html body .block-loading img{
    width: 360px;
    height: 360px;
    left: calc(50% - 200px);
    transform: translateY(-50%);
}
.maps-structure svg{
    max-width: 100%;
    width: 100%;
    height: 62rem;
}
.maps-structure .cls-1 {
    fill: #b0d074;
}

.maps-structure .cls-2 {
    fill: #fff1d0;
}

.maps-structure .cls-3 {
    fill: #bc3433;
}

.maps-structure .cls-10,
.maps-structure .cls-11,
.maps-structure .cls-12,
.maps-structure .cls-13,
.maps-structure .cls-14,
.maps-structure .cls-4,
.maps-structure .cls-5,
.maps-structure .cls-8,
.maps-structure .cls-9 {
    isolation: isolate;
}

.maps-structure .cls-4,
.maps-structure .cls-5 {
    font-size: 34.94px;
}

.maps-structure .cls-10,
.maps-structure .cls-11,
.maps-structure .cls-12,
.maps-structure .cls-4,
.maps-structure .cls-5,
.maps-structure .cls-8 {
    fill: #fff;
}

.maps-structure .cls-10,
.maps-structure .cls-11,
.maps-structure .cls-12,
.maps-structure .cls-13,
.maps-structure .cls-14,
.maps-structure .cls-4,
.maps-structure .cls-5,
.maps-structure .cls-8 {
    font-family: ArialMT, Arial;
}

.maps-structure .cls-4 {
    letter-spacing: -0.06em;
}

.maps-structure .cls-6 {
    fill: none;
    stroke: #231f20;
    stroke-miterlimit: 10;
    stroke-width: 5px;
    stroke-dasharray: 20 30;
}

.maps-structure .cls-7 {
    fill: #59cbf5;
}

.maps-structure .cls-8 {
    font-size: 26.37px;
}

.maps-structure .cls-10,
.maps-structure .cls-11,
.maps-structure .cls-12,
.maps-structure .cls-13,
.maps-structure .cls-14 {
    font-size: 23.34px;
}

.maps-structure .cls-10 {
    letter-spacing: 0.01em;
}

.maps-structure .cls-12 {
    letter-spacing: 0.02em;
}

.maps-structure .cls-13,
.maps-structure .cls-14 {
    fill: #231f20;
}

.maps-structure .cls-13 {
    letter-spacing: -0.01em;
}
.area-link{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #FFF !important;
    background-color: #bc3433;
    font-size: 18px;
    line-height: 36px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    transform: translate(-50%,-50%);
    pointer-events: none;
    transition: all 0.3s;
}
@keyframes scaleBorder {
    0%{
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100%{
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}
.area-link:before{
    width: 45px;
    height: 45px;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(188, 52, 51, 0.7);
    z-index: -1;
    border-radius: 50%;
    animation: scaleBorder 1s infinite;
    transition: all 0.2s;
}
.maps-structure svg .area-path{
    cursor: pointer;
}
.maps-structure svg *{
    transition: all 0.3s;
}
.maps-structure .blur{
    opacity: 0.3;
}
.maps-structure .active{
    opacity: 1 !important;
}
.lineAni{
    animation: mapLines 2s infinite linear;
    stroke-width: 2px;
    stroke-dasharray: 8;
    fill: transparent;
}
.footer__logo a img{
    width: 100%;
    height: auto;
}
.footer__logo a{
    display: flex;
}
.footer__copyright .text > *:last-child{
    margin-bottom: 0 !important;
}
.footer__social--icon a,
.footer__social--icon a > span,
.footer__social--icon a img{
    width: 100%;
    aspect-ratio: 1;
    display: block;
    height: auto;
}
.form-group .wpcf7-radio{
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem
}
.form-group .wpcf7-radio > .wpcf7-list-item{
    margin: 0 !important;
}
#register-popup .wpcf7-spinner{
    position: absolute;
}
#register-popup .wpcf7-radio .wpcf7-list-item{
    display: block;
    margin: 0;
}
@keyframes mapLines {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 100;
    }
}
.nk-map{
    position: relative;
}
.nk-map >img{
    width: 100%;
    height: auto;
}
.nk-map .dot{
    position: absolute;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 10px;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #FFF;
    transition: all 0.4s;
    cursor: pointer;
}
.nk-map .dot:hover,
.nk-map .dot.active{
    background-color: var(--main-cl);
    color: #FFF;
}
.nk-map .dot:before{
    width: 30px;
    height: 30px;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
    border-radius: 50%;
    animation: scaleBorder 1s infinite;
    transition: all 0.2s;
}
.section .slide__products img{
    object-fit: cover;
}
.article .register-form .btn__primary{
    background-color: #A13D3B;
}
body.page-template-about .block__item{
    height: calc(100% - 6rem);
}
.tabs__bar--item.active,
.section .slide__service .slick-dots li.slick-active a{
    background-color: #A13D3B;
}
.section__contact .row a:hover{
    color: #A13D3B;
}
.wrapper .feed__post--title{
    height: auto;
}
.default-page{
    padding-top: 40px;
}
.grid-container{
    width: 1230px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;

}
@media only screen and (max-width: 1199px) {
    .maps-structure svg {
        height: auto;
        aspect-ratio: 994/540
    }
    html body .block-loading img{
        width: 300px;
        height: 300px;
        left: calc(50% - 150px);
    }
    .header .main-menu ul li>a > svg polygon{
        fill: #FFF
    }
    .header .main-menu ul li>a{
        color: #FFF;
    }
    header.header .header__logo{
        text-align: left;
    }
    .header .menu-mobile{
        top: 50%;
        transform: translateY(-50%);
    }
    header.header .header__wrap{
        position: relative;
    }
    .section__locations .slider__place .slick-dots{
        bottom: unset;
        top: 56%;
    }
}
@media only screen and (max-width: 991px) {
    .area-link{
        width: 26px;
        height: 26px;
        font-size: 14px;
        line-height: 26px;
    }
    .area-link:before{
        width: 32px;
        height: 32px;
    }
    .video-background{
        height: 50rem;
    }
    .section__locations .slider__place .slick-dots{
        bottom: unset;
        top: 49%;
    }
}
@media only screen and (max-width: 767px) {
    .maps-structure{
        transform: scale(1.4) translateX(4%);
        margin: 8rem 0;
    }
    .area-link{
        width: 16px;
        height: 16px;
        font-size: 8px;
        line-height: 16px;
    }
    .area-link:before{
        width: 24px;
        height: 24px;
    }
    html body .block-loading img{
        width: 200px;
        height: 200px;
        left: calc(50% - 100px);
    }
    .video-background{
        height: 30rem;
    }
    .newspaper-item.slick-slide img{
        margin: auto;
    }
    .newspaper-item.slick-slide{
        text-align: center
    }
    .section .slide__products img{
        height: 30rem;
    }
    .section__p6 {
        max-width: 100vw;
        overflow: hidden;
    }
    .nk-map .dot{
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 8px;
    }
    .block__info .items .item a{
        font-size: 1.4rem;
        margin: 0;
    }
    .block__info .items .item{
        margin: 0;
        width: 100%;
    }
    .block__info .items{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem
    }
}
