/*==========================
        1.HTML
============================*/

html {
    font-size: 16px;
}

/*==========================
        2.HELPER
============================*/

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fff;
}

/*==========================
        3.BUTTONS
============================*/

.btn {
    padding: 10px 24px;
}

.btn a,
.btn a:hover,
.btn a:focus,
.btn button,
.btn button:focus {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-custom {
    background-color: rgb(154, 223, 23);;
    border: 2px solid rgb(154, 223, 23);;
    color: rgb(255, 255, 255);
    transition: all 0.5s;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.btn-custom.focus,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
    background-color: rgb(127, 185, 19);
    border-color: rgb(127, 185, 19);
    color: rgb(255, 255, 255);
}

/*==========================
        3.NAVBAR
============================*/

.my-nav {
    transition: all 0.5s ease-in-out;
    background-color: rgb(255, 255, 255);
}

.my-nav.nav-shadow {
    background-color: #fff;
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.my-nav .navbar-nav li a {
    color: rgb(0, 0, 0);
    background-color: transparent;
    margin: 0 15px;
    font-weight: bolder;
    transition: all 0.4s;
}

.my-nav form {
    margin: 0 25px;
    font-weight: bolder;
    transition: all 0.4s;
}

.my-nav .navbar-nav li.active a,
.my-nav .navbar-nav li:hover a,
.my-nav .navbar-nav li:active a {
    color: #58a43c;
}

.my-nav .navbar-nav li a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #58a43c;
    margin: auto;
    transition: all .5s ease;
}

.my-nav .navbar-nav li.active a:after,
.my-nav .navbar-nav li:hover a:after,
.my-nav .navbar-nav li:active a:after {
    width: 100%;
}

.my-nav .sign_btn {
    background-color: rgba(19, 206, 103, 0.19);
    color: #58a43c;
}

/*==========================
        9.CONTACT/FOOTER
============================*/

.bg-contact-color {
    background-color: #66d37e;
    padding-top: 150px;
}

.started-text h1 {
    font-size: 50px;
}

.contact_form {
    max-width: 500px;
}

.contact_form .form-control {
    box-shadow: none !important;
    height: 55px;
    color: #6c757d;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.contact_form textarea.form-control {
    height: auto;
}

.footer_divider {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 1px;
}

.footer_about p {
    max-width: 680px;
    color: #fff;
}

.about_oxcer {
    color: #fff;
    max-width: 420px;
}

ul.footer_menu_list li a:hover {
    color: #58a43c;
    transition: all 0.3s;
}

ul.footer_menu_list li a {
    color: #fff;
    display: inline-block;
    padding: 5px 0;
    font-size: 15px;
    text-decoration: none !important;
}

.fot_social .social-icon {
    border-radius: 50%;
    background-color: rgba(241, 241, 241, 0.3);
    transition: all 0.5s;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 30px;
    line-height: unset;
    text-align: center;
}

.fot_social .social-icon:hover {
    color: #58a43c !important;
}

.footer_logo {
    height: 34px;
}

.copy-rights {
    color: #fff;
    font-size: 16px;
    padding-top: 40px;
}

.text-opacity {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: rgb(255, 255, 255) !important;
}

/*==========================
        10.RESPONSIVE
============================*/

@media (max-width: 991px) {

    .navbar .navbar-brand {
        /* Margem */
        margin: auto;
    }

    #navbarCollapse {
        /* Borda */
        border-top: solid 1px rgb(200, 200, 200);
        /* Margem */
        margin-top: 10px;
    }

    .my-nav .navbar-nav li a:after {
        /* Margem */
        margin: 0;
    }

}

@media (max-width: 991px) {

    #navbarCollapse form {
        /* Margem */
        -ms-flex-pack: center;
        justify-content: center;
    }

    #navbarCollapse {
        /* Texto */
        text-align: center;
    }

    .my-nav .navbar-nav li a:after {
        /* Margem */
        margin: auto;
    }

}


/*==========================
        11.CUSTOM
============================*/
.btn-round {
    border-radius: 30px;
}