/*

Guia:

1. Framework
2. Buttons
3. Forms
4. Title
5. Colors
6. Header
7. Pages
8. Archives
9. Singles
10. Footer
11. Feed
12. Extras
13. Modals

*/

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3a3a3a;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

.wow {
    visibility: hidden;
}

.overh {
    overflow: hidden;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1;
}

b {
    font-weight: 700;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

@media screen and (min-width: 992px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 18px;
    }
}

/* Framework */

.main {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 1440px;
        padding: 0 70px;
    }
}

/* Columns */

@media screen and (min-width: 1200px) {
    .col-lg-5-2 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Keyframes */

@keyframes bounce {
    0% {
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -100%);
        -webkit-transform: translate(-50%, -100%);
        -moz-transform: translateY(-50%, -100%);
    }

    100% {
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
    }
}

/* Bootstrap defaults */

.text-primary {
    color: #FF8C00 !important;
}

.text-secondary {
    color: #00AD3A !important;
}

.bg-primary {
    background: #FF8C00 !important;
}

.bg-secondary {
    background: #009628 !important;
}

.bg-sucess {
    background: #00AD3A !important;
}

.bg-danger {
    background: #DE3535 !important;
}

.bg-gray {
    background: #F7F7F7 !important;
}

hr {
    border: 1px solid #eeeeee;
    width: 90%;
}

ul li {
    margin-bottom: 5px;
    margin-top: 5px;
}

/* Form */


.form-control {
    border-radius: 100px;
    border: 1px solid #dadada;
}

    .form-control:focus {
        border-color: #00AD3A;
    }

.form-group {
    margin: 0;
}

    .form-group span {
        display: inline-block;
    }

