@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


/*About style*/
.section{
    padding: 100px 0;
}

.about{
    background: #01031d;
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    height: 100%;
    min-height: 500px;
    color: #fff;
    padding-bottom: 130px;
}

.about .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.about .title::before{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 185px;
    height: 3px;
    background: crimson;
    transform: translateX(-50%);
}

.about .about-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .about-content .left{
    width: 55%;
}

.about .about-content .left .text-1{
    font-size: 30px;
    font-weight: 600;
}

.about .about-content .left .text-1 span{
    color: crimson;
}

.about .about-content .left .text-2{
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}

.about .about-content .left p{
    text-align: justify;
}

.about .about-content .left a{
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}

.about .about-content .left a:hover{
    color: crimson;
    background: none;
}

.about .about-content .right{
    width: 45%;
}

.about .about-content .right{
    text-align: right;
}

.about .about-content .right img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}


/*Responsive media*/
@media (max-width: 1104px){
    .about .about-content .right img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 947px){
    .about .about-content .column{
        width: 100%;
    }

    .about .about-content .left{
        flex: 100%;
        padding-bottom: 45px;
    }

    .about .about-content .right{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
}