@font-face {
    font-family: Satisfy-Regular;
    src: url('../fonts/Satisfy-Regular.ttf');
}

@font-face {
    font-family: Lato-Regular;
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato-Bold;
    src: url('../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: Lato-Black;
    src: url('../fonts/Lato-Black.ttf');
}

:root{
    --theme-color-1: #222D63;
    --theme-color-2: #FF5F3C;
    --theme-color-3: #A146F8;

    --body-bg: #ffffff;
    --font-color: #5E616C;
    --heading-color1: #3E414E;
    --heading-color2: #222D63;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Lato-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Lato-Black';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Lato-Bold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato-Regular';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background: linear-gradient(116deg, rgba(161, 70, 248, 0.57) 0%, #A146F8 100%);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: linear-gradient(116deg, rgba(161, 70, 248, 0.57) 0%, #A146F8 100%);
    transition: all .5s ease-out;
    box-shadow: 0px 3px 15px 0px rgba(161, 70, 248, 0.57);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
}

.btn-border{
    border: 1px solid var(--theme-color-3);
    background-color: transparent;
    color: var(--theme-color-3);
    transition: all .5s ease-out;
}

.btn-border:hover{
    transition: all .5s ease-out;
    color: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    box-shadow: 0px 3px 15px 0px rgba(161, 70, 248, 0.57);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--font-white);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: #000;
    font-family: 'Lato-Regular';
    font-weight: normal;
    height: 100%;
    position: relative;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-dark .navbar-nav .nav-item.active .nav-link::after{
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--theme-color-3);
    display: inline-block;
    position: absolute;
    bottom: 3px;
    left: 10px;
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: #fff;
    height: 80px;
}

.dropdown-menu{
    min-width: 12rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 14px;
    font-family: 'Lato-Regular';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Lato-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Lato-Regular';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-3);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Lato-Bold';
  color: var(--heading-color);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 20px;
    border: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 10px !important;
    background-color: rgb(255 95 60 / 6%);
    font-family: 'Lato-Regular';
    font-size: 14px;
}

.faq .accordion-button:not(.collapsed){
    background-color: var(--theme-color-2);
    box-shadow: none;
    color: var(--font-white);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--font-white);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-2);
}

.faq .accordion-button:focus{
    box-shadow: none;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-small-heading{
    color: var(--theme-color-1);
    margin-bottom: 10px;
    font-family: 'Lato-Regular';
    font-weight: normal;
    font-size: 16px;
}

.section-main-heading{
    color: var(--heading-color);
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 10px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 80px;
}

.banner-section-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 650px;
    background-color: #E8ECFF;
}

.banner-section-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%; 
    padding-right: 3rem;
}

.banner-heading{
    font-size: 48px;
    color: var(--heading-color2);
    margin-bottom: 20px;
}

.banner-heading span{
    color: var(--theme-color-2);
}

.banner-description{
    margin-bottom: 25px;
}

.banner-btns{
    display: flex;
    width: 100%;
}

.banner-btns a{
    margin-right: 20px;
}

.section-black-heading-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-black-heading-wrapper h3{
    font-size: 36px;
}

.section-more-link{
    color: var(--theme-color-3);
    border-bottom: 2px solid var(--theme-color-3);
    line-height: 35px;
    font-family: 'Lato-Bold';
}

.section-more-link:hover{
    color: var(--theme-color-3);
}

.course-card{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 6rem;
}

.course-card-image{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 30px 30px 0px 0px;
    height: 180px;
}

