/*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%;
}


/**********Contact Us***************/

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



@media screen and (max-width:575px) {
    .ContactUs .banner_section .title > div .main_heading {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .ContactUs .banner_section .title > div .sub_heading {
        font-size: 14px;
    }

    .ContactUs .brand-contact-title {
        font-size: 20px;
    }
}


@media screen and (min-width:576px) and (max-width:767px){
    .ContactUs .banner_section .title > div .main_heading {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .ContactUs .banner_section .title > div .sub_heading {
        font-size: 16px;
    }
    .ContactUs .brand-contact-title {
        font-size: 20px;
    }
    
}


@media screen and (min-width:768px) and (max-width:990px){
    .ContactUs .banner_section .title > div .main_heading {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .ContactUs .banner_section .title > div .sub_heading {
        font-size: 16px;
    }
    .ContactUs .brand-contact-title {
        font-size: 20px;
    }
}





