/********** Template CSS **********/
:root {
    --primary: #173865;
    --secondary: #042b67;
    --light: #f1f1f1;
    --dark: #042b67;
}

.bg-primary {
    background-color: #173865 !important;
}
.bg-light {
    background-color: #f1f1f1 !important;
}
.text-primary {
    color: #173865 !important;
}

.btn-primary{
    background-color: #173865;
    border-color: #173865;
}

.btn-primary:hover, .btn-primary:focus, .btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle{
    background-color: #042b67;
    border-color: #042b67;
    color: #ffffff;
    box-shadow: none;
}

.border-radius {
  border-radius: 0.5em;
}

.border-radius-1 {
  border-radius: 1em;
}

.border-radius-2 {
  border-radius: 2em;
}

.radius-left{border-top-left-radius:0.5em;border-bottom-left-radius:0.5em;}
.radius-right{border-top-right-radius:0.5em;border-bottom-right-radius:0.5em;}

.radius-left-1{border-top-left-radius:1em;border-bottom-left-radius:1em;}
.radius-right-1{border-top-right-radius:1em;border-bottom-right-radius:1em;}

.radius-left-2{border-top-left-radius:2em;border-bottom-left-radius:2em;}
.radius-right-2{border-top-right-radius:2em;border-bottom-right-radius:2em;}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Body ***/
html, body {
    width: 100%;
    height: 100%;
}
body{
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  position: relative;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{font-family: "Montserrat", sans-serif;}
.navbar .nav-item .dropdown-menu {
    width: 240px;
}
.dropdown-item {
    padding: 10px 15px;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #173865;
}
a {
    color: #173865;
    text-decoration: none;
}
a:hover, a:focus {
    color: #042b67;
    text-decoration: none;
}

/*** Heading ***/
.fw-bold {
    font-weight: 800 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}
.fw-normal{
    font-weight: 400 !important;
}
.fw-light{
    font-weight: 300 !important;
}
.fw-thin{
    font-weight: 200 !important;
}

/*** Helper Classes ***/
.color-primary {
  color: #ffd194!important;
}

.color-secondary {
  color: #70e1f5 !important;
}

.color-white {
  color: white!important;
}

.color-black {
  color: black!important;
}

.text-white {
  color: white;
}
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5 {
  color: white !important;
}

.bg-color-primary{background-color: #ffd194;}
.bg-color-secondary{background-color: #70e1f5;}

.z-index-1{z-index: 1;}
.z-index-2{z-index: 2;}
.z-index-3{z-index: 3;}
.z-index-4{z-index: 4;}
.z-index-5{z-index: 5;}
/*-------------------------------------------------
    [ ## Font Size ]
*/
.fts-13 {
  font-size: 13px;
}

.fts-15 {
  font-size: 15px;
}

.fts-18 {
  font-size: 18px;
}

.fts-20 {
  font-size: 20px;
}

.fts-25 {
  font-size: 25px;
}

.fts-30 {
  font-size: 30px;
}

.fts-35 {
  font-size: 35px;
}

.fts-40 {
  font-size: 40px;
}

.fts-45 {
  font-size: 45px;
}

.fts-50 {
  font-size: 50px;
}

.fts-60 {
  font-size: 60px;
}

.fts-65 {
  font-size: 65px;
}

.fts-70 {
  font-size: 70px;
}

.fts-75 {
  font-size: 75px;
}

/*--------------------------------------------------------------
# Text Alignment
--------------------------------------------------------------*/
.txt-left{text-align: left;}
.txt-center{text-align: center;}
.txt-right{text-align: right;}

/*--------------------------------------------------------------
# Heights and Widths
--------------------------------------------------------------*/

/* Width Pixels */

.width-1px {width: 1px}
.width-2px {width: 2px}
.width-3px {width: 3px}
.width-4px {width: 4px}
.width-5px {width: 5px}
.width-6px {width: 6px}
.width-7px {width: 7px}
.width-8px {width: 8px}
.width-9px {width: 9px}
.width-10px {width: 10px}
.width-80px {width: 80px}
.width-90px {width: 90px}
.width-100px {width: 100px}
.width-150px {width: 150px}
.width-200px {width: 200px}
.width-250px {width: 250px}
.width-300px {width: 300px}
.width-350px {width: 350px}
.width-400px {width: 400px}
.width-450px {width: 450px}
.width-500px {width: 500px!important}
.width-550px {width: 550px}
.width-600px {width: 600px}
.width-650px {width: 650px!important}
.width-700px {width: 700px}
.width-800px {width: 800px}

/* Width Percentage */

.width-10-percent {width: 10% !important}
.width-20-percent {width: 20% !important}
.width-30-percent {width: 30% !important}
.width-40-percent {width: 40% !important}
.width-50-percent {width: 50% !important}
.width-60-percent {width: 60% !important}
.width-70-percent {width: 70% !important}
.width-80-percent {width: 80% !important}
.width-90-percent {width: 90% !important}
.width-100-percent {width: 100% !important}
.width-auto {width:auto !important}
.max-width-100 {max-width: 100%}

/* Minimum Width */

.min-width-100px {min-height: 100px}
.min-width-200px {min-height: 200px}
.min-width-300px {min-height: 300px}
.min-width-400px {min-height: 400px}
.min-width-500px {min-height: 500px}
.min-width-600px {min-height: 600px}
.min-width-700px {min-height: 700px}

/* View Width */

.view-width-100vh{width: 100vh;}

/* Height Pixels */

.height-1px {height: 1px!important}
.height-2px {height: 2px!important}
.height-3px {height: 3px!important}
.height-4px {height: 4px!important}
.height-5px {height: 5px!important}
.height-6px {height: 6px!important}
.height-7px {height: 7px!important}
.height-8px {height: 8px!important}
.height-9px {height: 9px!important}
.height-10px {height: 10px!important}
.height-80px {height: 80px}
.height-90px {height: 90px}
.height-100px {height: 100px}
.height-150px {height: 150px}
.height-200px {height: 200px}
.height-250px {height: 250px}
.height-300px {height: 300px;}
.height-350px {height: 350px}
.height-400px {height: 400px}
.height-450px {height: 450px}
.height-500px {height: 500px!important;}
.height-550px {height: 550px}
.height-600px {height: 600px}
.height-650px {height: 650px!important;}
.height-700px {height: 700px}
.height-800px {height: 800px}

/* Height Percentage */

.height-10-percent {height: 10%}
.height-20-percent {height: 20%}
.height-30-percent {height: 30%}
.height-40-percent {height: 40%}
.height-50-percent {height: 50%}
.height-60-percent {height: 60%}
.height-70-percent {height: 70%}
.height-80-percent {height: 80%}
.height-90-percent {height: 90%}
.height-100-percent {height: 100% !important}
.height-auto {height:auto !important}
.max-height-100 {max-height: 100%}

/* Minimum Heights */

.min-height-100px {min-height: 100px}
.min-height-200px {min-height: 200px}
.min-height-300px {min-height: 300px!important;}
.min-height-400px {min-height: 400px}
.min-height-500px {min-height: 500px}
.min-height-600px {min-height: 600px}
.min-height-700px {min-height: 700px}
.min-height-800px {min-height: 800px}
.min-height-900px {min-height: 900px}

/* Hero Heights  */

.xs-screen {height:300px;}
.sm-screen {height:400px;}
.md-screen {height:600px;}
.lg-screen {height:700px;}
.xl-screen {height:800px;}
.xxl-screen{height: 1000px;}

/* View Heights */

.view-height-100vh{height: 100vh!important;}

/* Borders */

.br-0{border: 0!important;}


/*-------------------------------------------------
    [ ## Margin Element ]
*/
.mr-0 {
  margin: 0;
}

.mrt-0 {
  margin-top: 0;
}

.mrb-0 {
  margin-bottom: 0!important;
}

.mrl-0 {
  margin-left: 0;
}

.mrr-0 {
  margin-right: 0;
}

.mrt-5 {
  margin-top: 5px;
}

.mrb-5 {
  margin-bottom: 5px;
}

.mrl-5 {
  margin-left: 5px;
}

.mrr-5 {
  margin-right: 5px;
}

.mrt-10 {
  margin-top: 10px;
}

.mrb-10 {
  margin-bottom: 10px;
}

.mrl-10 {
  margin-left: 10px;
}

.mrr-10 {
  margin-right: 10px;
}

.mrt-15 {
  margin-top: 15px;
}

.mrb-15 {
  margin-bottom: 15px!important;
}

.mrl-15 {
  margin-left: 15px;
}

.mrr-15 {
  margin-right: 15px;
}

.mrt-20 {
  margin-top: 20px;
}

.mrb-20 {
  margin-bottom: 20px!important;
}

.mrl-20 {
  margin-left: 20px;
}

.mrr-20 {
  margin-right: 20px;
}

.mrt-25 {
  margin-top: 25px;
}

.mrb-25 {
  margin-bottom: 25px;
}

.mrl-25 {
  margin-left: 25px;
}

.mrr-25 {
  margin-right: 25px;
}

.mrt-30 {
  margin-top: 30px!important;
}

.mrb-30 {
  margin-bottom: 30px;
}

.mrl-30 {
  margin-left: 30px;
}

.mrr-30 {
  margin-right: 30px;
}

.mrt-35 {
  margin-top: 35px;
}

.mrb-35 {
  margin-bottom: 35px;
}

.mrl-35 {
  margin-left: 35px;
}

.mrr-35 {
  margin-right: 35px;
}

.mrt-40 {
  margin-top: 40px;
}

.mrb-40 {
  margin-bottom: 40px;
}

.mrl-40 {
  margin-left: 40px;
}

.mrr-40 {
  margin-right: 40px;
}

.mrt-45 {
  margin-top: 45px;
}

.mrb-45 {
  margin-bottom: 45px;
}

.mrl-45 {
  margin-left: 45px;
}

.mrr-45 {
  margin-right: 45px;
}

.mrt-50 {
  margin-top: 50px;
}

.mrb-50 {
  margin-bottom: 50px;
}

.mrl-50 {
  margin-left: 50px;
}

.mrr-50 {
  margin-right: 50px;
}

.mrt-55 {
  margin-top: 55px;
}

.mrb-55 {
  margin-bottom: 55px;
}

.mrl-55 {
  margin-left: 55px;
}

.mrr-55 {
  margin-right: 55px;
}

.mrt-60 {
  margin-top: 60px;
}

.mrb-60 {
  margin-bottom: 60px;
}

.mrl-60 {
  margin-left: 60px;
}

.mrr-60 {
  margin-right: 60px;
}

.mrt-75 {
  margin-top: 75px;
}

.mrt-65 {
  margin-top: 65px;
}

.mrb-65 {
  margin-bottom: 65px;
}

.mrl-65 {
  margin-left: 65px;
}

.mrr-65 {
  margin-right: 60px;
}

.mrt-70 {
  margin-top: 70px;
}

.mrb-70 {
  margin-bottom: 70px;
}

.mrl-70 {
  margin-left: 70px;
}

.mrr-70 {
  margin-right: 70px;
}

.mrt-75 {
  margin-top: 75px;
}

.mrb-75 {
  margin-bottom: 75px;
}

.mrl-75 {
  margin-left: 75px;
}

.mrr-75 {
  margin-right: 75px;
}

.mrt-80 {
  margin-top: 80px;
}

.mrb-80 {
  margin-bottom: 80px;
}

.mrb-85 {
  margin-bottom: 85px;
}

.mrl-80 {
  margin-left: 80px;
}

.mrr-80 {
  margin-right: 80px;
}

.mrt-90 {
  margin-top: 90px;
}

.mrb-90 {
  margin-bottom: 90px;
}

.mrl-90 {
  margin-left: 90px;
}

.mrr-90 {
  margin-right: 90px;
}

.mrt-100 {
  margin-top: 100px;
}
.mrt-150 {
  margin-top: 150px;
}

.mrb-100 {
  margin-bottom: 100px;
}

.mrl-100 {
  margin-left: 100px;
}

.mrr-100 {
  margin-right: 100px;
}

.mrt-105 {
  margin-top: 105px;
}

.mrb-105 {
  margin-bottom: 105px;
}

.mrl-105 {
  margin-left: 105px;
}

.mrr-105 {
  margin-right: 105px;
}

.mrt-120 {
  margin-top: 120px;
}

.mrb-120 {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .mrb-120 {
    margin-bottom: 100px;
  }
}

.mrl-120 {
  margin-left: 120px;
}

.mrr-120 {
  margin-right: 120px;
}

.mrb-145 {
  margin-bottom: 145px;
}

.mrt-150 {
  margin-top: 150px;
}

.mrt-200 {
  margin-top: 200px;
}

.mrb-150 {
  margin-bottom: 150px;
}

.mrb-155 {
  margin-bottom: 155px;
}

.mrb-170 {
  margin-bottom: 170px;
}

.mrb-175 {
  margin-bottom: 175px;
}

.mrl-150 {
  margin-left: 150px;
}

.mrr-150 {
  margin-right: 150px;
}

.mrb-185 {
  margin-bottom: 185px;
}

.mrb-190 {
  margin-bottom: 190px;
}

.mrb-195 {
  margin-bottom: 195px;
}

.mrb-200 {
  margin-bottom: 200px;
}

@media only screen and (max-width: 991px) {
  .md-mrt-60 {
    margin-top: 60px;
  }

  .md-mrb-60 {
    margin-bottom: 60px;
  }

  .md-mrt-55 {
    margin-top: 55px;
  }

  .md-mrb-55 {
    margin-bottom: 55px;
  }

  .md-mrt-50 {
    margin-top: 50px;
  }

  .md-mrb-50 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .ms-mrt-60 {
    margin-top: 60px;
  }

  .ms-mrb-60 {
    margin-bottom: 60px;
  }

  .ms-mrt-55 {
    margin-top: 55px;
  }

  .ms-mrb-55 {
    margin-bottom: 55px;
  }

  .ms-mrt-50 {
    margin-top: 50px;
  }

  .ms-mrb-50 {
    margin-bottom: 50px;
  }
}
/* Margin Top Negative Value */
.ml-t-5 {
  margin-top: -5px;
}

.ml-t-8 {
  margin-top: -8px;
}

.ml-t-058p {
  margin-top: -0.58%;
}

.ml-t-10 {
  margin-top: -10px;
}

.ml-t-15 {
  margin-top: -15px;
}

.ml-t-20 {
  margin-top: -20px;
}

.ml-t-25 {
  margin-top: -25px;
}

.ml-t-30 {
  margin-top: -30px;
}

.ml-t-35 {
  margin-top: -35px;
}

.ml-t-40 {
  margin-top: -40px;
}

.ml-t-45 {
  margin-top: -45px;
}

.ml-t-50 {
  margin-top: -50px;
}

.ml-t-55 {
  margin-top: -55px;
}

.ml-t-60 {
  margin-top: -60px;
}

.ml-t-75 {
  margin-top: -75px;
}

.ml-t-90 {
  margin-top: -90px;
}

.ml-t-105 {
  margin-top: -105px;
}

.ml-t-120 {
  margin-top: -120px;
}

.ml-t-135 {
  margin-top: -135px;
}

.ml-t-150 {
  margin-top: -150px;
}

.ml-t-165 {
  margin-top: -165px;
}

.ml-t-180 {
  margin-top: -180px;
}

.ml-t-195 {
  margin-top: -195px;
}

.ml-t-210 {
  margin-top: -210px;
}

.ml-t-225 {
  margin-top: -225px;
}

/* Margin bottom Negtive value */
.ml-b-5 {
  margin-bottom: -5px;
}

.ml-b-10 {
  margin-bottom: -10px;
}

.ml-b-15 {
  margin-bottom: -15px;
}

.ml-b-20 {
  margin-bottom: -20px;
}

.ml-b-25 {
  margin-bottom: -25px;
}

.ml-b-30 {
  margin-bottom: -30px;
}

.ml-b-35 {
  margin-bottom: -35px;
}

.ml-b-40 {
  margin-bottom: -40px;
}

.ml-b-45 {
  margin-bottom: -45px;
}

.ml-b-50 {
  margin-bottom: -50px;
}

.ml-b-55 {
  margin-bottom: -55px;
}

.ml-b-60 {
  margin-bottom: -60px;
}

.ml-b-75 {
  margin-bottom: -75px;
}

.ml-b-80 {
  margin-bottom: -80px;
}

.ml-b-90 {
  margin-bottom: -90px;
}

.ml-b-105 {
  margin-bottom: -105px;
}

.ml-b-120 {
  margin-bottom: -120px;
}

.ml-b-135 {
  margin-bottom: -135px;
}

.ml-bp-0933 {
  margin-bottom: -0.933%;
}

/*-------------------------------------------------
    [ ## Padding Element ]
*/
.pd-0 {
  padding: 0!important;
}

.pd-t-0 {
  padding-top: 0!important;
}

.pd-b-0 {
  padding-bottom: 0!important;
}

.pd-l-0 {
  padding-left: 0!important;
}

.pd-r-0 {
  padding-right: 0!important;
}

.pd-t-5 {
  padding-top: 5px;
}

.pd-b-5 {
  padding-bottom: 5px;
}

.pd-l-5 {
  padding-left: 5px;
}

.pd-r-5 {
  padding-right: 5px;
}

.pd-t-10 {
  padding-top: 10px;
}

.pd-b-10 {
  padding-bottom: 10px;
}

.pd-l-10 {
  padding-left: 10px;
}

.pd-r-10 {
  padding-right: 10px;
}

.pd-t-15 {
  padding-top: 15px;
}

.pd-b-15 {
  padding-bottom: 15px;
}

.pd-l-15 {
  padding-left: 15px;
}

.pd-r-15 {
  padding-right: 15px;
}

.pd-t-20 {
  padding-top: 20px;
}

.pd-b-20 {
  padding-bottom: 20px;
}

.pd-l-20 {
  padding-left: 20px;
}

.pd-r-20 {
  padding-right: 20px;
}

.pd-t-25 {
  padding-top: 25px;
}

.pd-b-25 {
  padding-bottom: 25px;
}

.pd-l-25 {
  padding-left: 25px;
}

.pd-r-25 {
  padding-right: 25px;
}

.pd-t-30 {
  padding-top: 30px;
}

.pd-b-30 {
  padding-bottom: 30px;
}

.pd-l-30 {
  padding-left: 30px;
}

.pd-r-30 {
  padding-right: 30px;
}

.pd-t-35 {
  padding-top: 35px;
}

.pd-b-35 {
  padding-bottom: 35px;
}

.pd-l-35 {
  padding-left: 35px;
}

.pd-r-35 {
  padding-right: 35px;
}

.pd-t-40 {
  padding-top: 40px;
}

.pd-b-40 {
  padding-bottom: 40px;
}

.pd-l-40 {
  padding-left: 40px;
}

.pd-r-40 {
  padding-right: 40px;
}

.pd-t-45 {
  padding-top: 45px;
}

.pd-b-45 {
  padding-bottom: 45px;
}

.pd-l-45 {
  padding-left: 45px;
}

.pd-r-45 {
  padding-right: 45px;
}

.pd-t-50 {
  padding-top: 50px;
}

.pd-b-50 {
  padding-bottom: 50px;
}

.pd-l-50 {
  padding-left: 50px;
}

.pd-r-50 {
  padding-right: 50px;
}

.pd-t-60 {
  padding-top: 60px;
}

.pd-b-60 {
  padding-bottom: 60px;
}

.pd-l-60 {
  padding-left: 60px;
}

.pd-r-60 {
  padding-right: 60px;
}

.pd-t-70 {
  padding-top: 70px;
}

.pd-b-70 {
  padding-bottom: 70px;
}

.pd-l-70 {
  padding-left: 70px;
}

.pd-r-70 {
  padding-right: 70px;
}

.pd-t-75 {
  padding-top: 75px;
}

.pd-b-75 {
  padding-bottom: 75px;
}

.pd-l-75 {
  padding-left: 75px;
}

.pd-r-75 {
  padding-right: 75px;
}

.ptb-80 {
  padding: 80px 0;
}

.pd-t-80 {
  padding-top: 80px;
}

@media (min-width:430px) and (max-width:932px) {
  .xs-pd-t-80{padding-top: 80px;}
  .xs-pd-b-80{padding-bottom: 80px;}
}

.pd-b-80 {
  padding-bottom: 80px;
}

.pd-l-80 {
  padding-left: 80px;
}

.pd-r-80 {
  padding-right: 80px;
}

.pd-t-90 {
  padding-top: 90px;
}

.pd-b-90 {
  padding-bottom: 90px;
}

.pd-l-90 {
  padding-left: 90px;
}

.pd-r-90 {
  padding-right: 90px;
}

.pd-t-100 {
  padding-top: 100px;
}

.pd-l-100 {
  padding-left: 100px;
}

.pd-r-100 {
  padding-right: 100px;
}

.pd-t-105 {
  padding-top: 105px;
}

.pd-b-105 {
  padding-bottom: 105px;
}

.pd-l-105 {
  padding-left: 105px;
}

.pd-r-105 {
  padding-right: 105px;
}

.pd-t-130 {
  padding-top: 130px;
}

.pd-b-130 {
  padding-bottom: 130px;
}

.pd-l-130 {
  padding-left: 130px;
}

.pd-r-130 {
  padding-right: 130px;
}

.ptb-130 {
  padding: 130px 0;
}

.pd-t-135 {
  padding-top: 135px;
}

.pd-b-135 {
  padding-bottom: 135px;
}

.pd-l-135 {
  padding-left: 135px;
}

.pd-r-135 {
  padding-right: 135px;
}

.pd-t-140 {
  padding-top: 140px;
}

.pd-b-140 {
  padding-bottom: 140px;
}

.pd-l-140 {
  padding-left: 140px;
}

.pd-r-140 {
  padding-right: 140px;
}

.pd-t-150 {
  padding-top: 150px;
}

.pd-b-150 {
  padding-bottom: 150px;
}

.pd-l-150 {
  padding-left: 150px;
}

.pd-r-150 {
  padding-right: 150px;
}

.pd-t-165 {
  padding-top: 165px;
}

.pd-b-165 {
  padding-bottom: 165px;
}

.pd-l-165 {
  padding-left: 165px;
}

.pd-r-165 {
  padding-right: 165px;
}

.pd-t-180 {
  padding-top: 180px;
}

.pd-b-170 {
  padding-bottom: 170px;
}

.pd-b-180 {
  padding-bottom: 180px;
}

.pd-l-180 {
  padding-left: 180px;
}

.pd-r-180 {
  padding-right: 180px;
}

.pd-t-195 {
  padding-top: 195px;
}

.pd-b-195 {
  padding-bottom: 195px;
}

.pd-l-195 {
  padding-left: 195px;
}

.pd-r-195 {
  padding-right: 195px;
}

.pd-t-200 {
  padding-top: 200px;
}

.pd-b-200 {
  padding-bottom: 200px!important;
}

.pd-l-200 {
  padding-left: 200px;
}

.pd-r-200 {
  padding-right: 200px;
}

.pd-t-205 {
  padding-top: 205px;
}

.pd-b-205 {
  padding-bottom: 205px;
}

.pd-l-205 {
  padding-left: 205px;
}

.pd-r-205 {
  padding-right: 205px;
}

.pd-t-210 {
  padding-top: 210px;
}

.pd-t-220 {
  padding-top: 220px;
}

.pd-b-220 {
  padding-bottom: 220px;
}

.pd-l-220 {
  padding-left: 220px;
}

.pd-r-220 {
  padding-right: 220px;
}

.pd-t-225 {
  padding-top: 225px;
}

.pd-b-225 {
  padding-bottom: 225px;
}

.pd-l-225 {
  padding-left: 225px;
}

.pd-r-225 {
  padding-right: 225px;
}

.pd-t-235 {
  padding-top: 235px;
}

.pd-b-235 {
  padding-bottom: 235px;
}

.pd-l-235 {
  padding-left: 235px;
}

.pd-r-235 {
  padding-right: 220px;
}

.pd-t-240 {
  padding-top: 240px;
}

.pd-t-255 {
  padding-top: 255px;
}

.pd-10{
  padding: 10px;
}
.pd-20{
  padding: 20px;
}
.pd-30{
  padding: 30px;
}
.pd-40{
  padding: 40px;
}
.pd-50{
  padding: 50px;
}
.pd-60{
  padding: 60px;
}
.pd-70{
  padding: 70px;
}
.pd-80{
  padding: 80px;
}
.pd-90{
  padding: 90px;
}
.pd-100{
  padding: 100px;
}
.help-block{display: block;}
.help-block.with-errors{
  padding-top: 0px;
  padding-bottom: 15px;
  color: #ff7575;
  text-align: left;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}


/*** Button ***/
.btn {
      font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
      font-family: "Montserrat", sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 10px 0;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}
.navbar-brand img{
  width: 150px;
    padding: 10px 0px;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
        margin-left: 0;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        background-color: #fff;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 105, 19, 0);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    .txt p{
      font-size: 10px !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
    font-size: 24px;
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.recent-blogs img{width: 100px;height: 100px;object-fit: cover;}
.recent-blogs h5{font-weight: 400;}

.page-item.active .page-link{background-color: #173865;border-color: #173865;}
.page-link{color: #173865;}

.page-link:hover, .page-link:focus{color: #173865;}

.btn-light {
    color: #000;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}

.comments-section img{width: 45px;height: 45px;}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgb(31 82 162), rgb(235 27 53 / 63%)), url(../images/bg5.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*** Contact Form ***/

input:not(.form-check-input),
textarea {
  background-color: #f1f1f1;
  width: 100%;
  border: 1px solid rgba(18, 21, 24, 0.1);
  margin-bottom: 5px;
  padding: 15px 20px;
  box-shadow: none;
  font: 400 15px "Inter", sans-serif;
  line-height: 1.4;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

input:not(.form-check-input):focus, input:not(.form-check-input):active,
textarea:focus,
textarea:active {
  outline: 0;
  box-shadow: none;
}

textarea {
  height: 140px;
}

input:not(.form-check-input), textarea, .form-control {
  color: #7C7C7C;
}

input:not(.form-check-input)::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: #AAAAAA;
}

input:not(.form-check-input)::-moz-placeholder, textarea::-moz-placeholder, .form-control::-moz-placeholder {
  color: #AAAAAA;
}

input:not(.form-check-input):-ms-placeholder, textarea:-ms-placeholder, .form-control:-ms-placeholder {
  color: #AAAAAA;
}

input:not(.form-check-input)::-ms-placeholder, textarea::-ms-placeholder, .form-control::-ms-placeholder {
  color: #AAAAAA;
}

input:not(.form-check-input)::placeholder, textarea::placeholder, .form-control::placeholder {
  color: #AAAAAA;
}

input:not(.form-check-input):focus, textarea:focus, .form-control:focus {
  border-color: rgba(18, 21, 24, 0.2);
}

.form-control {
  background-color: #f1f1f1;
  height: auto;
  border: 1px solid rgba(18, 21, 24, 0.1);
  padding: 15px 20px;
  font: 400 15px "Inter", sans-serif;
  line-height: 1.4;
}

.form-control:focus {
  background: transparent;
  box-shadow: none;
}

.form-control:read-only {
  background: #e4e8ec;
  border: 0;
}

.form-control.form-control-sm {
  padding: 10px 15px;
  font-size: 0.875rem;
}

.form-control.form-control-lg {
  font-size: 1.25rem;
}

.form-control-plaintext {
  border: 0;
}

.form-check-input:disabled ~ .form-check-label {
  color: #AAAAAA;
}

.required:after {
  content: '*';
  padding-left: 3px;
}

select {
  margin-bottom: 1rem;
}

.custom-select {
  background-color: transparent;
  width: auto;
  min-width: 160px;
  height: auto;
  border-radius: 0;
  padding: 15px 20px;
  border-color: rgba(18, 21, 24, 0.1);
  color: #7C7C7C;
  font: 400 15px "Inter", sans-serif;
  line-height: 1.4;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.custom-select:focus {
  border-color: rgba(18, 21, 24, 0.2);
  outline: 0;
  box-shadow: none;
}

.custom-select.custom-select-sm {
  height: auto;
  padding: 10px 15px;
  font-size: 0.875rem;
}

.custom-select.custom-select-lg {
  height: auto;
  padding: 15px 20px;
  font-size: 1.25rem;
}

.custom-select.select-fullwidth {
  width: 100%;
}
.btn-design{
  background: #173865;
  padding: 10px 30px !important;
  color: #fff !important;
}
.fnt{
  font-size: 45px !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
}
.txt{
  text-align: left !important;
}
.sticky-top .btn-design{
margin-top: 12px !important;
}
  /* Background and Padding for the Section */
    #how-it-works {
        background: #173865;
        padding-top: 60px;
        padding-bottom: 60px;
        color: white;
    }

    /* Section Title Style */
    /* .section-title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 40px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    } */

    /* Step Card Styling */
    .step-card {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }

    /* Hover Effect on Cards */
    .step-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Icon Style */
    .step-card .icon {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 70%);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: inline;
        justify-content: center;
        align-items: center;
      
        transition: all 0.3s ease;
    }

    .step-card .icon  {
        font-size: 2.5rem;
        color: #173865;
          margin-bottom: 20px !important;
    }

    .step-card:hover .icon {
        transform: rotate(360deg);
        background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0) 60%);
    }

    /* Step Title Styling */
    .step-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #042b67;
        text-transform: capitalize;
        transition: all 0.3s ease;
        margin-top: 20px !important;
    }


    .step-card:hover .step-title {
        color: #173865;
    }

    /* Step Description Styling */
    .step-description {
        font-size: 1rem;
        color: #555;
        transition: color 0.3s ease;
    }

    .step-card:hover .step-description {
        color: #333;
    }

    /* Responsive Design */
    @media (max-width: 767px) {
        .section-title {
            font-size: 2.2rem;
        }
        .navbar-brand img{
          width: 200px;
        }

        .step-title {
            font-size: 1.5rem;
        }

        .step-description {
            font-size: 0.9rem;
        }

        .step-card {
            padding: 30px;
        }

        .step-card .icon {
            width: 80px;
            height: 80px;
        }
    }
    .footer-tops{
      margin-top: 60px;
    }
    .footerulnew li {
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #0f5f05;
    border-radius: 73px;
    margin: 1px 10px 5px 0px;
    text-decoration: none;
    list-style: none;
    margin: 5px;
    justify-content: center !important;
    
}

.footerulnew li a {
    color: #525355;
    font-weight: 500;
    font-size: 14px;
}

.footerulnew {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
}


.ftr li{
    line-height: 30px;
    font-size: 14px;
}


    .faq-container {
     
     
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .accordion-item {
      border: none;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: transform 0.2s ease;
    }

    .accordion-item:hover {
      transform: translateY(-2px);
    }

    .accordion-button {
      background: #f1f3f5;
      font-weight: 600;
      color: #333;
      padding: 1rem 1.5rem;
      transition: background 0.3s ease;
      position: relative;
    }

    .accordion-button::after {
      font-family: "Bootstrap Icons";
      
      transition: transform 0.3s ease;
      font-size: 1.2rem;
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(-180deg);
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-body {
      background: #fff;
      padding: 1rem 1.5rem;
      font-size: 0.95rem;
      color: #555;
      border-top: 1px solid #dee2e6;
    }

    @media (max-width: 576px) {
      .faq-container {
        padding: 20px;
      }
    }
    .accordion-button{
      font-size: 20px !important;
      color: #173865 !important;
    }
    .charges-cont{
  display: flex;
  flex-wrap: wrap;
  background-color: #f3f1f1;
  /* padding: 10px 50px; */
    padding-bottom: 40px;
}

.charge-inner-cont{
    /* border:1px solid #000; */
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-top: 20px;
    padding-top: 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.laon-dt-1{
  padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
   
}
.laon-key{
  color: #000;
    padding: 10px;
    border-radius: 0px 10px 10px 10px;
    text-align: center;
    border: 1px solid #000;
    font-weight: 500;
}
.laon-value{
  /* background-color: #3f423f; */
    color: #000;
    padding: 10px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 10px 10px 10px;

}

.culculated-value{
  font-size: 18px;
  text-align: center;
    background-color: #4a605b;
  
    color: #fff;
    font-weight: 100;
    width: 100%;
}

.last-para-34{
    /* padding: 10px; */
    background-color: #fff;
    height: 100%;
    /* border: 1px solid #c9c9c9; */
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.05);
}
.hgt {
    margin-top: 15px;
}
.policy-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 60px;
  margin-top: 50px;
}



.policy-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: #198754;
  border-radius: 10px;
}

.policy-section h3 {
  color: #173865;
  margin-top: 40px;
  font-weight: 600;
}
.policy-section1 {
  color: #173865;
  margin-top: 40px;
  font-weight: 600;
}

/* Paragraph style */
.policy-section p {
  line-height: 1.8;
  color: #555;
  text-align: left;
}

/* Decorative Tag */
.section-tag {
  display: inline-block;
  background: #e7f8ee;
  color: #198754;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #198754, transparent);
  margin: 40px 0;
}

/* Animation enhancements */
[data-aos] {
  transition: all 0.8s ease-in-out;
}
/* ///////////////////////////////////////////////////// */

.border {
    background: #4ccbf7;
    height: 2px;
    width: 20%;
    margin: 0 auto;
}

.under-line {
    font-size: 0.9em;
    font-weight: 700;
}

.under-line:after {
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    width: 10%;
    border-radius: 10px;
    margin: 5px 0;
}

ul.list-marked {
    margin: 0 5px;
    padding: 0 0;
}

.list-marked a,
footer a {
    font-weight: 300;
    font-size: 12px;
    line-height: initial;
    color: #e8dada;
    text-decoration: none;
}

.soft-footer {
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 10000;
    transition: bottom 0.3s;
}

.personal-loan-bg {
    background-image: url(../images/banners/personal-loans-in-india.webp);
}

.fs-internal-breadcrumb {
    padding: 10px 0px;
    position: absolute;
    top: -120px;
    font-size: $fs-tiny + 2;
}

.primary-text {
    font-size: 42px;
    color: $danger;
}

.secondary-text {
    font-size: 2.15rem;
    color: $primary;
}

.tabs-list {
    line-height: 1.8 !important;
}

.apply-nav-style {
    position: sticky;
    top: 14vh;
}

.page-content.section-20 {
    padding-bottom: 2rem;
}
.box{
  margin: 10px 10px;
  border-radius: 10px;
}
.fnt-head1{
  color: #042b67;
}
.fnt-head5{
   color: #042b67;
   font-size: 13px;
}
  .steps-section {
      padding: 80px 0;
      text-align: center;
      background: #f1f1f1;
    }
    .steps-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #333;
    }
    .steps-section p.sub-text {
      color: #6c757d;
      margin-bottom: 50px;
    }
    .step-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px 20px;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .step-icon {
      font-size: 40px;
      color: #042b67; /* Bootstrap green */
      background-color: #e8f5e9;
      width: 80px;
      height: 80px;
      line-height: 80px;
      border-radius: 50%;
      margin: 0 auto 20px;
    }
    .step-title {
      font-weight: 600;
      margin-bottom: 10px;
      color: #212529;
    }
    .step-desc {
      color: #6c757d;
      font-size: 15px;
    }
.text-style{
  color: #042b67;
}
    .pm-loan-steps {
      padding: 80px 15px;
      text-align: center;
    }
    .pm-loan-steps h2 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #1f52a2;
    }
    .pm-loan-steps p.pm-sub-text {
      color: #6c757d;
      margin-bottom: 50px;
    }
    /* Step box */
    .pm-step-card {
      border-radius: 20px;
      padding: 30px 20px;
      margin: 10px;
      color: #fff;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .pm-step-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      z-index: 0;
    }
    .pm-step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    }
    .pm-step-icon {
      font-size: 35px;
      width: 70px;
      height: 70px;
      line-height: 70px;
      border-radius: 50%;
      margin: 0 auto 20px;
      z-index: 1;
      position: relative;
      background-color: #fff;
      color: inherit;
    }
    .pm-step-title {
      font-weight: 600;
      margin-bottom: 12px;
      font-size: 18px;
      z-index: 1;
      position: relative;
      font-family: "Montserrat", sans-serif !important;
    }
    .pm-step-desc {
      font-size: 14px;
      z-index: 1;
      position: relative;
    }
    .pm-step-blue {
      background-color: #1f52a2;
    }
    .pm-step-red {
      background-color: #173865;
    }
    .pm-step-blue .pm-step-icon {
      color: #1f52a2;
    }
    .pm-step-red .pm-step-icon {
      color: #173865;
    }
.paisa-m-section {
  padding: 80px 15px;
  /* text-align: center; */
  background: #f1f1f1;
}
.paisa-m-section h2 {
  font-weight: 700;
  color: #1f52a2;
  margin-bottom: 20px;
}
.paisa-m-subtext {
  color: #1f52a2;
  margin-bottom: 60px;
  font-size: 16px;
}
    .paisa-m-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px 20px 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.paisa-m-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Step icon inside card */
.paisa-m-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1f52a2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: -50px auto 20px auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.paisa-m-card.red .paisa-m-icon {
  background: #173865;
}
.paisa-m-icon:hover {
  transform: scale(1.2);
}

/* Step content */
.paisa-m-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f52a2;
}
.paisa-m-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .paisa-m-card {
    padding: 40px 15px 20px 15px;
  }
}
.bg-new{
  background-color: #0f3a7e;
}
.fnt-small{
  font-size: 12px;
  text-align: left;
}
.loan-calculator {
  background: transparent;
  padding: 20px;
  border-radius: 12px;
  max-width: 450px;
  margin: auto;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
}