label {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

    label.small-label {
        font-size: 14px;
        font-weight: 700;
    }

/*select.form-control{
	margin: 0px 10px;
	display: inline-block;
	width: auto;
}*/

textarea.form-control {
}

@media screen and (min-width: 992px) {
}

.submit {
}

    .submit label {
    }

.input-file-wrapper {
    /* position: relative; */
    /* display: inline-block; */
    /* vertical-align: middle; */
    min-width: 200px;
    border: 2px solid #000;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
    line-height: 36px;
    text-align: center;
    margin: 0;
}

    .input-file-wrapper:hover {
        background: #000;
        color: #FFF;
    }

    .input-file-wrapper input {
        opacity: 0;
        width: 0;
    }

    .input-file-wrapper .files {
    }

        .input-file-wrapper .files span {
        }

.file-secondary {
    background: #009628;
    border-color: #009628;
    color: #FFF;
}

    .file-secondary:hover {
        background: #fff;
        color: #009628;
    }


/* Buttons */

.btn {
    min-width: 233px;
    padding: 0px;
    font-size: 12px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1.2px;
    border-width: 2px;
    border-radius: 100px;
    text-transform: uppercase;
}

    .btn.focus,
    .btn:focus,
    .btn:not(:disabled):not(.disabled).active:focus,
    .btn:not(:disabled):not(.disabled):active:focus {
        box-shadow: none !important;
    }

@media screen and (min-width: 992px) {
    .btn-sm {
        min-width: 190px;
    }

    .btn-lg {
        line-height: 60px;
    }
}

.btn-primary {
    background: #FF8C00;
    border-color: #FF8C00;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:not([disabled]):not(.disabled):active {
        color: #fff;
        background: #00AD3A;
        border-color: #00AD3A;
    }

.btn-outline-primary {
    color: #FF8C00;
    border-color: #FF8C00;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:not([disabled]):not(.disabled):active {
        color: #00AD3A;
        background: transparent;
        border-color: #00AD3A;
    }

.btn-secondary {
    background: #00AD3A;
    border-color: #00AD3A;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:not([disabled]):not(.disabled):active {
        color: #fff;
        background: #00AD3A;
        border-color: #00AD3A;
    }

.btn-outline-secondary {
    color: #00AD3A;
    border-color: #00AD3A;
}

    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus,
    .btn-outline-secondary:not([disabled]):not(.disabled):active {
        color: #fff;
        background: #00AD3A;
        border-color: #00AD3A;
    }


.btn-light {
    background: #fff;
    color: #8DC541;
    border-color: #fff;
}

    .btn-light:hover,
    .btn-light:focus,
    .btn-light:not([disabled]):not(.disabled):active {
        color: #fff;
        background: #8DC541;
        border-color: #8DC541;
    }

.btn-outline-light:hover {
    color: #FF8C00;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

    .btn-outline-light:hover,
    .btn-outline-light:focus,
    .btn-outline-light:not([disabled]):not(.disabled):active {
        color: #fff;
        background: #00AD3A;
        border-color: #00AD3A;
    }



.btn-outline-info {
    color: #7B8086;
    border-color: #7B8086;
}

    .btn-outline-info:hover,
    .btn-outline-info:focus,
    .btn-outline-info:not([disabled]):not(.disabled):active {
        color: #FFF;
        background-color: #7B8086;
        border-color: #7B8086;
    }

.btn-outline-danger {
    color: #FF0000;
    border-color: #FF0000;
    font-weight: bold;
}


/* Header */

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background: #fff;
    transition: 0.3s all;
    z-index: 999;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .logo {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        max-width: 179px;
        margin: 18px 0;
    }


    .header.fixed {
        position: fixed;
        background: #FFF;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        z-index: 9998;
        -webkit-animation: slideInDown 0.3s ease-out;
        -moz-animation: slideInDown 0.3s ease-out;
    }

    /* Header > Navigation */

    .header .nav-menu {
        position: relative;
        float: right;
        width: 35px;
        padding: 15px 0;
        cursor: pointer;
        z-index: 21;
        overflow: hidden;
    }

        .header .nav-menu .menu-line {
            float: right;
            display: block;
            width: 100%;
            height: 2px;
            margin: 4px 0;
            background: #FF8C00;
            transition: 0.3s;
            border-radius: 6px;
        }

        .header .nav-menu.active .menu-line:nth-child(1) {
            transform: rotate(45deg);
            width: 40px;
            margin-top: 14px;
        }

        .header .nav-menu.active .menu-line:nth-child(3) {
            transform: rotate(-45deg);
            width: 40px;
            margin-top: -16px;
        }

        .header .nav-menu.active .menu-line:nth-child(2) {
            opacity: 0;
        }

    .header .navigation {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 0 15px 15px;
        margin: 0;
        text-align: left;
        background: #fff;
        box-shadow: 0px 6px 6px 0 rgb(0 0 0 / 10%);
        border-top: 1px solid #eee;
    }

        .header .navigation.active {
            display: block;
        }

        .header .navigation ul {
            margin: 15px 0;
        }

            .header .navigation ul li a {
                display: block;
                padding: 10px;
                font-weight: 600;
                color: #59595B;
            }

                .header .navigation ul li.active a,
                .header .navigation ul li a:hover {
                    color: #00AD3A;
                }

            .header .navigation ul li ul {
                display: none;
                margin: 0;
                padding: 0;
                list-style: none;
            }

            .header .navigation ul li.open-submenu > ul {
                display: block;
            }

        .header .navigation .menu li a {
            display: block;
            border-bottom: 1px solid #F2F2F2;
            font-size: 24px;
        }

        .header .navigation .menu-home a {
            display: inline-block;
            padding: 6px 15px;
            color: #FF8C00;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid #ff8c00;
            border-radius: 25px;
        }

            .header .navigation .menu-home a:hover {
                background: #FF8C00;
                color: #fff;
            }

        .header .navigation .socialmedia {
            margin-top: 32px;
        }

            .header .navigation .socialmedia li {
                display: inline-block;
                vertical-align: middle;
            }

                .header .navigation .socialmedia li a {
                    width: 35px;
                    height: 35px;
                    padding: 0;
                    color: #fff;
                    line-height: 35px;
                    text-align: center;
                    background: #FF8C00;
                    font-size: 20px;
                    border-radius: 50%;
                    transition: 0.5s all;
                }

                    .header .navigation .socialmedia li a:hover {
                        color: #fff;
                        background: #00AD3A;
                    }

@media screen and (min-width: 1200px) {
    .header {
        display: flex;
        align-items: center;
        min-height: 65px;
    }

        .header .logo {
            max-width: 179px;
        }

        .header .nav-menu {
            display: none;
        }

        .header .navigation {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            position: relative;
            top: auto;
            left: auto;
            width: 100%;
            padding: 0;
            padding-left: 5%;
            background: transparent;
            box-shadow: none;
            border: 0;
        }

            .header .navigation ul,
            .header .navigation ul li {
                position: relative;
                display: inline-block;
                vertical-align: middle;
            }

            .header .navigation ul {
                margin: 0;
            }

            .header .navigation > ul > li a {
                padding: 10px 5px;
                font-size: 15px;
            }

            .header .navigation .menu {
                margin-right: 16px;
            }

                .header .navigation .menu li a {
                    font-size: 16px;
                    border: 0;
                }

            .header .navigation .socialmedia {
                margin: 0 0 0 24px;
            }

        .header.fixed {
            position: fixed;
            min-height: 60px;
        }

            .header.fixed .logo {
                max-width: 179px;
            }
}

@media screen and (min-width: 1440px) {
    .header .navigation > ul > li a {
        padding: 10px;
    }
}

/* */

.section {
    position: relative;
    padding: 50px 0;
}

@media screen and (min-width: 992px) {
    .section {
        padding: 80px 0;
    }
}


/* Footer */
.footer {
}

/* Tab Menu */
.top-bar {
    background: #00AD3A;
    color: #fff;
}

.tab-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 80px;
    white-space: nowrap;
    overflow: auto;
}

    .tab-menu ul, .tab-menu ul li {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0px;
    }

        .tab-menu ul li {
            padding-right: 30px;
            font-size: 14px;
            text-transform: uppercase;
        }

            .tab-menu ul li span {
                font-size: 16px;
                text-transform: none;
                font-weight: bold;
            }

            .tab-menu ul li.phone:before {
                content: '';
                display: inline-block;
                vertical-align: middle;
                width: 23px;
                height: 23px;
                margin-right: 8px;
                background: url(../img/icons/icon-phone-white.png) no-repeat center;
                background-size: contain;
            }

            .tab-menu ul li.exit a {
                font-weight: bold;
                text-transform: none;
                text-decoration: underline;
                font-style: 16px;
            }

/* Steps */
.process {
    background-color: #ECECEC;
    height: 5px;
    width: 100%;
}

    .process .status {
        background-color: #00AD3A;
        height: 5px;
        width: 0%;
    }

.step-01 .process .status {
    width: 16.6%;
}

.step-02 .process .status {
    width: 33.2%;
}

.step-03 .process .status {
    width: 49.8%;
}

.step-04 .process .status {
    width: 66.4%;
}

.step-05 .process .status {
    width: 83%;
}

.step-final .process .status {
    width: 100%;
}

/* Image */
.module-form .image .img {
    width: 100%;
    height: 100%;
    padding: 50% 0;
    background: no-repeat center;
    background-size: cover;
}

    .module-form .image .img .data {
        position: absolute;
        top: 0;
    }

        .module-form .image .img .data article {
            background: #fff;
            margin: 30px;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
        }

            .module-form .image .img .data article .title {
                color: #00AD3A;
                font-size: 16px;
            }

            .module-form .image .img .data article .description {
                color: #383838;
                font-size: 16px;
                margin-bottom: 0px;
            }


@media screen and (min-width: 992px) {
    .module-form .image .img {
        padding: 60% 0;
    }
}

/* text */
.module-form .text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px 15px 15px;
}

    .module-form .text .data {
        max-width: 600px;
        margin: 0 auto;
    }

    .module-form .text .title {
        text-align: center;
        margin: 20px 0px;
    }

        .module-form .text .title .icon {
            display: inline-block;
        }

        .module-form .text .title h1 {
            font-size: 26px;
            color: #FF8C00;
        }

