/* font-family: 'Open Sans', 'Raleway' */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*============
   Global CSS 
============== */
body{
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Raleway', sans-serif;
}
/* ul{
	list-style: none;
	padding: 0;
} */
/* ===========
Header Section 
============== */
header{
	background: url('../img/banner.png') no-repeat center;
	background-size: cover;
    background: #000;
}
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .show>.nav-link {
    color: #fff;
    padding: 10px 10px;
}
.navbar-light .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 10px 20px;
    text-transform: capitalize;
}
.navbar-light .navbar-nav .nav-link::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 139, 56, 0);
    top: 0;
    right: -100%;
    transition: 0.3s ease-in-out;
}
.navbar-light .navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 139, 56, 0);
    bottom: 0;
    left: -100%;
    transition: 0.3s ease-in-out;
}
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover {
    color: #ff8b38;
}
.navbar-light .navbar-nav .nav-link:hover::after{
    left: 0;
    background: rgba(255, 139, 56, 1);
}
.navbar-light .navbar-nav .nav-link:hover::before{
    right: 0;
    background: rgba(255, 139, 56, 1);
}

/* ============
Banner Section 
=============== */
.banner{
    background: url(../img/bg-banner.png) no-repeat center top;
    background-size: cover;
    padding: 150px 0;
}
.banner-logo{
    width: 150px;
    height: auto;
}
.banner h1{
    color: #fff;
    font-size: 38px;
    padding: 20px 0;
    margin: 0;
    line-height: 50px;
}
.title-separator{
    background: #fff;
    width: 75px;
    height: 3px;
    margin-bottom: 20px;
}
.banner p{
    color: #ddd;
    
}
.btn-download{
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 2px solid #fff;
    border-radius: none;
    padding: 13px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    background: transparent;
    z-index: 1;
}
.btn-download::before{
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: 0.3s ease-in-out;
    z-index: -1;
}
.btn-download:hover::before{
    left: 0;
}
.btn-download:hover{
    color: #000;
}

/* Banner Form */
.banner-from{
    background: #fff;
}
.form-header{
    background: #fbfbfb;
    padding: 20px;
}
.form-header h2{
    text-transform: capitalize;
    font-size: 20px;
    text-align: center;
    color: #333;
    font-weight: 700;
    word-spacing: 3px;
}
.form-header span{
    color: #ff8b38;
    text-transform: uppercase;
}
.form-body{
    padding: 30px;
}
.form-group{
    margin-bottom: 30px;
}
.form-control{
    border: none;
    border-bottom: 2px solid #d6d6d6;
    border-radius: none;
}
.form-control:focus{
    box-shadow: none;
    border-color: #ff8b38;
}
.btn-submit{
    background: #ff8b38;
    color: #fff;
    border: none;
    width: 100%;
    padding: 20px 0;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
}
.btn-submit:focus{
    outline: none;
}
.btn-submit:hover{
    background: #f77a1d;
}



/* ==================
Social Media Section 
===================== */
.social-media{
    padding: 20px 0 15px;
}
.social-media h3{
    padding-top: 5px;
    font-size: 24px;
    font-weight: 700;
}
.social-media p{
    color: #a4a5a8;
}
.social-items{
    text-align: right;
}
.social-items ul{
    padding: 0;
}
.social-items ul li{
    list-style: none;
    display: inline;
}
.social-items ul li .fa{
    font-size: 50px;
    color: #a4a5a8;
    /* padding: 20px 5px; */
    padding: 20px 21px;
}
.social-items ul li a{
    text-decoration: none;
}
.social-items ul li .fa:hover{
    color: #ff8b38;;
}
.border-blur{
    border-bottom: 2px solid #a4a5a8;
    filter: blur(1px);
}


