/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.b1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
input[type='submit']:not(.is-form){
    margin: 0 auto;
    display: flex;
    width: 50%;
    min-width: 200px;
    background: unset !important;
    color: black;
    border: 2px solid;
    border-radius: unset;
}
.form-flat select{
    color: #727272 !important;
    border-radius: unset;
}
.form-flat textarea{
    border-radius: unset;
}
.absolute-footer{
    display: none;
}
.footer{
    padding: 30px 0 10px !important;
}
.ft_contact a{
    color: black;
    font-weight: 500;
}
.ft_contact a:hover{
    color: black !important;
    font-weight: 500;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
    .b1{
        display: grid;
        grid-template-columns: auto;
        grid-gap: 0px;
    }

}