@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/Poppins-Bold.ttf');
}


:root{
    --theme-color-1: #2D3092;
    --theme-color-2: #250051;
    --theme-color-3: #3BA0FF;
    --theme-color-4: #F4F4F4;
    --body-bg: #ffffff;
    --footer-bg: #0B0B1D;
    --font-color: #57667E;
    --heading-color: #030431;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Poppins-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Poppins-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Poppins-SemiBold';
    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: 30px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-1);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover{
    color: #fff;
    background-color: #251D2B;
    transition: ease-in-out 0.3s;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.top-header {
    background-color: #ffffff;
    /* padding: 11px 0px; */
    text-align: center;
}
  
.header {
    padding: 0px 0px;
    background: #fff;
    color: #f1f1f1;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
  
.sticky + .main-content-wrapper {
    padding-top: 123px;
}

.sticky.header:before{
    height: 83px;
}

.top-header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 51px;
}

.top-header-contact ul li{
    display: inline-block;
    margin-right: 20px;
}

.top-header-contact ul li a{
    display: flex;
    align-items: center;
}

.top-header-contact ul li a span{
    font-size: 18px;
    margin-right: 10px;
    color: var(--theme-color-2);
}

.top-header-auth ul li{
    display: inline-block;
}

.left-header-social{
    float: left;
}

.header-social{
    padding: 13px 29px;
    margin-right: 10px;
    background-color: var(--theme-color-1);
}

.header-social li{
    display: inline-block;
}

.header-social li a{
    color: #fff;
    font-size: 14px;
    padding-left: 25px;
}

.header-social li:first-child a{
    padding-left: 0px;
}

.top-header-auth ul li{
    margin-left: 15px;
}

.top-header-auth ul li a i{
    color: var(--theme-color-1);
    margin-right: 10px;
}

.header .logo{
    float: left;
    text-align: center;
    background: var(--theme-color-4);
    padding: 28.5px 25px;
}

.header-search-group{
    position: relative;
}

.header-search-input{
    background-color: var(--theme-color-4);
    border-radius: 30px;
    padding: 10px 52px 10px 20px;
    border: transparent;
    height: 52px;
    position: relative;
}

.header-search-btn{
    height: 52px;
    width: 65px;
    border-radius: 30px;;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color-1);
    border: transparent;
    color: var(--font-white);
}

/* .navbar-brand img{
    max-width: 180px;
} */

.logo .navbar-brand{
    width: 180px;
    display: inline-block;
    text-align: left;
}

.navbar-nav .nav-item .nav-link{
    color: #091A23;
    font-family: 'Poppins-Medium';
    padding: 24px 15px;
}

.dropdown-menu .dropdown-item{
    font-size: 14px;
    padding: 7px 20px;
}

.dropdown-menu .dropdown-item:hover{
    color: var(--theme-color-2);
    background-color: var(--theme-color-4);
}

.dropdown-menu .dropdown-item:active{
    color: var(--font-white);
    background-color: var(--theme-color-1);
}

.navbar-brand img{
    width: 160px;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
}

/* home */

.section{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 4rem 0;
}