/* ==================
Features Tab Section 
===================== */
.features-tab{
    background: #f5f5f5;
    padding: 75px 0;
}
.tab-panel ul{
    padding: 0;
}
.tab-panel ul li{
    list-style: none;
    color: #fff;
    margin-bottom: 10px;
    width: 125px;
    height: 125px;
    line-height: 125px;
    text-align: center;
    background: #333333;
}
.tab-panel ul .active{
    background: #ff8b38;
}
.tab-panel ul li:hover{
    cursor: pointer;
    /* background: #ff8b38; */
}
.tab-contents h3{
    padding: 30px 0 15px;
    font-size: 24px;
    font-weight: 700;
}
.tab-contents p{
    font-size: 16px;
    margin-bottom: 25px;
    color: #a4a5a8;
    padding-right: 40px;
}
.btn-tab{
    background: #ff8b38;
    color: #fff;
    border: none;
    padding: 13px 40px;
    font-size: 18px;
    font-weight: 700;
}
.btn-tab:hover{
    background: #333;
}
.features-tab img{
    padding-top: 70px;
}


/* ====================
First Features Section 
======================= */
.features-list{
    background: #fff;
    padding: 75px 0;
}
.features-list h3{
        font-size: 24px;
        font-weight: 700;
        color: #212121;
        
}
.sub-separator{
        background: #ff8b38;
        width: 17%;
        height: 3px;
        margin: 20px 0;
}
.features-list h5 {
    color: #212121;
}

.features-list p{
    color: #a4a5a8;
    /* margin: 0; */
}
.features-list .fa{
    font-size: 25px;
    width: 50px;
    height: 50px;
    border: 2px solid #ff8b38;
    text-align: center;
    border-radius: 50%;
    line-height: 50px;
    color: #ff8b38;
    transition: .3s ease-in-out;
}
.features-list .fa:hover {
    background: #ff8b38;
    color: #fff;
}



/* ====================
Second Features Section 
======================= */
.Second-Events-section {
    background: #f5f5f5;
    padding: 75px 0;
}
.Second-Events-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
}
.events-section-hr {
    background: #ff8b38;
    width: 17%;
    height: 3px;
    margin: 20px 0;
}
.Second-Events-section p {
    color: #a2a3a6;
}


