@font-face {
    font-family: Jost-Regular;
    src: url('../fonts/Jost-Regular.ttf');
}

@font-face {
    font-family: Jost-Medium;
    src: url('../fonts/Jost-Medium.ttf');
}

@font-face {
    font-family: Jost-SemiBold;
    src: url('../fonts/Jost-SemiBold.ttf');
}

@font-face {
    font-family: Jost-Bold;
    src: url('../fonts/Jost-Bold.ttf');
}

:root{
    --theme-color-1: #120245;
    --theme-color-2: #785DC5;
    --theme-color-3: #8DE5FE;
    --theme-color-4: #FFD982;
    --theme-color-5: #FFA365;
    --theme-color-6: #FAA3DB;
    --theme-color-7: #F6F5F8;
    --body-bg: #ffffff;
    --footer-bg: #ffffff;
    --font-color: #57667E;
    --heading-color: #120245;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Jost-Regular';
    font-weight: normal;
    color: var(--font-color);
}

h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-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: 'Jost-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-2);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #280882;
    border: 1px solid #280882;
    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: #080b67;
    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;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    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');
    padding: 30px;
}
  
.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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
  
.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: 'Jost-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Jost-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;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 10px !important;
    background-color: var(--font-white);
    font-family: 'Jost-Medium';
    font-size: 16px;
}

.faq .accordion-button:not(.collapsed){
    background-color: var(--font-white);
    box-shadow: none;
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 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: 150px;
    left: 50%;
    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: 50%;
    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: 1001;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

/* header */
.auth-link{
    color: var(--heading-color);
}

.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
    display: inline-block;
}

.navbar-brand img{
    width: 180px;
}

.nav-link{
    padding: 8px 16px !important;
    height: 100%;
    color: var(--font-color) !important;
}

.nav-item.dropdown .nav-link::after{
    font-family: Fontawesome;
    content: '\f067';
    margin-left: 2px;
    font-size: 8px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--font-white);
}

.dropdown-menu{
    border-radius: 10px;
    border: transparent;
}

.dropdown-menu .dropdown-item{
    padding: 10px 15px;
    font-size: 14px;
    color: var(--font-color);
}

.dropdown-item:hover{
    background-color: var(--theme-color-7);
    color: var(--theme-color-2);
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--theme-color-7);
    color: var(--theme-color-2);
}

/* home */

.banner-container{
    width: 100%;
    position: relative;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-7);
}

.banner-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-wrapper h1{
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
}

.banner-subscribe-group{
    width: 75%;
    position: relative;
    display: inline-block;
    margin: auto;
}

.banner-input{
    filter: drop-shadow(0px 5px 10px rgba(136, 136, 136, 0.25));
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 17px 135px 17px 30px;
    border-radius: 30px;
    background-color: var(--font-white);
    border: transparent;
}

.banner-wrapper form{
    width: 100%;
    margin-top: 2rem;
}

.banner-subscribe-group button{
    position: absolute;
    right: 5px;
    top: 5px;
}

.bfun-factor-container{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: -4rem;
    z-index: 10;
}

.bfun-factor-card{
    display: flex;
    align-items: center;
    padding: 25px;
}

.bfun-factor-card.odd{
    background-color: var(--theme-color-2);
}

.bfun-factor-card.even{
    background-color: #D6CAFB;
}

.bfun-factor-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.odd .bfun-factor-icon{
    background-color: var(--font-white);
    color: var(--theme-color-2);
    font-size: 28px;
}

.odd .bfun-factor-info h4{
    font-size: 24px;
    color: var(--font-white);
    margin-bottom: 5px;
}

