
:root{
  --slider-font: "Inter", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --header-font: "Inter", sans-serif;
  --menu-font: "Inter", sans-serif;

  --primary-color: #582ea5;

  --white-color: #ffffff;
  --black-color: #000000;

  --light-gary: #FBF9FD;
  --light-blue: #EAF4FF;
  --light-yellow: #F3FCD5;
  --light-perpel: #F0E1FF;
  
  
  --header-color: #303030;
  --sub-header-color: #4F4F4F;
  
  --menu-text-color: #390966;
  --menu-solid-button-color: #5530A6;

  --paragraph-text-color: #4F4F4F;

  --blue-text-color: #0062FF;
  --green-text-color: #4DB200;
  --orange-text-color: #FF912A;
  --perple-text-color: #BA71FF;
  

  --menu-font-size: 16px;
  --slider-header-font-size: 48px;
  --header-font-size: 32px;
  --subheading-font-size: 24px;
  --subheading2-font-size: 18px;
  --paragraph-font-size: 16px;
  --mediam-text: 14px;
  --small-text: 12px;
  --button-font-size: 16px;

  --section-gap:70px;
  --border-redious: 5px;
}




* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--paragraph-font);
  overflow-x: hidden;
  font-weight: 400;
  transition: all .5s ease;
  background-color: var(--white-color) !important;
}

html, body, ul, ol, li, form, fieldset, legend {
  margin: 0;
  padding: 0; 
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: none;
  outline: none; 
}

fieldset, img {
  border: 0; 
}

li {
  list-style: none; 
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}

a:focus {
  color: var(--black-color); 
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--black-color); 
}

img {
  max-width: 100%;
  height: auto; }

/* VARIABLES */
/*/////*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0, 0); 
  }
  100% {
    opacity: 1;
    transform: scale(1, 1); 
  } 
}


.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; 
}

img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s; 
}

/*//header//*/

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/fabicon.png);
  background-size: content;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}

/*///*/
.slick-slide a{
  padding: 0 !important;
  margin: 0 !important;
}



/*/////main-header///*/

.main-header{
  width: 100%;
  padding: 8px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  background-color: var(--white-color);
  z-index: 9999;
}

.main-header .main-header-innerblock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  max-width: 170px;
}

.main-header .logo a {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.main-header .header-menublock{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  max-width: 80%;
}
.main-header .header-menublock .navbar{
  padding: 0;
}
.main-header .header-menublock .container-fluid{
  padding: 0;
}

.main-header .header-menublock .navbar-toggler{
  display: none;
}

@media only screen and (min-width: 993px) {
  .collapse:not(.show) {
      display: block;
  }

  .main-header .navbar-nav{
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    flex-direction: row;
  }

}

.main-header .navbar-nav li{
    font-family: var(--menu-font);
    font-size: var(--menu-font-size);
    color: var(--menu-text-color);
}

.main-header .navbar-nav li a {
    text-decoration: none;
    font-family: var(--menu-font);
    font-size: var(--menu-font-size);
    color: var(--menu-text-color);
    text-transform: none;
    transition: all 0.5s;
    font-weight: 500;
}
.main-header .navbar-nav li a:hover{
  text-decoration: none;
  color: var(--primary-color);
}

.main-header .navbar-nav li.heighlight a {
    background: var(--menu-solid-button-color);
    padding: 10px 20px;
    border-radius: var(--border-redious);
    cursor: pointer;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-header .navbar-nav li.heighlight a:hover{
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--white-color);
}



/*///scroll-to-top-btn//*/

.scroll-to-top-btn{
  width: 42px;
  height: 42px;
  background-color: #Fefbea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  color: var(--primary-color);
  transition: 0.8s;
}
.scroll-to-top-btn:hover{
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*///whatsApp-stycky-btn//*/

.whatsApp-stycky-btn {
  width: 62px;
  height: 62px;
  background-color: #25D366;
  border-radius: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: fixed !important;
  right: 15px !important;
  bottom: 15px !important;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.8s;
  font-size: 24px !important;
  font-weight: bold;
  color: var(--white-color) !important;
}

.whatsApp-stycky-btn i{
  font-size: 38px;
  color: var(--white-color);
}
.whatsApp-stycky-btn:hover{
  text-decoration: none;
  background-color: #128c7e !important;
  color: var(--white-color);
}

/*/////commone-section////*/

.section-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

@media only screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 86%;
  }
}
.light-gary-bg{
  background-color: var(--light-gary) !important;
}
.light-blue-bg{
  background-color: var(--light-blue) !important;
}
.light-yellow-bg{
  background-color: var(--light-yellow) !important;
}
.light-perpel-bg{
  background-color: var(--light-perpel) !important;
}

.section-titelblock{
  width: 100%;
  padding: 0 0 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 300;
}
.section-block .section-titel, .section-block .slider-titel{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--header-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}
.section-block .section-titel.center-align, .section-block .slider-titel.center-align{
  text-align: center !important;
}

.section-block .section-titel span{
  color: var(--primary-color) !important;
}

.section-block b{
  font-weight: 600 !important;
}

.section-block .section-titelblock p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
}
.section-block .section-titelblock p span{
  color: var(--primary-color) !important;
}

.section-titelblock .section-titelblock{
  padding: 0;
  margin: 0;
}


.section-block .sub-titel{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading-font-size);
  color: var(--header-color);
  line-height: 1.3;
  font-weight: 600;
}
.section-block .sub-titel span{
  color: var(--primary-color) !important;
}

