@import 'reset.css';

/* HEADER ___________________________________________________
background: linear-gradient(135deg, rgba(2,232,232,1) 1%,rgba(9,225,181,1) 100%);
*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #FFF;
    display: flex;
    transition: all 0.2s linear;
}

header .container {
    max-width: 1880px;
    width: 100%;
}

.submenu {
    padding-top: 60px;
    padding-left: 30px;
    display: none;
}

.header-mobile {
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    height: 120px;
    display: flex;
    margin-right: 30px;
    justify-content: space-between;
    align-items: center;
}

.close-menu {
    font-size: 16px;
}

.opened .main-link,
.opened .main-link-a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
}

.menu-toggle {
    margin-right: 30px;
}

.intro-purple .reduced .menu-toggle {
    color: #4f2da6;
}

header.opened .submenu {
    position: absolute;
    top: 0;
    right: 0;
    background: #6438d1;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    display: block;
}

header.opened .overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

header.transparent {
    background: transparent;
}

header.transparent.reduced,
header.reduced {
    height: 60px;
    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.075);
}

.intro-purple .menu-toggle {
    color: #FFF;
}

.intro-purple .reduced .main-link,
.intro-purple .reduced .main-link-a {
    color: #2e2f3a;
}

.intro-purple .main-link,
.intro-purple .main-link-a,
.intro-purple .reduced.opened .main-link,
.intro-purple .reduced.opened .main-link-a {
    color: #FFF;
}

header .row {
    height: 110px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s linear;
}

header.reduced .row {
    height: 60px;
}

.brand-logo,
.logo-header-mobile {
    width: 105px;
    margin-left: 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.2s linear;
}

.brand-logo img {
    width: 100%;
    height: auto;
}

header.reduced .brand-logo {
    overflow: hidden;
    height: 16px;
}

header .main-links {
    position: relative;
    z-index: 99;
    display: none;
}

header.opened .main-links {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
}

header .main-links ul {
    display: flex;
}

header.opened .main-links ul {
    display: block;
}

header .main-links ul li {
    margin-left: 30px;
    margin-bottom: 25px;
}

.main-link,
.main-link-a {
    cursor: pointer;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #66687a;
    transition: all 0.2s linear;
}

.opened .main-link,
.opened .main-link-a {
    color: #FFF;
}

.main-link-a i,
.main-link i {
    font-size: 8px;
    color: #0BE0AA;
    margin-right: 15px;
    margin-bottom: 3px;
}

.main-link.active {
    color: #0be0aa;
}

.menu-links a {
    color: #FFF;
}

.submenu-links {
    margin-top: 25px;
}

.submenu-links a {
    color: #FFF;
    position: relative;
}

.link-main-page {
    color: #FFF;
    font-size: 23px;
    letter-spacing: 0.025em;
    line-height: 27px;
    position: relative;
}

.submenu-links a:hover,
a.link-main-page:hover {
    padding-left: 15px;
    color: #00d2f2;
}

span.link-main-page {
    transition: all 0.2s linear;
    font-family: 'Mitr', sans-serif;
    font-weight: 500;
}

.submenu-links li {
    margin-bottom: 20px;
}

.submenu-links li:last-child {
    margin-bottom: 0;
}

.submenu-links a i,
a.link-main-page i {
    font-size: 8px;
    color: #00d2f2;
    position: absolute;
    left: 0;
    bottom: -5px;
    opacity: 0;
    transition: all 0.2s linear;
}

.submenu-links a i {
    left: -10px;
}

a.link-main-page:hover i {
    opacity: 1;
}

.submenu-links a i {
    font-size: 6px;
    bottom: 3px;
}

.submenu-links a:hover i {
    opacity: 1;
    left: 0;
}

.menu-links > li {
    margin-bottom: 25px;
}

.menu-links > li:hover span.link-main-page:not(.disabled) {
    color: #00d2f2;
}

.submenu-cat {
    display: none;
}

.submenu-cat {
    position: absolute;
    top: 0;
    left: 30px;
    right: 0;
    bottom: 0;
    width: calc(100% - 30px);
    max-height: 100vh;
    height: 100vh;
    background: #474853;
    padding-left: 30px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}


/* FOOTER ___________________________________________________*/
footer {
    margin-top: 250px;
    background: #ebecf1;
    padding-bottom: 85px;
    position: relative;
}

footer:after {
    content: '';
    width: 100%;
    height: 140px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -138px;
    background: url(../img/footer.svg) center center no-repeat;
    z-index: 9;
}

footer > .container > .row {
    justify-content: space-between;
}

footer .row {
    flex-direction: column-reverse;
}

.footer-col-logo {
    width: 100%;
    text-align: center;
}

.elup-footer {
    max-width: 200px;
    height: auto;
    margin-top: 35px;
}

.footer-copyright {
    font-size: 12px;
    line-height: 14px;
}

.footer-copyright.lista-termos {
    padding-top: 20px;
}

.footer-copyright.lista-termos ul li {
    display: inline-block;
}

.footer-copyright.lista-termos ul li:nth-child(2) {
    margin-left: 10px;
}

.footer-copyright.lista-termos ul li a {
    color: #373845;
}

.footer-copyright.lista-termos ul li a:hover {
    color: #4f2da6;
}

