/*=========================================
        About Company Section
=========================================*/

.about-company-section{

    padding:100px 0;

    background:#ffffff;

}

/*=========================================
            About Image
=========================================*/

.about-image{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

/*=========================================
        Experience Card
=========================================*/

.experience-card{

    position:absolute;

    left:30px;

    bottom:30px;

    background:#FDB913;

    color:#111111;

    padding:25px 30px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    min-width:180px;

}

.experience-card h3{

    font-size:42px;

    font-weight:700;

    line-height:1;

    margin-bottom:8px;

}

.experience-card p{

    margin:0;

    font-size:16px;

    font-weight:600;

}

/*=========================================
            About Content
=========================================*/

.about-content{

    padding-left:40px;

}

.section-subtitle{

    display:inline-block;

    color:#FDB913;

    font-size:16px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.about-content h2{

    font-size:42px;

    font-weight:700;

    color:#222222;

    line-height:1.3;

    margin-bottom:25px;

}

.about-content p{

    color:#666666;

    font-size:16px;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================
        About Features
=========================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-feature{

    display:flex;

    align-items:center;

    background:#ffffff;

    padding:18px 20px;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.07);

    transition:.35s;

}

.about-feature:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.about-feature i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFF6DD;

    color:#FDB913;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    font-size:18px;

    transition:.35s;

}

.about-feature:hover i{

    background:#FDB913;

    color:#ffffff;

}

.about-feature span{

    font-size:15px;

    font-weight:600;

    color:#333333;

    line-height:1.5;

}

/*=========================================
            Button
=========================================*/

.about-btn{

    display:inline-block;

    padding:15px 38px;

    background:#FDB913;

    color:#111111;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

}

.about-btn:hover{

    background:#111111;

    color:#ffffff;

    text-decoration:none;

}



/*=========================================
            Laptop
=========================================*/

@media (max-width:1199px){

    .about-content{

        padding-left:20px;

    }

    .about-content h2{

        font-size:36px;

    }

}

/*=========================================
            Tablet
=========================================*/

@media (max-width:991px){

    .about-company-section{

        padding:80px 0;

    }

    .about-image{

        margin-bottom:50px;

    }

    .about-content{

        padding-left:0;

    }

    .about-content h2{

        font-size:34px;

    }

}

/*=========================================
            Mobile
=========================================*/

@media (max-width:767px){

    .about-company-section{

        padding:70px 0;

    }

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:30px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .about-feature{

        justify-content:flex-start;

    }

    .experience-card{

        left:20px;

        bottom:20px;

        padding:18px 24px;

    }

    .experience-card h3{

        font-size:34px;

    }

}

/*=========================================
        Small Mobile
=========================================*/

@media (max-width:575px){

    .about-content h2{

        font-size:26px;

    }

    .about-content p{

        font-size:15px;

    }

    .about-feature{

        padding:15px;

    }

    .about-feature span{

        font-size:14px;

    }

    .experience-card{

        min-width:150px;

        padding:15px 20px;

    }

    .experience-card h3{

        font-size:30px;

    }

    .experience-card p{

        font-size:14px;

    }

    .about-btn{

        width:100%;

        text-align:center;

    }

}

/*=========================================
        Extra Small Mobile
=========================================*/

@media (max-width:420px){

    .about-company-section{

        padding:60px 0;

    }

    .about-content h2{

        font-size:24px;

    }

    .experience-card{

        left:15px;

        bottom:15px;

        padding:12px 18px;

    }

    .experience-card h3{

        font-size:26px;

    }

}