*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--primary-color: #5f1de8;
--cta-btn: #1E61BB;
--primary-border-color: #5f1de8;
--primary-gradient: linear-gradient(180deg, #5f1de8 0%, #450abf 100%);
--card-header-bg-gradient: linear-gradient(182deg, #5f1de8 0%, #450abf 100%);
--primary-hover-gradient: linear-gradient(180deg, #5f1de8 100%, #450abf 0%);
--secondary-dark: #0D2548;
--footer-background: #092251;
--footer-icon-bg: linear-gradient(180deg, #644cc3 0%, #644cc3 100%);
--terms-menu-active: #5f1de8;
--bg-white: #FFFFFF;
--text-white: #FFFFFF;
--text-black: #000000;
--text-grey: #878F99;
--title-black: #000000;
--title-primary: #1A4699;
--tb-title-color: #6B7280;
--input-day-bg: #F4F7FF;
--input-day-border: #D1D5DB;
--font-title:  'Fredoka', sans-serif;
--font-text: 'Poppins', sans-serif;
--font-normal: 400;
--font-medium:600;
--font-bold:700;
--font-extra-bold:800;
--nav-bg: #ffffff;
--nav-acitve: #5f1de8;
--nav-box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.11);
--dark-body-bg: #111826;
--dark-box-bg: #131e30;
--dark-btn-bg: #1a2c48;
}
body{
font-family: var(--font-text);
font-size: 16px;
font-weight: var(--font-normal);
box-sizing: border-box;
background: var(--bg-white);
}
.fa,
.fas,
.fab{
font-family: "Font Awesome 5 Pro"!important;
}
a{
text-decoration: none;
cursor: pointer;
}
button{
cursor: pointer;
}
.hidden{
display: none;
}
.form-control{
margin-bottom: 15px;
}
textarea.form-control{
padding-top: 10px!important;
min-height: 200px;
}
.text-bold{
font-weight: var(--font-bold);
}
.text-black{
color: var(--text-black);
}
.btn-primary{
font-family: var(--font-text);
font-size: 18px;
padding: 15px 30px;
font-weight: var(--font-medium);
background: var(--primary-gradient);
border-radius: 50px;
border: none!important;
cursor: pointer;
transition: 0.5s ease;
}
.btn-primary:hover{
transform: translateY(-3px);
}
.btn-banner-all{
font-family: var(--font-text);
color: var(--text-white);
font-size: 20px;
font-weight: var(--font-medium);
background: var(--primary-gradient);
border-radius: 50px;
padding: 15px 30px;
min-width: 230px;
border: none;
cursor: pointer;
margin-top: 25px;
transition: 1s ease;
box-shadow: 0 5px 10px #5f1de834;
}
.btn-banner-all:hover{
transform: translateY(-5px);
color: var(--text-white);
}
.btn_scondary{
font-family: var(--font-text);
font-size: 18px;
font-weight: var(--font-medium);
color: var(--text-white);
background: var(--secondary-dark);
padding: 10px 30px;
border-radius: 50px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
transition: 0.5s ease;
}
.btn_scondary .icon{
transition: 1s ease;
}
.btn_scondary:hover {
background: var(--secondary-dark);
color: var(--text-white);
}
.btn_scondary:hover .icon{
animation: iconSrink 3s infinite;
}
@keyframes iconSrink {
0%{
transform: translateX(0px);
}
50%{
transform: translateX(-5px);
}
100%{
transform: translateX(0px);
}
}
.website_loader {
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background: var(--text-white);
z-index: 99999;
top: 0;
left: 0;
}
.website_loader .website_loader_icon > img{
width: 120px;
margin-bottom: 15px;
}
.website_loader .loader_loading{
font-size: 20px;
}
.website_loader.hidden{
display: none;
}
.main_header .nav-logo{
width: 230px;
max-width: 250px;
}
.main_header .navbar{
box-shadow: var(--nav-box-shadow);
}
.main_header .nav-item .nav-link{
padding: 10px 15px;
font-weight: var(--font-normal);
}
.main_header .sp_menu{
margin-left: 20px;
}
.main_header .sp_menu .nav-item .nav-link{
font-weight: var(--font-bold);
padding: 8px 25px;
border-radius: 50px;
border: 2px solid var(--cta-btn);
color: var(--cta-btn);
transition: 0.5s ease-in-out;
}
.main_header .sp_menu .nav-item .nav-link:hover{
background: var(--cta-btn);
color: var(--text-white);
}
.main_header .nav-item .nav-link.active{
color: var(--nav-acitve);
font-weight: var(--font-bold);
border-bottom: 2px solid var(--primary-border-color);
}
.main_header .sp_menu .nav-item:first-child{
margin-right: 10px;
}
.main_header .sp_menu .nav-item .nav-signup{
background: var(--cta-btn);
color: var(--text-white);
}
.main_header .sp_menu .nav-item .nav-signup:hover{
color: var(--cta-btn);
background: transparent!important;
}
footer{
position: relative;
background: var(--footer-background);
padding: 80px 0px 30px 0px;
color: var(--text-white);
}
.top-round-icon img{
width: 140px;
height: 140px;
}
.top-round-icon{
position: absolute;
top: -70px;
left: calc(50% - 70px);
}
.footer-content .footer-logo{
margin-bottom: 20px;
}
.footer-content > p{
font-size: 14px;
line-height: 1.5;
color: var(--text-white);
}
.footer-menu > ul{
list-style: none;
margin: 0;
padding: 0;
}
.footer-menu > ul li{
margin-bottom: 5px;
}
.footer-menu > ul li a{
font-size: 16px;
font-weight: var(--font-normal);
text-decoration: none;
color: var(--text-white);
cursor: pointer;
transition: 0.5s ease;
}
.footer-menu > ul li a:hover{
color: var(--nav-acitve);
}
.footer-item {
display: flex;
gap: 10px;
margin-bottom: 20px;
align-items: center;
}
.footer-item .footer-icon{
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
font-size: 20px;
background: var(--footer-icon-bg);
border-radius: 50px;
}
.footer-item .footer-address{
color: var(--text-white);
font-size: 16px;
line-height: 1.4;
}
.footer-item .footer-address a{
font-size: 16px;
color: var(--text-white);
text-decoration: none;
cursor: pointer;
transition: 0.5s ease;
}
.footer-item .footer-address a:hover{
color: var(--nav-acitve);
}
.default_home_title{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
color: var(--text-black);
word-spacing: 5px;
margin-bottom: 5px;
}
body.menu_active > main,
body.menu_active,
body.menu_active > header{
transition: 0.5s ease-in-out;
}
body.menu_active > main {
filter: blur(10px);
overflow: hidden;
}
body.menu_active {
overflow: hidden;
}
body.menu_active > header {
filter: blur(10px);
overflow: hidden;
}
#navMob{
transform: translateY(2000px);
position: fixed;
opacity: 0;
pointer-events: none;
transition: 0.5s ease-in-out;
}
@media only screen and (max-width:990px) {
#navMob {
bottom: 0px;
z-index: 9999999999;
width: 100%;
background: #fff;
border-radius: 30px 30px 0px 0px;
box-shadow: 0 0 10px #d3cfcf;
padding-bottom: 29px;
}
#navMob.active {
transform: translateY(0px);
opacity: 1;
pointer-events: auto;
bottom: 0;
}
}
.select2-container .select2-selection__id{
background: none;
width: auto;
min-width: auto;
margin: 0;
padding: 0;
font-size: 14px;
font-weight: normal;
color: var(--text-black);
}
.select2-container  .select2-selection__id::after {
content: ' -';
}
#service_description > label{
display: none;
}
.nav_content {
width: 90%;
margin: 0 auto;
}
.menu_mobs {
list-style-type: none;
padding: 0;
margin-top: 20px;
}
.menu_mobs li a {
font-size: 16px;
color: #000;
font-weight: bold;
display: block;
margin-bottom: 15px;
}
.menu_mobs li a.active{
color: var(--primary-color);
}
#navMob .nav_content .btn_wraper {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
padding: 0;
margin: 0;
}
#cls {
position: absolute;
top: 10px;
right: 10px;
background: var(--cta-btn);
border: none;
width: 40px;
height: 40px;
border-radius: 50px;
font-size: 20px;
color: #fff;
z-index: 999;
}
.btn_icon {
position: absolute;
background: var(--cta-btn);
width: 30px;
height: 30px;
border-radius: 50px;
display: inline-block;
line-height: 30px;
right: 8px;
top: 7px;
}
.navbar-toggler.nav_toggler_btn {
width: 50px;
height: 40px;
background: #3babfe2e;
border-color: #3babfe2e;
color: #36a4fe;
font-size: 25px;
}
#navMob .nav_content .btn_wraper a:first-child{
background: #e5e5e5;
color: #232323;
text-align: center;
}
#navMob .nav_content .btn_wraper a:last-child{
position: relative;
}
#navMob .nav_content .btn_wraper a {
background: var(--primary-color);
padding: 10px 0px;
border-radius: 50px;
color: #ffff;
font-weight: bold;
font-size: 16px;
text-align: center;
}
.card.card_v2{
border-radius: 12px;
background: var(--bg-white);
box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.07);
border: none;
z-index: 0;
}
.card.card_v3{
border-radius: 20px;
border: none;
}
.card.card_v3.after_login .card-header{
justify-content: left;
}
.card.card_v3 .card-header{
background: url('https://res.cloudinary.com/ddyxrxcom/image/upload/v1687660655/webp_assest/triangle_dxhw61.webp'),var(--card-header-bg-gradient);
background-repeat: no-repeat;
background-position: right center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px 20px 0px 0px;
padding: 30px;
height: 120px;
}
.card-header .card_header_title{
color: var(--bg-white);
font-family: var(--font-text);
font-size: 22px!important;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 2px;
}
.card-header .card_header_text{
color: var(--bg-white);
font-family: var(--font-text);
font-size: 14px!important;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.card.card_v3 .card_header_title{
font-family: var(--font-text);
color: var(--text-white);
font-size: 30px;
font-weight: var(--font-bold);
line-height: 1.2;
}
.card.card_v3 .card_header_dsc{
font-family: var(--font-text);
font-size: 16px;
color: var(--text-white);
font-weight: var(--font-normal);
line-height: 1.3;
}
.card.card_v3 .card-body{
background: var(--bg-white);
border: 1px solid #ddd;
border-top: none;
border-radius: 0px 0px 20px 20px;
}
.banner_all{
max-height: 700px;
padding-top: 70px;
padding-bottom: 70px;
background:  linear-gradient(284.51deg, #E5ECFF 22.46%, rgba(229, 236, 255, 0) 97.31%);;
}
.banner_center_text{
text-align: center;
}
.banner_top_small{
display: inline-flex;
padding: 5px 20px;
border-radius: 50px;
align-items: center;
gap: 5px;
justify-content: center;
background-color: var(--bg-white);
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.14);;
}
.banner_top_small .icon img{
width: 25px;
}
.banner_top_small .text{
font-size: 16px;
font-weight: var(--font-bold);
color: var(--text-grey);
}
.banner_center_text h1{
font-size: 50px;
font-weight: var(--font-bold);
font-family: var(--font-title);
text-align: center;
}
.banner_center_text p{
font-size: 16px;
font-weight: var(--font-normal);
text-align: center;
margin-bottom: 50px;
}
.terms_tabs .nav-pills{
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.terms_tabs .nav-pills .nav-link{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
background: var(--bg-white);
width: 207px;
height: 207px;
margin: 0 auto;
border: 3px solid var(--bg-white);
border-radius: 10px;
}
.terms_tabs .nav-pills .nav-link .terms_text{
font-family: var(--font-title);
font-size: 25px;
color: #000000;
font-weight: var(--font-bold);
}
.terms_tabs .nav-pills .nav-link.active{
border: 3px solid var(--terms-menu-active);
}
.terms_content_wrap{
margin: 70px 0px;
}
.terms_content_wrap .terms_content h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
margin-bottom: 30px;
}
.banner_content h1{
font-family: var(--font-title);
font-size: 50px;
font-weight: var(--font-bold);
line-height: 1.2;
margin-bottom: 15px;
}
.faq{
margin: 100px 0;
}
.faq .faq_title{
font-family: var(--font-title);
font-size: 40px;
line-height: 1.3;
font-weight: var(--font-bold);
margin-bottom:30px;
}
.faq_accordian .accordion-item{
background: var(--bg-white);
margin-bottom: 15px;
border-radius: 10px!important;
border:none!important;
box-shadow:  0px 0px 22px rgba(0, 0, 0, 0.1);
}
.faq_accordian .accordion-item .accordion-header .accordion-button{
font-size: 20px;
font-weight: var(--font-medium);
color: var(--text-black);
min-height: 70px;
background: transparent;
box-shadow: none;
}
.contact{
margin: 100px 0px;
min-height: 600px;
}
.contact .contact_info .contact_title{
font-family: var(--font-title);
font-weight: var(--font-bold);
font-size: 50px;
line-height: 1.3;
}
.contact .contact_info .contact_content{
font-family: var(--font-text);
font-weight: var(--font-normal);
font-size: 16px;
margin-bottom: 20px;
}
.contact .contact_item{
width: 100%;
margin: 20px 0px;
text-align: center;
background:var(--bg-white);
box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.08);
padding: 50px 10px;
border-radius: 20px;
max-width: 350px;
max-height: 300px;
}
.contact .contact_item > img{
margin-bottom: 20px;
}
.contact .contact_item > h6{
font-size: 20px;
font-weight: var(--font-bold);
line-height: 1.3;
margin-bottom: 5px;
}
.contact .contact_item > p{
font-size: 16px;
color: var(--text-grey);
}
.blog_wrapper{
margin: 70px 0px;
}
.blog_title h2{
font-family: var(--font-title);
font-weight: var(--font-bold);
font-size: 50px;
line-height: 1.3;
}
.blog_wrapper .blog_container{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.all_blogs .blog_card{
display: flex;
gap: 15px;
flex-direction: column;
background: var(--bg-white);
border: 1px solid #E5E7EB;
box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.07);
border-radius: 10px;
}
.all_blogs .blog_card:first-child{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
min-height: 350px!important;
max-height: 350px!important;
height: 350px!important;
overflow: hidden;
margin-bottom: 30px;
grid-column: span 3;
}
.all_blogs .blog_card:first-child .blog_image > img{
width: 100%!important;
object-fit: cover!important;
height: auto!important;
max-height: 350px!important;
min-height: auto!important;
}
.all_blogs .blog_card.blog_type1{
overflow: hidden;
min-height: 550px;
max-height: 550px;
border-radius: 10px;
}
.all_blogs .blog_card.blog_type1 .blog_image > img{
width: 100%;
max-height: 210px;
}
.all_blogs .blog_card.blog_type1 .blog_content{
display: flex-inline;
justify-content: space-between;
align-items: center;
flex-direction: column;
padding: 15px 25px;
}
.all_blogs .blog_card.blog_type1 .blog_content .top_title{
font-size: 14px;
font-weight: var(--font-bold);
color: var(--text-grey);
margin-bottom: 5px;
}
.all_blogs .blog_card.blog_type1 .blog_content .blog_title{
font-family: var(--font-title);
font-size: 24px;
font-weight: var(--font-bold);
margin-bottom: 5px;
}
.all_blogs .blog_card.blog_type1 .blog_content .blog_desc
{
font-family: var(--font-text);
font-size: 14px;
margin-bottom: 10px;
font-weight: normal;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
color: var(--text-grey);
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
max-height: 115px;
}
.all_blogs .blog_card.blog_type1 .blog_content .blog_desc *{
font-family: var(--font-text)!important;
font-size: 14px!important;
}
.all_blogs .blog_card:first-child .blog_content{
padding: 45px 30px;
}
.all_blogs .blog_card:first-child .blog_content .top_title{
font-size: 16px;
font-weight: var(--font-bold);
color: var(--text-grey);
margin-bottom: 5px;
}
.all_blogs .blog_card:first-child .blog_content .blog_title{
font-family: var(--font-title);
font-size: 30px;
font-weight: var(--font-bold);
margin-bottom: 5px;
}
.all_blogs .blog_card:first-child .blog_content .blog_desc{
font-size: 14px;
margin-bottom: 10px;
font-weight: var(--font-normal);
color: var(--text-grey);
}
.blog__post {
margin: 50px 0px;
}
.blog__post .blog__post__img > img {
width: 100%;
border-radius: 15px;
height: 450px;
object-fit: cover;
}
.blog__post .blog__post__content h1 {
font-family: var(--font-title);
font-size: 30px;
font-weight: bold;
}
.how-it-works {
position: relative;
overflow: hidden;
}
.how-it-works > .container > .row {
height: 450px;
}
.how-it-works .banner_right > img{
position: absolute;
right: 0px;
top: 0px;
width: 700px!important;
}
.how-it-works-wraper .video_wraper{
margin: 70px 0px;
}
.how-it-works-wraper .video_wraper .vid_title{
font-family: var(--font-title);
font-size: 50px;
font-weight: var(--font-bold);
line-height: 1;
color: var(--text-black);
margin-bottom: 10px;
}
.how-it-works-wraper .video_wraper .vid_text{
font-family: var(--font-text);
font-size: 16px;
color: var(--text-grey);
font-weight: var(--font-normal);
margin-bottom: 20px;
}
.how-it-works-wraper .video_wraper .video_box{
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 50%;
height: auto;
}
.how-it-works-wraper .video_wraper .video_box > img{
width: 100%;
filter: brightness(0.8);
border-radius: 15px;
}
.how-it-works-wraper .video_wraper .video_btn{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
z-index: 1;
border-radius: 50px;
outline: 0px solid #644cc3;
background: var(--bg-white);
animation: videoBtnAnimation 3s infinite;
transition: 0.5s ease;
}
@keyframes videoBtnAnimation {
0%{
outline-width: 0px;
}
50%{
outline-width: 10px;
}
100%{
outline-width: 0px;
}
}
.how-it-works-wraper .video_wraper .video_btn img{
max-width: 60px!important;
width: 60px;
height: 60px;
}
.how-it-signup{
pointer-events: none;
}
.how-it-work-step{
margin: 50px 0;
}
.how-it-work-step.step-common  .common-step-wraper{
height: 100%;
display: flex;
flex-direction: column;
align-items: end;
margin-top: 60px;
justify-content: space-between;
}
.step_diff  .diff_content h3,
.how-it-work-step.step-common  .common-step-wraper .common-step-content h3{
font-family: var(--font-title);
font-size: 45px;
color: var(--primary-color);
font-weight: var(--font-bold);
margin-bottom: 15px;
}
.step_diff  .diff_content p,
.how-it-work-step.step-common  .common-step-wraper .common-step-content p{
font-size: 16px;
color: var(--text-grey);
}
.how-it-work-step.step-common  .common_step_img{
text-align: right;
}
.how-it-work-step.step-common  .common_step_img > img{
width: 80%;
}
.step_diff{
padding: 20px 0;
}
.step_diff .step_diff_img > img{
width: 80%;
}
.signup{
padding: 70px 0px;
background: linear-gradient(284.51deg, #E5ECFF 22.46%, rgba(229, 236, 255, 0) 97.31%);
}
.signup .signup_left_area .signup_image img{
width: 450px;
}
.signup .signup_wraper h1{
font-family: var(--font-title);
font-size: 45px;
color: var(--text-black);
font-weight: var(--font-bold);
margin-bottom: 10px;
}
.signup .signup_wraper h1 .text_primary{
background: -webkit-linear-gradient(180deg, #5f1de8 0%, #644cc3 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.signup .signup_wraper h4{
font-size: 25px;
font-weight: var(--font-bold);
color: var(--text-grey);
margin-bottom: 20px;
}
.sign_up_card{
background: var(--bg-white);
padding: 50px 40px;
border-radius: 30px;
box-shadow:  0px 4px 33px rgba(0, 0, 0, 0.09);
}
main.signupPage ~ footer{
display: none!important;
}
.form-group.signup_group{
position: relative;
}
.form-group.signup_group .icon{
position: absolute;
font-size: 16px;
left: 15px;
top: 12px;
color: var(--cta-btn);
}
.form-group.signup_group{
margin-bottom: 20px;
}
.form-group.signup_group .form-control{
padding: 10px 35px;
background: #F4F7FF;
border: 1px solid #D1D5DB;
border-radius: 30px;
}
.form-group.signup_group .form-control:focus{
border-color: var(--primary-color);
outline: none;
box-shadow: none;
}
.btn-signup{
min-width: 300px;
}
.support_wraper{
padding: 100px 0px;
}
.support_wraper h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
margin-bottom: 10px;
}
.support_wraper p{
font-size: 16px;
color: var(--text-grey);
}
.service_filter{
margin-top: -60px;
}
.service_filter_wraper{
background: var(--bg-white);
border-radius: 20px;
padding: 30px 50px;
box-shadow:  0px 4px 33px rgba(0, 0, 0, 0.09);
}
.serv_search,
.filter_currency,
.filter_services{
margin: 0px 10px;
box-sizing: border-box;
}
.serv_search{
display: flex;
justify-content: space-between;
padding: 15px 25px;
border-radius: 50px;
background: #F4F7FF;
border: 1px solid #D1D5DB;
}
.serv_search .search_input{
width: 90%;
font-size: 16px;
border: none;
background: transparent;
}
.serv_search .search_input:focus{
border: none;
outline: none;
}
.filter_services .filter_btn{
font-family: var(--font-text);
font-weight: var(--font-bold);
display: flex;
width: 100%;
align-items: center;
padding: 15px 25px;
justify-content: space-between;
border-radius: 50px;
background: var(--secondary-dark);
border: none;
}
.filter_currency > button{
font-family: var(--font-text);
font-weight: var(--font-bold);
display: flex;
width: 100%;
color: var(--text-black);
align-items: center;
padding: 15px 25px;
justify-content: space-between;
border-radius: 50px;
background: #F4F7FF;
border: 1px solid #D1D5DB;
}
.filter_currency > button:hover{
border-color: var(--secondary-dark);
background: var(--secondary-dark);
}
.filter_currency > button::after{
display: none;
}
.currency_name{
color: #1E61BB;
}
.filter_currency > button:focus .currency_name,
.filter_currency > button:hover .currency_name{
color: var(--text-white)!important;
}
.dropdown-menu.v2{
width: 100%;
border: none;
padding: 10px  5px;
background: var(--bg-white);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.357);
}
.dropdown-menu.v2 .drop_dwon_items{
max-height: 350px;
overflow: auto;
}
.dropdown-menu.v2 .dropdown-item{
font-family: var(--font-text);
color: var(--text-black);
font-weight: var(--font-normal);
display: flex;
justify-content: baseline;
width: 98%;
gap: 10px;
padding: 5px 10px;
font-size: 16px;
cursor: pointer;
}
.dropdown-menu.v2 .dropdown-item.active,
.dropdown-menu.v2 .dropdown-item:hover,
.dropdown-menu.v2 .dropdown-item:active{
background: var(--primary-gradient);
color: var(--text-white);
border-radius: 5px;
}
.dropdown-menu.v2 .drop_dwon_items::-webkit-scrollbar{
width: 5px;
}
.dropdown-menu.v2 .drop_dwon_items::-webkit-scrollbar-track {
background: #e1e1e1;
border-radius: 50px;
}
.dropdown-menu.v2 .drop_dwon_items::-webkit-scrollbar-thumb {
background: var(--secondary-dark);
border-radius: 50px;
}
.dropdown-menu.v2 .dropdown-item .text{
text-align: left;
white-space: normal;
}
.btn-check:checked+.btn, .btn.active, .btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active{
background: var(--secondary-dark);
}
.filter_services .filter_btn::after{
display: none!important;
}
.service_filter_wrap{
padding: 70px 0px;
}
.service_filter_wrap.neworder{
padding: 25px 0px;
}
.service_filter_btn_wrap{
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 15px;
}
.service_filter_wrap.neworder .service_filter_btn_wrap{
gap: 20px;
}
.service_filter_btn{
padding: 10px 25px;
background: var(--bg-white);
box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.13);
text-align: left;
}
.service_filter_btn .icon,
.service_filter_btn .text{
pointer-events: none;
}
.service_filter_btn.activeItem{
background: var(--primary-gradient)!important;
color: var(--text-white)!important;
border: none!important;
}
.services_dsc_modal {
border-radius: 22px;
border: none;
}
.modal__close {
position: absolute;
top: 10px;
right: 10px;
}
.modal__close .btn_modal_close {
width: 40px;
background: #ff2c2c;
font-size: 18px;
color: #fff;
border-radius: 50px;
height: 40px;
cursor: pointer;
}
.services_dsc_modal .service_header{
background: url('https://res.cloudinary.com/ddyxrxcom/image/upload/v1687660655/webp_assest/triangle_dxhw61.webp'),var(--card-header-bg-gradient);
background-repeat: no-repeat;
background-position: right center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 20px 20px 0px 0px;
padding: 30px;
min-height: 120px;
height: auto;
}
.service_header #service_name{
display: block;
font-family: var(--font-text);
font-size: 20px;
font-weight: var(--font-extra-bold);
text-align: center;
color: var(--text-white);
margin-top: 10px;
}
.services_dsc_modal .services_body {
padding: 20px 25px;
}
.services_body .other_info {
display: flex;
justify-content: space-around;
text-align: center;
margin-bottom: 25px;
}
.services_body .other_info .info_item {
display: flex;
flex-direction: column;
gap: 10px;
}
.services_body .other_info .info_item .icon{
width: 40px;
height: 40px;
background: var(--primary-gradient);
color: var(--text-white);
font-size: 18px;
border-radius: 50px;
margin: 0 auto;
line-height: 40px;
}
.services_body .other_info .info_item .text{
font-family: var(--font-text);
color: var(--text-black);
}
.services_body .other_info .info_item .text h4{
font-size: 18px;
text-align: center;
margin-bottom: 5px;
}
.services_body .other_info .info_item .text > span{
font-size: 16px;
display: block;
}
.services_body #service_des {
font-size: 16px;
font-weight: var(--font-normal);
background: #f8f8f8;
padding: 15px;
border-radius: 10px;
margin-bottom: 20px;
color: var(--text-black);
}
.services_action {
text-align: center;
}
.services_action .btn-block{
min-width: 300px;
}
.serv_category_card{
background: #fff;
border: 1px solid #D9D9D9;
box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.03);
border-radius: 10px;
margin-bottom: 20px;
overflow: hidden;
}
.serv_category_card .serv_cat_card_header{
text-align: center;
background: var(--primary-gradient);
padding: 15px 30px;
}
.serv_category_card .serv_cat_card_header .category_name{
font-family: var(--font-title);
font-size: 25px;
font-weight: var(--font-medium);
color: var(--text-white);
text-align: center;
}
.serv_category_card .serv_cat_card_body{
padding: 20px;
}
.serv_category_card .serv_cat_card_body .service_item,
.serv_category_card .serv_cat_card_body .service_item.service_table_header{
display: flex;
flex-direction: row;
gap: 15px;
margin-bottom: 10px;
}
.serv_category_card .serv_cat_card_body .service_item.service_table_header{
margin-bottom: 25px;
}
.serv_category_card .serv_cat_card_body .service_item.service_table_header > span{
font-family: var(--font-text);
font-weight: var(--font-bold);
color: #575B62;
}
.serv_category_card .serv_cat_card_body .service_item .id{
width: 8%;
}
.serv_category_card .serv_cat_card_body .service_item .services_name{
width: 40%;
}
.serv_category_card .serv_cat_card_body .service_item .rate{
width: 15%;
}
.serv_category_card .serv_cat_card_body .service_item .max_order,
.serv_category_card .serv_cat_card_body .service_item .min_order{
width: 10%;
}
.serv_category_card .serv_cat_card_body .service_item .avg_time{
width: 20%;
}
.serv_category_card .serv_cat_card_body .service_item  .descriptions{
width: 10%;
}
.serv_category_card .serv_cat_card_body .service_item.service {
border-bottom: 2px solid #D1D5DB;
padding-top: 10px;
padding-bottom: 10px;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.id > span ,
.serv_category_card .serv_cat_card_body .service_item.service > span.min_order > span,
.serv_category_card .serv_cat_card_body .service_item.service > span.max_order > span,
.serv_category_card .serv_cat_card_body .service_item.service > span.rate > span{
display: inline-flex;
font-family: var(--font-text);
font-weight: var(--font-bold);
color: var(--text-black);
text-align: center;
justify-content: center;
align-items: center;
padding: 8px 20px;
border-radius: 10px;
background-color: #E2E5EE;
}
.serv_category_card .serv_cat_card_body .service_item:last-child{
border-bottom: none!important;
margin-bottom: 0px;
padding-bottom: 0px;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.id > span,
.serv_category_card .serv_cat_card_body .service_item.service > span.rate > span{
background: var(--secondary-dark);
color: var(--text-white);
}
.serv_category_card .serv_cat_card_body .service_item.service > span.avg_time{
display: flex;
align-items: center;
max-height: 35px;
}
.serv_category_card .serv_cat_card_body .service_item.service .services_name{
font-size: 16px;
font-weight: 400;
color: var(--text-black);
}
.serv_category_card .serv_cat_card_body .service_item.service > span.min_order,
.serv_category_card .serv_cat_card_body .service_item.service > span.max_order{
display: flex;
align-items: center;
max-height: 35px;
}
.btn_descriptions{
background: var(--secondary-dark);
color: var(--text-white);
font-weight: var(--font-bold);
font-size: 16px;
padding: 8px 25px;
border-radius: 50px;
transition: 0.8s;
}
.btn_descriptions:hover{
background: var(--secondary-dark);
color: var(--text-white);
scale: 1.05;
}
#hero{
padding: 100px 0px;
background: url();
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#hero .hero_img{
text-align: right;
}
#hero .hero_content .hero_top_content{
display: inline-block;
padding: 5px 15px;
border-radius: 50px;
background: #fff;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.14);
}
#hero .hero_content h1{
font-family: var(--font-title);
font-weight: var(--font-bold);
color: var(--text-black);
font-size: 45px;
text-transform: capitalize;
word-spacing: 5px;
line-height: 1.2;
}
#hero .hero_content p{
width: 70%;
font-size: 18px;
font-family: var(--font-text);
color: var(--text-black);
line-height: 1.5;
margin-bottom: 15px;
}
#hero .hero_content .ratings{
margin-bottom: 15px;
display: flex;
gap: 10px;
}
#hero .hero_content .ratings{
font-size: 18px;
font-family: var(--font-text);
font-weight: var(--font-bold);
color: var(--cta-btn);
text-transform: uppercase;
}
#hero .hero_content .ratings .fa-star{
font-size: 20px;
color: #FFB400;
}
.login_card{
margin-top: -70px;
padding: 20px;
border-radius: 30px;
background: var(--text-white);
box-shadow: 0px 4px 33px rgb(48 152 254 / 36%);
border: 0.5px solid rgb(48 152 254 / 55%);
}
.user_login{
display: flex;
}
.login_content_wrap .login_icon{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--primary-gradient);
width: 70px;
height: 60px;
border-radius: 10px 0px 0px 10px;
}
.login_content_wrap .login_user_input{
width: calc(100% - 70px);
outline: none;
padding: 10px;
font-size: 18px;
background: #F4F7FF;
border: 1px solid #D1D5DB;
border-radius: 0px 10px 10px 0px;
border-left: 0px;
}
.login_utility{
display: flex;
gap: 15px;
}
.btn_forAsset{
cursor: pointer;
width: 70px;
height: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #F4F7FF;
border: 1px solid #D1D5DB;
border-radius: 15px;
}
.btn_forAsset:has(> #remember:checked){
background: var(--primary-gradient);
}
.btn_forAsset:has(> #remember:checked) > img{
filter: brightness(1) invert(1);
}
.btn_login{
width: calc(100% - 160px);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 10px;
border-radius: 15px;
border: none;
background: var(--primary-gradient);
color: var(--text-white);
box-shadow: 0px 0px 33px rgba(32, 124, 254, 0.4);
}
.counter_section{
margin-top: 80px;
margin-bottom: 80px;
}
.counter_item{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 15px;
}
.counter_item .icon{
height: 150px;
}
.counter_item .counter_text h2{
font-size: 30px;
font-family: var(--font-title);
font-weight: var(--font-bold);
margin-bottom: 5px;
}
.counter_item .counter_text p{
font-size: 20px;
color: var(--text-grey);
}
#why_chose_us{
background: url(https://res.cloudinary.com/ddyxrxcom/image/upload/v1686066762/snf_asset/background-bgs_r0dgjr.png);
background-repeat: no-repeat;
background-size: cover;
padding: 100px 0px;
}
#why_chose_us .section_title{
text-align: center;
margin-bottom: 15px;
}
#why_chose_us .section_title h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
color: var(--text-black);
word-spacing: 5px;
margin-bottom: 5px;
}
#why_chose_us .section_title p{
font-family: var(--font-text);
color: var(--text-black);
width: 90%;
margin: 0 auto;
}
#why_chose_us .features .text-feature{
font-family: var(--font-text);
font-size: 30px;
font-weight: var(--font-bold);
color: var(--primary-color);
margin-bottom: 20px;
}
.features .features_items_wraper .feature_item {
width: 95%;
margin: 0 auto;
background: rgba(255, 255, 255, 0.5);
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
border-radius: 20px;
padding: 20px 35px;
text-align: center;
cursor: grab;
margin-bottom: 50px;
min-height: 400px;
}
.features .features_items_wraper .feature_item .icon > img{
width: auto;
height: 150px;
margin-bottom: 15px;
margin-bottom: 15px;
}
.features .features_items_wraper .feature_item h3{
font-size: 24px;
font-weight: var(--font-bold);
margin-bottom: 15px;
}
.features .features_items_wraper .feature_item p{
font-size: 16px;
font-weight: var(--font-normal);
color: var(--text-black);
}
#default_sec{
padding: 100px 0px;
}
.defualt_content h2{
font-size: 40px;
font-family: var(--font-title);
font-weight: var(--font-bold);
line-height: 1.1;
margin-bottom: 15px;
}
.defualt_content p{
width: 70%;
font-size: 16px;
font-family: var(--font-text);
font-weight: var(--font-normal);
margin-bottom: 15px;
}
#service_home {
padding: 100px 0px;
}
#service_home .service_content{
text-align: center;
margin-bottom: 20px;
}
#service_home .service_content h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
color: var(--text-black);
word-spacing: 5px;
margin-bottom: 5px;
}
#service_home .service_content p{
font-family: var(--font-text);
color: var(--text-black);
width: 90%;
margin: 0 auto;
}
#service_home .card_services{
margin-bottom: 20px;
background: #F6F9FF;
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.22);
border-radius: 30px;
border:none
}
#service_home .card_services .card-header{
background: #EFF3FC;
border: none!important;
border-radius: 30px;
padding: 30px 30px;
}
#service_home .card_services .service_tabs{
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 30px;
}
#service_home .card_services  .service_tabs button{
display: flex;
width: 100%;
font-size: 18px;
color: var(--text-black);
font-weight: var(--font-bold);
align-items: center;
justify-content: center;
gap: 10px;
background: var(--bg-white);
border:2px solid var(--bg-white);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.13);
border-radius: 10px;
min-height: 58px;
}
#service_home .card_services  .service_tabs button.active{
border-color: var(--nav-acitve);
}
#service_home .card_services  .services_tabs_content{
padding: 15px 15px;
}
#service_home .card_services  .services_tabs_content h3{
font-family: var(--font-title);
font-size: 35px;
font-weight: var(--font-bold);
margin-bottom: 10px;
}
#service_home .card_services  .services_tabs_content p{
font-family: 16px;
font-weight: var(--font-normal);
line-height: 1.4;
}
.services_tabs_image{
margin-top: 15px;
text-align: center;
}
#reliable{
padding: 100px 0px;
min-height: 100vh;
background-image: url(https://res.cloudinary.com/ddyxrxcom/image/upload/v1686066788/snf_asset/reliable_serv_wb7s7n.png),linear-gradient( #e5f0f2, #e5f2f8);
background-position: center;
background-repeat: no-repeat;
}
.reliable_title h2{
font-family: var(--font-title);
font-size: 35px;
text-align: center;
font-weight: var(--font-bold);
color: var(--text-black);
}
#payment_methods{
padding: 70px 0px;
}
#payment_methods .payment_content .payment_top{
font-family: var(--font-title);
font-size: 30px;
font-weight: var(--font-bold);
color: #6B7280;
}
#payment_methods .payment_content h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
color: var(--text-black);
word-spacing: 5px;
margin-bottom: 5px;
}
#payment_methods .payment_content p{
font-family: var(--font-text);
color: var(--text-black);
width: 90%;
}
.boost_media{
background: #F4F7FF;
}
#how-it-works{
padding: 100px 0px;
}
#how-it-works h2{
font-family: var(--font-title);
font-size: 45px;
font-weight: var(--font-bold);
color: var(--text-black);
word-spacing: 5px;
margin-bottom: 5px;
}
#how-it-works p{
font-family: var(--font-text);
color: var(--text-black);
width: 90%;
}
.how_it_img .video_box{
position: relative;
}
.how_it_img .video_box{
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 360px;
}
.how_it_img .video_box > img{
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.8);
border-radius: 15px;
}
.how_it_img .video_box  .video_btn{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
z-index: 1;
border-radius: 50px;
outline: 0px solid #644cc3;
background: var(--bg-white);
animation: videoBtnAnimation 3s infinite;
transition: 0.5s ease;
}
.how_it_items {
background: var(--bg-white);
padding: 20px 20px;
box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.1);
border-radius: 20px;
margin-bottom: 20px;
}
.how_it_items .item_title{
font-family: var(--font-title);
font-size: 30px;
font-weight: var(--font-bold);
color: var(--primary-color);
margin-bottom: 5px;
}
.how_it_items p{
margin-bottom: 0px;
}
#faq{
padding: 100px 0px;
}
#faq .faq_title{
text-align: center;
margin-bottom: 40px;
}
#faq .faq_accordian{
margin-bottom: 30px;
}
#faq .faq_accordian .accordion-item{
margin-bottom: 30px;
}
#testimonials{
padding: 70px 0px;
background: url(https://res.cloudinary.com/ddyxrxcom/image/upload/v1686066794/snf_asset/testimonial__bg_bsfnk0.png);
background-repeat: no-repeat;
background-size: cover;
background-position: top;
}
#testimonials .testimonial_content .testimonial_top_img{
width: 100px;
margin: 0 auto;
}
#testimonials .testimonial_content .default_home_title{
margin-bottom: 10px;
}
#testimonials .testimonial_content h4{
font-weight: var(--font-bold);
color: var(--text-grey);
}
.full_testimonial_wraper{
margin: 50px 0px;
overflow: hidden;
}
.full_testimonial_wraper .testimonials1{
padding: 30px 0px 20px 0px;
}
.full_testimonial_wraper .testimonials2{
padding: 20px 0px 30px 0px;
}
.testimonial_item{
background: var(--bg-white);
box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.08);
padding: 30px 30px;
border-radius: 20px;
}
.testimonial_item .testimonial_user{
display: flex;
gap: 15px;
align-items: center;
margin-bottom: 10px;
}
.testimonial_item .testimonial_user .avatar{
width: 80px;
height: 80px;
border-radius: 50px;
}
.testimonial_item .testimonial_user .infos h4{
font-size: 22px;
color: var(--text-black);
font-weight: var(--font-bold);
margin-bottom: 3px;
}
.testimonial_item .testimonial_user .infos .rating{
font-size: 20px;
color: rgb(251 205 57);
}
.testimonial_item .testimonaial_comment{
font-size: 16px;
}
#get-start{
position: relative;
padding: 150px 0;
overflow: hidden;
}
#get-start .rings {
position: absolute;
right: 250px;
top: 50px;
}
#get-start .poligon{
position: absolute;
bottom: 250px;
left: 200px;
}
#get-start::before{
content: '';
position: absolute;
display: inline-block;
width: 100%;
height: 1000px;
background: url();
background-repeat: no-repeat;
left: 32%;
top: 35%;
z-index: -1;
}
#get-start .get_start_container{
text-align: center;
padding: 150px 50px;
background: url(),linear-gradient(97.26deg, #08ACE6 8.5%, #3072F0 81.26%);
background-repeat: no-repeat;
background-size: cover;
border-radius: 0px 207px 0px 177px;
box-shadow: 0px 4px 30px 20px rgba(0, 0, 0, 0.13);
}
#get-start .get_start_container h2{
color: var(--text-white);
margin-bottom: 25px;
}
#get-start .get_start_container p{
font-family: var(--font-text);
color: var(--text-white);
font-size: 16px;
width: 70%;
margin: 0 auto;
margin-bottom: 25px;
}
#get-start .get_start_container .btn-white{
background: var(--bg-white);
color: var(--text-black);
box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.17);
}
.fb__icon{
right: 110px;
top: 250px;
}
.yt__icon{
bottom: 200px;
right: 220px;
}
.tik__icon{
bottom: 110px;
left: 280px;
}
.ig__icon{
bottom: 40%;
}
.tw__icon{
left: 220px;
}
#api_page {
margin: 50px 0px;
}
.api__content pre{
padding: 20px;
position: relative;
background: #515151;
border-radius: 20px;
color: #fff;
}
.pagination {
display: flex;
gap: 5px;
margin-top: 20px;
margin-bottom: 25px;
}
.pagination li a {
width: 40px;
height: 40px;
background: #0d2548;
display: block;
line-height: 40px;
font-size: 18px;
text-align: center;
color: #fff;
border-radius: 7px;
transition: 0.5s;
}
.pagination li a:hover,
.pagination li.active a{
background: var(--primary-gradient);
}
@media only screen and (max-width:1170px) {
}
@media (min-width: 1024px) {
}
@media only screen and (min-width: 993px) and (max-width: 1500px) {
.auth_body{
zoom: 0.8;
}
footer{
margin-top: 80px;
}
}
@media only screen and (min-width: 993px) and (max-width: 1100px){
}
@media only screen and (min-width:992px) and (max-width:1200px){
body{
zoom: 0.9;
}
.main_header .nav-item .nav-link{
padding: 10px 10px;
font-size: 14px;
}
.main_header .sp_menu .nav-item .nav-link{
padding: 8px 15px;
}
#hero .hero_content h1{
font-size: 30px;
}
#hero .hero_content p{
width: 100%;
font-size: 16px;
}
.btn-banner-all{
padding: 10px 30px;
margin-top: 10px;
}
.login_card {
padding: 10px;
border-radius: 20px;
}
.login_content_wrap .login_icon{
width: 55px;
}
.login_utility{
gap: 10px;
}
.btn_forAsset{
border-radius: 10px;
}
.counter_item .counter_text h2 {
font-size: 25px;
}
.counter_item .counter_text p {
font-size: 16px;
}
#why_chose_us{
padding-bottom: 150px 0;
}
.contact .contact_info .contact_title,
.terms_content_wrap .terms_content h2,
.banner_center_text h1,
.support_wraper h2,
.signup .signup_wraper h1,
.faq .faq_title,
.step_diff .diff_content h3,
.how-it-work-step.step-common .common-step-wraper .common-step-content h3,
.how-it-works-wraper .video_wraper .vid_title,
.banner_content h1,
.default_home_title,
#faq .faq_title,
#how-it-works h2,
#payment_methods .payment_content h2,
#service_home .service_content h2,
.defualt_content h2,
#why_chose_us .section_title h2{
font-size: 35px;
}
.terms_tabs .nav-pills .nav-link .terms_text,
.signup .signup_wraper h4,
.how_it_items .item_title{
font-size: 20px;
}
.banner_content > p,
#payment_methods .payment_content p,
#service_home .service_content p,
.defualt_content p,
#why_chose_us .section_title p{
width: 100%;
}
.features .features_items_wraper .feature_item{
width: 100%;
padding: 10px 20px;
min-height: 420px;
}
#why_chose_us .features .text-feature{
font-size: 25px;
}
.features .features_items_wraper .feature_item h3 {
font-size: 20px;
}
#service_home .card_services .card-header{
padding: 25px 20px;
}
#service_home .card_services .service_tabs{
gap: 3px;
}
#service_home .card_services .service_tabs button{
font-size: 12px;
min-height: 50px;
gap: 3px;
}
.how_it_img .video_box{
height: 275px;
}
#faq .faq_accordian .accordion-item {
margin-bottom: 16px;
}
.testimonial_item .testimonial_user .avatar{
width: 50px;
height: 50px;
}
.testimonial_item .testimonial_user .infos h4{
font-size: 18px;
}
.testimonial_item .testimonial_user .infos .rating{
font-size: 16px;
}
.sign_up_card{
padding: 40px 25px;
border-radius: 20px;
}
}
@media only screen and (max-width:991px) {
#hero{
padding: 80px 0px;
}
#hero .hero_content .hero_top_content{
margin-bottom: 10px;
}
#hero .hero_content h1{
font-size: 28px;
}
#hero .hero_content h1 > br{
display: none;
}
#hero .hero_content p{
width: 100%;
}
#hero .hero_content .ratings{
font-size: 14px;
}
.btn-banner-all{
margin-top: 5px;
padding: 10px 20px;
}
.login_card{
margin-top: -40px;
padding: 10px;
}
.btn_login{
box-shadow: 0px 0px 15px rgba(32, 124, 254, 0.4);
}
.login_content_wrap .col-lg-4{
margin-top: 15px;
}
.counter_section{
margin-top: 40px;
margin-bottom: 40px;
}
.counter_section .row{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
}
.counter_item .counter_text h2{
font-size: 20px;
}
.counter_item .counter_text p{
font-size: 14px;
}
.counter_item .icon{
height: 100px;
}
.counter_item .icon > img.counter__1{
width: 50px;
}
.counter_item .icon > img.counter__2{
width: 110px;
}
.counter_item .icon > img.counter__3{
width: 80px;
}
#why_chose_us{
padding: 70px 0px;
padding-bottom: 150px;
}
.default_home_title,
#faq .faq_title,
#how-it-works h2,
#service_home .service_content h2,
.defualt_content h2,
#payment_methods .payment_content h2,
#why_chose_us .section_title h2{
font-size: 28px;
}
#how-it-works p,
#payment_methods .payment_content p,
#service_home .service_content p,
.defualt_content p,
#why_chose_us .section_title p{
font-size: 14px;
width: 100%;
}
#why_chose_us .features .text-feature{
font-size: 24px;
}
.features .features_items_wraper .feature_item{
width: 99%;
padding: 20px;
min-height: 360px;
}
#testimonials .testimonial_content h4,
.features .features_items_wraper .feature_item h3{
font-size: 20px;
margin-bottom: 10px;
}
.features .features_items_wraper .feature_item p{
font-size: 14px;
}
#faq,
#how-it-works,
#payment_methods,
#service_home,
#default_sec{
padding: 70px 0px;
}
#default_sec.rise{
padding-top: 0px;
}
#service_home .card_services{
border-radius: 20px;
}
#service_home .card_services .card-header{
padding: 25px 20px;
border-radius: 19px;
}
#service_home .card_services .service_tabs{
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
#service_home .card_services .services_tabs_content h3{
font-size: 25px;
}
#service_home .card_services .services_tabs_content p{
font-size: 14px;
}
#payment_methods{
padding-top: 20px;
}
#payment_methods .payment_content .payment_top{
font-size: 18px;
}
.how_it_items{
border-radius: 10px;
margin-bottom: 15px;
}
.how_it_items .item_title{
font-size: 20px;
}
.how_it_img .video_box{
height: 265px;
}
.faq_accordian .accordion-item .accordion-header .accordion-button{
font-size: 16px;
}
#faq .faq_accordian .accordion-item{
margin-bottom: 15px;
}
#testimonials .testimonial_content .default_home_title{
margin-top: 10px;
}
.testimonial_item .testimonial_user{
gap: 10px;
}
.testimonial_item{
padding: 20px;
}
.testimonial_item .testimonial_user .avatar{
width: 50px;
height: 50px;
}
.testimonial_item .testimonial_user .infos h4{
font-size: 20px;
}
.testimonial_item .testimonial_user .infos .rating{
font-size: 16px;
}
.testimonial_item .testimonaial_comment{
font-size: 14px;
}
#get-start{
padding: 100px 0px;
margin-bottom: 80px ;
}
#get-start .get_start_container{
border-radius: 0px 100px 0px 100px;
}
#get-start::before{
left: 13%;
top: 34%;
}
#get-start .poligon{
bottom: 45px;
left: 20px;
}
#get-start .rings{
top: -2px;
right: -15px;
}
.fb__icon {
right: -20px;
top: 194px;
}
.tw__icon {
left: -18px;
}
.yt__icon {
bottom: 166px;
right: 25px;
}
.ig__icon {
bottom: 19%;
}
.tik__icon {
bottom: -30px;
left: 120px;
}
.footer__quick__menu{
margin-bottom: 20px;
}
.footer-contact{
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.how-it-works .banner_right > img{
width: 485px!important;
right: -95px;
}
.how-it-works > .container > .row ,
.how-it-works{
height: 400px;
padding: 20px 0px;
}
.banner_content h1{
font-size: 30px;
margin-bottom: 0px;
}
.banner_content p{
width: 100%!important;
font-size: 16px!important;
margin-bottom: 10px!important;
}
.how-it-works-wraper .video_wraper .vid_title{
font-size: 30px;
}
.how-it-works-wraper .video_wraper .video_box{
width: 70%;
}
.step_diff .diff_content h3, .how-it-work-step.step-common .common-step-wraper .common-step-content h3{
font-size: 30px;
}
.contact .contact_info .contact_title,
.faq .faq_title{
font-size: 30px;
}
.terms_content_wrap .terms_content h2,
.banner_center_text h1,
.contact .contact_info .contact_title{
font-size: 30px;
margin-bottom: 5px;
}
.terms_tabs .nav-pills .nav-link > img{
width: 50px;
}
.terms_tabs .nav-pills .nav-link{
width: 150px;
height: 150px;
gap: 5px;
}
.terms_tabs .nav-pills .nav-link .terms_text{
font-size: 20px;
}
.service_filter_btn {
padding: 10px 10px;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.avg_time,
.service_filter_btn .text{
font-size: 12px;
}
.service_filter_wrap {
padding: 40px 0px;
}
.serv_category_card .serv_cat_card_body .service_item.service .services_name{
width: 30%;
font-size: 12px;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.id > span, .serv_category_card .serv_cat_card_body .service_item.service > span.min_order > span, .serv_category_card .serv_cat_card_body .service_item.service > span.max_order > span, .serv_category_card .serv_cat_card_body .service_item.service > span.rate > span{
padding: 5px 10px;
font-size: 14px;
}
.serv_category_card .serv_cat_card_body .service_item, .serv_category_card .serv_cat_card_body .service_item.service_table_header{
gap: 10px;
font-size: 10px;
}
.btn_descriptions{
font-size: 14px;
padding: 5px 15px;
}
.serv_category_card .serv_cat_card_header .category_name{
font-size: 18px;
}
}
@media only screen and (max-width:767px) {
.hero_content {
text-align: center;
}
#hero .hero_content .ratings{
justify-content: center;
}
.login_card{
margin-top: -110px;
border-radius: 10px;
}
.counter_item .icon > img.counter__1 {
width: 35px;
}
.counter_item .counter_text h2 {
font-size: 14px;
}
.counter_item .counter_text p{
font-size: 10px;
}
.counter_item .icon > img.counter__2 {
width: 70px;
}
.counter_item .icon > img.counter__3 {
width: 50px;
}
#why_chose_us{
padding: 50px 0px;
}
.default_home_title, #faq .faq_title, #how-it-works h2, #service_home .service_content h2, .defualt_content h2, #payment_methods .payment_content h2, #why_chose_us .section_title h2{
text-align: center;
}
#how-it-works p, #payment_methods .payment_content p, #service_home .service_content p, .defualt_content p, #why_chose_us .section_title p{
text-align: center;
}
#service_home .card_services .service_tabs button .texts {
font-size: 14px;
}
#service_home .card_services .services_tabs_content h3{
text-align: center;
}
#payment_methods .payment_content .payment_top{
text-align: center;
}
.sign_up_card{
padding: 40px 20px;
}
.signup .signup_wraper h1{
font-size: 35px;
}
.signup .signup_wraper h4{
font-size: 20px;
}
.form-group.signup_group{
margin-bottom: 10px;
}
}
@media only screen and (max-width:550px) {
.card.card_v3 .card-header{
padding: 15px 20px;
height: 100px;
}
.card.card_v3 .card_header_title{
font-size: 18px;
}
.card.card_v3 .card_header_dsc{
font-size: 14px;
}
.table tbody tr th,
.table tbody tr td{
font-size: 14px!important;
}
.card h4{
font-size: 18px;
}
.api__content pre {
font-size: 10px;
padding: 20px 10px;
}
.form-check-input ~ label{
font-size: 14px;
}
.btn-signup{
padding: 10px 45px;
}
.main_header .nav-logo{
width: 170px;
}
#hero{
padding: 50px 0px;
background-position: bottom center;
}
.hero_content{
text-align: center;
}
#hero .hero_content .hero_top_content{
font-size: 14px;
margin-bottom: 5px;
}
#hero .hero_content h1{
font-size: 25px;
}
#hero .hero_content h1 > br{
display: none;
}
#hero .hero_content p{
width: 100%;
font-size: 14px;
margin-bottom: 5px;
}
#hero .hero_content .ratings{
font-size: 14px;
justify-content: center;
}
.btn-primary,
.btn-banner-all{
font-size: 14px;
padding: 10px 18px;
min-width: 150px;
margin-top: 0px;
margin-bottom: 30px;
}
.login_card{
padding: 10px;
border-radius: 20px;
}
.login_card .card-body{
padding: 8px;
}
.user_login{
margin-bottom: 10px;
}
.login_content_wrap .login_icon{
width: 50px;
height: 50px;
}
.login_content_wrap .login_user_input{
width: calc(100% - 50px);
}
.btn_forAsset{
width: 50px;
height: 50px;
border-radius: 10px;
}
.btn_forAsset img{
width: 20px;
}
.login_utility{
gap: 5px;
}
.login_utility .btn_login{
flex-grow: 1;
border-radius: 12px;
}
.btn_login{
box-shadow: none;
}
.counter_section{
margin-top: 30px;
margin-bottom: 30px;
}
.counter_item{
justify-content: center;
margin-bottom: 15px;
}
.counter_item .icon{
height: auto!important;
}
.counter_item .icon > img{
width: 40px;
}
.counter_item .counter_text h2{
font-size: 20px;
margin-bottom: 5px;
}
.counter_item .counter_text p{
font-size: 14px;
margin-bottom: 0;
}
#why_chose_us{
padding: 50px 0px;
padding-bottom: 100px;
}
#testimonials .testimonial_content .default_home_title,
#faq .faq_title,
#how-it-works h2,
#payment_methods .payment_content h2,
#service_home .service_content h2,
.defualt_content h2,
#why_chose_us .section_title h2{
font-size: 25px;
line-height: 1;
}
#why_chose_us .section_title h2 br{
display: none;
}
#how-it-works p,
#payment_methods .payment_content p,
.defualt_content p,
#service_home .service_content p,
#why_chose_us .section_title p{
font-size: 14px;
width: 100%;
}
#why_chose_us .features .text-feature{
font-size: 20px;
}
.features .features_items_wraper .feature_item{
padding: 20px 20px;
min-height:350px;
}
.features .features_items_wraper .feature_item h3{
font-size: 18px;
margin-bottom: 5px;
}
.features .features_items_wraper .feature_item p{
font-size: 14px;
}
#default_sec {
padding: 0px 0px 50px 0px;
}
.defualt_content{
text-align: center;
}
.defualt_content h2{
margin-top: 30px;
text-align: center;
}
.def_image{
text-align: center;
}
.def_image > img{
max-width: 80%;
margin: 0 auto;
}
#testimonials .testimonial_content .default_home_title,
#faq .faq_title,
#how-it-works h2,
#how-it-works p,
#payment_methods .payment_content p,
#payment_methods .payment_content h2,
#payment_methods .payment_content .payment_top,
.defualt_content p{
text-align: center;
}
#service_home {
padding: 50px 0px;
}
#service_home .card_services .service_tabs{
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
#service_home .card_services .service_tabs button{
font-size: 14px;
min-height: 45px;
}
#service_home .card_services,
#service_home .card_services .card-header{
border-radius: 15px;
}
#service_home .card_services .card-header{
padding: 25px 20px;
}
#service_home .card_services .services_tabs_content{
padding: 0px;
}
#testimonials .testimonial_content h4,
#service_home .card_services .services_tabs_content h3{
font-size: 20px;
}
#service_home .card_services .services_tabs_content p{
font-size: 14px;
}
#payment_methods{
padding: 50px 0px;
}
#payment_methods .payment_content .payment_top{
font-size: 18px;
}
#default_sec.boost_media{
padding-top: 50px;
}
#how-it-works {
padding: 50px 0px;
}
.how_it_img .video_box{
height: 150px;
}
.how_it_items{
margin-bottom: 10px;
border-radius: 10px;
padding: 15px 15px;
}
.how_it_img{
margin-bottom: 20px;
}
.how_it_items .item_title{
font-size: 18px;
}
.how_it_items p{
text-align: left!important;
}
#faq {
padding: 50px 0px;
}
#faq .faq_accordian .accordion-item{
margin-bottom: 10px;
}
.faq_accordian .accordion-item .accordion-header .accordion-button{
font-size: 16px;
}
.faq_accordian .accordion-item .accordion-body p,
.faq_accordian .accordion-item .accordion-body{
font-size: 14px!important;
}
#testimonials{
padding: 50px 0px;
}
#testimonials .testimonial_content .default_home_title{
margin-top: 20px;
}
.testimonial_item{
padding: 25px 18px;
border-radius: 15px;
}
.testimonial_item .testimonial_user{
gap: 10px;
}
.testimonial_item .testimonial_user .avatar {
width: 50px;
height: 50px;
}
.testimonial_item .testimonial_user .infos h4{
font-size: 18px;
}
.testimonial_item .testimonial_user .infos .rating{
font-size: 16px;
}
.testimonial_item .testimonaial_comment{
font-size: 14px;
}
.full_testimonial_wraper .testimonials1{
padding: 20px 0px 10px 0px;
}
.full_testimonial_wraper .testimonials2{
padding: 10px 0px 20px 0px;
}
#get-start{
padding: 50px 0px;
padding-bottom: 150px;
}
#get-start .get_start_container{
padding: 70px  20px;
}
#get-start .get_start_container{
border-radius: 0px 70px 0px 50px;
}
#get-start::before {
width: 500px;
height: 500px;
left: 9%;
top: 11%;
}
#get-start .get_start_container h2{
font-size: 25px;
line-height: 1;
}
#get-start .get_start_container p{
width: 100%;
font-size: 14px;
}
#get-start .rings {
position: absolute;
right: 20px;
top: 10px;
}
.fb__icon,
.tw__icon,
.yt__icon,
.tik__icon,
.ig__icon{
width: 100px;
}
.tw__icon {
left: -21px;
top: 38px;
}
.ig__icon {
bottom: 230px;
left: 6px;
}
.yt__icon {
bottom: 170px;
right: -4px;
}
.tik__icon {
bottom: 140px;
left: 58px;
}
.fb__icon {
right: -21px;
top: 120px;
}
#get-start .rings > img{
width: 120px;
}
#get-start .poligon{
bottom: 125px;
left: 2px;
}
.banner_all{
padding-top: 50px;
padding-bottom: 50px;
}
.banner_content{
text-align: center;
}
.banner_top_small{
padding: 3px 15px;
margin-bottom: 10px;
}
.banner_content h1{
font-family: var(--font-title);
font-size: 25px;
}
.banner_content p{
width: 100%!important;
font-size: 14px;
text-align: center;
}
.service_filter_wraper{
padding: 15px 10px;
}
.service_filter_wraper .col-12{
margin-bottom: 10px!important;
}
.service_filter_wrap{
padding: 40px 0px;
}
.service_filter_btn_wrap{
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.service_filter_btn{
font-size: 14px;
padding: 10px 15px;
}
.serv_category_card .serv_cat_card_header .category_name{
font-size: 18px;
}
.serv_category_card .serv_cat_card_body .service_item, .serv_category_card .serv_cat_card_body .service_item.service_table_header{
display: grid;
}
.serv_category_card .serv_cat_card_body .service_item.service_table_header{
display: none!important;
}
.serv_category_card .serv_cat_card_body .service_item .id{
grid-area: id;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item.service .services_name{
font-size: 14px;
grid-area: services;
width: 100%;
text-align: center;
margin-bottom: 20px;
}
.serv_category_card .serv_cat_card_body .service_item .rate{
position: relative;
grid-area: price;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item .rate::before {
content: 'Rate Per 1000';
}
.serv_category_card .serv_cat_card_body .service_item.service > span.min_order{
display: block;
position: relative;
grid-area: min;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.max_order{
display: block;
position: relative;
grid-area: max;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.min_order::before{
content: 'Min Order';
}
.serv_category_card .serv_cat_card_body .service_item.service > span.max_order::before{
content: 'Max Order';
}
.serv_category_card .serv_cat_card_body .service_item.service > span.min_order::before,
.serv_category_card .serv_cat_card_body .service_item.service > span.max_order::before,
.serv_category_card .serv_cat_card_body .service_item .rate::before {
font-family: var(--font-text);
font-size: 12px;
color: #8f8f8f;
position: absolute;
top: -20px;
text-align: center;
display: block;
width: 100%;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.avg_time{
font-size: 14px;
grid-area: avgTime;
display: block;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item .descriptions{
grid-area: desc;
width: 100%;
text-align: center;
}
.serv_category_card .serv_cat_card_body .service_item.service{
display: grid;
grid-template-areas:
'id id id id id id'
'services services services services services services'
' price price min min max max'
' avgTime avgTime avgTime avgTime avgTime avgTime'
' desc desc desc desc desc desc';
gap: 10px;
}
.serv_category_card .serv_cat_card_body .service_item.service > span.id > span, .serv_category_card .serv_cat_card_body .service_item.service > span.min_order > span, .serv_category_card .serv_cat_card_body .service_item.service > span.max_order > span, .serv_category_card .serv_cat_card_body .service_item.service > span.rate > span{
font-size: 14px;
padding: 5px 18px;
}
.serv_category_card .serv_cat_card_body {
padding: 10px;
}
.btn_descriptions{
font-size: 14px;
padding: 5px 30px;
}
.services_dsc_modal .service_header{
padding: 15px;
}
.services_dsc_modal .services_body {
padding: 20px 10px;
}
.service_header #service_name{
font-size: 16px;
}
.services_body .other_info .info_item .text h4 {
font-size: 14px;
margin-bottom: 0px;
}
.services_body .other_info .info_item .text > span{
font-size: 14px;
font-weight: var(--font-extra-bold);
}
.services_body .other_info .info_item{
gap: 5px;
}
.service_header .btn_scondary{
padding: 5px 20px;
font-size: 14px;
}
.services_body #service_des {
font-size: 12px;
}
.blog_title h2{
font-size: 25px;
}
.all_blogs .blog_card:first-child{
grid-template-columns: 1fr;
max-height: 600px;
}
.blog_wrapper{
margin: 50px 0px;
}
.all_blogs .blog_card:first-child .blog_image > img{
height: 200px;
object-fit: cover;
}
.all_blogs .blog_card.blog_type1 .blog_content,
.all_blogs .blog_card:first-child .blog_content{
padding: 15px 15px;
}
.all_blogs .blog_card.blog_type1 .blog_content .blog_title,
.all_blogs .blog_card:first-child .blog_content .blog_title{
font-size: 20px;
}
.all_blogs .blog_content .btn-primary{
margin-bottom: 10px!important;
}
.blog_wrapper .blog_container{
grid-template-columns: 1fr;
}
.all_blogs .blog_card.blog_type1 {
min-height: 420px;
max-height: 450px;
}
.faq{
margin: 50px 0px;
}
.faq .faq_title{
font-size: 20px;
}
.contact .contact_info .contact_title,
.banner_center_text h1 {
font-size: 25px;
margin-bottom: 5px;
}
.banner_center_text p{
margin-bottom: 20px;
}
.terms_tabs .nav-pills{
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.terms_tabs .nav-pills .nav-link{
width: 170px;
height: 150px;
gap: 10px;
}
.terms_tabs .nav-pills .nav-link .terms_text{
font-size: 18px;
}
.terms_tabs .nav-pills .nav-link > img{
width: 50px;
}
.terms_content_wrap .terms_content h2{
font-size: 25px;
margin-bottom: 10px;
}
.terms_content_wrap .terms_content{
font-size: 14px;
}
.contact .contact_item{
width: 100%;
max-width: 100%;
margin-bottom: 5px;
padding: 15px 10px;
border-radius: 10px;
}
.contact{
margin: 50px 0px;
}
.contact .contact_item > img{
width: 90px;
}
.btn_scondary{
padding: 10px 20px;
font-size: 15px;
}
.top-round-icon{
top: -50px;
left: calc(50% - 50px);
}
.top-round-icon img{
width: 100px;
height: 100px;
}
footer{
padding: 70px 0px 30px 0px;
}
.footer-content{
text-align: center;
}
.footer__quick__menu{
display: grid;
grid-template-columns: repeat(2,1fr);
margin-bottom: 20px;
}
.how-it-works .banner_right > img{
top: 250px;
}
.how-it-works-wraper .video_wraper .vid_title{
font-size: 25px;
}
.how-it-works-wraper .video_wraper .vid_text{
font-size: 14px;
}
.how-it-works-wraper .video_wraper .video_box{
width: 90%;
}
.how-it-work-step{
margin: 30px 0px;
}
.how-it-work-step.step-common .common-step-wraper{
margin-top: 0px;
}
.how-it-work-step.step-common .common-step-wraper .common-step-content{
text-align: center;
}
.step_diff .diff_content h3, .how-it-work-step.step-common .common-step-wraper .common-step-content h3{
font-size: 22px;
text-align: center;
}
.step_diff .diff_content h3 br, .how-it-work-step.step-common .common-step-wraper .common-step-content h3 br{
display: none;
}
.step_diff .diff_content p, .how-it-work-step.step-common .common-step-wraper .common-step-content p{
font-size: 14px;
text-align: center;
}
.common-step-arrow > img{
width: 50%;
margin-bottom: 20px;
}
.how-it-work-step.step_diff .row {
flex-direction: column-reverse;
}
.step_diff .step_diff_img > img{
width: 100%;
}
.step_diff .text-center > img{
width: 50%;
margin-bottom: 20px;
}
.how-it-work-step.step-common .common_step_img > img{
width: 100%;
}
.login_content_wrap .col-lg-4 {
margin-top: 0px;
}
.counter_section .row{
grid-template-columns: 1fr;
}
.footer-contact{
grid-template-columns: 1fr;
}
.row.signup__row {
display: flex;
flex-direction: column-reverse;
}
.support_wraper h2,
.signup .signup_wraper h1{
font-size: 25px;
text-align: center;
}
.signup .signup_wraper h4{
font-size: 18px;
text-align: center;
}
.support_wraper p{
font-size: 14px;
}
.sign_up_card{
padding: 30px 20px;
border-radius: 15px;
margin-bottom: 15px;
}
.form-group.signup_group {
margin-bottom: 10px;
}
.support_wraper{
padding: 50px 0px;
}
}
@media only screen and (max-width:368px) {
}
