
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*::after,
*::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font: inherit;
    scrollbar-width: 10px;
    scrollbar-color: #5c4229 #fff;
}

/* For Scrollbar */

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #5c4229;
    border: 2px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

*:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

html {
    font-size: 62.5%;
}

body {
    font-weight: 400;
    line-height: normal;
    font-size: 18px;
  background: linear-gradient(to bottom,
    rgba(253, 209, 160, 0.2),  /* #FDD1A0 at 20% opacity */
    rgba(9, 169, 157, 0.2)     /* #09A99D at 20% opacity */
  );
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}


ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}


button,
input[type='submit'],
input[type='reset'],
a {
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none;
    outline: none;
}


a:hover,
a:focus {
    text-decoration: none;
}


::-moz-selection {
    color: #fff;
    background: #0DA99E;
}


::selection {
    color: #fff;
    background: #0DA99E;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    font-weight: normal;
    padding: 0;
    margin: 0;
}



p {
    margin: 0;
    padding: 0;

}

/***************** FOR BOOTSTRAP ******************/

.container {
    max-width: 1560px;
}


.navbar {
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: transparent;
}

.navbar,
.nav-link {
    padding: 0;
    margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;

}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: transparent;
}

/* cmn_margin & Padding */

.mt-40 {
    margin-top: 4rem;
}
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-30 {
    margin-top: 3rem;
}

.mt-50 {
    margin-top: 5rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.cmn_pdding {
    padding: 9rem 0;
}


/*----Common Header and Button----*/


.cmn_hdr h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    color: #0F625C;
    padding-bottom: 15px;
    text-transform: capitalize;
}

.cmn_hdr.wht h2 {
    color: #fff;
}
.cmn_hdr h3{
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: #3F4B4B;
    text-transform: capitalize;
}
.cmn_hdr h4{
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: #3F4B4B;
    text-transform: capitalize;
}

.cmn_hdr.wht h4 {
    color: #fff;
}


.cmn_hdr p {
    font-size: 16px;
    color: #6E7B7A;
    line-height: 1.5;
    padding-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.cmn_hdr.wht p {
    color: #fff;
}

.cmn_btn {
    font-size: 17px;
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    background: #0DA99E;
    border: 2px solid #0DA99E;
    position: relative;
    text-transform: capitalize;
    transition: 0.5s all;
    z-index: 1;
    border-radius: 50px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.cmn_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: #0DA99E;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.7s;
}

.cmn_btn:hover {
    color: #fff;
    border: 2px solid #0DA99E;
    background-color: #fff;
}

.cmn_btn:hover::after {
    width: 100%;
}
.cmn_btn.orng{
background: #FDD1A0;
border-color: #FDD1A0;
color: #272D2C;
}
.cmn_btn.orng:hover{
      color: #FDD1A0;
    border: 2px solid #FDD1A0;
    background-color: #fff;
}
.cmn_btn.orng::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: #FDD1A0;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.7s;
}
.cmn_btn.wht {
    background: #fff;
    border-color: transparent;
    color: #3F4B4B;
}
.cmn_btn.wht:hover{
      color: #fff;
    border: 2px solid #0DA99E;
    background-color: #0DA99E;
}
.cmn_btn.no_bg {
    background-color: transparent;
    border: none;
    outline: none;
    color: #6E7B7A;
    width: max-content;
    padding-inline: 0;
}
.cmn_btn.no_bg:hover{
    color: #0DA99E;
    background-color: transparent;
    border: none;
}
.cmn_btn.no_bg::after {
    background-color: transparent;
}

/*----Common Header and Button End----*/

/*! button back to top !*/

#backToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #0DA99E;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 50px;
    position: fixed;
    right: 2.5rem;
    bottom: 105%;
    cursor: pointer;
    z-index: 5555;
    transition: .5s all ease;
    border: 1px solid #0DA99E;
    font-size: 1.8rem;
    transition: 0.8s all;
}

#backToTop.show {
    bottom: 2.5rem;
}

/*! button back to top End!*/

/* Animation Section */

