@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --primay-color:#473BF0;
    --white-color:#FFFFFF;
    --black-color:#000000;
    --gray-color:#8E8E93;
    --bg-color: radial-gradient(circle at 52% 49%,rgba(255, 255, 255, 1), rgba(238,236,253,1));
  }
  a{
    text-decoration: none;
  }
body {
    font-family: "Roboto", sans-serif;
}
a {
    text-decoration: none;
}
a:hover {
    color: unset;
}
::-webkit-scrollbar {
    width: 5px;
    height: 7px;
    background-color: #EEECFD;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    /* background: #01AFF3; */
    background: #473BF0;
}
/* heading start*/
h1 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--black-color);
}
h2 {
    font-size: 35px;
    line-height: 44px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 0;
}
h3 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--black-color);
}
h4 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 0;
}
h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--black-color);
}
h6 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
    color: var(--black-color);
}
p{
    font-size: 17px;
    line-height: 24px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 0;
}
/* button */
.btn_wrapper {
    height: 46px;
    text-align: center;
    line-height: 46px;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--primay-color);
    min-width: 118px;
    border-radius: 8px;
    font-weight: 700;
}
/* <header>  */
.main_header_wrapper .navbar-light .navbar-nav .nav-link{
    position: relative;
}
.main_header_wrapper .navbar-light .navbar-nav .nav-link {
    font-size: 17px;
  line-height: 22px;
  font-weight: 500;
  color: var(--black-color);
}
.main_header_wrapper .navbar-light .navbar-nav .nav-link.active::after {
    position: absolute;
    content: '';
    width:100%;
    height: 100%;
    background-image: url(../images/border.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.navbar-brand {
    padding: 0;
}
.main_header_wrapper .navbar{
    padding: 0;
}
.main_header_wrapper .navbar-light .navbar-nav .nav-link.active {
    color: var(--primay-color)!important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 25px 0;
}
.main_header_wrapper .navbar-toggler:focus {
    box-shadow: none;
}
.main_header_wrapper .navbar-toggler {
    padding: 0;
    border: none;
}
.main_header_wrapper {
    display: block;
    padding: 0 25px;
}
.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 4px;
    background: var(--primay-color);
    margin: 4px 0;
    transition: 0.4s;
}
.change .bar1 {
    transform: translate(0, 5px) rotate(-45deg);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}
.navbar-toggler {
    padding: 0;
}
.page-header{
    background:transparent;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
}
.page-header.is-sticky {
    position: fixed;
    top: 24px;
    transition: top .3s;
    left: 0;
    right: 0; /* padding: 8px 0; */
    width: 100%;
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.40s ease-out;
    box-shadow: 0px 8px 10px rgba(30, 64, 175, 0.03);
    background:var(--white-color);
    /* margin-top: 25px; */
    border-radius: 16px;
    z-index: 565655;
  }
  .btn-close{
    color: var(--primay-color);
  }
  .navbar-nav .nav-item{
    padding: 0 15px;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
.logo-img{
    height: 25px;
}
.main_header_wrapper .navbar-brand img{
    height: 55px;
}
/* form  */

/* home section */
.home-main{
    background: var(--bg-color);
}
.suratfit-title h1 span{
    color: var(--primay-color);
}
.suratfit-title h4{
    font-weight: 600;
}
/* feature section */
.feature-bg{
    background: var(--bg-color);
    border-radius: 32px;
    padding-left: 50px;
    padding-right: 50px;
}
.feature-info h3 span{
    color: var(--primay-color);
}
.count-section {
    background-color: var(--primay-color);
}
.count-info h3{
    color: var(--white-color);
}
.count-info p{
    color: var(--white-color);
}
.home-main{
    position: relative;
}
.suratfit-home{
    position: relative;
    z-index: 99;
}
.count-section::after{
    position: absolute;
    content: "";
    top: 0;
    /* right: 0; */
    background-image: url(../images/homeimg.png);
    background-position: right bottom;
    height: 100%;
    background-repeat: no-repeat;
    bottom: 0;
    width: 100%;
}
.count-mb-img{
   display: none;
}
.count-info{
    text-align: left;
}
.endless_workout_ss{
    background-color: #E4F1FF;
    text-align: center;
    padding: 0 0 0 0;
    border-radius: 26px;
    margin-bottom: 30px;
}
.endless_workout_images{
    margin: 0 auto;
    text-align: center;
}
.endless_workout_images img{
    width: 70%;
    margin: 0 auto;
}
.endless_workout_des{
    margin-bottom: 30px;
    margin-top: 15px;
    padding: 0 15%;
}
.ss_what_get{
    padding-top: 50px;
}
.endless_workout_ss_2{
    background-color: #E4E7FF;
}
.endless_workout_des h3{
    padding-bottom: 10px;
    font-size: 35px;
}
.endless_workout_ss_3{
    background-color: #FAF1E3;
}
.endless_workout_ss_3 .d-flex .flex-fill{
    width: 100%;
}
.suratfit-title p{
    padding-top: 15px;
}
.suratfit-title h2{
    text-transform: capitalize;
}
.blog_images img{
    width: 100%;
}
.blog_sec_1{
    width: 40% !important;
}
.blog_sec_1 .blog_images{
    position: relative;
    overflow: hidden;
    border-radius: 0 500px 500px 0;
    height: 200px;
}
.blog_sec_1 .blog_images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_cells{
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    min-height: 300px;
    background-color: #FFFFFF;
}
.blog_des{
    padding: 40px 20px;
}
.blog_des span{
    color: #473BF0;
    font-weight: 600;
}
.blog_des h5{
    font-weight: 600;
    margin-bottom: 10px;
}
.view_button,
.view_button:hover
{
    border-radius: 12px;
    background: #473BF0;
    box-shadow: 0px 8px 10px 0px rgba(255, 255, 255, 0.10);
    display: inline-block;
    line-height: 50px;
    padding: 0 30px;
    color: #FFFFFF;
    font-weight: 500;
}
.blog_highlights{
    position: relative;
    overflow: hidden;
}
.blog_highlights:after{
    content: "";
    top: 40%;
    left: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    background: #F6F5FE;
}
.blog_highlights .row{
    position: relative;
    z-index: 1010;
}
.SuratFit_Fitness_links{
    background: #473BF0;
    padding: 40px 30px;
    border-radius: 28px;
    position: relative;
    top: -0;
}
.SuratFit_Fitness_links h3{
    color: #FFFFFF;
    padding-bottom: 10px;
    font-weight: 500;
}
.SuratFit_Fitness_links p{
    color: rgba(255,255,255,0.8);
    padding-right: 20px;
    margin-bottom: 0;
}
footer {
    background-color: #0C0020;
    position: relative;
    z-index: 1022;
}
.Quick_link h4{
    color: #FFFFFF;
    padding-bottom: 30px;
}
.Quick_link ul{
   padding: 0;
}
.Quick_link ul li{
    list-style: none;
}
.Quick_link ul li a{
    color: rgba(255,255,255,0.6);
    padding-bottom: 15px;
    display: inline-block;
}
.Quick_link ul li a:hover{
    color: rgba(255,255,255,1);
}
.social_media_ss {
    text-align: right;
}
.social_media_ss ul {
    padding: 0;
}
.social_media_ss ul li{
    list-style: none;
    display: inline-block;
}
.social_media_ss ul li a{
    display: inline-block;
    padding: 10px;
}
.social_media_ss ul li a img{
    height: 30px;
}
.last_footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    margin: 0 15px;
    text-align: center;
}
.last_footer p {
    color: rgba(255,255,255,0.6);
}
.last_footer p span {
    color: #473BF0;
    font-weight: 600;
}

.playstore-img img{
    height: 70px;
}
.suratfit-playstore-main{
    gap: 10px;
}

.contactus_section{
    padding: 50px 0 50px 0;
}

.ss_contact_us_form label{
    font-weight: 700;
}

.ss_contact_us_form input,
.ss_contact_us_form input:focus,
.ss_contact_us_form input:hover

{
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.ss_contact_us_form .btn_wrapper{
    margin-top: 20px;
    border: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #473BF0;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(71, 59, 240, .10);
}

.ss_contact_us_form .mb-2{
    margin-bottom: 20px;
}

.suratfit-title h1{
    text-align: center;
}

.contact_us_info{
    padding-top: 100px;
    padding-bottom: 200px;
}

.google_maps iframe{
    width: 100%;
    height: 450px;
    border-radius: 20px;
}

.ss_contacts_uus_info{
    background-color: #473BF0;
    height: 100%!important;
    border-radius: 16px;
    padding: 20px;
}

.ss_contacts_uus_info h4{
   color: rgba(255,255,255,0.5);
   text-transform: uppercase;
   font-size: 14px;
   line-height: 24px;
   margin-bottom: 0px;
}

.ss_contacts_uus_info p{
    color: #FFFFFF;
 }

 .suratfit_info_con{
    margin-top: 25px;
 }

 .ss_main_header h1 {
    text-align: left;
 }

 .faq_sub_secation{
    padding: 30px 0;
    position: relative;
 }

 .faq_sub_secation:before {
    position: absolute;
    content: '';
    background: #EDF4FF;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.faq_des_header,
.faq_images
{
    position: relative;
    z-index: 1024;
}

 .faq_images img{
    width: 100%;
 }

 .ss_accordion_sec
 {
    padding-bottom: 100px;
 }

 .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #473BF0;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    margin-top: 20px;
   
}


.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 16px;
}

.accordion-button{
    padding: 12px 16px;
    margin: 0px 0;
    font-weight: 500;
    line-height: 26px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/Down_arrow_ic.svg);
    transform: var(--bs-accordion-btn-icon-transform);
}

