.drones_wrapper {}

.drones_banner {
    width: 100%;
    height: 373px;
}

.drones_alert_wrapper {
    padding: 20px 40px;
    background: var(--main_color);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    /* identical to box height, or 125% */
    color: #ffffff;
    margin-top: 40px;
}

.drones_alert_text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 25px;
}

.drones_alert_text a {
    color: var(--main_color);
}

.drones_contacts_table_wrapper {
    margin-top: 25px;
}

.drones_instruction_images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 40px;
}

.drones_instruction_image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.drones_instruction_images img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.drones_instruction_image:hover::before {
    content: url("/img/maximize.png");
    background: rgba(0, 139, 239, 0.5) !important;
    padding: 100%;
    color: red;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 222;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    /* height: 80vh; */
    max-width: 92vw;
    /* max-height: 92vh; */
    height: auto;
}

.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

#close {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999999999;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@keyframes zoom {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* drones_regisration */

.drones_regisration_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.drones_regisration_algoritm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.drones_regisration_algoritm_number {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main_color);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.drones_regisration_algoritm a {
    color: var(--main_color);
}

.drones_regisration_algoritm_text h3 {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
}

.drones_regisration_algoritm_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
}

.drones_regisration_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.drone_rules_algoritm_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: -15px;
}

@media screen and (max-width: 768px) {
    .drones_instruction_images {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}