/*service box */

.services-section{
    /*padding: 30px 0;*/
    /*background: #f3f3f3;*/
    position: relative;
    padding-top: 180px;
}

.services-box{
    background: #e9edf3;
    padding: 45px 60px;
    text-align: center;
}

.services-title{
    font-size: 36px;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*font-family: 'Oswald', sans-serif;*/
}

.services-text{
    font-size: 18px;
    line-height: 1.8;
    color: #4d5966;
    max-width: 1400px;
    margin: 0 auto;
    /*font-family: Arial, sans-serif;*/
}

/* Responsive */

@media (max-width: 991px){

    .services-box{
        padding: 40px 30px;
    }

    .services-title{
        font-size: 42px;
    }

    .services-text{
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 767px){

    .services-section{
        padding: 20px 0;
    }

    .services-box{
        padding: 30px 20px;
    }

    .services-title{
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-text{
        font-size: 16px;
        line-height: 1.7;
    }
}


/*list services*/


.list-services-section{
    /*padding: 40px 0 50px;*/
    background: var(--lt-bg-color);
}

.list-services-content{
    padding-left: 20px;
}

.list-services-title{
    font-size: 36px;
    font-weight: 500;
    color: #1d4f84;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    /*font-family: 'Oswald', sans-serif;*/
}

.services-list{
    padding-left: 35px;
    margin: 0;
}

.services-list li{
    font-size: 18px;
    line-height: 1.9;
    color: #4f5965;
    margin-bottom: 2px;
    list-style-type: circle;
    /*font-family: Arial, sans-serif;*/
}

/* Responsive */

@media (max-width: 991px){

    .list-services-title{
        font-size: 42px;
        margin-bottom: 30px;
    }

    .services-list li{
        font-size: 18px;
        line-height: 1.8;
    }
}

@media (max-width: 767px){

    .list-services-section{
        padding: 30px 0 40px;
    }

    .list-services-content{
        padding-left: 10px;
    }

    .list-services-title{
        font-size: 32px;
        margin-bottom: 22px;
    }

    .services-list{
        padding-left: 24px;
    }

    .services-list li{
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 8px;
    }
}



/*benefit section start */




.benefits-section{
    /*padding: 30px 0 50px;*/
    /*background: #f3f3f3;*/
    position: relative;
}

.benefits-title{
    font-size: 36px;
    font-weight: 500;
    color: #0d1b2a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    /*font-family: 'Oswald', sans-serif;*/
}

.benefit-card{
    background: #e8edf4;
    height: 100%;
    transition: 0.3s ease;
}

.benefit-image{
    overflow: hidden;
}

.benefit-image img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.benefit-card:hover img{
    transform: scale(1.05);
}

.benefit-content{
    padding: 35px 38px 40px;
}

.benefit-content h3{
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 4px;
    color: #1f4f84;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 500;
    /*font-family: Arial, sans-serif;*/
}

.benefit-content p{
    /*font-size: 20px;*/
    line-height: 1.8;
    color: #4f5965;
    margin-bottom: 0;
    /*font-family: Arial, sans-serif;*/
}

/* Responsive */

@media (max-width: 991px){

    .benefits-title{
        font-size: 42px;
        margin-bottom: 30px;
    }

    .benefit-image img{
        height: 280px;
    }

    .benefit-content{
        padding: 30px 25px;
    }

    .benefit-content h3{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .benefit-content p{
        font-size: 17px;
        line-height: 1.7;
    }
}

@media (max-width: 767px){

    .benefits-section{
        padding: 25px 0 40px;
    }

    .benefits-title{
        font-size: 32px;
        margin-bottom: 25px;
    }

    .benefit-image img{
        height: 240px;
    }

    .benefit-content{
        padding: 25px 20px;
    }

    .benefit-content h3{
        font-size: 16px;
        letter-spacing: 3px;
    }

    .benefit-content p{
        font-size: 16px;
        line-height: 1.7;
    }
}


.benefits-btn-wrap{
    margin-top: 55px;
}

.benefits-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #274e78;
    color: #fff;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
    min-width: 170px;
}

.benefits-btn:hover{
    background: #1d3f63;
    color: #fff;
}

/* Responsive */

@media (max-width: 767px){

    .benefits-btn-wrap{
        margin-top: 35px;
    }

    .benefits-btn{
        padding: 14px 30px;
        font-size: 14px;
        min-width: 150px;
    }
}