/* =============
Service Section 
================ */
.our-Services-section {
    padding: 75px 0;
}
.our-Services-section h1 {
    color: #212121;
    font-weight: 400;
    padding: 15px 0;
}
.Our-Services-hr {
    background: #ff8b38;
    width: 10%;
    height: 2px;
    margin: 0 auto;
}
.our-Services-section h5 {
    font-weight: 400;
    color: #a2a3a6;
    padding: 20px 0;
    font-size: 16px;
}
.services-item .fa {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 40px;
    border: 2px solid #ff8b38;
    border-radius: 50%;
    text-align: center;
    transition: .3s ease-in-out;
    color: #ff8b38;
}
.services-item h3 {
    padding: 20px 0;
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.services-item p {
    color: #a2a3a6;
    font-size: 15px;
}


/* =============
Pricing Section 
================ */
.pricing-section {
    background: #f5f5f5;
    padding: 75px 0;
}
.pricing-section h1 {
    font-weight: 400;
    padding: 10px 0;
    color: #212121;
    text-align: center;
}
.pricing-area .pricing-item h1 span {
    font-size: 30px;
}
.pricing-section .pricing-section-hr {
    width: 80px;
    height: 2px;
    background: #ff8b38;
    margin: 0 auto;
}
.pricing-area-hr {
    background: #f5f5f5;
    width: 100%;
    height: 2px;
}
.pricing-section p {
    padding: 15px 0;
    color: #a2a3a6;
}
.pricing-area {
    padding: 15px;
    transition: .3s ease-in-out;
}
.pricing-area .pricing-item{
    background: #333333;
}
.pricing-area .pricing-item h2 {
    padding: 10px 0;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.pricing-area .pricing-item h1 {
    font-size: 100px;
    font-weight: bold;
    color: #fff;
    padding: 0;
    margin: 0;
}
.pricing-area .pricing-item h3 {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin: 0;
    padding: 15px 0;
    text-align: center;
}
.item-content ul {
    list-style: none;
    padding: 0;
}
.item-content ul li {
    background: #ffffff;
    padding: 10px 0;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    color: #a4a5a8;
    text-align: center;
}
.pricing-item{
    background: #000;
}
.middle-up {
    margin-top: 3rem!important;
}
.pricing-item h4 {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    margin: 0;
    background: #ff8b38;
    transition: .3s ease-in-out;
    font-size: 16px;
    padding: 2px 0;
    text-align: center;
}
.item-content li{
    font-size: 16px;
    text-transform: uppercase;
}
.item-content-hr{
    border-bottom: 2px solid #f5f5f5;
}
.pricing-section .most-popular {
    margin-top: -25px;
}



/* ================
Testimonial Section 
=================== */
.testimonial-section{
    background: #fff;
    padding: 75px 0;
}
.testimonial-section h1 {
    font-size: 30px;
    margin: 0 0 20px;
}
.testimonial-section .testimonial-section-hr {
    background: #ff8b38;
    width: 85px;
    height: 3px;
    margin: 0 auto;
}
.testimonial-section h3 {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #a2a3a6;
    margin-top: 20px;
}
.testimonial-area .testimonial-item {
    position: relative;
    background: #f5f5f5;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    margin: 15px;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.testimonial-item .arrow {
    background: #f5f5f5;
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -15px;
    left: 40px;
    transform: rotate(45deg);
}

/* ===========
Custom Section 
==============*/
.custom-section {
    background: url(../img/custom-panel.png) no-repeat center;
    background: cover;
    padding: 75px 0;
}
.custom-section h1 {
    font-weight: 400;
    padding-bottom: 25px;
    color: #fff;
}
.custom-section .custom-section-hr {
    width: 100px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
}
.custom-section p {
    font-family: 'Raleway', sans-serif;
    color: #c2c1bd;
    font-weight: 300;
    font-size: 16px;
    padding: 25px 0;
    margin: 5px;
}
.testimonial-area h4{
    font-size: 24px;
    font-weight: 700;
}
/* .custom-section .btn-custom {
    background: transparent;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 10px 40px;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    outline: none;
    transition: .3s ease-in-out;
}
.custom-section .btn-custom:hover {
    color: #ff8b38;
} */
.custom-section .btn-custom{
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 2px solid #fff;
    border-radius: none;
    padding: 13px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    background: transparent;
    z-index: 1;
}
.custom-section .btn-custom::before{
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: 0.3s ease-in-out;
    z-index: -1;
}
.custom-section .btn-custom:hover::before{
    left: 0;
}
.custom-section .btn-custom:hover{
    color: #000;
}

/* =============
Contact Section 
================*/
.contact-section {
    padding: 75px 0;
}
.contact-section h1 {
    /* padding: 15px 0; */
    margin: 0;
    color: #212121;
}
.contact-section-hr {
    width: 90px;
    height: 3px;
    background: #ff8b38;
    margin: 0 auto;
}
.contact-section p {
    padding: 15px 0;
    color: #a4a5a8;
    font-size: 16px;
}
.contact-section .form-control {
    border: none;
    border-bottom: 1px solid #d6d6d6;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}
.contact-section .contact-btn {
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    background: #ff8b38;
    outline: none;
    transition: .3s ease-in-out;
    border-radius: 5px;
}
.contact-section .contact-btn:hover {
    background: #e46506;
    color: #fff;
}


/* ===========
Footer Section 
==============*/
footer {
    background: #000;
    padding: 5px 0;
}
footer .social-media ul {
    list-style: none;
    padding: 0;
}
footer .social-media ul li {
    display: inline;
    padding: 0 15px;
    font-size: 25px;
}
footer .social-media li a .fa{
    color: #eee;
    text-decoration: none;
    line-height: 34px;
    transition: 0.3s ease-in-out; 
}
footer .social-media li a .fa:hover{
    color: #ff8b38;
}
footer .social-media h3 {
    font-size: 16px;
    color: #7f7f7f;
    font-weight: 400;
    margin-top: -10px;
}



/* =====================
Media Query For Notebook
======================== */
@media (min-width: 769px) and (max-width: 992px){
	.header-responsive{margin: 0;}
    .navbar-light .navbar-toggler {color: #fff;border-color: #fff;}
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .show>.nav-link {margin-top: 10px;}
    .banner{padding: 50px 0;}
    .mbl-center{text-align: center;}
    .mbl{margin-bottom: 30px;}
    .banner h1{font-size: 20px;padding: 20px 0;line-height: 30px;}
    .title-separator {display: block;margin: 0 auto 10px;}
    .form-body {padding: 0;}
    .social-media{text-align: center;}
    .social-items ul {padding-top: 32px;}
    .social-items ul li .fa {font-size: 20px;padding: 20px 15px;font-size: 25px;}
    .tab-panel ul li{width: 120px;height: 120px;float: left;margin: 2px 0px 0 -30px;}
    .tab-contents h3{text-align: center;}
    .tab-contents p{text-align: center;padding: 0;}
    .btn-tab {display: block;margin: 0 auto;}
    .features-tab img {margin: 15px 0 0 0;height: 75%;}
    .features-tab {padding: 50px 0;}
    .features-list {padding: 50px 0;}
    .img-fluid {margin: 100px 0 0 0;max-width: 100%;}
    .features-list h3 {text-align: center;}
    .sub-separator {display: block;margin: 10px auto;}
    .features-list p {text-align: center;}
    .features-list .fa {display: block;margin: 0 auto 20px;}
    .features-list h5 {text-align: center;}
    .Second-Events-section {padding: 50px 0;}
    .Second-Events-section h2{text-align: center;}
    .events-section-hr {margin: 0 auto 10px;}
    .Second-Events-section p{text-align: center;}
    .our-Services-section {padding: 50px 0;font-size: 26px;}
    .pricing-section{padding: 50px 0;}
    .pricing-section p{margin-bottom: 65px;}
    .pricing-section h1 {font-size: 26px;}
    .middle-up {margin-top: 0 !important;}
    .pricing-area {margin-bottom: -45px; padding: 0;}
    .pricing-section .most-popular {margin-top: -90px;}
    .nbook{margin: 0 0 50px !important;padding: 0;}
    .testimonial-section{padding: 50px 0;}
    .testimonial-section h1 {font-size: 26px;}
    .testimonial-area .testimonial-item{margin-top: -20px;}
    .custom-section {padding: 50px 0;}
    .custom-section h1 {font-size: 26px;}
    .contact-section {padding: 30px 0;}
    .contact-section h1{font-size: 26px;}
    footer .social-media ul li {padding: 0 10px;font-size: 20px;}
    footer .social-media { padding: 0;}
}


/* ===================
Media Query For Tablet
====================== */
@media (min-width: 577px) and (max-width: 768px){
	.header-responsive{margin: 0;}
    .navbar-light .navbar-toggler {color: #fff;border-color: #fff;}
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .show>.nav-link {margin-top: 10px;}
    .banner{padding: 50px 0;}
    .mbl-center{text-align: center;}
    .mbl{margin-bottom: 30px;}
    .banner h1{font-size: 20px;padding: 20px 0;line-height: 30px;}
    .title-separator {display: block;margin: 0 auto 10px;}
    .social-media{text-align: center;}
    .social-items ul {margin: 0 100px 0px 0;}
    .social-items ul li .fa {font-size: 25px;padding: 20px 10px;}
    .tab-panel ul li{width: 120px;height: 120px;float: left;margin: 0 2px;}
    .tab-contents h3{text-align: center;}
    .tab-contents p{text-align: center;padding: 0;}
    .btn-tab {display: block;margin: 0 auto;}
    .features-tab img {padding-top: 50px;width: 100%;margin: 0 auto;}
    .features-tab {padding: 50px 0;}
    .features-list {padding: 50px 0;}
    .img-fluid {max-width: 100%;}
    .features-list h3 {text-align: center;}
    .sub-separator {display: block;margin: 10px auto;}
    .features-list p {text-align: center;}
    .features-list .fa {display: block;margin: 0 auto 20px;}
    .features-list h5 {text-align: center;}
    .Second-Events-section {padding: 50px 0;}
    .Second-Events-section h2{text-align: center;}
    .events-section-hr {margin: 0 auto 10px;}
    .Second-Events-section p{text-align: center;}
    .our-Services-section {padding: 50px 0;font-size: 26px;}
    .pricing-section{padding: 50px 0;}
    .pricing-section h1 {font-size: 26px;}
    .middle-up {margin-top: 0 !important;}
    .pricing-area {margin-bottom: -45px;}
    .pricing-section .most-popular {margin-bottom: -71px;}
    .testimonial-section{padding: 50px 0;}
    .testimonial-section h1 {font-size: 26px;}
    .testimonial-area .testimonial-item{margin-top: -20px;}
    .custom-section {padding: 50px 0;}
    .custom-section h1 {font-size: 26px;}
    .contact-section {padding: 30px 0;}
    .contact-section h1{font-size: 26px;}
    footer .social-media ul li {padding: 0 10px;font-size: 20px;}
    footer .social-media { padding: 0;}
}


/* ===================
Media Query For Mobile
====================== */
@media (min-width: 320px) and (max-width: 576px){
	.header-responsive{margin: 0;}
    .navbar-light .navbar-toggler {color: #fff;border-color: #fff;}
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .show>.nav-link {margin-top: 10px;}
    .banner{padding: 50px 0;}
    .mbl-center{text-align: center;}
    .mbl{margin-bottom: 30px;}
    .banner h1{font-size: 20px;padding: 20px 0;line-height: 30px;}
    .title-separator {display: block;margin: 0 auto 10px;}
    .social-media{text-align: center;}
    .social-items ul {text-align: center;}
    .social-items ul li .fa {font-size: 20px;padding: 20px 10px;}
    .tab-panel ul li{width: 120px;height: 120px;float: left;margin: 0 2px;}
    .tab-contents h3{text-align: center;}
    .tab-contents p{text-align: center;padding: 0;}
    .btn-tab {display: block;margin: 0 auto;}
    .features-tab img {padding-top: 50px;width: 100%;margin: 0 auto;}
    .features-tab {padding: 50px 0;}
    .features-list {padding: 50px 0;}
    .img-fluid {max-width: 100%;}
    .features-list h3 {text-align: center;}
    .sub-separator {display: block;margin: 10px auto;}
    .features-list p {text-align: center;}
    .features-list .fa {display: block;margin: 0 auto 20px;}
    .features-list h5 {text-align: center;}
    .Second-Events-section {padding: 50px 0;}
    .Second-Events-section h2{text-align: center;}
    .events-section-hr {margin: 0 auto 10px;}
    .Second-Events-section p{text-align: center;}
    .our-Services-section {padding: 50px 0;font-size: 26px;}
    .pricing-section{padding: 50px 0;}
    .pricing-section h1 {font-size: 26px;}
    .middle-up {margin-top: 0 !important;}
    .pricing-area {margin-bottom: -45px;}
    .pricing-section .most-popular {margin-bottom: -71px;}
    .testimonial-section{padding: 50px 0;}
    .testimonial-section h1 {font-size: 26px;}
    .testimonial-area .testimonial-item{margin-top: -20px;}
    .custom-section {padding: 50px 0;}
    .custom-section h1 {font-size: 26px;}
    .contact-section {padding: 30px 0;}
    .contact-section h1{font-size: 26px;}
    footer .social-media ul li {padding: 0 10px;font-size: 20px;}
    footer .social-media { padding: 0;}
}
