@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter-Bold.ttf');
}


:root{
    --theme-color-1: #B61561;
    --theme-color-2: #1382BF;
    --theme-color-3: #E866A2;
    --theme-color-4: #7794CB;
    --theme-color-5: #283750;
    --body-bg: #ffffff;
    --font-color: #000000;
    --heading-color: #000000;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold', sans-serif;
    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 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #ef127a;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-border{
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #095f8f;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: #fff;
    transition: none !important;
    height: 75px;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}


.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	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;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 16px;
    font-family: 'Inter-Medium', sans-serif;
    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;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.menubar-search{
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.menubar-search a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand img{
    width: 150px;
}

#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{
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 27px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}

.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;
    color: var(--theme-color-4);
}

.error-inner h4{
    font-size: 40px;
    margin-bottom: 20px;
}

.error-inner p{
    margin-bottom: 20px;
}

.page-full.error{
    background-image: url('../images/error-bg.png');
}

.faq .accordion-item{
    border: none;
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    margin-bottom: 20px;
    border-radius: 6px;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button::before{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f059";
    margin-right: 10px;
    font-size: 16px;
    color: var(--theme-color-4);
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.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-1);
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list > div span{
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
    color: var(--font-white);
    font-size: 14px;
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
}

.policy-description {
    margin-bottom: 15px;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.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: 10px;
    background: #001941;
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}

.check-success-icon{
    padding: 10px;
    margin-right: 10px;
	color: #fff;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/hearts-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about h3{
    font-size: 28px;
    margin-bottom: 25px;
}

.footer-about img{
    width: 150px;
    margin-bottom: 25px;
}

.footer-social{
    width: 100%;
    position: relative;
    display: flex;
    margin-top: 25px;
}

.footer-social li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
}

