.elementor-858 .elementor-element.elementor-element-c09036d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:40px;--padding-right:40px;}.elementor-858 .elementor-element.elementor-element-c09036d:not(.elementor-motion-effects-element-type-background), .elementor-858 .elementor-element.elementor-element-c09036d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://dronynatsii.space/wp-content/uploads/2026/05/ChatGPT-Image-19-трав.-2026-р.-09_03_44-1.png");background-size:contain;}@media(max-width:767px){.elementor-858 .elementor-element.elementor-element-c09036d{--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}}/* Start custom CSS for html, class: .elementor-element-3fd962a *//* SMOOTH SCROLL */

html{
    scroll-behavior:smooth;
}

/* FADE ANIMATION */

@keyframes fadeUp{

    0%{
        opacity:0;
        transform:translateY(60px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

/* FLOAT */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* GLOW */

@keyframes glowPulse{

    0%{
        box-shadow:
        0 0 20px rgba(255,196,0,0.18);
    }

    50%{
        box-shadow:
        0 0 45px rgba(255,196,0,0.4);
    }

    100%{
        box-shadow:
        0 0 20px rgba(255,196,0,0.18);
    }

}

/* BACKGROUND MOVE */

@keyframes bgMove{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-20px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* HERO */

.about-hero{
    position:relative;

    width:100%;

    min-height:92vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* BG EFFECT */

.about-hero::before{
    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(63,140,255,0.16),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,196,0,0.12),
    transparent 25%);

    animation:bgMove 10s ease-in-out infinite;
}

/* CONTAINER */

.about-hero-container{
    position:relative;

    z-index:2;

    text-align:center;

    padding:0 25px;

    animation:fadeUp 1.2s ease;
}

/* MINI */

.about-mini{
    color:#3f8cff;

    font-size:18px;
    font-weight:600;

    letter-spacing:4px;

    margin-bottom:28px;

    text-transform:uppercase;

    animation:fadeUp 1s ease;
}

/* TITLE */

.about-main-title{
    color:#fff;

    font-size:80px;

    line-height:0.95;

    text-transform:uppercase;

    margin-bottom:24px;

    animation:fadeUp 1.2s ease;
}

/* DIVIDER */

.about-divider{
    width:160px;
    height:4px;

    margin:auto;

    background:#ffc400;

    border-radius:30px;

    margin-bottom:38px;

    animation:glowPulse 3s ease-in-out infinite;
}

/* TEXT */

.about-main-text{
    max-width:900px;

    margin:auto;

    color:#d2d8e4;

    font-size:21px;

    line-height:1.7;

    animation:fadeUp 1.5s ease;
}

/* CONTENT */

.about-content{
    padding:40px 0;

    background:#050913;
}

.about-content-container{
    margin:auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;
}

/* LABEL */

.about-label{
    display:inline-block;

    padding:12px 22px;

    border-radius:12px;

    background:
    rgba(50,90,180,0.14);

    border:1px solid rgba(60,110,255,0.22);

    color:#5f9dff;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:30px;

    animation:fadeUp 1s ease;
}

/* TITLE */

.about-info h2{
    color:#fff;

    font-size:32px;

    line-height:1.1;

    margin-bottom:40px;

    text-transform:uppercase;

    animation:fadeUp 1.1s ease;
}

/* TEXT */

.about-info p{
    color:#c2cad8;

    font-size:18px;

    line-height:1.9;

    margin-bottom:30px;

    animation:fadeUp 1.2s ease;
}

/* BOXES */

.about-boxes{
    display:flex;

    flex-direction:column;

    gap:28px;
}

.about-box{
    padding:38px;

    border-radius:26px;

    background:
    linear-gradient(
    to bottom,
    rgba(10,16,30,0.95),
    rgba(6,12,24,0.95));

    border:1px solid rgba(255,255,255,0.05);

    transition:.4s ease;

    animation:fadeUp 1.2s ease;
}

/* HOVER */

.about-box:hover{
    transform:
    translateY(-8px)
    scale(1.02);

    border-color:
    rgba(63,140,255,0.28);

    box-shadow:
    0 0 45px rgba(20,40,90,0.4);

    background:
    linear-gradient(
    to bottom,
    rgba(14,22,42,1),
    rgba(8,14,28,1));
}

/* FLOAT */

.about-box:nth-child(2){
    animation:
    fadeUp 1.2s ease,
    floatCard 5s ease-in-out infinite;
}

.about-box:nth-child(3){
    animation:
    fadeUp 1.2s ease,
    floatCard 6s ease-in-out infinite;
}

/* BOX TITLE */

.about-box span{
    display:block;

    color:#ffc400;

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    transition:.3s;
}

.about-box:hover span{
    text-shadow:
    0 0 12px rgba(255,196,0,0.5);
}

/* BOX TEXT */

.about-box p{
    color:#bcc5d4;

    font-size:16px;

    line-height:1.7;
}

/* STATS */

.about-stats-section{
    padding:20px 0;

    background:#02050b;
}

.stats-container{
    margin:auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.stat-card{
    padding:55px 30px;

    border-radius:30px;

    text-align:center;

    background:
    linear-gradient(
    to bottom,
    rgba(10,18,35,0.95),
    rgba(5,10,20,0.95));

    border:1px solid rgba(255,255,255,0.05);

    transition:.4s ease;

    animation:fadeUp 1.2s ease;
}

/* HOVER */

.stat-card:hover{
    transform:
    translateY(-10px);

    border-color:
    rgba(255,196,0,0.22);

    box-shadow:
    0 0 40px rgba(255,196,0,0.14);
}

/* NUMBER */

.stat-card h3{
    color:#fff;

    font-size:42px;

    margin-bottom:18px;

    transition:.3s;
}

.stat-card:hover h3{
    color:#ffc400;

    transform:scale(1.05);
}

/* TEXT */

.stat-card span{
    color:#7d91ae;

    font-size:16px;

    text-transform:uppercase;

    letter-spacing:2px;
}

/* FINAL */

.about-final{
    padding:50px 0;

    background:
    linear-gradient(
    to bottom,
    #050913,
    #02050b);
}

.about-final-container{
    margin:auto;

    padding:0 25px;

    text-align:center;
}

/* TITLE */

.about-final h2{
    color:#fff;

    font-size:38px;

    line-height:1.15;

    margin-bottom:34px;

    text-transform:uppercase;

    animation:fadeUp 1.2s ease;
}

/* TEXT */

.about-final p{
    color:#c2cad8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:50px;

    animation:fadeUp 1.3s ease;
}

/* BUTTON */

.about-support-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:50px;

    padding:0 42px;

    border-radius:18px;

    background:#ffc400;

    color:#111;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    letter-spacing:2px;

    transition:.35s ease;

    animation:
    glowPulse 3s ease-in-out infinite,
    fadeUp 1.4s ease;

    box-shadow:
    0 0 30px rgba(255,196,0,0.28);
}

.about-support-btn:hover{
    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 0 55px rgba(255,196,0,0.45);
}



/* ========================= */
/* 4K */
/* ========================= */

@media (min-width:1800px){

    .about-main-title{
        font-size:110px;
    }

    .about-main-text{
        max-width:1100px;
        font-size:24px;
    }

    .about-content-container{
        max-width:1800px;
        margin:auto;
    }

    .about-info h2{
        font-size:42px;
    }

    .about-box{
        padding:50px;
    }

    .stat-card h3{
        font-size:56px;
    }

}

/* ========================= */
/* 1440px */
/* ========================= */

@media (max-width:1440px){

    .about-main-title{
        font-size:72px;
    }

    .about-content-container{
        gap:60px;
    }

}

/* ========================= */
/* 1200px */
/* ========================= */

@media (max-width:1200px){

    .about-content-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-boxes{
        max-width:900px;
        margin:auto;
        width:100%;
    }

}

/* ========================= */
/* Планшети */
/* ========================= */

@media (max-width:992px){

    .about-main-title{
        font-size:58px;
    }

    .about-main-text{
        font-size:18px;
    }

    .about-info h2{
        font-size:28px;
    }

    .stats-container{
        grid-template-columns:1fr;
    }

}

/* ========================= */
/* Телефони */
/* ========================= */

@media (max-width:768px){

    .about-hero{
        min-height:auto;
        padding:120px 0 80px;
    }

    .about-main-title{
        font-size:42px;
        line-height:1;
    }

    .about-mini{
        font-size:14px;
        letter-spacing:2px;
    }

    .about-main-text{
        font-size:16px;
        line-height:1.8;
    }

    .about-content-container{
        padding:0 20px;
    }

    .about-label{
        font-size:12px;
        padding:10px 18px;
    }

    .about-info h2{
        font-size:24px;
    }

    .about-info p{
        font-size:16px;
        line-height:1.8;
    }

    .about-box{
        padding:28px;
        border-radius:20px;
    }

    .about-box span{
        font-size:22px;
    }

    .about-box p{
        font-size:15px;
    }

    .stat-card{
        padding:40px 25px;
    }

    .stat-card h3{
        font-size:34px;
    }

    .stat-card span{
        font-size:13px;
    }

    .about-final h2{
        font-size:30px;
    }

    .about-final p{
        font-size:16px;
    }

}

/* ========================= */
/* iPhone */
/* ========================= */

@media (max-width:480px){

    .about-main-title{
        font-size:34px;
    }

    .about-main-text{
        font-size:15px;
    }

    .about-content{
        padding:20px 0;
    }

    .about-content-container{
        padding:0 14px;
    }

    .about-info h2{
        font-size:20px;
    }

    .about-info p{
        font-size:15px;
    }

    .about-box{
        padding:22px;
    }

    .about-box span{
        font-size:20px;
    }

    .stat-card{
        padding:30px 18px;
        border-radius:20px;
    }

    .stat-card h3{
        font-size:28px;
    }

    .about-final h2{
        font-size:24px;
    }

    .about-final p{
        font-size:15px;
    }

    .about-support-btn{
        width:100%;
        max-width:320px;
        padding:0 20px;
    }

}

/* ========================= */
/* Дуже маленькі телефони */
/* ========================= */

@media (max-width:360px){

    .about-main-title{
        font-size:28px;
    }

    .about-main-text{
        font-size:14px;
    }

    .about-info h2{
        font-size:18px;
    }

    .about-box span{
        font-size:18px;
    }

    .stat-card h3{
        font-size:24px;
    }

    .about-final h2{
        font-size:20px;
    }

}/* End custom CSS */