.about{
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: #fff;
}

.bg-logo{
    position: absolute;
    width: 650px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .08;
    filter: blur(0px);
    pointer-events: none;
}

.about-wrapper{
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 70px;
}

.about-left{
     position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    flex:1;
    min-height:550px;
    overflow: hidden;
}

.flag-bg{
    position:absolute;
    width:700px;
    height: 600px;
    z-index:1;
    opacity: .7;

    transform-origin:left center;

animation:
        flagWave 8s ease-in-out infinite,
        floatFlag 6s ease-in-out infinite;
    }

@keyframes floatFlag{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

.about-person{
    position: relative;
    width: 450px;
    z-index: 2;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.25));
}

.about-right{
    flex: 1.1;
}

.section-subtitle{
    color: #0093DA;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-right h2{
    margin-top: 18px;
    font-size: 45px;
    line-height:1.2;
    color: #006FA3;
    font-weight: 800;
}

.about-right p{
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 400;
    color: #444;
}

.about-btn{
    display: inline-block;
    margin-top: 40px;
    padding: 15px 42px;
    background: #006FA3;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
}

.about-btn:hover{
    background: #0093DA;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,147,230,.35);
}

@media (max-width:480px){

    .about{
        padding:0px 0;
    }

    .bg-logo{
        display:none;
    }

    .about-wrapper{
        display:flex;
        flex-direction:column-reverse;
        gap:40px;
        align-items:center;
    }

    .about-right{
        width:97%;
        text-align:center;
        order:1;
        margin-left: 20px !important;
    }

    .about-left{
        width:100%;
        order:2;
        display:flex;
        justify-content:center;
        align-items:center;
    }


    .about-person{
        width:300px;
        top: -60px;
    }

    .section-subtitle{
        font-size:14px;
        letter-spacing:1px;
        margin-top: -100px !important;
    }

    .about-right h2{
        font-size:30px;
        line-height:1.3;
        margin-top:10px;
        margin-right: 10px;
    }

    .about-right p{
        width:100%;
        font-size:15px;
        line-height:1.8;
        margin-top:18px;
        margin-right: 10px;
    }

    .about-btn{
        width:100%;
        text-align:center;
        padding:14px 20px;
        font-size:15px;
        margin-top:25px;
    }
    .flag-bg{
        width: 320px;         
        max-width: 100%;
        height: 320px;
        opacity: 0.7;
        top: 40%;
        transform: translateY(-50%);

        animation:
            flagWaveMobile 5s ease-in-out infinite,
            floatFlagMobile 6s ease-in-out infinite;
    }

    @keyframes floatFlagMobile{
        0%,100%{
            transform: translateY(-50%);
        }

        50%{
            transform: translateY(calc(-50% - 6px));
        }
    }

    @keyframes flagWaveMobile{
        0%,100%{
            filter: drop-shadow(0 5px 12px rgba(0,0,0,.08));
        }

        50%{
            filter: drop-shadow(0 8px 18px rgba(0,0,0,.12));
        }
    }

}