.footer-links{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-heading-line{
    width: 65px;
    background-color: var(--theme-color-1);
    color: var(--theme-color-1);
    opacity: 1;
}

.footer-links ul{
    margin-top: 30px;
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-contact{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-contact ul{
    margin-top: 30px;
}

.footer-contact ul li{
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.footer-contact ul li:last-child{
    margin-bottom: 0;
}

.footer-contact ul li b{
    min-width: 100px
}

.footer-bottom-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 25px 0px;
    border-top: 1px solid #ddd;
    margin-top: 25px;
}

.main-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 75px;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
}

.banner-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 12px;
    z-index: 10;
}

.banner-form-head{
    width: 100%;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #FFF0F7;
}

.banner-form-head h3{
    font-size: 18px;
}

.banner-form-body{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.banner-form-item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.banner-form-item:last-child{
    margin-bottom: 0;
}

.banner-form-item-sex{
    flex: 50%;
}

.banner-form-label{
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "inter-SemiBold", sans-serif;
}

.banner-form-inputchoose-group{
    width: 100%;
    display: flex;
    align-items: center;
}

.banner-form-input-group{
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.banner-form-input-group label{
    margin-left: 10px;
}

.banner-form-input-group input[type='radio'] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    outline: none;
}

.banner-form-input-group.men input[type='radio'] {
    border: 1px solid var(--theme-color-2);
}

.banner-form-input-group.women input[type='radio'] {
    border: 1px solid var(--theme-color-1);
}

.banner-form-input-group input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}

.banner-form-input-group.men input[type="radio"]:checked:before {
    background: var(--theme-color-2);
}

.banner-form-input-group.men input[type="radio"]:checked {
  border-color:var(--theme-color-2);
}

.banner-form-input-group.women input[type="radio"]:checked:before {
    background: var(--theme-color-1);
}

.banner-form-input-group.women input[type="radio"]:checked {
  border-color:var(--theme-color-1);
}

.banner-form-age-group{
    display: flex;
    align-items: center;
}

.banner-form-age-input{
    width: 75px;
    border-radius: 6px;
    background-color: #F0F0F0;
    border: 1px solid #ddd;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-form-age-group span{
    display: inline-block;
    width: auto;
    margin: 0px 8px;
}

.banner-form-item-checkbox{
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.banner-form-item-checkbox label{
    margin-left: 10px;
}

.banner-form-item-checkbox input[type='checkbox'] {
    width: 20px;
    height: 20px;
}

.banner-form-item span{
    margin: 0px 15px;
}

.banner-form-item a{
    width: auto;
    display: inline-block;
    color: var(--theme-color-2);
}

.banner-form-item a.btn-secondary{
    color: var(--font-white) !important;
}

.banner-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    background-color: rgb(0 0 0 / 25%);
    z-index: 9;
    margin-left: -3rem;
    border-radius: 12px;
}

.banner-content-wrapper h4{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.banner-content-wrapper h2{
    font-size: 48px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-content-wrapper p{
    color: var(--font-white);
}

.apps-logo-group{
    width: 100%;
    position: relative;
    display: inline-block;
}

.apps-logo-group p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.apps-logo-wrapper{
    display: flex;
    align-items: center;
}

.apps-logo-wrapper a img{
    width: 200px;
}

.howitworks-container{
    background-color: #FFF0F7;
}

.howitworks-card-wrapper{
    width: 100%;
    padding: 25px;
    border-radius: 40%;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 240, 247, 0.5));
    margin-bottom: 24px;
}

.howitworks-card-wrapper:last-child{
    margin-bottom: 0px;
}

.howitworks-content-wrapper.left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.howitworks-card-wrapper img{
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
}   

.howitworks-card-wrapper h3{
    font-size: 22px;
    margin: 15px 0px;
    text-align: center;
}

.howitworks-card-wrapper p{
    text-align: center;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3.5rem;
}

.section-heading-wrapper h2{
    font-size: 40px;
    font-family: 'Inter-Regular', sans-serif;
}

.section-heading-wrapper h2 span{
    font-family: 'Inter-Bold', sans-serif;
}

.looking-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/hearts-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.looking-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.looking-card-item{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
}

.looking-card-item.one{
    background-color: #D5F3FE;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.looking-card-item.two{
    background-color: #E4F4F1;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.looking-card-item.three{
    background-color: #F5D1DE;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.looking-card-item.four{
    background-color: #FFEDCD;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.looking-card-item > div{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.looking-card-item > div span{
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    border-radius: 50%;
    background-color: var(--font-white);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.looking-card-item > div h3{
    font-size: 24px;
    margin-left: 15px;
}

.guarantee-content-wrapper{
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.guarantee-content-wrapper h2{
    font-size: 40px;
    margin-bottom: 20px;
}

.guarantee-content-wrapper h4{
    font-size: 34px;
    margin-bottom: 20px;
}

.guarantee-content-wrapper p{
    margin-bottom: 1rem;
}

.steps-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to top, rgba(242, 244, 254, 1), rgba(242, 244, 254, 0.5)), url('../images/bg-layer-full.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 15rem;
    margin-top: -8rem;
    z-index: 11;
}

.steps-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 20px 10px rgb(0 0 0 / 4%);
    height: 100%;
}

.steps-card-wrapper h3{
    font-size: 20px;
    margin: 15px 0px;
}

.steps-card-wrapper.middle{
    margin-top: 4rem;
}

.steps-section-heading1{
    font-size: 40px;
    margin-bottom: 15px;
}

.steps-section-heading2{
    font-size: 34px;
}

.happycustomer-container{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
}

.happycustomer-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 380px;
}

.happycustomer-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.happycustomer-name{
    box-shadow: 0px 5px 20px 5px rgb(0 0 0 / 10%);
    height: 70px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: absolute;
    bottom: 0px;
    background: #fff;
    left: 50%;
    transform: translate(-50%, 30px);
    white-space: pre;
    border-radius: 12px;
}

.happycustomer-name h3{
    color: var(--font-color);
    font-size: 18px;
}

.mt-8rem{
    margin-top: 8rem;
}

.divider-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 8rem 0rem;
    background-image: url('../images/divider-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.divider-banner::before{
    position: absolute;
    background: rgb(40 55 80 / 50%);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
}

.price-card-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    background-color: var(--font-white);
    box-shadow: 0px 5px 20px 5px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 12px;
}

.pricing-head{
    margin-bottom: 25px;
}

.pricing-head h3{
    font-size: 32px
}

.pricing-lists ul li{
    margin-bottom: 10px;
}

.pricing-lists ul li:last-child{
    margin-bottom: 0px;
}

.pricing-lists ul li img{
    width: 16px;
    margin-right: 10px;
}