.yellow .course-card-image{
    background: linear-gradient(270deg, #FFA54A 31.87%, rgba(255, 165, 74, 0.55) 100%);
}

.blue .course-card-image{
    background: linear-gradient(270deg, #2DC4E6 0%, rgba(45, 196, 230, 0.55) 100%);
}

.voilet .course-card-image{
    background: linear-gradient(268deg, #BB79F5 0%, rgba(187, 121, 245, 0.55) 100%);
}

.pink .course-card-image{
    background: linear-gradient(271deg, #FB5781 0%, rgba(251, 87, 129, 0.55) 100%);
}

.cc-img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.yellow .cc-img{
    width: 52%;
}

.blue .cc-img{
    width: 52%;
}

.voilet .cc-img{
    width: 65%;
}

.pink .cc-img{
    width: 65%;
}

.course-card-content{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px;
}

.course-card-content a h3{
    font-size: 16px;
    margin-bottom: 15px;
}

.course-card-reviews{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card-reviews ul li{
    display: inline-block;
}

.course-card-reviews ul li i{
    color: #FFD154;
}

.companies .carosel-item img{
    opacity: 0.65;
    margin: auto;
}

.secondary-heading{
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--heading-color2);
}

.round-list-order{
    margin: 20px 0px;
}

.round-list-order li p{
    font-family: 'Lato-Bold';
}

.round-list-order li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.round-list-order li span{
    border-radius: 30px;
    background: linear-gradient(270deg, #2DC4E6 0%, rgba(45, 196, 230, 0.55) 100%);
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    margin-right: 10px;
}

.round-list-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    padding-right: 5rem;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.process-card{
    border-radius: 15px;
    background: var(--font-white);
    box-shadow: 0px 6px 25px 15px rgba(0, 0, 0, 0.10);
    padding: 25px;
    width: 100%;
    height: 100%;
}

.process-icon{
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.process-icon.is-green{
    background-color: #2EA095;
}

.process-icon.is-orange{
    background-color: #EA7134;
}

.process-icon.is-voilet{
    background-color: #A14CF7;
}

.process-icon.is-pink{
    background-color: #F44C80;
}

.process-card h3{
    font-size: 22px;
    margin: 25px 0px;
    color: var(--heading-color2);
}

.read-more-link{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    color: var(--theme-color-2);
    font-family: 'Lato-Bold';
}

.second-list-order li{
    margin-bottom: 20px;
}

.list-order-inner{
    display: flex;
    align-items: flex-start;
}

.loi-icon{
    background-color: #2EA095;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-right: 15px;
}

.second-list-order{
    margin: 30px 0px 20px 0px;
}

.loi-info h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.text-orange{
    color: var(--theme-color-2);
}

.testimonial-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    border-radius: 15px;
    background: var(--font-white);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 70px 25px 25px 25px;
    margin-top: 90px;
    margin-bottom: 20px;
}

.testimonial-author-image{
    width: 100px;
    height: 100px;
    position: absolute;
    display: inline-block;
    top: -55px;
    left: 50%;
    transform: translate(-50%, 0);
}

.testimonial-author-image img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.testimonial-author-info h3{
    color: var(--heading-color2);
    font-size: 20px;
    margin-bottom: 13px;
}

.testimonial-author-info h4{
    font-size: 14px;
    color: var(--heading-color1);
}

.testimonial-author-info .line{
    width: 180px;
    height: 1px;
    background-color: #5E616C;
    position: relative;
    display: inline-block;
}

#slick-slide-control10{
    background-image: url('../images/our-team-1.jpg');
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;}

#slick-slide-control11{
    background-image: url('../images/our-team-2.jpg');
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slick-slide-control12{
    background-image: url('../images/our-team-3.jpg');
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slick-slide-control13{
    background-image: url('../images/our-team-4.jpg');
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slick-slide-control14{
    background-image: url('../images/our-team-1.jpg');
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .slick-dots li button:before{
    display: none;
}

.testimonial .slick-dots li{
    width: 35px;
    height: 35px;
    margin: 0px 10px;
}

.testimonial .slick-active button{
    width: 45px !important;
    height: 45px !important;
    border: 1px solid var(--theme-color-2) !important;
}

.testimonial .slick-dots{
    bottom: -80px;
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    border-radius: 30px;
    background: var(--font-white);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper{
    width: 100%;
    height: 260px;
    position: relative;
    display: inline-block;
}

.blog-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.blog-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.postInfo{
    border-radius: 6px;
    background: rgba(255, 95, 60, 0.10);
    height: 40px;
    color: var(--theme-color-2);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-bottom: 15px;
}

.blog-content-wrapper a h3{
    font-size: 20px;
    color: var(--heading-color2);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.blog-content-post{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
}

.blog-content-post p i{
    color: var(--heading-color2);
    margin-right: 10px;
}

.subscribe-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: #7DCD85;
    height: 100%;
}

.subscribe-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    background-color: #FFD168;
    height: 100%;
    padding: 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.subscribe-content-wrapper h3{
    font-size: 32px;
    text-align: left;
    color: var(--heading-color2);
    margin-bottom: 30px;
}

.subscribe-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
}

.subscribe-form-input{
    width: 100%;
    background-color: var(--font-white);
    border-radius: 30px;
    padding: 10px 140px 10px 30px;
    height: 65px;
    border: none;
}

.subscribe-content-wrapper form{
    width: 100%;
}

.subscribe-form-btn{
    border-radius: 30px;
    background: linear-gradient(116deg, rgba(161, 70, 248, 0.57) 0%, #A146F8 100%);
    height: 52px;
    padding: 10px 15px;
    width: max-content;
    color: var(--font-white);
    position: absolute;
    right: 7px;
    top: 7px;
    width: 130px;
    border: none;
}

.subscribe{
    width: 99.9%;
    position: relative;
    display: inline-block;
    height: 380px;
    margin-top: 5rem;
}

.subscribe-image-wrapper img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 4rem;
    background-color: var(--font-white);
}

.footer-about {
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about h4{
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--heading-color2);
}

.footer-about ul li{
    margin-bottom: 20px;
}

.footer-contact-wrapper{
    display: flex;
    align-items: baseline;
}

.footer-contact-wrapper i{
    color: var(--theme-color-2);
    margin-right: 10px;
}

.footer-contact-wrapper a{
    font-family: 'Lato-Regular';
    color: #000000;
}

.footer-links{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.footer-heading h3{
    font-size: 18px;
    color: var(--heading-color2);
    width: 100%;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--theme-color-2);
}

.footer-links ul li{
    margin-bottom: 15px;
    color: #000000;
}

.footer-hours{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-hours-heading{
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--theme-color-2);
}

.footer-hours-heading h3{
    font-size: 18px;
    color: var(--heading-color2);
    width: 100%;
}

.footer-hours-heading ul li{
    display: inline-block;
    margin-left: 5px;
}

.footer-hours-heading ul li a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #2DC4E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.footer-hours-heading ul{
    width: 100%;
    text-align: right;
}

.footer-hours-list-inner{
    display: flex;
    width: 100%;
}

.footer-hours-list-inner p{
    width: 50%;
    color: #000;
}

.hours-list-order li{
    margin-bottom: 15px;
}

.footer-hours-list-inner p i{
    color: var(--theme-color-2);
    margin-right: 10px;
}

.footer-hours-list-inner p:last-child{
    text-align: right;
}

.hours-list-order{
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 21px;
    border-bottom: 1px solid #ddd;
}

.cards-list-order li{
    display: inline-block;
    margin-right: 5px;
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding: 25px 0px;
    margin-top: 2rem;
    color: #000;
}

/* pages */
.page-banner-container{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    background-image: url('../images/page-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline-block;
    background-color: rgb(0 0 0 / 35%);
    left: 0;
    top: 0;
    z-index: 10;
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    height: 100%;
}

.page-banner-wrapper h1{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.page-banner-wrapper p{
    color: var(--font-white);
    margin-bottom: 15px;
}

.page-banner-wrapper ul{
    background-color: var(--theme-color-3);
    padding: 5px 10px;
    border-radius: 6px;
}

.page-banner-wrapper ul li{
    display: inline-block;
    color: var(--font-white);
    margin-right: 10px;
}

.funfactor-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
}

.funfactor-card h2{
    color: var(--theme-color-2);
    margin-bottom: 10px;
}

.teamMember-card{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 6rem;
}

.teamMember-card-image{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 0;
    height: 200px;
}

.yellow .teamMember-card-image {
    background: linear-gradient(270deg, #FFA54A 31.87%, rgba(255, 165, 74, 0.55) 100%);
}

.blue .teamMember-card-image{
    background: linear-gradient(270deg, #2DC4E6 0%, rgba(45, 196, 230, 0.55) 100%);
}

.voilet .teamMember-card-image{
    background: linear-gradient(268deg, #BB79F5 0%, rgba(187, 121, 245, 0.55) 100%);
}

.pink .teamMember-card-image{
    background: linear-gradient(271deg, #FB5781 0%, rgba(251, 87, 129, 0.55) 100%);
}

.tm-img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.tm-img.small{
    width: 95%;
}

.tm-img.big{
    width: 80%;
}

.teamMember-card-content{
    width: 100%;
    position: relative;
    padding: 15px;
    text-align: center;
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.teamMember-card-content h3{
    font-size: 18px;
    color: var(--heading-color2);
    margin-bottom: 5px;
}

.contact-card{
    width: 100%;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-radius: 15px;
    background: var(--font-white);
    box-shadow: 0px 6px 25px 15px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.contact-card span{
    width: 80px;
    height: 80px;
    background-color: #ff5f3c24;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list-inner h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-card ul li{
    margin-bottom: 15px;
}

.contact-card h3{
    font-size: 20px;
    margin: 20px 0px;
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.event-card{
    border-radius: 15px;
    background: var(--font-white);
    box-shadow: 0px 6px 25px 15px rgba(0, 0, 0, 0.10);
    width: 100%;
    height: 100%;
    display: inline-block;
}

.event-image{
    width: 100%;
    height: 200px;
    position: relative;
    display: inline-block;
}

.event-image img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.event-content{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 15px;
}

.event-date{
    width: 70px;
    min-width: 70px;
    height: 70px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.event-date p{
    font-family: 'Lato-Bold';
    color: var(--theme-color-2);
}

.event-date h3{
    font-size: 16px;
    color: var(--theme-color-1);
}

.event-info h3{
    font-size: 18px;
    color: var(--heading-color2);
    margin-bottom: 10px;
}

.event-info .places{
    color: var(--heading-color1);
    font-size: 12px;
    margin-top: 5px;
}

.eventPrice{
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 6px;
    background-color: var(--font-white);
    padding: 5px 10px;
    color: var(--theme-color-3);
    font-family: 'Lato-Bold';
}

.teamMember-stars{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}

.teamMember-stars ul li{
    display: inline-block;
    font-size: 12px;
}

.teamMember-stars ul li i{
    font-size: 12px;
    color: #FFA54A;
}

.teamMember-stars p{
    font-size: 12px;
}

.teamMember-stars p i{
    color: var(--theme-color-2);
    margin-right: 5px;
    font-size: 12px;
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-search{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar-search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    /* border-radius: 10px 0px 0px 10px; */
}

.sidebar-search-btn{
    padding: 10px 15px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    border: 1px solid var(--theme-color-2);
    /* border-radius: 0px 10px 10px 0px; */
}

.sidebar-caterories{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem 0;
}

.sidebar-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--heading-color2);
    border-bottom: 1px solid var(--theme-color-2);
    padding-bottom: 10px;
}

.sidebar-caterories ul li{
    margin-bottom: 15px;
}

.sidebar-recentpost-wrapper{
    display: flex;
}

.sr-img{
    width: 60px;
    min-width: 60px;
    height: 50px;
    margin-right: 10px;
}

.sr-img img{
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.sr-info a h3{
    font-size: 14px;
    margin-bottom: 5px;
}

.sidebar-recentpost ul li{
    margin-bottom: 15px;
}

.sidebar-recentpost{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 0rem 0 2rem 0;
}

.sidebar-tags{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-tags ul li{
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
}

.sidebar-tags ul li a{
    padding: 10px 15px;
    border: 1px solid #ddd;
    display: inline-block;
}

.blog-detail-top h4{
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--heading-color2);
}

.blog-detail-top p a{
    font-family: 'Lato-Bold';
}

.blog-detail-top .bd-main-image{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

.bd-center-image{
    width: 100%;
    display: inline-block;
}

.bd-center-image img{
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.blog-detail-center{
    width: 100%;
    position: relative;
    padding: 30px 15px;
}

.blog-detail-center p{
    margin-bottom: 20px;
}

.amenities-list li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.amenities-list li img{
    width: 10px;
    margin-right: 10px;
}

.amenities-list li span{
    font-family: 'Lato-Bold';
}

.blog-detail-social{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    padding-top: 20px;
    padding-bottom: 20px;
}

.blog-detail-social p{
    font-size: 22px;
    color: var(--heading-color1);
}

.comment-heading{
    font-size: 22px;
    margin-bottom: 2rem;
    color: var(--heading-color1);
}

.blog-detail-comments{
    margin-top: 3rem;
    width: 100%;
}

.blog-detail-comments-inner{
    display: flex;
}

.comment-author-image{
    width: 100px;
    min-width: 100px;
    height: 100px;
    display: inline-block;
    margin-right: 15px;
}

.comment-author-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-author-info h5{
    font-size: 20px;
    margin-bottom: 5px;
}

.comment-author-info p{
    margin-bottom: 15px;
}

.comment-author-info a{
    font-family: 'Lato-Bold';
    color: var(--theme-color-4);
}

.contact-form-social ul li{
    display: inline-block;
}

.contact-form-social ul li a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #2DC4E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.bd-category-list li span {
    background-color: #ff5f3c1c;
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 10px 15px;
    border-radius: 30px;
}

.bd-category-list{
    margin-bottom: 10px;
}

.sidebar-downloads-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #ff5f3c0a;
}

.sidebar-downloads-wrapper span{
    width: 50px;
    height: 50px;
    background-color: var(--theme-color-1);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    font-size: 20px;
}

.sidebar-downloads{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.sidebar-downloads ul li{
    margin-bottom: 10px;
}

.sidebar-downloads-wrapper h4{
    font-size: 16px;
    color: var(--heading-color1);
    padding: 10px;
}

.course-detail-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.cd-main-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
}

.cd-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cd-info-list{
    width: 100%;
    position: relative;
    display: flex;
    background-color: #222d631f;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
}

.cd-info-author{
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.cd-info-author-img img{
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}

.cd-commhead{
    font-size: 14px;
    color: var(--heading-color2);
}

.cd-info-enroll ul li{
    display: inline-block;
    font-size: 12px;
    color: #FFA54A;
}

.cd-info-enroll{
    padding: 15px 10px;
}

.cd-info-duration{
    padding: 15px 10px;
}

.cd-info-price{
    padding: 15px 10px;
}

.cd-info-price-text{
    font-size: 14px;
    color: var(--theme-color-2);
    margin-top: 5px;
}

.btn-buy{
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.cd-info-buy{
    padding: 15px 10px;
}

.cd-more-main-heading{
    font-size: 20px;
    margin: 20px 0px;
    color: var(--heading-color2);
}

.cd-moreinfo p{
    margin-bottom: 20px;
}

.list-order li{
    display: flex;
    align-items: flex-start;
}

.list-order li h4{
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--heading-color2);
}

.list-order li:before{
    width: 5px;
    height: 5px;
    min-width: 5px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    content: '';
    margin-right: 10px;
    margin-top: 5px;
}

.check-list-order li{
    margin-bottom: 10px;
    font-family: 'Lato-Bold';
}

.check-list-order li:before{
    position: relative;
    display: inline-block;
    content: '\f101';
    margin-right: 10px;
    color: var(--theme-color-2);
    font-family: Fontawesome;
}

.banner-img-wrapper{
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.authpage-container{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-3);
    min-height: 100vh;
    padding: 2rem 0;
}

.authpage-inner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.authpage-content-wrapper{
    width: 100%;
    position: relative;
    height: 100%;
    background: linear-gradient(to right, rgb(13 110 253 / 50%) 0%, rgb(40 192 216 / 50%) 59%, rgb(102 16 242 / 50%) 100%), url('../images/coming-soon-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 5rem 2rem 2rem;
}

.authpage-content-wrapper h2{
    color: var(--font-white);
    margin-bottom: 15px;
}

.authpage-content-wrapper p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.authpage-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 1.5rem;
}

.authpage-form-top{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.authpage-form-top img{
    width: 200px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
}

.authpage-form-top h3{
    font-size: 18px;
    text-align: center;
}

.authpage-form-facebook{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-login{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1877F2;
    height: 44px;
    border: 2px solid #1877F2;
    color: var(--font-white);
}

.facebook-login:hover{
    color: #fff;
}

.facebook-login i{
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #1877F2;
}

.facebook-login span{
    padding: 10px 20px;
}

.authpage-form-login-wrapper{
    width: 75%;
    position: relative;
    margin: auto;
}

.or-divider{
    width: 100%;
    position: relative;
    margin: 1.3rem 0;
}

.or-divider span{
    display: flex;
    width: 100%;
    align-items: center;
}

.or-divider span::before{
    width: 48%;
    content: '';
    position: relative;
    display: inline-block;
    border-top: 1px solid #ddd;
    margin-right: 10px;
}

.or-divider span::after{
    width: 48%;
    content: '';
    position: relative;
    display: inline-block;
    border-top: 1px solid #ddd;
    margin-left: 10px;
}

.authpage-form-fields-list{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.authpage-form-label{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.authpage-form-button{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-button .btn-main{
    max-width: 100%;
    width: 100%;
}

.authpage-form-account{
    text-align: center;
    margin-top: 3rem;
}

.authpage-form-account a{
    color: var(--theme-color-3);
}

