body {
    font-family: 'Poppins', sans-serif;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}       

a {
    color: orange;
    text-decoration: none;
}

a:hover {
    color: orange;
    text-decoration: none;
}
img {  
   user-drag: none;  
   user-select: none;
   -moz-user-select: none;
   -webkit-user-drag: none;
   -webkit-user-select: none;
   -ms-user-select: none;
}
#preloader{
    background:#fff url('../img/preloader.gif') no-repeat center center;
    background-size:8%;
    height:100vh;
    width:100%;
    position:fixed;
    z-index:100;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 25px;
    z-index: 996;
    background: orange;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
  
  .back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: rgb(129, 84, 0) !important;
    box-shadow: 0px 0px 50px orange;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
  
  #header.fixed-top {
    height: 70px;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    /* padding: 10px 0 10px 20px; */
    margin:10px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: orange;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: orange;
}

.navbar .dropdown ul{
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: orange;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #222222;
    font-size: 38px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
    font-size: 50px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.8);
    backdrop-filter: blur(5px);
    transition: 0.5s;
    z-index: 999;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 80px;
    right: 15px;
    bottom: 20px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 20px;
    overflow-y: auto;
    transition: 0.5s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.login-btn a:active, .login-btn a:link, .login-btn a:focus{
    text-transform: uppercase;
    text-align:center;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 10px;
    border-radius: 7px;
    color: #000;
    border: 1px solid rgba(0,0,0,.2);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.login-btn a:hover,.login-btn a:link:hover{
    color: #fff;
    background-color: orange;
    border: 1px solid orange;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 30px;
    font-size: 17px;
    color: #000;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: orange;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul{
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 166, 0,.2);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: orange;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

body {
    margin: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("../img/image01.jpg") top center;
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-size: cover;
    animation: change 20s infinite ease-in-out;
    border-radius: 0 0 50px 50px;
    -webkit-border-radius: 0 0 50px 50px;
    -moz-border-radius: 0 0 50px 50px;
    -ms-border-radius: 0 0 50px 50px;
    -o-border-radius: 0 0 50px 50px;
}
@keyframes change {
    0% {
        background-image: url(../img/image1.jpg);
    }
    20% {
        background-image: url(../img/image2.jpg);
    }
    40% {
        background-image: url(../img/image01.jpg);
    }
    60% {
        background-image: url(../img/image4.jpg);
    }
    80% {
        background-image: url(../img/image5.jpg);
    }
    100% {
        background-image: url(../img/image1.jpg);
    }
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    text-shadow: 5px 5px 5px 5px 5px #000;
}

#hero h1 span {
    color: orange;
}

#hero h2 {
    color: rgba(255,255,255,.5);
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

#hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: orange;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

#hero .btn-get-started:hover {
    background: rgb(189, 123, 0);
}

@media (min-width: 1024px) {
    #hero {
        /*background-attachment: fixed;*/
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
        border-radius: 0 0 20px 20px;
        -webkit-border-radius: 0 0 20px 20px;
        -moz-border-radius: 0 0 20px 20px;
        -ms-border-radius: 0 0 20px 20px;
        -o-border-radius: 0 0 20px 20px;
}
    #hero h1 {
        font-size: 30px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .btn-get-started{
        font-size: 13px;
    }
    .login-btn a,.login-btn a:active, .login-btn a:link, .login-btn a:focus{
        margin: auto;
        justify-content: center;
        width: 85%;
        font-size: 18px;
        letter-spacing: 2px;
        display: inline-block;
        padding: 5px 13px;
        margin-left: 25px;
        margin-top: 10px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 100vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 50px 0;
    overflow: hidden;
}

.section-bg {
    margin: auto;
    margin: 50px 20px;
    background-color: whitesmoke;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: rgba(255, 166, 0, .15);
    color: orange;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}