.pricing-bottom{
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.pricing-bottom h2{
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-bottom h2 span{
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
}

.price-card-wrapper.vip{
    background-color: var(--theme-color-5);
}

.vip .pricing-head h3{
    color: var(--font-white);
}

.vip .pricing-lists ul li{
    color: var(--font-white);
}

.vip .pricing-bottom h2{
    color: var(--font-white);
}

.popular-badge{
    background: linear-gradient(to bottom, rgba(182, 21, 97, 1), rgba(19, 130, 191, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 30px;
    padding: 10px 15px;
    color: var(--font-white);
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    white-space: nowrap;
}

.price-tabs{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-tabs .nav-pills .nav-item{
    margin: 0px 10px;
}

.price-tabs .nav-pills .nav-item .nav-link{
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid var(--theme-color-1);
    color: var(--theme-color-1);
    padding: 10px 15px;
    background-color: transparent;
    min-width: 135px;
}

.price-tabs .nav-pills .nav-link.active, .price-tabs .nav-pills .show>.nav-link{
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.reviews-main-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-5);
    border-radius: 12px;
    padding-top: 3rem;
}

.reviews-content-wrapper{
    display: flex;
    align-items: flex-start;
}

.reviews-content-quote{
    margin-right: 20px;
}

.reviews-content-quote img{
    min-width: 80px;
    opacity: 0.1;
}

.reviews-content-info h3{
    font-size: 24px;
    color: var(--font-white);
}

.reviews-content-info p{
    margin-bottom: 10px;
    color: var(--font-white);
}

.funfactor-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

.funfactoe-item{
    width: 100%;
    position: relative;
    padding: 20px;
}

.funfactoe-item h3{
    color: var(--font-white);
    font-size: 40px;
}

.funfactoe-item h3 span{
    color: var(--theme-color-1);
    font-size: 30px;
    margin-left: 5px;
}

.funfactoe-item p{
    color: var(--font-white);
}

.reviews-layer{
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
}

.reviews-layer img{
    border-bottom-left-radius: 12px;
}

.reviews-person-img{
    position: relative;
    z-index: 11;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.funfactoe-item:last-child{
    margin-bottom: 2rem;
}

.faq-collapse .accordion-item{
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    border-radius: 12px;
    background-color: var(--font-white);
    margin-bottom: 20px;
    border: none;
}

.faq-collapse .accordion-button{
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    height: 80px;
    color: var(--font-color)
}

.faq-collapse .accordion-button:not(.collapsed){
    color: var(--font-color);
    height: 55px;
}

.faq-collapse .accordion-button::after{
    content: '\f067';
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    color: var(--theme-color-2);
}

.faq-collapse .accordion-button:not(.collapsed)::after{
    content: '\f068';
    transform: none;
    color: var(--theme-color-1);
}

.appinfo-container{
    background-color: #1382BF;
    padding: 10px 0px;
}

.appinfo-content h3{
    font-size: 40px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.appinfo-content p{
    color: var(--font-white);
    margin-bottom: 2rem;
}

.appinfo-content ul li{
    display: inline-block;
}

.appinfo-content ul li a img{
    width: 150px;
}

.appinfo-content{
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.page-banner-contaner{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url('../images/divider-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.page-banner-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-banner-heading{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 25px;
    text-align: center;
}

.page-banner-description{
    color: var(--font-white);
    margin-bottom: 0;
    text-align: center;
}

.page-banner-breadcrumb{
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: var(--theme-color-1);
    padding: 15px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transform: translate(-50%, 0%);
}

.page-banner-breadcrumb ul{
    display: flex;
    align-items: center;
}

.page-banner-breadcrumb ul li{
    font-family: 'Inter-Medium', sans-serif;
    color: var(--font-white);
    margin: 0px 5px;
    white-space: nowrap;
}

.about-content-wrapper h2{
    font-size: 40px;
    margin-bottom: 25px;
    font-family: 'Inter-Regular', sans-serif;
}

.about-content-wrapper h2 span{
    font-family: 'Inter-Bold', sans-serif;
}

.about-content-wrapper p{
    margin-bottom: 2rem;
}

.about-how-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.ahc-icon{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--theme-color-5);
    margin: auto;
}

.about-how-card-wrapper h3{
    font-size: 24px;
    margin: 20px;
    text-align: center;
}

.about-how-card-wrapper p{
    text-align: center;
}

.info-counts ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-counts ul li{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.info-counts ul li i{
    margin-right: 10px;
}

.info-counts ul li h3{
    font-size: 20px;
}

.info-counts ul li h3 span{
    font-family: 'Inter-Regular', sans-serif;
}

.info-counts{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.info-btn{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.community{
    background-color: #FFF0F7;
}

.community-info-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 20px 10px rgb(0 0 0 / 4%);
    height: 100%;
}

.community-info-card img{
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.community-info-card a h3{
    margin: 20px 0px;
    font-size: 20px
}

.custom-message-tile{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-top: 1px solid rgba(166,158,146,0.6);
    padding: 24px;
    position: relative;
    width: 100%;
}

.custom-message-tile>div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    text-align: left;
}

.custom-message-tile>div div:nth-of-type(2) {
    padding: 5px 0;
}

.custom-message-tile>div div:nth-of-type(1) h3 a {
    font-family: "AtlasGrotesk",sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 8px;
    display: inline-block;
    color: #1e1919;
}

.custom-message-tile>div div:nth-of-type(1) div {
    color: rgba(82,74,62,0.82);
    font-size: 12px;
    font-weight: 200;
}

.custom-message-tile>div div:nth-of-type(1) div>a, .custom-message-tile>div div:nth-of-type(1) div>time, .custom-message-tile>div div:nth-of-type(1) div .status {
    color: rgba(82,74,62,0.82);
    font-size: 12px;
    font-weight: 200;
}

.custom-message-tile>div div:nth-of-type(1) div>a, .custom-message-tile>div div:nth-of-type(1) div>time, .custom-message-tile>div div:nth-of-type(1) div .status {
    color: rgba(82,74,62,0.82);
    font-size: 12px;
    font-weight: 200;
}

.custom-thread-status.custom-thread-solved {
    color: #00864C;
    font-family: "Inter-Regular",sans-serif;
    padding: 5px 5px 5px 0;
}

.custom-message-tile:nth-of-type(1) {
    border-top: none;
}

.custom-message-tile aside {
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 190px;
    padding-left: 40px;
}

.custom-tile-statistics>li {
    color: #7c7c7c;
    display: inline-block;
    margin-right: 24px;
    position: relative;
    vertical-align: middle;
}

.custom-message-tile aside ul>li {
    min-width: 64px;
}

.custom-tile-statistics>li span{
    margin-left: 5px;
}

.custom-message-tile aside ul>li:last-child {
    margin-right: 0;
}

.contactus-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.contactus-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.contactus-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.contactus-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.contactus-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contactus-section-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.contactus-section-heading h2{
    font-size: 36px;
    margin-bottom: 15px;
}

.contactus-lists{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 20px 10px rgb(0 0 0 / 4%);
}

.contactus-lists h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.contactus-social ul{
    display: flex;
}

.contactus-social ul li{
    margin-right: 10px;
}


.contactus-social ul li a{
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-2);
    border-radius: 50%;
    color: var(--font-white);
}

.contactus-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.error-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.comingsoon .footer-social-list {
    margin-top: 20px;
}

.comingsoon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}

.comingsoon .footer-social-list li a{
    color: var(--font-white);
}

.comingsoon .footer-heading{
    color: var(--font-white);
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 20px 10px rgb(0 0 0 / 4%);
}

.blog-image{
    width: 100%;
    height: 150px;
    display: inline-block;
    position: relative;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.blog-badge{
    color: #fea462;
    background-color: rgba(254,164,98,.2);
    border-radius: 20px;
    margin-bottom: 0;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    text-decoration: none;
    display: inline-block;
}

.bloh-heading{
    width: 100%;
    display: inline-block;
}

.bloh-heading h3{
    color: var(--font-color);
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: ease-in-out 0.3s;
}

.bloh-heading h3:hover{
    transition: ease-in-out 0.3s;
    color: var(--theme-color-1);
}

.blog-content ul{
    margin-bottom: 20px;
}

.blog-content ul li a{
    color: #a9a9a9;
    background-color: #efefef;
    border-radius: 20px;
    margin-bottom: 6px;
    margin-left: auto;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
    display: inline-block;
}

.read-more-link{
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'Inter-Medium', sans-serif;
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.read-more-link:hover{
    transition: ease-in-out 0.3s;
    color: #095f8f;
}