body {
    font-family: 'Montserrat', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-weight: 400;
}


.breadcrumb a,
a {
    color: #ff8f00;
}

.navbar, footer {
    font-weight: 500;
}


/*

body {
    color: var(--black);
    letter-spacing: .03em;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2
}

*/


/*
.overlay::before {
    animation: grain 8s steps(10) infinite;
    background-image: url(img/noise.png);
    content: '';
    height: 300%;
    left: -50%;
    opacity: 0.6;
    position: fixed;
    top: -100%;
    width: 300%;
}
*/


/* BTN */

.txt-upp {
    text-transform: uppercase;
}

.txt-shdw {
    text-shadow: 0px 2px 4px #0000009e;
}

.btn-gs {

}

.btn-warning {
    --bs-btn-color: #ffffff !important;
    --bs-btn-bg: #ff8f00 !important;
    --bs-btn-border-color: #ff8f00 !important;
    --bs-btn-hover-color: #000 !important;
    --bs-btn-hover-bg: #ff8f00 !important;
    --bs-btn-hover-border-color: #ff8f00 !important;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000 !important;
    --bs-btn-active-bg: #ff8f00 !important;
    --bs-btn-active-border-color: #ff8f00 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000 !important;
    --bs-btn-disabled-bg: #ff8f00 !important;
    --bs-btn-disabled-border-color: #ff8f00 !important;
}






.navbar {
    padding: 1rem;
}
.navbar-brand img {
    max-height: 50px;
}
.head_menu .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}


footer .row {
    --bs-gutter-x: 1.5rem !important;
    --bs-gutter-y: 2rem !important;
}

.footer_logo {
    width: 80%;
}

.footer_menu .navbar-nav .nav-link {
}




@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Чтобы изображение не выходило за границы */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--hero-bg); /* Используем переменную для фона */
    transition: background-image 1s ease-in-out;
    animation: zoomIn 10s infinite alternate ease-in-out;
    z-index: 1; /* Помещаем под текст */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url("img/noise-light.png");
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3; /* Текст остается поверх */
}

/*
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url("https://arc.net/noise-light.png");
    animation: zoomIn 10s infinite alternate ease-in-out;
}

*/

/*background-image: url("https://arc.net/noise-light.png");*/
/*
<div style="background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url(/image.png);background-repeat: no-repeat;  background-position: center;"> </div>
 */

.hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.main_hero {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 0.9em;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: -0.05em;
    text-shadow: 0px 2px 4px #0000009e;
}
.main_hero span {
    color: #fea501;
}


.hero-section {
    background-size: cover !important;
    background-position: center !important;
    padding: 2em 0;
    color: #ffffff;
}






#about {
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9)), url(img/bg_converted.svg);
    background-size: cover;
    background-position: 0;
}

#about .row {
    border-top: 1px solid #fea501;
    border-bottom: 1px solid #fea501;
    padding: 3em 0 !important;
}

.spanned_h3 {
    font-size: 2.5em;
    font-weight: 900;
}
.yellowed {
    color: #ff8f00;
}

.about_p {
    font-size: 1.3em;
}


.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}


/* CONTACTS */

.phone_link {
    font-size: 1.5em !important;
    font-weight: 600 !important;
}



.parallax {
    position: relative;
    /* height: 100vh; */ /* Секцию делаем на весь экран */
    background-size: 100vw auto;
    background-position: center;
    background-attachment: fixed; /* Эффект параллакса */
    background-repeat: no-repeat;
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url('img/paralax_bg_001.png');*/
}



/* MEDIA */

@media (max-width: 768px) {
    .head_menu ul {
        margin: 1em 0;
    }

    .parallax {
        background-size: auto 200vw !important; /* Центрируем изображение */
    }

    .hero {
        height: 80vh;
    }
    .main_hero {
        font-size: 3em;
    }
    .navbar-brand img {
        height: 35px !important;
    }

    .services {

    }
    .services .col-1 {
        width: 16.66666667% !important;
    }
    .services .col-11 {
        width: 83.33333333% !important;
        padding: 0 !important;
    }

}

.parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Затемнение для текста */
    z-index: 2;
}

.parallax .content {
    position: relative;
    z-index: 3; /* Текст остается поверх */
    color: #fff;
    padding: 50px;
    text-align: center;
}


.parralax_content_001 .col {
    text-align: left;
    border: 5px solid #fea501;
    padding-bottom: 1em !important;
}

.p_c_number {
    text-align: left;
    font-size: 4em;
    font-weight: 100;
    opacity: 0.2;
}



.reveal {
    opacity: 0;
    transform: translateY(50px); /* Элемент сдвинут вниз */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}



/* Services */

.services_mini_hero {
    height: 25vh;
    background-size: cover !important;
    background-position: center !important;
}



/* CF 7 */

.wpcf7-email,
.wpcf7-tel,
.wpcf7-text {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.wpcf7-submit {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid #fea501;
    border-radius: var(--bs-btn-border-radius);
    background-color: #fea501;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.wpcf7 form.sent .wpcf7-response-output {
    font-size: 1.2em !important;
    color: #fff !important;
    border-color: #98cb00 !important;
    background-color: #98cb00 !important;
    border-radius: 1em !important;
}





footer {
    background: #222;
    color: #ddd;
}
footer a {
    color: #bbb;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}
footer h5 {
    color: #fff;
}
