/*=========================================
        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;

    }

}

/*====================================================
                OWNER MESSAGE
====================================================*/

.omg-section{

    padding:100px 0;
    background:#ffffff;

}

.omg-content{

    padding-right:40px;

}

.omg-subtitle{

    display:inline-block;
    font-size:15px;
    font-weight:600;
    color:#FDB913;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;

}

.omg-title{

    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;

}

.omg-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:18px;

}

.omg-signature{

    margin-top:35px;
    padding-top:20px;
    border-top:2px solid #FDB913;

}

.omg-signature h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:5px;
    color:#222;

}

.omg-signature span{

    color:#777;
    font-weight:500;

}

.omg-image{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.omg-image img{

    width:100%;
    display:block;
    transition:.5s;

}

.omg-image:hover img{

    transform:scale(1.05);

}

/*====================================================
                ESTABLISHED
====================================================*/

.est-section{

    padding:100px 0;
    background:#f8f9fb;

}

.est-year-box{

    background:#FDB913;
    color:#222;
    text-align:center;
    padding:50px 25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.est-year-box span{

    display:block;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;

}

.est-year-box h2{

    font-size:72px;
    font-weight:800;
    margin:0;

}

.est-subtitle{

    display:inline-block;
    color:#FDB913;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;

}

.est-title{

    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;

}

.est-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:18px;

}

/*====================================================
                SAFETY
====================================================*/

.sft-section{

    padding:100px 0;
    background:#ffffff;

}

.sft-heading{

    max-width:760px;
    margin:0 auto 60px;

}

.sft-subtitle{

    display:inline-block;
    color:#FDB913;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;

}

.sft-title{

    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;

}

.sft-description{

    color:#666;
    line-height:1.9;

}

.sft-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-top:4px solid transparent;

}

.sft-card:hover{

    transform:translateY(-10px);
    border-top-color:#FDB913;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.sft-icon{

    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff6da;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#FDB913;

}

.sft-card h3{

    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;

}

.sft-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

/*====================================================
                COUNTERS
====================================================*/

.cnts-section{

    padding:100px 0;
    background:#222;

}

.cnts-card{

    background:#fff;
    text-align:center;
    padding:45px 20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    transition:.35s;
    height:100%;

}

.cnts-card:hover{

    transform:translateY(-10px);

}

.cnts-card i{

    font-size:42px;
    color:#FDB913;
    margin-bottom:20px;

}

.cnts-card h2{

    font-size:46px;
    font-weight:800;
    color:#222;
    margin-bottom:10px;

}

.cnts-card span{

    display:block;
    color:#666;
    font-size:17px;
    font-weight:600;

}

/*====================================================
                RESPONSIVE
====================================================*/

@media (max-width:1199px){

    .omg-title,
    .sft-title{

        font-size:38px;

    }

    .est-title{

        font-size:36px;

    }

}

@media (max-width:991px){

    .omg-section,
    .est-section,
    .sft-section,
    .cnts-section{

        padding:80px 0;

    }

    .omg-content{

        padding-right:0;
        margin-bottom:40px;

    }

    .est-year-box{

        margin-bottom:40px;

    }

    .omg-title,
    .sft-title,
    .est-title{

        font-size:34px;

    }

}

@media (max-width:767px){

    .omg-section,
    .est-section,
    .sft-section,
    .cnts-section{

        padding:70px 0;

    }

    .omg-title,
    .sft-title,
    .est-title{

        font-size:30px;

    }

    .est-year-box h2{

        font-size:60px;

    }

}

@media (max-width:575px){

    .omg-section,
    .est-section,
    .sft-section,
    .cnts-section{

        padding:60px 0;

    }

    .omg-title,
    .sft-title,
    .est-title{

        font-size:28px;

    }

    .sft-card,
    .cnts-card{

        padding:35px 20px;

    }

}

@media (max-width:420px){

    .omg-title,
    .sft-title,
    .est-title{

        font-size:24px;

    }

    .est-year-box h2{

        font-size:48px;

    }

    .cnts-card h2{

        font-size:36px;

    }

}