/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    font-family: 'Roboto', sans-serif;
    color: #4A4A4A;
    font-weight: 300;
    background: #ffffff;
}

a {
    color: #111111;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #4A4A4A;
    outline: none;
    text-decoration: none;
}

p {
    color: #4A4A4A;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Mono', monospace;
    color: #4A4A4A;
    font-weight: 400;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #111111;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}


/**********************************/
/********* Header Nav CSS *********/
/**********************************/
#nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: all 0.5s;
    z-index: 9;
    opacity: 0;
}

#nav.nav-scrolled {
    transition: all 0.5s;
    opacity: 1;
}

#nav .navbar-dark .navbar-nav .nav-link,
#nav .navbar-dark .navbar-nav .nav-link:focus,
#nav .navbar-dark .navbar-nav .nav-link:hover,
#nav .navbar-dark .navbar-nav .nav-link.active {
    padding: 15px 15px 12px 15px;
    color: #ffffff;
}

@media (min-width: 768px) {
    #nav,
    #nav .navbar {
        padding: 0;
        background: #353535 !important;
    }
    
    #nav .navbar-brand {
        display: none;
    }
    
    #nav a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: none;
    }
    
    #nav .navbar-dark .navbar-nav .nav-link:hover,
    #nav .navbar-dark .navbar-nav .nav-link.active {
        background: #111111;
        transition: none;
    }
}

@media (max-width: 768px) {   
    #nav,
    #nav .navbar {
        background: #333333 !important;
    }
    
    #nav a.nav-link {
        padding: 5px !important;
    }
}



/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 90px 0 75px 0;
     background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/header-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header .header-content {
    width: 100%;
    text-align: center;
}

#header .header-content .logo {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

#header .header-content .logo img {
    max-width: 200px;
    max-height: 100px;
}

#header .header-content h2 {
    color: #ffffff;
    font-size: 55px;
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
}

#header .header-content h2 span {
    color: #222222;
}

#header .header-content p {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

#header .header-content .btn {
    margin: 15px;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 22px;
    border: 2px solid #ffffff;
}

#header .header-content .btn i {
    margin-right: 10px;
}

#header .header-content .btn:hover {
    color: #111111;
    background: #ffffff;
}

@media (max-width: 992px) {
    #header .header-content h2 {
        font-size: 40px;
    }
    
    #header .header-content p {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    #header .header-content h2 {
        font-size: 40px;
    }
    
    #header .header-content p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    #header .header-content h2 {
        font-size: 28px;
    }
    
    #header .header-content p {
        font-size: 20px;
    }
}



/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding-bottom: 8px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    top: 0;
    left: calc(50% - 100px);
    background: #111111;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 50px);
    background: #cccccc;
}

.section-header h2 {
    position: relative;
    color: #111111;
    font-size: 50px;
    text-align: center;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.section-header p {
    color: #999999;
    font-size: 22px;
    text-align: center;
    margin: 0
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 50px;
    }
    
    .section-header p {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 40px;
    }
    
    .section-header p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 18px;
    }
}



/**********************************/
/************ About CSS ***********/
/**********************************/
#about {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#about .about-content {
    width: 100%;
    text-align: left;
}

#about .about-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

#about .about-content ul {
    margin-left: 32px;
}

#about .about-content ul li {
    font-size: 22px;
    margin-bottom: 5px;
}

#about .about-content ul li i {
    color: #111111;
}

#about .about-img {
    position: relative;
    overflow: hidden;
    text-align: right;
}

#about .about-img img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 767.98px) {
    #about .about-img {
        text-align: left;
        margin-top: 45px;
    }
}



/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #f7f7f7;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 70px;
    height: 70px;
    text-align: center;
    float: left;
    margin-top: 6px;
    padding: 15px 0;
    border: 2px solid #111111;
    border-radius: 5px;
    transition: all .3s;
}

#feature .product-icon i {
    color: #111111;
    font-size: 32px;
}

#feature .product-feature:hover .product-icon {
    background: #111111;
}

#feature .product-feature:hover .product-icon i {
    color: #ffffff;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 85px);
    float: left;
}

#feature .col-md-4:first-child .product-content {
    margin-right: 15px;
}

#feature .col-md-4:last-child .product-content {
    margin-left: 15px;
}

#feature .product-feature h2 {
    color: #111111;
    font-size: 22px;
    margin-bottom: 5px;
}