.odd .bfun-factor-info h3{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.even .bfun-factor-icon{
    background-color: var(--theme-color-2);
    color: var(--font-white);
    font-size: 28px;
}

.even .bfun-factor-info h4{
    font-size: 24px;
    color: var(--theme-color-1);
    margin-bottom: 5px;
}

.even .bfun-factor-info h3{
    font-size: 32px;
    color: var(--theme-color-1);
    margin-bottom: 0px;
}

.bfun-factor-card.odd.first{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bfun-factor-card.odd.last{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* the slides */
.slick-slide {
    margin: 0 20px;
}

/* the parent */
.slick-list {
    margin: 0 -20px;
}

.section{
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.industry-leaders{
    padding: 3rem 0;
    width: 100%;
    position: relative;
    display: inline-block;
}

.industry-leaders-text h4{
    margin-bottom: 0;
    font-size: 16px;
    color: #000000;
}

.industry-leaders-text{
    height: 100%;
    display: flex;
    align-items: center;
}

.industry-leaders-img img{
    filter: grayscale(1);
    opacity: 0.7;
}

.insights-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.insights-left{
    flex: 50%;
}

.insights-left h2{
    font-size: 36px;
    margin-bottom: 20px;
}

.insights-left p{
    margin-bottom: 0px;
}

.insights-right{
    flex: 50%;   
    display: flex;
}

.insights-right-item ul li{
    display: inline-block;
    color: rgb(222 192 11);
}

.insights-right-item{
    margin: 0px 2rem;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-heading-wrapper span{
    background-color: #D3F2C8;
    height: 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A530A;
    font-family: 'Jost-Medium';
    text-transform: uppercase;
    max-width: max-content;
    padding: 3px 20px;
}

.section-heading-wrapper h1{
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.center{
    text-align: center;
}

.section-heading-wrapper.center span{
    margin: auto;
}

.features-icon{
    width: 75px;
    height: 75px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: auto;
}

.blue{
    background-color: var(--theme-color-3);
}

.yellow{
    background-color: var(--theme-color-4);
}

.orange{
    background-color: var(--theme-color-5);
}

.pink{
    background-color: var(--theme-color-6);
}

.features-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 0px 10px;
    text-align: center;
    height: 100%;
}

.features-body{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
}

.features-body h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-learn-link{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    color: var(--theme-color-2);
    font-family: 'Jost-Medium';
}

.feature-learn-link::after{
    content: '\f061';
    position: relative;
    display: inline-block;
    margin-left: 10px;
    font-family: 'Fontawesome';
    font-size: 10px;
}

.analytics-content-info-card{
    width: 100%;
    position: relative;
    display: inline-block;
}

.aci-card-icon{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    /* margin: auto; */
}

.aci-card-info h3{
    font-size: 20px;
    margin: 15px 0px;
}

.analytics-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.analytics-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.analytics-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem 0;
}

.analytics-content-info {
    padding-top: 35px;
    /* margin-top: 20px; */
    border-top: 1px solid #ddd;
}

.bulletpoint{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D3F2C8;
    color: #2A530A;
    font-size: 10px;
    border-radius: 6px;
}

.aci-info-pointsList li{
    width: 50%;
    float: left;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.aci-info-pointsList li:last-child{
    margin-bottom: 0;
}

.aci-info-pointsList li h4{
    font-size: 18px;
    margin-left: 10px;
}

.analytics-content-percent h3{
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.analytics-content-percent h3:last-child{
    margin-bottom: 0;
}

.analytics-content-percent h3 span{
    font-size: 16px;
    color: var(--font-color);
    margin-left: 15px;
    font-family: 'Jost-Regular';
}

.intergration-list ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.intergration-list ul li{
    margin: 0px 5px;
    margin-bottom: 10px;
}

.intergration-item-inner{
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-7);
    border-radius: 10px;
}

.intergration-item-inner img{
    width: 90px;
}

.testimonial{
    background-color: #DFF7DF;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.top-testimonial-author{
    display: flex;
    align-items: center;
}

.top-testimonial-author-img{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

.top-testimonial-author-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.top-testimonial-author-info h3{
    font-size: 20px;
}

.top-testimonial-author {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.top-testimonial-left h4{
    font-size: 24px;
}

.top-testimonial-right{
    width: 100%;
    height: 100%;
}

.top-testimonial-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-bottom-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--font-white);
}

.testimonial-bottom-top ul li{
    display: inline-block;
    color: rgb(222 192 11);
}

.testimonial-bottom-down{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.tbd-image{
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 10px;
}

.tbd-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tbd-content h3{
    font-size: 20px;
}

.testimonial-bottom-top ul{
    margin-bottom: 10px;
}

.faq{
    padding: 4rem 0;
    background-color: var(--theme-color-7);
}

.faq .accordion-button::after{
    background-image: none;
    position: relative;
    content: '\f067';
    font-family: 'Fontawesome';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
}

.faq .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq-container{
    width: 100%;
    position: relative;
    display: inline-block;
}

.faq-container .accordion{
    width: 100%;
    float: left;
}

.faq-container .accordion .accordion-item{
    width: 48%;
    float: left;
    margin: 0px 9px;
    margin-bottom: 20px;
}

.get-start-wrapper h3{
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 15px;
    text-align: center;
    color: var(--font-white);
}

.get-start-wrapper p{
    text-align: center;
    color: var(--font-white);
}

.get-start{
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(109, 58, 254, 0.7) 0%, rgba(48, 15, 142, 0.7) 100%), url('../images/get-start-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 4rem 0;
}

.get-start-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.get-start-btns a{
    margin: 0px 8px;
}

.getstart-btn{
    background-color: #D3F2C8;
    color: #2A530A;
    transition: ease-in 0.3s;
}

.request-btn{
    background-color: #ffffff;
    color: #120245;
    transition: ease-in 0.3s;
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 4rem;
}

.footer-about-logo a img{
    width: 160px;
}

.footer-about-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.footer-about-info ul{
    margin-top: 10px;
}

.footer-about-info ul li{
    margin-bottom: 10px;
}

.footer-about-info ul li:last-child{
    margin-bottom: 0px;
}

.footer-about-info ul li i{
    margin-right: 10px;
}

.footer-links h3{
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li{
    margin-bottom: 13px;
}

.footer-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-bottom{
    width: 100%; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
    padding-bottom: 25px;
}

.footer-bottom-center ul li{
    display: inline-block;
    margin: 0px 10px;
}

.footer-bottom-right ul li{
    display: inline-block;
    margin: 0px 3px;
}

.footer-bottom-right ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.nav-link:focus, .nav-link:hover{
    color: var(--theme-color-2);
}

.page-banner{
    background-color: var(--theme-color-7);
    display: inline-block;
    width: 100%;
    padding: 4rem 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url('../images/Abstract-PNG-Image.png'); */
    background-image:linear-gradient(45deg,
              rgba(246,245,248, 0.9),
              rgba(246,245,248, 0.9)), url('../images/Abstract-PNG-Image.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-banner-wrapper h3{
    font-size: 24px;
    margin-bottom: 0;
}

.page-banner-wrapper ul li{
    display: inline-block;
}

.page-banner-wrapper ul li::after{
    content: '\f054';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    margin: 0px 10px;
    font-size: 10px;
}

.page-banner-wrapper ul li:last-child:after{
    display: none;
}

.fun-factor1-card{
    text-align: center;
}

.fun-factor1-card img{
    text-align: center;
    width: 40px;
}

.fun-factor1-card h3{
    font-size: 20px;
    margin: 15px 0px;
}

.fun-factor1-card h2{
    font-size: 28px;
    color: var(--theme-color-2);
}

.funfactor1{
    background-color: var(--theme-color-7);
    padding: 4rem 0;
}

.fun-factor1-card{
    padding: 25px;
    background-color: var(--font-white);
    border-radius: 10px;
    height: 100%;
}

.ourteam-card{
    width: 100%;
    height: 300px;
    position: relative;
}

.ourteam-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
}

.ourteam-card-info {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 25px;
    width: 100%;
    border-bottom-right-radius: 55px;
    background-image: linear-gradient(to bottom right, rgba(255,0,0,0), rgba(18,2,69,1));
}

.ourteam-card-info h3{
    font-size: 20px;
    color: var(--font-white);
}

.ourteam-card-info p{
    color: var(--font-white);
}

.pricing-card{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 25px 15px;
    border-top: 5px solid red;
}

.pricing-card.basic{
    border-color: var(--theme-color-3);
}

.pricing-card.pro{
    border-color: var(--theme-color-4);
}

.pricing-card.business{
    border-color: var(--theme-color-5);
}

.pricing-card.enterprise{
    border-color: var(--theme-color-6);
}

.pricing-card-info{
    width: 100%;
    position: relative;
    display: inline-block;
}

.pricing-card-info h3{
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.pricing-card-price{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 20px 0px;
}

.pricing-card-price h2{
    font-size: 32px;
    margin-bottom: 0;
}

.pricing-card-price h2 span{
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}

.pricing-card-btn{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.pricing-card-btn .btn-main{
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background-color: transparent;
    border-color: var(--theme-color-2);
    color: var(--theme-color-2);
}

.pricing-card-list ul li{
    margin: 10px 0px;
}

.pricing-card-list ul li p::before{
    content: '\f058';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    color: #2A530A;
}

.contactus-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--theme-color-7);
    height: 100%;
    text-align: center;
}

.contactus-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 24px;
    background-color: var(--theme-color-1);
    color: var(--theme-color-2);
    margin: auto;
}

.contactus-card h3{
    font-size: 20px;
    margin: 15px 0px;
}

.map-generator{max-width: 100%; max-height: 100%; background: none;}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
}

.whatget-right-card{
    width: 100%;
    position: relative;
    display: inline-block;
}

.whatget-right-card img{
    width: 40px;
    margin-bottom: 20px;
}

.whatget-right-card h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.whycompany{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-1);
    padding: 5rem 0;
}

.whycompany .section-heading-wrapper h1{
    color: var(--font-white);
}

.whycompany .section-heading-wrapper p{
    color: var(--font-white);
}

.whycompany-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    height: 100%;
    border-radius: 10px;
    background-color: rgb(255 255 255 / 20%);
}

.whycompany-card h3{
    font-size: 24px;
    color: var(--font-white);
    margin-bottom: 25px;
}

.whycompany-card p{
    color: var(--font-white);
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    border-radius: 30px;
}

.blog-card-img{
    width: 100%;
    height: 210px;
    position: relative;
    display: inline-block;
}

.blog-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
}

.blog-card-info-author img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card-info-author{
    display: flex;
    align-items: center;
    margin: 15px 0px;
}

.blog-card-info-author h3{
    font-size: 16px;
    margin: 0px 10px;
}

.blogInfo {
    padding: 2px 10px;
    border-radius: 6px;
    background-color: #D3F2C8;
    color: #2A530A;
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
}

.blog-card-info-text h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card-info-shares{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.blogShare-btn{
    border: none;
    padding: 3px 10px;
    border-radius: 30px;
}

.blogShare-btn i{
    margin-right: 5px;
    opacity: 0.5;
}

.blogShare-btn.blog-like{
    background-color: rgb(141 229 254 / 25%);
}

.blogShare-btn.blog-comment{
    background-color: rgb(255 163 101 / 25%);
}

.blogShare-btn.blog-bookmark{
    background-color: rgb(255 217 130 / 25%);
}

.blogShare-btn.blog-bookmark i{
    margin-right: 0;
}

.singleblog-main{
    width: 100%;
    position: relative;
    display: inline-block;
}

.singleblog-main-image{
    width: 100%;
    height: 500px;
    position: relative;
    display: inline-block;
}

.singleblog-main-image img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 30px;
}

.blogInfo-details{
    padding: 5px 10px;
    border-radius: 6px;
    background-color: #D3F2C8;
    color: #2A530A;
    font-size: 12px;
    margin: 20px 0px 10px 0px;
    display: inline-block;
}

.singleblog-main .blog-card-info-text h1{
    font-size: 32px;
    margin: 20px 0px;
}

.singleblog-main .blog-card-info-text h3{
    font-size: 24px;
    margin: 20px 0px 30px 0px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.blog-card-info-text p{
    margin-bottom: 20px;
}

.blogsub-images{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
}

.blogsub-images img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 30px;
}

.blog-list{
    list-style: disc;
    padding-left: 18px;
}

.blog-list li p{
    margin-bottom: 10px;
}

.comments-wrapper{
    width: 100%;
    display: inline-block;
    position: relative;
    margin: 1rem 0;
}

.comments-wrapper h3{
    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: 'Jost-Medium';
    color: var(--theme-color-3);
}

.comments-info-top p{
    margin-bottom: 10px;
    font-size: 12px;
}

.reply-wrapper h3{
    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 #ddd;
}

.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;
}

.blog-latest{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px;
    background-color: var(--theme-color-7);
    border-radius: 10px;
}

.blog-latest h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-latest-wrapper{
    display: flex;
    align-items: center;
}

.blog-latest-wrapper-img{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-right: 15px;
    min-width: 60px;
}

.blog-latest-wrapper-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-latest-wrapper-info h2{
    font-size: 16px;
    height: 40px;
    overflow: hidden;
}

.blog-latest-list li{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.blog-latest-list li:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
}

.blog-latest-wrapper-info p{
    font-size: 12px;
}

.blog-latest-wrapper-info p i{
    margin-right: 5px;
}

.blog-tags-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.blog-tags-list li a{
    padding: 10px 0px;
}

.page-full{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.page-full-inner{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.error-inner h2{
    font-size: 150px;
    /* margin-bottom: 20px; */
    color: var(--theme-color-4);
}

.error-inner h4{
    font-size: 40px;
    margin-bottom: 20px;
}

.error-inner p{
    margin-bottom: 20px;
}

.error-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (max-width: 768.5px){
   
    .banner-subscribe-group {
        width: 100% !important;
    }
    }