




.bixol-breadcrumb {
    position: relative;
    width: 100%;
    height: 500px; /* ставь нужную высоту! */
    overflow: hidden;
}

.bixol-breadcrumb picture,
.bixol-breadcrumb img.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

.bixol-breadcrumb .container,
.bixol-breadcrumb .breadcrumb-content {
    position: relative;
    z-index: 2;
    /* можно добавить отступы по макету */
}

/*.bixol-breadcrumb {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.bixol-breadcrumb .breadcrumb-bg {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*    z-index: -1;*/
/*    pointer-events: none;*/
/*}*/



.footer-title {
    color: #FFF;
    margin-bottom: 20px;
}


.spinner {
    border: 4px solid transparent;
    border-top: 4px solid #0431b8;
    border-right: 4px solid #0431b8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(82, 80, 80, 0.5);
    z-index: 9999;
}

.contact-v2 .contact-v2-right form input, .contact-v2 .contact-v2-right form select, .contact-v2 .contact-v2-right form textarea {
    margin-bottom: 0
}

.title-main {
    font-size: 70px;
    margin-bottom: 30px;
    color: #FFFFFF;
    margin-left: 30px;

}

.title-h2 {
    font-size: 42px;
}

.desc-main {
    margin-top: 20px;
    margin-left: 30px;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    color: #FFFFFF

}

.hero-section picture,
.hero-section .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .hero-img {
    object-fit: cover;
    object-position: center;
}

.hero-section {
    position: relative;
    text-align: left;
    overflow: hidden;
    height: 600px;
    padding-top: 160px;
}

.hero-text {
    position: relative;
    max-width: 800px;
    z-index: 100;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.title-service {
    font-size: 50px;
    margin-bottom: 30px
}

.btn-fixed-call {
    overflow: hidden;
    opacity: 0;
}


@media (max-width: 767px) {
    .hero-section {
        padding-top: 80px;
        height: 400px;
    }

    .hero-text .title-main {
        font-size: 42px;
    }

    .hero-text .desc-main {
        font-size: 14px;
    }

    .title-h2 {
        font-size: 36px;
    }
    
      .title-service {
        font-size: 36px;

    }

    .btn-fixed-call {
        overflow: visible;
        opacity: 1;
        position: fixed;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, #0431b8, #005fff);
        color: #fff;
        width: max-content;
        padding: 14px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 9999;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: slide-up 0.6s ease-out forwards;
        animation-delay: 0.5s;
    }

    @keyframes slide-up {
        to {
            bottom: 20px;
            opacity: 1;
        }
    }

    .btn-fixed-call:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
        color: #a5c7ff;
    }
}

@media (max-width: 420px) {
    .hero-section {
        padding-top: 80px;
        height: 400px;
    }

    .hero-text .title-main {
        font-size: 36px;
        margin-left: 0;
    }

    .hero-text .desc-main {
        margin-left: 0;
    }

    .title-h2 {
        font-size: 30px;
    }

  



}