/*
  Theme Name: Digi-Adapt
  css : faizan
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #652857;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}
*, ::after, ::before {
    box-sizing: border-box;
    vertical-align: middle;
}
a {
    color: #ec008c;
    transition: 0.5s;
}
a:hover,a:active,a:focus {
    color: #ec008c;
    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;
}
/* custom scroll css */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    /*    box-shadow: inset 0 0 5px grey; */
    border-radius: 0px;
    background: #fff; 
}
::-webkit-scrollbar-thumb {
    background: #ec008c; 
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ec008c; 
}

/************custom placeholder**************/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #652857;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #652857;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #652857;
}
:-moz-placeholder { /* Firefox 18- */
    color: #652857;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(45deg, #652857, #ec008c);
    color: #fff;
    padding: 3px 10px;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: none;
}
.back-to-top:focus {
    background: linear-gradient(45deg, #652857, #ec008c);
    color: #fff;
    outline: none;
}
.back-to-top:hover {
    background: #ec008c;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 10px 0;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}
#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: 7px auto;
    padding: 0;
    line-height: 1;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ec008c;
}
#header #logo h1 a, #header #logo h1 a:hover {
    color: #ec008c;
}
#header #logo img {
    padding: 5px 0;
    width: 200px;
}
#header.header-fixed {
    background: linear-gradient(70deg, #ffffff, #ec008c);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    height: 70px;
    transition: all 0.5s;
}
#header.header-fixed  #logo img {
    padding: 10px 0;
    width: 150px;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 80vh;
    background: linear-gradient(119deg, rgba(255, 255, 255,0.7), rgb(236, 0, 140));
    background-size: cover;
    position: relative;
}
#intro .intro-text {
    position: absolute;
    left: 0;
    top: 80px;
    right: 0;
    height: calc(80% - 40px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
#intro h2 {
    margin: 30px 0 10px 0;
    padding: 0 10px;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}
#intro p {
    color: #fff;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
}
#intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    /*    border: 2px solid #fff;*/
    color: #ec008c;
    background: #fff;

}
#intro .btn-get-started:hover {
    color: #fff;
    background: #ec008c;
}

/*--------------------------------------------------------------
# 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: 30px;
}
.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    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: 10px auto;
}

/* Nav Meu Styling */
.nav-menu a {
    padding: 7px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    outline: none;
}
.nav-menu > li {
    margin-left: 10px;
}
.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: #652857;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}
.nav-menu ul li:hover > a {
    color: #ec008c;
}
.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    padding: 20px;
    border: 0;
    background: none;
    font-size: 24px;
    line-height: 20px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}
#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}
#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
#mobile-nav ul li {
    position: relative;
}
#mobile-nav ul li a {
    color: #fff;
    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: #ec008c;
}
#mobile-nav ul .menu-item-active {
    color: #ec008c;
}
#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 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 .section-title {
    font-size: 32px;
    margin: 0 auto 10px;
    color: #652857;
    text-align: center;
    font-weight: 600;
}
.section-description {
    text-align: center;
    color: #652857;
    font-style: italic;
    margin: 0 auto 10px;
    padding: 0 0 15px;
    font-size: 20px;
}
.section-header .section-divider {
    display: block;
    width: 100px;
    height: 4px;
    background: #ec008c;
    /*    background: linear-gradient(10deg, #ec008c 0%, #652857 100%);*/
    margin: 0 auto;
    margin-bottom: 20px;
}
/* Section with background
--------------------------------*/
.section-bg {
    background: #eff5f5;
}

/* About Us Section
--------------------------------*/
#about {
    padding: 40px 0;
    overflow: hidden;
}
#about .about-img {
    overflow: hidden;
}
#about .content .h2 {
    color: #652857;
    font-weight: 300;
    font-size: 24px;
}
#about .content h3 {
    color: #652857;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 10px;
}
#about .content h2{
    font-size: 26px;
    font-weight: 500;
    line-height: 35px;
    margin: 0 auto 5px;
    color: #ec008c;
}
#about .content h4{
    font-size: 24px;
    margin: 30px auto 30px;
    color: #652857;
    font-weight: 400;
    text-align: center;
}
#about .content p {
    line-height: 26px;
}
#about .content p:last-child {
    margin-bottom: 0;
}
#about .content i {
    font-size: 15px;
    padding-right: 4px;
    color: #652857;
}
#about .content ul {
    list-style: none;
    padding: 0;
}
#about .content ul li {
    padding-bottom: 5px;
    color: #652857;
    font-weight: 600;
    text-transform: capitalize;
}
#about .box {
    margin-bottom: 15px;
    text-align: center;
}
#about .box .icon {
    margin-bottom: 10px;
}
#about .box .icon i {
    color: #652857;
    font-size: 40px;
    transition: 0.5s;
    line-height: normal;
}
#about .box .icon i:before {
    background: #ec008c;
    background: linear-gradient(45deg, #ec008c 0%, #652857 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#about .box .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
}
#about .box .title a {
    color: #652857;
}
#about .box .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
#about .box .section-description {
    padding-bottom: 10px;
}

