/* Deleteable style */
/* div{
    border: 1px solid black;;
} */
/* End of delteable style */

/* Root */
:root{
    --theme-color: rgba(69, 55, 143, 1);
}
/* Page Setup */
@page{
    size: A4;
}
body{
    margin: 5px;
    padding: 5px;
}
.wrapper{
    visibility: hidden;
}
/* Overriding bootstrap */
.form-control{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px !important;
    border-radius: 0px;
    border-bottom: 1px solid var(--theme-color) !important;
}
/* End of overriding bootstrap */
/* Header Section */
.logo{
    width: 100% !important;
    margin-top: 15px !important;
}
.logo-container{
    margin-top: 25px;
    display: inline-block;
}
.slogan-container{
    text-align: center;
    display:inline-block;
    margin: 0px !important;
}
.slogan{
    font-family: 'Cookie', cursive;
    font-size: 70px;
    font-weight: bolder;
    margin-bottom: 0px !important;
}
.theme-color{
    color: var(--theme-color) !important;
}
.slogan-description{
    font-size: 15px !important;
    font-weight: 300 !important;
}
.contact-container{
    /* padding: 50px; */
    text-align: center;
}
.contact-text{
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    /* font-weight: 700; */
}
/* Body Section */
label{
    margin-top: 10px !important;
    font-family: 'Roboto', sans-serif !important;
    font-style: italic;
    font-size: 15px;
}
.body-section{
    margin-top: 15px;
}
.no-container{
    display: inline-block;
}
#no{
    font-weight: 900;
}
/* footer section */
/* Ovrrideing footer bootstrap */
.rs-span{
    font-size:30px;
    color: white !important;
    font-family: 'Kaushan Script', cursive;
}
.footer-section{
    margin-top: 20px;
}
/* Pring Page setup */
@media print{
    @page{
        /* page: A4 landscape !important; */
        size: A4;
    }
    .wrapper{
        visibility: visible;
    }
    .logo{
        width: 100% !important;
    }
    .head-section{
        margin-left: 20px;
    }
    .slogan-container{
        display: block !important;
    }
}