/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');

/*Basic Settings*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}



/**********CaseStudy***************/

.CaseStudy p{
    margin-bottom: 0 !important;
}

/*Banner Section*/

.CaseStudy section.banner_section {
    height: 600px;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.CaseStudy .banner_section .title{
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 4em;
}
.CaseStudy .banner_section .title > div{
    width: 100%;
    max-width: 700px;
}

/*Content Section*/
.CaseStudy .content_section{

}
.CaseStudy .content_section > section:nth-of-type(even){
    background-color: #EBEBEB;
}
.CaseStudy .content_section .content_row{
    padding: 20px 0;
}
.CaseStudy .content_section .content_row .img_column{
    display: flex;
    align-items: center;
    justify-content: center;
}
.CaseStudy .content_section .content_row .img_column img{
    width: 120px;
}
.CaseStudy .content_section .content_row .text_column{
    display: flex;
    align-items: center;
}
.CaseStudy .content_section .content_row .text_column p{
    font-size: 14px;
    margin-bottom: 10px !important;
}
.CaseStudy .content_section .content_row .text_column > div p:nth-child(2) span{
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: #0E2754;
}
.CaseStudy .content_section .content_row .text_column > div p:nth-child(2) span:before{
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #707070;
    left: 0;
    top: 50%;
    position: absolute;
  }
.CaseStudy .content_section .content_row .download_column{
    display: flex;
    justify-content: center;
    align-items: center;
}
.CaseStudy .content_section .content_row .download_column button{
    padding: 10px 20px 10px 20px;
    background-color:#00ACFF;
    color: #ffffff;
    font-size: 14px;
    border-radius: 24px;
    border: 1px solid #00ACFF;
}
.CaseStudy .content_section .content_row .download_column button:hover{
    background-color:#ffffff;
    color:#00ACFF;
}



/*Modal Popup*/
.custom_modal .modal-content{
    border: 5px solid #033354;
    text-align: center;
}
.custom_modal .modal-content .modal-header{
    border-bottom: 0;
}
.custom_modal .modal-content .modal-body{
    padding: 0 30px 30px 30px;
}
.custom_modal .modal-content .modal-body .title{
    color: #00ACFF;
}
/* .custom_modal .modal-content .modal-body{
    width: 90%;
    margin: 0 auto;
} */
.custom_modal .modal-content .modal-body input{
    border: 1px solid #00ACFF;
    font-size: 14px;
    height: 40px;
}
.custom_modal .modal-content .modal-body textarea{
    border: 1px solid #00ACFF;
    font-size: 14px;
}

.custom_modal .modal-content .modal-body .btn_download{
    height: 50px;
    width: 100%;
    background-color: #00ACFF;
    border: 0;
}











/*Media Queries*/

@media screen and (max-width:576px){
    
    .CaseStudy .banner_section .title{
        font-size: 16px;
    }
    .CaseStudy .banner_section .title > div {
        max-width: 350px;
    }
    .CaseStudy .content_section .content_row{
        text-align: center;
    }
    .CaseStudy .content_section .content_row .download_column button{
        margin-top: 20px;
    }
    
}




@media screen and (min-width:576px) and (max-width:767px){
    
    .CaseStudy .banner_section .title{
        font-size: 20px;
    }
    .CaseStudy .banner_section .title > div {
        max-width: 450px;
    }
    .CaseStudy .content_section .content_row{
        text-align: center;
    }
    .CaseStudy .content_section .content_row .download_column button{
        margin-top: 20px;
    }
    
}
@media screen and (min-width:768px) and (max-width:991px){
    .CaseStudy .banner_section .title{
        font-size: 20px;
    }
    .CaseStudy .banner_section .title > div {
        max-width: 450px;
    }
    
}
