/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;

    height: auto!important;
}

a {
    color: #E91E63;
    transition: 0.5s;
}

a:hover, a:active, a:focus {
    color: #51d8af;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.my-account-button{
    padding: 10px 10px!important;
    border: 2px solid!important;
}

.my-account-button:hover{
    color: var(--clr-secondary)!important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 20px 0;
    height: 84px;
    transition: all 0.5s;
    z-index: 997;

    position: sticky;
    top: 0;
}

#header #logo h1 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    margin-top: 12px;
}

#header #logo h1 a {
    color: #fff;
    line-height: 1;
    display: inline-block;
}

#header #logo h1 a span {
    color: #0b22ff;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header {
        padding: 20px 0;
    }
    #header #logo h1 {
        font-size: 20px;
    }
    #header #logo img {
        max-height: 40px;
    }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 80vh;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

#intro .intro-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    left: 14%;
    z-index: 10;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}

#intro .intro-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: normal;
    text-align: left;
}

#intro .intro-content h2 span {
    color: #fff;
    text-align: left;
    font-size: 64px;
    text-transform: uppercase;
    font-weight: 700;
}
#intro .banner-div {
    float: left;
    position: absolute;
    right: 0;
    width: 50%;
    bottom: 97px;
    background: #fff;
    border-radius: 124% 120% 0% 100%;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
    border: 8px solid #9eaede;
    border-right: 0;
    border-left-width: 25px;
    /* border-bottom: 0; */
}

#intro .banner-div > img {
    position: relative;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    #intro .intro-content h2 {
        font-size: 22px;
        padding: 0;
    }
    #intro{
        font-size: 22px;
        padding: 0;
        height: 60vh;
    }
    #intro .banner-div {
        float: left;
        position: absolute;
        right: 0;
        width: 50%;
        top: 241px;
    }

    #intro .intro-content h2 div {
        display: none;
    }
}

#intro .intro-content .btn-get-started, #intro .intro-content .btn-projects {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#intro .intro-content .btn-get-started {
    border: 2px solid #ffffff;
    margin: 0;
}

#intro .intro-content .btn-get-started:hover {
    background: linear-gradient(45deg, #E91E63 -132%, #0c2e8a 100%);
    color: #ffffff;
}

#intro .intro-content .btn-projects {
    background: #E91E63;
    border: 2px solid #E91E63;
}

#intro .intro-content .btn-projects:hover {
    background: none;
    color: #E91E63;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 8px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
    float: right;
    margin: 0;
}

@media (max-width: 768px) {
    #nav-menu-container li:not(.my-account-li) {
        display: none;
    }
}

/* Nav Meu Styling */
.nav-menu a {
    padding: 10px 0px;
    text-decoration: none;
    display: inline-block;
    color: #ffffff9c;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    border-bottom: 2px solid transparent;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.nav-menu > li {
    margin-left: 10px;
    padding: 0 8px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #E91E63;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: #0c2e8a;
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
    background: linear-gradient(45deg, #E91E63 -200%, #0c2e8a 100%);
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fffc;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #E91E63;
}

#mobile-nav ul .menu-item-active {
    color: #E91E63;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(13, 13, 13, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--clr-primary);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    /* display: inline-block; */
    text-align: center;
}

.section-header p {
    padding: 0;
    margin: 0;
    text-align: center;
}

/* Presentation Section
--------------------------------*/
#presentation {
    padding: 60px 0 0 0;
}

#presentation .box {
    padding: 40px;
    margin-bottom: 40px;
    background: #fff;
    transition: 0.4s;
    border: 1px solid var(--clr-primary);
    border-bottom: 2px solid var(--clr-primary);

    height: 286px;
}

#presentation .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

#presentation .box .icon {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
}

#presentation .box .icon i {
    color: #444;
    font-size: 44px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 0px;
}

#presentation .box .icon i:before {
    background: #0c2e8a;
    background: linear-gradient(45deg, #E91E63 0%, #405ece 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#presentation .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 22px;
    display: block;
    width: 100%;
    text-align: center;
    float: left;
    margin: 0;
}

#presentation .box h4 a {
    color: #444;
}

#presentation .box p {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    display: block;
    margin: 0;
    padding-top: 15px;
}

@media (max-width: 767px) {
    #presentation .box .box {
        margin-bottom: 20px;
    }
    #presentation .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }
    #presentation .box h4, #presentation .box p {
        margin-left: 0;
        text-align: center;
    }
}

/* Discover Section
--------------------------------*/
#discover {
    background: linear-gradient(45deg, #E91E63 -132%, #0c2e8a 100%);
    padding: 90px 50px;
    color: #ffffff9c;
}

/* Screenshots Section
--------------------------------*/
.app_screenshots_slides {
    padding: 0 6%;
}

.app_screenshots_slides .app-screen {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85)
}

.app_screenshots_slides .center .app-screen {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.app-screenshot .owl-dot {
    height: 11px;
    width: 11px;
    border: 2px solid #a49fba!important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    margin-top: 50px;
}

.app-screenshot .owl-dot.active {
    background-color: var(--clr-primary);
    border: transparent;
}

.app-screenshot .owl-dots {
    height: 100%;
    width: 100%;
    text-align: center;
}
.app-screenshot .owl-item img {
    display: block;
    height: auto !important;
    margin: 0 auto !important;
    width: 100% !important;
}
.card-pricing.popular {
    z-index: 1;
    border: 3px solid #E91E63;
}
.card-pricing .list-unstyled li {
    padding: .5rem 0;
    color: #6c757d;
}
a.btn.btn-primary {
    background: #E91E63;
    border: #E91E63;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #081e5b;
    padding: 0 0 30px 0;
    font-size: 14px;
    color: #fff;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #ffffffad;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ffffff85;
    margin-top: 8px;
}

#footer .credits a {
    color: #E91E63;
}
.owl-carousel .owl-item img {
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto;
}