.section-title img{
    margin:50px 0 50px 0;width:60%;height:auto;border-radius:20px;
}
/* section-data */
.section-title .section-data{
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 80%;    
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
 .section-title h5{
    font-size: 25px;
    text-align: left;
    font-weight: 600;
}
.section-title h5 span{
    font-size: 20px;
    line-height: 2.4;    
    color: rgba(0, 0, 0,0.5);
}
.section-title h5 ul{
    margin: 25px 0 5px -30px;
    font-size: 17px;
    list-style: none;
    line-height: 1.4;
    color: rgba(0, 0, 0,0.5);
}

.section-title h5 ul li i{
    margin:0 5px 0 0;
    font-size: 17px;
}
/* section-data */

#about .img-fluid{
    border-radius:30px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 22px 70px 4px;
    border:8px solid rgba(156, 114, 0,.5);
    height: auto;
    width: auto;
}
h2.nm_chg{
    margin: auto;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: .25vw solid orange;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
h2.nm_chg:hover{
    letter-spacing: .1px;
    color: #fff;
    background-color: orange;
    cursor: none;
}

.section-title h3{
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: orange;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}
.section-title p a:hover{
    text-decoration:underline;
    color:rgb(189, 123, 0);
}
.section-title p i{
    color:orange;
}
section p.lower{
    text-align: justify;
}
@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .section-bg {
        margin: 50px 10px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
}
.section-title img{
    margin:40px 0 20px 0;width:94%;height:auto;border-radius:20px;
}
#about .img-fluid{
    border-radius:20px;
    border:4px solid rgba(156, 114, 0,.5);
}
h2.nm_chg{
    font-size: 20px;
    border: 4px solid orange;
}
.section-title h5 ul{
    display:inline-block;
    margin: 25px 0 5px -30px;
    font-size: 14px;
    list-style: none;
    line-height: 1.4;
    color: rgba(0, 0, 0,0.5);
}
.section-title h5 ul li i{
    margin:0 5px 0 0;
    font-size: 14px;
}

}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: whitesmoke;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.counts .count-box i {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: orange;
    color: #fff;
    width: 56px;
    height: 56px;
    line-height: 0;
    border-radius: 50px;
    border: 5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #062b5b;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 60%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.clients img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 45%;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    padding: 20px;
    margin: 0 20px;
    background: url("../img/testimonials-bg.jpg") center no-repeat;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
    backdrop-filter:blur(5px);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 20px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.3);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #fff;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: orange;
}
.test-head{
    color: #fff;
}
@media (min-width: 992px) {
    
    .testimonials .testimonial-item p {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .testimonials {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    }
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .row {
    width: 90%;
    margin: auto;
    justify-content: center;
    justify-content: space-between;
}

.pricing .box {
    padding-top: 20px;
    width: 115%;
    height: auto;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.pricing .box:hover{
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.pricing .box h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 26px;
    font-weight: 600;
    color: #777777;
    background: whitesmoke;
}

.pricing .box h4 {
    font-size: 36px;
    color: orange;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box ul {
    list-style: none;
    color: #2e2e2e;
    text-align: left;
    line-height: 2.2em;
    font-size: 14px;
}

.pricing .box ul i {
    color: orange;
    font-size: 18px;
    padding-right: 5px;
}

.pricing .btn-wrap {
    margin: 20px 0 20px 0;
    padding: 20px 15px;
    background: whitesmoke;
    text-align: center;
}

.pricing .btn-buy {
    background: orange;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: rgb(189, 123, 0);
}

.pricing .featured h3 {
    color: #fff;
    background: orange;
}
@media (max-width: 768px){
    .pricing .row {
        width: 100%;
        margin: auto;
        justify-content: center;
        justify-content: space-between;
    }
    .pricing .box {
        height: 660px;
    width: 360px;
    }
    
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
    padding: 60px 0;
    
}

.faq .faq-list {
    padding: 0;
    list-style: none;
    
}

.faq .faq-list li {
    border-bottom: 1px solid rgba(255, 166, 0, 0.25);
    margin-bottom: 20px;
    padding-bottom: 20px;
    
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: orange;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: orange;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}
@media (max-width: 768px){
    .faq .faq-list .question {
        font-size: 13px;
    }
    .faq .faq-list p {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact iframe, .contact .info-box,.contact .form  {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
#contact iframe{
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.contact .info-box {
    color: #444444;
    text-align: center;
    border-radius: 20px;
    padding: 20px 0 30px 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
#contact iframe:hover,.contact .info-box:hover,.contact .form:hover{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.contact .info-box i {
    font-size: 32px;
    color: orange;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted orange;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #000000b6;
}
.contact .info-box p a{
    color: #000000b6;
}
.contact .info-box p a:hover{
    color: orange;
    text-decoration: underline;
}
.contact .form {
    border-radius: 20px;
    padding: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.contact .form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .form .error-message br+br {
    margin-top: 25px;
}

.contact .form .sent-message {
    display: none;
    color: #fff;
    background: orange;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid orange;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
    -webkit-animation: animate-loading 1s linear infinite;
}

.contact .form .form-group {
    margin-bottom: 20px;
}

.contact .form input,
.contact .form textarea {
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0,.1);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border-color: orange;
}

.contact .form input {
    padding: 10px 15px;
}

.contact .form textarea {
    padding: 12px 15px;
    resize: none;
}

.contact .form button[type=submit] {
    background: orange;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .form button[type=submit]:hover {
    background: rgb(189, 123, 0);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* services */
.edu_cat {
    box-shadow: 0 0 20px rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .075);
    background: #fff;
    border-radius: .4rem;
    margin-bottom: 30px;
    overflow: hidden
}

.edu_cat .pic {
    position: relative;
    padding-top: calc((65/100)*100%)
}

.edu_cat .pic>.pic-main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: center center no-repeat;
    background-size: cover
}

.edu_data {
    padding: 28px 30px 30px
}

.edu_data .title {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 2px
}

.edu_data .title a {
    color: #2d3954
}

.edu_data ul {
    margin: 0;
    padding: 0
}

.edu_data ul li {
    margin-right: 15px;
    font-size: 14px;
    display: inline-block
}

.edu_data ul li i {
    margin-right: 5px
}

.edu_cat_2 {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 1rem;
    background: #fff;
    color:black;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all ease .4s
}

.edu_cat_2:focus,
.edu_cat_2:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}

.edu_cat_icons {
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.edu_cat_icons img {
    max-width: 40px;
}

.edu_cat_data {
    padding-left: 15px;
}

.edu_cat_data h4 {
    font-size: 17px;
    margin-bottom: 8px
}

.edu_cat_data ul li{
    list-style:none;
    padding:0;
    margin:0;
    margin-left:-32px;
}
.edu_cat_data ul li i{
    font-size:20px;
    /*padding:5px;
    border-radius:50px;
    background:white;*/
}

.edu_cat_2.cat-1 {
    background: rgba(0, 173, 182, .1)
}

.edu_cat_2.cat-1 h4>a {
    color: #00adb6
}

.edu_cat_2.cat-2 {
    background: rgba(247, 179, 32, .1)
}

.edu_cat_2.cat-2 h4>a {
    color: #f7b320
}

.edu_cat_2.cat-3 {
    background: rgba(241, 7, 80, .1)
}

.edu_cat_2.cat-3 h4>a {
    color: #f10750
}

.edu_cat_2.cat-4 {
    background: rgba(154, 222, 69, .1)
}

.edu_cat_2.cat-4 h4>a {
    color: #9ade45
}

.edu_cat_2.cat-5 {
    background: rgba(247, 179, 32, .1)
}

.edu_cat_2.cat-5 h4>a {
    color: #f7b320
}

.edu_cat_2.cat-6 {
    background: rgba(185, 95, 253, .1)
}

.edu_cat_2.cat-6 h4>a {
    color: #b95ffd
}

.edu_cat_2.cat-7 {
    background: rgba(236, 80, 152, .1)
}

.edu_cat_2.cat-7 h4>a {
    color: #ec5098
}

.edu_cat_2.cat-8 {
    background: rgba(37, 165, 95, .1)
}

.edu_cat_2.cat-8 h4>a {
    color: #25a55f
}

.edu_cat_2.cat-9 {
    background: rgba(234, 105, 13, .1)
}

.edu_cat_2.cat-9 h4>a {
    color: #ea690d
}

.edu_cat_2.cat-10 {
    background: rgba(13, 214, 234, .1)
}

.edu_cat_2.cat-10 h4>a {
    color: #0dd6ea
}
.edu_cat_2.cat-11 {
    background: rgba(185, 95, 253, .1)
}

.edu_cat_2.cat-11 h4>a {
    color: #b95ffd
}

.edu_cat_2.cat-12 {
    background: rgba(236, 80, 152, .1)
}

.edu_cat_2.cat-12 h4>a {
    color: #ec5098
}

.edu_cat_2.cat-13 {
    background: rgba(37, 165, 95, .1)
}

.edu_cat_2.cat-13 h4>a {
    color: #25a55f
}

.edu_cat_2.cat-14 {
    background: rgba(234, 105, 13, .1)
}

.edu_cat_2.cat-14 h4>a {
    color: #ea690d
}

.edu_cat_2.cat-15 {
    background: rgba(13, 214, 234, .1)
}

.edu_cat_2.cat-15 h4>a {
    color: #0dd6ea
}
.edu_cat_2.cat-16 {
    background: rgba(0, 173, 182, .1)
}

.edu_cat_2.cat-16 h4>a {
    color: #00adb6
}

.edu_cat_2.cat-17 {
    background: rgba(247, 179, 32, .1)
}

.edu_cat_2.cat-17 h4>a {
    color: #f7b320
}
.education_block_grid {
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    transition: all ease .3s;
    border: 1px solid #e8ebf1
}

.education_block_grid:focus,
.education_block_grid:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .25); 
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}
.education_block_grid .bl-title {
    font-size: 17px;
    margin-bottom: 10px
}
.education_block_grid .bl-title:hover{
    text-decoration:underline;
}
.education_block_grid.style_2 .education_block_body {
    padding: 20px 20px 5px
}
.education_block_grid.style_3 {
    border: none
}

.education_block_grid.style_3 .education_block_thumb {
    padding: 12px 12px 0
}

.education_block_grid.style_3 .education_block_thumb img {
    border-radius: 6px
}

.education_block_grid.style_3 .education_block_body {
    padding-bottom: 3px
}
.education_block_body p {
    font-size: 14px;
    margin-bottom: 0
}

.education_block_body {
    padding: 20px;
    background-color:whitesmoke;
}
.education_block_grid.style_2 .education_block_body {
    padding: 20px 20px 5px
}
.education_block_list_layout .education_block_body .bl-title {
    font-size: 17px;
    line-height: 1.2;
    margin: 0
}
.education_block_list_layout .education_block_body .bl-title a {
    color: #2d3954
}
.education_block_list_layout .education_block_body {
    padding: 0 20px 20px
}
.education_block_grid.style_3 .education_block_body {
    padding-bottom: 3px
}
.education_block_list_layout .education_block_body {
        padding: 20px
}
.education_block_list_layout .education_block_footer {
    padding: .5rem 1.5rem;
    border: none
}
.education_block_list_layout .education_block_footer {
        padding-top: 0;
        margin: 0 !important
}
.education_block_author .path-img {
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    margin-right: 7px
}

.education_block_author {
    flex: 1;
    display: flex;
    align-items: center
}

.education_block_author h5 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    opacity: 1
}

.education_block_author h5 a {
    color: rgb(175, 114, 0);
}

.education_block_footer {
    padding: 1rem 1.5rem;
    width: 100%;
    display: flex;
    vertical-align: middle;
    align-items: center;
    border-top: 1px solid #f0f1f5
}

.education_block_footer .education_block_time, .education_block_author {
    font-size: 13px;
    color: #808fa0;
}
.education_block_author {
    flex: 1
}

/* services */
/*enquiry-form*/
.bg-light .w-100{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.prc_wrap{
    text-align:center;
    box-shadow: 0 0 30px rgba(0, 0, 0,0.2);
    border-radius: 20px;
    padding: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.prc_wrap .prc_wrap_header h3{
    font-size:20px;
    border-bottom:2px solid #000;
    line-height:2;
}

.prc_wrap .form-group a, .prc_wrap .form input,
.prc_wrap .form textarea {
    margin-bottom:30px;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0,.1);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.prc_wrap .form-group a, .prc_wrap .form input:focus,
.prc_wrap .form textarea:focus {
    border-color: orange;
}

.prc_wrap .form input {
    padding: 10px 15px;
}

.prc_wrap .form textarea {
    padding: 12px 15px;
    height:100px;
    resize: none;
}

.prc_wrap .form-group a, .prc_wrap .form button[type=submit] {
    background: orange;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.prc_wrap .form-group a:hover, .prc_wrap .form button[type=submit]:hover {
    background: rgb(189, 123, 0);
}
.prc_wrap .form .form-group .subject{
    font-size:20px;
    color:orange;
    font-weight:600;
}
.prc_wrap .form i{
    display:inline-block;
    font-size:30px;
    color:rgba(112,128,144,.7);
    
}
.prc_wrap .form i.bi-eye{
    font-size:20px;
    position:absolute;
    right:390px;
    bottom:110px;
    cursor: pointer;
}
.login-body{
    margin:auto;
    max-width:50%;
    box-shadow: 0 0 30px rgba(0, 0, 0,0.1);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.login-body:hover{
    box-shadow: 0 0 30px rgba(0, 0, 0,0.2);
}

.ed_detail_head {
    margin:50px;
    max-width:100%;
    padding: 50px;
    border-radius:50px;
    background:whitesmoke;
}
.ed_detail_head img{
    height:30vh;
    width:auto;
    border-radius:20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
}
.ed_detail_head .ed_header_short{
    font-size:15px;
    text-align:justify;
}

.ed_detail_wrap {
    width: 100%;
    display: block;
    position: relative
}

.ed_header_caption ul {
    padding: 0;
    margin: 0;
}

.ed_header_caption ul li,
.edu_inline_info li {
    display: inline-block;
    margin:20px 8.4rem 20px 0px;
    list-style: none;
    font-size: 14px;
    border-bottom:solid orange 2px;
    border-top:solid orange 2px;
    border-radius:10px;
    padding:5px;
}

.ed_header_caption ul li:last-child,
.edu_inline_info li:last-child {
    margin-right: 0;
}

.ed_header_caption ul li i,
.edu_inline_info li i {
    margin-right: 7px;
}

.ed_header_caption {
    width: 100%;
    display: block;
    margin-top: .5rem;
    margin-bottom: 2rem;
    border-bottom:4px solid #cdcdcd;
    border-radius:2px;
}
.ed_header_caption h2{
    font-weight:600;
    color:orange;
}
/*enquiry-form*/
/*verification*/
section .ver-details{
    max-width:80%;
}
section .ver-details .form-group a,section .ver-details .form-group a:active{
    margin:auto;
    margin:20px;
    color:#fff;
}
section .verify .table, section .app-form h4{
    margin:auto;
    margin:20px;
    padding:10px;
    color:orange;
    font-weight:bold;
    background: rgba(255, 166, 0, .15);
    border-radius: 50px;
}
section div.details{
    margin:auto;
    margin-top:50px;
    text-align:left;
    max-width:50%;
}
section div.details .table tr{
    border-bottom: 1px solid rgba(255, 166, 0, 0.5);
    margin-bottom: 20px;
}
/*verification*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    padding: 0 0 10px 0;
    color: #000;
    font-size: 12px;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
    background: whitesmoke;
    border-radius: 50px 50px 0 0;
    -webkit-border-radius: 50px 50px 0 0;
    -moz-border-radius: 50px 50px 0 0;
    -ms-border-radius: 50px 50px 0 0;
    -o-border-radius: 50px 50px 0 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .logo img{
    max-height: 60px;
    padding-bottom: 7px;
    margin: 0 0 5px -22px;
    
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #000;
}
#footer .footer-top .footer-contact p a{
    color: #000000b6;
}
#footer .footer-top .footer-contact p a:hover{
    color: orange;
    text-decoration: underline;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: orange;
    font-size: 18px;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #000000b6;
    display: inline-block;
}

#footer .footer-top .footer-links ul a:hover {
    color: orange;
    text-decoration: underline;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: orange;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

#footer .footer-top .social-links a:hover {
    background: #fff;
    color: orange;
    box-shadow: 0px 0px 50px orange;
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: left;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
}
@media (max-width: 768px) {
    section .ver-details{
    max-width:95%;
}
    section div.details{
    max-width:100%;
    }
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
    #footer .footer-top {
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}
.ed_detail_head {
    margin:20px;
    max-width:100%;
    padding: 20px;
    border-radius:20px;
    background:whitesmoke;
}
.ed_detail_head img{
    height:250px;
    width:auto;
    margin-bottom:50px;
    border-radius:20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}
.ed_header_caption h2{
    font-weight:600;
    color:orange;
}
.pricing .box {
    margin:auto;
    width:100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.pricing .box:hover{
    transform: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.login-body{
    margin:auto;
    max-width:100%;
    box-shadow: 0 0 30px rgba(0, 0, 0,0.1);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.login-body:hover{
    box-shadow: 0 0 30px rgba(0, 0, 0,0.2);
}
}