/* Swing */

@-webkit-keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

/* Rotate */

.rotate {
    -webkit-animation: rotation 12s infinite linear;
    animation: rotation 12s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

/* Floating */

.floating {
    -webkit-animation: floating ease-in-out 3s infinite;
    animation: floating ease-in-out 3s infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

/* Animation Section End */
header {
    position: relative;
    background: #fff;
    padding: 1.5rem 0;
}

header .cus_nav_innr {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10rem;
}

header .navbar-nav {
    gap: 2rem;
}
/* moumi */
  /* Responsive NavBar */

  header .navbar {
    position: static;
  }

header .navbar-toggler {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9rem;
    border: none;
}
  header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    border: none;
  }

  .MenuBar {
    font-size: 20px;
    display: inline-block;
    fill: #FDD1A0;
  }

  header .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
  }

  header .navMenus {
    padding: 20px 0;
  }

  /* Responsive NavBar End*/

  /* moumi 7.8.25 */


.regi_logo_dv {
    position: relative;
    width: 71.8rem;
    margin-inline: auto;
    left: 0;
    right: 0;
}
.regi_logo {
    position: absolute;
    top: 45%;
    width: 20rem;
    height: 20rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}
.line_dv span {
    width: 85px;
    height: 1px;
    background: #B2C1C0;
    display: inline-block;
}
.line_dv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}
.regi_body {
    padding-top: 20px;
}
.cntr_btn {
    width: auto;
    display: flex;
    margin: 30px auto 0;
    position: relative;
}
.cntr_btn .cmn_btn{
    width: 200px;
    margin-inline: auto;
}
.frm_row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 15px;
}
.regi_body {
    width: 70%;
    margin-inline: auto;
}
.frm_col {
    align-items: self-start;
    display: flex;
    flex-direction: column;
    width: 48%;
    justify-content: space-between;
    
}
.frm_col input {
    border: none;
    outline: none;
    width: 100%;
    padding: 11px 20px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: 400;
    color: #3F4B4B;
}
.frm_col label {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding-bottom: 7px;
    font-weight: 400;
    color: #6E7B7A;
}
.frm_row.clm .rdo,.frm_row.clm .chk {
    display: flex;
    align-items: baseline;
    gap: 20px;
}
.rdo_dv, .chk_dv {
    display: flex;
    gap: 5px;
    align-items: baseline;
    width: max-content;
}

.frm_col input[type='checkbox'], .frm_col input[type='radio'] {
    width: 16px;
    height: 16px;
    accent-color: #128b82;
}
.clm .frm_col label {
    font-size: 18px;
    font-weight: 500;
    color: #6E7B7A;
}
.chk_dv input[type="checkbox"]:checked + label,
.rdo_dv input[type="radio"]:checked + label {
  color: #0F625C;
}
.regi_form.cmn_pdding{
    padding-top: 3rem;
}
.alter_addres {
    padding-top: 5rem;
}
.alter_addres  .line_dv{
    padding-bottom: 3rem;
}

/* date picker */
.flatpickr-calendar {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  border: none;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #0DA99E;
  font-size: 20px;
}

.flatpickr-months .flatpickr-month {
  color: #3F4B4B;
  font-size: 18px;
  font-weight: 600;
}

.flatpickr-weekdays {
  font-weight: 500;
  color: #6E7B7A;
}
.flatpickr-day {
  border-radius: 50%;
  transition: all 0.2s ease;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #0DA99E;
  color: white;
  border: none;
}

.flatpickr-day:hover {
  background: #d9f3f2;
}


.flatpickr-day.today {
  border: 1px solid #0DA99E;
}
.flatpickr-current-month {
    font-size: 100%;
}
#dobPicker {
  background-image: url(../images/mdi_date-range.png); 
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  padding-right: 40px; 
  cursor: pointer;
}
.clm .frm_col .rdo label,.clm .frm_col .chk label {
    font-size: 18px;
    font-weight: 500;
    color: #3F4B4B;
}
/* select box */
.search-box {
    position: relative;
    width: 100%;
}
    .search-box input {
      width: 100%;
    }

    .clear-icon {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      cursor: pointer;
      color: #999;
      display: none;
    }

  ul.suggestions {
    list-style: none;
    border-radius: 20px;
    margin: 1px 0 0;
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 999;
    display: none;
    border: 1px solid transparent;
}

 ul.suggestions.visible {
    display: block;
    border: none;
}

