.hero-section-title-wrapper .title{
    font-size: 30px !important;
    color: white;
}
.services-section{
    padding: 100px 0 0;
}
.services-section

.section-header .title{
    font-size: 50px !important;
}



/*  Services section */
.services-block{
    display: flex;
    flex-direction: column;
}
.services-block-wrapper{
    padding: 50px 0;
    background-color: var(--pri-color1); 
    p{
        color: rgb(240, 240, 240);
    }   
    button{
        background-color: gray;
    }
}
.services-block-wrapper:nth-of-type(even){
    background-color: var(--pri-fade-color10);
    .services-block-title{
         color: black !important;
    }
    p{
        color: rgb(58, 58, 58);
    }
    
}
.services-block-title{
    color: white !important;
}


.services-block-contents{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    align-items: center;    
    
    
}
.grid-colum1{
    width: 100%;
    position: relative;
    height: 500px;   
    overflow: hidden;    
    padding: 20px 0;
}
.grid-colum1 img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}
.grid-column2{    
    width: 100%;
    padding: 80px 80px;
    color: rgb(53, 53, 53);
    display: flex;
    flex-direction: column;
    gap: 30px;
        
}
.title-lc{
    font-size: var(--Sfont);
    color: black;
}






/* Our Process section */
/* .our-process-section{
   
} */
.section-header{
    display: flex;
}
.our-process-block{
    background-image: url(../clients-images/client-4.jpg);
    background-size: cover;
    background-position: center center;    
    padding: 150px 0;
    /* border-top: 10px solid white;   */
}
.our-process-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
    gap: 20px;
}
.our-process-contents-arrow{
    flex: 0 1 500px;    
    height: 120px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    background-color: var(--pri-fade-color3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;    
    overflow: hidden;
    
}
.our-process-contents-arrow:nth-of-type(even){
    background-color: var(--pri-fade-color1);
}
.our-process-title-text{
    font-weight: 300 !important;
    font-size: var(--Sfont) !important;
    color: white;
    width: 100%;
    text-align: center;
    font-family: var(--font7) !important;
}


/* Read More Information box */
.box-readmore-info{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.459);
    width: 100%;
    height: 100%;
    animation: fadeIn 700ms ease-in-out;
    overflow: auto;
    display: none;
}
.box-readmore-info .services-block-title{
    color: rgb(39, 39, 39) !important;
}
.box-readmore-info-wrapper{
    position: relative;
    background-color: white;   
    max-width: 1000px;
    width: 98%;
    margin: 30px auto;
    padding: 30px 60px 60px;
    border-radius: 10px;
    box-shadow: 0 5px 60px black;    
    animation: backInUp 1.2s ease-in-out;        
}
.box-readmore-info-body{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 40px;   
}
.box-readmore-info-body img{
    height: 600px;
}
.text-info-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.box-readmore-info-wrapper p{
    color: rgb(63, 63, 63);
    display: flex;
    align-items: center;
}
.list-text{
    gap: 10px !important;
    padding: 0 30px;
    color: var(--pri-color3);
}
li::marker{    
    color: var(--pri-color3);
    font-size: 20px;    
    vertical-align: baseline;
    line-height: 1.8rem !important;
}


/* Referral Banner */
.referral-block{
    max-width: 800px;
    width: 90%;
    margin: 100px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    h1{
        font-weight: 800;
        font-size: var(--Mfont);
        color: var(--pri-color1);
    }
    a{
        padding: 15px;
        background-color: var(--pri-color3) !important;
        color: white;
    }
}




/* Media query */
@media screen and (max-width:1300px){

    .services-section{
        padding: 100px 0 0;
    }

    .services-section .title{
        font-size: 30px;
    }
    
    .services-block-contents {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(500px,1fr));
        align-items: center;
    }
    
    .grid-contents {  
        grid-template-columns: repeat(1,1fr);        
    }
    .grid-area-div{
        grid-area: 1;
    }
    .services-block-wrapper{
        padding: 0;
    }


}



@media screen and (max-width:1100px){

    .services-section{
        padding: 100px 0 0;
    }
    .services-block-section{
        font-size: 50px ;
    }
    
}





@media screen and (max-width:600px){
    
    .services-block-wrapper{
        padding: 0;
    }
    .section-header .title{
        font-size: 40px !important;
    }
    .services-block-title{
        font-size: 25px !important;
        width: 100%;
        font-weight: 600;
        
    }
    .grid-colum1{
        position: relative;
        height: 250px;
        border: none;
    }
    .grid-column2{
        padding: 40px 30px;
    }
    .services-block{
        gap: 0;
    }
    .box-readmore-info-body img{
        height: 250px !important;
    }
    .box-readmore-info-wrapper{
        padding: 0 25px 50px;
    }

    .grid-area-div{
        grid-area: 1;
    }
    .services-block-contents {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        align-items: center;
    }
   
}