.privicy_policy_details{
    padding-bottom: 100px;
}

.details_sub_about_info p img{
    padding-right: 10px;
}

.details_sub_about_info .text-small{
    padding-bottom: 10px;
}

.details_of_info h3{
    margin-top: 20px;
}

.faq_des_header h1{
    font-size: 35px;
    margin-bottom: 10px;
}


/* DARK MODE */


.dark_mode{
    background-color: #050505;
}

.dark_mode .faq_sub_secation:before {
    position: absolute;
    content: '';
    background: #5E5CE6;
}

.dark_mode h1,
.dark_mode h2,
.dark_mode h3,
.dark_mode h4,
.dark_mode h5,
.dark_mode h6{
    color: #FFFFFF;
}

.dark_mode p{
    color: rgba(255,255,255,0.8)!important;
    margin-bottom: 8px;
}

.dark_mode .privicy_policy_details {
    padding-bottom: 40px;
}

.dark_mode a{
    color: #5E5CE6;
}

.dark_mode h6{
    margin-top: 30px;
}

/*  */

.ss_step_tracker_img img{
    width: 100%;
}

.suratfit-title {
    padding-right: 5%;
}

.suratfit-playstore-main a{
    margin-right: 10px;
}

#features {
    padding: 100px 0 100px 0;
}

.ss_FAQ{
    padding-bottom: 40px;
}

.ss_footer_main{
    padding-top: 150px;
}

.dssd{
    margin-bottom: -85px;
    position: relative;
    z-index: 16336;
}

.ss_footer_main .container{
    padding-bottom: 40px;
}