.section-block p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.section-block .small-text {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--small-text);
    color: var(--paragraph-text-color);
    line-height: 1.6;
    font-weight: 500;
}

.section-block p b{
  font-weight: 600;
}
.center-align{
  text-align: center;
}

.section-titelblock.center-align{
  text-align: center;
}
.section-block .section-titelblock.center-align .section-titel, 
.section-block .section-titelblock.center-align p, .section-block .section-titelblock.center-align .sub-titel{
  text-align: center;
  margin: 0 auto;
}

.section-block .text-and-button-heading{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-block .text-and-button-heading .section-titel, 
.section-block .text-and-button-heading p, .section-block .text-and-button-heading .sub-titel{
  text-align: left;
}

.section-block .text-and-button-heading .button-block{
  width: auto;
  min-width: 300px;
  justify-content: flex-end;
}

.btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
  border: none;
  background-color: transparent;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
}

.btn:hover{
  text-decoration: none;
  background-color: transparent;
  color: var(--menu-text-color);
}

.button-block{
  width: 100%;
  padding: 15px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.outline-btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.outline-btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
}

.outline-btn:hover{
  text-decoration: none;
  background-color: var(--light-perpel);
}

.outline-btn:hover i{
  text-decoration: none;
}

/*///*/

.solid-btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--white-color);
  font-weight: 500;
  text-transform: none;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.solid-btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
  color: var(--white-color);
}

.solid-btn:hover{
  text-decoration: none;
  background-color: var(--menu-text-color);
  color: var(--white-color);
}

.solid-btn:hover i{
  text-decoration: none;
  color: var(--white-color);
}

/*///*/

.icon-list{
  width: 100%;
  padding: 10px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  list-style: none;
}

.icon-list li{
  width: 100%;
  padding: 0 0 0 20px;
  margin: 5px 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var( --header-color);
  line-height: 1.6;
  font-weight: 500;
}

.icon-list li:before{
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 11px;
  color: #4DB200;
  position: absolute;
  top: 5px;
  left: 0;
}



/*////home-sliderblock///*/

.home-sliderblock {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  background-color: var(--primary-color);
  background: linear-gradient(to right,  rgba(125,47,172,1) 0%,rgba(99,45,167,1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  overflow: hidden;
}

.home-banner-mainblock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.home-sliderblock .banner-mainimage {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  right: 0;
  max-width: 55%;
  border: none;
  outline: none;
  z-index: 99;
  object-fit: contain;
}

.home-sliderblock .banner-mainimage img {
    object-fit: contain;
    max-width: 100%;
    /*height: 85vh;*/
}

.home-sliderblock .banner-topblock{
  width: 100%;
  padding: 50px 0 20px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position:static;
  /*min-height: 88vh;
  padding-bottom: 160px;*/
}

.home-sliderblock .banner-topblock .banner-content-block {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 55%;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
}
.banner-header-block {
    width: 100%;
    display: inline-block;
    padding: 0;
    margin: 0;
    clear: both;
    min-height: 190px;
}

.home-sliderblock .banner-titel{
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--slider-header-font-size);
    color: var(--white-color);
    line-height: 1.2;
    font-weight: 600;
    opacity: 1;
}
.home-sliderblock .banner-titel span{
  opacity: 0.7 !important;
}
.home-sliderblock p {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--paragraph-font-size);
    color: var(--white-color);
    line-height: 1.6;
    font-weight: 500;
    max-width: 640px;
}
.home-sliderblock p span{
  color: #FFEF45 !important;
}
.home-sliderblock .button-block{
  justify-content: flex-start;
}
.home-sliderblock .button-block .btn{
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 10px 20px !important;
}
.home-sliderblock .button-block .btn1{
  background-color: rgba(255, 255, 255, 0.3);
}

ul.banner-infolist {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
  gap: 15px;
  margin: 0;
  border: none;
  outline: none;
  color: var(--white-color);
}
ul.banner-infolist li{
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 20px;
}

ul.banner-infolist li:first-child{
  border-left: none !important;
  padding-left: 0 !important;
}

ul.banner-infolist a{
  display: inline-block;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--white-color);
  line-height: 1.6;
  font-weight: 500;
}

ul.banner-infolist .info-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

/*///*/

.home-sliderblock .banner-buttonblock {
  width: 100%;
  padding: 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: static;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  z-index: 9;
}

.home-sliderblock .banner-buttonblock .sub-titel {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--subheading-font-size);
    color: var(--white-color);
    line-height: 1.1;
    font-weight: 500;
}
.home-sliderblock .banner-buttonblock .sub-titel span{
  color: #FFEF45 !important;
}
.home-sliderblock .banner-buttonblock p {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--mediam-text);
    color: var(--white-color);
    line-height: 1.6;
    font-weight: 500;
    max-width: 640px;
}

/*//////*/

