/* placeholder; copy original assets/css/responsive.css here */
/* Extra large devices (large desktops, 1200px and up) */
@media only screen and  (max-width: 1200px) {
    /* Your CSS here */
    :root {
        font-size: 16px;
    }
    .brand-logo {
        width: 200px;
    }
    .btn-cta::before {
        margin-right: 0px;
    }
    section.py-8{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section{
        padding-top: 50px;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and  (max-width: 992px) {
    .fixed-top {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        /* background: linear-gradient(150deg, rgb(209 223 236) 50%, rgb(255, 0, 0) 125%); */
        background: url('../img/banner-bg.png') center/cover no-repeat;
        transition: 0.3s ease-in-out;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
    }
    .brand-logo{
        max-width: 200px;
    }
    .navbar-collapse{
        padding: 10px 15px;
    }
    .home-cta-form img{
       display: none;
    }

    .home-cta{
        margin-top: 0;
    }


}

/* Medium devices (tablets, 768px and up) */
@media only screen and  (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .lead{
        font-size: 18px;
    }

    
    .step-content {
        margin-bottom: 15px;
    }
    
    .content-above, .content-below {
        margin: 10px 0;
    }
    
}


/* Extra small devices (phones, less than 576px) */
@media only screen and  (max-width: 575.98px) {
    /* Your CSS here */
}