@media screen and (min-width: 768px) {
    .module-form .text .title h1 {
        font-size: 36px;
    }
}

.module-form .text .title h2 {
    display: inline-block;
    font-size: 18px;
    color: #00AD3A;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin: 20px 0px;
    vertical-align: middle;
}

.module-form .text .info {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin: 20px 0px;
}

    .module-form .text .info h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

    .module-form .text .info h4 {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        line-height: 22px;
    }

}

.module-form .text .info p {
    font-size: 16px;
}

.module-form form h4 {
    font-size: 16px;
    color: #000;
}

.module-form form p {
    font-size: 14px;
    font-weight: 500;
}

.module-form .wrap {
    width: 100%;
}

.module-form .text .legal {
    font-size: 10px;
    color: #7B8086;
    text-align: center;
    padding: 25px;
}

@media screen and (min-width: 1200px) {
    .module-form .text .data {
        padding: 50px 0px;
    }

    .module-form .text .info {
        margin: 25px auto;
        max-width: 500px;
    }
}


/*Legal*/
.clients .module-form .text .legal {
    align-self: flex-end;
}

.clients .legal ul li {
    display: inline-block;
}

    .clients .legal ul li a:hover {
        text-decoration: underline;
    }

.clients .legal ul.menu-contact li {
    font-size: 16px;
    font-weight: bold;
    color: #FF8C00;
    padding: 0 15px;
}

    .clients .legal ul.menu-contact li a {
        color: #383838;
    }

    .clients .legal ul.menu-contact li.mail:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 26px;
        height: 26px;
        margin-right: 10px;
        background: url(../img/icons/icon-mail.png) no-repeat center;
        background-size: contain;
    }

    .clients .legal ul.menu-contact li.phone:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 23px;
        height: 23px;
        margin-right: 10px;
        background: url(../img/icons/icon-phone.png) no-repeat center;
        background-size: contain;
    }

.clients .legal ul.menu-legal li {
    font-size: 14px;
    text-transform: uppercase;
    color: #5B5B5B;
    font-weight: bold;
    padding: 0 15px;
}

/* Legal login */
.clients.login .legal ul.menu-contact li.mail:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    background: url(../img/icons/icon-mail-white.png) no-repeat center;
    background-size: contain;
}

.clients.login .legal ul.menu-contact li.phone:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 23px;
    height: 23px;
    margin-right: 10px;
    background: url(../img/icons/icon-phone-white.png) no-repeat center;
    background-size: contain;
}

.clients.login .legal ul.menu-legal li, .clients.login .legal ul.menu-contact li, .clients.login .legal ul.menu-contact li a {
    color: #FFF;
}

/* Login */
.clients.login .module-form .text {
    background: url(../img/clients-login-bg.jpg) no-repeat center center;
    background-size: cover;
}

/* News*/
.clients.news .feed-news article h2 {
    font-size: 16px;
}

/* Tables breakpoint */
@media screen and (max-width: 767px) {
    .vw-100-responsive {
        width: 100vw;
    }
}

/* Image Login breakpoint */
@media screen and (max-width: 767px) {
    .img-responsive {
        min-height: 0px !important;
        background-position: top !important;
        margin-top: -6em !important;
        padding: 60% 0 !important;
    }
}



/* Timer */

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }

    to {
        stroke-dashoffset: 113px;
    }
}