.banner-container{
    width: 100%;
    height: 517px;
    display: inline-block;
    position: relative;
    background-image: url('../images/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-container::before{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    content: '';
    width: 100%;
    height: 100%;
}

.banner-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-wrapper h4{
    color: var(--font-white);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.banner-wrapper h2{
    font-size: 46px;
    line-height: 60px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-wrapper p{
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-btns{
    display: flex;
}

.banner-btns a{
    margin-right: 20px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-heading-wrapper.center{
    text-align: center;
}

.section-heading-wrapper.left{
    text-align: left;
}

.section-small-heading{
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins-Medium';
    margin-bottom: 10px;
    color: var(--theme-color-3);
    text-transform: uppercase;
}

.section-main-heading{
    font-size: 36px;
    line-height: 54px;
    margin-bottom: 0;
}

.course-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 25px;
    height: 100%;
    transition: ease-in 0.3s;
}

.course-card-wrapper:hover{
    background-color: var(--theme-color-1);
    transition: ease-in 0.3s;
}

.course-card-wrapper:hover h3{
    color: var(--font-white);
    transition: ease-in 0.3s;
}

.course-card-wrapper:hover p{
    color: var(--font-white);
    transition: ease-in 0.3s;
}

.course-card-wrapper:hover .btn-border{
    border-color: var(--font-white);
    color: var(--font-white);
    transition: ease-in 0.3s;
}

.course-card-wrapper .on-hover{
    display: none;
}

.course-card-wrapper:hover .on-hover{
    display: block;
}

.course-card-wrapper .before-hover{
    display: block;
}

.course-card-wrapper:hover .before-hover{
    display: none;
}

.course-card-wrapper img{
    width: 50px;
    height: 50px;
}

.course-card-wrapper h3{
    font-size: 24px;
    line-height: 36px;
    padding: 15px 0px;
}

.course-card-wrapper p{
    margin-bottom: 25px;
}

.pick-course-card{
    width: 100%;
    position: relative;
    display: inline-block;
    box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
    height: 100%;
}

.pick-course-body{
    padding: 20px;
    padding-bottom: 0;
}

.pick-course-body h3{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    height: 65px;
    overflow: hidden;
}

.pick-course-body p span{
    color: var(--theme-color-3);
    margin-right: 10px;
}

.pick-course-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 20px;
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-bottom: 10px;
}

.pick-course-bottom p{
    display: flex;
    align-items: center;
}

.pick-course-bottomleft{
    display: flex;
    flex: 50%;
}

.pick-course-bottomright{
    flex: 50%;
    text-align: right;
}

.pick-course-bottomright h3{
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-color-1);
}

.pick-course-bottomleft p{
    margin-right: 15px;
}

.pick-course-bottomleft p span{
    margin-right: 6px;
}

.coursetype{
    padding: 6px 20px;
    background-color: #4986FC;
    color: var(--font-white);
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: 30px;
}

.pick-course-image{
    position: relative;
}

.pick-course-image{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
}

.pick-course-image img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
}

.funfactor{
    background: linear-gradient(0deg, rgba(45, 48, 146, 0.65), rgba(45, 48, 146, 0.65)), url('../images/funfactor-bg.jpg');
    width: 100%;
    position: relative;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.funfactor-card{
    display: flex;
    align-items: center;
}

.funfactor-card-img img{
    width: 65px;
    height: 65px;
    margin-right: 15px;
}

.funfactor-card-info h3{
    font-size: 32px;
    line-height: 40px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.funfactor-card-info p{
    text-transform: uppercase;
    color: var(--font-white);
    margin-bottom: 0px;
}

.about-company-points-inner{
    display: flex;
    align-items: center;
}

.about-company-points-inner img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.about-company-points-inner p{
    font-family: 'Poppins-Medium';
    color: var(--theme-color-2);
}

.about-company-points li{
    margin: 15px 0px;
}

.aboutus-image{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.aboutus-image-left{
    width: 50%;
    height: 85%;
    padding: 0px 12px;
}

.aboutus-image-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 0px 12px;
}

.aboutus-image-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus-image-right img:first-child{
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 24px;
}

.aboutus-image-right img:last-child{
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* the slides */
.testimonial .slick-slide {
    margin: 0 20px;
}

/* the parent */
.testimonial .slick-list {
    margin: 0 -20px;
}

.testimonial-card{
    box-shadow: 0px 5px 21px -14px rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--theme-color-4);
    margin-top: 3rem;
}

.testimonial-card p{
    margin-bottom: 15px;
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.testimonial-wrapper::before{
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    content: '';
    background-image: url('../images/course-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 13rem;
    display: inline-block;
}

.testimonial-posted-info{
    display: flex;
    align-items: center;
}

.testimonial-avatar{
    width: 55px;
    min-width: 55px;
    height: 55px;
    margin-right: 10px;
}

.testimonial-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-avatar-detail h3{
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-color-2);
    margin-bottom: 0px;
}

.testimonial-avatar-detail p{
    color: var(--theme-color-3);
    font-size: 12px;
    margin-bottom: 0;
}

.testimonial-card p i{
    opacity: 0.7;
}

.testimonial-card p i.gained{
    color: rgb(224, 221, 11);
    opacity: 1;
}

.testimonial .slick-dots{
    bottom: -60px;
}

.slick-dots li button:before{
    font-size: 10px;
    color: var(--theme-color-4);
    opacity: 1;
}

.slick-dots li.slick-active button:before{
    color: var(--theme-color-3);
    opacity: 1;
}

/* the slides */
.team .slick-slide {
    margin: 0 20px;
}

/* the parent */
.team .slick-list {
    margin: 0 -20px;
}

.ourteam{
    background-color: var(--theme-color-1);
}

.ourteam .section-main-heading{
    color: var(--font-white);
}

.ourteam-inner-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
}

.ourteam-inner-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 250px;
}

.ourteam-inner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourteam-inner-info{
    padding: 10px 15px;
    text-align: center;
}

.ourteam-inner-info h3{
    font-size: 20px;
    line-height: 30px;
    color: #030431;
}

.ourteam-social{
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 50%);
    opacity: 0;
    visibility: hidden;
    transition: ease-in 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourteam-inner-wrapper:hover .ourteam-social{
    opacity: 1;
    visibility: visible;
    transition: ease-in 0.3s;
}

.ourteam-social ul li{
    display: inline-block;
    margin: 0px 5px;
}

.ourteam-social ul li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-4);
    color: var(--theme-color-3);
}   