/* Labels and inputs */
.loan-calculator label {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.loan-calculator input {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
}
.loan-calculator input::placeholder {
  color: #fff;
}

/* Button */
.loan-calculator .btn {
  font-size: 12px;
  border-radius: 6px;
}

/* Result box */
.loan-result {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

/* Small text */
.loan-calculator small {
  display: block;
  margin-top: 5px;
  color: #fff;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h4 {
    font-size: 18px;
    color: #1f52a2;
    margin-bottom: 10px;
    font-weight: 600;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
}

/* Card Styles */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    padding-top: 50px; /* space for icon */
    margin-bottom: 40px;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Icon Circle Below Image */
.service-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: absolute;
    top: 140px; /* slightly overlapping image bottom */
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 50px;
}
.service-card:hover .icon-circle {
    transform: translateX(-50%) translateY(-5px);
}

/* Alternating Colors */
.icon-blue { background: #1f52a2; }
.icon-red { background: #173865; }

/* Card Content */
.service-card .card-content {
    margin-top: 50px; /* space below icon */
    padding: 0 20px 20px;
}
.service-card .card-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f52a2;
}
.service-card .card-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Button */
.service-card .btn-read {
    font-weight: 600;
    color: #fff;
    background-color: #1f52a2;
    border-radius: 50px;
    padding: 8px 20px;
    text-decoration: none;
    transition: 0.3s;
}
.service-card .btn-read:hover {
    background-color: #173865;
    color: #fff;
}
.fnt-head3{
  font-size: 18px !important;
}
  :root{
      --paisamart-blue: #1f52a2;
      --paisamart-red:  #173865;
      --card-bg: #ffffff;
      --muted: #6b7280;
    }

    .pm-section {
      padding: 60px 0;
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .pm-card {
      border: 0;
      border-radius: 14px;
      box-shadow: 0 8px 28px rgba(31,82,162,0.08);
      padding: 28px;
      transition: transform .22s ease, box-shadow .22s ease;
      background: var(--card-bg);
      min-height: 260px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pm-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(31,82,162,0.12);
    }

    .pm-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      box-shadow: 0 6px 18px rgba(31,82,162,0.12);
    }

    .pm-title {
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--paisamart-blue);
      margin-bottom: 0;
    }

    .pm-text {
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 0;
      flex-grow: 1;
    }

    /* Icon color variations */
    .pm-icon.blue { background: linear-gradient(180deg, var(--paisamart-blue), #164285); }
    .pm-icon.red  { background: linear-gradient(180deg, var(--paisamart-red), #c3162b); }

    /* Small screens: tighten spacing */
    @media (max-width: 575.98px){
      .pm-section { padding: 36px 0; }
      .pm-card { padding: 20px; }
      .pm-icon { width: 56px; height: 56px; font-size: 24px; }
    }
     :root {
      --pmart-blue: #1f52a2;
      --pmart-red: #173865;
      --pmart-text: #555;
    }

    .pmart-section {
      background: #fff;
      padding-bottom: 60px;
    }

    .pmart-card {
      position: relative;
      background: #fff;
      border-radius: 14px;
      padding: 50px 20px 25px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-align: center;
    }

    .pmart-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 30px rgba(31, 82, 162, 0.15);
    }

    .pmart-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #fff;
      position: absolute;
      top: -35px; /* half above, half inside */
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 4px 15px rgba(31, 82, 162, 0.2);
      background: linear-gradient(180deg, var(--pmart-blue), #163b78);
    }

    .pmart-card:hover .pmart-icon {
      background: linear-gradient(180deg, var(--pmart-red), #b0162c);
    }

    .pmart-title {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--pmart-blue);
      margin-top: 40px;
      margin-bottom: 12px;
    }

    .pmart-text {
      color: var(--pmart-text);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    @media (max-width: 767.98px) {
      .pmart-card {
        margin-top: 40px;
      }
    }
    .mt-25{
      margin-top: 75px !important;
    }
     .pmart-faq-section {
      padding-bottom: 70px;
    }

    .pmart-faq-section h6 {
      color: var(--pmart-red);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .pmart-faq-section h2 {
      color: var(--pmart-blue);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .pmart-faq-grid .pmart-faq-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px 20px 25px 60px;
      margin-bottom: 20px;
      position: relative;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pmart-faq-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(31, 82, 162, 0.15);
    }

    .pmart-faq-card i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--pmart-blue);
      font-size: 28px;
    }

    .pmart-faq-card h5 {
      color: var(--pmart-blue);
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1.05rem;
    }

    .pmart-faq-card p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 767.98px) {
      .pmart-faq-card {
        padding-left: 50px;
      }

      .pmart-faq-card i {
        left: 15px;
        font-size: 24px;
      }
    }
    .txt-heads{
      font-size: 17px !important;
    }
    .pb-70{
      margin-bottom: 70 !important;
    }
        /* ========================
       PAISAMART POLICY STYLES
    ========================= */
    :root {
      --pmartpolicy-blue: #1f52a2;
      --pmartpolicy-red: #173865;
      --pmartpolicy-bg: #f9fafc;
      --pmartpolicy-text: #333;
    }

    .pmartpolicy-section {
      background: #fff;
      padding-bottom: 60px;
    }

    .pmartpolicy-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .pmartpolicy-heading h2 {
      color: var(--pmartpolicy-blue);
      font-weight: 700;
    }

    .pmartpolicy-heading p {
      color: #666;
      font-size: 1rem;
    }

    .pmartpolicy-divider {
      width: 100px;
      height: 3px;
      background: var(--pmartpolicy-red);
      margin: 15px auto;
      border-radius: 10px;
    }

    .pmartpolicy-card {
      background: #fff;
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .pmartpolicy-card-body {
      padding: 40px 35px;
    }

    .pmartpolicy-block {
      margin-bottom: 40px;
    }

    .pmartpolicy-block h4 {
      color: var(--pmartpolicy-blue);
      font-weight: 600;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .pmartpolicy-block h4 i {
      color: var(--pmartpolicy-red);
      margin-right: 10px;
      font-size: 1.3rem;
    }

    .pmartpolicy-block p,
    .pmartpolicy-block li {
      color: var(--pmartpolicy-text);
      line-height: 1.7;
    }

    .pmartpolicy-list {
      list-style: none;
      padding-left: 0;
      margin-top: 15px;
    }

    .pmartpolicy-list li::before {
      content: "✔";
      color: var(--pmartpolicy-red);
      margin-right: 8px;
    }

    .pmartpolicy-list-group .list-group-item {
      border: none;
      border-bottom: 1px solid #eee;
      padding: 12px 0;
    }

    .pmartpolicy-list-group .list-group-item:last-child {
      border-bottom: none;
    }

    .pmartpolicy-list-group strong {
      color: var(--pmartpolicy-blue);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .pmartpolicy-card-body {
        padding: 25px 20px;
      }
      .pmartpolicy-block h4 {
        font-size: 1.1rem;
      }
    }
   /* Section Base */
.pmartcondition-section {
  background: #fff  ;
}

/* Header */
.pmartcondition-badge {
  background-color: #173865 !important;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.pmartcondition-title {
  color: #1f52a2;
  font-weight: 700;
}

.pmartcondition-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

/* Card */
.pmartcondition-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  border: 1px solid #e3e8ef;
  box-shadow: 0px 6px 18px rgba(31, 82, 162, 0.08);
}

/* Headings */
.pmartcondition-heading {
  font-size: 20px;
  color: #1f52a2;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.pmartcondition-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #173865;
  border-radius: 2px;
}

/* Blocks */
.pmartcondition-block {
  margin-bottom: 35px;
}

.pmartcondition-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* List */
.pmartcondition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pmartcondition-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.pmartcondition-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #173865;
  font-weight: 700;
}

/* Links */
.pmartcondition-link {
  color: #1f52a2;
  text-decoration: none;
  font-weight: 600;
}

.pmartcondition-link:hover {
  color: #173865;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pmartcondition-card {
    padding: 25px;
  }

  .pmartcondition-heading {
    font-size: 18px;
  }
}
.pdd-btm{
  padding-bottom: 70px !important;
}
.ethical-lending-section {
  
}
.ethical-lending-section .card {
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ethical-lending-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.note-contact-section {
    background: #f8f9fa;
}

.note-contact-section .card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.note-contact-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.note-contact-section h3 {
    color: #1f52a2; /* Paisamart blue */
}

.note-contact-section strong.text-danger {
    color: #173865; /* Paisamart red */
}

.form-control-lg {
    border-radius: 10px;
}

/* .btn-primary {
    background-color: #1f52a2;
    border: none;
    border-radius: 10px;
}

.btn-primary:hover {
    background-color: #154080;
} */
:root {
    --paisamart-blue: #1f52a2;
    --paisamart-red: #173865;
    --text-gray: #1f52a2;
}

.refund-section {
    background: #f8f9fa;
}

.refund-section .card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.refund-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.text-paisamart {
    color: var(--paisamart-blue);
}

.text-danger-paisamart {
    color: var(--paisamart-red);
}

.text-gray {
    color: var(--text-gray);
    margin: 25px 0px !important;
}
    :root {
      --pmart-blue: #1f52a2;
      --pmart-red: #173865;
      /* --pmart-bg: #f8f9fb; */
      --pmart-card: #ffffff;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: var(--pmart-bg);
      color: #333;
    }

    .pmart-section {
      /* padding: 60px 0; */
    }

    .pmart-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .pmart-heading h3 {
      color: var(--pmart-blue);
      font-weight: 700;
    }

    .pmart-subtitle {
      color: var(--pmart-red);
      font-weight: 500;
    }

    /* ===== Form Styling ===== */
    .pmart-form-card {
      background: var(--pmart-card);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-radius: 16px;
      padding: 40px;
      transition: all 0.3s ease;
    }

    .pmart-form-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .pmart-form-card h4 {
      color: var(--pmart-blue);
      margin-bottom: 10px;
    }

    .form-control, select {
      border-radius: 10px !important;
      border: 1px solid #ddd;
      padding: 12px;
    }

    .form-control:focus {
      border-color: var(--pmart-blue);
      box-shadow: 0 0 5px rgba(31, 82, 162, 0.3);
    }

    .pmart-btn {
      background: linear-gradient(90deg, var(--pmart-blue), var(--pmart-red));
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .pmart-btn:hover {
      background: linear-gradient(90deg, var(--pmart-red), var(--pmart-blue));
      transform: scale(1.03);
    }

    /* ===== Info Cards ===== */
    .pmart-info-card {
      background: var(--pmart-card);
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      margin-bottom: 25px;
    }

    .pmart-info-card h3 {
      color: var(--pmart-blue);
      font-size: 1.4rem;
    }

    .pmart-info-card ul {
      padding-left: 20px;
      line-height: 1.8;
    }

    .pmart-info-card li i {
      color: var(--pmart-red);
      margin-right: 8px;
    }

    /* ===== Table ===== */
    .tbl th, .tbl td {
      text-align: center;
      vertical-align: middle;
    }

    .tbl {
      border-radius: 12px;
      overflow: hidden;
    }

    /* ===== Checkbox Section ===== */
    .pmart-consent {
      background: #fff8f8;
      border-radius: 12px;
      padding: 20px;
      margin-top: 25px;
      font-size: 0.95rem;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .pmart-form-card {
        padding: 25px;
      }
    }
    .pb-70{
      padding-bottom: 60px !important;
    }
    .mrgtop{
        margin-top:200px;
    }