:root{
    --greenCol: #99AA16
}
*{
    font-family: "Roboto-Bold", Helvetica;
}
a{
    text-decoration: none;
}
.whatsapp-button {
    display: block;
    position: fixed;
    right: 0;
    bottom: -12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: #29b53f;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    animation: HeaderWhatsApp 0.2s;
}
@keyframes HeaderWhatsApp {
    from {
        transform: translate(200%,-50%)
    }

    to {
        transform: translate(-50%,-50%)
    }
}

.whatsapp-button:before,.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0
}

.whatsapp-button:after {
    animation-delay: .5s
}

@keyframes border-animate {
    0% {
        transform: scale(0.5);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.2);
        opacity: 0
    }
}
header > .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
header .logo img{
    max-width: 200px;
}
header .mobile{
    display: none;
}
header .number a{
    color: var(--greenCol);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
}
header nav{
    display: flex;
    gap: 1rem;
}
header nav a,.btt-ab{
    padding: 12px 24px;
    color: black;
    font-weight: 550;
    transition: all .2s;
    border-radius: 8px;
}
.btt-ab{
    border: solid 1px black;
}
.btt-ab:hover{
    border: solid 1px rgba(65, 35, 35, 0);
}
header nav a:hover,.btt-ab:hover{
    background: var(--greenCol);
    color: white;
}
header nav a.active{
    background: var(--greenCol);
    color: white;
}
.main-section h1{
    font-weight: 700;
    padding-top: 50px;
    padding-bottom: 50px;
}

.view-14{
    display: flex;
    padding: 50px 0;
    justify-content: center;
    flex-wrap: wrap-reverse;
}
.view-55 {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.text-wrapper-10 {
    font-weight: 700;
    color: black;
    font-size: 30px;
}
.img-2 {
    width: 50%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}
.line{
    background: var(--greenCol);
    opacity: .5;
    width: 100%;
    height: 2px;
}
.text-wrapper-11{
    max-width: 380px;
    font-weight: 550;
    padding-top: 2rem;
}


.main{
    min-height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.main h1{
    font-weight: 900;
}
.main .text-wrapper-11{
    max-width: 500px;
}
.main svg{
    position: absolute;
}
.main:before{
    position: absolute;
    content: '';
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    backdrop-filter: blur(5px) opacity(1);
}
.main .container{
    position: relative;
    z-index: 5;
    padding-top: 200px;
}
.contact-send{
    background: rgb(186, 218, 85);
    padding: 50px 0;
}
.contact-send .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-send h1{
    font-weight: 550;
    font-size: 30px;
}
.contact-send a,.box-i a{
    background: #333333;
    color: white;
    padding: 10px 24px;
    border-radius: 15px;
}
footer{
    background: var(--greenCol);
    padding-top: 50px;
    padding-bottom: 50px;
}
footer .container{
    display: flex;
    justify-content: space-between;
}
footer a,footer h1,footer h2,footer p{
    color: white;
}
footer h1{
    font-weight: 700;
    font-size: 30px;
}
footer h2{
    font-weight: 550;
    font-size: 24px;
}
footer p,footer a{
    font-weight: 550;
}
.footer-info{
    display: grid;
    gap: 10px;
}
.box-content li p{
    margin: 4px;
}
.box-content{
    padding: 50px 0;
}
.nav-uslugi{
    padding: 30px 0;
    background-image: url("../../img/uslugi-back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.nav-uslugi:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(14 14 14 / 73%);
    z-index: 1;
}
.nav-uslugi .container{
    position: relative;
    z-index: 4;
}
.nav-uslugi h1{
    font-weight: 550;
    font-size: 30px;
    text-align: center;
    color: white;
}
.box-s{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.box-s a{
    text-align: center;
}
.box-i{
    max-width: 33%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: solid 1px var(--greenCol);
    padding: 30px 14px;
    border-radius: 1.5rem;
}
.box-i h2{
    font-size: 24px;
    font-weight: 550;
}
.box-content .container{
    gap: 10px;
    display: grid;
}
.contact-box .c-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    background: rgb(186, 218, 85);
    padding: 20px;
    height: 130px;
}
.contact-box > .sect-group {
    display: flex;
    gap: 8px;
}
.contact-box {
    width: 50%;
    display: grid;
    gap: 8px;
}
.maps-content {
    display: flex;
    gap: 10px;
}
.maps {
    border-radius: 8px;
    background: #f1f3f5;
    width: 50%;
}
.contact {
    padding: 50px 0 150px 0;
}
.contact h1{
    font-weight: 550;
    font-size: 30px;
}
.contact .line{
    margin-bottom: 30px;
    margin-top: 30px;
}
.c-box > a, .c-box > p {
    color: #000;
    font-feature-settings: 'case' on;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.hea-model-hide{
    display: none;
}
@media (max-width: 1199px) {
    header nav{
        display: none;
    }
    .box-s{
        flex-direction: column;
    }
    .box-i{
        max-width: 100%;
        gap: 10px;
    }
    .box-s a{
        width: min-content;
    }
    .box-i h2{
        padding-bottom: 10px;
    }
    header .mobile{
        display: block;
        z-index: 999999;
    }
    .number{
        display: flex;
        gap: 30px;
        align-items: center;
    }
    #burgerBtn {
        border-top: 2px solid var(--greenCol);
        height: 25px;
        width: 30px;
        box-sizing: border-box;
        position: relative;
        z-index: 30;
        right: 0;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        display: block !important;
    }
    #burgerBtn:before {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        left: 0;
        background: var(--greenCol);
        top: 10px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }
    #burgerBtn:after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        left: 0;
        background: var(--greenCol);
        bottom: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }
    #hea-model.hea-model-hide {
        opacity: 0;
        padding: 0;
        transform: translateX(-100%);
    }
    #hea-model {
        display: block;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: var(--neutral-50, #F8FAFC);
        transition: opacity 0.2s ease, transform 0.3s ease;
        transform: translateX(-100%);
        opacity: 0;
        overflow: overlay;
    }
    #hea-model.hea-model-show {
        opacity: 1;
        padding: 80px 0;
        transform: translateX(0);
    }
    #nav li, #nav h1 {
        margin: 15px 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -khtml-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        transform: translateX(-150%);
        font-weight: 500;
        font-size: 30px;
        transition: 1s;
    }
    #nav a li {
        list-style: none;
        background: var(--greenCol);
        padding: 10px 20px;
        border-radius: 30px;
        color: white;
    }
    #hea-model.hea-model-show #nav li, #nav h1 {
        transform: translateX(0);
    }
    #nav h1 {
        padding-top: 24px;
        color: var(--greenCol);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }
    .hea-glob .main-info a {
        font-weight: 550;
        color: black;
        font-size: 24px;
    }
    .hea-glob .main-info p {
        font-size: 12px;
    }
    #nav .what-button a {
        background: linear-gradient(44deg, #20B038 -41.59%, #60D66A 75.44%);
        display: flex;
        width: 100%;
        border-radius: 10px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        color: #FFF;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .navigation .mobile #burgerBtn{
        position: fixed;
        right: 20px;
    }
}
@media (max-width: 991px) {
    .view-14{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .view-55,.img-2,.contact-box,.maps{
        width: 100%;
    }
    .maps{
        height: 500px;
    }
    .contact-send br{
        display: none;
    }
    .text-wrapper-11{
        max-width: 450px;
    }
    .maps-content{
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .contact-send .container{
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }
    footer .container{
        flex-direction: column;
        gap: 20px;
    }
    header .number a{
        display: none;
    }
}
