/*================================== 
General
==================================*/
/* html, body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
} */

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.circle {
    border-radius: 50%;
    border: solid 2px #00b2f6;
}

main {
    margin-top: 59px;
}

#logo {
    height: 50px;
    width: auto;
}


/*================================== 
Navbar
==================================*/
.navbar {
    background-color: #3D30A2;
    border-bottom: solid 3px #000;
}

.navbar-dark .navbar-toggler {
    border: none;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-toggler {
    color: #fff;
}

.navbar button[aria-expanded="false"] .fa-caret-up,
.navbar button[aria-expanded="true"] .fa-caret-down {
    display: none;
}

.free {
    background-color: #11b643;
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.free:hover,
.free:focus {
    background-color: #07a236;

}


/*================================== 
Sections
==================================*/
.section-lead {
    background-color: #002342;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
}

/*================================== 
Layout and Spacing
==================================*/
@media screen and (max-width: 600px) {
    .section-sm .btn {
        height: 20px;
    } 
    
    .section-sm .btn:last-of-type {
        margin-bottom: 20px;
    }
}

form label.left {
    padding-left: 5px;
}

.check {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-right: 10px;
}
.description {
    width: 90%;
    display: inline-block;
}

@media screen and (max-width: 767px){
    #services .row div,
    #clients .row div {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px){
    #services .middle {
        border-left: solid 2px #00b2f6;
        border-right: solid 2px #00b2f6;
    }

    #services .row span {
        display: block;
    }
}


/*================================== 
Forms
==================================*/
form input.form-control-lg  {
    width: 48%;
    display: inline-block;
}

form .btn-holder {
    display: inline-block;
    width: auto;
    margin-left: 5px;
    text-align: left;
}

form .btn {
    display: inline-block;
    margin-top: -5px;
}

@media screen and (max-width: 600px) {
    form, .btn, form .btn-holder, form input.form-control-lg {
        width: 100%;
        margin-bottom: 10px;
    }

    form .btn-holder {
        margin-left: 0px;
    }

    .btn {
        padding-top: 10px;;
    }
}