ul.suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e9e9e9;
    text-align: left;
    color: #3F4B4B;
    font-size: 15px;
    font-weight: 500;
}
    ul.suggestions li.hovered {
      color: #0DA99E;
    }

    ul.suggestions-data {
      display: none;
    }
.dropdown-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}
.otr_inp {
    width: 100%;
}
.frm_col input::placeholder {
    color: #C0C2C2;
    font-style: italic;
}
ul.suggestions li:last-child {
padding-bottom: 0;
border: none;

}
.frm_col.full{
    width: 100%;
}
.frm_row.three .frm_col{
    width: 32%;
}
.tab_btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.cmn_btn.active{
    background:#0DA99E;
    color: #fff;
}
.tab_btn {
    width: 24%;
}
.tab_btn .cmn_btn{
    width: 100%;
}
.cntr_btn .cmn_btn.cmn_btn.no_bg {
    width: max-content;
    position: absolute;
    right: 0;
}
.line_dv h3 {
    font-weight: 500;
    /* font-size: 20px; */
    color: #272D2C;
     font-family: "Poppins", sans-serif;
}
/* 11.8.25 moumi */
.hdr_txt h3{
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #272D2C;
}

.MenuBar svg{
    width: 50px;
    height: 50px;
}
.want_invst {
    justify-content: center;
    padding: 5rem 3rem;
    background: rgba(255, 255, 255, 0.5);
    /* background: url(../images/amnt_bg.png) no-repeat; */
     /* background: linear-gradient(to bottom,
    rgba(253, 209, 160, 0.2),  
    rgba(9, 169, 157, 0.2)    
  ); */
    display: flex;
    border-radius: 20px;
    flex-direction: column;
}
.bar_image {
    width: 19.9rem;
    height: 16rem;
    margin: 10px auto 15px;
}
.bar_image img{
    width: 100%;
    height: 100%;
}
.inpu_amnt {
    padding-block: 20px;
    width: 60%;
    margin: auto;
}
.inpu_amnt input {
    border: none;
    outline: none;
    background: #fff;
    border-radius: 40px;
    width: 100%;
    padding: 12px 15px;
    color: #0F625C;
      font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}
.inpt_btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 10px;
}
.inpt_btn button {
    padding: 7px 27px;
    background: transparent;
    border-radius: 21px;
    font-size: 14px;
    border: 1px solid #0DA99E;
    font-weight: 500;
      font-family: "Poppins", sans-serif;
}
.inpu_amnt input::placeholder{
      font-size: 36px;
       color: #0F625C;
}

.want_invst .line_dv span {
    width: 23%;
}
.smrt_grwth {
    padding-top: 5rem;
}
.smrt_grwth .line_dv h3 {
    font-weight: 600;
}
.smrt_grwth_btns {
    display: flex;
    flex-direction: column;
    width: 39%;
    justify-content: center;
    gap: 15px;
    margin: 10px auto;
}
.smrt_grwth_btns .cmn_btn.active{
    background: #0DA99E;
    color: #fff;
}
.smrt_grwth_btns .cmn_btn span{
    visibility: hidden;
}
.smrt_grwth_btns .cmn_btn.active span {
    visibility: visible;
    position: relative;
    left: -24px;
    font-size: 17px;
    font-weight: 600;
}
.search-box select{
    border: none;
    outline: none;
    width: 100%;
    padding: 11px 20px;
    font-size: 17px;
    border-radius: 30px;
    font-weight: 400;
    color: #3F4B4B;
}
.search-box select option{
    border-bottom: 1px solid #ccc;
}
.error {
    font-size: 13px !important ;
    color: red !important ;
}