@import url(./services.css);

.contentForm {
    position: fixed;
    z-index: 1000;
    top: 100px;
    right: 100px;
    width: 400px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.contentForm.sticky {
    position: absolute;
    right: 100px;
    transform: none;
}

.containerSection1 {
    position: relative;

    background: 100% 100% / 60% 100% no-repeat url(../images/services/militaryService.png),
    linear-gradient(to right, #16283B, #213A55);

    color: white;

    padding: 100px 0px;
}

.blockHeaderSection1 {
    border-left: 1.5px solid #EFC079;
    padding-left: 20px;

    font-size: 56px;
    font-weight: 600;
    color: white;
}

.blockHeaderSection1 h2 {
    font-size: 40px;
    font-family: 'Gilroy';
    font-weight: 700;
    line-height: 44px;
    color: #FFFFFF;
}

.contentSection1 p {
    font-size: 20px;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.805);
}

.contentSection1 p span {
    font-size: 20px;
    font-weight: 700;

    color: white;
}

.imgProctorService {
    bottom: 0px;
    position: absolute;
}

/* ===========================================section2================================================= */

.containerSection2 {
    position: relative;
    padding: 100px 0px;

    background: #F4F4EF;
}

.contentSection2 h1 {
    font-size: 40px;
    font-weight: 700;

    color: #222B3E;
}

.contentSection2 ol li {
    font-size: 20px;
    font-weight: 700;
    color: #222B3E;
}

.contentSection2 ul li {
    font-size: 17px;
    font-weight: 500;
    color: #5B667A;
}

.imgTorService {
    bottom: 0px;
    position: absolute;
}

/* =====================================================section3========================================== */

.containerSeciton3 {
    padding: 100px 0px;

    background: linear-gradient(to right, rgba(28, 49, 72, 0.896) 20%, rgba(28, 49, 72, 0) 20%, rgba(28, 49, 72, 0.913) 10%), 0% 100% / 50% 100% no-repeat url(../images/services/ukrainian-soldier-standing-front-ukrainian-flag-military-patriotism\ 1.png),
    #1C3148;
}

.containerSeciton3 h3 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    font-family: 'Gilroy';
    line-height: 44px;
}
 
.blockTextSection3 {
    border-left: 1.5px solid rgba(239, 192, 121, 1);
    padding-left: 10px;
}

.blockTextSection3 p:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    color: rgba(239, 192, 121, 1);
    line-height: 24px;
    font-family: 'Gilroy';
}

.blockTextSection3 p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
    font-family: 'Gilroy';
}

/* ====================================================container_form========================== */

.container_form {
    padding: 150px 0px;
    
    background: url(../images/background/5U0A1202\ \(1\)\ 1.png) no-repeat;
    background-size: cover;
}

.contentFormMobail {
    display: none;
}

.contentFormDesktop h1 {
    color: #222B3E;
    font-size: 32px;
    font-weight: 600;
}

.contentFormDesktop form {
    display: flex;
    flex-direction: column;
    color: #222B3E;
    font-size: 14px;
    font-weight: 500;
}

.contentFormDesktop form input {
    padding: 8px 16px;
    border: 0px;
    border-radius: 5px;
    background: white;
    color: #AEADBA;
    font-size: 14px;
    font-weight: 500;
}

.contentFormDesktop form textarea {
    padding: 8px 16px;
    border: 0px;
    border-radius: 5px;
    background: white;
    color: #AEADBA;
    font-size: 14px;
    font-weight: 500;
}

.btnForm {
        background-color: #28a745;
    color: #fff;
    padding: 10px 0px;

    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    .btnForm:hover {
        background-color: #218838;
    }

/* =================================================================loader============================= */

.blockLoadingSendForm {
    padding: 100px 0px;
    display: none;
}

.blockLoadingSendForm.visible {
    display: block;
}

.blockLoadingSendForm h3{
    font-size: 20px;
}

.form-loader {
    display: block; /* Лоадер скрыт по умолчанию */
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff; /* Цвет вращающейся части */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}