.disable {
  pointer-events: none;
  opacity: 0.5;
}

.btn {
  padding: 8px 18px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  outline: none;
}

@media only screen and (max-width: 1023px) {
  .btn {
    padding: 8px 14px;
  }
}

.btn_blue {
  background: #0B3C84;
  border: #0B3C84 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue:hover {
  color: #0B3C84;
}

.btn_blue:hover::before {
  width: 100%;
}

.btn_blue_outline {
  background: #FFFFFF;
  border: #0B3C84 1px solid;
  color: #0B3C84;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue_outline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #0B3C84;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue_outline:hover {
  color: #FFFFFF;
}

.btn_blue_outline:hover::before {
  width: 100%;
}

.btn_blue_download {
  color: #0B3C84;
  font-size: 14px;
}

.btn_blue_download span {
  background: #0B3C84;
  margin-left: 10px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_blue_download:hover {
  color: #0B3C84;
}

.btn_blue_normal {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #0B3C84;
  padding: 0px;
  height: auto;
  position: relative;
  padding-right: 12px;
  border-radius: 0;
}

.btn_blue_normal::before {
  content: '';
  position: absolute;
  background: url("../images/icons/arrow-blue.svg") center right no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 0;
  top: 8px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue_normal:hover {
  color: #0B3C84;
}

.btn_blue_normal:hover::before {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.btn_blue_icon {
  background: #FFFFFF;
  border: #0B3C84 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_blue_icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0B3C84;
  z-index: -1;
}

.btn_blue_icon:hover {
  color: #FFFFFF;
}

.btn_blue_icon img {
  margin-right: 10px;
}

.btn_red {
  background: #FF0000;
  border: #FF0000 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red:hover {
  color: #FF0000;
}

.btn_red:hover::before {
  width: 100%;
}

.btn_red_outline {
  background: #FFFFFF;
  border: #FF0000 1px solid;
  color: #FF0000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red_outline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #FF0000;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red_outline:hover {
  color: #FFFFFF;
}

.btn_red_outline:hover::before {
  width: 100%;
}

.btn_red_normal {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #FF0000;
  padding: 0px;
  height: auto;
  position: relative;
  padding-right: 12px;
  border-radius: 0;
}

.btn_red_normal::before {
  content: '';
  position: absolute;
  background: url("../images/icons/arrow-red.svg") center right no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 0;
  top: 8px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red_normal:hover {
  color: #FF0000;
}

.btn_red_normal:hover::before {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.btn_red_normal_reverse {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #FF0000;
  padding: 0px;
  height: auto;
  position: relative;
  padding-left: 12px;
  border-radius: 0;
}

.btn_red_normal_reverse::before {
  content: '';
  position: absolute;
  background: url("../images/icons/arrow-red.svg") center right no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  left: 0;
  top: 8px;
  -webkit-transform: rotateY(180deg) translateX(0px);
          transform: rotateY(180deg) translateX(0px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red_normal_reverse:hover {
  color: #FF0000;
}

.btn_red_normal_reverse:hover::before {
  -webkit-transform: rotateY(180deg) translateX(2px);
          transform: rotateY(180deg) translateX(2px);
}

.btn_red_icon {
  background: #FFFFFF;
  border: #FF0000 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_red_icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FF0000;
  z-index: -1;
}

.btn_red_icon:hover {
  color: #FFFFFF;
}

.btn_red_icon img {
  margin-right: 10px;
}

.btn_red_download {
  color: #FF0000;
  font-size: 14px;
}

.btn_red_download span {
  background: #FF0000;
  margin-left: 10px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_red_download:hover {
  color: #FF0000;
}

.btn_green {
  background: #11D5A4;
  border: #11D5A4 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green:hover {
  color: #11D5A4;
}

.btn_green:hover::before {
  width: 100%;
}

.btn_green_outline {
  background: #FFFFFF;
  border: #11D5A4 1px solid;
  color: #11D5A4;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green_outline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #11D5A4;
  z-index: -1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green_outline:hover {
  color: #FFFFFF;
}

.btn_green_outline:hover::before {
  width: 100%;
}

.btn_green_normal {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #11D5A4;
  padding: 0px;
  height: auto;
  position: relative;
  padding-right: 12px;
  border-radius: 0;
}

.btn_green_normal::before {
  content: '';
  position: absolute;
  background: url("../images/icons/arrow-green.svg") center right no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 0;
  top: 8px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green_normal:hover {
  color: #11D5A4;
}

.btn_green_normal:hover::before {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.btn_green_icon {
  background: #FFFFFF;
  border: #11D5A4 1px solid;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.btn_green_icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #11D5A4;
  z-index: -1;
}

.btn_green_icon:hover {
  color: #FFFFFF;
}

.btn_green_icon img {
  margin-right: 10px;
}

.btn_cashflow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 110px;
  font-size: 12px;
  font-weight: 400;
}

.btn_cashflow img {
  margin-left: 10px;
}

.components {
  padding: 50px;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
select.form-control:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-label-group {
  position: relative;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #DAE0E9;
  background: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.form-label-group.no_bg {
  background: transparent;
  border: none;
}

.form-label-group > label {
  position: absolute;
  top: 15px;
  left: 0px;
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 18px;
  color: #6F828E;
  pointer-events: none;
  margin-bottom: 0px;
  padding: 0 .75rem;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.form-label-group input {
  color: #0B3C84;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  border: none;
  padding-bottom: 0;
}

.form-label-group input:focus {
  color: #0B3C84;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) ~ label,
.form-label-group input:focus ~ label {
  top: 6px;
  font-size: 10px;
  line-height: 14px;
}

.form-label-group.ef_textarea {
  height: auto;
}

.form-label-group.ef_textarea textarea {
  color: #0B3C84;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  border: none;
  padding-bottom: 0;
  resize: none;
  padding: 1.5rem .75rem .75rem;
}

.form-label-group.ef_textarea textarea:focus {
  color: #0B3C84;
}

.form-label-group.ef_textarea textarea::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group.ef_textarea textarea:-ms-input-placeholder {
  color: transparent;
}

.form-label-group.ef_textarea textarea::-ms-input-placeholder {
  color: transparent;
}

.form-label-group.ef_textarea textarea::placeholder {
  color: transparent;
}

.form-label-group.ef_textarea textarea:not(:placeholder-shown) ~ label,
.form-label-group.ef_textarea textarea:focus ~ label {
  top: 6px;
  font-size: 10px;
  line-height: 14px;
}

.form-label-group select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #0B3C84;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 0;
  border: none;
  background: url("../images/icons/arrow-down-blue.svg") bottom 11px right 10px no-repeat;
  padding-right: 34px;
}

.form-label-group select:not(:placeholder-shown) ~ label,
.form-label-group select:focus ~ label {
  top: 6px;
  font-size: 10px;
  line-height: 14px;
}

.form-search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.form-search input {
  height: 40px;
  min-width: 380px;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  background: #fff url("../images/icons/search-grey.svg") center right 0.75rem no-repeat;
  border: none;
}

@media only screen and (max-width: 768px) {
  .form-search input {
    min-width: 300px;
  }
}

.form-search input::-webkit-input-placeholder {
  color: #333333;
}

.form-search input:-ms-input-placeholder {
  color: #333333;
}

.form-search input::-ms-input-placeholder {
  color: #333333;
}

.form-search input::placeholder {
  color: #333333;
}

.form-search_2 {
  position: relative;
  max-width: 380px;
}

.form-search_2 input {
  border: 0.5px solid #C6CCD6;
  border-radius: 4px;
  width: 100% !important;
}

.form-search_2 input:focus {
  border: 0.5px solid #C6CCD6 !important;
}

.form-search_2 input:active {
  background: transparent;
}

.form-search_2 button {
  padding: 0;
  position: absolute;
  right: 10px;
  outline: none !important;
}

.form-search_2 button:focus {
  outline: none !important;
}

/* range slider starts */
.range-slider {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-width: 168px;
}

@media only screen and (max-width: 768px) {
  .range-slider {
    min-width: 100%;
  }
}

.range-slider_ion {
  padding-top: 20px;
}

.range-slider_ion .irs--flat .irs-bar {
  background-color: #FF0000;
  height: 2px;
}

.range-slider_ion .irs-line {
  height: 2px;
}

.range-slider_ion .irs--flat .irs-handle {
  background: url("../images/icons/drag-red.svg") center no-repeat;
  cursor: pointer;
  top: 16px;
}

.range-slider_ion .irs--flat .irs-handle i {
  display: none;
}

.range-slider_ion .irs--flat.irs-with-grid {
  height: 45px;
}

.range-slider_ion .irs--flat .irs-min,
.range-slider_ion .irs--flat .irs-max {
  display: none;
}

.range-slider_ion .irs--flat .irs-single {
  font-size: 22px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
  background: transparent;
  left: 0 !important;
  top: -10px;
  padding: 0;
}

.range-slider_ion .irs--flat .irs-single::before {
  display: none;
}

.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  outline: none;
  padding: 0;
  margin: 0;
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: url("../images/icons/drag-red.svg") center no-repeat;
  cursor: pointer;
  outline: none;
  border: none;
}

.range-slider__range:active::-webkit-slider-thumb {
  background: url("../images/icons/drag-red.svg") center no-repeat;
  outline: none;
  border: none;
}

.range-slider__range::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  width: 16px;
  height: 16px;
  background: url("../images/icons/drag-red.svg") center no-repeat;
  cursor: pointer;
  outline: none;
  border: none;
}

.range-slider__range:active::-moz-range-thumb {
  background: url("../images/icons/drag-red.svg") center no-repeat;
  outline: none;
  border: none;
}

.range-slider-txt {
  font-size: 22px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
  position: absolute;
  left: 0;
  top: 4px;
}

::-moz-range-track {
  background: #C6CCD6;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

::-moz-range-track {
  background: #C6CCD6;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

/* range slider ends */
.title_1 h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 46px;
  text-transform: capitalize;
  color: #111111;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .title_1 h2 {
    font-size: 22px;
    line-height: 32px;
  }
}

.title_1 h2 span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 1;
}

.title_1 h2 span::before {
  content: '';
  position: absolute;
  background: rgba(17, 213, 164, 0.1);
  width: calc(100% + 16px);
  height: 100%;
  left: -8px;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .title_1 h2 span::before {
    left: -4px;
    width: calc(100% + 8px);
  }
}

.title_1.bg h2 {
  color: #F6F9FF;
}

.title_2 h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 46px;
  text-transform: capitalize;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}

.title_2 h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 46px;
  text-transform: capitalize;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .title_2 h2 {
    font-size: 22px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .title_2 h1 {
    font-size: 22px;
    line-height: 32px;
  }
}

.title_3 h1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}

.title_sub h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .title_sub h6 {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 1200px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown > .dropdown-toggle:active {
    pointer-events: none;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes transIn {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes transIn {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes fadeIn_2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeIn_2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes transNavbar {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes transNavbar {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0.5;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.5;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}

@-webkit-keyframes iconanim {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes iconanim {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.dots_vert_left {
  position: relative;
  z-index: 1;
}

.dots_vert_left::before {
  content: '';
  position: absolute;
  background: url("../images/icons/dots-v.svg") center left no-repeat;
  background-size: contain;
  width: 76px;
  height: 364px;
  left: 0;
  bottom: -182px;
  z-index: -1;
  -webkit-animation: fadeInOut 1.5s linear infinite;
          animation: fadeInOut 1.5s linear infinite;
}

@media only screen and (max-width: 768px) {
  .dots_vert_left::before {
    display: none;
  }
}

.dots_vert_left.top::before {
  bottom: auto;
  top: 50px;
}

.dots_vert_right {
  position: relative;
  z-index: 1;
}

.dots_vert_right::before {
  content: '';
  position: absolute;
  background: url("../images/icons/dots-v.svg") center left no-repeat;
  background-size: contain;
  width: 76px;
  height: 364px;
  right: 0;
  bottom: -182px;
  z-index: -1;
  -webkit-animation: fadeInOut 1.5s linear infinite;
          animation: fadeInOut 1.5s linear infinite;
}

@media only screen and (max-width: 768px) {
  .dots_vert_right::before {
    display: none;
  }
}

.dots_hori_left {
  position: relative;
  z-index: 1;
}

.dots_hori_left::before {
  content: '';
  position: absolute;
  background: url("../images/icons/dots-h.svg") center left no-repeat;
  background-size: contain;
  width: 242px;
  height: 76px;
  left: 0;
  top: 180px;
  z-index: 1;
  -webkit-animation: fadeInOut 1.5s linear infinite;
          animation: fadeInOut 1.5s linear infinite;
}

@media only screen and (max-width: 768px) {
  .dots_hori_left::before {
    display: none;
  }
}

.dots_hori_right {
  position: relative;
  z-index: 1;
}

.dots_hori_right::before {
  content: '';
  position: absolute;
  background: url("../images/icons/dots-h.svg") center left no-repeat;
  background-size: contain;
  width: 242px;
  height: 76px;
  right: 0;
  top: 180px;
  z-index: 1;
  -webkit-animation: fadeInOut 1.5s linear infinite;
          animation: fadeInOut 1.5s linear infinite;
}

@media only screen and (max-width: 768px) {
  .dots_hori_right::before {
    display: none;
  }
}

.select2-container {
  min-width: 140px;
  padding-right: 20px;
}

.ef_select_multiple + .select2-container,
.ef_select + .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-results > .select2-results__options,
.select2-container--multiple .select2-results > .select2-results__options {
  max-height: 220px;
  overflow-y: auto;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 4px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #0B3C84;
  font-weight: 600;
  font-size: 14px;
  outline: none;
  padding: 0 .75rem;
}

.select2-container:focus {
  outline: none;
}

.select2-container span:focus {
  outline: none;
}

.select2-results__option {
  font-size: 12px;
  line-height: 16px;
  color: #6F828E;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E5EDF8;
  font-weight: 600;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.select2-results__option:last-child {
  border-bottom: 0px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  position: relative;
  background: #F6F9FF;
  color: #01135C;
}

.select2-dropdown {
  border: 1px solid #DAE0E9 !important;
  border-radius: 4px !important;
  top: 4px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  min-width: 150px;
}

input.datepicker {
  background: url("../images/icons/calendar.svg") center right 0.75rem no-repeat;
  max-width: 150px;
  height: 30px;
  text-align: left;
}

.datepicker {
  padding: 0 .75rem;
}

.datepicker:focus {
  outline: none;
}

.datepicker-dropdown {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.datepicker-days {
  padding: 15px 0;
}

.datepicker-switch {
  color: #01135C !important;
  font-family: "Open Sans", sans-serif;
  font-weight: bold !important;
  font-size: 14px;
  line-height: 24px;
  background: transparent !important;
}

.datepicker .prev {
  font-size: 0px;
  background: url("../images/icons/arrow-blue.svg") center no-repeat !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.datepicker .next {
  font-size: 0px;
  background: url("../images/icons/arrow-blue.svg") center no-repeat !important;
}

.datepicker td,
.datepicker th {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 500;
}

.datepicker th {
  color: #333333;
}

.datepicker th.dow {
  padding-bottom: 16px;
  padding-top: 8px;
}

.datepicker td {
  color: #666666;
}

.datepicker td.active {
  background: #FF0000 !important;
  border-radius: 50%;
}

.datepicker .datepicker-months {
  padding: 20px 0;
}

.datepicker .datepicker-months .month.focused,
.datepicker .datepicker-months .month.active {
  background: #FF0000 !important;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.input-daterange {
  border-radius: 4px;
  border: 1px solid #DAE0E9;
  background: #fff;
  margin-right: 8px;
}

@media only screen and (max-width: 768px) {
  .input-daterange {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.input-daterange .form-label-group {
  border: none;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .input-daterange .form-label-group {
    min-width: 50% !important;
    margin-right: 0 !important;
  }
}

.input-daterange .form-label-group::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 80%;
  top: 10%;
  right: 0px;
  background: #DAE0E9;
}

.input-daterange .form-label-group:last-child {
  margin-right: 0px;
}

.input-daterange .form-label-group:last-child::before {
  display: none;
}

.select2-container--multiple .select2-results__option {
  padding-right: 20px;
  vertical-align: middle;
}

.select2-container--multiple .select2-results__option:before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #DAE0E9;
  min-width: 14px;
  height: 14px;
  position: relative;
  margin-right: 6px;
  border-radius: 50%;
}

.select2-container--multiple .select2-results__option--selected {
  background: #F6F9FF;
}

.select2-container--multiple .select2-results__option--selected::before {
  border: 1px solid #CC171E;
  background: url("../images/icons/tick-red.svg") center no-repeat;
}

.select2-container--multiple .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #fff;
}

.select2-container--multiple .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #eaeaeb;
  color: #272727;
}

.select2-container--multiple .select2-container--default .select2-selection--multiple {
  margin-bottom: 10px;
}

.select2-container--multiple .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 4px;
}

.select2-container--multiple .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #f77750;
  border-width: 2px;
}

.select2-container--multiple .select2-container--default .select2-selection--multiple {
  border-width: 2px;
}

.select2-container--multiple .select2-container--open .select2-dropdown--below {
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.select2-container--multiple .select2-selection .select2-selection--multiple:after {
  content: 'hhghgh';
}

.select2-container--multiple .select2-selection__rendered li {
  color: #0B3C84;
  font-weight: 600;
  font-size: 14px;
  outline: none;
  padding: 0 .75rem;
}

.select2-container--multiple .select2-selection--multiple {
  min-height: 26px !important;
}

.select2-container--multiple .select2-selection__clear,
.select2-container--multiple .select2-search--inline {
  display: none;
}

.select2-selection--multiple:before {
  content: "";
  position: absolute;
  right: 7px;
  top: 42%;
  border-top: 5px solid #0B3C84;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.select2-container--open .select2-selection--multiple:before {
  border-bottom: 5px solid #0B3C84;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #0B3C84 transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0B3C84 transparent;
}

.form-check-group {
  position: relative;
  cursor: pointer;
}

.form-check-group input {
  position: absolute;
  opacity: 0;
  display: none;
}

.form-check-group input:checked ~ .checkmark {
  border: 1px solid #FF0000;
  background: url("../images/icons/tick-red.svg") center no-repeat;
}

.form-check-group input:checked ~ .text {
  color: #01135C;
  font-weight: 600;
}

.form-check-group .checkmark {
  border: 1px solid #DAE0E9;
  width: 14px;
  height: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 6px;
  cursor: pointer;
}

.form-radio-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 22px;
}

.form-radio-group label {
  margin-bottom: 0px;
  cursor: pointer;
}

.form-radio-group input {
  position: absolute;
  opacity: 0;
  display: none;
}

.form-radio-group input:checked ~ .checkmark {
  border: 1px solid #FF0000;
  background: url("../images/icons/tick-red.svg") center no-repeat;
}

.form-radio-group input:checked ~ .text {
  color: #01135C;
  font-weight: 600;
}

.form-radio-group .checkmark {
  border: 1px solid #DAE0E9;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 6px;
}

.form-radio-group .text {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}

.ef_radio_group {
  border: 1px solid #E0E7FF;
  border-radius: 4px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
}

@media only screen and (max-width: 1023px) {
  .ef_radio_group {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

.ef_list_pagination {
  padding-top: 20px;
}

.ef_list_pagination ul {
  list-style: none;
  padding-left: 0px;
}

.ef_list_pagination ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 6px;
}

@media only screen and (max-width: 1023px) {
  .ef_list_pagination ul li {
    margin-bottom: 6px;
  }
}

.ef_accordion .card {
  margin-bottom: 25px;
  border: 1px solid #E3EAF7;
}

.ef_accordion .card-header {
  border-bottom: none;
  padding: 0px;
  background: #fff;
}

.ef_accordion .card-header h5 button {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #828282;
  min-height: 50px;
  height: auto;
  width: 100%;
  text-decoration: none;
  padding: 20px 60px 20px 40px;
  position: relative;
  text-align: left;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .ef_accordion .card-header h5 button {
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }
}

.ef_accordion .card-header h5 button::before {
  content: '';
  position: absolute;
  right: 40px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: url("../images/icons/arrow-down-blue.svg") center no-repeat;
  background-size: contain;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .ef_accordion .card-header h5 button::before {
    right: 20px;
  }
}

.ef_accordion .card-header h5 button[aria-expanded="true"] {
  background: #F6F9FF;
  color: #333333;
}

.ef_accordion .card-header h5 button[aria-expanded="true"]::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ef_accordion .card-header h5 button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ef_accordion .card-body {
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  color: #828282;
  padding: 30px 40px;
}

@media only screen and (max-width: 767px) {
  .ef_accordion .card-body {
    padding: 20px;
  }
}

.ef_form_group {
  margin-bottom: 20px;
}

.ef_form_group > label {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  display: block;
}

.ef_form_group.full_width .form-label-group {
  width: 100%;
}

.ef_form_group .terms {
  font-style: italic;
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
  color: #BDBDBD;
  display: block;
}

.no-pad {
  padding: 0px !important;
}

.blue_bg {
  background: #FCFDFF;
}

.dropdown-menu {
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

.datepicker-dropdown:before {
  border-bottom-color: transparent;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.poa {
  position: absolute;
  right: 15px;
}

@media only screen and (max-width: 768px) {
  .poa {
    position: relative;
    right: auto;
  }
}

.ef_checkbox {
  padding: 0 10px;
  height: 100%;
}

.ef_checkbox label {
  position: relative;
  color: #6F828E;
  font-weight: 500;
  font-size: 14px !important;
  cursor: pointer;
  margin-bottom: 0px;
  top: 0 !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 25px;
}

.ef_checkbox input {
  position: absolute;
  opacity: 0;
  display: none;
}

.ef_checkbox input:checked ~ .checkmark {
  border: 1px solid #FF0000;
  background: url("../images/icons/tick-red.svg") center no-repeat;
}

.ef_checkbox input:checked ~ label {
  color: #6F828E;
}

.ef_checkbox .checkmark {
  border: 1px solid #DAE0E9;
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 10px;
  top: calc(50% - 7px);
}

.typeahead {
  max-height: 100px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  width: 100%;
}

.typeahead .dropdown-item {
  white-space: normal;
  font-size: 14px;
  line-height: 20px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.min-width260 {
  min-width: 260px;
}

.ef_uploadfile {
  background: #F6F9FF;
  border: 1px dashed #B8CEEF;
  border-radius: 4px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  margin: 20px 0;
}

@media only screen and (max-width: 768px) {
  .ef_uploadfile {
    display: block;
  }
}

.ef_uploadfile--img {
  min-width: 175px;
  max-width: 175px;
  height: 100px;
  background: #fff;
  margin-right: 10px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 768px) {
  .ef_uploadfile--img {
    margin-bottom: 20px;
    height: 120px;
    min-width: 100%;
    max-width: 100%;
  }
}

.ef_uploadfile--img img {
  max-height: 100px;
}

.ef_uploadfile--img span {
  text-transform: capitalize;
  margin-left: 6px;
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #DAE0E9;
}

.ef_uploadfile_info--btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  background: #11D5A4;
  border: #11D5A4 1px solid;
  border-radius: 4px;
  padding: 8px 18px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 6px;
  display: none;
  position: relative;
}

.ef_uploadfile_info--btn.in {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ef_uploadfile_info--btn.remove {
  color: #FF0000;
  border: #FF0000 1px solid;
  background: transparent;
}

.ef_uploadfile_info--btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  font-size: 0px;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.ef_uploadfile_info--label {
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #6F828E;
}

.ef_tabs_btn {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.ef_tabs_btn li {
  width: auto !important;
}

.ef_tabs_btn li a {
  border: none !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: normal !important;
  font-family: "Open Sans", sans-serif;
  border-radius: 100px !important;
  height: 32px !important;
  width: auto !important;
}

.ef_tabs_btn li.active a {
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84)), #01135C !important;
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%), #01135C !important;
  border: none !important;
  color: #fff !important;
}

.ef_tabs_btn li.active a::before {
  display: none;
}

.ef_note {
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #6F828E !important;
  margin-top: 20px;
}

.signature_pad {
  position: relative;
  background: #fff;
  margin: 0 20px;
  padding: 20px;
  margin-bottom: 10px;
}

.signature_pad_wrapper {
  background: #F6F9FF;
  border: 1px dashed #B8CEEF;
  border-radius: 4px;
  padding: 20px 0 0;
  margin-bottom: 20px;
}

.signature_pad_wrapper .form-label-group {
  margin-left: 10px;
}

.signature_pad #signature_pad_clear {
  top: 20px;
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .signature_pad #signature_pad_clear {
    position: absolute;
  }
}

.signature_pad canvas {
  display: block;
}

@media only screen and (max-width: 768px) {
  .signature_pad canvas {
    margin: 0 auto;
  }
}

.signature_pad--sign {
  font-size: 12px;
  line-height: 16px;
  color: #DAE0E9;
  border-top: 1px solid #E5EDF8;
  padding: 15px 0 0;
  text-align: center;
}

.ef_camera {
  background: #FFFFFF;
  border-radius: 4px;
}

.ef_camera_wrapper {
  padding: 20px;
  background: #F6F9FF;
  border: 1px dashed #B8CEEF;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ef_camera_content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_camera_content--number {
  font-size: 15px;
  line-height: 28px;
  color: #666666;
}

.ef_camera_content--value {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
  margin-bottom: 10px;
}

.ef_camera_content_video video {
  min-width: 280px;
  max-width: 280px;
  height: 210px;
  display: block;
}

.ef_camera_content_video_wrapper {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.ef_camera_content_video_wrapper--rec {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #FF0000;
  position: absolute;
  right: 10px;
  top: 10px;
}

.ef_camera_content_photo--snap {
  width: 300px;
  height: 225px;
}

@media only screen and (max-width: 768px) {
  .ef_camera_content_photo--snap {
    height: 360px;
    width: 270px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .ef_camera_content_photo--result img {
    margin: 0 auto;
    display: block;
  }
}

.ef_camera_content_btn {
  text-align: center;
  min-width: 300px;
}

.ef_camera_content_btn--capture {
  border-radius: 100px;
  border: #CC171E 1px solid;
  height: 42px;
  margin-bottom: 10px;
}

.ef_camera_content_btn--capture::before {
  background: #CC171E;
}

.ef_camera_content_btn--change {
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ef_camera_content_btn--change img {
  margin-right: 6px;
}

.ef_camera_content_btn--change:hover {
  text-decoration: none;
}

.ef_camera_instructions {
  border-top: 1px solid #E5EDF8;
  padding: 20px 0;
  margin: 0 20px;
}

.ef_camera_instructions_swiper {
  position: relative;
}

.ef_camera_instructions--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #0B3C84;
  padding-bottom: 10px;
}

.ef_uploadvideo .ef_uploadfile--img {
  min-width: 280px;
  max-width: 280px;
  height: 200px;
}

.ef_uploadvideo #ef_videoresult {
  display: none;
}

.ef_uploadvideo video {
  width: 100%;
  height: 100%;
  background: #000;
}

html:not(.no-js) [data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  will-change: transform;
}

body {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
}

@media only screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

body.overflow_hidden {
  height: 100%;
  overflow: hidden;
}

.modal-backdrop.show {
  opacity: 0.85;
}

.green_color {
  color: #11D5A4;
}

.grey_color {
  color: #6F828E;
}

.ef_container {
  max-width: 1366px;
  margin: 0 auto;
}

.ef_container_layout {
  max-width: 1180px;
  margin: 0 auto;
}

.ef_container_content {
  max-width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .ef_container_content {
    padding: 0 20px;
  }
}

.ef_payment_inner_box .ef_container_content > .row > div:nth-child(2) {
  padding-left: 50px;
}

@media only screen and (max-width: 768px) {
  .ef_payment_inner_box .ef_container_content > .row > div:nth-child(2) {
    padding-left: 15px;
    padding-top: 40px;
  }
}

.multi_links a {
  margin-right: 25px;
}

@media only screen and (max-width: 768px) {
  .multi_links a {
    margin: 8px;
  }
}

.multi_links a:last-child {
  margin-right: 0px;
}

.max-width-450 {
  max-width: 450px;
}

.max-width-350 {
  max-width: 350px;
}

.mb-80 {
  margin-bottom: 80px;
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-pagination.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 1;
  margin-right: 8px !important;
  outline: none;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.swiper-pagination.blue .swiper-pagination-bullet {
  border: 1px solid #D7DCE4;
  background: transparent;
}

.swiper-pagination.blue .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: #0B3C84 1px solid;
  background: #0B3C84;
}

.swiper-pagination.red .swiper-pagination-bullet {
  border: 1px solid #D7DCE4;
  background: transparent;
}

.swiper-pagination.red .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: #FF0000 1px solid;
  background: #FF0000;
}

.swiper-pagination.swiper-pagination-fraction {
  font-size: 16px;
  line-height: 24px;
  color: #F6F9FF;
  max-width: 86px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}

.swiper-button-prev {
  height: 36px;
  width: 36px;
  z-index: 1;
  left: 0;
  outline: none;
}

.swiper-button-prev::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/icons/arrow-circle-red.svg") center center no-repeat;
  background-size: contain;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.swiper-button-prev::after {
  display: none;
}

.swiper-button-prev.fraction {
  top: auto;
  bottom: 4px;
  width: 25px;
  height: 25px;
}

.swiper-button-prev.fraction::before {
  background: url("../images/icons/arrow-white.svg") center center no-repeat;
}

.swiper-button-next {
  height: 36px;
  width: 36px;
  z-index: 1;
  right: 0;
  outline: none;
}

.swiper-button-next::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/icons/arrow-circle-red.svg") center center no-repeat;
  background-size: contain;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-next.fraction {
  top: auto;
  bottom: 4px;
  width: 25px;
  height: 25px;
  right: auto;
  left: 60px;
  z-index: 1;
}

.swiper-button-next.fraction::before {
  background: url("../images/icons/arrow-white.svg") center center no-repeat;
  -webkit-transform: translateX(180deg);
          transform: translateX(180deg);
}

.bg_blue {
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
}

/* header starts */
@media only screen and (max-width: 768px) {
  .ef_navbar {
    display: none;
  }
}

.ef_navbar_logo {
  position: relative;
  z-index: 1054;
}

.ef_navbar_logo::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: #FF0000;
  z-index: -1;
}

.ef_navbar_logo_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  background: #FFFFFF;
}

.ef_navbar_menu {
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  z-index: 1053;
  position: relative;
}

.ef_navbar_menu.fixed-top .home_icon {
  width: 34px;
  margin-right: 30px;
}

.ef_navbar_menu .large_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_navbar_menu .large_menu_list_hover {
  max-width: 225px;
  background: #FAFCFF;
  min-height: 380px;
  min-width: 250px;
  padding: 15px 0;
}

.ef_navbar_menu .large_menu_list_select {
  width: calc(100% - 250px);
  padding: 15px 40px 40px;
}

.ef_navbar_menu .large_menu_list_select_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
  opacity: 0;
}

.ef_navbar_menu .large_menu_list_select_inner.in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
}

.ef_navbar_menu .large_menu_list_select_inner_each {
  min-width: calc(50% - 30px);
}

.ef_navbar_menu .large_menu_list_select_inner_each a {
  display: block;
  border-bottom: 1px solid #E5EDF8;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0;
  color: #6F828E;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu .large_menu_list_select_inner_each a:last-child {
  border-bottom: none;
}

.ef_navbar_menu .large_menu_list_select_inner_each a:hover {
  text-decoration: none;
  color: #0B3C84;
}

.ef_navbar_menu_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}

.ef_navbar_menu_items_each {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_navbar_menu_items_each li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}

.ef_navbar_menu_items_each li.home_icon {
  width: 0px;
  margin-right: 0;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each li:last-child {
  margin-right: 0px;
}

.ef_navbar_menu_items_each li > a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
  padding: 12px 0;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each li > a:hover {
  color: #F6BB19;
  text-decoration: none;
}

.ef_navbar_menu_items_each li > a .icon {
  margin-right: 8px;
}

.ef_navbar_menu_items_each li .dropdown-menu {
  -webkit-box-shadow: 0px 10px 13px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 13px 3px rgba(0, 0, 0, 0.05);
  border: none;
  min-width: 225px;
  margin-top: 0;
  padding: 15px 0;
}

.ef_navbar_menu_items_each li .dropdown-menu.large_menu {
  min-width: 960px;
  overflow: hidden;
  padding: 0px;
}

.ef_navbar_menu_items_each li .dropdown-item {
  font-size: 14px;
  line-height: 24px;
  font-family: "Open Sans", sans-serif;
  color: #6F828E;
  position: relative;
  display: block;
  width: auto;
  margin: 4px 0;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each li .dropdown-item::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 13px;
  width: 8px;
  height: 8px;
  background: url(../images/icons/arrow-red.svg) center right no-repeat;
  background-size: contain;
  opacity: 0;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each li .dropdown-item:hover, .ef_navbar_menu_items_each li .dropdown-item.in {
  color: #0B3C84;
  background: transparent;
}

.ef_navbar_menu_items_each li .dropdown-item:hover::before, .ef_navbar_menu_items_each li .dropdown-item.in::before {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.ef_navbar_menu_items_each li.active a {
  color: #F6BB19;
}

.ef_navbar_menu_items_each.yellow_menu li a {
  color: #F6BB19;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each.yellow_menu li a:hover {
  color: #FFFFFF;
}

.ef_navbar_menu_items_each.blue_menu li a {
  color: #0B3C84;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_navbar_menu_items_each.blue_menu li a:hover {
  color: #0B3C84;
}

.ef_navbar_menu_items_each.blue_menu li.register {
  position: relative;
  z-index: 1;
  height: 50px;
  color: #FFFFFF;
}

.ef_navbar_menu_items_each.blue_menu li.register::before {
  content: '';
  background: #FF0000;
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ef_navbar_menu_items_each.blue_menu li.register::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: -20px;
  top: 0;
  border-bottom: 50px solid #FF0000;
  border-left: 20px solid transparent;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login.in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login a {
  text-decoration: none;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login a:first-child {
  padding-right: 3px;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login a:last-child {
  padding-left: 3px;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_login a img {
  margin-right: 6px;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout {
  display: none;
  position: relative;
  z-index: 1;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout.in {
  display: block;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout .dropdown-menu {
  min-width: 180px;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout .dropdown-toggle span {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 120px;
  min-width: 120px;
  display: inline-block;
  white-space: nowrap;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout .dropdown-menu .dropdown-item {
  color: #6F828E;
  font-size: 14px;
  font-weight: 400;
}

.ef_navbar_menu_items_each.blue_menu li.register .register_logout .dropdown-menu .dropdown-item:hover {
  color: #0B3C84;
  background: transparent;
}

.ef_navbar_menu_items_each.blue_menu li.register a {
  color: #FFFFFF;
}

.ef_navbar_mob {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ef_navbar_mob {
    display: block;
  }
  .ef_navbar_mob .register_login {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10px;
  }
  .ef_navbar_mob .register_login.in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ef_navbar_mob .register_login a {
    text-decoration: none;
  }
  .ef_navbar_mob .register_login a:first-child {
    padding-right: 3px;
  }
  .ef_navbar_mob .register_login a:last-child {
    padding-left: 3px;
  }
  .ef_navbar_mob .register_login a img {
    margin-right: 6px;
  }
  .ef_navbar_mob .register_logout {
    display: none;
    position: relative;
    z-index: 1;
  }
  .ef_navbar_mob .register_logout.in {
    display: block;
  }
  .ef_navbar_mob .register_logout .dropdown-menu {
    min-width: 180px;
  }
  .ef_navbar_mob .register_logout .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ef_navbar_mob .register_logout .dropdown-toggle span {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 120px;
    display: inline-block;
    white-space: nowrap;
  }
  .ef_navbar_mob .register_logout .dropdown-menu .dropdown-item {
    color: #6F828E;
    font-size: 14px;
    font-weight: 400;
  }
  .ef_navbar_mob .register_logout .dropdown-menu .dropdown-item:hover {
    color: #0B3C84;
    background: transparent;
  }
  .ef_navbar_mob_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: center;
    background-color: #F6F9FF;
    height: 60px;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1052;
  }
  .ef_navbar_mob_head_copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ef_navbar_mob_head_copy_login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ef_navbar_mob_head_copy_login a {
    font-size: 15px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    color: #0B3C84;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding-right: 3px;
  }
  .ef_navbar_mob_head_copy_login a:hover {
    text-decoration: none;
  }
  .ef_navbar_mob_head_copy_login a img {
    margin-right: 4px;
  }
  .ef_navbar_mob_head_copy_icon {
    margin-left: 16px;
  }
  .ef_navbar_mob_head_copy_icon span {
    width: 22px;
    height: 1px;
    background: #0B3C84;
    display: block;
    margin: 5px 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_navbar_mob_head_copy_icon.open span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .ef_navbar_mob_head_copy_icon.open span:nth-child(2) {
    opacity: 0;
  }
  .ef_navbar_mob_head_copy_icon.open span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
  .ef_navbar_mob_menu {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 4;
    width: 100%;
    background: #FFFFFF;
    height: calc(100vh - 60px);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 99999;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_navbar_mob_menu.ef_hidden {
    overflow: hidden;
  }
  .ef_navbar_mob_menu.in {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .ef_navbar_mob_menu .form-search {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ef_navbar_mob_menu_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
  }
  .ef_navbar_mob_menu_list li a {
    font-size: 16px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    color: #6F828E;
    padding: 10px 0;
    display: block;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_navbar_mob_menu_list li a:hover {
    color: #0B3C84;
    text-decoration: none;
  }
  .ef_navbar_mob_menu_list li.ef_dropdown > a {
    background: url("../images/icons/arrow-blue.svg") center right 10px no-repeat;
  }
  .ef_navbar_mob_menu_list li.ef_dropdown.blue > a {
    background: url("../images/icons/arrow-white.svg") center right 10px no-repeat;
  }
  .ef_navbar_mob_menu_list li.ef_dropdown.blue > a:hover {
    background: url("../images/icons/arrow-yellow.svg") center right 10px no-repeat;
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu {
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu.in {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu_back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu_back--link {
    color: #FF0000;
    font-size: 16px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding-left: 20px;
    margin-right: 10px;
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu_back--link::before {
    content: '';
    position: absolute;
    background: url("../images/icons/arrow-red.svg") center left no-repeat;
    width: 20px;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-10px) rotateY(180deg);
            transform: translateX(-10px) rotateY(180deg);
  }
  .ef_navbar_mob_menu_list .ef_dropdown_menu_back--title {
    color: #BDBDBD;
    font-size: 12px;
    line-height: 18px;
  }
  .ef_navbar_mob_menu_top {
    background: #0B3C84;
    padding: 20px;
  }
  .ef_navbar_mob_menu_top > ul > li > a {
    color: #F6F9FF;
  }
  .ef_navbar_mob_menu_top > ul > li > a:hover {
    color: #F6BB19;
  }
  .ef_navbar_mob_menu_btm {
    background: #FFFFFF;
    padding: 20px;
  }
  .ef_navbar_mob_menu_btm ul li a {
    color: #0B3C84;
  }
  .ef_navbar_mob_menu_call {
    background: #F6F9FF;
    padding: 20px;
    font-size: 14px;
    line-height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #6F828E;
  }
  .ef_navbar_mob_menu_call a {
    color: #6F828E;
    margin-left: 15px;
    font-weight: 600;
    font-size: 16px;
  }
  .ef_navbar_mob_menu_call a img {
    margin-right: 6px;
    height: 20px;
  }
  .ef_navbar_mob_menu_call a:hover {
    text-decoration: none;
    color: #6F828E;
  }
}

/* header ends */
.ef_fix_notify {
  width: 478px;
  background: #FFFFFF;
  padding: 25px;
  border-left: #11D5A4 4px solid;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 0px;
  top: var(--data-top);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_fix_notify {
    width: calc(100% - 20px);
  }
}

/* notify starts */
.ef_notify {
  width: 478px;
  background: #FFFFFF;
  padding: 25px;
  border-left: #11D5A4 4px solid;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 0px;
  top: var(--data-top);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_notify {
    width: calc(100% - 20px);
  }
}

.ef_notify_add {
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .ef_notify_add {
    padding-top: 240px !important;
  }
}

.ef_notify.in {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.ef_notify_txt {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 8px;
  max-width: 368px;
}

/* notify ends */
/* child education detail starts */
.ef_childedu_detail {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail {
    padding: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail .title_2 {
    padding-top: 20px;
  }
}

.ef_childedu_detail_box {
  border: #DAE0E9 1px solid;
  padding: 25px 0px 25px 25px;
  margin: 40px 0;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail_box {
    padding: 10px;
    margin: 20px 0;
  }
}

.ef_childedu_detail_box_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail_box_each {
    display: block;
    margin-bottom: 30px;
  }
  .ef_childedu_detail_box_each:last-child {
    margin-bottom: 0px;
  }
}

.ef_childedu_detail_box_each_text {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  max-width: calc(50% - 40px);
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail_box_each_text {
    min-width: 100%;
    margin-bottom: 10px;
  }
}

.ef_childedu_detail_box_each_text--title {
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
  color: #333333;
}

.ef_childedu_detail_box_each_text--age {
  font-style: italic;
  font-weight: bold;
  font-size: 30px;
  line-height: 45px;
  text-transform: capitalize;
  color: #DAE0E9;
  font-family: "Poppins", sans-serif;
}

.ef_childedu_detail_box_each_result {
  max-width: calc(50% - 40px);
  min-width: calc(50% - 40px);
  background: #F6F9FF;
  padding: 20px;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail_box_each_result {
    min-width: 100%;
  }
}

.ef_childedu_detail_box_each_result--title {
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}

.ef_childedu_detail_box_each_result_item {
  font-size: 24px;
  line-height: 36px;
  font-style: "Open Sans", sans-serif;
  color: #111111;
  margin-bottom: 20px;
  font-weight: bold;
}

.ef_childedu_detail_box_each_result_item span {
  font-size: 12px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  color: rgba(17, 17, 17, 0.54);
  font-weight: normal;
  display: block;
}

.ef_childedu_detail_box_each_result_item:last-child {
  margin-bottom: 0px;
}

.ef_childedu_detail_box_each_result.green_bg {
  background: #14E3B0;
}

.ef_childedu_detail_box_each_result.green_bg .ef_childedu_detail_box_each_result--title,
.ef_childedu_detail_box_each_result.green_bg .ef_childedu_detail_box_each_result_item,
.ef_childedu_detail_box_each_result.green_bg .ef_childedu_detail_box_each_result_item span {
  color: #01135C;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_detail_content {
    margin-bottom: 120px;
  }
}

.ef_childedu_detail_content--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
  margin: 20px 0;
  max-width: 285px;
}

.ef_childedu_detail_content--text {
  font-size: 14px;
  line-height: 19px;
  color: #828282;
  margin-bottom: 30px;
  max-width: 285px;
}

/* child education detail ends */
/* child education starts */
.ef_childedu {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_childedu {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 768px) {
  .ef_childedu [class^="col-"] {
    padding: 0px !important;
  }
}

@media only screen and (max-width: 768px) {
  .ef_childedu .title_2 {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_childedu .ef_back {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}

.ef_childedu_inner {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_img {
    padding: 20px;
    margin-bottom: 80px;
  }
}

.ef_childedu_inner_img img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_img img {
    width: auto;
    display: block;
    margin: 0 auto;
  }
}

.ef_childedu_inner_copy {
  padding: 50px;
  background: #fff;
  border: #F2F2F2 1px solid;
  border-radius: 4px;
  border-left: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy {
    padding: 0px;
    border: none;
  }
}

.ef_childedu_inner_copy--title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 20px 0;
}

.ef_childedu_inner_copy_label {
  background: #6FCF97;
  position: absolute;
  top: 0;
  left: 0;
  height: 62px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transform: translateX(-50px) translateY(-50%);
          transform: translateX(-50px) translateY(-50%);
  border-right: #01135C 4px solid;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_label {
    -webkit-transform: translateX(0px) translateY(-50%);
            transform: translateX(0px) translateY(-50%);
    border-left: #01135C 4px solid;
    border-right: 0px;
    height: 36px;
    padding: 0 15px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}

.ef_childedu_inner_copy_label--icon {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_label--icon {
    max-width: 20px;
    margin-right: 10px;
  }
}

.ef_childedu_inner_copy_label--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_label--title {
    font-size: 14px;
  }
}

.ef_childedu_inner_copy_info {
  padding: 25px;
  background: rgba(218, 224, 233, 0.24);
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_info {
    padding: 40px 20px;
  }
}

.ef_childedu_inner_copy_info span {
  margin-right: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 52px;
  color: #01135C;
}

.ef_childedu_inner_copy_info .form-label-group {
  margin-right: 8px;
  max-width: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.ef_childedu_inner_copy_info .form-label-group input {
  padding: 10px;
  font-size: 22px;
  height: 100%;
  font-weight: 400;
}

.ef_childedu_inner_copy_info .form-label-group label {
  display: none;
}

.ef_childedu_inner_copy_returns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_returns {
    padding: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.ef_childedu_inner_copy_returns_each {
  width: calc(100% / 2);
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_returns_each {
    width: calc((100% / 2) - 20px);
  }
}

.ef_childedu_inner_copy_returns_each--title {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 8px;
}

.ef_childedu_inner_copy_returns_each span {
  margin-right: 8px;
}

.ef_childedu_inner_copy_risk {
  padding: 25px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy_risk {
    padding: 20px;
  }
}

.ef_childedu_inner_copy_risk span {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-right: 8px;
  line-height: 42px;
}

.ef_childedu_inner_copy_risk .form-label-group {
  margin-right: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.ef_childedu_inner_copy_risk .form-label-group label {
  display: none;
}

.ef_childedu_inner_copy_risk .form-label-group select {
  padding-bottom: 6px;
  background: url(../images/icons/arrow-down-blue.svg) bottom 18px right 10px no-repeat;
  font-size: 22px;
  font-weight: 400;
}

.ef_childedu_inner_copy--btn {
  padding: 25px;
}

@media only screen and (max-width: 768px) {
  .ef_childedu_inner_copy--btn {
    padding: 20px;
  }
}

/* child education ends */
/* schemes starts */
.ef_mfresearch_schemes {
  background: #F6F9FF;
  border: 1px dashed #B8CEEF;
  border-radius: 4px;
  padding: 15px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_schemes {
    margin: 0 -20px;
    border-radius: 0px;
    margin-bottom: 30px;
  }
}

.ef_mfresearch_schemes--title {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #4F4F4F;
  margin-bottom: 15px;
}

.ef_mfresearch_schemes--title span {
  font-weight: 400;
}

.ef_mfresearch_schemes .form-label-group {
  width: 100%;
  margin-bottom: 10px;
}

.ef_mfresearch_schemes .ef_mfresearch_table_options {
  padding: 0px;
}

.ef_mfresearch_schemes input.datepicker {
  max-width: 100%;
  width: 100%;
}

.ef_mfresearch_dynamic_content_divident {
  width: 100%;
  position: relative;
}

/* schemes ends */
/* dynamic starts */
@media only screen and (max-width: 767px) {
  .ef_mfresearch_dynamic {
    margin-bottom: 20px;
  }
}

.ef_mfresearch_dynamic_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ef_mfresearch_dynamic_content.full_width .form-label-group {
  width: calc(100%);
}

.ef_mfresearch_dynamic_content .form-label-group {
  width: calc(50% - 20px);
  position: relative;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_dynamic_content .form-label-group {
    width: 100%;
  }
}

.ef_mfresearch_dynamic_content .delete {
  position: absolute;
  right: -6px;
  top: -12px;
  z-index: 1;
  cursor: pointer;
}

.ef_mfresearch_dynamic_content .input-daterange {
  width: calc(50% - 20px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1023px) {
  .ef_mfresearch_dynamic_content .input-daterange {
    width: 100%;
    margin-right: 0px;
  }
}

.ef_mfresearch_dynamic_content .input-daterange .form-label-group {
  margin-bottom: 0px;
  width: 50%;
}

.ef_mfresearch_dynamic_content .input-daterange .delete {
  position: absolute;
  right: -6px;
  top: -12px;
  z-index: 1;
  cursor: pointer;
}

/* dynamic ends */
/* swp table starts */
.ef_swp_table_tabs_each {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  background: #fff;
  border-bottom: #fff 2px solid;
  height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  cursor: pointer;
}

.ef_swp_table_tabs_each.active {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #01135C;
  background: #F6F9FF;
  border-bottom: #FF0000 2px solid;
}

/* swp table ends */
.ef_disqus {
  padding-bottom: 40px;
}

@media only screen and (max-width: 1023px) {
  .ef_disqus {
    padding: 0 20px 20px;
  }
}

/* mf research starts */
@media only screen and (max-width: 1023px) {
  .ef_mfresearch {
    padding: 0 20px;
  }
}

.ef_mfresearch_content {
  display: none;
  margin-bottom: 40px;
}

.ef_mfresearch_content.in {
  display: block;
  -webkit-animation: fadeIn_2 0.5s ease-in-out;
          animation: fadeIn_2 0.5s ease-in-out;
}

.ef_mfresearch_content_copy {
  font-size: 12px;
  line-height: 16px;
  color: #6F828E;
}

.ef_mfresearch_table_options {
  padding: 0px;
  text-align: right;
}

.ef_mfresearch_table_options a {
  height: 50px;
}

.ef_mfresearch_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #F6F9FF;
  border-radius: 4px;
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1023px) {
  .ef_mfresearch_search {
    padding: 20px;
    margin: 20px -20px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search .select2-container {
    min-width: 100%;
  }
}

.ef_mfresearch_search_tools {
  background: #0B3C84;
  border-radius: 4px;
  padding: 12px;
  min-width: 300px;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_tools {
    width: 100%;
    margin-right: 0px;
  }
  .ef_mfresearch_search_tools .form-label-group {
    width: 100%;
  }
}

.ef_mfresearch_search_tools .select2-container {
  min-width: 280px;
  max-width: 280px;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_tools .select2-container {
    min-width: 100%;
  }
}

.ef_mfresearch_search_tools--label {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
}

.ef_mfresearch_search_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options {
    width: 100%;
  }
}

.ef_mfresearch_search_options .ef_options {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .ef_mfresearch_search_options .ef_options {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ef_mfresearch_search_options .ef_options > div {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .ef_mfresearch_search_options .ef_options > div {
    width: 100%;
    margin-right: 0px;
  }
}

.ef_mfresearch_search_options .ef_options.in {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options .ef_options.in {
    width: 100%;
  }
}

.ef_mfresearch_search_options_filter {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter {
    width: 100%;
  }
}

.ef_mfresearch_search_options_filter img {
  margin-right: 4px;
}

.ef_mfresearch_search_options_filter--name {
  background: #0B3C84;
  color: #fff;
  font-size: 14px;
  padding: 0 15px;
  line-height: 24px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 150px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter--name {
    width: 100%;
  }
}

.ef_mfresearch_search_options_filter--name span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 150px;
}

.ef_mfresearch_search_options_filter_content {
  padding: 25px;
  position: absolute;
  min-width: 850px;
  background: #fff;
  top: 60px;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #0B3C84;
  display: none;
}

@media only screen and (max-width: 1023px) {
  .ef_mfresearch_search_options_filter_content {
    min-width: 100%;
    padding: 15px;
  }
}

.ef_mfresearch_search_options_filter_content.in {
  display: block;
  -webkit-animation: fadeIn_2 0.5s ease-in-out;
          animation: fadeIn_2 0.5s ease-in-out;
}

.ef_mfresearch_search_options_filter_content::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #0B3C84;
  top: -5px;
  left: 40px;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter_content::before {
    left: 50%;
  }
}

.ef_mfresearch_search_options_filter_content--reset {
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  position: absolute;
  right: 30px;
  top: 80px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .ef_mfresearch_search_options_filter_content--reset {
    right: 50px;
    top: 20px;
  }
}

.ef_mfresearch_search_options_filter_content--close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .ef_mfresearch_search_options_filter_content--close {
    right: 10px;
    top: 18px;
  }
}

.ef_mfresearch_search_options_filter_content--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
}

.ef_mfresearch_search_options_filter_content_tabs {
  list-style: none;
  padding-left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #DBE6F8;
  border: 1px solid #B0C6E5;
  border-radius: 4px;
  margin: 30px 0 20px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter_content_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.ef_mfresearch_search_options_filter_content_tabs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #B0C6E5;
  height: 32px;
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter_content_tabs li {
    font-size: 12px;
    padding: 0 8px;
    width: calc(100% /5);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ef_mfresearch_search_options_filter_content_tabs li:last-child {
  border: none;
}

.ef_mfresearch_search_options_filter_content_tabs li a {
  color: #333333;
  text-decoration: none;
}

.ef_mfresearch_search_options_filter_content_tabs li.active {
  background: #0B3C84;
}

.ef_mfresearch_search_options_filter_content_tabs li.active a {
  color: #fff;
}

.ef_mfresearch_search_options_filter_content_form_inner {
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.ef_mfresearch_search_options_filter_content_form_inner_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 150px;
  overflow-y: auto;
}

.ef_mfresearch_search_options_filter_content_form_inner_field::-webkit-scrollbar-track {
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_mfresearch_search_options_filter_content_form_inner_field::-webkit-scrollbar {
  width: 6px;
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_mfresearch_search_options_filter_content_form_inner_field::-webkit-scrollbar-thumb {
  background-color: #B9CBE2;
  border-radius: 100px;
  margin-right: 20px;
}

.ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox {
  margin-bottom: 6px;
  width: calc(100%/3 - 10px);
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox {
    width: 100%;
  }
}

.ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox label {
  margin-bottom: 0px;
  margin-bottom: 0px;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-weight: 500;
  padding-left: 0;
}

.ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox input {
  position: absolute;
  display: none;
}

.ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox input:checked ~ span {
  color: #01135C;
  font-weight: 600;
}

.ef_mfresearch_search_options_filter_content_form_inner_field .ef_checkbox span {
  font-size: 12px;
  line-height: 16px;
  color: #6F828E;
  cursor: pointer;
}

.ef_mfresearch_search_options .form-label-group {
  min-width: 150px;
  margin-right: 8px;
}

.ef_mfresearch_search_options .form-label-group input {
  max-width: 150px;
}

@media only screen and (max-width: 767px) {
  .ef_mfresearch_search_options .form-label-group input {
    min-width: 100%;
  }
}

/* mf research ends */
/* chart starts */
.ef_chart {
  margin-bottom: 30px;
}

.ef_chart--title {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  background: #14E3B0;
  padding: 10px 20px;
  border-radius: 4px;
}

.ef_chart--code {
  border: 1px solid #E0E7FF;
  border-radius: 4px;
  padding: 30px 0;
}

.ef_chart--code img {
  display: block;
  margin: 0 auto;
}

/* chart ends */
/* sticy navbar starts */
.ef_fixed_top {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  width: 100%;
  z-index: 1051;
}

@media only screen and (max-width: 1023px) {
  .ef_fixed_top {
    position: fixed;
    top: 60px;
    left: 0px;
  }
  .ef_fixed_top + .ef_breadcrumb {
    padding-top: 40px;
  }
}

.ef_sticynavbar {
  background: #F2F2F2;
}

@media only screen and (max-width: 1023px) {
  .ef_sticynavbar {
    padding-right: 20px;
  }
}

.ef_sticynavbar_list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px;
  height: 45px;
}

@media only screen and (max-width: 1023px) {
  .ef_sticynavbar_list {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

.ef_sticynavbar_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media only screen and (max-width: 1023px) {
  .ef_sticynavbar_list li {
    margin: 0 20px;
  }
}

.ef_sticynavbar_list li a {
  color: #666666;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_sticynavbar_list li a:hover {
  text-decoration: none;
  color: #01135C;
}

.ef_sticynavbar_list li.active a {
  color: #01135C;
}

/* sticy navbar ends */
/* portfolio stars */
@media only screen and (max-width: 768px) {
  .ef_portfolio {
    padding: 0 20px;
  }
}

.ef_portfolio_inner_tabs {
  padding: 30px 0;
}

@media only screen and (max-width: 768px) {
  .ef_portfolio_inner_tabs_list .ef_container_layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
  }
}

.ef_portfolio_inner_tabs_list--each {
  font-size: 15px;
  line-height: 22px;
  color: #666666;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 10px 30px;
  cursor: pointer;
  position: relative;
}

.ef_portfolio_inner_tabs_list--each.active {
  color: #01135C;
  font-weight: 600;
  background: #F6F9FF;
  border-bottom: #FF0000 2px solid;
}

.ef_portfolio_inner_tabs_list--each.active::before {
  display: none;
}

.ef_portfolio_inner_tabs_list--each::before {
  content: '';
  position: absolute;
  height: 40%;
  width: 1px;
  background: #E0E0E0;
  right: 0;
  top: 30%;
}

.ef_portfolio_inner_tabs_content {
  background: #F6F9FF;
  padding: 20px 0;
}

@media only screen and (max-width: 768px) {
  .ef_portfolio_inner_tabs_content {
    margin: 0 -20px;
    padding: 20px;
  }
}

.ef_portfolio_inner_tabs_content_each {
  background: #fff;
  padding: 30px;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_portfolio_inner_tabs_content_each {
    padding: 15px;
  }
}

.ef_portfolio_inner_tabs_content_each.down .ef_portfolio_inner_tabs_content_each_content--icon,
.ef_portfolio_inner_tabs_content_each.down .ef_portfolio_inner_tabs_content_each_invest_return--price span {
  background: #EB5757;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ef_portfolio_inner_tabs_content_each.down .ef_portfolio_inner_tabs_content_each_invest_return--price,
.ef_portfolio_inner_tabs_content_each.down .ef_portfolio_inner_tabs_content_each_content_text_info .value_2 {
  color: #EB5757;
}

.ef_portfolio_inner_tabs_content_each_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_portfolio_inner_tabs_content_each_content--icon {
  min-width: 46px;
  height: 46px;
  background: #27AE60;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

.ef_portfolio_inner_tabs_content_each_content_text--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

.ef_portfolio_inner_tabs_content_each_content_text--label {
  color: #56CCF2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #56CCF2;
  padding: 0 12px;
  border-radius: 100px;
  height: 26px;
  font-size: 12px;
  line-height: 18px;
}

.ef_portfolio_inner_tabs_content_each_content_text_info {
  margin: 15px 0;
}

.ef_portfolio_inner_tabs_content_each_content_text_info span {
  margin-right: 6px;
}

.ef_portfolio_inner_tabs_content_each_content_text_info .name {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  text-transform: uppercase;
}

.ef_portfolio_inner_tabs_content_each_content_text_info .value_1 {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.ef_portfolio_inner_tabs_content_each_content_text_info .value_2 {
  font-size: 16px;
  line-height: 24px;
  color: #27AE60;
}

.ef_portfolio_inner_tabs_content_each_content_text_info .date {
  font-size: 10px;
  line-height: 15px;
  color: #BDBDBD;
}

.ef_portfolio_inner_tabs_content_each_content_text_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--name {
  font-size: 11px;
  line-height: 18px;
  color: #0B3C84;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--value span:first-child {
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
  color: #0B3C84;
  display: inline-block;
  margin-right: 4px;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--value span:nth-child(2) {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  display: inline-block;
  margin-right: 4px;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--value span:last-child {
  font-size: 12px;
  line-height: 24px;
  color: #27AE60;
  display: inline-block;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--value span.icon span {
  width: 14px;
  height: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #27AE60;
  border-radius: 50%;
}

.ef_portfolio_inner_tabs_content_each_content_text_label--value span.icon span img {
  width: 5px;
}

.ef_portfolio_inner_tabs_content_each_content_text_details {
  background: #F6F9FF;
  border-radius: 4px;
  padding: 15px 15px 0;
  margin: 20px 0;
}

.ef_portfolio_inner_tabs_content_each_content_text_details--title {
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #6F828E;
}

.ef_portfolio_inner_tabs_content_each_content_text_details--value {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #27AE60;
  margin-bottom: 15px;
}

.ef_portfolio_inner_tabs_content_each_content_text_details--value.red {
  color: #CC171E;
}

.ef_portfolio_inner_tabs_content_each_invest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

.ef_portfolio_inner_tabs_content_each_invest_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.ef_portfolio_inner_tabs_content_each_invest_btn::before {
  position: absolute;
  content: '';
  z-index: -1;
  background: url("../images/icons/circle-lines.svg") center no-repeat;
  background-size: contain;
  width: 85px;
  height: 85px;
  right: -30px;
  top: -30px;
}

.ef_portfolio_inner_tabs_content_each_invest_btn--text {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  margin-right: 20px;
}

.ef_portfolio_inner_tabs_content_each_invest_btn--text span {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #666666;
}

.ef_portfolio_inner_tabs_content_each_invest_return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  min-width: 420px;
}

.ef_portfolio_inner_tabs_content_each_invest_return--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #01135C;
}

.ef_portfolio_inner_tabs_content_each_invest_return--title span {
  font-size: 12px;
  line-height: 18px;
  color: #BDBDBD;
  display: block;
}

.ef_portfolio_inner_tabs_content_each_invest_return--price {
  color: #27AE60;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

.ef_portfolio_inner_tabs_content_each_invest_return--price span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #27AE60;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ef_portfolio_inner_tabs_content_each_invest_return--price span img {
  max-width: 8px;
}

.ef_portfolio_inner_tabs_content_each_invest_years {
  text-align: right;
}

.ef_portfolio_inner_tabs_content_each_invest_years--each {
  font-weight: 500;
  font-size: 14px;
  color: #6F828E;
  height: 30px;
  padding: 0 15px;
  border: 1px solid #DAE0E9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  margin-right: 12px;
  cursor: pointer;
}

.ef_portfolio_inner_tabs_content_each_invest_years--each:last-child {
  margin-right: 0px;
}

.ef_portfolio_inner_tabs_content_each_invest_years--each.active {
  background: #01135C;
  border: 1px solid #01135C;
  color: #fff;
}

/* portfolio ends */
/* goal planning starts */
.ef_goalplanning {
  padding: 50px 0;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning .title_2 {
    padding: 0 20px 20px;
  }
}

.ef_goalplanning_img {
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_img {
    padding: 0 20px;
  }
}

.ef_goalplanning_img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 50px);
  left: 0;
  bottom: 0;
  background: #E8F2F6;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_img::before {
    height: 100%;
  }
}

.ef_goalplanning_img_copy {
  max-width: 370px;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_img_copy {
    padding-top: 20px;
  }
}

.ef_goalplanning_img_copy_hash span {
  font-size: 12px;
  line-height: 20px;
  margin-right: 20px;
}

.ef_goalplanning_img_copy--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  color: #01135C;
  margin-top: 4px;
}

.ef_goalplanning_img_picture {
  margin-top: -40px;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_img_picture {
    margin-top: 0px;
  }
}

.ef_goalplanning_goals {
  padding: 30px 50px;
  margin-bottom: 40px;
  border: 1px solid #DAE0E9;
  border-top: 0;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_goals {
    padding: 20px;
    border: none;
  }
}

.ef_goalplanning_goals--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #4F4F4F;
  font-family: "Poppins", sans-serif;
}

.ef_goalplanning_goals_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_goals_list {
    margin-bottom: 30px;
  }
}

.ef_goalplanning_goals_list_each {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% / 4);
  margin-bottom: 30px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_goals_list_each {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 10px;
  }
}

.ef_goalplanning_goals_list_each--icon svg path {
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_goalplanning_goals_list_each--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
  border: 1px solid #DAE0E9;
  border-radius: 50px;
  height: 38px;
  padding: 0 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_goalplanning_goals_list_each--title {
    font-size: 14px;
  }
}

.ef_goalplanning_goals_list_each:hover .ef_goalplanning_goals_list_each--title {
  background: #FF0000;
  border: 1px solid #FF0000;
  color: #fff;
}

.ef_goalplanning_goals_list_each:hover .ef_goalplanning_goals_list_each--icon svg path {
  fill: #FF0000;
}

/* goal planning ends */
/* portfolio popup starts */
.portfolio_popup .modal-content {
  background: #F6F9FF;
}

.portfolio_popup .modal-body {
  padding: 25px 50px;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup .modal-body {
    padding: 20px;
  }
}

.portfolio_popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  outline: none;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup .close {
    max-width: 30px;
    right: 10px;
    top: 10px;
  }
}

.portfolio_popup--title {
  font-size: 22px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
  padding: 30px 0;
  max-width: 500px;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup--title {
    font-size: 18px;
    line-height: 28px;
  }
}

.portfolio_popup_ques {
  padding: 25px 50px 0;
  background: #fff;
  margin: 0 -50px 30px;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup_ques {
    margin: 0 -20px 20px;
    padding: 20px;
  }
}

.portfolio_popup_ques_each {
  display: none;
}

.portfolio_popup_ques_each.in {
  display: block;
  -webkit-animation: fadeIn_2 0.5s ease-in-out;
          animation: fadeIn_2 0.5s ease-in-out;
}

.portfolio_popup_ques_each_count {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  padding-bottom: 16px;
}

.portfolio_popup_ques_each_count span {
  color: #FF0000;
}

.portfolio_popup_ques_each_text {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup_ques_each_text {
    font-size: 15px;
  }
}

.portfolio_popup_ques_each_options {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .portfolio_popup_ques_each_options {
    font-size: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .portfolio_popup_ques_each_options {
    margin-top: 20px;
  }
}

.portfolio_popup_ques_each_options .form-check {
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0px;
}

.portfolio_popup_ques_each_options .form-check label {
  cursor: pointer;
}

.portfolio_popup_ques_each_options .checkmark {
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  border: #333333 1px solid;
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.portfolio_popup_ques_each_options input[type="radio"] {
  display: none;
}

.portfolio_popup_ques_each_options input[type="radio"]:checked + .checkmark {
  border: #FF0000 6px solid;
}

.portfolio_popup_ques_each--btn {
  text-align: right;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

/* portfolio popup ends */
/* slider starts */
.ef_slider_wrapper {
  padding: 20px 0 0;
  position: relative;
}

.ef_slider_wrapper .swiper-slide-active .title_sub,
.ef_slider_wrapper .swiper-slide-active .title_1,
.ef_slider_wrapper .swiper-slide-active .ef_slider_wrapper_each_copy--btn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ef_slider_wrapper .swiper-slide-active .ef_slider_wrapper_each_img::before {
  opacity: 1;
}

.ef_slider_wrapper_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper_each {
    display: block;
  }
}

.ef_slider_wrapper_each::before {
  content: '';
  position: absolute;
  width: calc(100% + 16px);
  height: 100%;
  left: -8px;
  top: 0;
  background: #FFFFFF;
}

.ef_slider_wrapper_each_copy {
  max-width: 460px;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper_each_copy {
    padding-top: 10px;
  }
}

.ef_slider_wrapper_each_copy .title_sub {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.45s ease-in-out 0.95s;
  transition: 0.45s ease-in-out 0.95s;
}

.ef_slider_wrapper_each_copy .title_1 {
  margin: 10px 0 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.45s ease-in-out 1.25s;
  transition: 0.45s ease-in-out 1.25s;
}

.ef_slider_wrapper_each_copy .ef_slider_wrapper_each_copy--btn {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.45s ease-in-out 1.55s;
  transition: 0.45s ease-in-out 1.55s;
}

.ef_slider_wrapper_each_img {
  position: relative;
  z-index: 1;
}

.ef_slider_wrapper_each_img::before {
  content: '';
  position: absolute;
  background: url("../images/oval-bg-animation.svg") center bottom -50px no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.45s ease-in-out 1s;
  transition: 0.45s ease-in-out 1s;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper_each_img {
    padding-top: 80px;
    min-width: 100%;
    min-height: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.ef_slider_wrapper .swiper-container {
  margin-left: -8px;
  padding-left: 8px;
}

.ef_slider_wrapper .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper .swiper-pagination {
    bottom: 320px;
  }
}

.ef_slider_wrapper .swiper-button-next,
.ef_slider_wrapper .swiper-button-prev {
  top: auto;
  bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper .swiper-button-next,
  .ef_slider_wrapper .swiper-button-prev {
    display: none;
  }
}

.ef_slider_wrapper .swiper-button-next {
  right: 0px;
}

@media only screen and (max-width: 768px) {
  .ef_slider_wrapper .swiper-button-next {
    right: 0px;
  }
}

.ef_slider_wrapper .swiper-button-prev {
  left: auto;
  right: 50px;
}

/* slider ends */
/* mutual funds explore starts*/
.ef_mutualexplore {
  padding: 20px 0;
  background: linear-gradient(90.25deg, #11D5A4 24.94%, #14E3B0 103.31%);
  -webkit-box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_mutualexplore {
    border-radius: 0px;
  }
}

.ef_mutualexplore_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_mutualexplore_inner {
    display: block;
  }
  .ef_mutualexplore_inner .form-search {
    margin: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ef_mutualexplore_inner .btn_blue {
    margin-bottom: 12px;
    min-width: 100%;
  }
}

.ef_mutualexplore_inner--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #F6F9FF;
  font-family: "Poppins", sans-serif;
}

/* mutual funds explore ends*/
/* investment starts */
.ef_investment {
  padding: 50px 0;
}

.ef_investment_inner_wrapper .title_1 {
  margin-bottom: 10px;
}

.ef_investment_inner_wrapper_swiper {
  margin-top: 10px;
}

.ef_investment_inner_wrapper_swiper .swiper-container {
  padding-top: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_investment_inner_wrapper_swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ef_investment_inner_wrapper_swiper .swiper-wrapper .swiper-slide {
    width: calc(50% - 10px);
    display: block;
    margin-bottom: 20px;
  }
  .ef_investment_inner_wrapper_swiper .swiper-wrapper .swiper-slide .ef_investment_inner_wrapper_swiper_each {
    width: 100%;
    padding: 10px;
  }
  .ef_investment_inner_wrapper_swiper .swiper-pagination {
    display: none;
  }
}

.ef_investment_inner_wrapper_swiper_each {
  width: 190px;
  height: 110px;
  margin: 0 auto;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.ef_investment_inner_wrapper_swiper_each:hover {
  text-decoration: none;
}

.ef_investment_inner_wrapper_swiper_each:hover .ef_investment_inner_wrapper_swiper_each--title {
  color: #11D5A4;
}

.ef_investment_inner_wrapper_swiper_each_flex {
  text-align: center;
  width: 100%;
}

.ef_investment_inner_wrapper_swiper_each--icon {
  margin-bottom: 8px;
}

.ef_investment_inner_wrapper_swiper_each--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #6F828E;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_investment_inner_wrapper_swiper_each--label {
  font-size: 12px;
  line-height: 22px;
  color: #111111;
  background: #FFDF36;
  border-radius: 4px;
  position: absolute;
  text-transform: uppercase;
  padding: 0 10px;
  top: -10px;
  right: 0;
  z-index: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ef_investment_inner_wrapper_swiper_each--label::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-top: 12px solid #FFDF36;
  border-right: 12px solid transparent;
}

/* investment ends */
/* demat account starts */
.ef_demataccount_inner {
  padding: 20px 0;
  background: #FFFFFF;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}

.ef_demataccount_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper {
    display: block;
  }
}

.ef_demataccount_inner_wrapper_copy {
  max-width: 650px;
  padding: 0 100px;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper_copy {
    padding: 0px;
  }
}

.ef_demataccount_inner_wrapper_copy .title_2 {
  margin: 6px 0;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper_img {
    max-width: 200px;
    margin-bottom: 30px;
  }
}

/* demat account ends*/
/* goals ends*/
.ef_goals {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.ef_goals::before {
  content: '';
  position: absolute;
  width: 30%;
  height: calc(100% - 40px);
  right: 0;
  top: -10px;
  background: #F6F9FF;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .ef_goals::before {
    display: none;
  }
}

.ef_goals_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper {
    display: block;
  }
}

.ef_goals_inner_wrapper_copy_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0;
}

.ef_goals_inner_wrapper_copy_list_each {
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  width: calc(50% - 10px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_goals_inner_wrapper_copy_list_each:hover {
  text-decoration: none;
  background: #01135C;
}

.ef_goals_inner_wrapper_copy_list_each:hover .ef_goals_inner_wrapper_copy_list_each--title {
  color: #FFFFFF;
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_copy_list_each {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    height: auto;
  }
}

.ef_goals_inner_wrapper_copy_list_each--icon {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_copy_list_each--icon {
    margin-right: 0px;
    margin-bottom: 6px;
  }
}

.ef_goals_inner_wrapper_copy_list_each--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_copy_list_each--title {
    text-align: center;
    width: 100%;
    font-size: 14px;
  }
}

.ef_goals_inner_wrapper_img {
  padding: 50px 50px 0 50px;
  min-width: 540px;
  position: relative;
  z-index: 1;
  margin-left: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_img {
    min-width: 100%;
    margin-left: 0px;
    padding: 20px 20px 0;
    margin-top: 30px;
  }
}

.ef_goals_inner_wrapper_img::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: calc(100% + 143px);
  height: calc(100% + 60px);
  right: -143px;
  top: -60px;
  background: #F6F9FF;
  border-radius: 4px;
  border-bottom-left-radius: 150px;
}

@media only screen and (max-width: 1300px) {
  .ef_goals_inner_wrapper_img::before {
    width: calc(100% + 93px);
    right: -93px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_img::before {
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0;
    border-bottom-left-radius: 120px;
  }
}

.ef_goals_inner_wrapper_img--hash {
  font-size: 12px;
  line-height: 20px;
  color: #11D5A4;
  display: block;
}

.ef_goals_inner_wrapper_img--txt {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  margin: 4px 0 8px;
}

.ef_goals_inner_wrapper_img--terms {
  color: #C6CCD6;
  font-size: 12px;
  line-height: 20px;
  display: block;
  margin-bottom: 8px;
}

.ef_goals_inner_wrapper_img--picture {
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateX(130px);
          transform: translateX(130px);
}

@media only screen and (max-width: 768px) {
  .ef_goals_inner_wrapper_img--picture {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
    max-width: 250px;
    margin-top: 0px;
  }
}

/* goals ends*/
/* calculator starts */
@media only screen and (max-width: 768px) {
  .ef_calc {
    padding: 0 20px;
  }
}

.ef_calc .ef_childedu_inner_copy {
  border: #F2F2F2 1px solid;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_calc .ef_childedu_inner_copy {
    padding: 15px;
    margin-bottom: 15px;
  }
}

.ef_calc_menu_list {
  list-style: none;
  padding-left: 0px;
  background: #F6F9FF;
  border-radius: 8px;
  overflow: hidden;
}

.ef_calc_menu_list li {
  display: block;
  border: 1px solid #FFFFFF;
}

.ef_calc_menu_list li a {
  color: #6F828E;
  font-size: 14px;
  line-height: 24px;
  padding: 15px;
  display: block;
  text-decoration: none;
  position: relative;
}

.ef_calc_menu_list li a::before {
  content: '';
  position: absolute;
  background: url("../images/icons/arrow-grey.svg") center right 15px no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ef_calc_menu_list li.active a {
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  color: #FFFFFF;
  background: #01135C;
}

.ef_calc_menu_list li.active a::before {
  background: url("../images/icons/arrow-white.svg") center right 15px no-repeat;
}

.ef_calc_table {
  border: 1px solid #B8CEEF;
  padding: 25px;
  margin: 30px 0;
  border-radius: 4px;
}

.ef_calc_table--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #01135C;
}

.ef_calc_form {
  padding: 25px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_calc_form {
    padding: 15px;
  }
}

.ef_calc_form .form-label-group {
  min-width: 420px;
}

@media only screen and (max-width: 768px) {
  .ef_calc_form .form-label-group {
    min-width: 100%;
  }
}

.ef_calc_form .portfolio_popup_ques {
  margin: 0 auto;
  padding: 0px;
}

.ef_calc_form .portfolio_popup_ques_each--btn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  text-align: left;
}

.ef_calc_form .portfolio_popup_ques_each--btn span {
  color: #BDBDBD;
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
  display: inline-block;
  margin-right: 6px;
}

.ef_calc_form--title {
  font-size: 18px;
  line-height: 28px;
  color: #01135C;
  margin-bottom: 20px;
}

.ef_calc_form--subtitle {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.ef_calc_form_steps {
  font-size: 12px;
  line-height: 18px;
  color: #BDBDBD;
  text-align: right;
  margin-top: -10px;
}

.ef_calc_form_steps span {
  font-size: 14px;
  line-height: 28px;
  color: #01135C;
}

.ef_calc_form_steps span span {
  color: #FF0000;
  font-weight: 600;
}

.ef_calc .ef_mfresearch_dynamic {
  margin-bottom: 30px;
}

.ef_calc .ef_mfresearch_dynamic .dynamic_btn {
  float: right;
}

.ef_mfresearch_dropdown {
  background: transparent;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .ef_mfresearch_dropdown {
    margin-bottom: 0px;
  }
  .ef_mfresearch_dropdown .ef_mfresearch_search_btn {
    margin-bottom: 10px;
  }
}

.ef_shedule {
  margin: 0px 0 40px;
}

.ef_shedule--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
}

.ef_shedule--label {
  font-size: 12px;
  line-height: 24px;
  color: #6F828E;
}

.ef_graph_result {
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 40px;
}

.ef_graph_result--title {
  font-size: 18px;
  line-height: 28px;
  color: #01135C;
  margin-bottom: 20px;
}

.ef_graph_result .ef_chart--code {
  border: none;
  padding: 0 0 20px;
}

.ef_graph_result--btn {
  margin-top: 15px;
}

.ef_graph_result_info {
  background: #F6F9FF;
  border-radius: 4px;
  padding: 25px;
}

.ef_graph_result_info_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5EDF8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_graph_result_info_each:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.ef_graph_result_info_each:last-child .ef_graph_result_info_each--title {
  font-weight: bold;
}

.ef_graph_result_info_each:last-child .ef_graph_result_info_each--price {
  color: #27AE60;
}

.ef_graph_result_info_each--title {
  font-size: 12px;
  line-height: 18px;
  color: #4F4F4F;
  width: calc(60% - 10px);
}

.ef_graph_result_info_each--price {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  width: calc(40% - 10px);
  text-align: right;
}

/* calculator ends */
.ef_calculator {
  background: #F6F9FF;
}

@media only screen and (max-width: 768px) {
  .ef_calculator {
    padding-bottom: 20px;
  }
}

.ef_calculator_list_each {
  background: #fff;
  padding: 20px 30px;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_list_each {
    padding: 20px;
  }
}

.ef_calculator_list_each_copy--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #333333;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_list_each_copy--title {
    font-size: 16px;
    line-height: 20px;
  }
}

.ef_calculator_list_each_copy--text {
  font-size: 14px;
  line-height: 26px;
  color: #6F828E;
}

.ef_calculator_list_each--btn {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_list_each--btn {
    text-align: left;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_calculator_list_each--icon {
    margin-bottom: 10px;
  }
  .ef_calculator_list_each--icon img {
    height: 40px;
  }
}

.ef_calculator_block.mt-n {
  margin-top: -200px;
  position: relative;
  z-index: 1;
}

.ef_calculator_block_each {
  padding: 20px 30px;
  background: #fff;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_block_each {
    padding: 20px;
  }
}

.ef_calculator_block_each_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_block_each_title {
    min-height: auto;
    display: block;
  }
}

.ef_calculator_block_each_title--icon {
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_block_each_title--icon {
    margin-bottom: 10px;
  }
  .ef_calculator_block_each_title--icon img {
    height: 30px;
  }
}

.ef_calculator_block_each_title--txt {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #333333;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_block_each_title--txt {
    font-size: 16px;
    line-height: 20px;
  }
}

.ef_calculator_block_each--text {
  font-size: 14px;
  line-height: 26px;
  color: #6F828E;
  margin: 10px 0;
  min-height: 80px;
}

@media only screen and (max-width: 768px) {
  .ef_calculator_block_each--text {
    min-height: auto;
  }
}

/* fund details starts */
@media only screen and (max-width: 768px) {
  .ef_funddetails {
    padding: 0 20px;
  }
}

.ef_funddetails_header {
  position: relative;
  z-index: 1;
  min-height: 350px;
  background: url("../images/icons/mask.png") bottom no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_header {
    background: linear-gradient(96.15deg, #0E306D 10.57%, #10489B 71.37%);
  }
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_header {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

.ef_funddetails_header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/icons/pattern.svg") top right no-repeat;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_header::before {
    background-size: 50%;
  }
}

.ef_funddetails_header .btn_red_download {
  color: #ffffff;
}

.ef_funddetails_header .ef_breadcrumb {
  margin-bottom: 10px;
}

.ef_funddetails_header h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #F6F9FF;
  margin-bottom: 20px;
}

.ef_funddetails_header_btns_each {
  font-size: 12px;
  line-height: 18px;
  color: #A0B3DA;
  border: 1px solid #A0B3DA;
  height: 26px;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  margin-right: 10px;
}

.ef_funddetails_header_btns_each:hover {
  text-decoration: none;
  color: #A0B3DA;
}

.ef_funddetails_header .multi_btns {
  text-align: right;
  margin-top: 30px;
}

.ef_funddetails_header .form-search_2 {
  max-width: 280px;
  margin-left: auto;
  margin-right: 0;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_header .form-search_2 {
    margin: 0 auto;
    margin-top: 30px;
    min-width: 100%;
  }
}

.ef_funddetails_scheme {
  margin-top: -140px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme {
    margin: 0 -20px;
    margin-top: 20px;
  }
}

.ef_funddetails_scheme .ef_portfolio_inner_tabs_content_each_invest {
  padding: 0px;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme .ef_portfolio_inner_tabs_content_each_invest {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme .ef_portfolio_inner_tabs_content_each_invest_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ef_funddetails_scheme .ef_portfolio_inner_tabs_content_each_invest_btn::before {
    display: none;
  }
}

.ef_funddetails_scheme_value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_value .ef_funddetails_scheme_plan {
    padding-left: 0px;
  }
}

.ef_funddetails_scheme_value .ef_funddetails_scheme_plan::before {
  display: none;
}

.ef_funddetails_scheme_value.down .ef_funddetails_scheme--icon {
  background: #EB5757;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ef_funddetails_scheme_value.down .change_price {
  color: #EB5757;
}

.ef_funddetails_scheme--icon {
  min-width: 46px;
  height: 46px;
  background: #27AE60;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme--icon {
    min-width: 36px;
    height: 36px;
  }
}

.ef_funddetails_scheme_plan {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_plan {
    padding-left: 50px;
    margin-bottom: 20px;
  }
}

.ef_funddetails_scheme_plan::before {
  position: absolute;
  content: '';
  height: 52px;
  width: 1px;
  background: #E5EDF8;
  left: -20px;
  top: 0;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_plan::before {
    display: none;
  }
}

.ef_funddetails_scheme_plan--title {
  font-size: 12px;
  line-height: 24px;
  color: #6F828E;
}

.ef_funddetails_scheme_plan--text {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_funddetails_scheme_plan--text .change_price {
  color: #27AE60;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 8px;
}

.ef_funddetails_scheme_info {
  background: #FCFDFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 25px;
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_info {
    padding: 15px;
    margin: 0 -20px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_info .ef_portfolio_inner_tabs_content_each_invest_return {
    min-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_info .ef_portfolio_inner_tabs_content_each_invest_years {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ef_funddetails_scheme_info .ef_portfolio_inner_tabs_content_each_invest_years .ef_portfolio_inner_tabs_content_each_invest_years--each {
    margin-bottom: 10px;
  }
}

.ef_funddetails_scheme_info--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #01135C;
}

.ef_funddetails_scheme_info--text {
  font-size: 14px;
  line-height: 24px;
  color: #6F828E;
  margin: 8px 0 16px;
}

.ef_funddetails_scheme_inner {
  padding: 40px;
  background: #fff;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_inner {
    padding: 20px;
  }
}

.ef_funddetails_scheme_type {
  padding: 20px 0;
}

.ef_funddetails_scheme_type--title {
  font-size: 12px;
  line-height: 24px;
  color: #6F828E;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_type--title {
    font-size: 11px;
  }
}

.ef_funddetails_scheme_type--text {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #666666;
}

@media only screen and (max-width: 768px) {
  .ef_funddetails_scheme_type--text {
    font-size: 14px;
  }
}

.ef_funds_features {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features {
    margin: 0 -20px;
    margin-top: 30px;
  }
}

.ef_funds_features_equal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_funds_features_equal .ef_funds_features_each {
  width: calc(50% - 5px);
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_equal .ef_funds_features_each {
    width: 100%;
  }
}

.ef_funds_features_view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ef_funds_features_view_each {
  background: #DBE6F8;
  border: 1px solid #B0C6E5 !important;
  border-radius: 4px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  color: #333333;
  margin: 0 -4px !important;
  position: relative;
  cursor: pointer;
}

.ef_funds_features_view ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding-left: 0px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_view ul {
    margin-left: 4px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.ef_funds_features_view ul li {
  width: auto;
}

.ef_funds_features_view ul .ef_funds_features_view_each {
  min-width: 140px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_view ul .ef_funds_features_view_each {
    min-width: 120px;
  }
}

.ef_funds_features_view ul .active .ef_funds_features_view_each {
  color: #ffffff;
  background: #01135C;
  z-index: 1;
  border: transparent;
}

.ef_funds_features_table_equal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.ef_funds_features_table_equal_each {
  width: calc(50% - 25px);
}

.ef_funds_features_table_equal_each--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #01135C;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_table_equal_each {
    width: 100%;
  }
}

.ef_funds_features_each {
  padding: 40px;
  background: #fff;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_each {
    padding: 20px;
  }
}

.ef_funds_features_each_scheme--other {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  background: #FCFDFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 20px;
}

.ef_funds_features_each_pad {
  padding: 25px 0;
}

.ef_funds_features_each--label {
  font-size: 12px;
  line-height: 24px;
  color: #6F828E;
}

.ef_funds_features_each--copy {
  font-size: 14px;
  line-height: 24px;
  color: #333333;
}

.ef_funds_features_each--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #444444;
  margin-bottom: 6px;
}

.ef_funds_features_each--subtitle {
  color: #6F828E;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.ef_funds_features_each .ef_chart--code {
  border: none;
}

.ef_funds_features_each .ef_mfresearch_search {
  padding: 15px;
  margin-bottom: 0px;
}

.ef_funds_features_each_tabs {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_each_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto;
  }
}

.ef_funds_features_each_tabs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_each_tabs li {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.ef_funds_features_each_tabs li a {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
  padding: 0 20px;
  min-height: 44px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E8EFFC;
  border-radius: 4px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
  position: relative;
}

.ef_funds_features_each_tabs li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 40px;
  background: #FF0000;
}

@media only screen and (max-width: 768px) {
  .ef_funds_features_each_tabs li a {
    font-size: 14px;
    padding: 0 10px;
    margin-right: 20px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}

.ef_funds_features_each_tabs li.active a {
  color: #01135C;
  background: #F6F9FF;
}

.ef_funds_features_each_tabs li.active a::before {
  height: 2px;
}

.ef_funds_features_each_tabs_content_each {
  display: none;
}

.ef_funds_features_each_tabs_content_each.in {
  display: block;
  -webkit-animation: fadeIn_2 0.5s ease-in-out;
          animation: fadeIn_2 0.5s ease-in-out;
}

.ef_blue_nav {
  background: #0B3C84;
}

@media only screen and (max-width: 768px) {
  .ef_blue_nav {
    opacity: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
}

.ef_blue_nav.in {
  opacity: 1;
}

.ef_blue_nav li {
  padding: 0 40px;
}

@media only screen and (max-width: 768px) {
  .ef_blue_nav li {
    padding: 0 20px;
    margin: 0;
  }
}

.ef_blue_nav li a {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  padding: 12px 0;
}

.ef_blue_nav li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #F6BB19;
  bottom: 0px;
  left: 0px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_blue_nav li.active a, .ef_blue_nav li:hover a {
  color: #F6BB19;
}

.ef_blue_nav li.active a::before, .ef_blue_nav li:hover a::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* fund details ends */
/* clients starts */
.ef_clients {
  padding: 60px 0;
}

.ef_clients_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper {
    display: block;
  }
}

.ef_clients_inner_wrapper_quotes {
  max-width: calc(50% - 50px);
  padding-left: 40px;
  background: url("../images/icons/quote.svg") top left no-repeat;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_quotes {
    max-width: 100%;
    padding-left: 0;
    padding-top: 36px;
  }
}

.ef_clients_inner_wrapper_quotes_swiper_each--quote {
  font-size: 18px;
  line-height: 28px;
  color: #F6F9FF;
  margin-bottom: 20px;
}

.ef_clients_inner_wrapper_quotes_swiper_each_author--name {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #F6F9FF;
  display: block;
}

.ef_clients_inner_wrapper_quotes_swiper_each_author--place {
  font-size: 12px;
  line-height: 20px;
  color: #F6F9FF;
  display: block;
}

.ef_clients_inner_wrapper_quotes_swiper_pagination {
  position: relative;
  left: -10px;
}

.ef_clients_inner_wrapper_award {
  max-width: calc(50% - 50px);
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_award {
    max-width: 100%;
    margin-top: 20px;
  }
}

.ef_clients_inner_wrapper_award--title {
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #F6F9FF;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_award--title {
    font-size: 18px;
    line-height: 28px;
  }
}

.ef_clients_inner_wrapper_award_swiper {
  max-width: 400px;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_award_swiper {
    margin-right: -20px;
    max-width: 800px;
  }
  .ef_clients_inner_wrapper_award_swiper .swiper-pagination {
    display: none;
  }
}

.ef_clients_inner_wrapper_award_swiper_each {
  background: #11D5A4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 35px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_award_swiper_each {
    padding: 20px;
  }
}

.ef_clients_inner_wrapper_award_swiper_each--icon {
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #10BB90;
  border-radius: 60px;
  margin-right: 20px;
}

.ef_clients_inner_wrapper_award_swiper_each_copy--title {
  font-size: 22px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
}

@media only screen and (max-width: 768px) {
  .ef_clients_inner_wrapper_award_swiper_each_copy--title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ef_clients_inner_wrapper_award_swiper_each_copy--sub {
  font-size: 14px;
  line-height: 18px;
  color: #01135C;
}

/* clients starts */
/* grow starts */
.ef_grow {
  padding: 60px 0;
}

.ef_grow_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_grow_inner_wrapper {
    display: block;
    padding-top: 0px;
  }
}

.ef_grow_inner_wrapper_form {
  max-width: 540px;
}

.ef_grow_inner_wrapper_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ef_grow_inner_wrapper_form .inflation {
  font-style: italic;
  font-size: 11px;
  line-height: 15px;
  color: #6F828E;
  margin-bottom: 25px;
}

.ef_grow_inner_wrapper_form_each {
  margin: 15px 0;
  width: calc(50% - 20px);
}

.ef_grow_inner_wrapper_form_each--title {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 8px;
}

.ef_grow_inner_wrapper_form_each--full {
  width: 100%;
}

.ef_grow_inner_wrapper_form_each--terms {
  font-size: 11px;
  color: #6F828E;
  font-style: italic;
  margin-top: 2px;
}

.ef_grow_inner_wrapper_result {
  padding: 40px;
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  min-width: 480px;
  border-radius: 4px;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .ef_grow_inner_wrapper_result {
    min-width: 100%;
    padding: 30px;
    margin-top: 30px;
  }
}

.ef_grow_inner_wrapper_result_invest--title {
  font-size: 14px;
  line-height: 26px;
  color: #F6F9FF;
}

.ef_grow_inner_wrapper_result_invest--price {
  font-size: 22px;
  line-height: 30px;
  color: #F6F9FF;
}

.ef_grow_inner_wrapper_result_wealth {
  background: #11D5A4;
  border-radius: 4px;
  padding: 16px 60px;
  max-width: 320px;
  margin-top: 40px;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

@media only screen and (max-width: 768px) {
  .ef_grow_inner_wrapper_result_wealth {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    padding: 16px 40px;
  }
}

.ef_grow_inner_wrapper_result_wealth--title {
  font-size: 14px;
  line-height: 26px;
  color: #111111;
}

.ef_grow_inner_wrapper_result_wealth--price {
  font-size: 22px;
  line-height: 30px;
  color: #111111;
}

/* grow ends */
/* funds starts */
.ef_funds {
  background: #F6F9FF;
}

.ef_funds_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper {
    display: block;
  }
}

.ef_funds_inner_wrapper_img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  min-width: 300px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_img {
    display: none;
  }
}

.ef_funds_inner_wrapper_copy {
  padding: 80px 0px 80px 40px;
  max-width: calc(100% - 300px);
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_copy {
    max-width: 100%;
    padding: 40px 0px;
  }
}

.ef_funds_inner_wrapper_copy .title_1 {
  margin-bottom: 10px;
}

.ef_funds_inner_wrapper_swiper {
  margin: 30px 0;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_swiper {
    margin-right: -20px;
  }
}

.ef_funds_inner_wrapper_swiper .swiper-container {
  margin: 0 50px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_swiper .swiper-container {
    margin: 0;
  }
  .ef_funds_inner_wrapper_swiper .swiper-container .swiper-button-next,
  .ef_funds_inner_wrapper_swiper .swiper-container .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_swiper .swiper-button-next,
  .ef_funds_inner_wrapper_swiper .swiper-button-prev {
    display: none;
  }
}

.ef_funds_inner_wrapper_swiper_each {
  border: 1px solid #E5EDF8;
  background: #FFFFFF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 310px;
  margin: 0 auto;
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_swiper_each {
    margin: 0;
  }
}

.ef_funds_inner_wrapper_swiper_each:hover {
  text-decoration: none;
}

.ef_funds_inner_wrapper_swiper_each:hover .ef_funds_inner_wrapper_swiper_each--icon {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.ef_funds_inner_wrapper_swiper_each--icon {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  position: relative;
  z-index: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_funds_inner_wrapper_swiper_each--icon {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}

.ef_funds_inner_wrapper_swiper_each--icon::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #2B71DA;
  background: linear-gradient(135.43deg, #5BD8FF -2.09%, #2B71DA 100%);
  opacity: 0.1;
  border-radius: 50%;
}

.ef_funds_inner_wrapper_swiper_each_copy {
  width: calc(100% - 65px);
}

.ef_funds_inner_wrapper_swiper_each_copy--title {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.ef_funds_inner_wrapper_swiper_each_copy_fund {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_funds_inner_wrapper_swiper_each_copy_fund--return, .ef_funds_inner_wrapper_swiper_each_copy_fund--invest {
  font-size: 12px;
  font-weight: 400;
  color: #ADB7C2;
}

/* funds starts */
/* blogs page starts */
.ef_blogs_page {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner {
    padding: 0 20px;
  }
}

.ef_blogs_page_inner .title_1 {
  padding-bottom: 40px;
}

.ef_blogs_page_inner_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_search {
    display: block;
  }
}

.ef_blogs_page_inner_search--title h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #111111;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_search--title h1 {
    margin-top: 20px;
  }
}

.ef_blogs_page_inner_search .form-search_2 {
  min-width: 280px;
}

.ef_blogs_page_inner_search .form-search_2 input {
  width: 100%;
}

.ef_blogs_page_inner_main .ef_blogs_inner_wrapper_swiper_each {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

.ef_blogs_page_inner_list {
  padding-top: 50px;
}

.ef_blogs_page_inner_list h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.ef_blogs_page_inner_list_tabs {
  padding: 0px 0 40px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_list_tabs {
    overflow-y: auto;
    padding-bottom: 20px;
    margin-right: -20px;
  }
}

.ef_blogs_page_inner_list_tabs ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_blogs_page_inner_list_tabs ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_list_tabs ul li {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin-right: 20px;
  }
}

.ef_blogs_page_inner_list_tabs ul li a {
  color: #6F828E;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 18px;
  border-radius: 100px;
  background: #F6F9FF;
}

.ef_blogs_page_inner_list_tabs ul li a:hover {
  text-decoration: none;
}

.ef_blogs_page_inner_list_tabs ul li.active a {
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  color: #F9F9F9;
}

.ef_blogs_page_inner_list_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each {
  display: block;
  max-width: 375px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each {
    max-width: 320px;
  }
}

.ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each_copy {
  border: 1px solid #E5EDF8;
  border-top: 0px;
  padding: 25px;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each_copy {
    padding: 15px;
  }
}

.ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each--img img {
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each_copy--title {
  font-size: 16px;
  line-height: 24px;
}

.ef_blogs_page_inner_list_pagination {
  margin: 20px 0;
}

.ef_blogs_page_inner_list_pagination ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.ef_blogs_page_inner_list_pagination ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_list_pagination ul li {
    margin-bottom: 10px;
  }
}

.ef_blogs_page_inner_list_pagination ul li a {
  font-family: "Open Sans", sans-serif;
  height: 36px;
}

.ef_blogs_page_inner_info {
  border: 0.5px solid #C6CCD6;
  border-radius: 4px;
}

.ef_blogs_page_inner_info_each {
  padding: 30px;
  border-bottom: 0.5px solid #C6CCD6;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page_inner_info_each {
    padding: 20px;
  }
}

.ef_blogs_page_inner_info_each:last-child {
  border-bottom: none;
}

.ef_blogs_page_inner_info_each--subtitle {
  font-size: 14px;
  line-height: 26px;
  color: #6F828E;
  margin-top: 10px;
}

.ef_blogs_page_inner_info_each--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}

.ef_blogs_page_inner_info_each--title2 {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #01135C;
}

.ef_blogs_page_inner_info_each--list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 10px;
}

.ef_blogs_page_inner_info_each--list li {
  display: block;
}

.ef_blogs_page_inner_info_each--list li a {
  font-size: 14px;
  line-height: 30px;
  color: #6F828E;
}

.ef_blogs_page_inner_info_each--title3 {
  color: #6F828E;
  font-style: italic;
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
}

.ef_blogs_page_inner_info_each--text {
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #6F828E;
  margin-top: 10px;
}

.ef_blogs_page_inner_info_each .btn {
  margin-top: 10px;
}

.ef_blogs_page .ef_mailbox {
  margin-top: 0px;
  padding: 20px 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_page .ef_mailbox {
    padding: 20px 0;
    margin: 0 0 20px;
  }
}

/* blogs page ends */
/* blogs detail page starts */
.ef_blogs_detail_page {
  padding: 30px 0;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page {
    padding: 20px;
  }
}

.ef_blogs_detail_page_inner_title h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #111111;
}

.ef_blogs_detail_page_inner_labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_labels {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ef_blogs_detail_page_inner_labels .ef_blogs_inner_wrapper_swiper_each_copy_share {
  top: -10px;
  right: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_labels .ef_blogs_inner_wrapper_swiper_each_copy_share {
    top: auto;
    right: 0px;
    bottom: -80px;
    z-index: 1;
  }
}

.ef_blogs_detail_page_inner_labels--date {
  font-size: 12px;
  line-height: 20px;
  color: #8B8B8B;
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_labels--date {
    margin-bottom: 4px;
  }
}

.ef_blogs_detail_page_inner_labels--author {
  font-size: 12px;
  line-height: 20px;
  color: #8B8B8B;
  margin-right: 30px;
}

.ef_blogs_detail_page_inner_labels--hash {
  font-size: 12px;
  line-height: 20px;
  color: #FF0000;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content--banner {
    margin: 0 -20px;
    border-radius: 0px;
  }
}

.ef_blogs_detail_page_inner_content img {
  margin-bottom: 40px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content img {
    margin-bottom: 30px;
    width: 100%;
  }
}

.ef_blogs_detail_page_inner_content h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #111111;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content h2 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.ef_blogs_detail_page_inner_content p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content p {
    margin-bottom: 30px;
    font-size: 15px;
  }
}

.ef_blogs_detail_page_inner_content ul {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content ul {
    margin-bottom: 30px;
  }
}

.ef_blogs_detail_page_inner_content ul li {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_content ul li {
    margin-bottom: 10px;
    font-size: 15px;
  }
}

.ef_blogs_detail_page_inner_conclusion {
  background: rgba(177, 211, 255, 0.24);
  padding: 25px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_detail_page_inner_conclusion {
    padding: 15px;
  }
}

.ef_blogs_detail_page_inner_conclusion h5 {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #01135C;
}

.ef_blogs_detail_page_inner_conclusion p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 0px;
}

/* blogs detail page ends */
/* blogs starts */
.ef_blogs {
  padding: 80px 0;
  position: relative;
  padding-top: 150px;
  margin-top: 50px;
  z-index: 1;
}

.ef_blogs::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/oval-bg-left-animation.svg") left top no-repeat;
  background-size: contain;
  height: 500px;
  width: 500px;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .ef_blogs::before {
    height: 300px;
    width: 300px;
    top: 100px;
  }
}

.ef_blogs_inner {
  padding-left: 143px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner {
    padding-left: 20px;
  }
}

.ef_blogs_inner_wrapper .title_1 {
  margin-bottom: 10px;
}

.ef_blogs_inner_wrapper_swiper {
  margin-top: 30px;
  position: relative;
}

.ef_blogs_inner_wrapper_swiper .aos-init {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper .swiper-pagination {
    display: none;
  }
}

.ef_blogs_inner_wrapper_swiper .btn {
  position: absolute;
  bottom: 5px;
  right: 35%;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper .btn {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }
}

.ef_blogs_inner_wrapper_swiper_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 4px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .ef_blogs_inner_wrapper_swiper_each {
    display: block;
    max-width: 380px;
  }
}

.ef_blogs_inner_wrapper_swiper_each--img {
  min-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .ef_blogs_inner_wrapper_swiper_each--img {
    min-width: 100%;
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy {
  padding: 50px;
  border: 1px solid #E5EDF8;
  border-left: 0px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .ef_blogs_inner_wrapper_swiper_each_copy {
    padding: 20px;
    border-top: 0px;
    border-left: 1px solid #E5EDF8;
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy a:hover {
  text-decoration: none;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share {
  position: absolute;
  right: 12px;
  top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: transparent 1px solid;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  background: #fff;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper_each_copy_share {
    border: #E5EDF8 1px solid;
    top: -50px;
    background: rgba(0, 0, 0, 0.5);
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy_share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 0px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper_each_copy_share_list {
    width: 120px;
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy_share_list a {
  margin-right: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share_list a svg path {
  fill: #E0E0E0;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share_list a:hover svg path {
  fill: #11D5A4;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share--icon {
  border-left: transparent 1px solid;
  padding-left: 12px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper_each_copy_share--icon {
    border-left: #E5EDF8 1px solid;
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy_share:hover {
  border: #E5EDF8 1px solid;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share:hover .ef_blogs_inner_wrapper_swiper_each_copy_share--icon {
  border-left: #E5EDF8 1px solid;
}

.ef_blogs_inner_wrapper_swiper_each_copy_share:hover .ef_blogs_inner_wrapper_swiper_each_copy_share_list {
  width: 120px;
}

.ef_blogs_inner_wrapper_swiper_each_copy--hash {
  font-size: 12px;
  line-height: 20px;
  color: #11D5A4;
}

.ef_blogs_inner_wrapper_swiper_each_copy--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #111111;
  margin: 8px 0 16px;
}

@media only screen and (max-width: 768px) {
  .ef_blogs_inner_wrapper_swiper_each_copy--title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ef_blogs_inner_wrapper_swiper_each_copy--date {
  font-size: 12px;
  line-height: 20px;
  color: #8B8B8B;
}

/* blogs ends */
/* risk profile starts */
.ef_riskprofile {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_riskprofile {
    margin-bottom: 30px;
  }
}

.ef_riskprofile_text {
  margin-top: 10px;
}

.ef_riskprofile_text h5 {
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  color: #01135C;
}

.ef_riskprofile_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ef_riskprofile_tabs--each {
  border: 1px solid #DAE0E9;
  border-radius: 50px;
  padding: 4px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_riskprofile_tabs--each.in, .ef_riskprofile_tabs--each:hover {
  background: #FF0000;
  border: 1px solid #FF0000;
  color: #ffffff;
}

.ef_riskprofile_tabs_info {
  border: 1px solid #DAE0E9;
  border-radius: 4px;
  margin: 30px 0 60px;
}

.ef_riskprofile_tabs_info_head {
  padding: 20px 30px;
  border-bottom: 1px solid #DAE0E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .ef_riskprofile_tabs_info_head {
    display: block;
    padding: 20px;
  }
}

.ef_riskprofile_tabs_info_head_copy--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
}

.ef_riskprofile_tabs_info_head_copy--text {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}

@media only screen and (max-width: 768px) {
  .ef_riskprofile_tabs_info_head--btn {
    margin-top: 10px;
  }
}

.ef_riskprofile_tabs_info_content {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_riskprofile_tabs_info_content {
    padding: 20px;
  }
}

.ef_riskprofile_tabs_info_content_each {
  margin: 10px 0;
}

.ef_riskprofile_tabs_info_content_each--title {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 6px;
}

.ef_riskprofile_tabs_info_content_each--text {
  font-size: 14px;
  line-height: 24px;
  color: #828282;
}

/* risk profile ends */
/* partners starts */
.ef_partners {
  border-top: 1px solid #E5EDF8;
  border-bottom: 1px solid #E5EDF8;
}

.ef_partners_inner {
  padding: 60px 0;
}

.ef_partners_inner_swiper {
  padding-top: 50px;
}

.ef_partners_inner_swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.ef_partners_inner_swiper_each img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_partners_inner_swiper_each img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}

.ef_partners_inner_swiper_each:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* partners ends */
/* get in touch starts */
.ef_getin_touch {
  background: #F6F9FF;
  padding: 100px 0;
}

@media only screen and (max-width: 768px) {
  .ef_getin_touch {
    padding: 30px 0 80px;
  }
}

.ef_getin_touch_inner {
  background: #FFFFFF;
  padding: 50px 0;
}

@media only screen and (max-width: 768px) {
  .ef_getin_touch_inner {
    margin: 20px;
  }
}

.ef_getin_touch_inner_form {
  padding-top: 16px;
}

.ef_getin_touch_inner_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ef_getin_touch_inner_form input,
.ef_getin_touch_inner_form select {
  min-width: 250px;
}

@media only screen and (max-width: 768px) {
  .ef_getin_touch_inner_form .form-label-group {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.ef_getin_touch_inner_form--submit {
  margin-top: 16px;
}

/* get in touch ends */
/* mailbox starts*/
.ef_mailbox {
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  padding: 20px 0;
  border-radius: 4px;
  margin-top: -95px;
}

@media only screen and (max-width: 768px) {
  .ef_mailbox {
    margin: 0 20px;
    margin-top: -155px;
  }
}

.ef_mailbox p {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}

.ef_mailbox_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_mailbox_inner {
    display: block;
  }
}

.ef_mailbox_inner_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .ef_mailbox_inner_form form {
    display: block;
    margin-top: 15px;
  }
}

.ef_mailbox_inner_form input {
  min-width: 300px;
}

@media only screen and (max-width: 768px) {
  .ef_mailbox_inner_form input {
    min-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .ef_mailbox_inner_form .form-label-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.ef_mailbox_inner_form button {
  height: 50px;
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .ef_mailbox_inner_form button {
    margin-left: 0px;
    margin-top: 15px;
  }
}

/* mailbox ends*/
/* leadership starts*/
.ef_leadership {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_leadership {
    padding: 30px 0;
  }
}

.ef_leadership_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper {
    display: block;
    padding: 30px 0 0px;
    position: relative;
  }
}

.ef_leadership_inner_wrapper_arrow {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_arrow {
    display: block;
  }
}

.ef_leadership_inner_wrapper_arrow img {
  height: 30px;
}

.ef_leadership_inner_wrapper_arrow--left {
  position: absolute;
  right: 40px;
  bottom: 100px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  z-index: 9;
}

.ef_leadership_inner_wrapper_arrow--right {
  position: absolute;
  right: 0px;
  bottom: 100px;
  z-index: 9;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: auto;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    pointer-events: none;
  }
}

.ef_leadership_inner_wrapper_tabs_each {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #0B3C84;
  font-family: "Poppins", sans-serif;
  min-width: 520px;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 2px;
  cursor: pointer;
  z-index: 1;
  position: relative;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_tabs_each {
    min-width: 100%;
    margin-right: 20px;
    font-size: 18px;
    padding: 16px;
  }
}

.ef_leadership_inner_wrapper_tabs_each::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #E6FAF5;
  z-index: -1;
  border-radius: 4px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_leadership_inner_wrapper_tabs_each span {
  font-size: 16px;
  line-height: 24px;
  color: rgba(33, 56, 66, 0.6);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: block;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_leadership_inner_wrapper_tabs_each.in {
  color: #01135C;
  background: #14E3B0;
}

.ef_leadership_inner_wrapper_tabs_each.in span {
  color: #01135C;
}

.ef_leadership_inner_wrapper_tabs_each.in::before {
  background: #14E3B0;
  width: calc(100% + 20px);
  left: -20px;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_tabs_each.in::before {
    left: 0px;
    width: 100%;
  }
}

.ef_leadership_inner_wrapper_img {
  min-width: 500px;
  min-height: 500px;
  position: relative;
  margin-left: -260px;
}

@media only screen and (max-width: 767px) {
  .ef_leadership_inner_wrapper_img {
    margin-left: 0px;
    max-width: 100%;
    min-width: 100%;
    min-height: 300px;
  }
}

@media only screen and (max-width: 1023px) {
  .ef_leadership_inner_wrapper_img {
    margin-left: 0px;
    max-width: 50%;
    min-width: 50%;
    min-height: 300px;
  }
}

.ef_leadership_inner_wrapper_img::before {
  content: '';
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../images/oval-bg.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-185deg);
          transform: rotate(-185deg);
  opacity: 0.5;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_img::before {
    -webkit-transform: rotate(-175deg);
            transform: rotate(-175deg);
    width: 75%;
    left: 0px;
    top: 20px;
  }
}

.ef_leadership_inner_wrapper_img_each {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_img_each {
    max-width: 100%;
    margin: 0 auto;
    z-index: -2;
  }
  .ef_leadership_inner_wrapper_img_each img {
    max-width: 240px;
    display: block;
  }
}

.ef_leadership_inner_wrapper_img_each.in {
  opacity: 1;
  z-index: 2;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.ef_leadership_inner_wrapper_copy {
  margin-top: -60px;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid #E3EAF7;
  padding: 25px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_copy {
    margin-top: 10px;
    padding: 16px;
  }
}

.ef_leadership_inner_wrapper_copy_each {
  font-size: 16px;
  line-height: 24px;
  color: #01135C;
  display: none;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .ef_leadership_inner_wrapper_copy_each {
    text-align: left;
  }
}

.ef_leadership_inner_wrapper_copy_each.in {
  display: block;
  -webkit-animation: fadeIn_2 0.5s ease-in-out;
          animation: fadeIn_2 0.5s ease-in-out;
}

/* leadership ends*/
/* services block starts*/
.ef_services_block {
  padding: 10px 0 60px;
}

@media only screen and (max-width: 768px) {
  .ef_services_block {
    padding: 20px 0;
  }
}

.ef_services_block--img {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_services_block--img {
    margin-bottom: 30px;
  }
}

.ef_services_block--img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/oval-bg.svg") center bottom -100px no-repeat;
  background-size: contain;
  z-index: -1;
  left: 0;
  bottom: 0;
  opacity: 0.5;
}

.ef_services_block--text .title_2 {
  margin: 10px 0;
}

/* services block ends*/
/* history starts*/
.ef_history {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_history {
    padding: 30px 0;
  }
}

.ef_history_inner_swiper {
  position: relative;
  z-index: 1;
  margin-top: 120px;
  margin-bottom: 100px;
  margin-left: 120px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper {
    margin-bottom: 40px;
    margin-left: 40px;
  }
}

.ef_history_inner_swiper .swiper-container {
  max-width: calc(100% - 120px);
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper .swiper-container {
    max-width: 100%;
  }
}

.ef_history_inner_swiper--next {
  top: auto;
  bottom: 0;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper--next {
    bottom: -60px;
  }
}

.ef_history_inner_swiper--prev {
  top: auto;
  bottom: 0;
  right: 60px;
  left: auto;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper--prev {
    bottom: -60px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.ef_history_inner_swiper::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 380px;
  height: 380px;
  background: url(../images/oval-bg.svg) left no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-210deg);
          transform: rotate(-210deg);
  bottom: 0;
  left: -100px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper::before {
    left: -60px;
    width: 280px;
    height: 280px;
  }
}

.ef_history_inner_swiper_text .swiper-slide.swiper-slide-active .ef_history_inner_swiper_text_each {
  opacity: 1;
}

.ef_history_inner_swiper_text .swiper-slide.swiper-slide-active .ef_history_inner_swiper_text_each--text {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.ef_history_inner_swiper_text_each {
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  border-radius: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  min-width: 400px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  max-width: 450px;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  -webkit-transition: 0.65s ease-in-out;
  transition: 0.65s ease-in-out;
}

.ef_history_inner_swiper_text_each--text {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.45s ease-in-out 0.5s;
  transition: 0.45s ease-in-out 0.5s;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_text_each {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    padding: 20px;
    margin-bottom: 40px;
    min-width: 100%;
  }
}

.ef_history_inner_swiper_text_each::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #01135C;
  bottom: -10px;
  left: 60px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_text_each::before {
    left: 40px;
  }
}

.ef_history_inner_swiper_years .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ef_history_inner_swiper_years .swiper-slide {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_years .swiper-slide {
    font-size: 18px;
    line-height: 24px;
  }
}

.ef_history_inner_swiper_years .swiper-slide.swiper-slide-active {
  opacity: 1;
  color: #CC171E;
  font-weight: 500;
  font-size: 60px;
  line-height: 46px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_years .swiper-slide.swiper-slide-active {
    font-size: 40px;
    line-height: 46px;
  }
}

.ef_history_inner_swiper_years_each {
  cursor: pointer;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* history history*/
/* wealth starts*/
.ef_wealth {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_wealth {
    padding: 30px 0;
  }
}

.ef_wealth_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner {
    display: block;
  }
}

.ef_wealth_inner .title_sub,
.ef_wealth_inner .title_1 {
  margin-bottom: 10px;
}

.ef_wealth_inner_copy {
  max-width: calc(50% - 40px);
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner_copy {
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.ef_wealth_inner_img {
  min-width: calc(50% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 50px;
  padding-left: 10px;
  position: relative;
  z-index: 1;
}

.ef_wealth_inner_img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/oval-bg.svg") center no-repeat;
  background-size: contain;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner_img::before {
    background-size: 150% 150%;
    width: calc(100% + 40px);
    left: -20px;
    background-position: top;
  }
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner_img {
    max-width: 100%;
    padding: 60px 0;
  }
}

.ef_wealth_inner_img--title {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  color: #0B3C84;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner_img--title {
    font-size: 22px;
    line-height: 46px;
  }
}

.ef_wealth_inner_img--subtitle {
  font-size: 22px;
  line-height: 30px;
  color: #323232;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .ef_wealth_inner_img--subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}

.ef_wealth_inner_img--text {
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
}

/* wealth ends*/
/* awards starts*/
.ef_awards {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_awards {
    padding: 30px 0;
  }
}

.ef_awards_inner_swiper {
  padding: 50px 0 10px;
}

@media only screen and (max-width: 768px) {
  .ef_awards_inner_swiper {
    margin-right: -20px;
  }
}

.ef_awards_inner_swiper_each {
  text-align: center;
}

.ef_awards_inner_swiper_each_img {
  width: 192px;
  height: 86px;
  background: url("../images/icons/award.svg") center no-repeat;
  background-size: contain;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .ef_awards_inner_swiper_each_img {
    width: 162px;
  }
}

.ef_awards_inner_swiper_each_img--title {
  font-weight: 500;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: #F6BB19;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 768px) {
  .ef_awards_inner_swiper_each_img--title {
    font-size: 18px;
  }
}

.ef_awards_inner_swiper_each_copy {
  margin-top: 10px;
}

.ef_awards_inner_swiper_each_copy--title {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #0B3C84;
}

.ef_awards_inner_swiper_each_copy--text {
  font-size: 16px;
  line-height: 24px;
  color: #323232;
}

/* awards ends*/
/* banner starts*/
.ef_banner {
  padding: 20px 0 50px;
}

@media only screen and (max-width: 768px) {
  .ef_banner {
    padding-bottom: 20px;
  }
}

.ef_banner.dots_hori_left::before {
  top: 240px;
}

.ef_banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_banner_inner {
    display: block;
  }
}

.ef_banner_inner_copy {
  padding-top: 40px;
  max-width: 540px;
}

@media only screen and (max-width: 768px) {
  .ef_banner_inner_copy {
    padding-top: 0px;
    margin-bottom: 30px;
    max-width: 100%;
  }
}

.ef_banner_inner_copy .title_2 {
  margin-bottom: 10px;
}

.ef_banner_inner_copy .title_1 {
  margin: 10px 0;
}

.ef_banner_inner_copy--text {
  font-size: 22px;
  line-height: 24px;
  color: #323232;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
  .ef_banner_inner_copy--text {
    font-size: 16px;
    line-height: 20px;
  }
}

.ef_banner_inner_copy--text2 {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_banner_inner_copy--text2 {
    font-size: 14px;
    line-height: 20px;
  }
}

.ef_banner_inner_img {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_banner_inner_img {
    text-align: center;
  }
}

.ef_banner_inner_img::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/oval-bg-animation.svg") center no-repeat;
  background-size: contain;
  z-index: -1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ef_banner_strip {
  background: linear-gradient(90.25deg, #11D5A4 24.94%, #10D6A4 103.31%);
  -webkit-box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_banner_strip {
    background: transparent;
    margin-top: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.ef_banner_strip_inner {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .ef_banner_strip_inner {
    display: block;
    height: auto;
  }
}

.ef_banner_strip_inner_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .ef_banner_strip_inner_each {
    background: linear-gradient(90.25deg, #11D5A4 24.94%, #10D6A4 103.31%);
    -webkit-box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    height: 80px;
    padding: 30px;
    margin-bottom: 10px;
  }
}

.ef_banner_strip_inner_each--icon {
  background: #10BB90;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  color: #fff;
  font-family: Poppins;
  font-weight: 500;
  font-size: 22px;
  line-height: 47px;
}

.ef_banner_strip_inner_each_copy--title {
  font-size: 22px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
}

.ef_banner_strip_inner_each_copy--text {
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.ef_banner_strip_inner_each_copy--textsmall {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  max-width: 200px;
}

.ef_banner_strip_inner_each_copy--textmedium {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
}

/* banner ends*/
/* sip calculator starts*/
.ef_sipcalc {
  padding: 60px 0;
}

.ef_sipcalc_form {
  padding-top: 40px;
}

.ef_sipcalc_form .range-slider_ion {
  padding-bottom: 20px;
}

.ef_sipcalc_form label {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 0;
}

.ef_sipcalc_form_result {
  border-radius: 4px;
  padding: 20px 40px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_sipcalc_form_result {
    padding: 20px;
  }
}

.ef_sipcalc_form_result_each {
  padding: 10px 0;
}

.ef_sipcalc_form_result_each--title {
  font-size: 14px;
  line-height: 26px;
  color: #F6F9FF;
}

.ef_sipcalc_form_result_each--number {
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: #F6F9FF;
}

.ef_sipcalc_form_result_each.amount {
  background: #14E3B0;
  background: #14E3B0;
  border-radius: 4px;
  padding: 10px 20px;
}

.ef_sipcalc_form_result_each.amount .ef_sipcalc_form_result_each--title,
.ef_sipcalc_form_result_each.amount .ef_sipcalc_form_result_each--number {
  color: #111111;
}

/* sip calculator ends*/
/* sip work starts*/
.ef_sipwork_inner {
  padding: 50px 0;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
}

.ef_sipwork_inner h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #0B3C84;
}

.ef_sipwork_inner_each {
  text-align: center;
  padding: 30px 0;
}

@media only screen and (min-width: 768px) {
  .ef_sipwork_inner_each {
    min-width: 200px;
  }
}

.ef_sipwork_inner_each--title {
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  margin: 20px 0;
}

.ef_sipwork_inner_each_calc {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #01135C;
  font-family: "Poppins", sans-serif;
}

.ef_sipwork_inner_each_calc--top {
  border-bottom: 0.5px solid #B1D3FF;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: inline-block;
}

.ef_sipwork_inner_each span {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
}

.ef_sipwork_inner_each.value {
  background: rgba(236, 244, 255, 0.24);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

/* sip work ends*/
/* breadcrumb starts*/
@media only screen and (max-width: 768px) {
  .ef_breadcrumb {
    padding: 0 20px;
  }
}

.ef_breadcrumb.white .ef_breadcrumb_list li {
  color: #ffffff;
}

.ef_breadcrumb_list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  padding: 20px 0 6px;
}

.ef_breadcrumb_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  position: relative;
  font-weight: 700;
}

.ef_breadcrumb_list li::after {
  content: '/';
  padding-left: 6px;
}

.ef_breadcrumb_list li:last-child::after {
  display: none;
}

.ef_breadcrumb_list li a {
  color: #FF0000;
  font-weight: 400;
}

.ef_breadcrumb_list li a:hover {
  text-decoration: none;
}

/* breadcrumb ends*/
/* returns starts*/
.ef_returns {
  padding: 40px 0;
}

.ef_returns_copy .title_1 {
  margin-bottom: 10px;
}

.ef_returns_img {
  font-style: italic;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  min-height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/oval-bg.svg") center bottom -130px no-repeat;
}

@media only screen and (max-width: 768px) {
  .ef_returns_img {
    margin: 0 -20px;
  }
}

.ef_returns_img--text {
  max-width: 380px;
}

@media only screen and (max-width: 768px) {
  .ef_returns_img--text {
    padding: 20px;
  }
}

/* returns ends*/
/* services starts*/
.ef_services {
  padding: 30px 0;
}

@media only screen and (max-width: 768px) {
  .ef_services {
    padding: 20px 0;
  }
}

.ef_services_inner .row {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .ef_services_inner .row {
    margin-bottom: 0px;
  }
}

.ef_services_inner_each {
  max-width: 350px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .ef_services_inner_each {
    height: auto;
    margin-bottom: 30px;
  }
}

.ef_services_inner_each:hover .ef_services_inner_each--icon {
  -webkit-animation: iconanim .85s ease-in-out infinite;
          animation: iconanim .85s ease-in-out infinite;
}

.ef_services_inner_each--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #111111;
  margin: 20px 0;
}

.ef_services_inner_each--text {
  margin-bottom: 20px;
}

/* services ends*/
/* mission starts*/
.ef_mission {
  padding: 20px 0;
}

.ef_mission_wrapper {
  border: #E3EAF7 1px solid;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_mission_wrapper {
    border: none;
  }
}

.ef_mission_wrapper_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_mission_wrapper_inner {
    display: block;
    padding: 0px;
  }
}

.ef_mission_wrapper_inner_each {
  max-width: 450px;
}

@media only screen and (max-width: 768px) {
  .ef_mission_wrapper_inner_each {
    margin-bottom: 50px;
  }
  .ef_mission_wrapper_inner_each:last-child {
    margin-bottom: 0px;
  }
}

.ef_mission_wrapper_inner_each--copy {
  margin-top: 10px;
}

/* mission ends*/
/* FD rates starts*/
.ef_fdrates {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_fdrates {
    padding: 20px;
  }
}

.ef_fdrates .form-search_2 {
  min-width: 380px;
}

.ef_fdrates_inner_filter {
  padding-top: 20px;
}

.ef_fdrates_inner_filter--title {
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 10px;
}

.ef_fdrates_inner_filter_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F6F9FF;
  padding: 20px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ef_fdrates_inner_filter_group {
    display: block;
    padding: 10px;
  }
}

.ef_fdrates_inner_filter_group_items .form-label-group {
  min-width: 200px;
}

@media only screen and (max-width: 768px) {
  .ef_fdrates_inner_filter_group_items .form-label-group {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_fdrates_inner_filter_group_items .form-label-group {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .ef_fdrates_inner_filter_group_items {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_fdrates_inner_filter_group_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* FD rates ends */
/* data table starts */
.ef_two_tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ef_two_tables--title {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #01135C;
  width: 100%;
}

.ef_two_tables_each {
  width: calc(50% - 10px);
}

.ef_mftrailling_table td {
  white-space: normal !important;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .ef_mftrailling_table td {
    white-space: nowrap !important;
  }
}

.data_table .ef_delete {
  margin-left: 10px;
}

.data_table .dataTables_scroll {
  margin-bottom: 30px;
}

.data_table.no_color td.sorting_1 {
  background: transparent !important;
}

.data_table .table {
  font-size: 12px;
  line-height: 24px;
  border-right: 4px;
  overflow: hidden;
}

.data_table .table td {
  white-space: normal !important;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .data_table .table td {
    white-space: nowrap !important;
  }
}

.data_table .table td,
.data_table .table th {
  border: none;
  padding-right: 40px !important;
  text-align: left;
}

.data_table .table td.sorting_disabled,
.data_table .table th.sorting_disabled {
  padding-right: 1.5rem !important;
}

.data_table .table tfoot {
  background: #ffffb3;
}

.data_table .table td {
  padding: .5rem 0.5rem;
}

.data_table .table td.sorting_1 {
  background: #ffffb3;
}

.data_table .table a {
  color: #01135C;
  text-decoration: none;
  display: block;
}

.data_table .table a img {
  margin-right: 4px;
}

.data_table .table th {
  padding: .5rem 0.5rem;
  border-right: 1px solid #3ACEA9;
  vertical-align: middle;
  line-height: 18px;
}

.data_table .table th.data_table_head {
  background: #11D5A4;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  padding: .5rem 0.5rem;
  padding-right: 0.5rem !important;
}

.data_table .table th.data_table_head_2 {
  background: #01135C;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  padding: 0.45rem 1.5rem;
  text-align: center;
}

.data_table .table th:last-child {
  border-right: none;
}

.data_table .table th::before {
  right: 2em !important;
}

.data_table .table th::after {
  right: 1.5em !important;
}

.data_table .table .odd {
  background: #F6F9FF;
}

.data_table thead {
  background: #14E3B0;
  color: #333333;
  font-weight: 600;
}

.data_table .dataTables_info {
  font-size: 14px;
  color: #01135C;
}

@media only screen and (max-width: 767px) {
  .data_table .dataTables_info {
    display: none;
  }
}

.data_table .pagination {
  margin-top: 20px;
}

.data_table .pagination .paginate_button {
  margin-right: 6px;
}

.data_table .pagination .paginate_button:last-child {
  margin-right: 0px;
}

.data_table .pagination .paginate_button a {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #DAE0E9;
  color: #01135C;
}

.data_table .pagination .paginate_button.active a {
  background: #0B3C84;
  color: #FFFFFF;
  border: 1px solid #0B3C84;
}

.data_table .dataTables_length {
  font-size: 14px;
  color: #01135C;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 767px) {
  .data_table .dataTables_length {
    display: none;
  }
}

.data_table .dataTables_length label {
  font-weight: 500 !important;
}

.data_table .dataTables_filter input {
  height: 40px;
  min-width: 280px;
  border: 0.5px solid #C6CCD6;
  background: url("../images/icons/search-blue.svg") center right 15px no-repeat;
}

.data_table .dataTables_filter input:focus {
  border: 0.5px solid #C6CCD6;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .data_table .dataTables_filter input {
    min-width: 100%;
    margin-left: 0px !important;
  }
}

@media only screen and (max-width: 767px) {
  .data_table .dataTables_filter label {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .data_table [class^="col-"] {
    padding: 0px !important;
  }
}


/* data table ends */
/* footer ends */
.ef_footer {
  background: #222222;
  padding: 50px 0;
  margin-top: 120px;
}

.ef_footer ul {
  padding-left: 0;
  margin-bottom: 0px;
  list-style: none;
}

.ef_footer_menu {
  padding: 30px 0;
}

@media only screen and (max-width: 768px) {
  .ef_footer_menu .row {
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  .ef_footer_menu_list {
    margin: 20px 0;
    padding: 0 5px;
  }
}

.ef_footer_menu_list_head {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #F6F9FF;
}

.ef_footer_menu_list_copy {
  font-size: 14px;
  line-height: 24px;
  color: #BDBDBD;
  margin: 10px 0 20px;
  max-width: 220px;
}

.ef_footer_menu_list_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_footer_menu_list_social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 25px;
}

.ef_footer_menu_list_social li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ef_footer_menu_list_items li a {
  font-size: 14px;
  line-height: 24px;
  color: #BDBDBD;
  display: inline-block;
  margin-top: 4px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_footer_menu_list_items li a:hover {
  text-decoration: none;
  color: #F6F9FF;
}

.ef_footer_equity {
  background: #333333;
  padding: 16px 0;
}

@media only screen and (max-width: 768px) {
  .ef_footer_equity {
    padding: 20px;
  }
}

.ef_footer_equity_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .ef_footer_equity_inner {
    display: block;
  }
}

.ef_footer_equity_inner_each {
  color: #828282;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_footer_equity_inner_each {
    margin-bottom: 20px;
  }
}

.ef_footer_equity_inner_each--equity {
  font-size: 16px;
  line-height: 24px;
  color: #F6F9FF;
}

.ef_footer_equity_inner_each--equity .btn {
  padding: 8px 24px;
  margin-left: 12px;
}

.ef_footer_equity_inner_each--call a {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #F6F9FF;
  margin-left: 8px;
  text-decoration: none;
}

.ef_footer_equity_inner_each--call a img {
  margin-right: 8px;
}

.ef_footer_equity_inner_each--email a {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #11D5A4;
  margin-left: 8px;
  text-decoration: none;
}

.ef_footer_terms {
  color: #C6CCD6;
  font-size: 10px;
  line-height: 15px;
}

@media only screen and (max-width: 768px) {
  .ef_footer_terms {
    padding: 20px;
  }
}

.ef_footer_terms_copy {
  padding: 50px 0;
}

@media only screen and (max-width: 768px) {
  .ef_footer_terms_copy {
    padding: 20px 0;
  }
}

.ef_footer_terms_copy a {
  color: #11D5A4;
}

.ef_footer_terms_copy p {
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.ef_footer_terms_copy p:last-child {
  padding-bottom: 0px;
}

.ef_footer_terms_links li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 30px;
}

.ef_footer_terms_links li:last-child {
  margin-right: 0px;
}

.ef_footer_terms_links li a {
  color: #C6CCD6;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_footer_terms_links li a:hover {
  color: #F6F9FF;
}

/* footer ends */
.ef_curvedarrow {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #FF0000;
  max-width: 250px;
  font-family: "Poppins", sans-serif;
  padding: 20px 0px;
  position: relative;
  z-index: 1;
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ef_curvedarrow::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 50px;
  height: 50px;
  background: url("../images/icons/curved-arrow.svg") center no-repeat;
  background-size: contain;
}

.ef_curvedarrow.right_up {
  padding-top: 40px;
}

.ef_curvedarrow.right_up::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: -30px;
  top: 0;
}

.ef_curvedarrow.left_down {
  padding-bottom: 40px;
  padding-left: 22px;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.ef_curvedarrow.left_down::before {
  left: -30px;
  bottom: 0;
}

.ef_curvedarrow.center {
  margin: 0 auto;
}

.fixed-top {
  position: fixed !important;
}

.ef_small_text {
  font-size: 10px;
  line-height: 15px;
  color: #6F828E;
}

.ef_inline_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .ef_inline_group {
    display: block;
  }
}

.ef_inline_group label {
  margin-right: 10px;
  max-width: 140px;
}

.modal-backdrop {
  z-index: 1054;
}

.modal {
  z-index: 1055;
}

/* compare section starts */
.ef_compare {
  position: fixed;
  padding: 10px 0;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #DAE0E9;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

.ef_compare.in {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@media only screen and (max-width: 768px) {
  .ef_compare.in .ef_compare_btn {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-top: 10px;
  }
  .ef_compare.in .ef_compare_btn .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ef_compare_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_compare_inner {
    display: block;
  }
}

.ef_compare_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .ef_compare_list {
    overflow-y: auto;
    padding-right: 10px;
  }
}

.ef_compare_each {
  width: 180px;
  padding: 10px;
  border: 1px solid #DAE0E9;
  text-align: center;
  margin: 0 10px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ef_compare_each {
    min-width: 180px;
  }
}

.ef_compare_each--title {
  color: #0B3C84;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 20px;
}

.ef_compare_each--close {
  position: absolute;
  top: -4px;
  right: -4px;
  cursor: pointer;
  height: 14px;
  width: 14px;
}

@media only screen and (max-width: 768px) {
  .ef_compare_each--close {
    top: 0px;
  }
}

.ef_compare_each--close img {
  display: block;
}

/* compare section ends */
.ef_note {
  font-size: 12px;
  line-height: 20px;
  color: #333333;
}

.ef_fundname {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  margin-bottom: 10px;
}

.ef_fundname span {
  color: #333333;
}

.ef_fundtable_popup {
  padding: 0px;
}

.ef_fundtable_popup .modal-dialog {
  max-width: 1100px;
}

.ef_fundtable_popup .data_table {
  max-height: 80vh;
  overflow-y: auto;
}

.ef_fundtable_popup .data_table::-webkit-scrollbar-track {
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_fundtable_popup .data_table::-webkit-scrollbar {
  width: 6px;
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_fundtable_popup .data_table::-webkit-scrollbar-thumb {
  background-color: #B9CBE2;
  border-radius: 100px;
  margin-right: 20px;
}

.ef_fundtable_popup .modal-content {
  border-radius: 0px;
}

.ef_fundtable_popup .ef_fundname {
  margin-bottom: 0px;
}

.ef_fundtable_popup .modal-body {
  padding: 0px;
}

.ef_fundtable_popup_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
}

.ef_fundtable_popup .close {
  opacity: 1;
  line-height: 100%;
}

.ef_fundtable_popup .close img {
  display: block;
}

.ef_tabs_v2 {
  padding: 10px 0;
}

@media only screen and (max-width: 768px) {
  .ef_tabs_v2 {
    padding: 10px 20px;
  }
}

.ef_tabs_v2 .ef_funds_features_each_tabs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-bottom: #E8EFFC 2px solid;
}

@media only screen and (max-width: 768px) {
  .ef_tabs_v2 .ef_funds_features_each_tabs {
    overflow: hidden;
    overflow-x: auto;
    min-height: 46px;
  }
}

.ef_tabs_v2 .ef_funds_features_each_tabs li {
  width: auto;
  margin-bottom: -2px;
}

.ef_tabs_v2 .ef_funds_features_each_tabs li a {
  border: none;
  font-size: 15px;
  line-height: 22px;
  position: relative;
}

.ef_tabs_v2 .ef_funds_features_each_tabs li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0px;
  border-radius: 40px;
  background: #FF0000;
  bottom: 0px;
  left: 0px;
}

.ef_tabs_v2 .ef_funds_features_each_tabs li.active a::before {
  height: 2px;
}

.ef_tabs_v2 .ef_funds_features_each_tabs_content {
  max-width: 650px;
  margin: 0 auto;
  padding: 30px 0;
}

.ef_tabs_v2 .ef_funds_features_each_tabs_content.full_width {
  max-width: 100%;
}

.ef_tabs_v2 p {
  font-size: 12px;
  line-height: 18px;
  color: #828282;
  margin-bottom: 20px;
}

.ef_download_doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .ef_download_doc {
    display: block;
  }
}

.ef_download_doc--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
}

.ef_download_doc--btn .btn_red_download {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .ef_download_doc--btn .btn_red_download {
    padding-left: 0px;
    margin-top: 10px;
  }
}

.ef_download_doc--btn .btn_red_download span {
  height: 28px;
  width: 28px;
}

.ef_policy_content {
  border-top: 1px solid #F2F2F2;
  margin-top: 20px;
}

.ef_policy_content_inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  .ef_policy_content_inner {
    padding: 40px 20px;
  }
}

.ef_policy_content_inner h4 {
  font-size: 12px;
  line-height: 18px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 0px;
}

.ef_policy_content_inner p {
  font-size: 12px;
  line-height: 18px;
  color: #828282;
  margin-bottom: 20px;
}

.ef_policy_content_inner a {
  color: #FF0000;
}

.ef_policy_content_inner ol {
  padding-left: 20px;
  font-size: 12px;
  line-height: 18px;
  color: #828282;
}

.no_marg {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .pad_mob_20 {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .pad_mob_15 {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 768px) {
  .no_pad_mob {
    padding: 0px;
  }
}

.ef_compare_section {
  padding: 50px 0;
}

@media only screen and (max-width: 768px) {
  .ef_compare_section {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_compare_section_inner {
    overflow-x: auto;
  }
}

.ef_compare_section_inner_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  background: #01135C;
  background: -webkit-gradient(linear, right top, left top, from(#01135C), to(#0B3C84));
  background: linear-gradient(270deg, #01135C 0%, #0B3C84 100%);
  border-radius: 4px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .ef_compare_section_inner_head {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    position: relative;
    top: 0;
  }
}

.ef_compare_section_inner_head::-webkit-scrollbar-track {
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_compare_section_inner_head::-webkit-scrollbar {
  width: 2px;
  height: 6px;
  background-color: #F3F4FD;
  border-radius: 100px;
}

.ef_compare_section_inner_head::-webkit-scrollbar-thumb {
  background-color: #B9CBE2;
  border-radius: 100px;
  margin-right: 20px;
}

.ef_compare_section_inner_head_each {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  min-width: calc(100% / 6);
  max-width: calc(100% / 6);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .ef_compare_section_inner_head_each {
    min-width: 200px;
    max-width: 200px;
  }
}

.ef_compare_section_inner_head_each .btn {
  height: 28px;
  font-size: 14px;
  margin-top: 6px;
}

.ef_compare_section_inner_body_each {
  margin-bottom: 30px;
  background: rgba(249, 252, 253, 0.15);
}

@media only screen and (max-width: 767px) {
  .ef_compare_section_inner_body_each {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}

.ef_compare_section_inner_body_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: #f5f6f7 1px solid;
}

.ef_compare_section_inner_body_text_each {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  min-width: calc(100% / 6);
  max-width: calc(100% / 6);
}

@media only screen and (max-width: 767px) {
  .ef_compare_section_inner_body_text_each {
    min-width: 200px;
    max-width: 200px;
  }
}

.ef_compare_section_inner_body_text_each.heading {
  font-weight: 600;
}

.ef_compare_section_inner_body_text_each--maintitle {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  min-width: 100%;
  font-family: "Poppins", sans-serif;
  background: #F6F9FF;
  color: #000;
  border-radius: 4px;
}

.ef_morecontent span {
  display: none;
}

.ef_morelink {
  display: inline-block;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-transform: capitalize;
  border-radius: 4px;
}

.ef_morelink:hover {
  text-decoration: none;
  color: #01135C;
}

.ef_news_page {
  padding: 30px 0;
}

.ef_news_page .ef_blogs_page_inner_list_tabs ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ef_news_page .ef_blogs_page_inner_list_tabs ul li {
  margin-right: 20px;
}

.ef_news_page .ef_blogs_page_inner_list_tabs ul li:last-child {
  margin-right: 0px;
}

.ef_news_page .ef_mailbox {
  margin-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_news_page .ef_mailbox {
    margin: 0 0 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.ef_news_page_list_each {
  border-radius: 4px;
  border: 1px solid #E3EAF7;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_news_page_list_each {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .ef_news_page_list_each .ef_blogs_inner_wrapper_swiper_each_copy_share {
    top: 10px;
    background: transparent;
  }
}

.ef_news_page_list_each--title {
  color: #111111;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-width: 80%;
}

.ef_news_page_list_each--text {
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  color: #6F828E;
  margin-bottom: 10px;
}

.ef_news_page_list_each_info {
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  color: #8B8B8B;
}

.ef_news_page_list_each_info span {
  padding-right: 8px;
  margin-right: 8px;
  line-height: 100%;
}

.ef_news_page_list_each_info span:first-child {
  display: inline-block;
  border-right: #8B8B8B 1px solid;
}

.ef_news_page_list_each_info--hash {
  color: #11D5A4;
}

.ef_news_detail_page {
  padding-top: 30px;
}

.ef_news_detail_page_info {
  position: relative;
  margin-bottom: 50px;
}

.ef_news_detail_page_info .ef_blogs_inner_wrapper_swiper_each_copy_share {
  top: 0px;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .ef_news_detail_page_info .ef_blogs_inner_wrapper_swiper_each_copy_share {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    right: auto;
    margin-bottom: 10px;
  }
}

.ef_news_detail_page_info--title h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #111111;
  margin-bottom: 6px;
  padding-right: 60px;
}

.ef_news_detail_page_info_txt span {
  font-size: 12px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  color: #8B8B8B;
  line-height: 100%;
  display: inline-block;
  padding-right: 8px;
  margin-right: 8px;
}

.ef_news_detail_page_info_txt span:first-child {
  border-right: #8B8B8B 1px solid;
}

.ef_news_detail_page_info_txt--hash {
  color: #FF0000 !important;
}

.ef_news_detail_page_copy--title h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #111111;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.ef_news_detail_page_copy--subtitle h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 30px;
}

.ef_news_detail_page_copy ul {
  padding-left: 20px;
}

.ef_news_detail_page_copy ul li {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  padding-bottom: 30px;
}

.ef_news_detail_page_copy_social {
  margin-top: 80px;
}

.ef_news_detail_page_copy .ef_news_page_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_news_detail_page_copy .ef_news_page_list {
    display: block;
  }
}

.ef_news_detail_page_copy .ef_news_page_list_each {
  width: calc(50% - 10px);
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_news_detail_page_copy .ef_news_page_list_each {
    width: 100%;
    padding-top: 60px;
  }
}

.ef_desc {
  margin: 20px 0;
  max-width: 740px;
}

.ef_digest {
  margin-top: 30px;
}

.ef_digest .ef_blogs_page_inner_main {
  margin-bottom: 20px;
}

.ef_digest .ef_mailbox {
  margin-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_digest .ef_mailbox {
    margin: 0 0 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.ef_contact {
  background: #F6F9FF;
  border-radius: 4px;
  margin: 40px 0;
  padding: 50px;
}

@media only screen and (max-width: 768px) {
  .ef_contact {
    margin: 0 -20px;
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_contact {
    padding: 30px 20px;
  }
}

.ef_contact_info_each {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_contact_info_each--icon {
  margin-right: 10px;
  min-width: 20px;
}

.ef_contact_info_each_text--title {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 6px;
}

.ef_contact_info_each_text--head {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #0B3C84;
}

.ef_contact_info_each_text--address {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.ef_contact_img {
  max-width: 280px;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

@media only screen and (max-width: 767px) {
  .ef_contact_img {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.ef_contact_img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/oval-bg.svg) center no-repeat;
  background-size: contain;
  left: 0;
  top: -40px;
  z-index: -1;
}

.ef_branches {
  margin: 30px 0;
}

.ef_branches--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0B3C84;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.ef_branches .form-label-group {
  min-width: 250px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .ef_branches .form-label-group {
    min-width: 100%;
  }
}

.ef_branches .form-label-group select + .select2-container {
  width: 100% !important;
}

.ef_branches_info {
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 40px 0;
}

@media only screen and (max-width: 767px) {
  .ef_branches_info {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .ef_branches_info_each {
    margin-bottom: 40px;
  }
}

.ef_branches_info_each--title {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #0B3C84;
  margin-bottom: 12px;
}

.ef_branches_info_each--text {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 30px;
}

.ef_branches_info_each--text span {
  display: block;
  font-weight: 400;
}

.ef_branches_info_each.border_right {
  border-right: 1px solid #E5EDF8;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .ef_branches_info_each.border_right {
    margin-right: 0px;
    border: none;
  }
}

.ekyc_steps {
  padding: 20px 0 50px;
}

.ekyc_steps--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0B3C84;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  max-width: 545px;
}

.ekyc_steps--label {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-style: italic;
  margin-bottom: 30px;
}

.ekyc_steps_list [class*='col-'] {
  margin-bottom: 30px;
}

.ekyc_steps_list_each {
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .ekyc_steps_list_each {
    padding: 15px;
  }
}

.ekyc_steps_list_each--icon {
  min-width: 40px;
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .ekyc_steps_list_each--icon {
    max-width: 30px;
    min-width: 30px;
    margin-right: 20px;
  }
}

.ekyc_steps_list_each_copy--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #333333;
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .ekyc_steps_list_each_copy--title {
    font-size: 16px;
  }
}

.ekyc_steps_list_each_copy--text {
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
}

@media only screen and (max-width: 767px) {
  .ekyc_steps_list_each_copy--text {
    font-size: 14px;
  }
}

.ekyc_steps_list_each_copy ol {
  padding-left: 16px;
}

.ef_digest_detail_head {
  text-align: center;
  margin-top: 30px;
  position: relative;
}

.ef_digest_detail_head .ef_blogs_inner_wrapper_swiper_each_copy_share {
  background: transparent;
  top: -10px;
  right: -50px;
}

@media only screen and (max-width: 768px) {
  .ef_digest_detail_head .ef_blogs_inner_wrapper_swiper_each_copy_share {
    position: relative;
    top: auto;
    right: auto;
    margin: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.ef_digest_detail_head .ef_blogs_inner_wrapper_swiper_each_copy_share:hover {
  background: #fff;
}

.ef_digest_detail_head h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 6px;
  display: inline-block;
  position: relative;
}

.ef_digest_detail_head p {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 4px;
}

.ef_digest_detail_content {
  max-width: 750px;
  margin: 0 auto;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ef_digest_detail_content {
    margin-top: -50px;
  }
}

.ef_digest_detail_content--banner {
  margin-bottom: 20px;
}

.ef_digest_detail_content .ef_mailbox {
  margin: 30px 0;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .ef_digest_detail_content .ef_mailbox {
    padding: 20px 0;
  }
}

.ef_digest_detail_content .ef_mailbox p {
  color: #fff;
  margin-bottom: 0px;
}

.ef_digest_detail_content h6 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.ef_digest_detail_content p {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.ef_digest_detail_content--image {
  border: 1px solid #E5EDF8;
  padding: 25px;
  margin: 20px 0;
}

.ef_digest_detail_content--image img {
  margin: 0 auto;
  display: block;
}

.ef_digest_detail_content--sign {
  margin-bottom: 20px;
}

.ef_explore_blogs {
  background: #F6F9FF;
  padding: 50px 0 100px;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .ef_explore_blogs {
    margin: 0 -20px;
    padding: 50px 20px 100px;
  }
}

.ef_explore_blogs_inner {
  max-width: 750px;
  margin: 0 auto;
}

.ef_explore_blogs_inner .ef_blogs_page_inner_list_items .ef_blogs_inner_wrapper_swiper_each {
  max-width: 360px;
}

.ef_explore_blogs_inner_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
}

.ef_explore_blogs_inner_head--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

.ef_ekyc_form {
  padding-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .ef_ekyc_form {
    padding: 20px;
  }
}

.ef_ekyc_form_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .ef_ekyc_form_head {
    display: block;
  }
}

.ef_ekyc_form .title_3 {
  margin-bottom: 30px;
}

.ef_ekyc_form .nav-tabs {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ef_ekyc_form .card {
    margin-bottom: 10px;
    background: transparent;
    border: none;
    border: 1px solid #E3EAF7;
  }
  .ef_ekyc_form .card-body {
    padding: 10px;
  }
  .ef_ekyc_form .card-header {
    padding: 0px;
    background: #F6F9FF;
    border: none;
  }
  .ef_ekyc_form .card-header h5 a {
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #0B3C84;
    width: 100%;
    display: block;
    text-decoration: none;
  }
  .ef_ekyc_form .form-label-group {
    min-width: 100%;
    margin-bottom: 10px;
  }
  .ef_ekyc_form .form-label-group input {
    min-width: 100%;
  }
  .ef_ekyc_form .ef_funds_features_each_tabs li a {
    padding: 0 20px;
    min-height: 40px;
    margin-right: 10px;
  }
  .ef_ekyc_form .tab-content--title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #01135C;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  .ef_ekyc_form .tab-content--text {
    font-size: 14px;
    line-height: 22px;
    color: #6F828E;
  }
  .ef_ekyc_form .tab-content--imp {
    font-size: 16px;
    line-height: 24px;
    color: #FF0000;
  }
  .ef_ekyc_form .ef_tabs_v2 {
    padding: 0px;
  }
  .ef_ekyc_form .ef_btn_reset {
    position: relative;
    text-align: right;
    display: block;
    margin-bottom: 10px;
  }
  .ef_ekyc_form .ef_camera_wrapper {
    padding: 10px;
  }
  .ef_ekyc_form .ef_camera_content {
    display: block;
    padding: 10px;
  }
  .ef_ekyc_form .ef_camera_content_btn {
    margin-top: 20px;
  }
  .ef_ekyc_form .ef_camera_instructions_swiper .swiper-button-next {
    height: 26px;
    width: 26px;
    top: -10px;
  }
  .ef_ekyc_form .ef_tabs_v2 .ef_funds_features_each_tabs_content {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .ef_ekyc_form .nav-tabs {
    display: block;
    border: none;
    background: #F6F9FF;
    padding: 25px 0px;
  }
  .ef_ekyc_form .nav-tabs .nav-item:last-child .nav-link::after {
    border-bottom: none;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link {
    border: none;
    background: transparent;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #0B3C84;
    border-radius: 0px;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    border-bottom: 1px solid #E5EDF8;
    left: 40px;
    bottom: 0px;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link--icon {
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: #11D5A4 1px solid;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 1;
    margin-right: 15px;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link--icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: #11D5A4 1px solid;
    background: #11D5A4 url("../images/icons/tick-white.svg") center no-repeat;
    background-size: 10px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 3px;
    height: 100%;
    background: transparent;
    border-radius: 2px;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    will-change: transition;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.active {
    font-weight: bold;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.active::before {
    background: #0B3C84 !important;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.active .nav-link--icon::before {
    opacity: 1;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.done {
    font-weight: bold;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.done::before {
    background: transparent;
  }
  .ef_ekyc_form .nav-tabs .nav-item .nav-link.done .nav-link--icon::before {
    opacity: 1;
  }
  .ef_ekyc_form .tab-content {
    border: 1px solid #E3EAF7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 4px;
    min-height: 360px;
    padding: 40px;
  }
  .ef_ekyc_form .tab-content--title {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #01135C;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  .ef_ekyc_form .tab-content--text {
    font-size: 16px;
    line-height: 24px;
    color: #6F828E;
  }
  .ef_ekyc_form .tab-content--imp {
    font-size: 16px;
    line-height: 24px;
    color: #FF0000;
  }
  .ef_ekyc_form .card-body {
    padding: 0px;
    max-width: 650px;
  }
  .ef_ekyc_form .card-body .ef_btn_reset {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .ef_ekyc_form .card-body .form-label-group {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .ef_ekyc_form .card-body .form-label-group input {
    min-width: 100%;
  }
  .ef_ekyc_form .card {
    border: none;
  }
  .ef_ekyc_form .card .card-header {
    display: none;
  }
  .ef_ekyc_form .card .collapse {
    display: block;
  }
}

@media (max-width: 768px) {
  .ef_ekyc_form .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
}

.ef_btn_reset {
  color: #0B3C84;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  outline: none;
  padding: 0;
  height: auto;
}

.ef_btn_reset img {
  margin-right: 8px;
}

.ef_ekyc_progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ef_ekyc_progress--title {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #27AE60;
  margin-right: 10px;
}

.ef_ekyc_progress_circle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  -webkit-box-shadow: inset 0 0 0 3px #E1ECFB;
          box-shadow: inset 0 0 0 3px #E1ECFB;
}

.ef_ekyc_progress_circle--value {
  font-weight: 500;
  font-size: 16px;
  color: #27AE60;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.progress-ring__circle {
  -webkit-transition: 0.35s stroke-dashoffset;
  transition: 0.35s stroke-dashoffset;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.ef_register {
  background: url("../images/register/banner.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
}

.ef_register_form {
  background: rgba(255, 255, 255, 0.98);
  padding: 50px 0;
  max-width: 520px;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .ef_register_form {
    padding: 50px 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ef_register_form_inner {
  max-width: 340px;
  margin: 0 auto;
}

.ef_register_form_inner .form-label-group {
  min-width: 100%;
  margin-bottom: 10px;
}

.ef_register_form_inner .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ef_register_form_inner--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0B3C84;
  text-align: center;
  margin-bottom: 20px;
}

.ef_register_form_inner--logo {
  margin-bottom: 20px;
}

.ef_register_form_inner--logo img {
  height: 22px;
  margin: 0 auto;
  display: block;
}

.ef_register_form_inner_login {
  font-size: 12px;
  line-height: 18px;
  color: #828282;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.ef_register_form_inner_login .btn {
  width: auto;
  font-size: 12px;
  line-height: 18px;
  margin-left: 4px;
}

.ef_register_form_inner_login .btn::before {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ef_ipo {
    padding: 0 20px;
  }
}

.ef_ipo_inner {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.ef_ipo_inner::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(100% - 44px);
  background: #F6F9FF;
  z-index: -1;
}

.ef_ipo_inner .ef_funds_features_each_tabs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ef_ipo_inner .ef_funds_features_each_tabs li {
  max-width: 360px;
}

.ef_ipo_inner .ef_funds_features_each_tabs_content {
  padding: 30px 0;
}

.ef_ipo_inner_list {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .ef_ipo_inner_list {
    padding: 0 10px;
  }
}

.ef_ipo_inner_list_each {
  padding: 0 5px;
  width: calc(100%/3);
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .ef_ipo_inner_list_each {
    width: calc(100%/2);
  }
}

@media only screen and (max-width: 767px) {
  .ef_ipo_inner_list_each {
    width: 100%;
  }
}

.ef_ipo_inner_list_each_inner {
  background: #FFFFFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 16px;
}

.ef_ipo_inner_list_each--title {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #333333;
}

.ef_ipo_inner_list_each--price {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.ef_ipo_inner_list_each--price span {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  margin-left: 10px;
}

.ef_ipo_inner_list_each_date {
  background: #F6F9FF;
  border-radius: 4px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

.ef_ipo_inner_list_each_date_item {
  width: 50%;
  margin-bottom: 10px;
}

.ef_ipo_inner_list_each_date_item--title {
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #6F828E;
}

.ef_ipo_inner_list_each_date_item--text {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #0B3C84;
}

.ef_bid {
  max-width: 400px;
  padding: 60px 0;
  margin: 0 auto;
  text-align: center;
}

.ef_bid_wrapper .modal-content {
  background: #fff url("../images/icons/popup.svg") top left no-repeat;
}

.ef_bid--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #01135C;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .ef_goals_wrapper {
    padding: 0 20px;
  }
}

.ef_goals_wrapper_inner {
  margin-top: 40px;
}

.ef_goals_wrapper_inner_strip {
  background: #FCFDFF;
  border: 1px solid #F6F9FF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 25px;
}

@media only screen and (max-width: 767px) {
  .ef_goals_wrapper_inner_strip {
    padding: 10px;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .ef_goals_wrapper_inner_strip_each {
    margin-bottom: 20px;
  }
}

.ef_goals_wrapper_inner_strip_each--title {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #666666;
  margin-bottom: 6px;
}

.ef_goals_wrapper_inner_strip_each--text {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #0B3C84;
}

.ef_goals_wrapper_inner_chart {
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  margin-top: 15px;
}

.ef_goals_wrapper_inner_chart_each {
  padding: 20px 25px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .ef_goals_wrapper_inner_chart_each {
    padding: 10px;
  }
}

.ef_goals_wrapper_inner_chart_each:first-child {
  border-right: 1px solid #E5EDF8;
}

.ef_goals_wrapper_inner_chart_each--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #0B3C84;
}

@media only screen and (max-width: 767px) {
  .ef_goals_wrapper_inner_chart_each--title {
    font-size: 16px;
    line-height: 24px;
  }
}

.ef_goals_wrapper_inner_chart_each--text {
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
}

@media only screen and (max-width: 767px) {
  .ef_goals_wrapper_inner_chart_each--text {
    font-size: 14px;
    line-height: 20px;
  }
}

.ef_goals_wrapper_inner_chart_each--chart {
  margin-top: 50px;
}

.ef_goals_wrapper_inner_chart_each--chart img {
  margin: 0 auto;
}

.ef_goals_wrapper_inner_chart_each_scroll {
  max-height: 380px;
  overflow-y: auto;
  margin-top: 15px;
}

.ef_goals_wrapper_inner_chart_each_scroll .ef_portfolio_list {
  padding-right: 6px;
}

.ef_goals_wrapper_inner_chart_each_scroll::-webkit-scrollbar-track {
  background-color: #F3F4FD;
  border-radius: 10px;
}

.ef_goals_wrapper_inner_chart_each_scroll::-webkit-scrollbar {
  width: 5px;
  background-color: #F3F4FD;
  border-radius: 10px;
}

.ef_goals_wrapper_inner_chart_each_scroll::-webkit-scrollbar-thumb {
  background-color: #B9CBE2;
  border-radius: 10px;
  margin-right: 20px;
}

.ef_portfolio_list_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background: #FFFFFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  margin-bottom: 10px;
  /* -webkit-filter: grayscale(100%);
          filter: grayscale(100%); */
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  will-change: transition;
}

@media only screen and (max-width: 768px) {
  .ef_portfolio_list_each {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}

.ef_portfolio_list_each:hover {
  text-decoration: none;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.ef_portfolio_list_each:last-child {
  margin-bottom: 0px;
}

.ef_portfolio_list_each--icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FCFDFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

.ef_portfolio_list_each--icon img {
  width: 25px;
  height: 25px;
}

.ef_portfolio_list_each_copy--title {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.ef_portfolio_list_each_copy--text {
  font-size: 12px;
  line-height: 24px;
  color: #ADB7C2;
}

.ef_portfolio_list_each_copy--text span {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #0B3C84;
}

.ef_eportfolio {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_eportfolio {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_eportfolio {
    padding: 0px;
    margin-top: 20px;
  }
}

.ef_eportfolio_inner {
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  padding: 25px 0;
}

@media only screen and (max-width: 767px) {
  .ef_eportfolio_inner {
    border: none;
  }
}

.ef_eportfolio_inner--label {
  font-size: 12px;
  line-height: 20px;
  color: #6F828E;
  margin: 20px 0;
}

.ef_eportfolio_inner--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #444444;
}

.ef_eportfolio_inner .data_table {
  margin-top: 20px;
}

.ef_goalsummary {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .ef_goalsummary {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ef_goalsummary {
    padding: 0px;
    margin-top: 20px;
  }
}

.ef_goalsummary_inner {
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  padding: 20px;
  max-width: 520px;
}

@media only screen and (max-width: 767px) {
  .ef_goalsummary_inner {
    border: none;
  }
}

.ef_goalsummary_inner--title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.ef_goalsummary_inner .form-label-group {
  margin-bottom: 15px;
  width: 100%;
}

.ef_disabled {
  background: #F6F9FF;
  pointer-events: none;
}

.ef_disabled input {
  background: #F6F9FF;
  pointer-events: none;
}

.ef_camera_instructions_swiper .swiper-button-prev {
  display: none;
}

@media only screen and (max-width: 767px) {
  .ef_camera_instructions_swiper .swiper-button-next {
    display: none;
  }
}

.ef_camera_instructions_swiper .swiper-button-next {
  background: #fff;
}

.ef_camera_instructions_swiper_each {
  font-size: 14px;
  line-height: 24px;
  color: #6F828E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .ef_camera_instructions_swiper_each {
    font-size: 13px;
    line-height: 20px;
  }
}

.ef_camera_instructions_swiper_each span {
  color: #B1D3FF;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  margin-right: 6px;
}

/* Invest Bonds Css Starts Here */

.ef_filter_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .ef_filter_flex {
    display: block;
    background: #fff;
    z-index: 9;
    position: relative;
    margin: -1px -20px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .ef_filter_menu_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.ef_filter_menu {
  display: none;
}

@media (max-width: 768px) {
  .ef_filter_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #0B3C84;
    cursor: pointer;
    -webkit-transition: 0.35s linear;
    transition: 0.35s linear;
  }
  .ef_filter_menu.in {
    color: #FF0000;
  }
  .ef_filter_menu.in .ef_filter_menu--icon img {
    opacity: 0;
  }
  .ef_filter_menu .ef_filter_menu--icon {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 6px;
    background: url("../images/icons/filter-menu-red.svg") center no-repeat;
  }
  .ef_filter_menu .ef_filter_menu--icon img {
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ef_filter_menu_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.ef_filter_menu.in .ef_filter_menu--icon img {
    opacity: 0;
  }
  .ef_filter_menu .ef_filter_menu--icon {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 6px;
    background: url("../images/icons/filter-menu-red.svg") center no-repeat;
  }
  .ef_filter_menu .ef_filter_menu--icon img {
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    opacity: 1;
  }
}

.ef_bond_steps_form .form-label-group {
  margin-bottom: 20px;
}
.ef_payment_inner_box .form-label-group {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ef_payment_inner_box .form-label-group {
    margin-bottom: 15px !important;
  }
}

.dots_hori_right.bottom::before {
  top: auto;
  bottom: 40px;
}

.dots_hori_right.top::before {
  top: 110px;
}

.ef_filter {
  background: #F6F9FF;
  padding: 0 20px;
  margin: 30px 0 50px;
}

@media (max-width: 768px) {
  .ef_filter {
    position: absolute;
    z-index: 4;
    width: 100%;
    left: 0;
    margin: 0;
    display: none;
  }
}

.ef_filter_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .ef_filter_head {
    border-bottom: 1px solid #E5EDF8;
    padding: 15px 0;
  }
}

.ef_filter_head--name {
  font-size: 16px;
  line-height: 24px;
  color: #01135C;
  font-weight: 600;
}

.ef_filter_head--clear {
  color: #0B3C84;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ef_filter_content {
    overflow-y: auto;
  }
}

.ef_filter_content .card {
  border: none;
  border-top: 1px solid #E5EDF8;
  border-radius: 0px;
  background: transparent;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .ef_filter_content .card:first-child {
    border-top: none;
  }
}

.ef_filter_content .card-header {
  padding: 0px;
  border: none;
  background: transparent;
}

.ef_filter_content .card-header .btn-link {
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  padding: 10px 0;
  width: 100%;
  position: relative;
}

.ef_filter_content .card-header .btn-link::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 10px;
  z-index: 4;
  background: url("../images/icons/arrow-down-blue.svg") center no-repeat;
  -webkit-transition: 0.35s linear;
  transition: 0.35s linear;
}

.ef_filter_content .card-header .btn-link[aria-expanded="true"]::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ef_filter_content .card-header .btn-link:hover, .ef_filter_content .card-header .btn-link:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ef_filter_content .card-body {
  padding: 0 0 10px;
}

.ef_filter .form-check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 22px;
  margin: 15px 0;
}

.ef_filter .form-check-group .text {
  cursor: pointer;
}

.ef_filter .form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}

.ef_filter .form-radio-group .text {
  cursor: pointer;
}

.ef_filter_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .ef_filter_head {
    border-bottom: 1px solid #E5EDF8;
    padding: 15px 0;
  }
}

.ef_filter_head--name {
  font-size: 16px;
  line-height: 24px;
  color: #01135C;
  font-weight: 600;
}

.ef_filter_head--clear {
  color: #0B3C84;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}

.ef_no_results {
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  padding: 40px;
  margin: 30px 0 50px;
  display: none;
}

.ef_no_results.in {
  display: block;
}

@media (max-width: 768px) {
  .ef_no_results {
    border: none;
    margin: 0 -15px;
    padding: 0;
  }
}

.ef_no_results_content {
  background: #F6F9FF;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

.ef_no_results_content--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
  margin-bottom: 6px;
}

.ef_no_results_content--text {
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
  margin-bottom: 6px;
}

.ef_no_results_content--clear {
  font-size: 14px;
  line-height: 24px;
  color: #0B3C84;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.ef_no_results_content--clear img {
  margin-right: 4px;
}

.ef_popular_coll {
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ef_popular_coll {
    padding: 0 15px;
  }
  .ef_popular_coll .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    min-height: 150px;
  }
}

.ef_popular_coll--title {
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
  margin-bottom: 10px;
}

.ef_results {
  margin-top: 30px;
  display: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ef_results {
    margin-top: 20px;
  }
}

.ef_results.in {
  display: block;
}

.ef_results_wrapper {
  background: #F6F9FF;
  margin: 0 -15px;
  padding: 15px;
}

.ef_results_tags {
  padding: 10px 0 20px;
}

@media (max-width: 768px) {
  .ef_results_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.ef_results_tags_each {
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  background: #DBE6F8;
  border: 1px solid #B0C6E5;
  border-radius: 4px;
  padding: 0 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .ef_results_tags_each {
    margin-bottom: 6px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.ef_results_tags_each:last-child {
  margin-right: 0px;
}

.ef_results_tags_each span {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}

.ef_results_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .ef_results_each {
    display: block;
    margin-bottom: 15px;
  }
}

.ef_results_each_bond {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .ef_results_each_bond {
    border-bottom: 1px solid #E5EDF8;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
}

.ef_results_each_bond--img {
  margin-right: 12px;
  min-width: 70px;
  margin-top: 6px;
  text-align: center;
}

.ef_results_each_bond_info--title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.ef_results_each_bond_info--type {
  font-size: 10px;
  line-height: 20px;
  color: #6F828E;
  text-transform: uppercase;
  background: #EDF4FF;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 4px;
}

.ef_results_each_bond_info--type span {
  display: inline-block;
  padding: 0 6px;
  position: relative;
}

.ef_results_each_bond_info--type span::before {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  height: calc(100% - 10px);
  width: 1px;
  background: #6F828E;
}

.ef_results_each_bond_info--type span:last-child::before {
  display: none;
}

.ef_results_each_bond_info_yield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ef_results_each_bond_info_yield_each {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .ef_results_each_bond_info_yield_each {
    margin-right: 10px;
  }
}

.ef_results_each_bond_info_yield_each:last-child {
  margin-right: 0px;
}

.ef_results_each_bond_info_yield_each img {
  margin-right: 4px;
}

.ef_results_each_bond_info_yield_each span {
  font-size: 13px;
  line-height: 24px;
  color: #0B3C84;
  font-weight: 600;
  display: inline-block;
  padding-left: 6px;
}

@media (max-width: 767px) {
  .ef_results_each_pay {
    width: 32.33%;
    display: inline-block;
  }
}

.ef_results_each_pay--name {
  font-size: 10px;
  line-height: 20px;
  color: #6F828E;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ef_results_each_pay--text {
  color: #0B3C84;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ef_results_each_date {
    width: 32.33%;
    display: inline-block;
  }
}

.ef_results_each_date--name {
  font-size: 10px;
  line-height: 20px;
  color: #6F828E;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ef_results_each_date--text {
  color: #0B3C84;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ef_results_each_btn {
    width: 32.33%;
    display: inline-block;
    vertical-align: bottom;
  }
  .ef_results_each_btn .btn_red {
    height: 32px;
  }
}

.ef_basket .swiper-wrapper {
  min-height: 150px;
}

@media (max-width: 767px) {
  .ef_basket .swiper-wrapper {
    min-height: 70px;
  }
}

.ef_basket_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5EDF8;
  border-radius: 4px;
  padding: 10px 15px;
}

.ef_basket_each:hover {
  text-decoration: none;
}

.ef_basket_each--img {
  margin-right: 10px;
  min-width: 48px;
}

.ef_basket_each_info--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #01135C;
}

.ef_basket_each_info--title span {
  color: #27AE60;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-left: 4px;
}

.ef_basket_each_info--text {
  font-size: 14px;
  line-height: 24px;
  color: #6F828E;
}

.ef_basket_req {
  font-style: italic;
  font-weight: normal;
  font-size: 10px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  text-align: right;
  margin-right: 50px;
  margin-top: -20px;
}

@media (max-width: 768px) {
  .ef_basket_req {
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  .ef_basket_req {
    margin-right: 15px;
  }
}

.ef_basket .swiper-pagination {
  margin-top: 10px;
}

.ef_ekyc_form .ef_basket_content {
  padding: 0px;
  border: none;
}

.ef_ekyc_form .ef_basket_content .ef_tabs_v2 {
  padding: 0px;
}

.ef_ekyc_form .ef_basket_content .ef_tabs_v2 .ef_funds_features_each_tabs {
  margin-top: 0px;
}

.ef_ekyc_form .ef_basket_tabs {
  padding: 0px;
  height: 100%;
}

.ef_ekyc_form .ef_basket_tabs .nav-item:last-child .nav-link::after {
  border-bottom: 1px solid #E5EDF8;
}

.ef_ekyc_form .ef_basket_tabs .nav-item .nav-link {
  font-size: 14px;
}

.ef_ekyc_form .ef_basket_tabs .nav-item .nav-link::after {
  width: calc(100% - 24px);
  left: 12px;
}

.ef_ekyc_form .ef_basket_content .card-body {
  max-width: 100%;
}

.ef_ekyc_form .ef_basket_content .ef_funds_features_each_tabs_content {
  max-width: 100%;
  margin-top: -1px;
  padding: 0px;
}

.ef_ekyc_form .ef_basket_content .icon img {
  max-width: 22px;
  margin-right: 10px;
}

.ef_ekyc_form .ef_basket_content_invest {
  background: #FFFFFF;
  border: 1px solid #E3EAF7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: -6px;
}

.ef_ekyc_form .ef_basket_content_invest_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .ef_ekyc_form .ef_basket_content_invest_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ef_ekyc_form .ef_basket_content_invest_each {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media (max-width: 768px) {
  .ef_ekyc_form .ef_basket_content_invest_each {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .ef_ekyc_form .ef_basket_content_invest_each {
    width: 100%;
  }
}

.ef_ekyc_form .ef_basket_content_invest_each .form-label-group {
  margin-bottom: 0px;
  max-width: 160px;
  min-width: 160px;
  margin-right: 0px;
}

@media (max-width: 767px) {
  .ef_ekyc_form .ef_basket_content_invest_each .form-label-group {
    max-width: 100%;
    min-width: 100%;
  }
}

.ef_ekyc_form .ef_basket_content_invest_each:last-child {
  margin-right: 0px;
}

.ef_ekyc_form .ef_basket_content_invest_each img {
  margin-right: 4px;
  max-width: 20px;
}

.ef_ekyc_form .ef_basket_content_invest_each .value {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #0B3C84;
  margin-left: 4px;
  display: inline-block;
}
.ef_ekyc_form .nav-tabs .nav-item .icon {
    min-width: 22px;
    margin-right: 12px;
  }
  .ef_ekyc_form .nav-tabs .nav-item .icon img {
    max-width: 22px;
  }
  
  table.dataTable thead tr:nth-child(2) th {
    background-color: #14e3b0;
}
.partner-card {
    box-shadow: 24px 24px 48px 0px rgba(102, 102, 101, 0.05);
    background: white;
    border: 2px solid #efeef9;
    max-height: 450px;
    overflow: hidden;
    margin-top: 40px;
}

/*# sourceMappingURL=style.css.map */


/* demat account starts */
.ef_demataccount_inner {
  padding: 20px 0;
  background: #FFFFFF;
  border: 1px solid #E3EAF7;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}

.ef_demataccount_inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper {
    display: block;
  }
}

.ef_demataccount_inner_wrapper_copy {
  max-width: 650px;
  padding: 0 100px;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper_copy {
    padding: 0px;
  }
}

.ef_demataccount_inner_wrapper_copy .title_2 {
  margin: 6px 0;
}

@media only screen and (max-width: 768px) {
  .ef_demataccount_inner_wrapper_img {
    max-width: 200px;
    margin-bottom: 30px;
  }
}

/* demat account ends*/


/* Mutual Funds CSS Starts Here */
.ef_custom_block {
  border: 1px solid #E3EAF7;
  padding: 30px;
  border-radius: 4px;
  margin: 20px 0;
}

.ef_custom_block--icon {
  width: 50px;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ef_custom_block--text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin: 8px 0;
  color: #111111;
}

.ef_custom_block p {
  min-height: 50px;
}

.pad-15 {
  padding: 0 15px;
}

.ef_custom_list ul {
  list-style: none;
  margin-left: 0;
  padding-left: 20px;
}

.ef_custom_list ul li {
  margin-bottom: 15px;
  position: relative;
}

.ef_custom_list ul li::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #11D4A4;
  left: -20px;
  top: 8px;
}

.ef_list2_bg {
  background: #F6F9FF;
  border-radius: 4px 4px 80px 4px;
  padding: 35px 0;
}

.ef_custom_list2 {
  list-style: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ef_custom_list2 {
    margin-bottom: 20px;
  }
}

.ef_custom_list2 li {
  position: relative;
  color: #333333;
}

.ef_custom_list2 li span {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  color: #6F828E;
}

.ef_custom_list2 li::before {
  content: '';
  position: absolute;
  background: url("../images/icons/check-circle.svg") center no-repeat;
  width: 24px;
  aspect-ratio: 1/1;
  left: -40px;
  top: 5px;
}

.ef_callback {
  padding: 35px 0;
  border-radius: 4px;
  margin: 40px 0;
}

.ef_callback--title {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #F6F9FF;
  font-family: "Poppins", sans-serif;
}

.ef_callback--text {
  color: #F6F9FF;
  font-size: 14px;
  line-height: 24px;
}

.ef_callback_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
  .ef_callback_form form {
    display: block;
    margin-top: 20px;
  }
}

.ef_callback_form form .btn {
  height: 50px;
}

.ef_callback_form .form-label-group {
  margin-bottom: 0px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .ef_callback_form .form-label-group {
    margin-bottom: 20px;
    margin-right: 0px;
    width: 100%;
  }
}

.ef_mld {
  padding: 10px 0 50px;
}

.ef_mld--text {
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: #6F828E;
}

.ef_mld_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ef_mld_block {
    display: block;
    margin-top: 30px;
  }
}

.ef_mld_block--icon {
  margin-right: 60px;
  min-width: 90px;
}

.ef_mld_block_info--title {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  margin-top: 30px;
}

.ef_mld_block_info--text {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #0B3C84;
}

.ef_mld_block_info--copy {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #333333;
}

.ef_mld_block_info--copy p {
  margin-bottom: 0px;
}

.ef_startinvest_form {
  margin-top: 20px;
}

.ef_startinvest_form .form-label-group {
  margin-bottom: 20px;
  width: 100%;
}
.ef_title_4 {
  font-size: 20px;
  line-height: 26px;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/* Mutual Funds CSS Ends Here */

/* Open Account CSS Starts Here */

.space_60 {
  height: 60px;
}

@media (max-width: 768px) {
  .space_60 {
    height: 40px;
  }
}

.multi_links a,
.multi_links .btn {
  margin-right: 25px;
}

@media only screen and (max-width: 768px) {
  .multi_links a,
  .multi_links .btn {
    margin: 8px;
  }
}

.multi_links a:last-child,
.multi_links .btn:last-child {
  margin-right: 0px;
}
.space_20 {
    height: 20px;
}
.ef_form_otp--title {
    font-size: 13px;
    line-height: 18px;
    color: #6F828E;
    margin-bottom: 6px;
}
.ef_form_otp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 320px;
}
.ef_form_otp input {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    line-height: 100%;
    color: #0B3C84;
    border: 1px solid #DAE0E9;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.ef_note {
    font-size: 12px;
    line-height: 20px;
    color: #333333;
}
.ef_note .btn {
    font-size: 14px;
    font-style: normal;
    margin-left: 10px;
}
.ef_terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.ef_terms .ef_note {
    margin-top: 0px;
    margin-left: 16px;
}
.ef_terms .ef_note .btn {
    font-style: inherit;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 2px;
    font-size: 12px;
}
.ef_note_v3 {
    background: #E7FBF6;
    border-radius: 4px;
    padding: 4px 12px;
    color: #6F828E;
    font-size: 12px;
    line-height: 24px;
}
.blue_text {
    color: #0B3C84;
}
.space_10 {
    height: 10px;
}
.ef_block_text {
    border: 1px solid #DAE0E9;
    border-radius: 4px;
    padding: 20px;
    height: calc(100% - 50px);
    margin-bottom: 10px;
}
.ef_block_text--title {
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 10px;
}
.ef_block_text--info {
    font-size: 12px;
    line-height: 24px;
    color: #6F828E;
}
.ef_ekyc_form .card-body.full_width {
    max-width: 100%;
}
.space_40 {
    height: 40px;
}
.ef_camera_instructions_dos, .ef_camera_instructions_donts {
    margin-bottom: 20px;
}
.ef_camera_instructions_dos {
    padding-left: 10px;
    border-left: #11D4A4 2px solid;
}
.ef_camera_instructions_dos--title, .ef_camera_instructions_donts--title {
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    color: #0B3C84;
}
.ef_camera_instructions_dos--text, .ef_camera_instructions_donts--text {
    font-size: 10px;
    line-height: 14px;
    color: #6F828E;
}
.ef_camera_instructions_dos, .ef_camera_instructions_donts {
    margin-bottom: 20px;
}
.ef_camera_instructions_donts {
    padding-left: 10px;
    border-left: #FF0000 2px solid;
}
.form-radio-group-wrap--title {
    font-size: 14px;
    line-height: 24px;
    color: #6F828E;
    margin-bottom: 6px;
}
.form-radio-group-wrap .form-radio-group-v2 {
    margin-right: 6px;
    margin-bottom: 6px;
}
.form-radio-group-v2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
}
.form-radio-group-v2 input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.form-radio-group-wrap {
    margin-bottom: 20px;
}
.form-radio-group-v2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
}
.form-radio-group-v2 input:checked + .bg {
    color: #0B3C84;
}
.form-radio-group-v2 input + .bg {
    position: relative;
    z-index: 1;
    color: #4F4F4F;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    height: 30px;
    cursor: pointer;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
}
.form-radio-group-v2 input:checked + .bg::before {
    background: #F6F9FF;
    border: 1px solid #2A62A4;
}
.form-radio-group-v2 input + .bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    border: 1px solid #E3EAF7;
    border-radius: 4px;
    z-index: -1;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
}
.form-label-group > label span {
    color: #FF0000;
}
.ef_note_v2 {
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #6F828E !important;
    margin-top: 20px;
}
.btn_red_normal.no_arrow::before {
  display: none;
}
/* Open Account CSS Starts Here */


/* Lenden Club CSS Starts Here */

.ef_banner_strip_inner_each_copy--text2 {
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.green_text {
    color: #1CBB94;
    font-weight: bold;
}
.ef_left_green_border {
    border-left: #10D5A4 2px solid;
    padding-left: 15px;
}
.ef_invest_steps {
    padding: 50px 0;
}
.ef_invest_steps_wrap {
    padding: 20px 0 30px;
}
.ef_invest_steps_each {
    padding: 45px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.bg_green {
    background: linear-gradient(150.12deg, #11D5A4 6.52%, #10BB90 68.51%);
    border-radius: 4px;
}
.ef_invest_steps_each::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../images/icons/ellipse.svg") center right no-repeat;
    right: 0;
    top: 0;
    -webkit-transform: translate(20%);
    transform: translate(20%);
}
.ef_invest_steps_each--number {
    font-weight: 300;
    font-size: 42px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 20px;
}
.ef_invest_steps_each--title {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.ef_invest_steps_each--text {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}
.ef_icon_block {
    text-align: center;
    padding: 25px 45px;
}
.ef_icon_block--img {
    width: 65px;
    height: 65px;
    background: #E7FBF6;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ef_icon_block--title {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
    color: #333333;
    margin-bottom: 6px;
}
.ef_icon_block--text {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
}
.ef_block_content {
    text-align: center;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.ef_block_content--title {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin-bottom: 10px;
}
.ef_block_content {
    text-align: center;
}
.ef_block_content--text {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 0px;
    margin-bottom: 20px;
}
.ef_block_content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../images/icons/ellipse.svg") center right no-repeat;
    right: 0;
    top: 0;
}
.ef_block_content::after {
    content: '';
    position: absolute;
    width: 178px;
    height: 100%;
    z-index: 1;
    background: url("../images/icons/Asset-union.svg") center left no-repeat;
    left: 0;
    top: 0;
}
/* Lenden Club CSS Ends Here */



/* Lenden Club Details CSS Starts Here */

.ef_title_5 {
    font-weight: bold;
    font-size: 32px;
    line-height: 46px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    color: #01135C;
}
.bg_blue_light {
    background: #FBFCFF;
    border-radius: 4px;
}
.my-1 {
    margin-bottom: .25rem !important;
}
.mb-1 {
    margin-bottom: .25rem !important;
}
.ef_icon_block--number {
    width: 50px;
    height: 50px;
    background: #05216A;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}
.ef_icon_block--title {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
    color: #333333;
    margin-bottom: 6px;
}
.ef_icon_block--text {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
}
.max-width-800 {
    max-width: 800px;
}
.bg_green_light {
    background: #E7FBF6;
    border-radius: 4px;
}
.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}
/* Lenden Club Details CSS Ends Here */

/*Unlisted Kart CSS Starts Here*/

.space_30 {
    height: 30px;
}
.ef_powerby {
    font-size: 10px;
    line-height: 15px;
    color: #6F828E;
    display: block;
    margin-top: 6px;
}
.ef_banner_inner_img {
    min-width: 350px;
    text-align: center;
}
.ef_block_v1 {
    text-align: center;
    background: #F6F9FF;
    border: 1px solid #E3EAF7;
    border-radius: 4px;
    padding: 30px 10px;
    height: 100%;
}
.ef_block_v1--title {
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    margin-bottom: 15px;
}
.ef_block_v1--text {
    font-size: 16px;
    line-height: 26px;
    color: #333333;
}
.ef_title_2 {
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
}
.max-width-550 {
    max-width: 550px;
}
.m-auto {
    margin: auto !important;
}
.ef_support_links_each {
    padding-bottom: 20px;
    text-align: left;
}
.ef_support_links_each--title {
    font-size: 12px;
    line-height: 18px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}
.ef_support_links_each--link {
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}
.ef_disclaimer {
    font-size: 14px;
    line-height: 24px;
}


/*Unlisted Kart CSS Ends Here*/
