/*
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:340px) and (max-device-width: 900px)
{
    
    
    /*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;
}
/*services*/   

.services{
    margin-top: 21%;
    width: 99%
}

.services_block{
    display: block;
    height: auto;
    font-family: "Lato", sans-serif;
}

.services_head{
    text-align: center;
    background-color: #112a78;
    color: white;
}

.services_head p{
    font-size: 35px;
}

.services_info h4{
    font-size: 35px;
}

.services_info p{
    font-size: 25px;
}

.services_info{
    background-color: #ffac32;
    padding: 30px;
}
.serv{
    display: none;
}
.m_serv{
    display: block;
    padding: 2px;
    margin-left: 10px;
    font-size: 15px;
    text-align: center;
    font-family: "Lato", sans-serif;
    border: 2px solid;
    border-radius: 5px;
    width: 96%;
    margin-top: 20px;   
}  
.m_serv:hover{
    background-color: lightgray;
}

.m_serv h2{
    font-size: 20px;
}

.m_serv p{
    font-size: 20px;
    padding: 2px;
}

.m_serv img{
    width: 40%;
} 


}