.all-topreasons-infoboxs{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.all-topreasons-infoboxs .top-reasons-infobox{
  width: 100%;
  padding: 15px 20px;
  margin: 0;
  max-width: 100%;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-radius: 16px;
  border-top: 2px solid var(--primary-color);
  background-color: #FBF7FF;
  min-height: 310px;
}

.slick-slide .item {
  width: 100%;
  padding: 10px;
  max-width: 100%;
  border: none;
  outline: none;
}

.top-reasons-infobox .innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.top-reasons-infobox .icon-block{
  width: 100%;
  padding: 0 0 15px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-reasons-infobox .icon-block .icon{
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: #F4E9FF;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-reasons-infobox .info-content{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.top-reasons-infobox .box-titel {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--subheading2-font-size);
    color: var(--header-color);
    line-height: 1.2;
    font-weight: 600;
}
.top-reasons-infobox p {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--mediam-text);
    color: var(--paragraph-text-color);
    line-height: 1.6;
    font-weight: 400;
}


.all-topreasons-infoboxs .present-optimisation{
  border-color: #00BBFF;
  background-color: #F5FCFF;
}
.all-topreasons-infoboxs .present-optimisation .icon-block .icon{
  background-color: #DBF5FF;
}

.all-topreasons-infoboxs .future-planning{
  border-color: #7293FF;
  background-color: #F8FAFF;
}
.all-topreasons-infoboxs .future-planning .icon-block .icon{
  background-color: #E0E7FF;
}

/*////*/

.all-heighlight-numberbox{
  width: 100%;
  padding: 40px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.all-heighlight-numberbox .numberbox{
  width: 100%;
  padding: 24px 16px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  background-color: #F9F2FF;
  border-radius: 8px;
  text-align: center;
}
.all-heighlight-numberbox .numberbox .number-text{
    width: 100%;
    padding: 0 0 5px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var( --header-font-size);
    color: #BA71FF;
    line-height: 1.2;
    font-weight: 700;
}
.all-heighlight-numberbox .numberbox p {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--mediam-text);
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}

.all-heighlight-numberbox .numberbox.box1{
  background-color: #ECF2FF;
}
.all-heighlight-numberbox .numberbox.box1 .number-text{
  color: #0062FF;
}


.all-heighlight-numberbox .numberbox.box2{
  background-color: #E9FEED;
}
.all-heighlight-numberbox .numberbox.box2 .number-text{
  color: #4DB200;
}

.all-heighlight-numberbox .numberbox.box3{
  background-color: #FFFDD4;
}
.all-heighlight-numberbox .numberbox.box3 .number-text{
  color: #FF912A;
}

.all-heighlight-numberbox .numberbox.box4{
  background-color: #F9F2FF;
}
.all-heighlight-numberbox .numberbox.box4 .number-text{
  color: #BA71FF;
}


/*////starts-here-mainblock///*/

.all-starts-listbox{
  width: 100%;
  padding: 10px 0 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.step-number-block {
  width: 100%;
  padding: 0;
  margin: 0 0 15px 0;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-number-block .step-number{
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px;
  border-radius: 30px;
  background-color: var(--primary-color);
  min-height: 56px;
  gap: 10px;

  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  font-weight: 600;
  color: var(--white-color);

  background: linear-gradient(to right,  rgba(99,45,167,1) 0%,rgba(185,94,197,1) 99%);


}

.step-number-block .step-number .number {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  min-width: 40px;
  min-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.step-number-block .step-number .text{
  display: inline-block;
  padding: 0 10px 0 0;
  margin: 0;
  border: none;
  outline: none;

  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  font-weight: 600;
  color: var(--white-color);
}

/*///*/

.starts-cardbox{
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 16px;
  background-color: var(--white-color);
  box-shadow: rgba(100, 100, 111, 0.1) 0px 1px 5px 0px;
  overflow: hidden;
}

.starts-cardbox .innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.starts-cardbox .card-image{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  transition: all 0.5s;
}

.starts-cardbox .card-image img{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  object-fit: cover;
  transition: all 0.5s;
}

.starts-cardbox:hover .card-image img{
  text-decoration: none;
  transform: scale(1.1);
}

.starts-cardbox .box-info{
  width: 100%;
  padding: 15px 0;
  margin: 0;
  border: none;
  outline: none;
  object-fit: cover;
  min-height: 200px;
  transition: all 0.5s;
}

.starts-cardbox .box-info p {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

/*////calculator-mainblock///*/


.cal-cardbox {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  position: relative;
  height: 100%;
  background-color: #FCF9FF;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.cal-cardbox .cardbox-header {
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  text-decoration: none;
  border-top: 2px solid #7E36CC;
  background-color: #F2E5FF;
  border-radius: 16px 16px 0 0;
  /*min-height: 100px;*/
}

.cal-cardbox .cardbox-header .cardbox-titel{
  width: 100%;
  padding: 0 0 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: #4F2296;
  line-height: 1.2;
  font-weight: 600;
}
.cal-cardbox .cardbox-header p {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: #5530A6;
  line-height: 1.6;
  font-weight: 400;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cal-cardbox .cardbox-bodycontent {
  width: 100%;
  padding: 10px 20px;
  border: none;
  outline: none;
  text-decoration: none;
}


.calculator-mainblock .image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  position: relative;
  height: 100%;
  background-color: #FCF9FF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calculator-mainblock .results-show .image-box {
    margin-top: 15px;
    max-height: 370px;
    object-fit: cover;
}


/*///*/

.loan-calculator-innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.loan-calculator-innerbox form{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.calculator-formbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.calculator-formbox .input-box{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.calculator-formbox .input-box label {
  width: 100%;
  padding: 0 0 2px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 400;
}

.calculator-formbox .submit-block{
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.calculator-formbox .submit-block .submit-btn{
  width: 100%;
  padding: 10px 15;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  max-width: 100%;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--paragraph-font);
  font-size: var( --subheading2-font-size);
  color: var(--white-color);
  background-color: var(--primary-color);
}


/*/////*/


.main-card-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  position: relative;
  /*height: 100%;*/
  background-color: #FCF9FF;
  border: 1px solid #7E36CC;
  border-radius: 16px;
  overflow: hidden;
}

.main-card-box .card-header{
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  text-decoration: none;
  border: none;
  background-color: var(--primary-color);
}

.main-card-box .card-header .titel{
  width: 100%;
  padding: 0 0 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--white-color);
  line-height: 1.2;
  font-weight: 600;
}
.main-card-box .card-header p {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: #5530A6;
  line-height: 1.6;
  font-weight: 400;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-card-box .card-body{
  width: 100%;
  padding: 10px 20px 20px 20px;
  border: none;
  outline: none;
  text-decoration: none;
}

.main-card-box .titel{
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--header-font-size);
  color: #12a56e;
  line-height: 1.2;
  font-weight: bold;
}
.main-card-box .titel2{
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--header-font-size);
  color: var(--primary-color);
  line-height: 1.2;
  font-weight: 500;
}
.main-card-box .titel2 span{
  color: #12a56e;
  font-weight: bold;
}

.main-card-box .infotext {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: italic;
}

.main-card-box .monthly-saving {
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  color: #4F2296;
  line-height: 1.2;
  font-weight: 400;
}
.main-card-box .monthly-saving b{
  font-size: var(--subheading2-font-size);
  color: #12a56e;
  font-weight: 700;
}

/*///*/

.all-cardlist-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  overflow-x: auto;
  max-height: 400px;
}
.all-cardlist-block .card-box{
  width: 100%;
  padding: 0;
  margin: 0 0 15px 0;
  border: 1px solid #e6e6e6;
  outline: none;
  text-decoration: none;
  clear: both;
  border-radius: 16px;
  overflow: hidden;
}
.all-cardlist-block .card-header{
  background: transparent;
  padding: 15px 15px 10px 15px;
  border: none;
}
.all-cardlist-block .card-header .titel{
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--subheading2-font-size);
    color: var(--header-color);
    line-height: 1.2;
    font-weight: 600;
}

.all-cardlist-block .card-box .card-body{
  padding: 0 15px 10px 15px;
}

.all-cardlist-block .price-list{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.all-cardlist-block .price-list li{
  padding: 5px 10px;
  margin: 5px 0;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fafc;
  border-radius: 8px;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.all-cardlist-block .price-list p{
  display: inline-block;
  padding: 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

.all-cardlist-block .price-list .price{
  display: inline-block;
  padding: 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 600;
  text-align: right;
}


/*////*/

.range-sliderblock {
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.range-slider{
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.range-slider input[type="range"]{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  background: var(--light-perpel);
  accent-color: #7c57d8;
  border: none;
  color-scheme: dark;
}


input[type="range"]::-webkit-slider-runnable-track {
  border: none;

}

/******** Firefox ********/
input[type="range"]::-moz-range-track {
  border: none;
}


.range-slider-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;

  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.5;
}




/*///*/

.your-estimated-results{
  background-color: #F5FFF7 !important;
}

.your-estimated-results .cardbox-header{
  border-color: #67BD77 !important;
  background-color: #CAF8D2 !important;
}

.estimated-results-innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.cal-cardbox .price-highlight {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0;
    margin: 0;
    gap: 10px;
}
.cal-cardbox .price-highlight .price-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0;
  gap: 1px;
  min-height: 82px;
  text-align: center;
  background-color: #E2FFE7;
  border: 1px solid #CAF8D2;
  border-radius: 8px;
}

.cal-cardbox .price-highlight .price-box .price-text{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  line-height: 1.6;
  font-weight: 600;
}

.cal-cardbox .price-highlight .price-box p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  text-align: center;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 400;
}

.cal-cardbox .price-highlight .price-box.box1{
  background-color: #FFF8C6;
  border-color: #FFEB50;
}
.cal-cardbox .price-highlight .price-box.box2{
  background-color: #FFECDF;
  border-color: #FFD9A7;
}
.cal-cardbox .price-highlight .price-box.box3{
  background-color: #E2FFE7;
  border-color: #CAF8D2;
}


.cal-cardbox .total-saving-price{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
}

.cal-cardbox .total-saving-price .total-saving{
  width: 100%;
  border: 2px solid #67BD77;
  padding: 5px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: var(--border-redious);
}


.cal-cardbox .total-saving-price .total-saving .price-text{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--subheading-font-size);
  color: #67BD77;
  line-height: 1.6;
  font-weight: 600;
}

.cal-cardbox .total-saving-price .total-saving p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  text-align: center;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 400;
}

.cal-cardbox .barchart-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.cal-cardbox .barchart-block .barchart{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.cal-cardbox .barchart-block .barchart img{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}


/*////testimonial-mainblock///*/

.testimonial-mainblock{
  background-color: #F7FAFD;
}

.all-testimonial-blocks{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.all-testimonial-blocks .item{
  width: 100%;
  padding: 10px;
  max-width: 100%;
  border: none;
  outline: none;
}

.testimonial-carditem{
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  border: 10px solid transparent;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  background-color: var(--white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 16px;
  min-height: 450px;
}

.testimonial-carditem .testimonial-header {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.testimonial-carditem .testimonial-header .user-imagebox {
    display: flex;
    width: 64px;
    height: 64px;
    overflow: hidden;
    background: #ccc;
    border-radius: 100%;
    min-width: 64px;
    min-height: 64px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.testimonial-carditem .testimonial-header .user-details{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.testimonial-carditem .testimonial-header .user-name{
  width: 100%;
  padding: 0 0 3px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}
.testimonial-carditem .testimonial-header .work-details{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 300;
}

.testimonial-carditem .review-text{
  width: 100%;
  padding: 10px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}


/*/////*/

.all-news-blocks{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.all-news-blocks .item{
  width: 100%;
  padding: 10px;
  max-width: 100%;
  border: none;
  outline: none;
}

.all-news-blocks a{
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

.news-itembox{
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 16px;
  background-color: var(--white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}

.news-itembox .innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.news-itembox .news-banner{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  transition: all 0.5s;
}

.news-itembox .news-banner img{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  object-fit: cover;
  transition: all 0.5s;
}

.news-itembox:hover .news-banner img{
  text-decoration: none;
  transform: scale(1.1);
}

.news-itembox .news-content{
  width: 100%;
  padding: 15px 0;
  margin: 0;
  border: none;
  outline: none;
  object-fit: cover;
  transition: all 0.5s;
}

.news-itembox .news-content .news-brand-logo {
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.news-itembox .news-content .news-brand-logo img{
  display: inline-block;
  width: auto;
  max-width: 100%;
  max-height: 20px;
}

.news-itembox .news-content .news-titel {
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--black-color);
  line-height: 1.4;
  font-weight: 600;
}

.more-details-btn{
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--mediam-text);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
  border: none;
  background-color: transparent;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}



/*////smart-reads-allitems////*/

.smart-reads-allitems{
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
  border: none;
  outline: none;
}

.smart-reads-itembox{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  clear: both;
  border: none;
  outline: none;
}

.smart-reads-itembox a{
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

.smart-reads-itembox .smart-reads-innerbox{
  width: 100%;
  padding: 15px;
  margin: 0;
  max-width: 100%;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-radius: 16px;
  background-color: #F9F3FF;

  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.smart-reads-itembox .image-box {
  width: 100%;
  min-width: 184px;
  max-width: 184px;
  min-height: 184px;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.1);
  height: 184px;
}

.smart-reads-itembox .image-box img{
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.smart-reads-itembox:hover .image-box img{
  text-decoration: none;
  transform: scale(1.1);
}

.smart-reads-itembox .smartreads-content-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.smart-reads-itembox .smartreads-content-box .post-date {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 500;
}

.smart-reads-itembox .post-date span{
  display: inline-block;
  background-image: url(../images/black_calendar-week.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 16px;
  padding-left: 20px;
  line-height: 18px;
}

.smart-reads-itembox .smartreads-content-box .titel {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.smart-reads-itembox .smartreads-content-box .short-details {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.smart-reads-itembox .smartreads-content-box .read-morebtn{
  width: 100%;
  padding: 5px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.smart-reads-itembox.grid-view .smart-reads-innerbox{
  flex-wrap: wrap;
}

.smart-reads-itembox.grid-view .image-box{
  width: 100%;
  max-width: 100%;
  min-height: 250px;
  height: 250px;
}

.smart-reads-itembox.box1 .smart-reads-innerbox{
  background-color: #F9F3FF;
}
.smart-reads-itembox.box2 .smart-reads-innerbox{
  background-color: #EEF3FF;
}
.smart-reads-itembox.box3 .smart-reads-innerbox{
  background-color: #F3FCD5;
}

/*////faq-mainblock///*/

.all-faqs-block{
  width: 100%;
  padding: 0;
  margin: 0 auto;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  max-width: 840px;
}

.all-faqs-block .faqs-list{
  width: 100%;
  padding: 10px 0;
  margin: 0 auto;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}

.all-faqs-block .item{
    width: 100%;
    padding: 10px;
    margin: 0;
    border: none;
}
.all-faqs-block .faq-itembox{
  width: 100%;
  padding: 20px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 16px;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 10px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  overflow: hidden;
}

.all-faqs-block .faq-itembox .faq-innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  min-height: 160px;
}

.all-faqs-block .faq-itembox .item-titel {
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}

.all-faqs-block .faq-itembox .text {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}
.faq-button-block {
  width: 100%;
  padding: 15px 0 0 0;
  margin: 0;
  text-align: center;
  border: none;
  outline: none;
}

.faq-button-block p {
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}


/*////emi-burden-mainblock////*/

.emi-burden-mainblock{
  padding: 0;
}

.emiburden-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.emiburden-block .image-box{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  max-width: 390px;
}

.emiburden-block .image-box img{
  max-width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  line-height: 0;
  z-index: 9;
}


.emiburden-block .emiburden-content{
  width: 100%;
  padding: 10px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.emiburden-block .emiburden-content .button-block{
  padding-top: 0;
  display: flex;
  justify-content: flex-start;
}

.emiburden-block .emiburden-content .icon-list{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.emiburden-block .emiburden-content .icon-list li{
  width: auto;
  display: inline-block;
  color: #7E36CC;
}

.emiburden-block .emiburden-content .icon-list .icon-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.emiburden-block .emiburden-content .icon-list li:before{
  color: var(--primary-color);
}


/*///footer-mainblock///*/

.footer-mainblock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-mainblock a{
  display: inline-block;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #6E5882;
  line-height: 1.2;
  font-weight: 400;
  transition: all 0.5s;
}

.footer-mainblock a:hover{
  text-decoration: none;
  color: var(--primary-color);
}

.footer-mainblock .footer-top-menublock{
  width: 100%;
  padding: 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-mainblock .menubox{
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-mainblock .header{
  width: 100%;
  padding: 0 0 15px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 500;
}

.footer-mainblock p{
  width: 100%;
  padding: 3px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #6E5882;
  line-height: 1.2;
  font-weight: 400;
  transition: all 0.5s;
}

.footer-mainblock .footer-menulist{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  list-style: none;
}

.footer-mainblock .footer-menulist li{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font);
  color: #6E5882;
  line-height: 1.2;
  font-weight: 400;
}

.footer-mainblock .footer-menulist li a{
  width: 100%;
  padding: 3px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #6E5882;
  line-height: 1.2;
  font-weight: 400;
  transition: all 0.5s;
}

.footer-mainblock .footer-menulist li a:hover{
  text-decoration: none;
  color: var(--primary-color);
}



/*/////*/

.footer-mainblock .footer-contact-block{
  width: 100%;
  padding: 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-top: 1px solid #DEBEFF;
  border-bottom: 1px solid #DEBEFF;
}

.footer-mainblock .footer-contactinfo{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-mainblock .info-box{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-mainblock .info-box p{
  max-width: 500px;
}

.footer-mainblock .info-box .phone-box{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 500;
}

.footer-mainblock .info-box .phone-box a{
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

.footer-mainblock .info-box .phone-box a:hover{
  text-decoration: none;
  color: var(--primary-color);
}

.footer-mainblock .footer-contactinfo .mail-box{
  width: 100%;
  padding: 3px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #6E5882;
  line-height: 1.2;
  font-weight: 400;
  transition: all 0.5s;
}
.footer-mainblock .footer-contactinfo .mail-box a{
  text-decoration: underline;
  color: #6E5882;
}
.footer-mainblock .footer-contactinfo .mail-box a:hover{
  text-decoration: underline;
  color: var(--primary-color);
}


.footer-newsletter-box {
  width: 100%;
  padding: 20px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.footer-newsletter-box .input-group {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-newsletter-box .input-group .form-control {
  width: 100%;
  padding: 0 25px 0 50px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #F0E1FF;
  border-radius: 42px !important;
  line-height: 54px !important;
  background-image: url(../images/mail.svg);
  background-repeat: no-repeat;
  background-position: 20px 17px;
  transition: all 0.5s;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #6E5882;
  background-size: 20px;
  height: 54px;
}
.footer-newsletter-box .input-group .btn {
  padding: 0 !important;
  margin: 0 !important;
  width: 40px;
  min-height: 40px;
  background-color: transparent;
  background-image: url(../images/send.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: 26px;
  display: flex;
  text-indent: -9999px;
  background-position: right center;
  border: none;
  box-shadow: none;
}


/*///*/

.footer-mainblock .footer-disclaimer-block{
  width: 100%;
  padding: 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #7D6791;
  line-height: 1.5;
  font-weight: 400;
  transition: all 0.5s;
  text-align: left;
}

.footer-mainblock .footer-copyright-text{
  width: 100%;
  padding: 0 0 40px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: #595959;
  line-height: 1.5;
  font-weight: 400;
  transition: all 0.5s;
  text-align: left;
  opacity: 0.6;
}

.footer-mainblock .footer-copyright-text a{
  text-decoration: none;
  color: #595959;
  font-size: inherit;
}

.footer-mainblock .footer-copyright-text a:hover{
  text-decoration: none;
  color: var(--primary-color);
}



/*/////*/

.calculator-page-mainblock .cal-cardbox .cardbox-header {
  min-height: 50px;
}

.blog-main-bannerblock{
  width: 100%;
  padding: 0 0 20px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.blog-main-bannerblock img{
  width: 100%;
  padding: 0;
  margin: 0;
}

.blog-main-bannerblock{
  width: 100%;
  padding: 0 0 20px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;

}
.blog-main-bannerblock .box-titel, .post-cms-textblock .box-titel{
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--subheading2-font-size);
    color: var(--header-color);
    line-height: 1.2;
    font-weight: 600;
}

.top-reasons-infobox p, .post-cms-textblock p{
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--mediam-text);
    color: var(--paragraph-text-color);
    line-height: 1.6;
    font-weight: 400;
}

.slick-dots{
  bottom: -10px;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button::before{
  color: var(--primary-color);
}
.slick-dots li.slick-active button::before{
  color: var(--primary-color);
}

.hide-desktop{
  display: none !important;
}

.qxCTlb{
  display: none;
}

.estimated-results-box{
  width: ;
}

/*////*/

ul.social-media-list {
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
}

ul.social-media-list li{
  display: inline-block;
  padding: 5px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

ul.social-media-list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 100%;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
}
ul.social-media-list li a:hover {
    text-decoration: none;
    background-color: var(--menu-text-color);
    color: var(--white-color);
}

.banner-infolist.banner-art-name a{
  text-decoration: none !important;
}

.banner-infolist.banner-art-name a:hover{
  text-decoration: none;
}

.banner-infolist.banner-art-name .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 100%;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
}
.banner-infolist.banner-art-name .icon:hover {
    text-decoration: none;
    background-color: var(--menu-text-color);
    color: var(--white-color);
}
.banner-infolist.banner-art-name .info-box{
  gap: 10px;
}
ul.banner-infolist span.text {
    font-size: 24px;
}

/*//*/

.recommendation-image-buttonblock {
  width: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.recommendation-image-buttonblock a {
  min-width: 50%;
  min-height: 60px;
}

/*.recommendation-image-buttonblock a {
  min-width: 50%;
  min-height: 60px;
  font-weight: bold;
  font-size: 20px;
}*/



/*/////responsive-fixing//////*/

@media only screen and (max-width: 992px) {

  :root{
  
  --menu-font-size: 14px;
  --slider-header-font-size: 24px;
  --header-font-size: 24px;
  --subheading-font-size: 20px;
  --subheading2-font-size: 16px;
  --paragraph-font-size: 14px;
  --mediam-text: 12px;
  --small-text: 11px;
  --button-font-size: 14px;

  --section-gap:40px;
}

  .main-header .header-menublock .navbar-toggler{
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .container, .container-md, .container-sm {
    max-width: 95%;
  }

  .slider-header-text .slider-titel {
    font-size: 8.5vw;
    line-height: 1;
  }

  .button-block .btn i{
    font-size: 16px;
  }

  .we-understand-mainblock .home-service-box .box-header .header-icon{
    width: 34px;
  }

  .button-block .btn{
    padding: 10px;
    text-align: left;
  }

  /*//////*/

  .home-sliderblock .banner-mainimage img{
    height: 450px;
  }

  .bank-image {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
  }
  .bank-image img{
    max-width: 40%;
    height: auto;
  }
  .home-sliderblock{
    height: auto;
  }
  .home-sliderblock .banner-topblock{
    min-height: 450px;
  }
  .banner-header-block{
    min-height: 120px;
  }

  .all-topreasons-infoboxs .top-reasons-infobox{
    padding: 15px;
  }

  .section-block .text-and-button-heading .button-block{
    min-width: 200px;
  }

  .all-heighlight-numberbox .numberbox{
    margin: 15px 0;
  }

  .all-heighlight-numberbox .numberbox{
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100px;
  }

  .emiburden-block .emiburden-content .icon-list{
    flex-wrap: wrap;
    gap: 5px 20px;
  }

  .all-starts-listbox{
    padding: 10px 0 0 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .section-titelblock{
    padding: 0 0 10px 0;
  }

  .all-heighlight-numberbox{
    padding: 20px 0 0 0;
  }

  




}



@media only screen and (max-width: 767px) {

  :root{
    --menu-font-size: 14px;
    --slider-header-font-size: 34px;
    --header-font-size: 28px;
    --subheading-font-size: 18px;
    --subheading2-font-size: 16px;
    --paragraph-font-size: 12px;
    --mediam-text: 12px;
    --small-text: 12px;
    --button-font-size: 16px;

    --section-gap:30px;
  }

  .home-sliderblock p{
    font-size: 20px;
  }

  .wehelp-mainblock .wehelp-block {
    max-width: 100%;
  }

  .main-header .header-menublock{
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
  }
  .main-header .navbar-expand-lg .navbar-toggler {
    display: block;
  }

  .main-header .header-menuicon{
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
  }

  .main-header .header-menuicon img{
    display: inline-block;
    padding: 0;
    margin: 0;
    max-width: 32px;
    border: none;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
  }

  .main-header .navbar {
      padding: 0;
      margin: 0;
      border: none;
      outline: none;
      text-decoration: none;
      background-color: transparent;
  }

  .main-header .navbar-collapse{
    display: none !important;
    transition: 0.5s;
  }

  .main-header .navbar-collapse {
      display: inline-block !important;
      width: 0;
      position: fixed;
      height: calc(100% - 65px);
      top: 65px;
      left: 0;
      background-color: var(--light-gary) !important;
      z-index: 999;
      padding: 0;
      text-align: right;
      transition: 0.6s !important;
      max-width: 0;
      opacity: 0 !important;
  }

  .main-header .collapse.show {
      opacity: 1 !important;
      left: 0;
      width: 100%;
      max-width: 320px;
  }

  .main-header .navbar-nav{
    width: 100%;
    padding: 30px;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    max-width: 100%;
  }
  .main-header .navbar-nav li{
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    text-align: right;
  }
  .main-header .navbar-nav li a{
    display: block;
    padding: 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    text-align: left;
    font-family: var(--menu-font);
    font-size: var( --menu-font-size);
    color: var(--menu-text-color);
    transition: all 0.3s;
    font-weight: 300;
  }
  .main-header .navbar-nav li a:hover{
    text-decoration: none;
    color: var(--heighlight-color);
  }

  .main-header.fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: 100%;
      padding: 10px 0;
  }
  .main-header.fixed-header .logo img{
    max-height: 50px;
  }
  .main-header.fixed-header .navbar-collapse {
    top: 70px;
    height: calc(100% - 70px);
  }

  
  .section-block .text-and-button-heading{
    flex-wrap: wrap;
  }

  .section-block .text-and-button-heading .button-block{
    width: 100%;
  }
  .section-block .text-and-button-heading .button-block{
    justify-content: flex-start;
  }

  .all-topreasons-infoboxs .top-reasons-infobox{
    margin: 15px 0;
  }

  .all-starts-listbox .starts-cardbox{
    margin-bottom: 0;
  }

  .step-number-block .step-number{
    width: 100%;
    justify-content: center;
  }

  .all-heighlight-numberbox{
    padding: 0;
  }

  .all-starts-listbox{
    padding: 0;
  }

  .step-number-block .step-number .number{
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 14px;
  }
  .home-sliderblock .banner-topblock{
    padding: 15px 0 0 0;
  }
  .button-block{
    flex-wrap: wrap;
  }

  .emiburden-block{
    flex-wrap: wrap;
  }
  .emiburden-block .image-box{
    order: 2;
  }
  .emiburden-block .emiburden-content{
    order: 1;
  }
  .emiburden-block .image-box{
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .emiburden-block .image-box img{
    position: static;
    max-height: 180px;
  }

  .hide-mobile{
    display: none !important;
  }
  .home-sliderblock.hide-mobile{
    display: none !important;
  }
  .hide-desktop{
    display: inline-block !important;
  }
  .home-sliderblock.hide-desktop{
    display: inline-block !important;
  }

  .home-sliderblock .banner-topblock .banner-content-block{
    max-width: 100%;
  }
  .home-sliderblock .banner-mainimage{
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    flex-wrap: wrap;
  }
  .home-sliderblock .banner-mainimage img{
    display: inline-block;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }


  .home-sliderblock{
      height: auto;
      display: inline-block;
      clear: both;
      background: none !important;
  }

  .home-banner-mainblock{
    height: auto;
    min-height: inherit;
    overflow: visible;
    position: relative;
  }

  .home-sliderblock .banner-buttonblock{
    position: static;
  }

  .home-sliderblock .banner-topblock{
    min-height: inherit;
  }

  .banner-header-block{
    min-height: inherit;
  }
  .home-sliderblock .banner-topblock{
    display: inline-block !important;
  }
  .home-sliderblock .banner-mainimage img{
    height: auto;
  }

  .home-sliderblock .home-banner-mainblock{
    background-color: var(--primary-color);
    background: linear-gradient(to right, rgba(125,47,172,1) 0%,rgba(99,45,167,1) 100%);
    min-height: 85px;
  }
  .home-sliderblock .banner-mainimage{
    justify-content: center;
  }
  .home-sliderblock .banner-mainimage img{
    max-width: 100%;
  }
  ul.banner-infolist{
    gap: 5px;
  }
  .home-sliderblock .banner-buttonblock .sub-titel{
    font-size: 12px;
  }

  .bank-image {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
  }
  .bank-image img{
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
  }

  .footer-mainblock .footer-menulist li{
    padding: 0 0 3px 0;
  }
  .footer-mainblock .footer-top-menublock{
    padding: 10px 0;
  }

  .news-press-mainblock {
    position: relative;
    margin-top: -13px;
  }

  .slick-prev, .slick-next{
    display: none !important;
  }

  .section-block .section-titelblock p{
    font-size: 18px;
    text-align: center;
  }

  .top-reasons-mainblock .button-block{
    display: none !important;
  }

  .emiburden-block .image-box{
    display: none !important;
  }
  .all-faqs-block .faq-itembox .item-titel{
    text-align: center;
  }
  .all-faqs-block .faq-itembox .text{
    text-align: center;
  }

  .calculator-mainblock .image-box{
    background-color: transparent;
  }
  .calculator-mainblock .image-box img{
    display: none !important;
  }

  .recommendation-image-buttonblock{
    position: static;
    padding: 15px 0;
    background-color: transparent !important;
  }

  .calculator-mainblock .cal-cardbox{
    width: 100%;
    clear: both;
    border: 1px solid #7E36CC;
    border-radius: 16px;
  }
  .cal-cardbox .cardbox-header{
    border-top: none;
  }
  
  .loan-calculator-box {
    margin-bottom: 15px;
  }

  .main-card-box .monthly-saving{
    font-size: var(--subheading2-font-size);
    line-height: 1.6;
    font-weight: 600;
  }


  ul.banner-infolist{
    padding: 5px 0;
  }
  
  ul.banner-infolist li{
    border: none;
    padding: 2px 0;
    width: 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }

  ul.banner-infolist li:first-child{
    border-left: none;
  }

  ul.banner-infolist span.text {
    font-size: 16px;
  }

  .home-sliderblock .banner-titel{
    text-align: center;
  }
  .home-sliderblock p{
    text-align: center;
  }
  ul.banner-infolist {
    justify-content: space-between;
    align-content: center;
  }
  .home-sliderblock .button-block {
    justify-content: center;
  }
  .banner-infolist.banner-art-name .icon{
    width: 26px;
    min-width: 26px;
    height: 26px;
    min-height: 26px;
  }

  .recommendation-image-buttonblock a {
    min-height: 30px;
  }
  
  .calculator-mainblock .results-show .image-box {
    margin-top: 0;
    max-height: inherit;
    object-fit: cover;
    height: auto;
  }






}



@media only screen and (max-width: 480px) {

  .smart-reads-itembox .smart-reads-innerbox{
    flex-wrap: wrap;
    gap: 10px;
  }
  .smart-reads-itembox .image-box{
    max-width: 100%;
  }
  .smart-reads-itembox .image-box img{
    min-width: 100%;
  }

  .cal-cardbox .price-highlight{
    flex-wrap: wrap;
  }

  .button-block .btn{
    width: 100%;
  }

  .section-block .section-titel, .section-block .slider-titel{
    text-align: center;
  }
  .home-sliderblock .banner-mainimage img{
    margin: 0;
  }

  .section-block .text-and-button-heading .section-titel, .section-block .text-and-button-heading p, .section-block .text-and-button-heading .sub-titel {
    text-align: center;
  }

  .emiburden-block .emiburden-content .icon-list li{
    font-size: 12px;
  }

  .footer-mainblock p, .footer-mainblock .footer-menulist li a{
    font-size: var(--small-text);
  }
  .footer-mainblock .footer-disclaimer-block{
     font-size: var(--small-text);
  }
  .footer-mainblock .footer-copyright-text{
    font-size: var(--small-text);
  }
  .section-block .section-titelblock p{
    font-size: 16px;
  }

  .recommendation-image-buttonblock a {
    min-width: 100%;
    min-height: 30px;
  }




}