.footer-col-links {
    margin-top: 25px;
    text-align: center;
}

.footer-col-links h4,
.footer-col-duvidas h4 {
    color: #f95043;
    font-weight: 500;
    margin-bottom: 32px;
}

.footer-col-links li {
    margin-bottom: 15px;
}

.footer-col-links a {
    font-size: 14px;
    color: #4b4e62;
}

.footer-col-links a:hover {
    color: #4722a2;
}

.footer-col-duvidas {
    margin-top: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-cta {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    color: #FFF;
    background: #4f2da6;
    border-radius: 4px;
    letter-spacing: 0.12em;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    text-decoration: none;
}

.footer-cta i {
    font-size: 18px;
    margin-right: 20px;
}

.footer-contacts {
    font-size: 13px;
    width: 100%;
    display: flex;
    margin-top: 25px;
    justify-content: center;
}

.footer-contacts i {
    font-size: 18px;
    margin-left: 10px;
    margin-right: 10px;
    color: #4f2da6;
}

.footer-contacts .phone-number {
    font-size: 18px;
    font-weight: 400;
}

.footer-contacts .phone-number > span {
    font-size: 13px;
}

.footer-contacts a {
    color: #4f2da6;
}


.footer-col-software {
    /*display: none;*/
    margin-top: 0;
}

.footer-col-dennova {
    display: none;
}


@media (min-width: 560px) {
    .elup-footer {
        margin-top: 40px;
    }

    footer .row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    footer .row > div:nth-child(1) {
        order: 1;
    }

    footer .row > div:nth-child(5) {
        order: 2;
    }

    footer .row > div:nth-child(2) {
        order: 3;
        margin-top: 50px;
    }

    footer .row > div:nth-child(3) {
        order: 4;
        margin-top: 50px;
    }

    footer .row > div:nth-child(4) {
        order: 5;
        margin-top: 50px;
    }

    .footer-col-links {
        width: 33.33%;
        text-align: left;
    }

    .footer-col-logo {
        width: 50%;
        text-align: left;
    }

    .footer-col-duvidas {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
    }

    .footer-contacts {
        justify-content: flex-start;
    }

    .footer-col-software {
        display: block;
    }

    .footer-col-dennova {
        display: block;
    }
}


@media (min-width: 800px) {
    .footer-col-logo {
        width: 66.66%;
    }

    .footer-col-duvidas {
        width: 33.33%;
    }

}


@media (min-width: 992px) {
    .footer-col-logo {
        max-width: 220px;
    }

    .header-mobile {
        display: none;
    }

    header .main-links {
        margin-right: 60px;
    }

    header .main-links ul li {
        margin-left: 30px;
        margin-bottom: 0;
    }

    .main-link,
    .main-link-a {
        cursor: pointer;
        font-weight: 500;
        font-size: 17px;
        letter-spacing: 0.07em;
        color: #2e2f3a;
        transition: all 0.2s linear;
    }

    .opened .main-link,
    .opened .main-link-a {
        color: #FFF;
    }

    .main-link i,
    .main-link-a i {
        margin-right: 0;
        margin-bottom: 0;
    }

    .menu-links > li {
        margin-bottom: 45px;
    }

    .submenu-links a {
        color: #FFF;
    }

    a.link-main-page i {
        bottom: -10px;
    }

    .main-link-a i {
        display: none;
    }

    header.transparent .main-link i,
    header.transparent .main-link-a i {
        color: #00d2f2;
    }

    header.opened .main-links ul {
        display: flex;
    }

    header.opened .main-links {
        position: static;
        width: auto;
    }

    .opened .main-link,
    .opened .main-link-a {
        display: inline-block;
    }

    .submenu-cat {
        background: none;
        box-shadow: none;
        position: static;
        padding-left: 0;
    }

    .link-main-page {
        color: #FFF;
        font-size: 32px;
        letter-spacing: 0.025em;
        line-height: 38px;
        position: relative;
    }

    .menu-toggle {
        display: none;
    }

    .brand-logo {
        width: 135px;
        margin-left: 5vw;
    }

    .submenu {
        padding-top: 140px;
        padding-left: 60px;
    }

    header.reduced .brand-logo {
        height: 22px;
    }

    header .main-links {
        display: block;
    }

    header.opened .submenu {
        width: 600px;
        height: 100vh;
        max-height: 100vh;
    }

    footer .row {
        flex-direction: row;
    }

    .footer-col-logo {
        width: 310px;
    }

    footer .row > div:nth-child(1) {
        order: 1;
    }

    footer .row > div:nth-child(5) {
        order: 5;
    }

    footer .row > div:nth-child(2) {
        order: 2;
        margin-top: 0px;
    }

    footer .row > div:nth-child(3) {
        order: 3;
        margin-top: 0px;
    }

    footer .row > div:nth-child(4) {
        order: 4;
        margin-top: 0px;
    }

    .footer-col-links {
        width: auto;
    }

    .footer-col-logo {
        width: auto;
    }

    .footer-col-duvidas {
        width: auto;
    }

    .footer-col-duvidas {
        margin-top: 0;
    }

    .footer-col-logo {
        margin-top: 0;
    }

    footer {
        margin-top: 300px;
    }


}


@media (min-width: 1300px) {

}