.team .slick-dots{
    bottom: -60px;
}

.ourblog-postinfo {
    color: var(--theme-color-3);
    margin: 10px 0px;
}

.ourblog-postinfo span{
    margin-right: 10px;
}

.ourblog-postinfo span i{
    margin-right: 5px;
}

.ourblog-info h3{
    font-size: 20px;
    line-height: 30px;
    color: #030431;
    margin-bottom: 15px;
}

.ourblog-info .ourblog{
    margin-top: 20px;
}

.ourblog-image{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
}

.ourblog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

footer{
    background-color: var(--footer-bg);
    padding-top: 3rem;
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-main-header{
    font-size: 22px;
    line-height: 36px;
    color: var(--font-white);
    margin-bottom: 30px;
}

.footer-subscribe-form-group{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-subscribe-input{
    background-color: var(--font-white);
    padding: 10px 15px;
    width: 100%;
    border: none;
    height: 48px;
}

.footer-subscribe-btn{
    padding: 10px 15px;
    background-color: var(--theme-color-1);
    border: none;
    color: var(--font-white);
    min-width: 145px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.footer-subscribe-right ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-subscribe-right ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.footer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.footer-small-heading{
    font-size: 20px;
    line-height: 30px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.footer-block-heading ul li{
    margin: 10px 0px;
    color: #868C98;
}

.footer-copyright{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 30px 0px;
    margin-top: 30px;
    border-top: 1px solid #868C98;
    color: #868C98;
}

.page-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/pagebanner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 350px;
}

.page-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.page-banner-wrapper h3{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 25px;
}

.page-banner-wrapper p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.process{
    width: 100%;
    position: relative;
    display: inline-block;
}

.process::before{
    width: 50%;
    position: absolute;
    content: '';
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('../images/course-4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    z-index: 9;
}

.process::after{
    width: 50%;
    position: absolute;
    content: '';
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--theme-color-2);
    z-index: 9;
}

.process-content{
    position: relative;
    width: 100%;
    z-index: 10;
    display: inline-block;
    padding: 4rem 2rem;
}

.process-item{
    width: 47%;
    float: left;
    background-color: rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0px 7px;
    margin-bottom: 14px;
    height: 100%;
}

.process-card-count{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    background-color: var(--theme-color-3);
}

.process-card-heading{
    margin: 15px 0px;
    font-size: 16px;
    color: var(--font-white);
}

.process-item p{
    text-align: center;
    color: var(--font-white);
    font-size: 12px;
}

.queries-info-card h3{
    font-size: 20px;
    margin: 15px 0px;
}

.queries-info-card img{
    width: 50px;
}

.instructor-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    position: relative;
}

.instructor-content img{
    width: 120px;
}

.instructor-content h4{
    font-size: 16px;
    margin: 15px 0px;
}

.instructor-content h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.instructor-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instructor-image img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 10;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.instructor-image.odd::before{
    content: '';
    width: 275px;
    height: 355px;
    left: 90px;
    top: -25px;
    background-color: var(--theme-color-1);
    position: absolute;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.instructor-image.even::before{
    content: '';
    width: 275px;
    height: 355px;
    left: 90px;
    top: -25px;
    background-color: var(--theme-color-3);
    position: absolute;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.blogcontent-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 30px 0px;
}

.blogDetails-wrapper p{
    margin-bottom: 20px;
}

.blogDetails-wrapper h2{
    font-size: 24px;
    margin-bottom: 20px;
}

.comments-wrapper{
    width: 100%;
    display: inline-block;
    position: relative;
    margin: 3rem 0;
}

.comments-wrapper h3{
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.comments-list-item{
    display: flex;
}

.comments-avatar{
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 15px;
    min-width: 60px;
}

.comments-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comments-info-top h4{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 10px;
}

.comments-info-top h4 a{
    font-size: 14px;
    font-family: 'Poppins-Medium';
    color: var(--theme-color-3);
}

.comments-info-top p{
    margin-bottom: 10px;
    font-size: 12px;
}

.reply-wrapper h3{
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.contactus-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contactus-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--theme-color-1);
}

.blogDetails-relatedlist{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 30px;
    border-top: 4px solid var(--theme-color-1);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.blogDetails-relatedlist h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.blogDetails-relatedlist ul li{
    margin-bottom: 15px;
}

.blogDetails-relatedlist ul li a:hover{
    color: var(--theme-color-3);
    transition: ease-in 0.3s;
}

.contactus{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 4rem 0 0rem 0;
    background-color: var(--theme-color-4);
}

.contactus::before{
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    content: '';
    /* background-image: url('../images/course-2.jpg'); */
    background-image:
            linear-gradient(45deg,
              rgba(59,160,255, 0.4),
              rgba(45,48,146, 0.4)), url('../images/contactus-ng.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
}

.contact-form-wrapper{
    width: 100%;
    position: relative;
    padding: 3rem 2rem;
}

.contact-form-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.contactinfo-block{
    width: 100%;
    display: inline-block;
    position: relative;
    /* text-align: center; */
}

.contactinfo-block h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.contactinfo-block a{
    width: 100%;
    display: inline-block;
    font-family: 'Poppins-Medium';
    color: var(--theme-color-3);
    margin-bottom: 10px;
}

.contactinfo-block p{
    font-size: 12px;
}

.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/pagebanner-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: 'Poppins-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Poppins-Medium';
    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;
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 20px;
    border: transparent;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 10px !important;
    background-color: var(--theme-color-4);
    font-family: 'Poppins-Regular';
    font-size: 14px;
}

.faq .accordion-button:not(.collapsed){
    background-color: var(--theme-color-4);
    box-shadow: none;
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.authpage-container{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/pagebanner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.authpage-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    background-color: var(--font-white);
}

.authpage-wrapper h3{
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.authpage-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.authpage-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
}

.authpage-form-group button{
    width: 100%;
    max-width: 100%;
}

.forgot-password-link{
    text-align: right;
    margin-bottom: 20px;
    color: var(--theme-color-3);
    display: inline-block;
    width: 100%;
}

.other-login p{
    text-align: center;
}

.other-login ul{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.other-login ul li{
    width: 32%;
    display: inline-block;
}

.other-login ul li a.facebook{
    padding: 10px 15px;
    background-color: #3e588f;
    color: var(--font-white);
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}

.other-login ul li a.facebook i{
    margin-right: 10px;
}

.other-login ul li a.twitter{
    padding: 10px 15px;
    background-color: #00acdf;
    color: var(--font-white);
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}

.other-login ul li a.twitter i{
    margin-right: 10px;
}

.other-login ul li a.google{
    padding: 10px 15px;
    background-color: #d84b39;
    color: var(--font-white);
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}

.other-login ul li a.google i{
    margin-right: 10px;
}

.register-text{
    text-align: center;
    margin-top: 20px;
}

.register-text a{
    color: var(--theme-color-3);
}

.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: 75px;
    left: 0;
    padding-left: 3px;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 50%;
    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-3);
    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;
}

#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);
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

@media (max-width: 1050px) {
    .comimgsoon-img-hig {
        min-height: fit-content;
        max-height: 1000px !important;
        padding: 24px auto;
    }
}