/* More Features Section
--------------------------------*/
#features {
    padding: 40px 0;
    overflow: hidden;
}
#features .box {
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    transition: 0.4s;
}
#features .icon {
    float: left;
}
#features .icon i {
    color: #652857;
    font-size: 60px;
    transition: 0.5s;
    line-height: 80px;
}
#features .icon i:before {
    background: #ec008c;
    background: linear-gradient(45deg, #ec008c 0%, #652857 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#features .title  {
    margin-left: 100px;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: capitalize;
}
#features  .title a {
    color: #652857;
}
#features .description  {
    margin-left: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
#features .description .fas.fa-circle{
    font-size: 13px;
    line-height: normal;
    margin-top: -5px;
    padding-right: 5px;
}
/* Contact Section
--------------------------------*/
#contact {
    padding: 40px 0;
    overflow: hidden;
    text-align: left;
}
#contact img{
    width: 200px;
    padding: 0 0 20px;
}
#contact .contact-about h1{
    font-size: 30px;
    margin: 0 auto 15px;
    padding: 0;
    line-height: 1;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ec008c;
}
#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    color: #652857;
    margin-bottom: 15px;
    text-align: justify;
}
#contact .social-links {
    padding-bottom: 20px;
}
#contact .social-links a {
    font-size: 16px;
    display: inline-block;
    background: #ec008c;
    color: #fff;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    border: 1px solid transparent;
}
#contact .social-links a:hover {
    background: #fff;
    color:rgba(236, 0, 140, 0.6);
    border: 1px solid #ec008c;
}
#contact .info {
    color: #652857;
    text-align: left;
}
#contact .info .align{
    margin-bottom: 20px;
}
#contact .info i {
    font-size: 20px;
    color: #ec008c;
    line-height: 0;
    display: inline-block;
    padding-right: 16px;
}
#contact .info p {
    line-height: 24px;
    font-size: 14px;
    margin: 0 auto;
    display: inline-block;
    color: #652857;
}
#contact .form #sendmessage {
    color: #ec008c;
    border: 1px solid #ec008c;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
#contact .form #sendmessage.show,#contact .form #errormessage.show,#contact .form .show {
    display: block;
}
#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}
#contact .form-group {
    margin-bottom: 10px;
}
#contact .form input,#contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    color: #652857;
    border: 1px solid #652857;
}
#contact .form button[type="submit"] {
    background: linear-gradient(45deg, #652857, #ec008c);
    border: 0;
    border-radius: 20px;
    padding: 8px 30px;
    color: #fff;
    outline: none;
}
#contact .form button[type="submit"]:hover {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #652857;
    font-size: 14px;
}
#footer .footer-links a {
    color: #652857;
    padding-left: 15px;
}
#footer .footer-links a:first-child {
    padding-left: 0;
}
#footer .footer-links a:hover {
    color: #ec008c;
}


@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
        margin: 12px auto;
    }
    #intro {
        width: 100%;
        height: 60vh;
    }
    #intro .intro-text {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: calc(100% - 10px);
    }
    #intro h2 {
        font-size: 24px;
        line-height: 36px;
    }
    #intro p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    #nav-menu-container {
        display: none;
    }
    #mobile-nav-toggle {
        display: inline;
    }

    #contact {
        padding: 40px 0;
        text-align: center;
    }
    #contact .info {
        color: #652857;
        text-align: center;
    }
    #contact .info p {
        text-align: left;
    }
    #contact .contact-about p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }
    #features .box {
        margin-bottom: 20px;
    }
    #features .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }
    #features .title, #features .description {
        margin-left: 0;
    }
}
@media (min-width: 1025px) {
    #intro {
        background-attachment: fixed;
    }
}