/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 05-Jan-2024, 9:35:02 pm
    Author     : Vaibhavi
*/

@media screen and  (min-device-width:910px) and (max-device-width: 1920px)
{
    
    /*appear*/ 
.appear {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.appear.inview{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.appear.inview:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.appear.inview:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.appear.inview:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.appear.inview:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.appear.inview:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
/*client*/   

.client{
    margin-top: 9%;
}

.client_block{
    display: flex;
    height: auto;
    font-family: "Lato", sans-serif;
}

.client_head{
    text-align: center;
    background-color: #112a78;
    color: white;
}

.client_head p{
    margin: 130px;
    font-size: 50px;
}

.client_info h4{
    font-size: 30px;
}

.client_info p{
    font-size: 25px;
}

.client_info{
    background-color: #ffac32;
    padding: 35px;

}


}