#feature .product-feature p {
    margin-bottom: 0;
}

#feature .product-img {
    position: relative;
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .col-md-4:first-child .product-content,
    #feature .col-md-4:last-child .product-content {
        margin-right: 0;
        margin-left: 15px;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}




/**********************************/
/********* Screenshot CSS *********/
/**********************************/
#screenshot {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#screenshot .screenshot-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

#screenshot .screenshot-img {
    position: relative;
    display: block;
}

#screenshot .screenshot-item img {
    max-width: 100%;
    max-height: 100%;
}

#screenshot .owl-nav,
#screenshot .owl-dots {
    margin-top: 15px;
    text-align: center;
}

#screenshot .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
}

#screenshot .owl-dot.active {
    background: #111111;
}



/**********************************/
/************ FAQs CSS ************/
/**********************************/
#stats {
    position: relative;
    padding: 90px 0;
	background: #f7f7f7;
	
}

#faqs {
    position: relative;
    padding: 90px 0;
	background: #ffffff;
}

#faqs h3 {
    font-size: 18px;
    padding: 10px;
    margin: 0 0 0 0;
    
    align-items: center;      /* Vertically center the content */
                 /* Ensure the container takes up full height */
}

#faqs .card {
    margin-bottom: 20px;
	
   border: none;
    border-radius: 0;
	
}

#faqs .card:last-child {
    margin-bottom: 0;
}

#faqs .card-header {
    padding: 0;
    border: none;
	
}

#faqs .card-header a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    color: #757575;
    font-size: 18px;
}

#faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f107";
    float: right;
    color: #999999;
    font-size: 18px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f106";
    float: right;
    color: #999999;
    font-size: 18px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-body {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    border-color: rgba(0, 0, 0, .03) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05);
}

#faqs .faqs-img {
    position: relative;
    width: 100%;
}

#faqs .faqs-img img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 767.98px) {
    #faqs .faqs-img {
        margin-bottom: 30px;
    }
}



/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonials {
    position: relative;
    padding: 90px 0;
    background: #f7f7f7;
}

#testimonials .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

#testimonials .testimonial-img {
    position: relative;
    display: inline-block;
    border: 10px solid #ffffff;
    border-radius: 100%;
    margin-bottom: -65px;
    z-index: 1;
}

#testimonials .testimonial-item img {
    margin: 0 auto;
    max-width: 100px;
    max-height: 100px;
    border-radius: 100%;
}

#testimonials .testimonial-content {
    position: relative;
    width: 100%;
    padding: 25px 25px 25px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
}

#testimonials .testimonial-item p {
    font-size: 16px;
}

#testimonials .testimonial-content h3 {
    font-size: 16px;
    color: #999999;
    margin-bottom: 10px;
}

#testimonials .testimonial-content h4 {
    color: #cccccc;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
    margin-top: 15px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
}

#testimonials .owl-dot.active {
    background: #111111;
}



/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#contact .contact-form {
    color: #666666;
}

#contact .form-control {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #cccccc;
    border: 1px solid #cccccc;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: #111111;
}

#contact textarea.form-control {
    height: 150px;
    padding-top: 5px;
}

#contact button.btn {
    color: #111111;
    background: #ffffff;
    border: 1px solid #111111;
}

#contact button.btn:hover {
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

#contact .contact-map {
    position: relative;
    width: 100%;
}

#contact .contact-map iframe {
    width: 100%;
    height: 300px;
}

@media (max-width: 767.98px) {
    #contact .contact-form {
        margin-bottom: 30px;
    }
}



/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 30px 0 15px 0;
    background: #222222;

}

#footer .social,
#footer .copyright,
#footer .credit {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 15px
}

#footer .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 7px 0;
    margin-bottom: 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

#footer .social a i {
    font-size: 18px;
    color: #ffffff;
}

#footer .social a:hover {
    border-color: #007BFF;
    background: #007BFF;
}

#footer .social a:hover i {
    color: #fff;
}

#footer p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

#footer p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

#footer a {
    color: #ffffff;
}


#footer ul {
    list-style: none;
    padding: 0;
}
#footer ul li {
    margin-bottom: 10px;
}
#footer ul li a {
    text-decoration: none;
    color: #FFF;
}

#footer ul li a:hover {
    color: #007BFF;
}

#footer .text-center {
    text-align: center;
}
