@charset "UTF-8";
.list-style-disc ul {
  padding-left: 15px;
}

.list-style-disc ul li {
  list-style: disc;
  margin-bottom: 15px;
}

/* Float four columns side by side */
.i-column {
  float: left;
  width: 33.333%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding */
.i-row {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Clear floats after the columns */
.i-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 768px) {
  .i-row {
    display: block;
  }
  .i-column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}
/*Colors*/
/* background */
.orange {
  background-color: #f37e20;
}

.light-orange {
  background-color: #fff0e6;
}

.grey {
  background-color: #646464;
}

.white {
  background-color: #fff;
}

.black {
  background-color: #000;
}

.textGreyLight3 {
  color: #e5e5e5;
}

/*Other*/
/********** Mixins **********/
/********** Vendor prefixing eg: -webkit-, -moz-, -ms-, -o- **********/
/*Pseudo eg: &::before, &::after*/
/*horizontally & vertically centering*/
/********** Keyframes **********/
/********** Media queries **********/
/********** Mixin for Flex **********/
html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Muli", sans-serif;
}

*:focus {
  border: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

body {
  margin: 0;
  padding: 0;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 140%;
  font-family: "Muli", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
}

body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}

p {
  font-size: 14px;
}

a:hover,
a:link,
a:visited {
  color: #f37e20;
}

ul li,
ol li {
  list-style-type: none;
}

ul.bullet-list li {
  position: relative;
  padding-left: 15px;
}

ul.bullet-list li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 6px;
  left: 0;
  background: #3d3d3d;
}

ul.bullet-list.bullet-list-white li::before {
  background: #fff;
}

ul.bullet-list.bullet-list-orange li::before {
  background: #f37e20;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3d3d3d;
  line-height: 125%;
}

h1 {
  font-size: 44px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

h4 {
  font-size: 22px;
  font-weight: 700;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

/* font-size */
.f-26 {
  font-size: 26px !important;
}

.f-24 {
  font-size: 24px !important;
}

.f-22 {
  font-size: 22px !important;
}

.f-20 {
  font-size: 20px !important;
}

.f-18 {
  font-size: 18px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-14 {
  font-size: 14px !important;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

ol[type="a"] {
  list-style-type: lower-alpha;
  margin-left: 15px;
}

ol[type="a"] li {
  list-style: inherit;
}

ol[type="a"] li:not(:last-child) {
  margin-bottom: 15px;
}

ol[type="1"] {
  list-style-type: decimal;
  margin-left: 15px;
}

ol[type="1"] li {
  list-style: inherit;
}

ol[type="1"] li:not(:last-child) {
  margin-bottom: 15px;
}

/* color */
.orange-text {
  color: #f37e20;
}

.maroon-text {
  color: #ad1e23;
}

.blue-text {
  color: #074a86;
}

.grey-text {
  color: #333333;
}

.title-text {
  color: #3d3d3d;
}

.white-text {
  color: #fff;
}

.greylight-text {
  color: #8b8b8b;
}

.darkgrey-text {
  color: #474545 !important;
}

/* utility classes */
.full-width {
  display: block;
  width: 100% !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.m-text-center {
  text-align: left !important;
}

@media only screen and (max-width: tablet) {
  .m-text-center {
    text-align: center !important;
  }
}

@media only screen and (max-width: 990px) {
  .m-text-center {
    text-align: center !important;
  }
}

.no-margin {
  margin: 0 !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.no-padding {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ptb-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ptb-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ptb-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ptb-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.ptb-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 30px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.plr-20 {
  padding: 0 20px;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-sentence {
  text-transform: capitalize !important;
}

.text-normal {
  text-transform: initial !important;
}

.noborder {
  border: none !important;
}

.divider-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 35px 0 30px;
}

@media only screen and (max-width: tablet) {
  .divider-line {
    margin: 25px 0;
  }
}

@media only screen and (max-width: 990px) {
  .divider-line {
    margin: 25px 0;
  }
}

.overlap-top-botton-100 {
  margin-top: -100px;
  margin-bottom: -100px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-bottom-80 {
  padding-bottom: 80px !important;
}

.padding-top-75 {
  padding-top: 75px;
}

.radius-10 {
  border-radius: 10px;
  overflow: hidden;
}

.black-texture-bg {
  background: #000 url("../images/nri/black-texture-bg.jpg") repeat;
  background-size: cover;
}

.black-texture-bg .heading-content {
  color: #fff;
  margin-bottom: 30px;
}

.black-texture-bg .heading-content .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.brown-texture-bg {
  background: #baa173 url("../images/nri/brown-texture-bg.jpg") repeat;
  background-size: cover;
}

.brown-texture-bg .heading-content {
  color: #fff;
  margin-bottom: 30px;
}

.brown-texture-bg .heading-content .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.align-items-center {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (min-width: tablet) {
  .d-pl-20 {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 991px) {
  .d-pl-20 {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .m-block {
    display: block;
  }
  .m-show {
    display: none !important;
  }
  .m-img {
    display: none;
  }
  .d-block {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .m-hide {
    display: none !important;
  }
  .d-img {
    display: none;
  }
  .m-no-padding {
    padding: 0 !important;
  }
  .m-pt-0 {
    padding-top: 0 !important;
  }
  .m-white-bg {
    background: #fff !important;
  }
  .tab-padding-top-0 {
    padding-top: 0 !important;
  }
  .tab-padding-bottom-0 {
    padding-bottom: 0 !important;
  }
  .mob-width-175 {
    margin-left: 0 !important;
  }
  .tab-padding-right-0 {
    padding-right: 0 !important;
  }
  .m-mb-25 {
    margin-bottom: 25px !important;
  }
  .m-pt-0 {
    padding-top: 0 !important;
  }
}

@media only screen and (min-width: 768px) {
  .m-view {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .d-view {
    display: none !important;
  }
  .m-view {
    display: block !important;
  }
  .m-textblock {
    display: block;
  }
}

@media only screen and (max-width: tablet-small) {
  .mob-width-175 {
    max-width: 175px !important;
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 639px) {
  .mob-width-175 {
    max-width: 175px !important;
    margin-left: 0 !important;
  }
}

/* section */
.section {
  position: relative;
  max-width: 100%;
}

.section-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 20px;
  height: 100%;
}

.section-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #f37e20;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-label .middle-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.section-label .middle-text:before, .section-label .middle-text:after {
  width: 120px;
  content: "";
  width: 96px;
  border-bottom: 1px dashed #f37e20;
  margin: auto;
  height: 2px;
}

.section-label .middle-text:before {
  margin-right: 10px;
}

.section-label .middle-text:after {
  margin-left: 10px;
}

.section-label-new {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 14px;
  line-height: 22px;
  color: #f37e20;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-label-new:after {
  content: "";
  display: inline-block;
  width: 96px;
  border-bottom: 1px dashed #f37e20;
  margin: auto;
  margin-left: 15px;
  height: 2px;
}

.section-title {
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 20px;
}

.section-title.text-left {
  text-align: left;
}

.section-title.orange-title {
  color: #f37e20;
}

.section-title.orange-title .icon img {
  width: 8px;
  position: relative;
  top: -3px;
  left: 4px;
}

@media only screen and (max-width: tablet-wide) {
  .section-label-new {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #f37e20;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .section-label-new:after {
    display: none;
  }
  .section-label-new span {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-label-new span:before, .section-label-new span:after {
    content: "";
    width: 96px;
    border-bottom: 1px dotted #f37e20;
    margin: auto;
    height: 2px;
  }
  .section-label-new span:before {
    margin-right: 10px;
  }
  .section-label-new span:after {
    margin-left: 10px;
  }
  .section-label {
    text-align: left;
  }
  .section-title {
    font-size: 26px;
    text-align: left;
  }
}

@media only screen and (max-width: 1023px) {
  .section-label-new {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #f37e20;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .section-label-new:after {
    display: none;
  }
  .section-label-new span {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-label-new span:before, .section-label-new span:after {
    content: "";
    width: 96px;
    border-bottom: 1px dotted #f37e20;
    margin: auto;
    height: 2px;
  }
  .section-label-new span:before {
    margin-right: 10px;
  }
  .section-label-new span:after {
    margin-left: 10px;
  }
  .section-label {
    text-align: left;
  }
  .section-title {
    font-size: 26px;
    text-align: left;
  }
}

@media only screen and (max-width: phone-wide) {
  .section-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .section-title {
    font-size: 22px;
  }
}

/* ic-btn */
.ic-btn,
a.ic-btn:link,
a.ic-btn:visited {
  background: #f37e20;
  color: #fff;
  border: 1px solid #f37e20;
  border-radius: 50px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 12.5px 34px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

.ic-btn.white,
a.ic-btn:link.white,
a.ic-btn:visited.white {
  background: #fff;
  color: #f37e20;
}

.ic-btn.white:hover,
a.ic-btn:link.white:hover,
a.ic-btn:visited.white:hover {
  background-color: #f37e20;
  color: #fff;
}

.ic-btn:hover,
a.ic-btn:link:hover,
a.ic-btn:visited:hover {
  background-color: white;
  color: #f37e20;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  text-decoration: none;
}

.ic-btn.border-btn,
a.ic-btn:link.border-btn,
a.ic-btn:visited.border-btn {
  background: transparent;
  color: #f37e20;
}

.ic-btn.border-btn:hover,
a.ic-btn:link.border-btn:hover,
a.ic-btn:visited.border-btn:hover {
  background-color: white;
  color: #f37e20;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.ic-btn.border-btn-white,
a.ic-btn:link.border-btn-white,
a.ic-btn:visited.border-btn-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.ic-btn.border-btn-white:hover,
a.ic-btn:link.border-btn-white:hover,
a.ic-btn:visited.border-btn-white:hover {
  background-color: white;
  color: #f37e20;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

@media only screen and (max-width: tablet) {
  .ic-btn,
  a.ic-btn:link,
  a.ic-btn:visited {
    padding: 10px 10px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 990px) {
  .ic-btn,
  a.ic-btn:link,
  a.ic-btn:visited {
    padding: 10px 10px;
    font-size: 13px;
  }
}

.ic-more {
  display: inline-block !important;
  position: relative;
  color: #f37e20;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding-right: 20px !important;
}

.ic-more:after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more.png") no-repeat;
  width: 10px;
  height: 11px;
}

.ic-more:hover {
  text-decoration: underline !important;
}

.ic-more.w-arrow {
  color: #fff;
}

.ic-more.w-arrow:after {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more-w.png") no-repeat;
}

@media only screen and (max-width: tablet) {
  .ic-more.md-ic-more-w {
    color: #fff;
  }
  .ic-more.md-ic-more-w:after {
    background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more-w.png") no-repeat !important;
  }
  .ic-more.md-ic-more-o {
    color: #fff;
  }
  .ic-more.md-ic-more-o:after {
    background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more.png") no-repeat !important;
  }
}

@media only screen and (max-width: 990px) {
  .ic-more.md-ic-more-w {
    color: #fff;
  }
  .ic-more.md-ic-more-w:after {
    background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more-w.png") no-repeat !important;
  }
  .ic-more.md-ic-more-o {
    color: #fff;
  }
  .ic-more.md-ic-more-o:after {
    background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more.png") no-repeat !important;
  }
}

.ic-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  color: #f37e20;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
}

.ic-white-link {
  color: white;
  text-transform: none;
}

.ic-white-link:link, .ic-white-link:visited {
  color: white;
}

.ic-white-link:after {
  right: 5px;
  top: 6px;
  background: url(/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/more-w.png) no-repeat !important;
  width: 6px;
  height: 10px;
  background-size: contain;
}

.ic-compare-btn,
.ic-find-btn {
  position: relative;
}

.ic-compare-btn::before,
.ic-find-btn::before {
  position: absolute;
  content: "";
  height: 35px;
  top: -6px;
  left: 0;
}

.ic-find-btn {
  padding-left: 35px;
}

.ic-find-btn::before {
  background: url("../images/icons/creditcard/find-icon.svg") no-repeat;
  width: 30px;
}

.ic-compare-btn {
  padding-left: 45px;
}

.ic-compare-btn::before {
  background: url("../images/icons/creditcard/compare-icon.svg") no-repeat;
  width: 35px;
}

.button-group a:not(:last-child) {
  margin-right: 15px;
}

.menu-overlay {
  cursor: default;
  position: absolute;
  display: none;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 40px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.menu-overlay .menu-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 960px) {
  .menu-overlay {
    top: 55px;
  }
}

.menu-open {
  cursor: default;
  position: absolute;
  display: none;
  max-width: 1220px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40px;
  z-index: 99;
  margin-top: 0;
}

.menu-open .menu-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 960px) {
  .menu-open {
    top: 55px;
  }
}

.body-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  cursor: default;
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  margin-top: 40px;
  z-index: 10;
}

.shift-submenu .menu-overlay {
  top: 140px;
}

.hide {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.underline {
  border-bottom: 1px solid #f37e20;
}

.tooltip-wrapper {
  position: relative;
}

.tooltip-wrapper .tooltip {
  display: none;
}

.tooltip-wrapper:hover .tooltip {
  display: inline-block;
  position: absolute;
  background-color: #4b4b4b;
  color: white;
  bottom: -17px;
  right: 0;
  border-radius: 5px;
  padding: 2px;
  font-size: 12px;
  z-index: 9;
  text-align: center;
  text-transform: capitalize;
}

.tooltip-wrapper:hover .tooltip:after {
  content: "";
  display: inline-block;
  background: url(/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/arrow_down.png) no-repeat;
  background-size: contain;
  width: 9px;
  height: 5px;
  vertical-align: middle;
  top: -14px;
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -50px;
}

/* table-scroll-wrapper */
@media only screen and (max-width: tablet) {
  .table-scroll-wrapper {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 990px) {
  .table-scroll-wrapper {
    overflow-x: auto;
  }
}

/* date-readtime */
.date-readtime {
  font-size: 12px;
  color: #666666;
}

.date-readtime span.num-viewer {
  display: inline-block;
  background: url("../images/icons/video/eye-icon.svg") no-repeat left;
  background-size: 20px;
  padding-left: 25px;
}

.date-readtime span.num-viewer.viewed {
  background: url("../images/icons/video/eye-icon-o.svg") no-repeat left;
}

.date-readtime span.like {
  display: inline-block;
  background: url("../images/icons/video/bookmark-light.svg") no-repeat left;
  background-size: 14px;
  padding-left: 20px;
}

.date-readtime span.like.active {
  background: url("../images/icons/video/bookmark-fill.svg") no-repeat left;
}

.date-readtime span.like.disliked {
  background: url("../images/icons/video/dislike-o.svg") no-repeat left bottom;
}

.date-readtime span.download {
  display: inline-block;
  background: url("../images/icons/video/download-icon.svg") no-repeat left;
  background-size: 13px;
  padding-left: 20px;
}

.date-readtime span:not(:last-child) {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid rgba(102, 102, 102, 0.2);
}

/* bookmark-share  */
.bookmark-share {
  margin-left: auto;
  position: relative;
}

.bookmark-share .pdf,
.bookmark-share .bookmark,
.bookmark-share .share,
.bookmark-share .call {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-right: 10px;
}

.bookmark-share .pdf {
  width: 20px;
  height: 20px;
  background: url("../images/icons/video/pdf-icon-b.svg") no-repeat center;
  background-size: 20px;
}

.bookmark-share .pdf:hover {
  background: url("../images/icons/video/pdf-icon-small-o.svg") no-repeat center;
  background-size: 20px;
}

.bookmark-share .bookmark {
  background: url("../images/icons/video/bookmark.svg") no-repeat center;
  background-size: 16px;
}

.bookmark-share .bookmark:hover {
  background: url("../images/icons/video/bookmark-o.svg") no-repeat center;
  background-size: 16px;
}

.bookmark-share .bookmark.active {
  background: url("../images/icons/video/bookmark-fill.svg") no-repeat center;
}

.bookmark-share .share {
  margin-right: 0;
  background: url("../images/icons/video/share.svg") no-repeat center;
  background-size: 16px;
}

.bookmark-share .call {
  background: url("../images/icons/call-b.svg") no-repeat center;
}

.bookmark-share .call.active {
  background: url("../images/icons/call-o.svg") no-repeat center;
}

.share-content {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: -15px;
  right: -230px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  -ms-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  -o-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  border-radius: 10px;
  width: 210px;
  padding: 15px;
}

.share-content.active {
  visibility: visible;
  right: 0;
}

@media only screen and (max-width: 991px) {
  .share-content.active {
    right: auto;
  }
}


.share-content .share-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin: 0 auto;
}

.share-content .share-link li {
  list-style: none;
  padding-left: 0;
}

.share-content .share-link li:before {
  display: none;
}

.share-content .share-link li .h-icon {
  display: none;
}

.share-content .share-link li:hover .n-icon {
  display: none;
}

.share-content .share-link li:hover .h-icon {
  display: block;
}

.share-content .youtube-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  background: #f0f0f0;
  border-radius: 16px;
  padding: 7px 15px;
  height: 32px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-top: 15px;
}

.share-content .youtube-text input {
  width: calc(100% - 55px);
  color: #666666;
  border: none;
  background: transparent;
  font-weight: 600;
}

.share-content .youtube-text span {
  display: inline-block;
  color: #f37e20;
  width: 55px;
  background: #f0f0f0;
  text-align: center;
  cursor: pointer;
}

.call-content {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: -15px;
  right: -230px;
  width: 210px;
}

.call-content .inner-content {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  -ms-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  -o-box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  box-shadow: 0px 4px 15px rgba(113, 113, 113, 0.18);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
}

.call-content.active {
  visibility: visible;
  left: 0;
  bottom: 20px;
  top: auto;
}

@media only screen and (max-width: 1190px) {
  .call-content.active {
    left: auto;
    right: 0;
  }
}
.call-content .call-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 14px;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 15px;
}

.call-content .call-text input {
  width: calc(100% - 55px);
  color: #666666;
  border: none;
  background: transparent;
  font-weight: 600;
}

.call-content .call-text span {
  display: inline-block;
  color: #f37e20;
  min-width: 60px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #f37e20;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .call-content.active {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1002;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
  }
  .call-content.active .inner-content {
    border-radius: 0;
    padding: 20px 20px 30px;
  }
  .call-content.active .call-text {
    font-size: 18px;
    margin-top: 20px;
  }
  .call-content.active .call-text span {
    font-size: 18px;
    border-radius: 20px;
    min-width: 90px;
    line-height: 1.5;
  }
}

/* loction */
.loction {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.loction .map-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 10px;
  background: url("../images/icons/map-b.svg") no-repeat center;
}

.loction .distance {
  margin-right: 10px;
  color: #000;
}

@media screen and (max-width: 1200px) {
  .loction {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 340px) {
  .loction {
    width: 100%;
  }
}

.num-rating {
  background: #f3a126;
  color: #fff;
  padding: 5px 25px 5px 5px;
  margin-left: 14px;
  font-size: 14px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
}

.num-rating:after {
  content: "";
  width: 15px;
  height: 15px;
  right: 7px;
  position: absolute;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/star-white.png") no-repeat right;
}

/* radio-list */
.radio-list {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-left: 15px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-list:not(:last-child) {
  margin-bottom: 20px;
}

.radio-list input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-list input:checked ~ .checkmark {
  border: 1px solid #f37e20;
}

.radio-list input:checked ~ .checkmark:after {
  display: block;
}

.radio-list:hover input ~ .checkmark {
  border: 1px solid #f37e20;
}

.radio-list .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
}

.radio-list .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f37e20;
}

/* checkbox-list */
.checkbox-list {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-left: 15px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-list input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-list input:checked ~ .checkmark {
  border: 1px solid #f37e20;
}

.checkbox-list input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-list:hover input ~ .checkmark {
  border: 1px solid #f37e20;
}

.checkbox-list .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}

.checkbox-list .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #f37e20;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* page-topbar */
.page-topbar {
  margin-top: 10px;
}

.page-topbar .section-inner {
  padding: 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.page-topbar .page-heading {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  color: #074a86;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  margin: 0;
}

.page-topbar p {
  color: #666666;
  opacity: 0.7;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 23px;
}

@media only screen and (max-width: tablet) {
  .page-topbar .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    padding-top: 20px;
  }
  .page-topbar .page-heading {
    font-size: 20px;
    margin-bottom: 25px;
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .page-topbar .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    padding-top: 20px;
  }
  .page-topbar .page-heading {
    font-size: 20px;
    margin-bottom: 25px;
    width: 100%;
  }
}

/* multiple select */
.ms-options-wrap > button,
.ms-options-wrap > button:focus {
  border-color: rgba(199, 199, 199, 0.8);
  border-width: 0 0 1px 0;
  font-size: 14px;
  color: #999999;
  padding-top: 0;
}

.ms-options-wrap > button::after,
.ms-options-wrap > button:focus::after {
  border-top-color: #f37e20;
}

.ms-options-wrap.ms-active > .ms-options {
  min-height: auto !important;
}

.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
  left: 10px;
  top: 8px;
}

.ms-options-wrap > .ms-options > ul label {
  padding: 6px 6px 6px 35px;
  cursor: pointer;
}

/* bg-color */
.blue-bg {
  background: #074a86;
}

.blue-bg .section-title {
  color: #fff;
}

.white-bg {
  background: #fff !important;
}

.grey-bg {
  background: #f8f8f8;
}

.orange-bg {
  background-color: #fff7eb;
}

.light-orange-bg {
  background: #fff7eb;
}

.darkorange-bg {
  background: #f37e20;
}

.maroon-bg {
  background: #ad1e23;
}

/* text-color */
.white-color {
  color: #fff;
}

.orange-color {
  color: #f37e20;
}

.maroon-color {
  color: #ad1e23;
}

.black-color {
  color: #000;
}

/* width classes */
.width-25 {
  max-width: 25%;
  width: 100%;
}

.width-50 {
  max-width: 50%;
  width: 100%;
}

.width-75 {
  max-width: 75%;
  width: 100%;
}

.width-100 {
  max-width: 100%;
  width: 100%;
}

.width-small {
  max-width: 282px;
  width: 100%;
}

.width-medium {
  max-width: 593px;
  width: 100%;
}

.width-large {
  max-width: 903px;
  width: 100%;
}

.width-full {
  max-width: 100%;
  width: 100%;
}

/* col-width */
@media only screen and (min-width: 992px) {
  .col-width-25 {
    width: 25%;
  }
  .col-width-50 {
    width: 50%;
  }
  .col-width-75 {
    width: 75%;
  }
  .col-width-100 {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .col-width-tab-25 {
    width: 25% !important;
  }
  .col-width-tab-50 {
    width: 50% !important;
  }
  .col-width-tab-75 {
    width: 75% !important;
  }
}

.col-width-25,
.col-width-50,
.col-width-75,
.col-width-100 {
  padding: 0 15px;
}

@media only screen and (max-width: 991px) {
  .col-width-25,
  .col-width-50,
  .col-width-75,
  .col-width-100 {
    width: 100%;
  }
}

/* star-rating */
.star-rating {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #8b8b8b;
  text-align: center;
}

.star-rating span {
  display: inline-block;
  background: url("../images/icons/saving-account/empty-star.svg") no-repeat;
  overflow: hidden;
  width: 60px;
  height: 60px;
  text-indent: -9999999px;
}

.star-rating span.checked {
  background: url("../images/icons/saving-account/fill-star.svg") no-repeat;
}

@media only screen and (max-width: tablet) {
  .star-rating span, .star-rating.checked {
    width: 30px;
    height: 30px;
    background-size: 30px 30px !important;
  }
}

@media only screen and (max-width: 990px) {
  .star-rating span, .star-rating.checked {
    width: 30px;
    height: 30px;
    background-size: 30px 30px !important;
  }
}

.download-notification {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  display: none;
}

.download-notification::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(102.42deg, #f37e20 6.89%, #ad1e23 71.62%);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
          transform: matrix(-1, 0, 0, 1, 0, 0);
}

.download-notification .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6.5px 15px;
}

.download-notification .content .close {
  margin-right: 10px;
  font-size: 20px;
  color: #cecedb;
  cursor: pointer;
}

.download-notification .content p {
  max-width: 150px;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  letter-spacing: -0.02em;
  margin: 0 10px;
}

.download-notification .content p span {
  font-weight: 600;
}

.download-notification .content a {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  margin-left: auto;
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
}

.download-notification .content a.hide {
  display: none;
}

@media only screen and (max-width: 991px) {
  .download-notification {
    display: block;
  }
}
/* tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-content {
  width: 430px;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 20px 30px;
  text-align: left;
}

.tooltip .tooltip-content::after {
  content: "";
  position: absolute;
  top: 30px;
  left: -15px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.tooltip .tooltip-content h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 5px;
  color: #4b4b4b;
}

.tooltip .tooltip-content p {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #8b8b8b;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* video-popup */
.openvideo {
  cursor: pointer;
}

.video-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 130px);
  top: 130px;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow-y: auto;
}

.video-popup .video-popup-inner {
  position: relative;
  width: 93%;
  max-width: 762px;
  background: #fff;
  margin: 40px auto 0;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
}

.video-popup .video-popup-inner .popup-close,
.video-popup .video-popup-inner .banner-popup-close {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background: #f37e20;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  right: -10px;
  text-align: center;
  line-height: 27px;
}

.video-popup .video-popup-inner .popup-close img,
.video-popup .video-popup-inner .banner-popup-close img {
  vertical-align: middle;
}

.video-popup .video-popup-inner video {
  width: 100%;
}

.video-popup .video-popup-inner .media {
  position: relative;
}

.video-popup .video-popup-inner .media .btn-control {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 47px);
  cursor: pointer;
}

.video-popup .video-popup-inner .media .btn-control div {
  width: 68px;
  height: 48px;
  border-radius: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  line-height: 46px;
}

.video-popup .video-popup-inner .media .btn-control div img {
  vertical-align: middle;
  max-width: 16px;
}

.video-popup .video-popup-inner .media .btn-control div:hover {
  background: rgba(255, 0, 0, 0.65);
}

.video-popup .video-popup-inner .media .btn-control .pause-btn {
  display: none;
  opacity: 0;
}

.video-popup .video-popup-inner .media .btn-control:hover .pause-btn {
  opacity: 1;
}

.video-popup .video-popup-inner .media.iframe iframe {
  width: 100%;
  min-height: 400px;
}

.video-popup .video-popup-inner .content {
  margin-top: 10px;
  max-width: 500px;
}

.video-popup .video-popup-inner .content h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 138%;
  margin-bottom: 5px;
}

.video-popup .video-popup-inner .content p {
  font-size: 14px;
  line-height: 138%;
}

@media only screen and (max-width: tablet) {
  .video-popup {
    top: 110px;
  }
}

@media only screen and (max-width: 990px) {
  .video-popup {
    top: 110px;
  }
}

@media only screen and (max-width: tablet-small) {
  .video-popup {
    top: 110px;
  }
  .video-popup .video-popup-inner .media .btn-control {
    top: calc(50% - 18px);
    left: calc(50% - 25px);
  }
  .video-popup .video-popup-inner .media .btn-control div {
    width: 50px;
    height: 36px;
    line-height: 33px;
    border-radius: 10px;
  }
  .video-popup .video-popup-inner .media .btn-control div img {
    vertical-align: middle;
    width: 15px;
  }
  .video-popup .video-popup-inner .media.iframe iframe {
    min-height: 250px;
  }
}

@media only screen and (max-width: 639px) {
  .video-popup {
    top: 110px;
  }
  .video-popup .video-popup-inner .media .btn-control {
    top: calc(50% - 18px);
    left: calc(50% - 25px);
  }
  .video-popup .video-popup-inner .media .btn-control div {
    width: 50px;
    height: 36px;
    line-height: 33px;
    border-radius: 10px;
  }
  .video-popup .video-popup-inner .media .btn-control div img {
    vertical-align: middle;
    width: 15px;
  }
  .video-popup .video-popup-inner .media.iframe iframe {
    min-height: 250px;
  }
}

@media only screen and (max-width: tablet) {
  .notification-enabled .video-popup {
    top: 130px;
  }
  .notification-enabled .video-popup .video-popup-inner {
    margin: 70px auto 0;
  }
}

@media only screen and (max-width: 990px) {
  .notification-enabled .video-popup {
    top: 130px;
  }
  .notification-enabled .video-popup .video-popup-inner {
    margin: 70px auto 0;
  }
}

/* page-content */
@media screen and (max-width: 991px) {
  .page-content {
    margin-top: 112px;
  }
}

/* circular-chart  */
.circular-chart {
  width: 20px;
  height: 20px;
}

.circle-bg {
  fill: none;
  stroke: #a7a7a7;
  stroke-width: 2;
}

.circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress 10s ease-out forwards;
  -ms-animation: progress 10s ease-out forwards;
  -webkit-animation: progress 10s ease-out forwards;
  -moz-animation: progress 10s ease-out forwards;
  -o-animation: progress 10s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

@-webkit-keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange-fill .circle {
  stroke: #f37e20;
}

/* ios-link & android-link  */
@media screen and (max-width: 768px) {
  .ios-link.hide-link,
  .android-link.hide-link {
    display: none !important;
  }
}

/* imodal-popup */
.imodal-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1003;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
}

.imodal-popup .imodal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 15px;
}

.imodal-popup .imodal-close {
  position: absolute;
  right: 35px;
  top: 40px;
  z-index: 2;
  cursor: pointer;
}

/* page-title */
.page-title {
  position: relative;
  background: radial-gradient(53.19% 615.36% at 46.18% 52.3%, #f37e20 0%, #de5416 100%);
}

.page-title::before, .page-title::after {
  content: "";
  position: absolute;
  height: 100%;
}

.page-title::before {
  width: 20%;
  background: #fdf6f4;
  top: 1px;
  height: calc(100% - 2px);
}

.page-title::after {
  width: 20%;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/page-title-bg.png") no-repeat;
  right: 0;
  top: 0;
}

.page-title .section-inner {
  padding: 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.page-title .title {
  position: relative;
  background: #fdf6f4;
  border-radius: 0 300px 300px 0;
  padding-right: 50px;
  margin: 1px 0;
}

.page-title .title h1 {
  font-weight: 900;
  font-size: 32px;
  line-height: 80%;
  color: #f37e20;
  width: 200px;
  margin: 0;
  padding: 15px 0 20px;
}

.page-title .title h1 span {
  font-size: 14px;
  line-height: 80%;
  display: block;
}

.page-title .title h1 u {
  text-decoration: none;
  border-bottom: 1px solid #f37e20;
}

@media screen and (max-width: 640px) {
  .page-title .title {
    min-height: 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    padding-right: 25px;
  }
  .page-title .title h1 {
    font-size: 15px;
    line-height: 80%;
    padding: 7px 0 9px;
    width: auto;
  }
  .page-title .title h1 span {
    font-size: 7px;
    line-height: 10px;
  }
  .page-title::before {
    width: 15%;
  }
  .page-title::after {
    background-size: 50px 50px;
  }
}

.page-title .sub-title h2 {
  font-weight: 900;
  font-size: 26px;
  line-height: 120%;
  color: #fff;
  max-width: 300px;
  margin-left: 30px;
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  .page-title .sub-title h2 {
    font-size: 14px;
  }
}

.page-title.page-title-style-1 {
  background: url("../images/orange-hub/orangebook-banner.jpg") no-repeat;
}

.page-title.page-title-style-1:before {
  display: none;
}

.page-title.page-title-style-1 .title {
  margin: 0 auto;
  background: transparent;
  color: #fff;
  padding: 20px 0 35px;
}

.page-title.page-title-style-1 .title h1 {
  color: #fff;
  font-size: 64px;
}

.page-title.page-title-style-1 .title h1 span {
  font-size: 28px;
}

.page-title.page-title-style-1 .title u {
  border-bottom: 1px solid #fff;
}

.page-title.page-title-style-1 .title p {
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .page-title.page-title-style-1 .title {
    display: block;
    padding: 20px 0 25px;
  }
  .page-title.page-title-style-1 .title h1 {
    font-size: 34px;
  }
  .page-title.page-title-style-1 .title h1 span {
    font-size: 15px;
  }
  .page-title.page-title-style-1 .title p {
    font-size: 12px;
  }
}

.page-title-with-icon {
  position: relative;
  background: #084a86;
}

.page-title-with-icon::before, .page-title-with-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 290px;
  height: 113px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/vector-bg.png") no-repeat;
}

.page-title-with-icon::before {
  left: 0;
}

.page-title-with-icon::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  right: 0;
}

.page-title-with-icon h1 {
  margin: 0;
  text-align: center;
  font-size: 34px;
  line-height: 42px;
  font-weight: 900;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.page-title-with-icon h1 img {
  margin-right: 15px;
  height: 30px;
}

@media screen and (max-width: 640px) {
  .page-title-with-icon .section-inner {
    padding: 20px;
  }
  .page-title-with-icon h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-title-with-icon h1 img {
    height: 20px;
  }
}

/* tooltips */
.tooltips {
  position: relative;
  display: inline-block;
}

.tooltips:hover .tooltiptext {
  display: block;
}

.tooltips .tooltiptext {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3.50646px 24.5452px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1;
  width: 225px;
  top: 34px;
  left: -20px;
  padding: 15px;
  font-size: 12px;
  line-height: 16px;
  color: #666666;
  text-transform: none;
  text-align: center;
}

.tooltips .tooltiptext::before, .tooltips .tooltiptext::after {
  content: "";
  position: absolute;
  border-width: 10px;
  border-style: solid;
}

.tooltips .tooltiptext::before {
  top: -20px;
  left: 18px;
  border-color: transparent transparent #fff transparent;
  z-index: 1;
}

.tooltips .tooltiptext::after {
  top: -21px;
  left: 18px;
  border-color: transparent transparent #e4e4e4 transparent;
}

/* push-popup */
.push-modal-content {
  position: fixed;
  z-index: 99999;
  max-width: 382px;
  width: calc(100% - 30px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 15px;
}

.push-modal-content .push-heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.push-modal-content .push-heading h2 {
  font-size: 15px;
  color: #f37e20;
  text-align: left;
  margin-bottom: 5px;
}

.push-modal-content .push-heading p {
  color: #848484;
  text-align: left;
  font-size: 12px;
  max-width: 90%;
  line-height: 1.4;
}

.push-modal-content .push-heading .desc {
  padding-left: 15px;
  width: calc(100% - 50px);
}

.push-modal-content .button-group {
  margin-top: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.push-modal-content .button-group .push-btn {
  font-size: 13px;
  line-height: 34px;
  height: 34px;
  width: auto;
  padding: 0 30px;
  background: #f37e20;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
}

.push-modal-content .button-group #push-modal-close {
  background: #dedede;
  margin-right: 10px;
  color: #7d7d7d;
}

.push-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 9999;
}

/* card-loading */
.card-loading {
  min-height: 80px;
  background: url("../images/icons/loader.gif") no-repeat center;
  background-size: 80px;
  margin-bottom: 40px;
}

/* mob-announcement-section */
@media only screen and (max-width: 960px) {
  .mob-announcement-section {
    top: 95px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

/* scrolltop */
.scrolltop {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 10px;
  z-index: 12;
}

.scrolltop .scrolltop-btn {
  padding: 0 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  margin-left: auto;
  width: 142px;
  height: 46px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 80px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .scrolltop .scrolltop-btn {
    margin: 0 auto;
  }
}

.scrolltop .scrolltop-btn p {
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding-right: 10px;
  color: #f37e20;
}

.scrolltop .scrolltop-btn span {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #f37e20;
  border-radius: 50%;
}

.scrolltop .scrolltop-btn:hover p {
  color: #ad1e23;
}

.scrolltop .scrolltop-btn:hover span {
  background: #ad1e23;
}

/* ask-ipal */
.ask-ipal {
  position: fixed;
  bottom: 65px;
  right: 20px;
  z-index: 12;
}

.ask-ipal.active {
  z-index: 0;
}

/* ask-ipal */
.whatsapp-link {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 13;
}

.whatsapp-link .link {
  background: #4caf50 url("../images/icons/whatsup.svg") no-repeat center center;
  width: 60px;
  height: 45px;
  display: block;
  border-radius: 20px;
  background-size: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 6px 5px 13px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 6px 5px 13px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 6px 5px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 6px 5px 13px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: tablet) {
  .whatsapp-link {
    bottom: 10px;
    right: 30px;
    z-index: 8;
  }
}

@media only screen and (max-width: 990px) {
  .whatsapp-link {
    bottom: 10px;
    right: 30px;
    z-index: 8;
  }
}

/* cross-sell-popup */
.cross-sell-popup {
  position: fixed;
  max-width: 315px;
  width: 100%;
  height: 170px;
  z-index: 9999;
  bottom: 10px;
  right: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  background-color: #f37e20;
}

.cross-sell-popup .popup-inner {
  position: relative;
}

.cross-sell-popup .content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.cross-sell-popup .content p {
  max-width: 150px;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.cross-sell-popup .content p.rating {
  font-size: 24px;
  line-height: 20px;
  margin-bottom: 25px;
}

.cross-sell-popup .content .button-group {
  position: absolute;
  bottom: 15px;
}

.cross-sell-popup .content .button-group .ic-btn {
  background: #ad1e23;
  padding: 8.5px 25px;
  border: none;
}

.cross-sell-popup .content .button-group .ic-btn:hover {
  background: #fff;
}

.cross-sell-popup .close {
  cursor: pointer;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 21px;
  z-index: 1;
  color: #f37e20;
  font-size: 20px;
}

.cross-sell-popup.rel-pos {
  position: relative;
  max-width: 370px;
  width: 100%;
  height: 180px;
}

.cross-sell-popup.rel-pos .media {
  height: 180px;
}

.cross-sell-popup.rel-pos .media img {
  width: 100%;
}

.cross-sell-popup.rel-pos .content h5 {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  /*19-03-21 starts*/
  margin-bottom: 5px;
  /*19-03-21 ends*/
  letter-spacing: 0.2px;
}

.cross-sell-popup.rel-pos .content p {
  max-width: 210px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cross-sell-popup.rel-pos .content .button-group .ic-btn {
  min-width: 100px;
  max-width: 206px;
}

.cross-sell-popup.no-pos {
  display: block;
  width: 315px;
  height: 180px;
}

.cross-sell-popup.no-pos .media {
  height: 180px;
}

.cross-sell-popup.no-pos .media img {
  width: 100%;
}

.cross-sell-popup.no-pos .content h5 {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  /*19-03-21 starts*/
  margin-bottom: 5px;
  /*19-03-21 ends*/
  letter-spacing: 0.2px;
}

.cross-sell-popup.no-pos .content p {
  max-width: 210px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cross-sell-popup.no-pos .content .button-group .ic-btn {
  min-width: 100px;
  max-width: 206px;
}

.popup-search {
  width: 174px;
  height: 24px;
  border-radius: 50px !important;
  margin-bottom: 10px;
}

.popup-search .search-icon {
  width: 40px;
  height: 16px;
  background: url("../images/icons/icon_search_orange.svg") no-repeat center;
  background-size: 16px;
  border-radius: 0 20px 20px 0;
  border: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  left: 0;
  top: 4px;
}

.popup-search form {
  position: relative;
  width: auto;
}

.popup-search input {
  padding: 0 15px 0 37px !important;
  width: 100%;
  font-size: 14px;
  font-family: "Muli", sans-serif;
  border-radius: 50px;
  height: 24px !important;
}

.search-box--transparent {
  background-color: transparent !important;
  border: 1px solid white;
}

.search-box--transparent input {
  color: white;
  background-color: transparent;
}

.search-box--transparent input:focus {
  background-color: transparent !important;
}

.search-box--transparent input::-webkit-input-placeholder {
  color: white;
}

.search-box--transparent input:-ms-input-placeholder {
  color: white;
}

.search-box--transparent input::-ms-input-placeholder {
  color: white;
}

.search-box--transparent input::placeholder {
  color: white;
}

.search-box--transparent .search-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/icon_search_white.png") no-repeat center;
  background-size: 16px;
}

/* digitalbanking */
.digitalbanking .section-inner {
  padding-top: 0;
}

.digitalbanking .digitalbanking-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.digitalbanking .digitalbanking-inner .section-title {
  font-weight: 800;
  margin-bottom: 0;
}

.digitalbanking .digitalbanking-inner h5 {
  font-weight: 800;
  font-size: 18px;
  color: #a7a7a7;
  margin-bottom: 30px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content {
  width: 40%;
  max-width: 500px;
  padding-top: 40px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px 10px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li {
  position: relative;
  border: 1px solid #f37e20;
  border-radius: 100px;
  min-width: 210px;
  height: 34px;
  padding-left: 40px;
  line-height: 34px;
  margin: 0 15px 20px;
  cursor: pointer;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f37e20;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li .circular-chart {
  display: none;
  position: absolute;
  left: 10px;
  top: 5px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li.active {
  border: 1px solid #cec7c1;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li.active::before {
  display: none;
}

.digitalbanking .digitalbanking-inner .digitalbanking-content ul li.active .circular-chart {
  display: block;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media {
  width: 60%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .media-list {
  position: relative;
  display: none;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .media-list.active {
  display: block;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs {
  position: absolute;
  right: 30px;
  bottom: 50px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs .qrcodebox:first-child .qrcode-icon {
  background: transparent;
  border-radius: 0 10px 10px 0;
  border-left: none;
  padding-left: 20px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons {
  position: absolute;
  left: 48%;
  bottom: 11%;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon a {
  margin: 0 5px;
}

.digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon a img {
  position: relative;
  z-index: -1;
  height: 60px;
}

@media screen and (max-width: 568px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon a img {
    height: 40px;
    width: auto;
    max-width: initial;
  }
}

@media screen and (max-width: 360px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon {
    left: 47%;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon a {
    margin: 0 2px;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .download-icons .download-icon a img {
    height: 38px;
  }
}

.digitalbanking .banking-tagline {
  margin-top: -130px;
  margin-bottom: -110px;
  position: relative;
  z-index: 1;
}

.digitalbanking .banking-tagline .section-inner {
  padding: 30px 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.digitalbanking .banking-tagline .section-inner .media {
  max-width: 190px;
  margin-right: 30px;
  width: 100%;
}

.digitalbanking .banking-tagline .section-inner .content {
  max-width: 245px;
}

.digitalbanking .banking-tagline .section-inner .content .ic-more {
  margin-top: 5px;
  cursor: pointer;
}

.digitalbanking.last {
  padding-bottom: 100px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list img {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs {
    position: absolute;
    left: 47%;
    bottom: 53px;
    right: auto;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs .qrcodebox:first-child {
    margin-right: -10px;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs .qrcode-icon {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li {
    min-width: 180px;
  }
  .digitalbanking .banking-tagline {
    margin-top: -130px;
  }
}

@media screen and (max-width: 991px) {
  .digitalbanking.last {
    padding-bottom: 0;
  }
  .digitalbanking .section-inner {
    padding-top: 40px;
  }
  .digitalbanking .digitalbanking-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .digitalbanking .digitalbanking-inner h6 {
    color: #f37e20;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media {
    width: 100%;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs {
    left: 49.7%;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content {
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul {
    max-width: 600px;
    margin: 0 auto;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li {
    min-width: calc(50% - 30px);
    text-align: left;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content .ic-btn {
    min-width: 300px;
  }
  .digitalbanking .banking-tagline {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-media .media-list .qrcodeboxs {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li {
    min-width: calc(50% - 11px);
    margin: 0 5px 20px;
    font-size: 12px;
    padding-left: 35px;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li::before {
    top: 12px;
  }
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li .circular-chart {
    top: 7px;
  }
  .digitalbanking .banking-tagline {
    margin-bottom: -150px;
  }
  .digitalbanking .banking-tagline .section-inner {
    display: block;
  }
  .digitalbanking .banking-tagline .section-inner .media,
  .digitalbanking .banking-tagline .section-inner .content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .digitalbanking .banking-tagline .section-inner .media {
    margin-bottom: 25px;
  }
  .digitalbanking .banking-tagline .section-inner .ic-more {
    margin-top: 25px;
  }
}

@media screen and (max-width: 375px) {
  .digitalbanking .digitalbanking-inner .digitalbanking-content ul li .circular-chart {
    top: 7px;
    width: 15px;
  }
}

.banking-tagline-shift-bottom {
  padding-top: 80px;
}

@media screen and (max-width: 640px) {
  .banking-tagline-shift-bottom {
    padding-top: 110px;
  }
}

/* qrcodebox */
.qrcodeboxs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.qrcodeboxs .qrcodebox:not(:last-child) {
  margin-right: 20px;
}

.qrcodeboxs .qrcodebox .qrcode-icon {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  cursor: pointer;
  padding: 7px 10px;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
}

.qrcodeboxs .qrcodebox .qrcode-icon .media {
  margin-right: 10px;
}

.qrcodeboxs .qrcodebox .qrcode-icon .media img {
  width: 50px;
}

.qrcodeboxs .qrcodebox .qrcode-icon .content {
  width: calc(100% - 60px);
  text-align: left;
}

.qrcodeboxs .qrcodebox .qrcode-icon .content p {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.qrcodeboxs .qrcodebox .qrcode-icon .content p:last-child {
  font-size: 10px;
  color: #f37e20;
}

.qrcode-popup {
  display: none;
  position: fixed;
  max-width: 850px;
  width: 95%;
  height: 455px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  top: 400px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 16px;
}

.qrcode-popup .close {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background: #f37e20;
  border-radius: 50%;
  position: absolute;
  z-index: 11;
  top: 24px;
  right: 32px;
  text-align: center;
  line-height: 32px;
}

.qrcode-popup .media {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  height: 430px;
}

.qrcode-popup .media img {
  max-width: 280px;
  max-height: 280px;
}

/* disclaimer-popup */
.popup-section.disclaimer-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;
}

.popup-section.disclaimer-popup .popup-content {
  max-width: 800px;
  padding: 30px;
  text-align: center;
}

.popup-section.disclaimer-popup .popup-content h3 {
  margin-bottom: 15px;
}

.popup-section.disclaimer-popup .popup-content p {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .popup-section.disclaimer-popup .popup-content h3 {
    font-size: 24px;
  }
}

/* lang-dropdown */
.lang-dropdown {
  position: relative;
  max-width: 1260px;
  margin: 0 auto -40px;
  padding: 10px 20px 15px;
}

.lang-dropdown .lang-dropdown-inner {
  position: absolute;
  top: -78px;
  right: 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 13px;
  min-width: 130px;
  z-index: 1;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  line-height: 116.5%;
  letter-spacing: 0.02em;
  color: #3d3d3d;
}

.lang-dropdown .lang-dropdown-inner::after {
  content: "";
  display: inline-block;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/arrow_down.png") no-repeat center;
  background-position: 0px 2.5px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 12px;
}

.lang-dropdown .lang-dropdown-inner.active {
  -webkit-box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
}

.lang-dropdown .lang-dropdown-inner.active::after {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/arrow_up_black.png") no-repeat center;
}

.lang-dropdown .lang-dropdown-inner img {
  margin-right: 6px;
}

.lang-dropdown .lang-dropdown-inner .lang-dropdown-placeholder {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 5px 15px;
}

.lang-dropdown .lang-dropdown-inner ul {
  display: none;
  padding: 0px 15px 5px 44px;
}

.lang-dropdown .lang-dropdown-inner ul li {
  font-weight: 600;
  font-size: 12px;
  line-height: 116.5%;
  letter-spacing: 0.02em;
  color: #3d3d3d;
  padding: 5px 0;
  border-top: 1px solid rgba(75, 75, 75, 0.3);
}

.lang-dropdown .lang-dropdown-inner ul li.selected {
  display: none;
}

.lang-dropdown .lang-dropdown-inner ul.active {
  display: block;
}

@media screen and (max-width: 991px) {
  .lang-dropdown {
    margin: 0 auto -15px;
  }
  .lang-dropdown .lang-dropdown-inner {
    top: initial;
  }
}

/* notification-box */
.notification-box {
  position: absolute;
  bottom: 56px;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-radius: 50px 0 0 50px;
  text-align: left;
  z-index: 1;
  padding: 15px 10px 15px 15px;
  background: #de5416;
  border-right: 5px solid #f37e20;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 380px;
}

.notification-box .num {
  min-width: 64px;
  height: 64px;
  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: 15px;
  background: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  color: #de5416;
}

.notification-box .desc {
  font-size: 14px;
  line-height: 140.62%;
  color: #fff;
  letter-spacing: 0.05em;
}

.notification-box .desc strong.block {
  margin-bottom: 4px;
}

.notification-box .desc a {
  color: #fff;
  text-decoration: underline;
}

/* play-icon */
.play-icon-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.play-icon-text .play-icon {
  margin-right: 12px;
}

.play-icon {
  display: inline-block;
  background: url("../images/icons/play-icon.svg") no-repeat center center;
  background-size: 10px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
}

.play-icon.white {
  background-color: #fff;
}

.play-icon.large {
  min-width: 60px;
  height: 60px;
  background-size: 14px;
}

/* cta-popup */
.cta-button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-bottom: 15px;
}

.cta-button-group .ic-btn {
  margin-bottom: 15px;
}

.cta-button-group .ic-btn:not(:last-child) {
  margin-right: 10px;
}

.cta-popup {
  position: fixed;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 1000;
}

.cta-popup .cta-popup-content {
  position: relative;
  width: 93%;
  max-width: 762px;
  background: #fff;
  margin: 40px auto 0;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
}

.cta-popup .cta-popup-content .close {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background: #f37e20;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  right: -10px;
  text-align: center;
  line-height: 27px;
}

.cta-popup .cta-popup-content .button-group {
  margin-top: 30px;
  text-align: center;
}

.cta-popup .cta-popup-content .button-group .ic-btn {
  margin-bottom: 20px;
}

/* dotted-progress */
.dotted-progress {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  margin-top: 20px;
}

.dotted-progress li {
  position: relative;
  margin-right: 15px;
}

.dotted-progress li span {
  display: inline-block;
  text-indent: -999px;
  width: 9px;
  height: 9px;
  background: #fff;
  border: 1px solid #f37e20;
  border-radius: 50%;
  overflow: hidden;
}

.dotted-progress li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 15px;
  height: 1px;
  border-bottom: 1px dashed #f37e20;
}

.dotted-progress li:last-child::after {
  display: none;
}

.dotted-progress li.active span {
  background: #f37e20;
}

.dotted-progress li.active::after {
  border-bottom: 1px solid #f37e20;
}

.dotted-progress li.current span {
  background: #f37e20;
}

.dotted-progress li.current::after {
  border-bottom: 1px dashed #f37e20;
}

/**instabiz banner title mobile**/
.insta-ban-title {
  color: #3d3d3d !important;
  opacity: 0.9 !important;
}

@media only screen and (max-width: 991px) {
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
  .md-pb-0 {
    padding-bottom: 0 !important;
  }
  .md-pt-40 {
    padding-top: 40px !important;
  }
}

.menu-inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

/* Desktop Navigation */
span.open-status {
  display: inline-block;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/arrow_down.png") no-repeat center;
  background-position: 0px 2.5px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  margin: 0 0 1px 5px;
}

@media only screen and (max-width: 960px) {
  span.open-status {
    margin-left: 0;
  }
}

/* search */
@keyframes grow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes grow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* cookieTextArea */
.cookieTextArea {
  background: #dedede;
  padding: 0;
  border-bottom: solid 1px #bbb;
  position: relative;
  z-index: 9999;
}

.cookieBandText {
  text-align: left;
  padding-bottom: 5px;
  width: 100%;
  margin: 0 auto;
}

a.cookieBandClose {
  position: absolute;
  right: 10px;
  top: 13px;
}

.cookieBandText > p {
  display: inline-block;
  font-size: 14px;
  padding: 15px;
}

a.cookieBandClose img {
  width: 20px;
  float: right;
}

.cookieBandText {
  text-align: center;
}

@media only screen and (max-width: 980px) {
  .cookieTextArea {
    position: fixed;
    bottom: 0;
    z-index: 99999;
  }
  .cookieBandText {
    text-align: center;
    width: 90%;
    padding: 5px;
  }
  a.cookieBandClose {
    position: absolute;
    right: 10px;
    top: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .cookieBandText {
    width: 93%;
    text-align: left;
    padding: 0;
  }
}

.slider-view .slide {
  display: none;
  visibility: hidden;
}

.slider-view .slide:first-child {
  display: block;
  visibility: hidden;
}

.slider-view.slick-initialized .slick-list .slick-slide {
  display: block;
  visibility: visible;
}

.slider-view.slick-initialized .slick-list .slick-slide:first-child {
  display: block;
  visibility: visible;
}

.slick-slider .slick-list .slick-slide {
  display: none;
}

.slick-slider .slick-list .slick-slide:first-child {
  display: block;
}

.slick-slider .slick-list a {
  outline: none;
}

.slick-slider.slick-initialized .slick-list .slick-slide {
  display: block !important;
}

.slick-arrow {
  width: 30px;
  height: 30px;
  text-indent: -9999999px;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 15px);
  border-radius: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-arrow:hover, .slick-arrow:focus {
  outline: none;
}

.slick-arrow.slick-prev, .slick-arrow.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 100%;
  z-index: 0;
}

.slick-arrow.slick-prev:hover, .slick-arrow.slick-next:hover {
  opacity: 1;
  border: 1px solid #f37e20;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.slick-arrow.slick-prev::after, .slick-arrow.slick-next::after {
  display: none;
}

.slick-arrow.slick-prev {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/left_arrow.png") no-repeat 9px 7px;
  left: -20px;
}

.slick-arrow.slick-next {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/left_arrow.png") no-repeat 14px 7px;
  right: -20px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.slick-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slick-arrow.slick-disabled:hover {
  opacity: 0.3;
}

.slick-dots {
  width: 100%;
  padding: 0;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.slick-dots li {
  position: relative;
  z-index: 0;
  margin: 0 5px;
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border: none;
  background: #d1cfbb;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.slick-dots li:first-child {
  margin-left: 0;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots li.slick-active {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  display: none;
}

.slick-dots li.slick-active {
  background: #f37e20;
  border: 2px solid #f37e20;
}

.slick-dots li:only-child {
  display: none;
}

@media only screen and (max-width: tablet) {
  .slick-dots {
    text-align: left;
    padding-left: 10px;
  }
  .slick-dots li {
    width: 5px;
    height: 5px;
  }
  .slick-dots li.slick-active {
    width: 8px;
    height: 8px;
  }
}

@media only screen and (max-width: 990px) {
  .slick-dots {
    text-align: left;
    padding-left: 10px;
  }
  .slick-dots li {
    width: 5px;
    height: 5px;
  }
  .slick-dots li.slick-active {
    width: 8px;
    height: 8px;
  }
}
.deal-card {
  background: #fff;
  padding: 53px 30px;
  margin: 0 12px;
}

.deal-card .deal-inner .image {
  margin-bottom: 21px;
  height: 50px;
}

.deal-card .deal-inner .image img {
  height: auto;
}

.deal-card .deal-inner .offer {
  color: #4b4b4b;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 18px;
  max-width: 100%;
  width: 100%;
}

.deal-card .deal-inner .description {
  margin-bottom: 35px;
  color: #8B8B8B;
}

.deal-card .deal-inner .buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
}

.deal-card .deal-inner .buttons .ic-btn {
  padding: 12.5px 20px;
}

.deal-card .deal-inner .buttons .ic-btn.white {
  border: 0;
}

@media only screen and (max-width: tablet) {
  .deal-card {
    margin: 0 12px;
    padding: 40px 21px;
  }
  .deal-card .deal-inner .offer {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
  }
  .deal-card .deal-inner .image {
    margin-bottom: 15px;
  }
  .deal-card .deal-inner .description {
    margin-bottom: 20px;
  }
  .deal-card .deal-inner .buttons {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .deal-card .deal-inner .buttons .ic-btn {
    padding: 5px 10px;
    font-size: 11px;
  }
}

@media only screen and (max-width: 990px) {
  .deal-card {
    margin: 0 12px;
    padding: 40px 21px;
  }
  .deal-card .deal-inner .offer {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
  }
  .deal-card .deal-inner .image {
    margin-bottom: 15px;
  }
  .deal-card .deal-inner .description {
    margin-bottom: 20px;
  }
  .deal-card .deal-inner .buttons {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .deal-card .deal-inner .buttons .ic-btn {
    padding: 5px 10px;
    font-size: 11px;
  }
}

@media only screen and (max-width: tablet-small) {
  .deal-card {
    margin: 0 20px 0 0;
  }
}

@media only screen and (max-width: 639px) {
  .deal-card {
    margin: 0 20px 0 0;
  }
}

.testimonial {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/quote-white.png") no-repeat;
  background-position: 30px 40px;
  background-size: 45px;
}

.testimonial .description {
  font-weight: 300;
  font-size: 23px;
  line-height: 150%;
  color: #4F4F4F;
  margin-bottom: 45px;
}

.testimonial .name {
  font-weight: 700;
  color: #4B4B4B;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.testimonial .designation {
  font-size: 14px;
  color: #4B4B4B;
}

.choose-us-slider .card-item {
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin: 0 15px;
  padding: 15px 30px;
  width: 33.3%;
}

.choose-us-slider .card-item .title {
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  padding: 10px 0 10px 0;
  position: relative;
  margin-bottom: 10px;
  min-height: 60px;
  max-width: 70%;
  width: 100%;
}

.choose-us-slider .card-item .title .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.choose-us-slider .card-item .description {
  margin-bottom: 24px;
  opacity: 0.8;
  line-height: 21px;
}

.choose-us-slider .card-item .ic-btn {
  border: 0;
}

.choose-us-slider .card-item .ic-btn.white {
  background: #fff;
}

@media only screen and (max-width: tablet) {
  .choose-us-slider .card-item {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .choose-us-slider .card-item {
    width: 100%;
  }
}

.i-card {
  background-color: #fff;
  padding: 24px 30px;
  border: 1px solid #DEDEDE;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.2);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.2);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.2);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.2);
  border-radius: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.i-card__title {
  font-size: 22px;
  line-height: normal;
  color: #4B4B4B;
  margin-bottom: 15px;
}

.i-card__subtitle {
  margin-bottom: 15px;
}

.i-card__list-item {
  color: #8B8B8B;
}

.i-card__box--dotted {
  border: 1px dotted #000;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.i-card__box {
  padding-top: 10px;
  padding-bottom: 10px;
}

.i-card__img {
  margin-bottom: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ic-btn-full {
  width: 100%;
  text-align: center;
}

.nav-tabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  border-bottom: 0 !important;
  position: relative;
}

.nav-tabs.flex-left {
  -webkit-box-pack: start;
          justify-content: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
}

.nav-tabs.left-align {
  margin-left: 20px;
}

.nav-tabs.border-top {
  border-top: 1px solid #ebe7e7;
}

.nav-tabs li {
  padding-right: 0;
  padding-left: 0;
  margin-right: -4px;
  margin-bottom: 0;
}

.nav-tabs li a {
  color: #3d3d3d;
  font-size: 13px;
  background: #ebe7e7;
  border: none;
  text-transform: uppercase;
  padding: 11px 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  border: none !important;
}

.nav-tabs li a:before {
  display: inline-block;
  width: 31px;
  height: 19px;
  margin-right: 6px;
  background-size: contain !important;
}

.nav-tabs li span {
  margin-right: 10px;
}

.nav-tabs li span img {
  height: 18px;
}

.nav-tabs li span.h-icon {
  display: none;
}

.nav-tabs li span.title {
  margin-right: 0;
}

.nav-tabs li::before, .nav-tabs li::after {
  content: "";
  position: absolute;
  top: 0;
  height: 40px;
  width: 24px;
}

/*.nav-tabs li::after {
  width: 40px;
  right: -15px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/tab-left-icon.png") no-repeat;
  z-index: 1;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.nav-tabs li:first-child::before {
  left: -22px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/normal-left.png") no-repeat;
}

.nav-tabs li:last-child::after {
  width: 25px;
  right: -20px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/normal-left.png") no-repeat;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.nav-tabs li.active span.n-icon {
  display: none;
}

.nav-tabs li.active span.h-icon {
  display: inline-block;
}

*/

/*.nav-tabs li.active::after {
  width: 25px;
  right: -20px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/active-left.png") no-repeat;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  z-index: 2;
}
*/

.nav-tabs li.active:hover a {
  color: #fff;
}

.nav-tabs li.active a {
  background-color: #f37e20 !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  z-index: 1;
}

.nav-tabs li:hover a {
  background: #ebe7e7;
  color: #f37e20;
}

.nav-tabs.inside-nav-tabs li a::before {
  width: 40px;
  height: 18px;
}

.nav-tabs.icon-auto-height li span img {
  height: auto;
}

.nav-tabs .twowheeler-loan .icon img {
  height: 22px;
}

.nav-tabs.vertical-tabs {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-tabs.vertical-tabs li {
  display: block !important;
  margin-right: 0;
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.nav-tabs.vertical-tabs li:before, .nav-tabs.vertical-tabs li:after {
  display: none;
}

.nav-tabs.vertical-tabs li .menu-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  line-height: 1;
  padding: 11px 10px 11px 12px;
  cursor: pointer;
  min-height: 40px;
  margin-bottom: 5px;
  border-radius: 0 20px 20px 0;
  border-left: 2px solid #fff7eb;
  background: transparent;
}

.nav-tabs.vertical-tabs li .menu-item .icon {
  width: 22px;
  margin-right: 10px;
}

.nav-tabs.vertical-tabs li .menu-item .n-icon {
  display: inline-block;
}

.nav-tabs.vertical-tabs li .menu-item .a-icon {
  display: none;
}

.nav-tabs.vertical-tabs li:hover .menu-item {
  background: #fff;
  border-left: 2px solid #f37e20;
}

.nav-tabs.vertical-tabs li.active {
  border-radius: 0 20px 20px 0;
}

.nav-tabs.vertical-tabs li.active .menu-item {
  position: relative;
  z-index: 1;
  background: #f37e20;
  color: #fff;
  border-left: 2px solid #f37e20;
}

.nav-tabs.vertical-tabs li.active .menu-item .n-icon {
  display: none;
}

.nav-tabs.vertical-tabs li.active .menu-item .a-icon {
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .nav-tabs.inside-nav-tabs li a {
    padding: 11px 22px;
  }
  .nav-tabs.inside-nav-tabs li a::before {
    width: 35px;
  }
}

.tabs-section {
  margin-left: 0;
  overflow-x: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
}

.tabs-section::-webkit-scrollbar {
  display: none;
}

.tabs-section.active {
  margin-left: 25px;
}

.left-arrow {
  display: none;
  position: absolute;
  left: -8px;
  width: 57px;
  top: 0;
  z-index: 9;
  height: 40px;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, color-stop(-6.25%, #f6f6f6), color-stop(43.55%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(90deg, #f6f6f6 -6.25%, #f6f6f6 43.55%, rgba(246, 246, 246, 0) 100%);
}

.left-arrow:before {
  content: "";
  display: inline-block;
  width: 57px;
  height: 40px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/left_arrow.png") no-repeat center center;
  background-size: 10px;
}

.right-arrow {
  display: none;
  position: absolute;
  right: -8px;
  z-index: 2;
  height: 40px;
  width: 57px;
  top: 0;
  cursor: pointer;
  background: -webkit-gradient(linear, right top, left top, color-stop(-6.25%, #f6f6f6), color-stop(43.55%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(270deg, #f6f6f6 -6.25%, #f6f6f6 43.55%, rgba(246, 246, 246, 0) 100%);
}

.right-arrow:before {
  content: "";
  display: inline-block;
  width: 57px;
  height: 40px;
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/left_arrow.png") no-repeat center center;
  background-size: 10px;
  padding: 20px 20px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.arrow-hidden {
  visibility: hidden;
}

@media only screen and (max-width: 768px) {
  .left-arrow,
  .right-arrow {
    display: block;
  }
  .nav-tabs {
    margin: 0 auto;
    display: block;
    max-width: 98%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .nav-tabs li {
    display: inline-block;
    float: none;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .nav-tabs:before, .nav-tabs:after {
    width: 20px !important;
    display: inline-block;
  }
  .nav-tabs:before {
    -webkit-transform: matrix(1, 0, 0, -1, 4, -6);
            transform: matrix(1, 0, 0, -1, 4, -6);
  }
  .nav-tabs:after {
    -webkit-transform: matrix(-1, 0, 0, 1, 0, -6);
            transform: matrix(-1, 0, 0, 1, 0, -6);
  }
}

/* num-nav-tab */
.num-nav-tab {
  background: #f6f6f6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
          box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
  border-radius: 8px;
}

.num-nav-tab li {
  width: 20%;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  padding: 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  height: 70px;
}

.num-nav-tab li:first-child {
  border-radius: 4px 0 0 4px;
}

.num-nav-tab li:not(:last-child) {
  border-right: 1px solid rgba(61, 61, 61, 0.1);
}

.num-nav-tab li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  color: #666666;
  text-decoration: none;
  width: 100%;
  min-height: 70px;
}

.num-nav-tab li .num {
  display: inline-block;
  min-width: 30px;
  min-height: 30px;
  line-height: 30px;
  text-align: center;
  background: #3d3d3d;
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #fff;
  margin-right: 20px;
}

.num-nav-tab li.active {
  background: #f37e20;
}

.num-nav-tab li.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: calc(50% - 30px);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f37e20;
}

.num-nav-tab li.active .num {
  background: #fff;
  color: #f37e20;
}

.num-nav-tab li.active a {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .num-nav-tab {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 0 0 15px 15px;
    margin: 0 -20px -15px;
    background: #fff;
  }
  .num-nav-tab li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: #e4e4e4;
    margin: 0 -2px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@media screen and (max-width: 991px) {
  .num-nav-tab li {
    max-width: 250px;
    width: 100%;
    white-space: normal;
    height: 80px;
    border: 1.28337px solid #e4e4e4;
    -webkit-box-shadow: 0px 4.50011px 31.5007px rgba(232, 232, 222, 0.8);
            box-shadow: 0px 4.50011px 31.5007px rgba(232, 232, 222, 0.8);
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .num-nav-tab li a {
    height: 80px;
  }
}

/* horizontal-link-tab */
.horizontal-tab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.horizontal-tab li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 140.62%;
  color: #333333;
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
  min-height: 40px;
  text-align: center;
}

.horizontal-tab li.active a {
  background: #f37e20;
  border-radius: 8px;
  color: #fff;
}

.horizontal-tab-content .tab-panel {
  display: block;
  height: 0px;
  overflow: hidden;
}

.horizontal-tab-content .tab-panel.active {
  height: auto;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-selectmenu-button-closed,
.ui-selectmenu-button-open {
  display: block;
  border-bottom: 1px solid #c4c4c4;
  -ms-flex: auto;
  -webkit-box-flex: 1;
          flex: auto;
  margin-right: 30px;
  position: relative;
}

.ui-selectmenu-button-closed .ui-selectmenu-text,
.ui-selectmenu-button-open .ui-selectmenu-text {
  color: #3d3d3d;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 5px;
  cursor: pointer;
}

.ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.ui-selectmenu-button-open .ui-icon-triangle-1-s {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #4b4b4b;
  right: 0;
  top: 7px;
  margin-right: 0;
}

.ui-selectmenu-button-open .ui-icon-triangle-1-s {
  border-top: 0;
  border-bottom: 5px solid #ee781e;
}

.ui-selectmenu-button-closed,
.ui-selectmenu-button-open {
  width: 100%;
}

.ui-selectmenu-button-closed,
.ui-selectmenu-button-open {
  margin-top: 20px;
  margin-bottom: 30px;
}

.ui-selectmenu-open {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.ui-selectmenu-open ul li {
  padding: 8px 10px;
  border-bottom: 1px solid #fafaf6;
}

.ui-selectmenu-open ul li a {
  font-size: 12px;
  color: #4b4b4b;
}

.ui-menu-item {
  cursor: pointer;
}

/* select-filter */
.select-filter {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  max-width: 730px;
  width: 100%;
  margin: 0 auto 5px;
  -webkit-box-align: baseline;
          align-items: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
}

.select-filter label {
  margin-right: 30px;
  font-size: 18px;
  white-space: nowrap;
}

.select-filter .ui-selectmenu-text {
  font-size: 16px;
  font-weight: 600;
  height: 25px;
  width: 100%;
}

.select-filter .ui-selectmenu-button.ui-button {
  width: auto;
}

.select-filter .ui-selectmenu-button-closed,
.select-filter .ui-selectmenu-button-open {
  border: 1.5px solid #f37e20;
  border-radius: 3px;
  padding: 5px 15px 0px;
}

.select-filter .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.select-filter .ui-selectmenu-button-open .ui-icon-triangle-1-s {
  right: 15px;
  top: 12px;
  border-width: 8px;
}

.select-filter #ui-id-1-button {
  margin-right: 25px;
}

@media only screen and (max-width: 1199px) {
  .select-filter {
    max-width: 80%;
  }
}

@media only screen and (max-width: 992px) {
  .select-filter {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .select-filter .ui-button {
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .select-filter {
    display: block;
    padding: 0 20px;
  }
}

.find-right-product-section {
  background: linear-gradient(175deg, #fff7eb 0%, rgba(249, 240, 227, 0) 84.33%);
  overflow: hidden;
}

.find-right-product-section .ic-btn {
  margin-right: 36px;
}

.find-right-product-section .tab-content.product-tab-content {
  position: relative;
}

.find-right-product-section .tab-content.product-tab-content iframe {
  border: none;
  overflow: hidden;
}

.find-right-product-section .find-right-product {
  padding: 15px 0px 0 !important;
  height: auto;
}

@media screen and (max-width: 991px) {
  .find-right-product-section .find-right-product {
    padding: 40px 0 0 !important;
  }
}

.find-right-product-section .find-right-product.find-right-product-iframe {
  width: 100%;
  max-width: 100% !important;
  padding: 15px 0 0 !important;
  height: auto;
}

.find-right-product-section .tabpanel-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.find-right-product-section .product-tabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.find-right-product-section .product-tabs::before {
  content: "";
  display: inline-block;
  width: 37%;
  max-width: 450px;
  height: 40px;
  margin-right: 40px;
}

.find-right-product-section .product-tabs .nav-tabs li a {
  height: 40px;
}

.find-right-product-section .left-panel {
  width: 37%;
  max-width: 450px;
}

.find-right-product-section .left-panel .card-panel {
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
}

.find-right-product-section .left-panel .card-panel .card-panel-top img {
  width: 100%;
}

.find-right-product-section .left-panel .card-panel .card-panel-bottom {
  background-color: #f37e20;
  color: #fff;
  padding: 30px;
  min-height: 260px;
}

.find-right-product-section .left-panel .card-panel .card-panel-bottom h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}

.find-right-product-section .left-panel .card-panel .card-panel-bottom p {
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.find-right-product-section .left-panel .card-panel .card-panel-bottom ul {
  padding-left: 15px;
}

.find-right-product-section .left-panel .card-panel .card-panel-bottom ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.find-right-product-section .right-panel {
  width: 63%;
}

.find-right-product-section .right-panel .tab-content {
  background-color: #fff;
  min-height: 500px;
}

.find-right-product-section .right-panel .tab-content:before {
  content: "";
  width: 100%;
  height: calc(100% - 146px);
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 96px;
}

@media only screen and (max-width: 1174px) {
  .find-right-product-section .right-panel .tab-content:before {
    margin-left: -166px;
  }
}

@media only screen and (max-width: 1087px) {
  .find-right-product-section .right-panel .tab-content:before {
    margin-left: -150px;
  }
}

@media only screen and (max-width: 992px) {
  .find-right-product-section .right-panel .tab-content:before {
    top: 0;
    margin-left: 0;
    left: 0;
  }
}

.find-right-product-section .right-panel .tab-pane {
  padding-top: 65px;
  padding-left: 40px;
}

.find-right-product-section .right-panel .tab-pane h3 {
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 33px;
}

@media only screen and (max-width: 991px) {
  .find-right-product-section .right-panel .tab-pane h3 {
    font-size: 26px;
    line-height: 138%;
    margin-bottom: 10px;
  }
}

.find-right-product-section .right-panel .tab-pane .other-detail-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.find-right-product-section .right-panel .tab-pane .other-detail-wrapper .amount-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.find-right-product-section .right-panel .tab-pane .buttons-group {
  margin-bottom: 40px;
}

.find-right-product-section .right-panel .tab-pane .buttons-group .ic-btn {
  margin-right: 25px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  vertical-align: middle;
  margin-top: 32px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .text-left {
  max-width: 200px;
  margin-right: 15px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content {
  max-width: 310px;
  padding: 0 15px 0 0;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group {
  position: relative;
  padding-bottom: 5px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 5px 10px 8px 0;
  border-bottom: 0.5px solid #4b4b4b;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  margin-bottom: 2px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner.error {
  border-bottom: 0.5px solid #ad1e23;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .icon {
  margin-right: 11px;
  width: auto;
  float: left;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box {
  float: right;
  width: 90%;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input {
  border: 0;
  color: #a6a6a6;
  max-width: 300px;
  width: 100%;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input.error {
  color: #e6371f;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input::placeholder {
  color: #a6a6a6;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-ms-clear {
  display: none;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-internal-autofill-selected, .find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill, .find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:hover,
.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:focus .find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px white inset;
  -ms-box-shadow: 0 0 0 50px white inset;
  -o-box-shadow: 0 0 0 50px white inset;
  box-shadow: 0 0 0 50px white inset;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .error-msg {
  position: absolute;
  bottom: -13px;
  color: #a6a6a6;
  font-size: 12px;
  line-height: 14px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .success-message {
  background: #e6e6e6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 6px 13px 5px;
  border-bottom: 0.5px solid #219653;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .success-message img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .form-group .success-message p {
  margin-left: 15px;
  max-width: 180px;
  font-weight: bold;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 0;
  padding: 0;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .content .form-slider .slick-dots li:last-child {
  display: none;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-disabled {
  visibility: hidden;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow {
  width: 22px;
  height: 22px;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.slick-prev {
  background: #f37e20 url("../images/left_arrow_orange.png") center center no-repeat !important;
  left: -53px;
  top: 5px;
  border: 0;
  display: none !important;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.slick-prev:hover {
  border: 0;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.slick-next {
  background: #f37e20 url("../images/right_arrow_white.png") center center no-repeat !important;
  right: -8px;
  top: 5px;
  border: 0;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.slick-next:hover {
  border: 0;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.arrow-disable {
  background: #4b4b4b url("../images/right_arrow_white.png") center center no-repeat !important;
  pointer-events: none;
}

.find-right-product-section .right-panel .tab-pane .loan-forms .slick-dots {
  padding-left: 5px;
  text-align: left;
  bottom: -27px;
}

@media screen and (max-width: 1279px) {
  .find-right-product-section .right-panel .tab-content {
    min-height: 660px;
  }
}

@media only screen and (max-width: 1199px) {
  .find-right-product-section .left-panel .card-panel .card-panel-bottom {
    padding: 23px 20px 30px;
    min-height: auto;
  }
  .find-right-product-section .right-panel {
    padding-left: 10px;
  }
  .find-right-product-section .right-panel .tab-pane .other-detail-wrapper {
    display: block;
  }
  .find-right-product-section .right-panel .tab-pane .other-detail-wrapper .tenure-section,
  .find-right-product-section .right-panel .tab-pane .other-detail-wrapper .amount-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .find-right-product-section .right-panel .tab-pane .other-detail-wrapper .tenure {
    width: 50%;
    min-width: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .find-right-product-section .product-tabs::before {
    width: 30%;
  }
  .find-right-product-section .left-panel {
    width: 30%;
  }
  .find-right-product-section .right-panel {
    width: 70%;
  }
}

@media screen and (max-width: 992px) {
  .find-right-product-section .ic-btn {
    margin-right: 0;
  }
  .find-right-product-section .tabpanel-inner {
    display: block;
    position: relative;
  }
  .find-right-product-section .product-tabs {
    position: relative;
  }
  .find-right-product-section .product-tabs::before {
    display: none;
  }
  .find-right-product-section .product-tabs .nav-tabs {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .find-right-product-section .right-panel,
  .find-right-product-section .left-panel {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    overflow: hidden;
    padding: 0 20px;
  }
  .find-right-product-section .left-panel {
    margin: 20px 0;
  }
  .find-right-product-section .left-panel h3 {
    font-size: 26px;
    line-height: 138%;
  }
  .find-right-product-section .right-panel:before, .find-right-product-section .right-panel:after {
    width: 20px;
  }
  .find-right-product-section .right-panel .tab-pane {
    padding: 0px;
  }
  .find-right-product-section .right-panel .tab-pane h3 {
    font-size: 26px;
    line-height: 138%;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms {
    margin: -35px -20px 0;
    padding: 85px 20px 40px;
    background: #f2f5f6;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms .content {
    padding: 0 20px 0 0;
    max-width: 300px;
    width: 100%;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms .text-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms .form-slider .form-group .input-box {
    float: right;
    width: 93%;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms .form-slider .form-group .input-box input {
    background: transparent;
  }
  .find-right-product-section .right-panel .tab-pane .loan-forms .slick-arrow.slick-prev {
    left: -42px;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-top img {
    width: 100%;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom {
    background-color: #f37e20;
    color: #fff;
    padding: 23px 30px 30px;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom p {
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom ul {
    padding-left: 15px;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom ul li {
    list-style-type: disc;
    margin-bottom: 10px;
  }
  .find-right-product-section .right-panel .tab-pane .card-panel .card-panel-bottom ul li:last-child {
    margin-bottom: 0;
  }
  .find-right-product-section .right-panel .tab-content {
    min-height: auto;
    padding: 0;
  }
  .find-right-product-section .select-filter {
    padding: 0 20px 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .find-right-product-section .right-panel .tab-pane .loan-forms {
    display: block;
  }
  .find-right-product-section .right-panel .tab-pane .buttons-group .ic-btn {
    min-width: 150px;
    text-align: center;
  }
}

.preapproved label {
  margin-bottom: 10px;
  display: block;
}

.preapproved .loan-amt-home-input {
  color: #fff;
}

.preapproved .loan-amt-display {
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}

.preapproved .input-box input {
  width: 100%;
}

.preapproved .input-box input[type="range"] {
  background-color: transparent;
}

.preapproved .range-figures ul {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.preapproved .range-figures ul li {
  color: #a6a6a6;
}

.other-detail-wrapper {
  margin: 15px 0 30px;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.other-detail-wrapper .tenure-section {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  width: 40%;
}

.other-detail-wrapper .tenure-section .tenure {
  min-width: 145px;
  padding: 20px 20px 0 0;
}

.other-detail-wrapper .tenure-section .tenure label {
  margin-bottom: 7px;
  display: block;
  line-height: normal;
}

.other-detail-wrapper .tenure-section .tenure .select-tenure .tenure-display,
.other-detail-wrapper .tenure-section .tenure .select-tenure .interest-display,
.other-detail-wrapper .tenure-section .tenure .select-interes-rate .tenure-display,
.other-detail-wrapper .tenure-section .tenure .select-interes-rate .interest-display {
  font-size: 26px;
  line-height: normal;
}

.other-detail-wrapper .amount-wrapper {
  width: 60%;
  background: #fff3e9;
  border-radius: 10px;
}

.other-detail-wrapper .amount-wrapper .emi-amount {
  padding: 10px 20px 15px;
  width: 50%;
  min-width: 210px;
}

.other-detail-wrapper .amount-wrapper .emi-amount label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  line-height: normal;
}

.other-detail-wrapper .amount-wrapper .emi-amount .finalEmiAmt,
.other-detail-wrapper .amount-wrapper .emi-amount .interestPayble,
.other-detail-wrapper .amount-wrapper .emi-amount sup {
  font-size: 26px;
  line-height: normal;
}

.other-detail-wrapper .amount-wrapper .emi-amount sup {
  font-size: 20px;
}

.other-detail-wrapper .amount-wrapper .emi-amount .finalEmiAmt {
  font-weight: 700;
}

.carloan .ic-more {
  padding-left: 20px;
}

@media only screen and (max-width: tablet) {
  .carloan .ic-more {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .carloan .ic-more {
    padding-left: 20px;
  }
}

input:focus {
  background-color: white !important;
}

.number-holder {
  position: relative;
}

.number-holder .checkbox-list {
  position: absolute;
  right: 30px;
  top: 10px;
  padding: 0;
  margin: 0;
}

.number-holder .checkbox-list input {
  top: 2px;
  z-index: 1;
}

@media screen and (min-width: 577px) {
  .number-holder .border-left {
    border-left: 1px solid #999999;
  }
}

/* announcement-section */
.announcement-section {
  position: relative;
  z-index: 1001;
  background: #074a86;
}

.announcement-section .section-inner {
  padding: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.announcement-section .section-inner .content {
  width: 70%;
  max-width: 825px;
}

.announcement-section .section-inner .content h5 {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.announcement-section .section-inner .content p {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
}

.announcement-section .section-inner .link {
  width: 30%;
  margin-left: auto;
}

.announcement-section .section-inner .link ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
}

@media screen and (max-width: 991px) {
  .announcement-section .section-inner .link ul {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
}

.announcement-section .section-inner .link ul li {
  position: relative;
  padding-right: 15px;
  margin-right: 20px;
}

.announcement-section .section-inner .link ul li a {
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.announcement-section .section-inner .link ul li:not(:last-child):after {
  content: "";
  position: absolute;
  width: 6px;
  height: 8px;
  top: calc(50% - 3px);
  right: 0;
  background: url("../images/right-arrow-o.svg") no-repeat center;
}

.announcement-section .section-inner .link ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.announcement-section .section-inner .link ul li:last-child a {
  display: block;
  text-transform: uppercase;
  padding: 5px 17px;
  border: 1px solid #f37e20;
  border-width: 1px 2px 1px 2px;
  border-radius: 50px;
}

@media only screen and (max-width: 1200px) {
  .announcement-section .section-inner .content {
    width: 62%;
  }
  .announcement-section .section-inner .link {
    width: 38%;
  }
}

@media only screen and (max-width: tablet-wide) {
  .announcement-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .announcement-section .section-inner .content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .announcement-section .section-inner .link {
    width: 100%;
  }
  .announcement-section .section-inner .link ul li {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1023px) {
  .announcement-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .announcement-section .section-inner .content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .announcement-section .section-inner .link {
    width: 100%;
  }
  .announcement-section .section-inner .link ul li {
    margin-right: 15px;
  }
}

@media only screen and (max-width: phone-wide) {
  .announcement-section .section-inner .link ul li {
    padding-right: 12px;
    margin-right: 12px;
  }
  .announcement-section .section-inner .link ul li:last-child a {
    padding: 5px 8px;
  }
}

@media only screen and (max-width: 479px) {
  .announcement-section .section-inner .link ul li {
    padding-right: 12px;
    margin-right: 12px;
  }
  .announcement-section .section-inner .link ul li:last-child a {
    padding: 5px 8px;
  }
}

@media screen and (max-width: 360px) {
  .announcement-section .section-inner .link ul li {
    padding-right: 10px;
    margin-right: 10px;
  }
  .announcement-section .section-inner .link ul li a {
    font-size: 11px;
  }
}

/* Alert start */
.notification-alert {
  display: block;
  position: absolute;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  right: 0;
  top: 40px;
  padding: 15px 14px;
  background: #ad1e23;
  max-width: 269px;
  width: 100%;
  border-right: 5px solid #f37e20;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 40px 0 0 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.notification-alert:hover {
  right: -10px;
}

.notification-alert .icon {
  display: inline-block;
  vertical-align: middle;
}

.notification-alert .icon img {
  display: block;
}

.notification-alert p {
  display: inline-block;
  vertical-align: middle;
  font-style: italic;
  font-size: 14px;
  color: #fff;
  padding-left: 20px;
  font-weight: 600;
  line-height: 21px;
}

.notification-alert p a:link,
.notification-alert p a:visited {
  color: #f37e20;
  text-decoration: none;
}

.notification-alert.middle-viewport {
  right: 0;
  opacity: 1;
  min-width: 266px;
}

@media only screen and (max-width: tablet) {
  .notification-alert {
    max-width: 340px;
  }
  .notification-alert p {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .notification-alert {
    max-width: 340px;
  }
  .notification-alert p {
    width: 100%;
  }
}

.animate-width {
  width: auto;
}

/* Alert end */
.audioPlayer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.audioPlayer .icon {
  min-width: 45px;
  height: 45px;
  display: inline-block;
  cursor: pointer;
}

.audioPlayer .icon.play-icon {
  background: url("../images/icons/orange-hub/play-o.svg") no-repeat;
}

.audioPlayer .icon.pause-icon {
  background: url("../images/icons/orange-hub/pause-o.svg") no-repeat;
}

.progress-bar {
  width: calc(100% - 70px);
  background-color: #dcdcdc;
  height: 5px;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 20px;
}

.progress-bar > .progress {
  position: relative;
  background-color: #f37e20;
  display: block;
  width: 0;
  height: 5px;
  border-radius: 20px;
}

.progress-bar > .progress:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: -10px;
  right: -23px;
  background: url("../images/icons/orange-hub/handler.svg") no-repeat;
}

/* ways to bank section start */
.ways-to-bank-section {
  position: relative;
  padding: 40px 0;
}

.ways-to-bank-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 158px;
  background: #f6f6f6;
}

@media screen and (max-width: 991px) {
  .ways-to-bank-section::before {
    display: none;
  }
}

.ways-to-bank-section .slick-list.draggable {
  min-height: 216px;
}

.ways-to-bank-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.ways-to-bank-section .tab-content {
  background: #fff;
}

.ways-to-bank-section .tab-content .tab-pane {
  padding: 30px 20px;
  min-height: 405px;
  max-width: 500px;
}

.ways-to-bank-section .tab-content .tab-pane .way-to-bank-content p {
  margin-bottom: 15px;
  color: #737373;
}

.ways-to-bank-section .tab-content .tab-pane .way-to-bank-content ul li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #737373;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content {
  max-width: 640px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .content {
  margin-bottom: 30px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .content ul {
  max-width: 480px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .content .ic-more {
  margin: 0 20px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content h5 {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .msg-box {
  background: #fff7eb;
  border-radius: 5px;
  padding: 10px 30px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .or {
  font-weight: bold;
  color: #3d3d3d;
  padding: 10px 30px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups {
  position: relative;
  padding: 10px 0;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input {
  max-width: 310px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 5px 0 8px;
  border-bottom: 0.5px solid #4b4b4b;
  margin-bottom: 10px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input.error {
  border-bottom: 0.5px solid #ad1e23;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .icon {
  margin-right: 10px;
  width: auto;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box {
  width: 90%;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input {
  background: transparent;
  border: 0;
  color: #a6a6a6;
  max-width: 300px;
  width: 100%;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input.error {
  color: #e6371f;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input::placeholder {
  color: #a6a6a6;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input::-ms-clear {
  display: none;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-internal-autofill-selected, .ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-webkit-autofill, .ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-webkit-autofill:hover,
.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-webkit-autofill:focus .ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #fdf6f4 inset;
  -ms-box-shadow: 0 0 0 50px #fdf6f4 inset;
  -o-box-shadow: 0 0 0 50px #fdf6f4 inset;
  box-shadow: 0 0 0 50px #fdf6f4 inset;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: #f37e20 url("../images/right_arrow_white.png") center 7px no-repeat;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .form-group-input .arrow.arrow-disable {
  background: #4b4b4b url("../images/right_arrow_white.png") center 7px no-repeat;
  pointer-events: none;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .checkbox-list {
  margin: 0;
  text-transform: none;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .form-groups .checkbox-list .checkmark {
  border: 1px solid #adadad;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .sucess-msg {
  display: none;
  padding: 10px 0;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .sucess-msg .icon {
  font-weight: bold;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .sucess-msg .icon img {
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  margin-right: 10px;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .sucess-msg p {
  margin-bottom: 0 !important;
  line-height: 1.5;
}

.ways-to-bank-section .tab-content .tab-pane.whatsapp-content .sucess-msg .edit {
  margin-left: 5px;
  cursor: pointer;
}

.ways-to-bank-section .image-block {
  width: calc(100% - 672px);
  position: relative;
  text-align: center;
}

.ways-to-bank-section .image-block img {
  padding-right: 20px;
  max-width: 550px;
  margin-right: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1220px) {
  .ways-to-bank-section .image-block img {
    max-width: 450px;
  }
}

.ways-to-bank-section .content-block {
  width: 670px;
  height: auto !important;
}

.ways-to-bank-section .content-block .nav-tabs {
  padding-left: 20px;
  overflow: hidden;
  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .ways-to-bank-section .content-block .nav-tabs {
    margin-top: 0;
  }
}

.ways-to-bank-section .content-block .section-label,
.ways-to-bank-section .content-block .section-title {
  text-align: left;
}

.ways-to-bank-section .content-block .ui-tabs-panel {
  padding: 30px 0;
}

.ways-to-bank-section .content-block .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.ways-to-bank-section .content-block #ways-to-bank-tabs {
  background-color: #fff;
}

.ways-to-bank-section .content-block .way-to-bank-slider {
  max-width: 365px;
  margin-left: -15px;
}

.ways-to-bank-section .content-block .way-to-bank-slider .slide p {
  font-size: 22px;
  margin: 0 0 20px 15px;
  line-height: 26px;
  color: #3d3d3d;
}

@media only screen and (max-width: tablet) {
  .ways-to-bank-section .content-block .way-to-bank-slider .slide .media {
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
}

@media only screen and (max-width: 990px) {
  .ways-to-bank-section .content-block .way-to-bank-slider .slide .media {
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
}

.ways-to-bank-section .content-block .way-to-bank-slider .slide .media div {
  -webkit-box-shadow: 0px 4px 11px rgba(222, 222, 222, 0.3);
  -ms-box-shadow: 0px 4px 11px rgba(222, 222, 222, 0.3);
  -o-box-shadow: 0px 4px 11px rgba(222, 222, 222, 0.3);
  box-shadow: 0px 4px 11px rgba(222, 222, 222, 0.3);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  margin: 15px 20px 15px 15px;
}

.ways-to-bank-section .content-block .way-to-bank-slider .slide .media img {
  border-radius: 5px;
  margin: 0 auto;
}

.ways-to-bank-section .content-block .way-to-bank-slider .slick-dots {
  text-align: left;
  margin: 0 0 0 20px;
  position: relative;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .ways-to-bank-section .content-block .ways-to-bank-tabs .nav-tabs li a {
    padding: 11px 15px;
  }
}

@media screen and (max-width: 1024px) {
  .ways-to-bank-section .content-block .ways-to-bank-tabs .tabs-section {
    margin: 0 -10px;
    width: calc(100% + 30px);
  }
}

.ways-to-bank-section .app-links {
  margin-top: 25px;
}

.ways-to-bank-section .app-links a {
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  overflow: hidden;
}

.ways-to-bank-section .app-links a:hover {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.ways-to-bank-section .notification-alert {
  top: 0;
  padding: 20px 14px;
}

@media screen and (max-width: 768px) {
  .ways-to-bank-section .notification-alert {
    top: 40px !important;
    position: relative;
    margin-left: auto;
    padding: 14px;
    z-index: 1;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .ways-to-bank-section .image-block {
    width: calc(100% - 552px);
  }
  .ways-to-bank-section .content-block {
    width: 550px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ways-to-bank-section .section-inner {
    padding: 40px 0px;
  }
  .ways-to-bank-section .section-inner .section-label-new {
    text-align: left;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .ways-to-bank-section .section-inner .section-label-new::after {
    display: block;
  }
  .ways-to-bank-section .section-inner .section-label-new span::after, .ways-to-bank-section .section-inner .section-label-new span::before {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .ways-to-bank-section .tab-content .tab-pane {
    min-height: auto;
  }
  .ways-to-bank-section .section-inner {
    padding: 0 0 40px 0px;
  }
}

@media only screen and (max-width: 1023px) and (max-width: tablet) {
  .ways-to-bank-section .section-inner {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 990px) {
  .ways-to-bank-section .section-inner {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1023px) {
  .ways-to-bank-section .image-block {
    display: none;
  }
  .ways-to-bank-section .content-block {
    padding: 0 20px;
    width: 100%;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider {
    max-width: 100%;
    margin: 0;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider .slick-list.draggable {
    min-height: auto;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider .slide p {
    font-size: 16px;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider .slide .media {
    display: block;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider .slide .media img {
    width: 100%;
  }
  .ways-to-bank-section .content-block .way-to-bank-slider .slick-dots {
    text-align: center;
    margin: 10px 0 0 0;
  }
  .ways-to-bank-section .app-links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .ways-to-bank-section .tab-content {
    max-width: 100%;
  }
  .ways-to-bank-section .tab-content .tab-pane {
    min-height: auto;
  }
}

@media only screen and (max-width: tablet) {
  .ways-to-bank-section .whatsapp-content {
    padding: 0;
  }
  .ways-to-bank-section .whatsapp-content .msg-box {
    padding: 10px 15px;
  }
  .ways-to-bank-section .section-label-new span::after, .ways-to-bank-section .section-label-new span::before {
    width: 75px !important;
  }
  .ways-to-bank-section .section-title {
    text-align: center !important;
  }
}

@media only screen and (max-width: 990px) {
  .ways-to-bank-section .whatsapp-content {
    padding: 0;
  }
  .ways-to-bank-section .whatsapp-content .msg-box {
    padding: 10px 15px;
  }
  .ways-to-bank-section .section-label-new span::after, .ways-to-bank-section .section-label-new span::before {
    width: 75px !important;
  }
  .ways-to-bank-section .section-title {
    text-align: center !important;
  }
}

/* ways to bank section end */

/** dropdown **/
#group-websites1-menu li .ui-menu-item-wrapper,
#group-websites2-menu li .ui-menu-item-wrapper {
  padding: 3px 10px;
  font-size: 11px;
}

#group-websites1-menu li:hover,
#group-websites2-menu li:hover {
  background: #dedede;
}

#group-websites1-menu li .ui-state-active,
#group-websites2-menu li .ui-state-active {
  background: #dedede;
}

.radio-wrap {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: -1px;
}

.radio-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.radio-wrap input:checked ~ .checkmark {
  background-color: #f37e20;
  color: #fff;
}

.radio-wrap input:checked ~ .checkmark:after {
  display: block;
}

.radio-wrap input.dg-radio:checked ~ .checkmark {
  background-color: #389838;
}

.radio-wrap input.lg-radio:checked ~ .checkmark {
  background-color: #66bd66;
}

.radio-wrap input.y-radio:checked ~ .checkmark {
  background-color: #ffa500;
}

.radio-wrap input.r-radio:checked ~ .checkmark {
  background-color: #ff0000;
}

.checkmark {
  display: inline-block;
  height: 40px;
  width: 100%;
  background-color: #fff;
  border-left: 1px solid #f37e20;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-style-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.radio-style-box .radio-wrap {
  height: 40px;
}

.radio-style-box .radio-wrap.w50 {
  width: 50%;
}

/* video-card */
.video-card {
  background: #fff;
  border-radius: 10px;
}

.video-card:last-child {
  margin-right: 0;
}

.video-card a {
  text-decoration: none;
}

.video-card .card-inner .media {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.video-card .card-inner .media img {
  width: 100%;
  vertical-align: middle;
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-card .card-inner .media .play-btn {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: calc(50% - 23px);
  left: calc(50% - 23px);
  background: url("../images/icons/play-arrow-o.png") no-repeat center;
  background-size: 15px;
  background-position: 17px 15px;
  background-color: rgba(254, 254, 255, 0.9);
}

.video-card .card-inner .media .time {
  position: absolute;
  font-size: 10px;
  line-height: 27px;
  color: #fff;
  font-weight: 100;
  text-align: center;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  width: 35px;
  height: 25px;
  background: rgba(0, 0, 0, 0.3);
}

.video-card .card-inner .content {
  padding: 15px 15px 20px 15px;
  border: 1px solid #dedede;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 1199px) {
  .video-card .card-inner .content {
    padding: 20px;
  }
}

.video-card .card-inner .content .card-title {
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.38;
  color: #4b4b4b;
  margin-bottom: 25px;
  outline: none;
  height: 60px;
  max-width: 250px;
  overflow: hidden;
}

.video-card .card-inner .content .card-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.video-card .card-inner .content .card-bottom .date-readtime {
  font-size: 12px;
  color: #666666;
}

.video-card .card-inner .content .card-bottom .date-readtime span.num-viewer {
  font-size: 14px;
  display: inline-block;
  background: url("../images/icons/video/eye-icon.svg") no-repeat left;
  background-size: 20px;
  padding-left: 25px;
}

.video-card .card-inner .content .card-bottom .date-readtime span.like {
  display: inline-block;
  background: url("../images/icons/video/bookmark-light.svg") no-repeat left;
  background-size: 16px;
  padding-left: 20px;
}

.video-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid rgba(102, 102, 102, 0.2);
}

.video-card .card-inner .content .card-bottom .date-readtime .download {
  display: inline-block;
  background: url("../images/icons/video/download-icon.svg") no-repeat left;
  background-size: 13px;
  width: 14px;
  height: 14px;
}

.video-card .card-inner .content .card-bottom .share-content {
  right: 0;
}

.video-card .card-inner:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.video-card.h-view {
  border: none;
  border-radius: 0;
}

.video-card.h-view .card-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.video-card.h-view .card-inner .media {
  width: 220px;
  border-radius: 0;
}

.video-card.h-view .card-inner .content {
  width: calc(100% - 220px);
  border: none;
  border-radius: 0;
  padding: 5px 0 0 0;
  margin-left: 30px;
}

.video-card.h-view .card-inner .content .card-title {
  height: 60px;
  max-width: 250px;
}

.video-card.h-view .card-inner .content .card-bottom {
  border-top: 1px solid rgba(102, 102, 102, 0.2);
  padding-top: 15px;
}

.video-card.overlay-view {
  position: relative;
  border-bottom: 2px solid #f37e20;
  border-radius: 0;
}

.video-card.overlay-view .card-inner .media {
  border-radius: 0;
  position: relative;
}

.video-card.overlay-view .card-inner .media::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.video-card.overlay-view .card-inner .media .play-btn {
  width: 52px;
  height: 52px;
  top: calc(50% - 26px);
  left: calc(50% - 26px);
  background-position: 22px 17px;
}

.video-card.overlay-view .card-inner .content {
  position: absolute;
  bottom: 0;
  border: none;
  border-radius: 0;
  padding: 10px 20px 15px;
  width: 100%;
  z-index: 3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, #000 10%, rgba(0, 0, 0, 0) 100%);
}

.video-card.overlay-view .card-inner .content .card-title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  height: auto;
  max-width: 100%;
  margin-bottom: 10px;
}

.video-card.overlay-view .card-inner .content .card-bottom .date-readtime {
  color: #fff;
}

.video-card.overlay-view .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  border-right: 1px solid #fff;
}

.video-card.overlay-view .card-inner .content .card-bottom .date-readtime span.num-viewer {
  background: url("../images/icons/video/eye-icon-w.svg") no-repeat left;
  background-size: 20px;
  padding-left: 25px;
}

.video-card.overlay-view .card-inner .content .card-bottom .bookmark-share .pdf {
  width: 20px;
  height: 20px;
  background: url("../images/icons/video/pdf-icon-w.svg") no-repeat center;
  background-size: 17px;
}

.video-card.overlay-view .card-inner .content .card-bottom .bookmark-share .bookmark {
  background: url("../images/icons/video/bookmark-w.svg") no-repeat center;
  background-size: 16px;
}

.video-card.overlay-view .card-inner .content .card-bottom .bookmark-share .share {
  margin-right: 0;
  background: url("../images/icons/video/share-w.svg") no-repeat center;
  background-size: 16px;
}

@media only screen and (max-width: tablet-small) {
  .video-card.overlay-view .card-inner .content .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .video-card.overlay-view .card-inner .content .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

@media only screen and (max-width: 639px) {
  .video-card.overlay-view .card-inner .content .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .video-card.overlay-view .card-inner .content .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

.video-card.no-overlay .card-inner .media {
  position: relative;
  border-radius: 10px;
}

.video-card.no-overlay .card-inner .media::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, #000 10%, rgba(0, 0, 0, 0) 100%);
}

.video-card.no-overlay .card-inner .media .play-btn {
  cursor: pointer;
}

.video-card.no-overlay .card-inner .content {
  border: none;
  padding: 15px 0 0 0;
}

.video-card.no-overlay .card-inner .content .card-title {
  height: auto;
  max-width: 100%;
  margin-bottom: 15px;
}

.video-card .iframe-video iframe {
  vertical-align: bottom;
}

@media only screen and (max-width: tablet) {
  .video-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
  }
}

@media only screen and (max-width: 990px) {
  .video-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
  }
}

@media only screen and (max-width: tablet-small) {
  .video-card .card-inner .content .card-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .video-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .video-card .card-inner .content .card-bottom .bookmark-share {
    margin: 0;
  }
  .video-card .card-inner .content .card-bottom .bookmark-share .pdf,
  .video-card .card-inner .content .card-bottom .bookmark-share .bookmark,
  .video-card .card-inner .content .card-bottom .bookmark-share .share {
    background-size: 20px;
    width: 25px;
    height: 25px;
  }
  .video-card .card-inner .content .card-bottom .share-content {
    left: 0;
    top: 0;
  }
}

@media only screen and (max-width: 639px) {
  .video-card .card-inner .content .card-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .video-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .video-card .card-inner .content .card-bottom .bookmark-share {
    margin: 0;
  }
  .video-card .card-inner .content .card-bottom .bookmark-share .pdf,
  .video-card .card-inner .content .card-bottom .bookmark-share .bookmark,
  .video-card .card-inner .content .card-bottom .bookmark-share .share {
    background-size: 20px;
    width: 25px;
    height: 25px;
  }
  .video-card .card-inner .content .card-bottom .share-content {
    left: 0;
    top: 0;
  }
}

@media only screen and (max-width: phablet) {
  .video-card .card-inner .content .card-title {
    height: auto;
  }
}

@media only screen and (max-width: 559px) {
  .video-card .card-inner .content .card-title {
    height: auto;
  }
}

/* offer-card */
.offer-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border: 1px solid #dedede;
  padding: 30px 30px 20px;
}

.offer-card:last-child {
  margin-right: 0;
}

.offer-card a {
  text-decoration: none;
}

.offer-card .card-inner .media {
  position: relative;
  border-radius: 10px 10px 0 0;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  margin-bottom: 20px;
}

.offer-card .card-inner .media img {
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  max-height: 50px;
  vertical-align: bottom;
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.offer-card .card-inner .time {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  position: absolute;
  color: #ad1e23;
  top: 20px;
  right: 20px;
  display: flex;
  width: auto;
  height: 25px;
}

.offer-card .card-inner .time span {
  margin-right: 10px;
}

.offer-card .card-inner .time span.remaining-time {
  margin-right: 0;
}

.offer-card .card-inner .content {
  padding: 0;
}

.offer-card .card-inner .content .offerfor-tag {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  background: #ffebdc;
  border: 1px solid #ad1e23;
  border-width: 0 1px 1px 1px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 5px 25px;
  max-width: 300px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  margin: -30px auto 15px;
}

.offer-card .card-inner .content .offerfor-tag img {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.offer-card .card-inner .content .title {
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 1.38;
  color: #4b4b4b;
  margin-bottom: 20px;
  outline: none;
  height: 60px;
  overflow: hidden;
}

.offer-card .card-inner .content .offercat-tags .offercat-tag {
  background: #ffebdc;
  min-height: 20px;
  display: inline-block;
  padding: 0px 15px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #f37e20;
  margin-bottom: 15px;
}

.offer-card .card-inner .content .offercat-tags .offercat-tag:not(:last-child) {
  margin-right: 10px;
}

.offer-card .card-inner .content .description {
  margin-bottom: 40px;
  color: #8b8b8b;
  height: 60px;
  overflow: hidden;
}

.offer-card .card-inner .content .description a {
  color: #4b4b4b;
}

.offer-card .card-inner .content .button-group {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offer-card .card-inner .content .button-group a.ic-btn {
  padding: 12px 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}

.offer-card .card-inner .content .button-group a.ic-more {
  min-width: 105px;
}

.offer-card .card-inner .content .card-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offer-card .card-inner .content .card-bottom .date-readtime {
  font-size: 12px;
  color: #666666;
}

.offer-card .card-inner .content .card-bottom .date-readtime span.num-viewer {
  font-size: 14px;
  display: inline-block;
  background: url("../images/icons/eye-icon-b.svg") no-repeat right;
  background-size: 20px;
  padding-left: 0;
  padding-right: 30px;
  margin-right: 15px;
}

.offer-card .card-inner .content .card-bottom .date-readtime span.like {
  display: inline-block;
  background: url("../images/icons/video/bookmark-light.svg") no-repeat left;
  background-size: 16px;
  padding-left: 20px;
}

.offer-card .card-inner .content .card-bottom .date-readtime span.download {
  display: inline-block;
  background: url("../images/icons/video/download-icon.svg") no-repeat left;
  background-size: 13px;
  padding-left: 20px;
}

.offer-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid rgba(102, 102, 102, 0.2);
}

.offer-card .card-inner .content .card-bottom .share-content {
  right: 0;
}

@media only screen and (max-width: tablet-small) {
  .offer-card .card-inner .content .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .offer-card .card-inner .content .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

@media only screen and (max-width: 639px) {
  .offer-card .card-inner .content .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .offer-card .card-inner .content .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

.offer-card .card-inner:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.offer-card.h-view .card-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (max-width: 1200px) {
  .offer-card {
    padding: 20px;
  }
  .offer-card .card-inner .content .offerfor-tag {
    margin: -20px auto 15px;
  }
}

@media only screen and (max-width: tablet) {
  .offer-card .card-inner .time {
    top: 30px;
  }
  .offer-card .card-inner .content .card-title {
    height: auto !important;
  }
  .offer-card .card-inner .content .title {
    font-size: 18px;
    margin-bottom: 15px;
    height: 50px;
  }
  .offer-card .card-inner .content .description {
    margin-bottom: 20px;
  }
  .offer-card .card-inner .content .button-group {
    text-align: center;
  }
  .offer-card .card-inner .content .button-group a.ic-btn {
    display: block;
    padding: 9px 18px;
    text-align: center;
    height: 40px;
  }
  .offer-card .card-inner .content .card-bottom .date-readtime span.num-viewer {
    background-position: left;
    padding-right: 0;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 990px) {
  .offer-card .card-inner .time {
    top: 30px;
  }
  .offer-card .card-inner .content .card-title {
    height: auto !important;
  }
  .offer-card .card-inner .content .title {
    font-size: 18px;
    margin-bottom: 15px;
    height: 50px;
  }
  .offer-card .card-inner .content .description {
    margin-bottom: 20px;
  }
  .offer-card .card-inner .content .button-group {
    text-align: center;
  }
  .offer-card .card-inner .content .button-group a.ic-btn {
    display: block;
    padding: 9px 18px;
    text-align: center;
    height: 40px;
  }
  .offer-card .card-inner .content .card-bottom .date-readtime span.num-viewer {
    background-position: left;
    padding-right: 0;
    padding-left: 30px;
  }
}

@media only screen and (max-width: phablet) {
  .offer-card .card-inner .content .title,
  .offer-card .card-inner .content .description {
    height: auto;
  }
}

@media only screen and (max-width: 559px) {
  .offer-card .card-inner .content .title,
  .offer-card .card-inner .content .description {
    height: auto;
  }
}

@media only screen and (max-width: 340px) {
  .offer-card .card-inner .content .card-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-card .card-inner .content .card-bottom .date-readtime {
    width: 100%;
  }
  .offer-card .card-inner .content .card-bottom .bookmark-share {
    width: 100%;
    margin-top: 20px;
  }
}

/* accordion */
.accordion .accordion-list {
  background: #fff;
  margin-bottom: 5px;
  border-radius: 6px;
}

.accordion .accordion-list .accordion-head {
  position: relative;
  font-size: 18px;
  line-height: 23px;
  color: #4b4b4b;
  padding: 14px 50px 14px 30px;
  cursor: pointer;
}

.accordion .accordion-list .accordion-head::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 15px;
  right: 25px;
  background: url("../images/icons/ac-plus.svg") no-repeat center;
}

.accordion .accordion-list .accordion-head.active {
  color: #f37e20;
}

.accordion .accordion-list .accordion-head.active::after {
  content: "";
  background: url("../images/icons/ac-minus.svg") no-repeat center;
}

@media only screen and (max-width: tablet) {
  .accordion .accordion-list .accordion-head {
    font-size: 14px;
    line-height: 1.3;
    padding: 20px 60px 20px 20px;
  }
}

@media only screen and (max-width: 990px) {
  .accordion .accordion-list .accordion-head {
    font-size: 14px;
    line-height: 1.3;
    padding: 20px 60px 20px 20px;
  }
}

.accordion .accordion-list .accordion-content {
  padding: 5px 30px 30px;
  display: none;
}

.accordion .accordion-list .accordion-content ul li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
}

.accordion .accordion-list .accordion-content ul li:not(:last-child) {
  margin-bottom: 15px;
}

.accordion .accordion-list .accordion-content ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #a6a6a6;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

.accordion .accordion-list .accordion-content ul li ol {
  margin-top: 15px;
}

.accordion .accordion-list .accordion-content ul li ol li {
  padding-left: 0;
}

.accordion .accordion-list .accordion-content ul li ol li::before {
  display: none;
}

.accordion .accordion-list .accordion-content ol {
  padding-left: 20px;
}

.accordion .accordion-list .accordion-content ol li {
  list-style: inherit;
}

.accordion .accordion-list .accordion-content ol li:not(:last-child) {
  margin-bottom: 15px;
}

.accordion .accordion-list .accordion-content p:not(:last-child) {
  margin-bottom: 15px;
}

@media only screen and (max-width: tablet) {
  .accordion .accordion-list .accordion-content {
    padding: 5px 20px 20px;
  }
}

@media only screen and (max-width: 990px) {
  .accordion .accordion-list .accordion-content {
    padding: 5px 20px 20px;
  }
}

/* faq accordion */
.card-accordion-wrapper .card-accordion-title,
.card-accordion-wrapper .section-title {
  margin-bottom: 30px;
}

.card-accordion-wrapper .card-accordion-desc {
  font-size: 18px;
  font-weight: 400;
  color: #3d3d3d;
  margin-bottom: 30px;
  line-height: 24px;
}

@media only screen and (max-width: tablet) {
  .card-accordion-wrapper .card-accordion-desc {
    font-size: 14px;
  }
}

@media only screen and (max-width: 990px) {
  .card-accordion-wrapper .card-accordion-desc {
    font-size: 14px;
  }
}

.card-accordion {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 20px;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
}

.card-accordion h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
  color: #4b4b4b;
}

.card-accordion .accordion .accordion-list {
  background: transparent;
  margin-bottom: 5px;
  border-radius: 0;
  border-bottom: 1px solid #ececec;
}

.card-accordion .accordion .accordion-list:last-child {
  border-bottom: 0px !important;
}

.card-accordion .accordion .accordion-list .accordion-head {
  padding: 10px 25px 10px 0;
  font-weight: 400;
}

.card-accordion .accordion .accordion-list .accordion-head:after {
  top: 10px;
  right: 0;
}

.card-accordion .accordion .accordion-list .accordion-content {
  padding-left: 0;
}

@media only screen and (max-width: 768px) {
  .card-accordion {
    margin-bottom: 20px;
  }
  .card-accordion.t-card-accordion .accordion {
    margin-bottom: 20px;
  }
}

.accordion--scroll {
  height: 210px;
  overflow: auto;
}

.expand-all,
.close-all {
  font-size: 13px;
}

.card-accordion--action .card-accordion .accordion {
  height: auto;
  overflow: auto;
}

/* search-container */
.search-container {
  position: relative;
  max-width: 625px;
  width: 100%;
  margin-left: auto;
}

.search-container .search-box-area {
  position: relative;
  z-index: 101;
  background: #fff;
  border: 1px solid #f37e20;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 50px;
  overflow: hidden;
}

.search-container .search-box-area input {
  width: calc(100% - 30px);
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  line-height: 1;
  padding: 10px 15px 10px 15px;
  height: 40px;
  letter-spacing: -0.01em;
}

.search-container .search-box-area .search-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  background: url("../images/icons/icon_search.png") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.search-container .search-listing {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.search-container .search-listing .search-listing-inner {
  position: relative;
  z-index: 100;
  background: #fbfbfb;
  padding: 40px 0 0 15px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.search-container .search-listing ul {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 15px;
}

.search-container .search-listing ul .no-branch {
  padding: 15px 10px;
}

@media screen and (max-width: 767px) {
  .search-container .search-listing ul {
    max-height: 350px;
  }
}

.search-container .search-listing ul li {
  padding: 14px 25px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #333a43;
}

.search-container .search-listing ul li:first-child {
  margin-top: 20px;
}

.search-container .search-listing ul li a {
  color: #333a43;
  text-decoration: none;
}

.search-container .search-listing ul li:hover {
  background: #fff0e3;
  cursor: pointer;
}

.search-container .search-listing ul span {
  padding: 10px 0;
  display: block;
  font-weight: 700;
}

.search-container .search-listing.active {
  display: block;
}

.search-container .search-overlay-area {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  left: 0;
  top: 54px;
  background: rgba(0, 0, 0, 0.8);
}

.search-container .video-content {
  display: none;
}

.search-container .video-content .video-card {
  margin: 10px -25px 0;
  width: calc(100% + 50px);
  overflow: hidden;
  border-radius: 0;
}

.search-container .video-content .video-card .card-inner .media {
  border: none;
  border-radius: 0;
}

.search-container .video-content .video-card .card-inner .media iframe {
  vertical-align: middle;
}

.search-container .video-content .video-card .card-inner .content {
  border: none;
  padding: 20px 30px 35px 30px;
}

.search-container .video-content .video-card .card-inner .content .inner-content {
  max-width: 410px;
}

.search-container .video-content .video-card .card-inner .content .card-title {
  font-size: 16px;
  font-weight: 600;
  max-width: 100%;
  height: auto;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.search-container .video-content .video-card .card-inner .content .card-bottom {
  margin-bottom: 20px;
}

.search-container .video-content .video-card .card-inner .content .card-bottom .date-readtime {
  font-size: 14px;
}

.search-container .video-content .video-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  border-right: 1px solid #666666;
}

.search-container .video-content .video-card .card-inner .button-group .ic-btn {
  margin-right: 20px;
}

@media only screen and (max-width: tablet) {
  .search-container {
    max-width: 100%;
    margin: 0;
  }
  .search-container.filter-sticky {
    position: fixed;
    top: 44px;
    left: 20px;
    z-index: 100;
    max-width: calc(100% - 180px);
  }
  .search-container.filter-sticky.active {
    max-width: calc(100% - 40px);
  }
  .search-container.filter-sticky #nanorep-embedded-widget {
    width: 100%;
  }
  .search-container.filter-sticky #nanorep2 #nanorep-ew .query-field__inner {
    background: #fff !important;
  }
  .search-container .search-listing ul li {
    padding: 10px;
  }
  .search-container .video-content .video-card .card-inner .content {
    padding: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .search-container {
    max-width: 100%;
    margin: 0;
  }
  .search-container.filter-sticky {
    position: fixed;
    top: 44px;
    left: 20px;
    z-index: 100;
    max-width: calc(100% - 180px);
  }
  .search-container.filter-sticky.active {
    max-width: calc(100% - 40px);
  }
  .search-container.filter-sticky #nanorep-embedded-widget {
    width: 100%;
  }
  .search-container.filter-sticky #nanorep2 #nanorep-ew .query-field__inner {
    background: #fff !important;
  }
  .search-container .search-listing ul li {
    padding: 10px;
  }
  .search-container .video-content .video-card .card-inner .content {
    padding: 20px;
  }
}

@media only screen and (max-width: phablet) {
  .search-container.filter-sticky {
    max-width: 210px;
  }
  .search-container .video-content .video-card .card-inner .media iframe {
    height: 180px;
  }
  .search-container .button-group {
    text-align: center;
  }
  .search-container .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 559px) {
  .search-container.filter-sticky {
    max-width: 210px;
  }
  .search-container .video-content .video-card .card-inner .media iframe {
    height: 180px;
  }
  .search-container .button-group {
    text-align: center;
  }
  .search-container .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 360px) {
  .search-container.filter-sticky {
    max-width: 180px;
  }
}

/* lead capture form starts*/
.lead-capture-form {
  overflow: hidden;
}

.lead-capture-form .section-title {
  width: 100%;
  font-size: 26px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .lead-capture-form .section-title {
    font-size: 22px;
  }
}

.lead-capture-form .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.lead-capture-form .input-group {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 5px 10px 8px 0;
  border-bottom: 0.5px solid #999999;
  margin-bottom: 2px;
}

.lead-capture-form .input-group.error {
  border-bottom: 0.5px solid #ad1e23;
}

.lead-capture-form .input-group .icon {
  margin-right: 10px;
  width: 20px;
}

.lead-capture-form .input-group .input-box {
  width: calc(100% - 30px);
}

.lead-capture-form .input-group .input-box input {
  border: 0;
  color: #a6a6a6;
  max-width: 300px;
  width: 100%;
  line-height: 21px;
}

.lead-capture-form .input-group .input-box input.error {
  color: #e6371f;
}

.lead-capture-form .input-group .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.lead-capture-form .input-group .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.lead-capture-form .input-group .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.lead-capture-form .input-group .input-box input::placeholder {
  color: #a6a6a6;
}

.lead-capture-form .input-group .input-box input::-ms-clear {
  display: none;
}

.lead-capture-form .input-group .input-box input:-internal-autofill-selected, .lead-capture-form .input-group .input-box input:-webkit-autofill, .lead-capture-form .input-group .input-box input:-webkit-autofill:hover,
.lead-capture-form .input-group .input-box input:-webkit-autofill:focus .lead-capture-form .input-group .input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px white inset;
  -ms-box-shadow: 0 0 0 50px white inset;
  -o-box-shadow: 0 0 0 50px white inset;
  box-shadow: 0 0 0 50px white inset;
}

.lead-capture-form .input-group .input-box input[type="checkbox"], .lead-capture-form .input-group .input-box input[type="radio"] {
  width: auto;
}

.lead-capture-form .input-group .input-box input[type='number'] {
  -moz-appearance: textfield;
}

.lead-capture-form .input-group .input-box input::-webkit-outer-spin-button,
.lead-capture-form .input-group .input-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.lead-capture-form .input-group.active {
  border-bottom: 0.5px solid #f37e20;
}

.lead-capture-form .input-group.active .icon svg path {
  fill: #f37e20;
}

.lead-capture-form .input-group.active .icon svg.mob-svg path {
  fill: transparent;
  stroke: #f37e20;
}

.lead-capture-form .input-group .error-txt {
  display: none;
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 12px;
  color: #e6371f;
}

@media only screen and (max-width: 991px) {
  .lead-capture-form .input-group .error-txt {
    bottom: -20px;
    font-size: 10px;
  }
}

.lead-capture-form .multiselect-dropdown .ms-options-wrap > button {
  background: transparent;
  border: none;
}

.lead-capture-form .multiselect-dropdown .ms-options-wrap > button::after {
  border-top-color: #a6a6a6;
}

.lead-capture-form .multiselect-dropdown .ms-options {
  height: 110px;
}

.lead-capture-form .callback-form {
  width: 100%;
  padding: 40px 50px;
  text-align: left;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.lead-capture-form .callback-form .title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  max-width: 90%;
  margin-bottom: 40px;
  width: 100%;
}

.lead-capture-form .callback-form .form-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -30px 40px;
}

.lead-capture-form .callback-form .form-group .input-group {
  width: calc(50% - 60px);
  margin: 0 30px;
}

.lead-capture-form .callback-form.orange-bg .form-group .input-group input {
  background-color: #fff7eb;
}

.lead-capture-form .callback-form.orange-bg .form-group .input-group input:focus {
  background-color: #fff7eb !important;
}

.lead-capture-form .callback-form .ic-btn {
  min-width: 140px;
}

.lead-capture-form .callback-form .success-txt, .lead-capture-form .callback-form .error-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.lead-capture-form .callback-form .success-txt.show, .lead-capture-form .callback-form .error-popup.show {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.lead-capture-form .callback-form .success-txt svg, .lead-capture-form .callback-form .error-popup svg {
  margin-top: 40px;
  margin-bottom: 26px;
}

.lead-capture-form .callback-form .success-txt h4, .lead-capture-form .callback-form .error-popup h4 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
  color: #3D3D3D;
}

.lead-capture-form .callback-form .success-txt p, .lead-capture-form .callback-form .error-popup p {
  font-weight: 600;
  font-size: 18px;
  line-height: 138%;
  text-transform: capitalize;
  color: #3D3D3D;
  margin-bottom: 22px;
}

.lead-capture-form .callback-form .success-txt p.small, .lead-capture-form .callback-form .error-popup p.small {
  font-size: 18px;
  font-weight: 600;
  line-height: 138%;
  color: #8B8B8B;
  margin-bottom: 0;
  text-transform: none;
}

.lead-capture-form.call-back-section .looking-for-section {
  width: 40%;
}

.lead-capture-form.call-back-section .looking-for-section .content {
  display: block;
  margin: 0;
}

.lead-capture-form.call-back-section .looking-for-section .content .list {
  padding: 0 0 40px;
}

.lead-capture-form.call-back-section .looking-for-section .content .list::before {
  display: none;
}

.lead-capture-form.call-back-section .callback-form {
  width: 60%;
}

.lead-capture-form.call-back-section .callback-form p {
  font-size: 22px;
  line-height: 138%;
  font-weight: 500;
  max-width: 450px;
  margin-bottom: 40px;
}

.lead-capture-form.lead-capture-full-width .looking-for-section {
  width: 100%;
}

.lead-capture-form.lead-capture-full-width .callback-form {
  margin-bottom: 30px;
}

.lead-capture-form.lead-capture-full-width .callback-form .form-group .input-group {
  width: calc(33% - 60px);
}

.lead-capture-form.lead-capture-small-width .title {
  max-width: 280px;
  font-size: 14px;
  line-height: 138%;
  margin-bottom: 20px;
}

.lead-capture-form.lead-capture-small-width .callback-form {
  border: 1px solid #d3d3d3;
  padding: 20px 30px;
}

.lead-capture-form.lead-capture-small-width .callback-form .form-group {
  display: block;
  margin: 0;
}

.lead-capture-form.lead-capture-small-width .callback-form .form-group .input-group {
  width: 100%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 991px) {
  .lead-capture-form.call-back-section .looking-for-section {
    width: 100%;
  }
  .lead-capture-form.call-back-section .looking-for-section .content .list {
    padding: 0 0 20px;
  }
  .lead-capture-form.call-back-section .callback-form {
    width: 100%;
  }
  .lead-capture-form.call-back-section .callback-form p {
    margin-bottom: 20px;
  }
  .lead-capture-form .section-inner {
    display: block;
  }
  .lead-capture-form .callback-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lead-capture-form .callback-form .title {
    margin-bottom: 20px;
  }
  .lead-capture-form .callback-form .form-group {
    display: block;
    margin: 0;
  }
  .lead-capture-form .callback-form .form-group .input-group {
    margin: 0 0 30px;
    width: 100% !important;
  }
}

/* lead capture form Ends*/
.looking-for-wrapper {
  overflow: hidden;
}

.looking-for-wrapper .looking-for-form {
  padding: 20px 65px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-bottom: 40px;
}

.looking-for-wrapper .looking-for-form .loan-forms {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.looking-for-wrapper .looking-for-form .loan-forms .text-left {
  max-width: 380px;
  margin-right: 70px;
}

.looking-for-wrapper .looking-for-form .loan-forms .text-left p {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  .looking-for-wrapper .looking-for-form {
    padding: 20px;
  }
  .looking-for-wrapper .looking-for-form .loan-forms {
    display: block;
    background: transparent;
    padding: 0;
  }
  .looking-for-wrapper .looking-for-form .loan-forms .text-left {
    margin-bottom: 20px;
  }
}

/* filter-section */
.filter-section {
  position: relative;
  background: #fff7eb;
  overflow: hidden;
}

.filter-section .section-inner {
  padding: 40px 20px 20px;
}

.filter-section .filter-top-tool {
  min-width: 100px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-left: auto;
}

.filter-section .filter-icon {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666666;
  font-weight: bold;
  margin-left: auto;
}

.filter-section .filter-icon span {
  margin-left: 8px;
}

.filter-section .filter-icon span.num {
  display: none;
}

.filter-section .filter-icon img {
  width: 17px;
  height: 18px;
}

.filter-section .filter-top {
  margin-bottom: 20px;
}

.filter-section .filter-top .filter-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.filter-section .filter-top .filter-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f37e20;
}

.filter-section .filter-top .search-container {
  margin-right: auto;
  margin-left: 0;
}

.filter-section .filter-top .sort-tools {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  text-transform: uppercase;
  margin-left: auto;
  font-size: 13px;
  font-weight: bold;
}

.filter-section .filter-top .sort-tools .title {
  margin: 0 15px;
  min-width: 80px;
  color: #666666;
}

.filter-section .filter-top .sort-tools .title img {
  margin-right: 5px;
}

.filter-section .filter-top .sort-tools .sort-dropdown {
  background: #fff0e5;
  position: relative;
  color: #f37e20;
  min-width: 130px;
  border-radius: 2px;
  cursor: pointer;
}

.filter-section .filter-top .sort-tools .sort-dropdown span {
  background: #fff0e5;
  display: block;
  padding: 3px 25px 3px 10px;
  width: 100%;
}

.filter-section .filter-top .sort-tools .sort-dropdown span::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: url("../images/arrow_down_orange.png") no-repeat left center;
  background-position: 0px 2.5px;
}

.filter-section .filter-top .sort-tools .sort-dropdown span.active {
  background: #fff;
}

.filter-section .filter-top .sort-tools .sort-dropdown span.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-section .filter-top .sort-tools .sort-dropdown:hover {
  background: #fff;
}

.filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper {
  position: absolute;
  z-index: 3;
  width: 235px;
  padding: 15px;
  display: none;
  top: 37px;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0px -2px 18px rgba(0, 0, 0, 0.19);
  -ms-box-shadow: 0px -2px 18px rgba(0, 0, 0, 0.19);
  -o-box-shadow: 0px -2px 18px rgba(0, 0, 0, 0.19);
  box-shadow: 0px -2px 18px rgba(0, 0, 0, 0.19);
  border-radius: 6px;
}

.filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper::before {
  content: "";
  position: absolute;
  right: 30px;
  top: -12px;
  width: 22px;
  height: 15px;
  background: url("../images/icons/triangle.png") no-repeat;
}

.filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper ul li {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
  width: 100%;
  min-height: 32px;
  line-height: 32px;
  background: #fff0e6;
  text-align: center;
  color: #f37e20;
  border-radius: 50px;
  cursor: pointer;
}

.filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper ul li:not(:last-child) {
  margin-bottom: 7px;
}

.filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper ul li:hover, .filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper ul li.active {
  background: #f37e20;
  color: #fff;
  font-weight: 600;
}

.filter-section .filter-top .sort-tools .sort-dropdown:hover::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-section .filter-top .sort-tools.disable-sorting .sort-dropdown {
  opacity: 0.8;
  pointer-events: none;
}

.filter-section .filter-top.filter-selected .filter-icon span.num {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: -8px;
  right: 10px;
  font-size: 11px;
  line-height: 16px;
  background: #f37e20;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 100%;
}

.filter-section .filter-inner-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  overflow: hidden;
}

.filter-section .filter-inner-container.active {
  margin-top: 130px;
}

.filter-section .filter-inner-container.sticky-enable .filter-content {
  margin-left: 310px;
}

.filter-section .sidebar-content {
  width: 250px;
  margin-right: 60px;
}

.filter-section .sidebar-content.sticky-sidebar {
  position: fixed;
  top: 110px;
  z-index: 1;
  background: #fff7eb;
  padding-top: 40px;
  padding-bottom: 40px;
  /* 17/02/21 starts*/
  /* 17/02/21 starts*/
}

.filter-section .sidebar-content.disable-sticky {
  position: absolute !important;
  bottom: 0;
  top: auto !important;
}

.filter-section .sidebar-content.noscroll-bar .mCSB_container,
.filter-section .sidebar-content.noscroll-bar .mCustomScrollBox {
  overflow: initial;
}

.filter-section .sidebar-content .mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.filter-section .sidebar-content .filter-icon {
  margin-bottom: 20px;
  padding-left: 15px;
}

.filter-section .sidebar-content .sidebar-header {
  position: relative;
  z-index: 1002;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.18);
  padding: 18px 20px 18px 15px;
}

.filter-section .sidebar-content .sidebar-header .title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.filter-section .sidebar-content .sidebar-header .title img {
  height: 18px;
  margin-right: 15px;
}

.filter-section .sidebar-content .sidebar-header .close {
  margin-left: auto;
}

.filter-section .sidebar-content .sidebar-header .close img {
  height: 15px;
}

.filter-section .sidebar-content ul {
  margin: 0;
  padding: 0;
}

.filter-section .sidebar-content ul li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.filter-section .sidebar-content ul li .menu-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  line-height: 1;
  padding: 11px 10px 11px 12px;
  cursor: pointer;
  min-height: 40px;
  margin-bottom: 5px;
  border-radius: 0 20px 20px 0;
  border-left: 2px solid #fff7eb;
}

.filter-section .sidebar-content ul li .menu-item .icon {
  width: 22px;
  margin-right: 10px;
}

.filter-section .sidebar-content ul li .menu-item .n-icon {
  display: inline-block;
}

.filter-section .sidebar-content ul li .menu-item .a-icon {
  display: none;
}

.filter-section .sidebar-content ul li.dropdown .menu-item::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 17px;
  width: 10px;
  height: 10px;
  background: url("../images//icons/down-arrow-o.svg") no-repeat left center;
  background-position: 0px 2.5px;
  z-index: 1;
}

.filter-section .sidebar-content ul li.dropdown .dropdown-list {
  display: none;
  padding: 5px 0 10px;
  margin-bottom: 10px;
}

.filter-section .sidebar-content ul li.dropdown .dropdown-list li,
.filter-section .sidebar-content ul li.dropdown .dropdown-list p {
  padding: 10px 10px 10px 40px;
  cursor: pointer;
}

.filter-section .sidebar-content ul li.dropdown .dropdown-list li:hover, .filter-section .sidebar-content ul li.dropdown .dropdown-list li.active,
.filter-section .sidebar-content ul li.dropdown .dropdown-list p:hover,
.filter-section .sidebar-content ul li.dropdown .dropdown-list p.active {
  color: #f37e20;
}

.filter-section .sidebar-content ul li:hover .menu-item {
  background: #fff;
  border-left: 2px solid #f37e20;
}

.filter-section .sidebar-content ul li.active {
  background: #ffebdc;
  border-radius: 0 20px 20px 0;
}

.filter-section .sidebar-content ul li.active .menu-item {
  position: relative;
  z-index: 1;
  background: #f37e20;
  color: #fff;
  border-left: 2px solid #f37e20;
}

.filter-section .sidebar-content ul li.active .menu-item .n-icon {
  display: none;
}

.filter-section .sidebar-content ul li.active .menu-item .a-icon {
  display: inline-block;
}

.filter-section .sidebar-content ul li.active.dropdown .menu-item::after {
  background: url("../images//icons/up-arrow-w.svg") no-repeat left center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 20px;
}

.filter-section .sidebar-content ul li.active .dropdown-list {
  display: block;
  border-radius: 0 0 20px 0;
}

.filter-section .sidebar-content .sb-box:not(:last-child) {
  border-bottom: 1px dashed #f37e20;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.filter-section .sidebar-content .sb-box .heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin-bottom: 15px;
}

.filter-section .sidebar-content .sb-box .heading h5 {
  font-size: 14px;
  color: #4b4b4b;
  text-transform: uppercase;
}

.filter-section .sidebar-content .sb-box .heading .link {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #f37e20;
  cursor: pointer;
}

.filter-section .sidebar-content .sb-box .search-container {
  margin-bottom: 15px;
  max-width: 100%;
}

.filter-section .sidebar-content .sb-box .more-link {
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  padding-right: 20px;
  margin-left: 45px;
  letter-spacing: 0.05em;
  color: #f37e20;
  cursor: pointer;
}

.filter-section .sidebar-content .sb-box .more-link::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 10px;
  height: 10px;
  background: url("../images//icons/down-arrow-o.svg") no-repeat left center;
  background-position: 0px 2.5px;
  z-index: 1;
}

.filter-section .sidebar-content .sb-box .more-link.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-section .sidebar-content .sb-categories ul li.dropdown .dropdown-list li {
  padding: 6px 10px;
}

.filter-section .sidebar-content .sb-categories ul li.dropdown .dropdown-list li .checkbox-list {
  font-size: 12px;
  margin: 0;
}

.filter-section .sidebar-content .sb-categories ul li.dropdown .dropdown-list li .checkbox-list .checkmark {
  top: -2px;
}

.filter-section .sidebar-content.active {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 1002;
  top: 0;
  left: 0;
  overflow: hidden;
}

.filter-section .sidebar-content.active > ul li .menu-item {
  position: relative;
  border-radius: 0;
  border-bottom: 1px solid rgba(188, 188, 188, 0.2);
  padding: 19px 15px 19px 50px;
  line-height: 1.25;
  margin-right: 30px;
  margin-bottom: 0;
}

.filter-section .sidebar-content.active > ul li .menu-item::before {
  top: 15px;
  left: 15px;
}

.filter-section .sidebar-content.active > ul li.dropdown::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 30px;
  width: 10px;
  height: 10px;
  background: url("../images/arrow_down_orange.png") no-repeat left center;
  background-position: 0px 2.5px;
}

.filter-section .sidebar-content.active > ul li.active .menu-item {
  margin-right: 0 !important;
}

.filter-section .sidebar-content.active > ul li.active.dropdown::after {
  background: url("../images/arrow_down_white.png") no-repeat left center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 30px;
  z-index: 1;
}

.filter-section .sidebar-content.active .search-box-area {
  max-width: 100%;
}

.filter-section .sidebar-content.active .sidebar-body {
  height: calc(100vh - 54px);
  overflow-y: auto;
}

.filter-section .filter-content {
  width: calc(100% - 310px);
}

.filter-section .filter-content .no-result {
  min-height: 270px;
  text-align: center;
  background: #fff url("../images//icons/no-result.svg") no-repeat center center;
}

.filter-section .filter-content .link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  background: url("../images/location-icon-o.svg") no-repeat left;
  background-size: 13px;
  padding-left: 20px;
  text-transform: uppercase;
}

@media only screen and (max-width: tablet) {
  .filter-section .section-inner {
    padding: 0 20px;
  }
  .filter-section .filter-top .filter-inner {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .filter-section .filter-top .filter-icon {
    margin: 0 10px;
    padding: 0 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .filter-section .filter-top .filter-icon img {
    width: auto;
    height: 20px;
  }
  .filter-section .filter-top .sort-tools {
    margin: 0;
  }
  .filter-section .filter-top .sort-tools img {
    height: 23px;
  }
  .filter-section .filter-top .sort-tools .title {
    margin: 0;
    min-width: auto;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown {
    background: transparent;
    min-width: 0;
    padding: 0;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper {
    top: 25px;
    right: 0;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper::before {
    right: 10px;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown::after {
    display: none;
  }
  .filter-section .filter-top.filter-sticky {
    position: fixed;
    z-index: 99;
    top: 105px;
    width: 100%;
    background: #fff;
    padding: 0 20px;
    margin: 0 -20px 20px;
    border: none;
    -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
  }
  .filter-section .filter-top.filter-sticky .filter-inner {
    padding: 18px 0;
    border: none;
    height: 60px;
  }
  .filter-section .filter-top.filter-sticky .filter-title {
    display: none;
  }
  .filter-section .filter-top.filter-sticky .sort-tools .sort-dropdown .dropdown-wrapper {
    right: -10px;
  }
  .filter-section .filter-top.filter-sticky .sort-tools .sort-dropdown .dropdown-wrapper::before {
    right: 20px;
  }
  .filter-section .sidebar-content {
    display: none;
  }
  .filter-section .sidebar-content .sb-box {
    padding: 25px 0 !important;
    margin: 0 20px !important;
  }
  .filter-section .sidebar-content .sb-box .heading .link {
    position: relative;
    padding-right: 20px;
  }
  .filter-section .sidebar-content .sb-box .heading .link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    background: url("../images//icons/more.png") no-repeat;
    width: 10px;
    height: 11px;
  }
  .filter-section .sidebar-content .sb-box .checkbox-list {
    margin-left: 0;
  }
  .filter-section .sidebar-content .sb-box .radio-list {
    margin-left: 0;
  }
  .filter-section .sidebar-content .sb-box .more-link {
    margin-left: 30px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet {
    margin: 0 -20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li {
    position: relative;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li::before {
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: 1px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li:last-child::before, .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li.active::before {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li.active.dropdown::after {
    right: 20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .menu-item {
    padding: 15px 15px 15px 20px;
    margin-bottom: 0;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .menu-item::before {
    top: 13px;
    left: 20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .dropdown-list {
    padding-left: 10px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .dropdown-list ul li {
    padding: 12px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands {
    margin-bottom: 70px !important;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: #fff;
    z-index: 2;
    top: 55px;
    left: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading {
    margin: 15px 0 5px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading h5 {
    position: relative;
    padding-left: 45px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading h5::before {
    background: #f37e20 url("../images/arrow_down_white.png") no-repeat center;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 15px;
    top: 3px;
    -webkit-transform: rotate(-270deg);
    transform: rotate(-270deg);
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading .link {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .search-container {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup {
    width: 100%;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    height: calc(100% - 170px);
    overflow-y: auto;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .close {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-top .search-container {
    max-width: 100%;
    margin: 0 0 20px 0;
    display: block;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-top .brand-nav {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle {
    height: auto;
    margin: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list {
    width: 100%;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list h4 {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title ~ .list-title {
    border-top: 1px dashed #f37e20;
    margin: 5px 0 15px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title ~ .list-title ~ .list-title {
    border-top: none;
    margin: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title:first-child h4 {
    display: block;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-bottom {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands .m-titile {
    margin-bottom: 15px;
  }
  .filter-section .sidebar-content .sb-box.sb-payment {
    padding-bottom: 100px !important;
  }
  .filter-section .filter-content {
    width: 100%;
  }
  .filter-section .filter-content .link {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
  }
  .filter-section .filter-content .link a {
    display: inline-block;
    opacity: 0;
    width: 20px;
    height: 20px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 990px) {
  .filter-section .section-inner {
    padding: 0 20px;
  }
  .filter-section .filter-top .filter-inner {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .filter-section .filter-top .filter-icon {
    margin: 0 10px;
    padding: 0 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .filter-section .filter-top .filter-icon img {
    width: auto;
    height: 20px;
  }
  .filter-section .filter-top .sort-tools {
    margin: 0;
  }
  .filter-section .filter-top .sort-tools img {
    height: 23px;
  }
  .filter-section .filter-top .sort-tools .title {
    margin: 0;
    min-width: auto;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown {
    background: transparent;
    min-width: 0;
    padding: 0;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper {
    top: 25px;
    right: 0;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown .dropdown-wrapper::before {
    right: 10px;
  }
  .filter-section .filter-top .sort-tools .sort-dropdown::after {
    display: none;
  }
  .filter-section .filter-top.filter-sticky {
    position: fixed;
    z-index: 99;
    top: 105px;
    width: 100%;
    background: #fff;
    padding: 0 20px;
    margin: 0 -20px 20px;
    border: none;
    -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
  }
  .filter-section .filter-top.filter-sticky .filter-inner {
    padding: 18px 0;
    border: none;
    height: 60px;
  }
  .filter-section .filter-top.filter-sticky .filter-title {
    display: none;
  }
  .filter-section .filter-top.filter-sticky .sort-tools .sort-dropdown .dropdown-wrapper {
    right: -10px;
  }
  .filter-section .filter-top.filter-sticky .sort-tools .sort-dropdown .dropdown-wrapper::before {
    right: 20px;
  }
  .filter-section .sidebar-content {
    display: none;
  }
  .filter-section .sidebar-content .sb-box {
    padding: 25px 0 !important;
    margin: 0 20px !important;
  }
  .filter-section .sidebar-content .sb-box .heading .link {
    position: relative;
    padding-right: 20px;
  }
  .filter-section .sidebar-content .sb-box .heading .link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    background: url("../images//icons/more.png") no-repeat;
    width: 10px;
    height: 11px;
  }
  .filter-section .sidebar-content .sb-box .checkbox-list {
    margin-left: 0;
  }
  .filter-section .sidebar-content .sb-box .radio-list {
    margin-left: 0;
  }
  .filter-section .sidebar-content .sb-box .more-link {
    margin-left: 30px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet {
    margin: 0 -20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li {
    position: relative;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li::before {
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: 1px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li:last-child::before, .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li.active::before {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet > ul > li.active.dropdown::after {
    right: 20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .menu-item {
    padding: 15px 15px 15px 20px;
    margin-bottom: 0;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .menu-item::before {
    top: 13px;
    left: 20px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .dropdown-list {
    padding-left: 10px;
  }
  .filter-section .sidebar-content .sb-box.sb-categories .contnet .dropdown-list ul li {
    padding: 12px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands {
    margin-bottom: 70px !important;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: #fff;
    z-index: 2;
    top: 55px;
    left: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading {
    margin: 15px 0 5px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading h5 {
    position: relative;
    padding-left: 45px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading h5::before {
    background: #f37e20 url("../images/arrow_down_white.png") no-repeat center;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 15px;
    top: 3px;
    -webkit-transform: rotate(-270deg);
    transform: rotate(-270deg);
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .heading .link {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .search-container {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup {
    width: 100%;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    height: calc(100% - 170px);
    overflow-y: auto;
    border-radius: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .close {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-top .search-container {
    max-width: 100%;
    margin: 0 0 20px 0;
    display: block;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-top .brand-nav {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle {
    height: auto;
    margin: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list {
    width: 100%;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list h4 {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title ~ .list-title {
    border-top: 1px dashed #f37e20;
    margin: 5px 0 15px;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title ~ .list-title ~ .list-title {
    border-top: none;
    margin: 0;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-middle .list.list-title:first-child h4 {
    display: block;
  }
  .filter-section .sidebar-content .sb-box.sb-brands.active .brand-poupup .brand-poupup-inner .brand-poupup-bottom {
    display: none;
  }
  .filter-section .sidebar-content .sb-box.sb-brands .m-titile {
    margin-bottom: 15px;
  }
  .filter-section .sidebar-content .sb-box.sb-payment {
    padding-bottom: 100px !important;
  }
  .filter-section .filter-content {
    width: 100%;
  }
  .filter-section .filter-content .link {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
  }
  .filter-section .filter-content .link a {
    display: inline-block;
    opacity: 0;
    width: 20px;
    height: 20px;
    overflow: hidden;
  }
}

/* filter-cat */
.filter-cat {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.filter-cat span {
  display: inline-block;
  background: #f6f6f6;
  padding: 5px 10px 5px 15px;
  font-size: 13px;
  line-height: 1.2;
  margin-right: 10px;
  border-radius: 20px;
  border: 1px solid #cfcfcf;
}

.filter-cat span img {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  top: -1px;
}

.filter-cat span.filter-clear {
  background: #f37e20;
  color: #fff;
  border-color: #f37e20;
}

.filter-cat.active {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* brand-poupup */
.brand-poupup {
  display: none;
  position: absolute;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.15);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.15);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.15);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.15);
  border-radius: 8px;
  width: 980px;
  z-index: 111;
}

.brand-poupup .brand-poupup-inner {
  position: relative;
  padding: 15px;
}

.brand-poupup .brand-poupup-inner .close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.brand-poupup .brand-poupup-inner .brand-poupup-top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.brand-poupup .brand-poupup-inner .brand-poupup-top .search-container {
  max-width: 250px;
  margin: 0 25px 0 0;
}

.brand-poupup .brand-poupup-inner .brand-poupup-top .brand-nav {
  background: #fff;
}

.brand-poupup .brand-poupup-inner .brand-poupup-top .brand-nav .ln-letters li {
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 14px;
  background: transparent;
}

.brand-poupup .brand-poupup-inner .brand-poupup-top .brand-nav .ln-letters li:hover {
  color: #4b4b4b;
}

.brand-poupup .brand-poupup-inner .brand-poupup-middle {
  margin: 25px 10px 15px;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 2px;
  height: 370px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 980px;
  overflow-x: auto;
}

.brand-poupup .brand-poupup-inner .brand-poupup-middle .list {
  padding: 2px 0;
  font-size: 14px;
  width: 210px;
}

.brand-poupup .brand-poupup-inner .brand-poupup-middle .list.ln-disabled {
  pointer-events: none;
  opacity: 0.3;
  cursor: not-allowed;
}

.brand-poupup .brand-poupup-inner .brand-poupup-middle .list h4 {
  font-size: 14px;
  line-height: 1.38;
  margin-bottom: 15px;
}

.brand-poupup .brand-poupup-inner .brand-poupup-middle .list .checkbox-list {
  margin-left: 0;
  margin-bottom: 15px;
}

.brand-poupup .brand-poupup-inner .brand-poupup-bottom {
  text-align: right;
}

.brand-poupup .brand-poupup-inner .brand-poupup-bottom .button-group a {
  min-width: 140px;
  text-align: center;
}

.brand-poupup .brand-poupup-inner .brand-poupup-bottom .button-group a.ic-more {
  min-width: auto;
}

.brand-poupup .brand-poupup-inner .brand-poupup-bottom .button-group a:not(:last-child) {
  margin-right: 30px;
}

.leadform-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow-y: auto;
}

.leadform-popup .leadform-popup-inner {
  position: relative;
  width: 93%;
  max-width: 760px;
  max-height: 550px;
  background: #fff;
  margin: 30px auto 0;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
}

.leadform-popup .popup-close {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background: #f37e20;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  right: 25px;
  text-align: center;
  line-height: 34px;
}

.leadform-popup .popup-close img {
  vertical-align: middle;
}

.leadform-popup .lead-capture-form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -20px -35px;
  padding: 35px 45px;
  border-radius: 0 0 10px 10px;
}

.leadform-popup .lead-capture-form .media {
  width: 285px;
}

.leadform-popup .lead-capture-form .media img, .leadform-popup .lead-capture-form .media .iframe-video {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.leadform-popup .lead-capture-form .media p {
  font-size: 12px;
  line-height: 15px;
}

.leadform-popup .lead-capture-form .callback-form {
  width: calc(100% - 285px);
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 0 0 0 50px;
}

.leadform-popup .lead-capture-form .callback-form .form-group {
  display: block;
  margin: 0;
}

.leadform-popup .lead-capture-form .callback-form .form-group .input-group {
  width: 100%;
  margin: 0 0 15px;
}

.leadform-popup .lead-capture-form .callback-form .form-group .input-group .error-txt {
  font-size: 10px;
  bottom: -20px;
}

.leadform-popup .lead-capture-form .callback-form .form-group .input-group .input-box input {
  color: #4b4b4b;
  background: transparent !important;
  -webkit-box-shadow: 0 0 0 50px #fff7eb inset;
  -ms-box-shadow: 0 0 0 50px #fff7eb inset;
  -o-box-shadow: 0 0 0 50px #fff7eb inset;
  box-shadow: 0 0 0 50px #fff7eb inset;
}

.leadform-popup .lead-capture-form .callback-form .form-group .input-group .input-box input[type="checkbox"] {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.leadform-popup .lead-capture-form .callback-form .form-group .multiselect-dropdown .ms-options {
  height: 90px;
}

.leadform-popup .lead-capture-form .callback-form .button-group {
  margin-top: 32px;
  text-align: right;
}

.leadform-popup .lead-capture-form .callback-form .success-txt {
  position: static;
  padding: 0;
}

.leadform-popup .lead-capture-form .callback-form .success-txt img {
  margin: 25px 0 20px;
}

.leadform-popup .lead-capture-form .callback-form .success-txt p {
  margin-bottom: 0;
}

.leadform-popup .lead-capture-form .callback-form .success-txt p.small {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.leadform-popup .lead-capture-form .callback-form.fullwidth {
  padding: 0 30px;
  width: 100%;
}

.leadform-popup .lead-capture-form .callback-form.fullwidth .button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  text-align: left;
}

.leadform-popup .lead-capture-form .callback-form.fullwidth .button-group p {
  font-size: 12px;
  line-height: 15px;
}

.leadform-popup .lead-capture-form .callback-form.fullwidth .button-group div:first-child {
  max-width: 290px;
  margin-right: 20px;
}

.leadform-popup .lead-capture-form .callback-form.fullwidth .button-group div:last-child {
  margin-left: auto;
}

.leadform-popup .lead-capture-form.success {
  background: #fff !important;
}

.leadform-popup .lead-capture-form.success .media {
  display: none;
}

.leadform-popup .lead-capture-form.success form {
  display: none;
}

.leadform-popup .lead-capture-form.success .callback-form {
  width: 100%;
  padding: 0;
}

.leadform-popup .popup-heading {
  max-width: 475px;
  margin: 0 auto 15px;
  text-align: center;
}

.leadform-popup .popup-heading .section-title {
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .leadform-popup .lead-capture-form {
    display: block;
    padding: 20px;
  }
  .leadform-popup .lead-capture-form .media {
    width: 100%;
  }
  .leadform-popup .lead-capture-form .media img, .leadform-popup .lead-capture-form .media .iframe-video {
    width: 100%;
  }
  .leadform-popup .lead-capture-form .callback-form {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .leadform-popup .lead-capture-form .callback-form.fullwidth .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .leadform-popup .lead-capture-form .callback-form.fullwidth .button-group div:first-child {
    max-width: none;
    margin-bottom: 15px;
  }
  .leadform-popup .popup-close {
    top: -15px;
    right: -10px;
  }
}

.exit-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow-y: auto;
  display: none;
}

.exit-popup .exit-popup-inner {
  position: relative;
  width: 93%;
  max-width: 760px;
  max-height: 550px;
  background: #fff;
  margin: 30px auto 0;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
}

.exit-popup .popup-close {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background: #f37e20;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  right: 25px;
  text-align: center;
  line-height: 34px;
}

.exit-popup .popup-close img {
  vertical-align: middle;
}

.exit-popup .popup-heading {
  max-width: 475px;
  margin: 0 auto 15px;
  text-align: center;
}

.exit-popup .popup-heading .section-title {
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exit-popup .popup-close {
    top: -15px;
    right: -10px;
  }
}

/* security-section */
.security-section {
  position: relative;
  overflow: hidden;
  background: #fff7eb;
}

.security-section .section-inner {
  max-width: 1190px;
  padding-bottom: 50px;
}

.security-section .section-inner .section-label,
.security-section .section-inner .section-title {
  text-align: left;
}

.security-section .section-inner .section-title {
  max-width: 50%;
  width: 100%;
}

.security-section .section-inner .content {
  padding-bottom: 24px;
  margin: 0 -20px;
}

.security-section .section-inner .content .block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  padding: 0 20px;
  width: calc((66% / 3) - 4px);
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
}

.security-section .section-inner .content .block .icon {
  display: inline-block;
  vertical-align: middle;
}

.security-section .section-inner .content .block .icon img {
  vertical-align: bottom;
}

.security-section .section-inner .content .block p {
  display: inline-block;
  width: calc(100% - 43px);
  padding-left: 15px;
  vertical-align: middle;
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.4;
}

.security-section .section-inner .content .block::before {
  content: "";
  border-right: 1px solid #c9dbe1;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}

.security-section .section-inner .content .block:first-child {
  width: calc(34% - 4px);
}

.security-section .section-inner .content .block:first-child::before {
  display: none;
}

.security-section .section-inner .content .block:first-child p {
  padding-left: 0;
  width: 100%;
}

.security-section .section-inner .content .block:last-child:after {
  display: none;
}

.security-section .section-inner .ic-btn {
  border-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .security-section .section-inner .content .block p {
    font-size: 16px;
  }
}

@media only screen and (max-width: tablet-wide) {
  .security-section .section-inner .content .block p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1023px) {
  .security-section .section-inner .content .block p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .security-section .section-inner {
    padding-bottom: 40px;
    padding-top: 60px;
  }
  .security-section .section-inner .section-title {
    max-width: 100%;
    text-align: center;
  }
  .security-section .section-inner .content {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin: 0 -15px 10px;
  }
  .security-section .section-inner .content .block {
    display: block;
    width: calc((100% / 3) - 3px);
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
  .security-section .section-inner .content .block:first-child {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    text-align: center;
  }
  .security-section .section-inner .content .block:first-child p {
    font-size: 14px;
    max-width: 100%;
  }
  .security-section .section-inner .content .block:nth-child(2)::before {
    display: none;
  }
  .security-section .section-inner .content .block .icon {
    display: block;
    text-align: center;
    margin-bottom: 5px;
  }
  .security-section .section-inner .content .block p {
    max-width: 95px;
    padding-left: 0;
    font-size: 12px;
    width: 100%;
  }
}

/* blogs start */
.blog-card {
  background: #fff;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-card:last-child {
  margin-right: 0;
}

.blog-card a {
  text-decoration: none;
}

.blog-card .card-inner .image {
  border: 1px solid #dedede;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.blog-card .card-inner .image img {
  width: 100%;
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card .card-inner .content {
  padding: 30px;
  border: 1px solid #dedede;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 1199px) {
  .blog-card .card-inner .content {
    padding: 30px 20px;
  }
}

.blog-card .card-inner .content .category {
  color: #f37e20;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
}

.blog-card .card-inner .content h3 {
  font-weight: 600;
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 23px;
  color: #4b4b4b;
  margin-bottom: 20px;
  outline: none;
}

.blog-card .card-inner .content .card-title {
  display: block;
  font-weight: 600;
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 23px;
  color: #4b4b4b;
  margin-bottom: 20px;
  outline: none;
  height: 72px;
  overflow: hidden;
}

.blog-card .card-inner .content .card-bottom .date-readtime {
  float: left;
  color: #8b8b8b;
}

.blog-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #8b8b8b;
}

.blog-card .card-inner .content .card-bottom .bookmark-share {
  float: right;
  position: relative;
}

.blog-card .card-inner .content .card-bottom .bookmark-share .bookmark {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url("../images/bookmark.png") no-repeat center;
  background-size: 16px;
  cursor: pointer;
}

.blog-card .card-inner .content .card-bottom .bookmark-share .bookmark:hover {
  background: url("../images/bookmark-orange.png") no-repeat center;
  background-size: 16px;
}

.blog-card .card-inner .content .card-bottom .bookmark-share .share {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url("../images/share.png") no-repeat center;
  background-size: 16px;
  cursor: pointer;
}

.blog-card .card-inner .content .card-bottom .share-content .share-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  max-width: 165px;
  margin: 0 auto;
}

.blog-card .card-inner .content .card-bottom .share-content .share-link li:first-child {
  width: 40px;
  border-right: 1px solid #e5e5e5;
}

.blog-card .card-inner .content .card-bottom .share-content .share-link li:last-child {
  width: 40px;
  text-align: right;
  border-left: 1px solid #e5e5e5;
}

.blog-card .card-inner .content .card-bottom .share-content .share-link li:last-child img {
  margin-left: auto;
}

.blog-card .card-inner:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media only screen and (max-width: 991px) {
  .blog-card .card-inner .content .card-title {
    font-size: 18px !important;
    line-height: normal;
  }
  .blog-card:hover img {
    -webkit-transform: initial;
            transform: initial;
    -webkit-filter: none;
            filter: none;
  }
}

@media only screen and (max-width: 480px) {
  .blog-card .card-inner .content {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 360px) {
  .blog-card .card-inner .content {
    padding: 30px 10px;
  }
  .blog-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
    padding-right: 6px;
    margin-right: 6px;
  }
}

.blog-section .section-inner .section-title {
  margin-bottom: 0;
}

.blog-section .blog-slider {
  padding: 40px 20px 0;
}

.blog-section .blog-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-bottom: 20px;
}

.blog-section .blog-slider .slick-arrow {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.blog-section .blog-slider .slick-arrow.slick-next {
  -webkit-transform: scale(0.7) scaleX(-1);
  transform: scale(0.7) scaleX(-1);
}

.blog-section .view-all {
  margin-top: 30px;
  text-align: center;
}

.blog-section .view-all .ic-btn {
  min-width: 212px;
}

@media only screen and (max-width: 991px) {
  .blog-section .view-all .ic-btn:hover {
    background: #f37e20;
    color: #fff;
  }
}

@media only screen and (max-width: tablet) {
  .blog-section .section-inner {
    padding: 6css0px 0 40px 20px;
  }
  .blog-section .section-inner .section-title {
    max-width: 270px;
    margin: 0 auto;
  }
  .blog-section .blog-slider {
    padding: 20px 0 0 20px;
    margin: 0 -20px;
  }
  .blog-section .blog-slider .slick-list {
    padding-left: 0 !important;
  }
  .blog-section .blog-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .blog-section .blog-card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .blog-section .section-inner {
    padding: 6css0px 0 40px 20px;
  }
  .blog-section .section-inner .section-title {
    max-width: 270px;
    margin: 0 auto;
  }
  .blog-section .blog-slider {
    padding: 20px 0 0 20px;
    margin: 0 -20px;
  }
  .blog-section .blog-slider .slick-list {
    padding-left: 0 !important;
  }
  .blog-section .blog-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .blog-section .blog-card {
    margin: 0 15px 0 0;
  }
}

/* cards */
.solutions-card {
  border: 1px solid #dedede;
  background: #fff;
  border-radius: 10px;
  margin-right: 20px;
  overflow: hidden;
  margin-bottom: 5px;
}

.solutions-card .media {
  background: #dedede;
  overflow: hidden;
}

.solutions-card .media img {
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.solutions-card .content {
  padding: 25px 30px 30px 30px;
  background: #fff;
}

.solutions-card .content .top-content {
  position: relative;
  min-height: 210px;
}

.solutions-card .content h4 {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2;
}

.solutions-card .content h3 {
  color: #4b4b4b;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: normal;
}

.solutions-card .content p {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
}

.solutions-card .content ul li {
  position: relative;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 24px;
  padding-left: 10px;
}

.solutions-card .content ul li:not(:last-child) {
  margin-bottom: 5px;
}

.solutions-card .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #8b8b8b;
}

.solutions-card .content .buttons {
  margin-top: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.solutions-card .content .buttons .ic-btn {
  padding: 12.5px 20px;
}

.solutions-card .content .buttons .ic-btn.white {
  border: 0;
}

.solutions-card .content .buttons .ic-more {
  padding-left: 10px;
}

.solutions-card.offer-card {
  padding: 0;
}

.solutions-card.offer-card .price-wrapper {
  position: absolute;
  bottom: 0;
}

.solutions-card.offer-card .price-wrapper span.new-price {
  font-size: 28px;
  line-height: 24px;
  color: #a41906;
  font-weight: bold;
}

.solutions-card.offer-card .price-wrapper span.old-price {
  font-size: 22px;
  font-weight: normal;
  color: #bdbdbd;
  text-decoration: line-through;
  padding-left: 10px;
}

.solutions-card:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 480px) {
  .solutions-card .content {
    padding: 20px;
  }
}

/* life-stages-section */
.life-stages-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 991px) {
  .life-stages-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.life-stages-section .sidebar {
  width: 260px;
  margin-top: 0px;
  z-index: 9;
  padding: 10px;
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .life-stages-section .sidebar {
    position: absolute;
  }
}

.life-stages-section .sidebar .sidebar-title {
  margin-bottom: 20px;
}

.life-stages-section .sidebar .sidebar-title h4 {
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 300;
}

@media screen and (min-width: 1024px) {
  .life-stages-section .sidebar .sidebar-title h4 span {
    display: block;
  }
}

.life-stages-section .sidebar ul li {
  position: relative;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

.life-stages-section .sidebar ul li a {
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

.life-stages-section .sidebar ul li a h4 {
  display: inline-block;
  padding: 15px 5px 15px 10px;
  /** 24-06 : ie issue fixed **/
  font-weight: 600;
  font-size: 12px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3d3d3d;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.life-stages-section .sidebar ul li a h4 span {
  display: inline-block;
}

.life-stages-section .sidebar ul li a img {
  display: none;
}

.life-stages-section .sidebar ul li a:after {
  content: "";
  width: 6px;
  /** 24-06 : ie issue fixed (change width of arrow)  **/
  height: 10px;
  background: url("../images/lifestage/arrow.svg") no-repeat center;
  display: inline-block;
  margin-left: 0;
}

.life-stages-section .sidebar ul li.active {
  margin-bottom: 15px;
}

.life-stages-section .sidebar ul li.active a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  background: #f37e20;
}

.life-stages-section .sidebar ul li.active a h4 {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  padding: 6px 15px 6px 20px;
  text-transform: initial;
  white-space: nowrap;
}

.life-stages-section .sidebar ul li.active a h4 span {
  display: block;
  font-weight: 600;
}

.life-stages-section .sidebar ul li.active a img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 90px;
  margin-right: 20px;
}

.life-stages-section .sidebar ul li.active a::after {
  display: none;
}

.life-stages-section .sidebar ul li:hover {
  -webkit-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.8);
  -ms-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.8);
  -o-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.8);
  box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.8);
}

.life-stages-section .sidebar ul li:hover a::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f37e20;
  position: absolute;
  top: 0;
  left: 0;
}

.life-stages-section .sidebar ul li:hover a::after {
  display: none;
}

.life-stages-section .sidebar .left-arrow,
.life-stages-section .sidebar .right-arrow {
  position: static;
  width: 40px;
  height: 80px;
  top: calc(50% - 20px);
  background: -webkit-gradient(linear, right top, left top, color-stop(-6.25%, #f6f6f6), color-stop(43.55%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(270deg, #f6f6f6 -6.25%, #f6f6f6 43.55%, rgba(246, 246, 246, 0) 100%);
}

.life-stages-section .sidebar .left-arrow::before,
.life-stages-section .sidebar .right-arrow::before {
  width: 40px;
  height: 80px;
  background-size: 8px;
  padding: 0;
}

.life-stages-section .sidebar .tabs-section {
  margin: 0 -20px 20px;
  width: calc(100% + 40px);
}

.life-stages-section .sidebar .nav.nav-tabs::before {
  display: none;
}

.life-stages-section .sidebar .nav.nav-tabs li {
  background: #fff;
  -webkit-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.3);
  -ms-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.3);
  -o-box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.3);
  box-shadow: 0px 4px 28px rgba(232, 232, 222, 0.3);
  border: 1px solid rgba(232, 232, 222, 0.8);
  margin-right: 10px;
  padding: 0;
  text-align: center;
}

.life-stages-section .sidebar .nav.nav-tabs li img {
  display: none;
}

.life-stages-section .sidebar .nav.nav-tabs li::before, .life-stages-section .sidebar .nav.nav-tabs li::after {
  display: none;
}

.life-stages-section .sidebar .nav.nav-tabs li a {
  background: #fff;
  border: none;
  padding: 10px 30px;
}

.life-stages-section .sidebar .nav.nav-tabs li a h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  padding: 0;
  text-transform: capitalize;
}

.life-stages-section .sidebar .nav.nav-tabs li a h4 span {
  display: block;
  font-weight: 600;
}

.life-stages-section .sidebar .nav.nav-tabs li a::after {
  display: none;
}

.life-stages-section .sidebar .nav.nav-tabs li.active a {
  margin: 0;
}

.life-stages-section .sidebar.sidebar-sticky {
  position: fixed;
  top: -25px;
  z-index: 9;
  background: #fff;
}

.life-stages-section .sidebar.sidebar-sticky.sidebar-header-sticky {
  top: 130px;
}

.life-stages-section .sidebar.footerInView {
  position: absolute !important;
  bottom: 0;
  top: auto !important;
}

@media screen and (max-width: 991px) {
  .life-stages-section .sidebar {
    width: 100%;
    margin-top: 120px;
  }
  .life-stages-section .sidebar.top-padding {
    padding-top: 40px;
  }
  .life-stages-section .sidebar .sidebar-title h4 {
    font-size: 16px;
    padding-left: 5px;
  }
  .life-stages-section .sidebar .nav.nav-tabs li {
    border-radius: 10px;
    border: none;
    margin: 10px;
  }
  .life-stages-section .sidebar .nav.nav-tabs li a {
    padding: 10px 25px;
    min-width: 140px;
    text-align: center;
  }
  .life-stages-section .sidebar .nav.nav-tabs li a h4 span {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .life-stages-section .sidebar .sidebar-title h4 {
    font-size: 15px;
  }
}

.life-stages-section .rightview-content {
  position: absolute;
  margin-left: 280px;
  /* solutions-section */
  /* ways-to-bank-section */
  /* forex-solutions */
  /* ls-blog-section */
}

@media screen and (max-width: 1279px) {
  .life-stages-section .rightview-content {
    margin-right: -20px;
    width: calc(100% - 300px);
  }
}

@media screen and (min-width: 1800px) {
  .life-stages-section .rightview-content {
    width: calc(100vw - 33%);
  }
}

@media screen and (min-width: 1280px) and (max-width: 1799px) {
  .life-stages-section .rightview-content {
    width: calc(100vw - 28%);
  }
}

@media screen and (min-width: 1280px) and (max-width: 1600px) {
  .life-stages-section .rightview-content {
    width: calc(100vw - 24%);
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content {
    position: relative;
    width: 100%;
    margin: 0;
  }
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner {
  position: relative;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .content {
  position: absolute;
  top: 0;
  max-width: 480px;
  height: 100%;
  padding: 10px 0 30px 60px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .content h1 {
  font-size: 40px;
  color: #074a86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.1;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .content p {
  font-size: 20px;
  line-height: 150%;
  color: #3d3d3d;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area {
  position: relative;
  z-index: 1;
  background: #f37e20;
  max-width: 760px;
  margin: -25px auto 40px;
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  overflow: hidden;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul {
  text-align: center;
  padding: 10px;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul li {
  display: inline-block;
  vertical-align: middle;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul li::after, .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul li::before {
  display: none;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul li a {
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 45px;
  border-right: 1px solid #fff;
  color: #fff;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul li:last-child a {
  border: none;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky {
  position: fixed;
  top: 20px;
  width: 100%;
  max-width: calc(100vw - 35%);
  z-index: 10;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky.link-header-sticky {
  top: 155px;
}

@media screen and (min-width: 1600px) and (max-width: 1800px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky {
    max-width: calc(100vw - 33%);
  }
}

@media screen and (min-width: 1401px) and (max-width: 1599px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky {
    max-width: calc(100vw - 30%);
  }
}

@media screen and (min-width: 1280px) and (max-width: 1400px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky {
    max-width: calc(100vw - 28%);
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky {
    top: 135px !important;
    right: 0;
    max-width: calc(100% - 20px);
  }
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .nav.nav-tabs::before, .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .nav.nav-tabs::after {
  display: none;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .nav.nav-tabs li {
  padding: 0;
}

.life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .nav.nav-tabs li a {
  padding: 0 25px;
  background: transparent;
  border: none;
  margin: 0;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* background: url('../images/lifestage/m-banner-img.jpg') no-repeat; */
    background-size: 100%;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .content {
    background: #f6f6f6;
    position: relative;
    padding: 40px 20px 25px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 100%;
    margin-top: -35px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .content p {
    max-width: 480px;
    letter-spacing: -0.2px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .content h2 {
    font-size: 26px;
    max-width: 480px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 20px;
    width: calc(100% - 20px);
    margin-right: 0px;
    border-radius: 50px 0 0 50px;
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .left-arrow {
    left: 0;
    background: linear-gradient(83deg, rgba(246, 246, 246, 0.7) -6.25%, rgba(246, 246, 246, 0.7) 43.55%, rgba(246, 246, 246, 0) 100%);
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .left-arrow::before {
    background: url("../images/left_arrow_white.png") no-repeat center left 16px;
    background-size: 8px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .right-arrow {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(-6.25%, rgba(246, 246, 246, 0.7)), color-stop(43.55%, rgba(246, 246, 246, 0.7)), to(rgba(246, 246, 246, 0)));
    background: linear-gradient(270deg, rgba(246, 246, 246, 0.7) -6.25%, rgba(246, 246, 246, 0.7) 43.55%, rgba(246, 246, 246, 0) 100%);
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area .right-arrow::before {
    background: url("../images/right_arrow_w.png") no-repeat center right 10px;
    background-size: 8px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area ul {
    margin-right: 45px;
  }
  .life-stages-section .rightview-content .ls-top-content .life-stages-banner .link-area.linkarea-sticky ul {
    margin-left: 45px;
  }
}

.life-stages-section .rightview-content .solutions-section {
  position: relative;
  /* life-stages */
}

.life-stages-section .rightview-content .solutions-section .life-solutions {
  max-width: 640px;
  width: 100%;
  margin-bottom: 60px;
}

.life-stages-section .rightview-content .solutions-section .life-solutions p:not(:last-child) {
  font-size: 15px;
  line-height: 138%;
  color: #646464;
  margin-bottom: 15px;
}

.life-stages-section .rightview-content .solutions-section .nav-tabs {
  margin-bottom: 30px;
  padding: 0 20px;
  white-space: nowrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  width: calc(100% - 130px);
  margin-left: 0;
}

.life-stages-section .rightview-content .solutions-section .nav-tabs::before {
  display: none;
}

.life-stages-section .rightview-content .solutions-section .nav-tabs > li > a {
  white-space: nowrap;
}

.life-stages-section .rightview-content .solutions-section .tabs-section {
  position: relative;
  margin-left: 0;
  width: calc(100% - 130px);
  overflow: hidden;
}

.life-stages-section .rightview-content .solutions-section .tabs-section .nav-tabs {
  width: 100%;
  overflow: hidden;
}

.life-stages-section .rightview-content .solutions-section .tabs-container {
  position: relative;
  background: #fff7eb;
  padding: 0 0 40px 0;
}

.life-stages-section .rightview-content .solutions-section .tabs-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #fff7eb;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.life-stages-section .rightview-content .solutions-section .left-arrow {
  display: block;
}

.life-stages-section .rightview-content .solutions-section .left-arrow::before {
  background-position: 12px 12px;
}

.life-stages-section .rightview-content .solutions-section .right-arrow {
  display: block;
}

.life-stages-section .rightview-content .solutions-section .right-arrow::before {
  background-position: 32px 12px;
}

.life-stages-section .rightview-content .solutions-section .solutions-slider {
  max-width: 1000px;
}

.life-stages-section .rightview-content .solutions-section .solutions-slider .slick-arrow {
  top: -55px;
  border-color: #f37e20;
  background-size: 7px;
  background-position: center center;
}

.life-stages-section .rightview-content .solutions-section .solutions-slider .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.life-stages-section .rightview-content .solutions-section .solutions-slider .slick-arrow.slick-prev {
  left: auto;
  right: 80px;
}

.life-stages-section .rightview-content .solutions-section .solutions-slider .slick-arrow.slick-next {
  right: 20px;
}

.life-stages-section .rightview-content .solutions-section .info-content {
  position: relative;
  background: #fff7eb;
  padding-bottom: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.life-stages-section .rightview-content .solutions-section .info-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #fff7eb;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.life-stages-section .rightview-content .solutions-section .info-content .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 50%;
  max-width: 415px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content:not(:last-child) {
  margin-right: 15px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-link p {
  font-weight: normal;
  font-size: 20px;
  line-height: 138%;
  max-width: 325px;
  margin-left: 25px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button {
  background: #0f5fa5;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  width: 200px;
  height: 70px;
  text-decoration: none;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button:not(:last-child) {
  margin-right: 15px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button img {
  height: 30px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button p {
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  max-width: 110px;
  margin-left: 15px;
}

.life-stages-section .rightview-content .solutions-section .info-content .content .info-button:hover {
  opacity: 0.9;
}

@media screen and (max-width: 1199px) {
  .life-stages-section .rightview-content .solutions-section .tabs-section {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .life-stages-section .rightview-content .solutions-section .info-content .content:not(:last-child) {
    width: 45%;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-link p {
    font-size: 18px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button a {
    width: 180px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button img {
    height: 26px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button p {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .solutions-section {
    padding: 45px 0 0;
  }
  .life-stages-section .rightview-content .solutions-section .life-solutions {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .life-stages-section .rightview-content .solutions-section .tabs-section {
    background: #f6f6f6;
  }
  .life-stages-section .rightview-content .solutions-section .tabs-section .nav-tabs {
    margin: 0 0 20px;
    padding-left: 20px;
  }
  .life-stages-section .rightview-content .solutions-section .tabs-section .left-arrow::before {
    background-size: 8px;
    background-position: center left 10px;
  }
  .life-stages-section .rightview-content .solutions-section .tabs-section .right-arrow::before {
    background-size: 8px;
  }
  .life-stages-section .rightview-content .solutions-section .tabs-container {
    background: #f6f6f6;
    padding: 0px 0 40px 20px;
    margin: 0 -20px;
  }
  .life-stages-section .rightview-content .solutions-section .solutions-slider .slick-list {
    padding-left: 0 !important;
  }
  .life-stages-section .rightview-content .solutions-section .solutions-slider .slick-dots {
    position: relative;
    text-align: center;
    margin-top: 15px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content {
    background: #f6f6f6;
    margin: 0 -20px;
    width: calc(100% + 40px);
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    padding-bottom: 0;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    text-align: center;
    width: 100%;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-link img {
    margin-bottom: 10px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-link p {
    margin-left: 0;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button {
    max-width: 280px;
    width: 100%;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button a {
    width: 100%;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    padding: 0 30px;
    font-weight: 600;
  }
  .life-stages-section .rightview-content .solutions-section .info-content .content .info-button p {
    max-width: calc(100% - 45px);
  }
}

@media screen and (max-width: 767px) {
  .life-stages-section .rightview-content .solutions-section .tabs-section {
    width: 100%;
  }
}

.life-stages-section .rightview-content .ways-to-bank-section {
  padding: 40px 0;
}

.life-stages-section .rightview-content .ways-to-bank-section .content-block .ways-to-bank-tabs .nav-tabs a {
  white-space: nowrap;
}

.life-stages-section .rightview-content .ways-to-bank-section .left-arrow {
  display: block;
}

.life-stages-section .rightview-content .ways-to-bank-section .left-arrow::before {
  background-position: 12px 12px;
}

.life-stages-section .rightview-content .ways-to-bank-section .right-arrow {
  display: block;
}

.life-stages-section .rightview-content .ways-to-bank-section .right-arrow::before {
  background-position: 32px 12px;
}

.life-stages-section .rightview-content .ways-to-bank-section::before {
  height: 275px;
  z-index: -1;
}

.life-stages-section .rightview-content .ways-to-bank-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 275px;
  background: #f6f6f6;
  z-index: -1;
  width: 100vw;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .life-stages-section .rightview-content .ways-to-bank-section::before, .life-stages-section .rightview-content .ways-to-bank-section::after {
    height: 280px;
  }
}

@supports (-ms-ime-align: auto) {
  .life-stages-section .rightview-content .ways-to-bank-section::before, .life-stages-section .rightview-content .ways-to-bank-section::after {
    height: 280px;
  }
}

.life-stages-section .rightview-content .ways-to-bank-section .tab-content .tab-pane {
  padding: 30px 20px 0;
  min-height: 350px;
}

.life-stages-section .rightview-content .ways-to-bank-section .inner-contnent {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 1020px;
}

.life-stages-section .rightview-content .ways-to-bank-section .slick-list.draggable {
  padding: 0 !important;
}

.life-stages-section .rightview-content .ways-to-bank-section .app-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.life-stages-section .rightview-content .ways-to-bank-section .image-block {
  width: calc(100% - 680px);
  position: relative;
}

.life-stages-section .rightview-content .ways-to-bank-section .image-block img {
  padding-right: 20px;
  max-width: 300px;
  width: 90%;
}

.life-stages-section .rightview-content .ways-to-bank-section .content-block {
  max-width: 680px;
  padding: 0;
  width: 100%;
}

.life-stages-section .rightview-content .ways-to-bank-section .content-block .desc {
  max-width: 470px;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .life-stages-section .rightview-content .ways-to-bank-section .inner-contnent .image-block {
    width: calc(100% - 480px);
  }
  .life-stages-section .rightview-content .ways-to-bank-section .inner-contnent .content-block {
    width: 440px;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .inner-contnent .content-block .nav-tabs {
    margin-left: 0;
    padding-left: 20px;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .inner-contnent .content-block .nav-tabs::before {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ways-to-bank-section:after {
    display: none;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .content-block {
    max-width: 100%;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .content-block .section-title {
    text-align: center;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .content-block .desc {
    margin: 0 auto 20px;
    text-align: center;
  }
  .life-stages-section .rightview-content .ways-to-bank-section .content-block .nav-tabs {
    margin-left: 0;
  }
}

.life-stages-section .rightview-content .forex-solutions {
  position: relative;
  background: #ad1e23;
}

.life-stages-section .rightview-content .forex-solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #ad1e23;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.life-stages-section .rightview-content .forex-solutions .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.life-stages-section .rightview-content .forex-solutions .content .desc {
  max-width: 690px;
  color: #fff;
  margin-right: 30px;
}

.life-stages-section .rightview-content .forex-solutions .content .desc h3 {
  font-weight: normal;
  font-size: 26px;
  line-height: 138%;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 10px;
}

.life-stages-section .rightview-content .forex-solutions .content .desc p {
  max-width: 500px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}

.life-stages-section .rightview-content .forex-solutions .content .desc .button-group .ic-btn:not(:last-child) {
  margin-right: 10px;
}

.life-stages-section .rightview-content .forex-solutions .content .media {
  padding-top: 20px;
}

@media screen and (max-width: 1199px) {
  .life-stages-section .rightview-content .forex-solutions {
    padding: 40px 0;
  }
  .life-stages-section .rightview-content .forex-solutions .content .desc {
    margin-right: 0;
  }
  .life-stages-section .rightview-content .forex-solutions .content .media {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .forex-solutions {
    margin: 0 -20px;
    width: calc(100% + 40px);
    padding: 45px 20px 50px;
  }
  .life-stages-section .rightview-content .forex-solutions .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    text-align: center;
  }
  .life-stages-section .rightview-content .forex-solutions .content .desc h3 {
    max-width: 220px;
    margin: 0 auto 10px;
  }
  .life-stages-section .rightview-content .forex-solutions .content .button-group .ic-btn {
    width: 100%;
    padding: 10px;
  }
  .life-stages-section .rightview-content .forex-solutions .content .button-group .ic-btn:not(:last-child) {
    margin-bottom: 10px;
  }
}

.life-stages-section .rightview-content .ls-blog-section {
  position: relative;
  background: #fff7eb;
  padding: 40px 0 0;
}

.life-stages-section .rightview-content .ls-blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #fff7eb;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.life-stages-section .rightview-content .ls-blog-section .top-content {
  max-width: 490px;
}

.life-stages-section .rightview-content .ls-blog-section .top-content h2 {
  margin-bottom: 25px;
}

.life-stages-section .rightview-content .ls-blog-section .top-content p:not(:last-child) {
  font-size: 15px;
  line-height: 138%;
  color: #646464;
  margin-bottom: 15px;
}

.life-stages-section .rightview-content .ls-blog-section .middle-content {
  margin: 20px 0 50px 0;
  /* ls-blog-card */
}

.life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider {
  max-width: 1000px;
}

.life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider .blog-card {
  margin: 0 20px 0 0;
}

.life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider .blog-card .card-inner .content .card-title {
  font-weight: normal;
  font-size: 20px;
}

.life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider .blog-card .card-inner .content .card-title h3 {
  font-weight: normal;
  font-size: 20px;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content {
  /* insurance-slider */
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content {
  position: absolute;
  max-width: 540px;
  width: 100%;
  height: 100%;
  top: 0;
  padding-left: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content h3 {
  font-size: 26px;
  line-height: 130%;
  color: #074a86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content p {
  font-size: 20px;
  line-height: 138%;
  color: #3d3d3d;
  margin-bottom: 30px;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content .button-group .ic-more {
  margin-left: 20px;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  z-index: 9;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .slick-dots li {
  width: 7px;
  height: 7px;
  background: #fff;
}

.life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .slick-dots li.slick-active {
  background: #f37e20;
  width: 10px;
  height: 10px;
}

@media only screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content {
    position: relative;
    padding: 20px;
  }
  .life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content h3 {
    font-size: 23px;
  }
  .life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .insurance-list .content h3 span {
    max-width: 270px;
  }
  .life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin: 10px 0 30px 15px;
  }
}

.life-stages-section .rightview-content .ls-blog-section .slick-arrow {
  top: -80px;
  border-color: #f37e20;
  background-size: 7px;
  background-position: center center;
}

.life-stages-section .rightview-content .ls-blog-section .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.life-stages-section .rightview-content .ls-blog-section .slick-arrow.slick-prev {
  left: auto;
  right: 80px;
}

.life-stages-section .rightview-content .ls-blog-section .slick-arrow.slick-next {
  right: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .life-stages-section .rightview-content .ls-blog-section .ls-blog-slider .slick-arrow {
    top: -60px;
  }
  .life-stages-section .rightview-content .ls-blog-section .ls-blog-slider .slick-arrow.slick-prev {
    right: 80px;
  }
  .life-stages-section .rightview-content .ls-blog-section .ls-blog-slider .slick-arrow.slick-next {
    right: 20px;
  }
}

@media screen and (max-width: 991px) {
  .life-stages-section .rightview-content .ls-blog-section {
    background: #f6f6f6;
    padding: 45px 0 0 20px;
    margin: 0 -20px;
  }
  .life-stages-section .rightview-content .ls-blog-section .top-content {
    padding-right: 20px;
    text-align: center;
    max-width: 100%;
  }
  .life-stages-section .rightview-content .ls-blog-section .middle-content {
    margin: 30px 0 50px 0;
  }
  .life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider .slick-list {
    padding-left: 0 !important;
  }
  .life-stages-section .rightview-content .ls-blog-section .middle-content .ls-blog-slider .slick-dots {
    position: relative;
    text-align: center;
    margin-top: 20px;
  }
  .life-stages-section .rightview-content .ls-blog-section .bottom-content {
    width: calc(100% + 20px);
    margin: 0 0 0 -20px;
    overflow: hidden;
  }
  .life-stages-section .rightview-content .ls-blog-section .bottom-content .insurance-slider .slick-dots li {
    background: #d1cfbb;
  }
}

/* feature-video-section */
.feature-video-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.feature-video-section h5 {
  text-transform: uppercase;
  font-size: 14px;
  color: #f37e20;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-video-section .left-content {
  max-width: 500px;
  width: 100%;
  margin-right: 90px;
}

.feature-video-section .right-content {
  max-width: 610px;
  width: 100%;
}

.feature-video-section .right-content .video-card {
  background: transparent;
}

.feature-video-section .right-content .video-card:not(:last-child) {
  margin: 0 0 40px;
}

.feature-video-section .right-content .video-card .card-inner .content {
  max-width: 260px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-video-section .left-content {
    max-width: 470px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: tablet) {
  .feature-video-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 0;
  }
  .feature-video-section .left-content,
  .feature-video-section .right-content {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .feature-video-section .left-content .video-card,
  .feature-video-section .right-content .video-card {
    background: #fff;
  }
  .feature-video-section .left-content .video-card {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .feature-video-section .right-content h5 {
    width: 100%;
  }
  .feature-video-section .right-content .video-card-m-slider {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .feature-video-section .right-content .video-card {
    width: calc(50% - 20px);
  }
  .feature-video-section .right-content .video-card:not(:last-child) {
    margin: 0 30px 0 0;
  }
  .feature-video-section .right-content .video-card .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-video-section .right-content .video-card .card-inner .media {
    width: 100%;
  }
  .feature-video-section .right-content .video-card .card-inner .content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin-left: 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 990px) {
  .feature-video-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 0;
  }
  .feature-video-section .left-content,
  .feature-video-section .right-content {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .feature-video-section .left-content .video-card,
  .feature-video-section .right-content .video-card {
    background: #fff;
  }
  .feature-video-section .left-content .video-card {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .feature-video-section .right-content h5 {
    width: 100%;
  }
  .feature-video-section .right-content .video-card-m-slider {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .feature-video-section .right-content .video-card {
    width: calc(50% - 20px);
  }
  .feature-video-section .right-content .video-card:not(:last-child) {
    margin: 0 30px 0 0;
  }
  .feature-video-section .right-content .video-card .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-video-section .right-content .video-card .card-inner .media {
    width: 100%;
  }
  .feature-video-section .right-content .video-card .card-inner .content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin-left: 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: phablet) {
  .feature-video-section .right-content .video-card-m-slider {
    margin: 0 -20px;
  }
  .feature-video-section .right-content .video-card {
    width: 100%;
  }
  .feature-video-section .right-content .video-card:not(:last-child) {
    margin: 0 15px 0 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content {
    padding: 20px 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-title {
    height: auto;
    padding: 0 20px;
    max-width: 270px;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-bottom {
    padding: 15px 20px 0 20px;
  }
  .feature-video-section .right-content .slick-dots {
    position: relative;
    text-align: center;
  }
}

@media only screen and (max-width: 559px) {
  .feature-video-section .right-content .video-card-m-slider {
    margin: 0 -20px;
  }
  .feature-video-section .right-content .video-card {
    width: 100%;
  }
  .feature-video-section .right-content .video-card:not(:last-child) {
    margin: 0 15px 0 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content {
    padding: 20px 0;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-title {
    height: auto;
    padding: 0 20px;
    max-width: 270px;
  }
  .feature-video-section .right-content .video-card .card-inner .content .card-bottom {
    padding: 15px 20px 0 20px;
  }
  .feature-video-section .right-content .slick-dots {
    position: relative;
    text-align: center;
  }
}

/* filter-video-section */
.filter-video-section .sidebar-content .dropdown-list {
  max-height: 300px;
  overflow: hidden;
}

.filter-video-section .video-lists .video-list {
  margin: 0 -15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  height: 0;
}

.filter-video-section .video-lists .video-list:first-child {
  height: auto;
}

.filter-video-section .video-lists .video-list.card-loading {
  height: 0;
}

.filter-video-section .video-lists .video-list.card-loading .video-card {
  opacity: 0;
}

.filter-video-section .video-lists .video-list.hidden-card {
  height: 0;
}

.filter-video-section .video-lists .video-list.hidden-card .video-card {
  opacity: 0;
}

.filter-video-section .video-lists .video-list.auto-height {
  height: auto;
}

.filter-video-section .video-lists .video-list.auto-height .video-card {
  opacity: 1;
}

.filter-video-section .video-card {
  margin: 0 15px 30px;
  width: calc(33% - 30px);
}

@media only screen and (max-width: 1199px) {
  .filter-video-section .video-list {
    margin: 0 -15px;
  }
  .filter-video-section .video-card {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media only screen and (max-width: tablet) {
  .filter-video-section .video-lists {
    width: 100%;
    max-width: 100%;
  }
  .filter-video-section .video-lists .no-result {
    text-align: center;
    margin: 20px 0 50px;
  }
  .filter-video-section .video-lists .video-list {
    margin: 0;
  }
  .filter-video-section .filter-top.filter-sticky {
    top: 110px;
  }
}

@media only screen and (max-width: 990px) {
  .filter-video-section .video-lists {
    width: 100%;
    max-width: 100%;
  }
  .filter-video-section .video-lists .no-result {
    text-align: center;
    margin: 20px 0 50px;
  }
  .filter-video-section .video-lists .video-list {
    margin: 0;
  }
  .filter-video-section .filter-top.filter-sticky {
    top: 110px;
  }
}

@media only screen and (max-width: phablet) {
  .filter-video-section .video-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .filter-video-section .video-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 559px) {
  .filter-video-section .video-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .filter-video-section .video-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

/* looking-for-section */
.looking-for-section {
  position: relative;
  background: #fff;
  z-index: 1;
}

.looking-for-section .section-inner {
  padding: 40px 20px;
}

.looking-for-section .section-title {
  margin-bottom: 30px;
  text-align: left;
}

.looking-for-section .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -40px;
}

.looking-for-section .content .list {
  position: relative;
  padding: 0 40px;
}

.looking-for-section .content .list a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.looking-for-section .content .list .icon {
  margin-right: 15px;
}

.looking-for-section .content .list .link {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f37e20;
  padding-right: 20px;
  text-decoration: none;
}

.looking-for-section .content .list .link::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  background: url("../images/icons/more.png") no-repeat;
  width: 10px;
  height: 10px;
}

.looking-for-section .content .list::before {
  content: "";
  border-right: 1px solid #dedede;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}

.looking-for-section .content .list:first-child::before {
  display: none;
}

.looking-for-section .content.looking-for-slider {
  margin: 0;
  padding: 10px 40px 0;
}

.looking-for-section .content.looking-for-slider .list span img {
  height: 25px;
}

.looking-for-section .content.looking-for-slider .slick-arrow {
  width: 25px;
  height: 48px;
  background-color: #f37e20 !important;
  top: -3px;
}

.looking-for-section .content.looking-for-slider .slick-arrow.slick-prev {
  background: url("../images/icons/left-arrow-w.png") no-repeat 5px center;
  border-radius: 0 50px 50px 0;
  left: 0;
}

.looking-for-section .content.looking-for-slider .slick-arrow.slick-next {
  background: url("../images/icons/left-arrow-w.png") no-repeat 10px center;
  border-radius: 50px 0px 0px 50px;
  right: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.looking-for-section .content.looking-for-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
}

.looking-for-section .ic-btn {
  border-color: #fff;
}

.looking-for-section.looking-for-section-with-icon .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.looking-for-section.looking-for-section-with-icon .section-title {
  margin-bottom: 0;
}

.looking-for-section.looking-for-section-with-icon .content {
  margin: 0 -15px;
}

.looking-for-section.looking-for-section-with-icon .content .list {
  padding: 0 15px;
  width: 33%;
}

.looking-for-section.looking-for-section-with-share-icon .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.looking-for-section.looking-for-section-with-share-icon .content {
  margin: 0 -20px;
}

.looking-for-section.looking-for-section-with-share-icon .content .list {
  padding: 0 15px;
  margin: 10px 0;
}

@media only screen and (max-width: 1199px) {
  .looking-for-section.looking-for-list {
    overflow: hidden;
  }
  .looking-for-section.looking-for-list .content {
    margin: -15px 0 0 -40px;
  }
  .looking-for-section.looking-for-list .content .list {
    width: 50%;
    margin: 15px 0;
  }
}

@media only screen and (max-width: tablet) {
  .looking-for-section.looking-for-details {
    background: #fff7eb;
  }
  .looking-for-section.looking-for-details .section-inner {
    padding: 0 0 45px;
  }
}

@media only screen and (max-width: 990px) {
  .looking-for-section.looking-for-details {
    background: #fff7eb;
  }
  .looking-for-section.looking-for-details .section-inner {
    padding: 0 0 45px;
  }
}

@media only screen and (max-width: 767px) {
  .looking-for-section .section-title {
    text-align: center;
    max-width: 300px;
    font-size: 26px;
    margin: 0 auto 45px;
  }
  .looking-for-section .section-title br {
    display: none;
  }
  .looking-for-section .content .list {
    padding: 0 40px;
    margin: 10px 0;
  }
  .looking-for-section .content .list::before {
    display: none;
  }
  .looking-for-section.looking-for-list .section-inner {
    padding: 40px 20px 20px;
  }
  .looking-for-section.looking-for-list .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  .looking-for-section.looking-for-list .content .list {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #dedede;
    margin: 0;
  }
  .looking-for-section.looking-for-list .content .list::before {
    display: none;
  }
  .looking-for-section.looking-for-list .content .list:last-child {
    border-bottom: none;
  }
  .looking-for-section.looking-for-section-with-icon .section-title {
    margin-bottom: 20px;
  }
  .looking-for-section.looking-for-section-with-icon .content .list {
    padding: 0 10px;
    width: auto;
  }
  .looking-for-section.looking-for-section-with-icon .content .list br {
    display: none;
  }
}

/* forex-solutions */
.smart-way-section {
  position: relative;
  background: #ad1e23;
  z-index: 1;
}

.smart-way-section .section-inner {
  padding: 0 20px;
}

.smart-way-section .content {
  max-width: 770px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-right: 100px;
  margin-left: auto;
}

.smart-way-section .content .desc {
  max-width: 500px;
  color: #fff;
  margin-right: 30px;
}

.smart-way-section .content .desc h3 {
  font-weight: normal;
  font-size: 26px;
  line-height: 138%;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 10px;
}

.smart-way-section .content .desc p {
  max-width: 500px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}

.smart-way-section .content .desc .button-group .ic-btn:not(:last-child) {
  margin-right: 10px;
}

.smart-way-section .content .button-group .ic-btn {
  padding: 9.4px 34px;
  min-height: 40px;
}

@media screen and (max-width: 991px) {
  .smart-way-section .section-inner {
    padding: 40px 20px;
  }
  .smart-way-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    text-align: center;
    margin: 0 auto;
  }
  .smart-way-section .content .media {
    display: none;
  }
  .smart-way-section .content .desc {
    margin: 0 auto;
  }
  .smart-way-section .content .desc h3 {
    margin: 0 auto 10px;
  }
  .smart-way-section .content .desc p {
    max-width: 90%;
    margin: 0 auto 25px;
  }
  .smart-way-section .content .button-group .ic-btn {
    width: 100%;
    padding: 10px;
  }
  .smart-way-section .content .button-group .ic-btn:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* vd-section */
.vd-media {
  margin-top: 20px;
}

.vd-media iframe {
  height: 450px;
  vertical-align: middle;
}

@media only screen and (max-width: tablet) {
  .vd-media {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .vd-media {
    margin-top: 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .vd-media iframe {
    height: 210px;
  }
}

@media only screen and (max-width: 639px) {
  .vd-media iframe {
    height: 210px;
  }
}

/* vd-description */
.vd-description {
  background: #fff7eb;
  overflow: hidden;
}

.vd-description .section-inner {
  position: relative;
  padding: 40px 20px 50px;
}

.vd-description .section-inner::after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.vd-description .section-inner .top-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.vd-description .section-inner .bottom-content {
  max-width: 825px;
  width: 100%;
}

.vd-description .section-inner .top-content-left {
  max-width: 825px;
  width: 100%;
  margin-right: 60px;
}

.vd-description .section-inner .top-content-right {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  max-width: 325px;
  width: 100%;
}

.vd-description .section-inner .top-content-right .ic-btn {
  max-width: 200px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.vd-description .section-inner .top-content-right .bookmark-share .pdf,
.vd-description .section-inner .top-content-right .bookmark-share .bookmark,
.vd-description .section-inner .top-content-right .bookmark-share .share {
  width: 22px;
  height: 22px;
  background-size: 20px;
}

.vd-description .section-inner .tag-list {
  margin-bottom: 20px;
}

.vd-description .section-inner .tag-list span {
  background: #ffebdc;
  display: inline-block;
  min-width: 80px;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.38;
  color: #f37e20;
  margin-right: 10px;
  border-radius: 20px;
}

.vd-description .section-inner h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}

.vd-description .section-inner .desc {
  margin: 10px 0 35px;
}

.vd-description .section-inner .desc p {
  line-height: 25px;
  margin-bottom: 10px;
}

.vd-description .section-inner .desc .ic-more {
  display: inline-block;
}

.vd-description .section-inner .ic-btn {
  margin-right: 20px;
}

@media only screen and (max-width: tablet) {
  .vd-description .section-inner {
    padding: 20px 20px 25px;
  }
  .vd-description .section-inner .top-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vd-description .section-inner .top-content-left {
    max-width: 100%;
    margin-right: 0;
  }
  .vd-description .section-inner .top-content-right {
    max-width: 100%;
    margin-top: 15px;
    padding: 20px 0 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .vd-description .section-inner .desc {
    margin: 0 0 25px;
  }
}

@media only screen and (max-width: 990px) {
  .vd-description .section-inner {
    padding: 20px 20px 25px;
  }
  .vd-description .section-inner .top-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vd-description .section-inner .top-content-left {
    max-width: 100%;
    margin-right: 0;
  }
  .vd-description .section-inner .top-content-right {
    max-width: 100%;
    margin-top: 15px;
    padding: 20px 0 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .vd-description .section-inner .desc {
    margin: 0 0 25px;
  }
}

@media only screen and (max-width: tablet-small) {
  .vd-description .section-inner h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 639px) {
  .vd-description .section-inner h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: phone-wide) {
  .vd-description .section-inner .bottom-content .button-group {
    text-align: center;
  }
  .vd-description .section-inner .bottom-content .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 479px) {
  .vd-description .section-inner .bottom-content .button-group {
    text-align: center;
  }
  .vd-description .section-inner .bottom-content .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

/* related-video */
.related-video {
  background: #fff7eb;
}

.related-video .section-inner {
  padding: 50px 20px 70px;
}

.related-video .section-title {
  text-align: left;
}

.related-video .related-video-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.related-video .video-card {
  margin: 0 15px;
  width: calc(25% - 30px);
}

@media only screen and (max-width: tablet) {
  .related-video .section-title {
    text-align: center;
  }
  .related-video .section-inner {
    padding: 25px 20px 15px;
  }
  .related-video .video-card {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media only screen and (max-width: 990px) {
  .related-video .section-title {
    text-align: center;
  }
  .related-video .section-inner {
    padding: 25px 20px 15px;
  }
  .related-video .video-card {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media only screen and (max-width: tablet-small) {
  .related-video .related-video-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .related-video .video-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 639px) {
  .related-video .related-video-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .related-video .video-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

/* videolisting-page */
.videolisting-page {
  position: relative;
  overflow: hidden;
  /* search container */
}

.videolisting-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  max-height: 450px;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(180deg, #f8f8f8 0%, rgba(246, 246, 246, 0) 100%);
  z-index: -1;
}

@media only screen and (max-width: tablet) {
  .videolisting-page::before {
    max-height: 250px;
  }
}

@media only screen and (max-width: 990px) {
  .videolisting-page::before {
    max-height: 250px;
  }
}

.videolisting-page .search-container {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.videolisting-page .search-container .search-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
}

.videolisting-page .search-container .search-left h3 {
  color: #074a86;
  font-size: 26px;
  margin-bottom: 0;
  border-left: 1px solid #d1cfbb;
  padding-left: 25px;
}

.videolisting-page .search-container .search-left .iplay-img {
  padding-right: 20px;
  position: relative;
}

.videolisting-page .search-container .search-left .iplay-img::after {
  content: "";
  width: 1px;
  height: 48px;
  position: absolute;
  background-color: #ececec;
}

.videolisting-page .search-container .search-right {
  width: 60%;
  max-width: 624px;
}

.videolisting-page .search-container .search-listing.active {
  top: 7px;
  max-width: 624px;
  right: 0;
}

@media only screen and (max-width: 990px) {
  .videolisting-page .search-container.filter-sticky {
    padding-left: 20px;
    padding-right: 20px;
    top: 120px;
    left: 0;
    width: calc(100% - 110px);
  }
  .videolisting-page .search-container.filter-sticky .search-left {
    display: none;
  }
  .videolisting-page .search-container.filter-sticky .active {
    max-width: 100%;
  }
  .videolisting-page .search-container .search-listing {
    position: relative;
  }
  .videolisting-page .search-container .search-listing.active {
    top: -40px;
    max-width: 624px;
    right: inherit;
    left: 0;
  }
}

@media only screen and (max-width: tablet) {
  .videolisting-page .search-container {
    display: block;
  }
  .videolisting-page .search-container .search-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .videolisting-page .search-container .search-right {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .videolisting-page .search-container {
    display: block;
  }
  .videolisting-page .search-container .search-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .videolisting-page .search-container .search-right {
    width: 100%;
    max-width: 100%;
  }
}

/* 17/02/21 - Ends*/
/* videodetail-page */
.videodetail-page {
  background: #f8f8f8;
}

@media only screen and (max-width: tablet) {
  .videodetail-page .page-topbar .search-container {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .videodetail-page .page-topbar .search-container {
    margin-top: 20px;
  }
}

/* feature-offer-section */
.feature-offer-section {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1.48%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #f6f6f6 1.48%, rgba(246, 246, 246, 0) 100%);
  overflow: hidden;
}

.feature-offer-section .section-inner {
  padding: 0 20px 20px;
}

.feature-offer-section .offer-nav-tabs {
  margin-bottom: 25px;
  margin-left: 30px;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.feature-offer-section .offer-nav-tabs li a {
  padding-right: 50px;
}

.feature-offer-section .offer-nav-tabs li .num {
  position: absolute;
  right: 10px;
  background: #f37e20;
  width: 20px;
  line-height: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.feature-offer-section .offer-nav-tabs li.shop-link a {
  padding-right: 20px;
}

.feature-offer-section .offer-nav-tabs li.active .num {
  background: #fff;
  color: #f37e20;
}

@media only screen and (max-width: 1199px) {
  .feature-offer-section .section-inner {
    padding: 0 20px 15px;
  }
}

@media only screen and (max-width: tablet) {
  .feature-offer-section .offer-nav-tabs {
    margin-left: 0;
  }
}

@media only screen and (max-width: 990px) {
  .feature-offer-section .offer-nav-tabs {
    margin-left: 0;
  }
}

.feature-offer-top .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 auto 10px;
}

@media only screen and (max-width: 1199px) {
  .feature-offer-top .section-inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}

@media only screen and (max-width: tablet-small) {
  .feature-offer-top .section-inner {
    margin: 0;
  }
}

@media only screen and (max-width: 639px) {
  .feature-offer-top .section-inner {
    margin: 0;
  }
}

.feature-offer-bottom {
  background: #f6f6f6;
  margin-top: 10px;
  padding: 0 30px;
}

.feature-offer-bottom h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-offer-bottom .offer-slider {
  margin: 0 -15px;
}

.feature-offer-bottom .offer-slider .slick-list {
  margin-bottom: -50px;
  padding-bottom: 60px !important;
  position: relative;
  z-index: 9;
}

.feature-offer-bottom .offer-slider .slick-arrow {
  top: calc(50% - 45px);
  border: none !important;
  width: 35px;
}

.feature-offer-bottom .offer-slider .slick-dots {
  position: static;
  text-align: center;
  margin-top: 10px;
}

.feature-offer-bottom .offer-slider .slick-dots li {
  width: 7px;
  height: 7px;
  background: #fff;
}

.feature-offer-bottom .offer-slider .slick-dots li.slick-active {
  width: 10px;
  height: 10px;
  background: #f37e20;
}

.feature-offer-bottom .offer-slider.slick-initialized .slick-list .offer-card {
  display: block;
}

.feature-offer-bottom .offer-slider.slick-initialized .slick-list .offer-card:first-child {
  display: block;
}

.feature-offer-bottom .offer-card {
  margin: 0 15px;
  padding: 20px 30px;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border: none;
  display: none;
}

.feature-offer-bottom .offer-card .card-inner {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.feature-offer-bottom .offer-card .card-inner .media {
  max-width: 75px;
  height: auto;
  margin-right: 25px;
  border-radius: 0;
  margin-bottom: 0;
}

.feature-offer-bottom .offer-card .card-inner .media img {
  -webkit-transition: none;
  transition: none;
  max-height: none;
}

.feature-offer-bottom .offer-card .card-inner .content {
  padding: 0;
  width: calc(100% - 75px);
}

.feature-offer-bottom .offer-card .card-inner .content .card-title {
  display: block;
  margin-bottom: 15px;
  max-width: 200px;
  color: #3d3d3d;
}

.feature-offer-bottom .offer-card .card-inner .content .card-bottom {
  padding-top: 0;
  border-top: none;
}

.feature-offer-bottom .offer-card .card-inner:hover .media img {
  -webkit-transform: none;
          transform: none;
}

.feature-offer-bottom .offer-card.shop-card .card-inner {
  min-height: 100px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.feature-offer-bottom .offer-card.shop-card a {
  color: #4b4b4b;
}

@media only screen and (max-width: 1199px) {
  .feature-offer-bottom {
    margin-top: 15px;
    padding: 0;
  }
  .feature-offer-bottom .offer-card {
    padding: 20px;
  }
  .feature-offer-bottom .offer-card .card-inner .media {
    max-width: none;
    margin-right: 20px;
  }
  .feature-offer-bottom .offer-card .card-inner .media img {
    max-height: 64px;
  }
  .feature-offer-bottom .offer-card .offer-slider .slick-dots {
    margin-top: 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .feature-offer-bottom .tabs-section {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .feature-offer-bottom .offer-slider {
    margin: 0 -25px;
  }
  .feature-offer-bottom .offer-slider .slick-list {
    margin-left: -25px;
  }
  .feature-offer-bottom .offer-card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 639px) {
  .feature-offer-bottom .tabs-section {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .feature-offer-bottom .offer-slider {
    margin: 0 -25px;
  }
  .feature-offer-bottom .offer-slider .slick-list {
    margin-left: -25px;
  }
  .feature-offer-bottom .offer-card {
    margin: 0 15px 0 0;
  }
}

.card-item .card-inner {
  -webkit-box-align: start !important;
  align-items: flex-start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
}

.card-item .card-inner:hover .media img {
  -webkit-transform: unset !important;
          transform: unset !important;
}

.card-item .media {
  max-width: 75px;
  height: auto !important;
  margin-right: 15px;
}

.card-item .media img {
  max-height: 100% !important;
  width: 100%;
}

.card-item .content {
  padding: 0;
  width: calc(100% - 75px);
}

.card-item .content .card-title {
  display: block;
  margin-bottom: 15px;
  max-width: 90%;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 19px;
  height: auto !important;
}

.card-item .content .card-bottom {
  border-top: 0 !important;
  padding-top: 0 !important;
  border-top: none;
}

.feature-offer-card {
  width: 25%;
  margin-left: 15px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  border-radius: 10px;
  padding: 15px;
}

.feature-offer-card.offer-card {
  background: transparent;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.feature-offer-card .heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin-bottom: 30px;
}

.feature-offer-card .heading h5 {
  font-size: 14px;
  color: #4b4b4b;
}

.feature-offer-card .heading .ic-more {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.feature-offer-card .content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.feature-offer-card .content ul a {
  display: block;
  width: 100%;
}

.feature-offer-card .content .button-group .ic-btn {
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  text-align: center;
}

.feature-offer-card .content .button-group .ic-btn.border-btn-white {
  margin-left: 10px;
}

@media only screen and (max-width: 1199px) {
  .feature-offer-card {
    width: calc(50% - 30px);
  }
  .feature-offer-card .slick-slide {
    height: auto;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .feature-offer-card .slick-slide a {
    color: #4b4b4b;
  }
  .feature-offer-card .slick-slide img {
    margin: 0 auto;
  }
  .feature-offer-card .slick-dots {
    display: block !important;
    position: static;
    text-align: center;
    margin-top: 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .feature-offer-card {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .feature-offer-card:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 639px) {
  .feature-offer-card {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .feature-offer-card:not(:last-child) {
    margin-bottom: 20px;
  }
}

.feature-offer-card.offer-card {
  width: 54%;
  border: none;
  padding: 0;
  margin-left: 0;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: desktop) {
  .feature-offer-card.offer-card {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
  .feature-offer-card.offer-card .offer-media-card img {
    width: 100%;
  }
}

@media only screen and (max-width: 1279px) {
  .feature-offer-card.offer-card {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
  .feature-offer-card.offer-card .offer-media-card img {
    width: 100%;
  }
}

.f-offer-card {
  width: 50%;
  border: none;
  background: url("../images/offers/offer-bg-sm.jpg") no-repeat;
  background-size: cover;
  padding: 35px 25px;
}

.f-offer-card .feature-offer-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.f-offer-card .media {
  max-width: 175px;
}

.f-offer-card .content {
  width: calc(100% - 175px);
  color: #fff;
  padding-left: 20px;
}

.f-offer-card .content h4 {
  color: #fff;
  font-size: 26px;
  text-transform: capitalize;
  margin-bottom: 25px;
  font-weight: 600;
}

.f-offer-card .content p {
  color: #fff;
  margin-bottom: 25px;
}

.f-offer-card .content .ic-btn {
  background: #fff;
  color: #f37e20;
}

@media only screen and (max-width: 1200px) {
  .f-offer-card {
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .f-offer-card {
    position: relative;
    background: linear-gradient(110deg, #f3a126 22.22%, #ad1e23 77.71%);
    padding: 20px 20px 40px;
  }
  .f-offer-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/offers/offer-mob-bg.png") no-repeat;
  }
  .f-offer-card .feature-offer-inner {
    position: relative;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .f-offer-card .feature-offer-inner .media,
  .f-offer-card .feature-offer-inner .content {
    width: 100%;
    max-width: 100%;
  }
  .f-offer-card .feature-offer-inner .content {
    margin-top: 25px;
    padding: 0;
  }
  .f-offer-card .feature-offer-inner .content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 138%;
    margin-bottom: 10px;
  }
  .f-offer-card .feature-offer-inner .content p {
    line-height: 24px;
  }
  .f-offer-card .feature-offer-inner .content .button-group a {
    width: 100%;
    text-align: center;
  }
  .f-offer-card .feature-offer-inner .content .button-group a.border-btn-white {
    margin: 10px 0 0;
  }
}

@media only screen and (max-width: 639px) {
  .f-offer-card {
    position: relative;
    background: linear-gradient(110deg, #f3a126 22.22%, #ad1e23 77.71%);
    padding: 20px 20px 40px;
  }
  .f-offer-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/offers/offer-mob-bg.png") no-repeat;
  }
  .f-offer-card .feature-offer-inner {
    position: relative;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .f-offer-card .feature-offer-inner .media,
  .f-offer-card .feature-offer-inner .content {
    width: 100%;
    max-width: 100%;
  }
  .f-offer-card .feature-offer-inner .content {
    margin-top: 25px;
    padding: 0;
  }
  .f-offer-card .feature-offer-inner .content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 138%;
    margin-bottom: 10px;
  }
  .f-offer-card .feature-offer-inner .content p {
    line-height: 24px;
  }
  .f-offer-card .feature-offer-inner .content .button-group a {
    width: 100%;
    text-align: center;
  }
  .f-offer-card .feature-offer-inner .content .button-group a.border-btn-white {
    margin: 10px 0 0;
  }
}

.offer-card-slider .f-offer-card {
  width: 100%;
  margin: 0;
}

.offer-card-slider .d-view img,
.offer-card-slider .m-view img {
  width: 100%;
}

.offer-card-slider .slick-dots {
  bottom: 5px;
}

.f-brands-card .content .brand-list > li {
  display: inherit;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 50%;
  text-align: center;
  margin-bottom: 25px;
}

.f-brands-card .content .brand-list > li:nth-child(5), .f-brands-card .content .brand-list > li:nth-child(6) {
  margin-bottom: 0;
}

.f-categories-card .content .categories-list {
  margin: 0 -10px;
}

.f-categories-card .content .categories-list > li {
  padding: 10px 0;
  width: calc(50% - 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

.f-categories-card .content .categories-list > li:last-child, .f-categories-card .content .categories-list > li:nth-last-child(2) {
  border-bottom: none;
}

.f-categories-card .content .categories-list > li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  text-decoration: none;
  color: #4b4b4b;
}

.f-categories-card .content .categories-list > li .icon {
  width: 25px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.f-categories-card .content .categories-list > li .title {
  font-size: 13px;
  color: #3d3d3d;
  text-transform: capitalize;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.f-categories-card .content .categories-list > li:hover .title {
  color: #f37e20;
}

@media only screen and (max-width: 1199px) {
  .f-categories-card .slick-slide img {
    height: 20px;
    margin-bottom: 5px;
  }
}

.latest-offer-section {
  background: url("../images/offers/offer-bg.jpg") no-repeat center;
  background-size: cover;
}

.latest-offer-section .section-inner {
  padding: 20px;
}

.latest-offer-section .feature-offer-top {
  margin: 0;
}

.latest-offer-section .feature-offer-bottom {
  background: transparent;
}

.latest-offer-section .latest-offer-banner {
  width: 100%;
}

.latest-offer-section .latest-offer-banner .offer-inner {
  padding: 0 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.latest-offer-section .latest-offer-banner .media {
  max-width: 360px;
  margin-right: 40px;
}

.latest-offer-section .latest-offer-banner .content {
  max-width: 520px;
  color: #fff;
}

.latest-offer-section .latest-offer-banner .content h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.38;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.latest-offer-section .latest-offer-banner .content p {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.latest-offer-section .feature-offer-bottom h5 {
  color: #fff;
}

.latest-offer-section .slick-arrow.slick-prev {
  background: url("../images//left_arrow_white.png") no-repeat 9px 7px;
}

.latest-offer-section .slick-arrow.slick-next {
  background: url("../images//left_arrow_white.png") no-repeat 14px 7px;
}

.latest-offer-section .slick-dots li {
  opacity: 0.4;
}

.latest-offer-section .slick-dots li.slick-active {
  opacity: 1;
  border-color: #fff;
  background: #fff !important;
}

@media only screen and (max-width: tablet) {
  .latest-offer-section .latest-offer-banner .content h2 {
    font-size: 28px;
  }
  .latest-offer-section .feature-offer-bottom .slick-dots {
    margin: 25px 0 10px;
  }
}

@media only screen and (max-width: 990px) {
  .latest-offer-section .latest-offer-banner .content h2 {
    font-size: 28px;
  }
  .latest-offer-section .feature-offer-bottom .slick-dots {
    margin: 25px 0 10px;
  }
}

@media only screen and (max-width: tablet-small) {
  .latest-offer-section {
    position: relative;
    background: #f38816 url("../images/offers/bg-1.png") no-repeat top right;
    background-size: 100%;
  }
  .latest-offer-section .latest-offer-banner .offer-inner {
    padding: 0;
    display: block;
  }
  .latest-offer-section .latest-offer-banner .media {
    margin: 0 auto 20px;
  }
  .latest-offer-section .latest-offer-banner .content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .latest-offer-section .latest-offer-banner .content p {
    font-size: 14px;
    max-width: 275px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 639px) {
  .latest-offer-section {
    position: relative;
    background: #f38816 url("../images/offers/bg-1.png") no-repeat top right;
    background-size: 100%;
  }
  .latest-offer-section .latest-offer-banner .offer-inner {
    padding: 0;
    display: block;
  }
  .latest-offer-section .latest-offer-banner .media {
    margin: 0 auto 20px;
  }
  .latest-offer-section .latest-offer-banner .content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .latest-offer-section .latest-offer-banner .content p {
    font-size: 14px;
    max-width: 275px;
    line-height: 24px;
  }
}

.nearbylocation-card {
  width: 50%;
  background: #fff7eb;
  border: 1px solid #f37e20;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 15px 25px;
}

@media only screen and (max-width: 1200px) {
  .nearbylocation-card {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.nearbylocation-card h4 {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.nearbylocation-card form {
  border-bottom: 0.5px solid #999999;
  padding-bottom: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 100%;
  margin-bottom: 25px;
}

.nearbylocation-card form input[type="text"] {
  background: transparent;
  width: calc(100% - 50px);
}

.nearbylocation-card form input[type="text"]:focus {
  background: transparent !important;
}

.nearbylocation-card form .search-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/search-b.svg") no-repeat;
  margin-right: 10px;
}

.nearbylocation-card form .location-pick {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("../images/location-pick-o.svg") no-repeat;
  margin-left: auto;
  cursor: pointer;
}

.nearbylocation-list {
  max-width: 430px;
}

.nearbylocation-list h5 {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #4b4b4b;
  margin-bottom: 10px;
}

.location-tags {
  margin: 0 -7.5px;
}

.location-tags div {
  display: inline-block;
  width: calc(33% - 17px);
  height: 33px;
  text-align: left;
  background: #fff url("../images/icons/map-icon-o.svg") no-repeat 10px 5px;
  color: #f37e20;
  padding: 5px 15px 5px 30px;
  margin: 0 7.5px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
}

@media only screen and (max-width: 576px) {
  .location-tags div {
    width: 100%;
    margin: 0 0 10px;
  }
}

.nearby-sidebar-content .sb-categories ul li.dropdown .dropdown-list li {
  padding: 10px;
}

.nearby-sidebar-content.active .sidebar-body {
  height: calc(100vh - 80px) !important;
}

.nearby-offer-card .content {
  text-align: left;
}

.nearby-offer-card .slick-dots {
  display: inline-block !important;
  width: auto;
  bottom: -25px;
  margin-left: 200px;
}

@media screen and (max-width: 639px) {
  .nearby-offer-card .slick-dots {
    margin-left: 0;
    display: block;
  }
}

/* pac-container */
.pac-container {
  margin-top: 16px;
  margin-left: -23px;
  max-width: 543px;
  width: 100% !important;
  padding: 0 30px;
  max-height: 150px;
  overflow-y: auto !important;
  border-radius: 0 0 10px 10px !important;
}

.pac-container .pac-item {
  border-top: none !important;
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  padding: 10px 0;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #3d3d3d;
}

.pac-container .pac-item .pac-icon {
  display: none;
}

.pac-container .pac-item .pac-item-query {
  font-size: 16px;
}

.pac-container .pac-item:last-child {
  border-bottom: none;
}

/* filter-offer-section */
.filter-offer-section {
  overflow: hidden;
}

.filter-offer-section .section-inner {
  padding: 40px 20px;
}

.filter-offer-section .filter-content {
  min-height: 1220px;
}

.filter-offer-section .filter-inner-container.active {
  margin-top: 230px;
}

.filter-offer-section .latest-offer-card {
  max-width: 905px;
  border: none;
  background: url("../images/offers/offer-bg-1.jpg") no-repeat;
  padding: 30px 45px;
  margin-bottom: 30px;
  background-size: cover;
  border-radius: 10px;
}

.filter-offer-section .latest-offer-card .offer-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.filter-offer-section .latest-offer-card .media {
  max-width: 250px;
  margin-right: 50px;
}

.filter-offer-section .latest-offer-card .content {
  max-width: 470px;
  color: #fff;
  padding-left: 20px;
}

.filter-offer-section .latest-offer-card .content h4 {
  color: #fff;
  font-size: 26px;
  line-height: 1.38;
  margin-bottom: 20px;
  font-weight: normal;
}

.filter-offer-section .latest-offer-card .content p {
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.filter-offer-section .latest-offer-card .content .button-group .ic-btn {
  padding: 0 34px;
  min-height: 40px;
  line-height: 40px;
  min-width: 170px;
  text-align: center;
}

.filter-offer-section .latest-offer-card .content .button-group .ic-btn.border-btn {
  border-color: #fff;
  color: #fff;
}

.filter-offer-section .latest-offer-card .content .button-group .ic-btn:not(:last-child) {
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .filter-offer-section .latest-offer-card .media {
    margin-right: 10px;
  }
  .filter-offer-section .latest-offer-card .content h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: tablet-small) {
  .filter-offer-section .latest-offer-card {
    position: relative;
    background: linear-gradient(-260.28deg, #2b7ec8 22.22%, #074a86 77.71%);
    padding: 20px 20px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/offers/bg-2.png") no-repeat bottom left;
    background-size: 100%;
  }
  .filter-offer-section .latest-offer-card .offer-inner {
    position: relative;
    z-index: 1;
    display: block;
  }
  .filter-offer-section .latest-offer-card .offer-inner .media {
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content {
    padding: 0;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content h4 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group {
    text-align: center;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn {
    width: 280px;
    margin: 0 auto;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn.border-btn-white {
    position: relative;
    display: inline-block;
    width: auto;
    border: none;
    padding: 0 20px 0 0;
    min-width: auto;
    min-height: auto;
    margin-top: 20px;
    line-height: 1.4;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn.border-btn-white::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    background: url("../images/icons/more-w.png") no-repeat;
    width: 10px;
    height: 11px;
  }
}

@media only screen and (max-width: 639px) {
  .filter-offer-section .latest-offer-card {
    position: relative;
    background: linear-gradient(-260.28deg, #2b7ec8 22.22%, #074a86 77.71%);
    padding: 20px 20px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/offers/bg-2.png") no-repeat bottom left;
    background-size: 100%;
  }
  .filter-offer-section .latest-offer-card .offer-inner {
    position: relative;
    z-index: 1;
    display: block;
  }
  .filter-offer-section .latest-offer-card .offer-inner .media {
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content {
    padding: 0;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content h4 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group {
    text-align: center;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn {
    width: 280px;
    margin: 0 auto;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn.border-btn-white {
    position: relative;
    display: inline-block;
    width: auto;
    border: none;
    padding: 0 20px 0 0;
    min-width: auto;
    min-height: auto;
    margin-top: 20px;
    line-height: 1.4;
  }
  .filter-offer-section .latest-offer-card .offer-inner .content .button-group .ic-btn.border-btn-white::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    background: url("../images/icons/more-w.png") no-repeat;
    width: 10px;
    height: 11px;
  }
}

@media only screen and (min-width: tablet) {
  .filter-offer-section .filter-top .filter-cat {
    margin-top: 20px;
    padding: 0;
    border: none;
  }
}

@media only screen and (min-width: 991px) {
  .filter-offer-section .filter-top .filter-cat {
    margin-top: 20px;
    padding: 0;
    border: none;
  }
}

.filter-offer-section .filter-top .filter-inner {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-offer-section .search-container {
  margin-left: 0;
  max-width: calc(100% - 400px);
}

.filter-offer-section .offer-lists {
  max-width: 780px;
}

.filter-offer-section .offer-lists .offer-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
  height: 0;
}

.filter-offer-section .offer-lists .offer-list:first-child {
  height: auto;
}

.filter-offer-section .offer-lists .offer-list.card-loading {
  min-height: 50px;
  background: #fff7eb url("../images/icons/loader.svg") no-repeat center;
  margin-bottom: 40px;
}

.filter-offer-section .offer-lists .offer-list.card-loading .offer-card {
  opacity: 0;
}

.filter-offer-section .offer-lists .offer-list.hidden-card {
  height: 0;
}

.filter-offer-section .offer-lists .offer-list.hidden-card .offer-card {
  opacity: 0;
}

.filter-offer-section .offer-lists .offer-list.auto-height {
  height: auto;
}

.filter-offer-section .offer-lists .offer-list.auto-height .offer-card {
  opacity: 1;
}

.filter-offer-section .offer-card {
  margin: 0 15px 30px;
  width: calc(50% - 30px);
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .title a {
  color: #131317;
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .description {
  margin-bottom: 20px;
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .address {
  margin-bottom: 20px;
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .address h6 {
  font-weight: 600;
  font-size: 13px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 5px;
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .address p {
  font-weight: 600;
  font-size: 14px;
  line-height: 23px;
  color: #8b8b8b;
  margin-bottom: 10px;
}

.filter-offer-section .nearby-offer-lists .offer-card .card-inner .content .button-group a.ic-btn {
  width: auto;
  min-width: 140px;
}

.filter-offer-section .nearby-offer-lists .no-result {
  background: transparent;
  margin-top: 60px;
}

.filter-offer-section .nearby-offer-lists .no-result .no-result-content h4 {
  font-size: 26px;
  color: rgba(61, 61, 61, 0.9);
  margin-bottom: 20px;
}

.filter-offer-section .nearby-offer-lists .no-result .no-result-content .text-large {
  font-size: 18px;
  font-weight: 600;
  color: rgba(61, 61, 61, 0.9);
  margin-bottom: 30px;
}

.filter-offer-section .nearby-offer-lists .no-result .no-result-content .text-small {
  font-size: 15px;
  font-weight: 600;
  color: rgba(61, 61, 61, 0.9);
  margin: 35px 0 20px;
}

.filter-offer-section .nearby-offer-lists .no-result img {
  margin-bottom: 0px;
}

.filter-offer-section .nearby-offer-lists .no-result .location-tags {
  max-width: 680px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .filter-offer-section .search-container {
    margin: 0 15px 0 0;
  }
  .filter-offer-section .offer-list {
    margin: 0 -15px;
  }
  .filter-offer-section .offer-card {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media only screen and (max-width: tablet) {
  .filter-offer-section .section-inner {
    padding: 15px 20px 40px;
  }
  .filter-offer-section .filter-content {
    min-height: auto;
  }
  .filter-offer-section .offer-lists {
    width: 100%;
    max-width: 100%;
  }
  .filter-offer-section .offer-lists .offer-list {
    margin: 0;
  }
}

@media only screen and (max-width: 990px) {
  .filter-offer-section .section-inner {
    padding: 15px 20px 40px;
  }
  .filter-offer-section .filter-content {
    min-height: auto;
  }
  .filter-offer-section .offer-lists {
    width: 100%;
    max-width: 100%;
  }
  .filter-offer-section .offer-lists .offer-list {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .filter-offer-section .nearby-offer-lists .offer-card {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: phablet) {
  .filter-offer-section .search-container {
    max-width: 210px;
  }
  .filter-offer-section .offer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .filter-offer-section .offer-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 559px) {
  .filter-offer-section .search-container {
    max-width: 210px;
  }
  .filter-offer-section .offer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .filter-offer-section .offer-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

/* offerdetails-page */
.offerdetails-page {
  background: -webkit-gradient(linear, left bottom, left top, from(#fff7eb), color-stop(84.33%, rgba(249, 240, 227, 0)));
  background: linear-gradient(0deg, #fff7eb 0%, rgba(249, 240, 227, 0) 84.33%);
  overflow: hidden;
  /* offer-top-content  */
  /* offer-middle-content */
  /* offer-bottom-content */
  /* offer-highlight  */
  /* table */
}

@media only screen and (max-width: tablet) {
  .offerdetails-page {
    background: #fff;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page {
    background: #fff;
  }
}

.offerdetails-page h4 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: normal;
}

@media only screen and (max-width: tablet) {
  .offerdetails-page h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page h4 {
    font-size: 18px;
  }
}

.offerdetails-page .offer-top-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  /*@include mq(420px){
      .content{
        .content-bottom{
          .card-bottom{
            @include flex-direction(column);
            .total-rating{
              width:100%;
              padding-bottom: 10px;
              border-bottom: 1px solid rgba(0, 0, 0, 0.2);
              margin-bottom: 10px;
              .text{
                border-right: 0;
              }
            } 
          }
        }
      } 
    }*/
}

.offerdetails-page .offer-top-content .section-inner {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.offerdetails-page .offer-top-content.pt-40 {
  padding-top: 40px;
}

.offerdetails-page .offer-top-content .section-inner {
  padding: 0 20px 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.offerdetails-page .offer-top-content .content,
.offerdetails-page .offer-top-content .media {
  width: 50%;
}

.offerdetails-page .offer-top-content .content {
  margin-right: 30px;
}

.offerdetails-page .offer-top-content .content h3,
.offerdetails-page .offer-top-content .content h1 {
  max-width: 510px;
  font-weight: bold;
  font-size: 24px;
  color: #074a86;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.offerdetails-page .offer-top-content .content .offer-tab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-width: 270px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 80px;
  margin-bottom: 15px;
}

.offerdetails-page .offer-top-content .content .offer-tab .tab {
  width: 50%;
  font-size: 10px;
  line-height: 13px;
  padding: 8.6px 23px;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 80px;
  text-align: center;
}

.offerdetails-page .offer-top-content .content .offer-tab .tab a {
  color: #4b4b4b;
}

.offerdetails-page .offer-top-content .content .offer-tab .tab.active {
  background: #074a86;
  color: #fff;
}

.offerdetails-page .offer-top-content .content .offer-tab .tab.active a {
  color: #fff;
}

.offerdetails-page .offer-top-content .content ul.list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #989898;
}

.offerdetails-page .offer-top-content .content ul.list li:first-child {
  font-weight: bold;
}

.offerdetails-page .offer-top-content .content ul.list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  background: url("../images/icons/right-arrow-g.svg") no-repeat center;
  width: 10px;
  height: 8px;
  margin: 0 5px;
}

.offerdetails-page .offer-top-content .content .content-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.offerdetails-page .offer-top-content .content .content-bottom .button-group a:not(:last-child) {
  margin-right: 20px;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .total-rating {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .total-rating .num-rating {
  background: #f3a126;
  color: #fff;
  padding: 5px 25px 5px 5px;
  margin-right: 11px;
  font-size: 14px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .total-rating .num-rating:after {
  content: "";
  width: 15px;
  height: 15px;
  right: 7px;
  position: absolute;
  background: url("../images/icons/star-white.png") no-repeat right;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .total-rating .text {
  color: #f37e20;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 15px;
  margin-right: 17px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .date-readtime {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offerdetails-page .offer-top-content .content .content-bottom .card-bottom .date-readtime span.num-viewer {
  font-size: 14px;
  display: inline-block;
  background: url("../images/icons/eye-icon-b.svg") no-repeat right;
  padding-left: 0;
  padding-right: 30px;
  margin-right: 15px;
}

.offerdetails-page .offer-top-content .content .content-bottom .share-content .share-link li::before {
  display: none;
}

.offerdetails-page .offer-top-content .media {
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-top-content {
    /* 19-03-2021 start*/
    /* 19-03-2021 end */
  }
  .offerdetails-page .offer-top-content.offer-top-content--0 {
    margin-top: 0;
  }
  .offerdetails-page .offer-top-content .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
    padding-top: 20px;
  }
  .offerdetails-page .offer-top-content .media {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 25px;
  }
  .offerdetails-page .offer-top-content .media img {
    width: 100%;
  }
  .offerdetails-page .offer-top-content .content {
    width: 100%;
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .offerdetails-page .offer-top-content .content h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .offerdetails-page .offer-top-content .content h1 {
    color: #074a86;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .offerdetails-page .offer-top-content .content ul.list {
    display: none;
  }
  .offerdetails-page .offer-top-content .content .offer-tab {
    margin: 0 auto 25px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom {
    margin: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .date-readtime span.num-viewer {
    background-position: left;
    padding-right: 0;
    padding-left: 30px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .bookmark-share {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-left: 0;
    margin-right: auto;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-top-content {
    /* 19-03-2021 start*/
    /* 19-03-2021 end */
  }
  .offerdetails-page .offer-top-content.offer-top-content--0 {
    margin-top: 0;
  }
  .offerdetails-page .offer-top-content .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
    padding-top: 20px;
  }
  .offerdetails-page .offer-top-content .media {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 25px;
  }
  .offerdetails-page .offer-top-content .media img {
    width: 100%;
  }
  .offerdetails-page .offer-top-content .content {
    width: 100%;
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .offerdetails-page .offer-top-content .content h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .offerdetails-page .offer-top-content .content h1 {
    color: #074a86;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .offerdetails-page .offer-top-content .content ul.list {
    display: none;
  }
  .offerdetails-page .offer-top-content .content .offer-tab {
    margin: 0 auto 25px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom {
    margin: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .date-readtime span.num-viewer {
    background-position: left;
    padding-right: 0;
    padding-left: 30px;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .bookmark-share {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-left: 0;
    margin-right: auto;
  }
}

@media only screen and (max-width: phablet) {
  .offerdetails-page .offer-top-content .content .content-bottom .button-group {
    text-align: center;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 559px) {
  .offerdetails-page .offer-top-content .content .content-bottom .button-group {
    text-align: center;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .button-group a.ic-btn {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 320px) {
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .total-rating .num-rating {
    margin-left: 0;
  }
  .offerdetails-page .offer-top-content .content .content-bottom .card-bottom .date-readtime {
    margin: 10px 0 10px;
    width: 100%;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
}

.offerdetails-page .offer-top-content.expired .label,
.offerdetails-page .offer-top-content.expired .offer-Coupon,
.offerdetails-page .offer-top-content.expired .content-bottom {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.offerdetails-page .offer-top-content.expired .tag {
  display: none;
}

.offerdetails-page .offer-top-content.expired .tag.tag-expired {
  display: block;
}

.offerdetails-page .offer-coupon-content {
  margin-bottom: 25px;
  min-height: auto;
}

.offerdetails-page .offer-coupon-content .label {
  font-size: 12px;
  line-height: 23px;
  color: rgba(102, 102, 102, 0.7);
  margin-bottom: 10px;
}

.offerdetails-page .offer-coupon-content .offer-coupon-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  border: 1px dashed #074a86;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  letter-spacing: 0.05em;
  padding: 14px 20px 14px 25px;
  min-height: 50px;
  margin-right: 15px;
}

.offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  color: #074a86;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  min-width: 150px;
  margin-right: 20px;
}

.offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
  font-size: 12px;
  font-weight: bold;
  color: #f37e20;
  text-transform: uppercase;
  cursor: pointer;
}

.offerdetails-page .offer-coupon-content .offer-tags {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .offerdetails-page .offer-coupon-content .offer-tags {
    width: 100%;
  }
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-coupon-content {
    margin-bottom: 30px;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon {
    padding: 14px;
    margin: 0 0 15px;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
    font-size: 16px;
    width: calc(100% - 100px);
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-coupon-content {
    margin-bottom: 30px;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon {
    padding: 14px;
    margin: 0 0 15px;
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
    font-size: 16px;
    width: calc(100% - 100px);
  }
  .offerdetails-page .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (max-width: 684px) {
  .offerdetails-page .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.offerdetails-page .offer-detail-2 .offer-tags {
  width: 50%;
}

@media only screen and (max-width: 684px) {
  .offerdetails-page .offer-detail-2 .offer-tags {
    width: 100%;
  }
}

.offerdetails-page .offer-tags {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 35px;
}

.offerdetails-page .offer-tags .tag,
.offerdetails-page .offer-tags .offer-tags-inner {
  background: rgba(7, 74, 134, 0.05);
  border-radius: 4px;
  padding: 17px 30px 17px 20px;
  min-height: 50px;
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  color: #535353;
  width: 100%;
}

.offerdetails-page .offer-tags .tag:not(:last-child),
.offerdetails-page .offer-tags .offer-tags-inner:not(:last-child) {
  margin-right: 15px;
}

.offerdetails-page .offer-tags .tag p,
.offerdetails-page .offer-tags .offer-tags-inner p {
  text-align: left;
  margin-bottom: 15px;
}

.offerdetails-page .offer-tags .tag p:last-child,
.offerdetails-page .offer-tags .offer-tags-inner p:last-child {
  margin-bottom: 0;
}

.offerdetails-page .offer-tags .tag.tag-expired,
.offerdetails-page .offer-tags .offer-tags-inner.tag-expired {
  background-color: #ffe3df;
  width: 100%;
  max-width: 100%;
  display: none;
  padding: 15px 30px 13px 20px;
}

.offerdetails-page .offer-tags .tag.tag-expired p,
.offerdetails-page .offer-tags .offer-tags-inner.tag-expired p {
  color: #ad1e23;
  padding-left: 30px;
  line-height: 21px;
  background: url("../images/icons/tag-expired.png") no-repeat left;
}

.offerdetails-page .offer-tags .offer-tags-inner {
  margin-left: 10px;
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .offerdetails-page .offer-tags .tag {
    text-align: center;
    padding: 8px 20px;
    min-height: 32px;
  }
  .offerdetails-page .offer-tags .tag:not(:last-child) {
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .offerdetails-page .offer-tags .tag {
    text-align: center;
    padding: 8px 20px;
    min-height: 32px;
  }
  .offerdetails-page .offer-tags .tag:not(:last-child) {
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width: 640px) {
  .offerdetails-page .offer-tags .offer-tags-inner {
    margin: 20px 0 0px 0px;
  }
}

.offerdetails-page .offer-middle-content {
  position: relative;
}

.offerdetails-page .offer-middle-content .notification-alert {
  max-width: 290px;
  padding: 20px 20px 20px 40px;
  min-height: 80px;
}

.offerdetails-page .offer-middle-content .notification-alert p {
  padding: 0;
  width: 100%;
}

.offerdetails-page .offer-middle-content .notification-alert p span {
  display: block;
  color: #f37e20;
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-middle-content table th,
  .offerdetails-page .offer-middle-content table td {
    padding: 15px;
    width: 50%;
  }
  .offerdetails-page .offer-middle-content ol li ul {
    margin-top: 15px;
  }
  .offerdetails-page .offer-middle-content ol li ul li {
    margin-bottom: 0;
  }
  .offerdetails-page .offer-middle-content ol li ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .offerdetails-page .offer-middle-content .notification-alert {
    position: static;
    margin: 25px -20px 0 auto;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-middle-content table th,
  .offerdetails-page .offer-middle-content table td {
    padding: 15px;
    width: 50%;
  }
  .offerdetails-page .offer-middle-content ol li ul {
    margin-top: 15px;
  }
  .offerdetails-page .offer-middle-content ol li ul li {
    margin-bottom: 0;
  }
  .offerdetails-page .offer-middle-content ol li ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .offerdetails-page .offer-middle-content .notification-alert {
    position: static;
    margin: 25px -20px 0 auto;
  }
}

.offerdetails-page .offer-middle-content .two-column {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.offerdetails-page .offer-middle-content .two-column .left-content {
  width: 60%;
}

.offerdetails-page .offer-middle-content .two-column .right-content {
  width: 40%;
}

.offerdetails-page .offer-middle-content .two-column .right-content .related-offer-section {
  margin-top: 0;
}

@media only screen and (max-width: 1100px) {
  .offerdetails-page .offer-middle-content .two-column .left-content,
  .offerdetails-page .offer-middle-content .two-column .right-content {
    width: 50%;
  }
  .offerdetails-page .offer-middle-content .two-column .left-content {
    margin-right: 50px;
  }
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-middle-content .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-middle-content .two-column .left-content,
  .offerdetails-page .offer-middle-content .two-column .right-content {
    width: 100%;
  }
  .offerdetails-page .offer-middle-content .two-column .left-content {
    margin: 0 0 20px;
  }
  .offerdetails-page .offer-middle-content .two-column .slick-dots {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .offerdetails-page .offer-middle-content .two-column .card-item {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-middle-content .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offerdetails-page .offer-middle-content .two-column .left-content,
  .offerdetails-page .offer-middle-content .two-column .right-content {
    width: 100%;
  }
  .offerdetails-page .offer-middle-content .two-column .left-content {
    margin: 0 0 20px;
  }
  .offerdetails-page .offer-middle-content .two-column .slick-dots {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .offerdetails-page .offer-middle-content .two-column .card-item {
    margin-right: 20px;
  }
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-middle-content .two-column .card-item {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-middle-content .two-column .card-item {
    margin-right: 0px;
  }
}

.offerdetails-page .offer-bottom-content {
  background: #fff7eb;
}

.offerdetails-page .offer-bottom-content .section-inner {
  padding: 40px 20px 60px;
}

.offerdetails-page .offer-bottom-content .accordion {
  max-width: 900px;
}

.offerdetails-page .offer-highlight .section-inner {
  padding: 30px 20px;
}

.offerdetails-page .offer-highlight .content {
  max-width: 850px;
  margin-right: 200px;
}

.offerdetails-page .offer-highlight .content .desc {
  max-width: 450px;
  margin-right: 90px;
}

@media only screen and (max-width: tablet) {
  .offerdetails-page .offer-highlight .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
  .offerdetails-page .offer-highlight .content .media {
    display: inline-block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .offerdetails-page .offer-highlight .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    margin-left: 30px;
    text-align: left;
    max-width: 400px;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn {
    width: auto;
    min-width: 170px;
    text-align: center;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn.border-btn {
    border-color: #fff;
    color: #fff;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn.border-btn:hover {
    color: #f37e20;
  }
}

@media only screen and (max-width: 990px) {
  .offerdetails-page .offer-highlight .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
  .offerdetails-page .offer-highlight .content .media {
    display: inline-block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .offerdetails-page .offer-highlight .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    margin-left: 30px;
    text-align: left;
    max-width: 400px;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn {
    width: auto;
    min-width: 170px;
    text-align: center;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn.border-btn {
    border-color: #fff;
    color: #fff;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn.border-btn:hover {
    color: #f37e20;
  }
}

@media only screen and (max-width: tablet-small) {
  .offerdetails-page .offer-highlight .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .offerdetails-page .offer-highlight .content .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: inline-block;
    margin: 0 auto 20px 0;
  }
  .offerdetails-page .offer-highlight .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: auto;
    margin-left: 0;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn {
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .offerdetails-page .offer-highlight .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .offerdetails-page .offer-highlight .content .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: inline-block;
    margin: 0 auto 20px 0;
  }
  .offerdetails-page .offer-highlight .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: auto;
    margin-left: 0;
  }
  .offerdetails-page .offer-highlight .content .button-group .ic-btn {
    width: 100%;
  }
}

.offerdetails-page h4 {
  max-width: 600px;
  margin-bottom: 15px;
}

.offerdetails-page p {
  max-width: 600px;
  margin-bottom: 15px;
}

.offerdetails-page .link {
  display: inline-block;
  margin-top: 25px;
}

.offerdetails-page ul {
  max-width: 600px;
}

.offerdetails-page ul li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.offerdetails-page ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #a6a6a6;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

.offerdetails-page ol {
  max-width: 600px;
  margin-left: 15px;
}

.offerdetails-page ol li {
  list-style: decimal;
  padding-left: 10px;
  margin-bottom: 15px;
}

.offerdetails-page ol li ul {
  list-style: none;
  margin-top: 10px;
}

.offerdetails-page ol li ul li {
  list-style: none;
  padding-left: 15px;
}

.offerdetails-page ol li ul li::marker {
  display: none;
}

.offerdetails-page ol li ul.list-style {
  margin-top: 5px;
}

.offerdetails-page ol li ul.list-style li {
  text-transform: uppercase;
  display: inline-block;
  list-style: none;
  font-size: 13px;
  line-height: 16px;
  color: #f37e20;
  padding-left: 0;
  vertical-align: middle;
  margin-bottom: 0;
}

.offerdetails-page ol li ul.list-style li:not(:last-child) {
  margin-bottom: 0;
}

.offerdetails-page ol li ul.list-style li::before {
  display: none;
}

.offerdetails-page ol li ul.list-style li::after {
  content: "";
  display: inline-block;
  background: url("../images/icons/right-arrow-o.svg") no-repeat center;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 5px;
}

.offerdetails-page table {
  margin-bottom: 20px;
}

.offerdetails-page table th {
  background: #fdf6f4;
  color: #666666;
  font-weight: normal;
}

.offerdetails-page table th,
.offerdetails-page table td {
  padding: 20px 30px;
  border-right: 1px dashed rgba(102, 102, 102, 0.2);
}

.offerdetails-page table tr {
  border: 1px solid rgba(102, 102, 102, 0.2);
}

/* offercategory-page */
.offercategory-content .section-inner {
  padding: 80px 20px 40px;
}

@media only screen and (max-width: tablet) {
  .offercategory-content .section-inner {
    padding: 25px 20px 10px;
  }
}

@media only screen and (max-width: 990px) {
  .offercategory-content .section-inner {
    padding: 25px 20px 10px;
  }
}

.offercategory-content .offercategory-list {
  margin-bottom: 15px;
}

.offercategory-content .offercategory-list .offercategory-title {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.offercategory-content .offercategory-list .offercategory-title::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #a6a6a6;
}

.offercategory-content .offercategory-list .offercategory-title .icon {
  margin-right: 10px;
}

.offercategory-content .offercategory-list .offercategory-title .title {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}

.offercategory-content .offercategory-list .offercategory {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.offercategory-content .offercategory-list .offercategory li {
  width: calc(25% - 30px);
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 15px 25px;
  border-radius: 40px;
  background: #fff0e6;
}

.offercategory-content .offercategory-list .offercategory li a {
  text-decoration: none;
  display: block;
}

.offercategory-content .offercategory-list .offercategory li:hover {
  background: #f37e20;
}

.offercategory-content .offercategory-list .offercategory li:hover a {
  color: #fff;
}

@media only screen and (max-width: tablet) {
  .offercategory-content .offercategory-list .offercategory-title {
    margin-bottom: 20px;
  }
  .offercategory-content .offercategory-list .offercategory {
    margin: 0;
  }
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(33% - 30px);
  }
}

@media only screen and (max-width: tablet) and (max-width: tablet-small) {
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(50% - 20px);
    margin: 0 10px 15px;
  }
}

@media only screen and (max-width: tablet) and (max-width: 639px) {
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(50% - 20px);
    margin: 0 10px 15px;
  }
}

@media only screen and (max-width: tablet) and (max-width: phablet) {
  .offercategory-content .offercategory-list .offercategory li {
    width: 100%;
    margin: 0 0 15px;
  }
}

@media only screen and (max-width: tablet) and (max-width: 559px) {
  .offercategory-content .offercategory-list .offercategory li {
    width: 100%;
    margin: 0 0 15px;
  }
}

@media only screen and (max-width: 990px) {
  .offercategory-content .offercategory-list .offercategory-title {
    margin-bottom: 20px;
  }
  .offercategory-content .offercategory-list .offercategory {
    margin: 0;
  }
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(33% - 30px);
  }
}

@media only screen and (max-width: 990px) and (max-width: tablet-small) {
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(50% - 20px);
    margin: 0 10px 15px;
  }
}

@media only screen and (max-width: 990px) and (max-width: 639px) {
  .offercategory-content .offercategory-list .offercategory li {
    width: calc(50% - 20px);
    margin: 0 10px 15px;
  }
}

@media only screen and (max-width: 990px) and (max-width: phablet) {
  .offercategory-content .offercategory-list .offercategory li {
    width: 100%;
    margin: 0 0 15px;
  }
}

@media only screen and (max-width: 990px) and (max-width: 559px) {
  .offercategory-content .offercategory-list .offercategory li {
    width: 100%;
    margin: 0 0 15px;
  }
}

/* offer-section */
.offer-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 40px 20px 80px;
}

.offer-section .left-content {
  width: 65%;
  margin-right: 40px;
}

.offer-section .left-content .offer-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.offer-section .left-content .offer-cards .offer-card {
  width: calc(50% - 30px);
  margin: 0 15px 40px;
  padding: 0 20px 20px;
}

.offer-section .left-content .offer-cards .offer-card .card-inner .media {
  position: relative;
  overflow: hidden;
  height: auto;
  margin: 0 -20px 20px;
}

.offer-section .left-content .offer-cards .offer-card .card-inner .media img {
  width: 100%;
  max-height: none;
}

.offer-section .left-content .offer-cards .offer-card .card-inner .content .title {
  font-size: 18px;
  line-height: 1.38;
  margin-bottom: 10px;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}

.offer-section .left-content .offer-cards .offer-card .card-inner .content .description {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #8b8b8b;
  margin-bottom: 15px;
  min-height: 60px;
  max-height: 60px;
  overflow: hidden;
}

.offer-section .left-content .offer-cards .offer-card .offer-coupon-content .offer-coupon-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.offer-section .left-content .offer-cards .offer-card .offer-coupon-content .offer-coupon-area .offer-Coupon {
  margin: 0 0 15px;
  width: 100%;
}

.offer-section .left-content .offer-cards .offer-card .offer-coupon-content .offer-tags .tag {
  width: 100%;
  min-height: auto;
  padding: 10px 30px 10px 20px;
  text-align: center;
  color: rgba(102, 102, 102, 0.8);
}

.offer-section .left-content .offer-cards .offer-card .offer-coupon-content .offer-tags:not(:last-child) {
  margin-bottom: 15px;
}

.offer-section .right-content {
  width: 35%;
  max-width: 390px;
}

.offer-section .right-content h4 {
  margin-bottom: 15px;
}

.offer-section .right-content p {
  color: #3d3d3d;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.offer-section .right-content .share-header p {
  margin-bottom: 0;
}

@media only screen and (max-width: tablet) {
  .offer-section {
    background: #fff;
  }
  .offer-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 40px;
  }
  .offer-section .left-content,
  .offer-section .right-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .offer-section .right-content {
    margin-top: 20px;
  }
  .offer-section .right-content h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 990px) {
  .offer-section {
    background: #fff;
  }
  .offer-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 40px;
  }
  .offer-section .left-content,
  .offer-section .right-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .offer-section .right-content {
    margin-top: 20px;
  }
  .offer-section .right-content h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: tablet-small) {
  .offer-section .left-content .offer-cards .offer-card {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 639px) {
  .offer-section .left-content .offer-cards .offer-card {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* offer-dropdown-area */
.offer-dropdown-area .offerfilter {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.offer-dropdown-area .offerfilter .offer-dropdowns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-width: 420px;
  margin-bottom: 15px;
}

.offer-dropdown-area .offerfilter .offer-dropdowns .icon {
  min-width: 25px;
}

.offer-dropdown-area .offerfilter .links {
  margin-left: auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 15px;
}

.offer-dropdown-area .offerfilter .ui-selectmenu-button-closed,
.offer-dropdown-area .offerfilter .ui-selectmenu-button-open {
  border: 1.5px solid #f37e20;
  border-radius: 3px;
  padding: 0 15px;
}

.offer-dropdown-area .offerfilter .ui-selectmenu-button-closed .ui-selectmenu-text,
.offer-dropdown-area .offerfilter .ui-selectmenu-button-open .ui-selectmenu-text {
  padding: 2px 0;
  font-size: 13px;
}

.offer-dropdown-area .offerfilter .ui-selectmenu-button-closed .ui-icon-triangle-1-s {
  border-top: 5px solid #f37e20;
  right: 7px;
  top: 10px;
}

.offer-dropdown-area .offerfilter .ui-selectmenu-button-open .ui-icon-triangle-1-s {
  border-bottom: 5px solid #f37e20;
  right: 7px;
  top: 8px;
}

.offer-dropdown-area .offerfilter .ui-selectmenu-button {
  min-width: 160px;
  width: auto;
  margin: 0 10px;
}

@media only screen and (max-width: tablet-wide) {
  .offer-dropdown-area .offerfilter .ui-selectmenu-button {
    min-width: 140px;
  }
}

@media only screen and (max-width: 1023px) {
  .offer-dropdown-area .offerfilter .ui-selectmenu-button {
    min-width: 140px;
  }
}

@media only screen and (max-width: 767px) {
  .offer-dropdown-area .offerfilter .ui-selectmenu-button {
    min-width: 130px;
  }
  .offer-dropdown-area .offerfilter .links {
    width: 130px;
  }
}

@media only screen and (max-width: tablet-small) {
  .offer-dropdown-area .offerfilter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-dropdown-area .offerfilter .ui-selectmenu-button {
    min-width: auto;
    margin-right: 0;
  }
  .offer-dropdown-area .offerfilter .offer-dropdowns {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .offer-dropdown-area .offerfilter .offer-dropdown {
    width: calc(100% - 30px);
    margin-left: 25px;
    margin-bottom: 10px;
  }
  .offer-dropdown-area .offerfilter .offer-dropdown:first-child {
    margin-left: 0;
  }
  .offer-dropdown-area .offerfilter .links {
    width: 100%;
  }
  .offer-dropdown-area .offerfilter .links a {
    margin-left: auto;
  }
}

@media only screen and (max-width: 639px) {
  .offer-dropdown-area .offerfilter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-dropdown-area .offerfilter .ui-selectmenu-button {
    min-width: auto;
    margin-right: 0;
  }
  .offer-dropdown-area .offerfilter .offer-dropdowns {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .offer-dropdown-area .offerfilter .offer-dropdown {
    width: calc(100% - 30px);
    margin-left: 25px;
    margin-bottom: 10px;
  }
  .offer-dropdown-area .offerfilter .offer-dropdown:first-child {
    margin-left: 0;
  }
  .offer-dropdown-area .offerfilter .links {
    width: 100%;
  }
  .offer-dropdown-area .offerfilter .links a {
    margin-left: auto;
  }
}

.offer-expired-section {
  display: none;
}

.offer-expired-section .section-inner {
  padding: 30px 20px;
}

.offer-expired-section .feature-offer-top {
  margin-bottom: 17px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}

.offer-expired-section .offer-expired-heading {
  color: #ad1e23;
  letter-spacing: -0.01em;
  font-weight: bold;
  padding-left: 50px;
  line-height: 35px;
  background: url("../images/icons/expired-icon.png") no-repeat center left;
  max-width: 100%;
}

.offer-expired-section .subtitle {
  font-size: 14px;
  line-height: 24px;
  max-width: 100%;
}

.offer-expired-section .bottom-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  margin-bottom: 11px;
}

.offer-expired-section .feature-offer-bottom {
  background: transparent;
}

@media only screen and (max-width: 1200px) {
  .offer-expired-section .feature-offer-bottom {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .offer-expired-section .feature-offer-bottom {
    padding: 0;
  }
}

@media only screen and (max-width: 400px) {
  .offer-expired-section .feature-offer-bottom .card-bottom {
    display: block !important;
  }
  .offer-expired-section .feature-offer-bottom .date-readtime,
  .offer-expired-section .feature-offer-bottom .bookmark-share {
    width: 100%;
    text-align: left;
  }
  .offer-expired-section .feature-offer-bottom .date-readtime {
    margin-bottom: 10px;
  }
}

.offer-expired-section .slick-dots li {
  padding: 0 !important;
  background: #d1cfbb !important;
}

.offer-expired-section .slick-dots li.slick-active {
  background: #f37e20 !important;
}

.related-offer-section {
  background: #ad1e23;
  padding: 21px 22px 30px 18px;
  border-radius: 10px;
  margin-top: 40px;
}

.related-offer-section .heading-with-btn {
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 20px;
}

.related-offer-section h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #fff;
  width: calc(100% - 120px);
  margin-bottom: 0 !important;
}

.related-offer-section .related-offers:not(:first-child) {
  margin-top: 31px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 21px;
}

.related-offer-section .related-offers .related-offers-slider .slick-list {
  position: relative;
  z-index: 9;
  margin-bottom: -70px;
  padding-bottom: 70px;
}

.related-offer-section .related-offers .related-offers-slider .offer-card {
  padding: 25px 35px 45px;
}

.related-offer-section .related-offers .related-offers-slider .slick-arrow {
  background-color: #fff0e6;
  width: 25px;
  height: 25px;
  padding: 7px;
  background-size: 5px;
  background-position: center;
  top: 50px;
}

.related-offer-section .related-offers .related-offers-slider .slick-arrow.slick-prev {
  left: 10px;
}

.related-offer-section .related-offers .related-offers-slider .slick-arrow.slick-next {
  right: 10px;
}

.related-offer-section .related-offers .related-offers-slider .slick-arrow:hover {
  width: 25px;
  height: 25px;
  background-size: 5px;
}

.related-offer-section .related-offers .related-offers-slider .slick-dots {
  bottom: 10px;
  text-align: center;
}

.related-offer-section .related-offers .related-offers-slider .slick-dots li {
  padding: 0px !important;
}

.related-offer-section .related-offers .offer-card .card-inner .content .card-bottom .date-readtime span.num-viewer {
  font-size: 12px;
  margin-right: 10px;
}

.related-offer-section .related-offers .offer-card .card-inner .content .card-bottom .date-readtime .num-rating {
  font-size: 12px;
  margin-left: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .related-offer-section .related-offers .related-offers-slider .offer-card {
    padding: 29px 20px 44px;
  }
  .related-offer-section .related-offers .related-offers-slider .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-offer-section .related-offers .related-offers-slider .card-item .content,
  .related-offer-section .related-offers .related-offers-slider .card-item .media {
    width: 100%;
  }
  .related-offer-section .related-offers .related-offers-slider .card-item .media {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 480px) {
  .related-offer-section .related-offers .related-offers-slider .offer-card {
    padding: 29px 20px 44px;
  }
  .related-offer-section .related-offers .related-offers-slider .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-offer-section .related-offers .related-offers-slider .card-item .content,
  .related-offer-section .related-offers .related-offers-slider .card-item .media {
    width: 100%;
  }
  .related-offer-section .related-offers .related-offers-slider .card-item .media {
    margin: 0 auto 20px;
  }
}

.rating-review-section .top-heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 31px;
  width: 70%;
}

.rating-review-section .ic-btn {
  cursor: pointer;
}

.rating-review-section .rating-review-list {
  width: 70%;
}

.rating-review-section .star-review {
  text-align: left;
  margin-bottom: 7px;
}

.rating-review-section .star-review span {
  display: inline-block;
  cursor: pointer;
  background-image: url("../images/saving-account/comparing-cards/orange-star-empty.png");
  background-repeat: no-repeat;
  overflow: hidden;
  width: 18px;
  height: 17px;
  text-indent: -9999999px;
}

.rating-review-section .star-review span.checked {
  background-image: url("../images/saving-account/comparing-cards/orange-star-fill.svg");
}

.rating-review-section .star-review span:not(:last-child) {
  margin-right: 5px;
}

.rating-review-section .rating-review-item:not(:last-child) {
  padding-bottom: 26px;
  margin-bottom: 33px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rating-review-section .rating-review-item .title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #3d3d3d;
}

.rating-review-section .rating-review-item .name {
  font-weight: bold;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 5px;
  color: #074a86;
}

.rating-review-section .rating-review-item .content {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 19px;
}

.rating-review-section .rating-review-item .card-bottom-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.rating-review-section .rating-review-item .card-bottom-text .like {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 6px 0 20px;
  margin-right: 14px;
  position: relative;
  background: url("../images/bookmark.png") no-repeat left;
}

.rating-review-section .rating-review-item .card-bottom-text .like.liked {
  background: url("../images/liked.png") no-repeat left;
}

.rating-review-section .comment-form {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 3px;
  -webkit-box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.rating-review-section .comment-form .comment-form-inner {
  background: #fff;
  width: 100%;
  max-width: 800px !important;
  padding: 32px 123px;
  margin: 0 auto;
  border-radius: 6px;
  position: relative;
  top: 20%;
}

.rating-review-section .comment-form .comment-form-inner.open {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.rating-review-section .comment-form h4 {
  color: #074a86;
  margin-bottom: 33px;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: -0.01em;
}

.rating-review-section .comment-form .star-review {
  text-align: center;
  margin-bottom: 30px;
}

.rating-review-section .comment-form .star-review span {
  background-image: url("../images/icons/start-large.svg");
  width: 60px;
  height: 50px;
  text-align: center;
}

.rating-review-section .comment-form .star-review span.checked {
  background-image: url("../images/icons/start-large-orange.svg");
}

.rating-review-section .comment-form label {
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
}

.rating-review-section .comment-form textarea {
  width: 100%;
  border: 1px solid #f37e20;
  margin: 14px 0;
  padding: 10px 15px;
}

.rating-review-section .comment-form textarea::-webkit-input-placeholder {
  opacity: 0.5;
}

.rating-review-section .comment-form textarea:-ms-input-placeholder {
  opacity: 0.5;
}

.rating-review-section .comment-form textarea::-ms-input-placeholder {
  opacity: 0.5;
}

.rating-review-section .comment-form textarea::placeholder {
  opacity: 0.5;
}

.rating-review-section .comment-form .span-err {
  text-align: right;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 16px;
}

.rating-review-section .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  height: 15px;
  background: url("../images/icons/close-orange.svg") no-repeat;
  background-size: 100%;
  cursor: pointer;
}

@media only screen and (max-width: 830px) {
  .rating-review-section .comment-form .comment-form-inner {
    max-width: calc(100% - 60px) !important;
    padding: 20px 50px;
  }
  .rating-review-section .top-heading,
  .rating-review-section .rating-review-list {
    width: 100%;
  }
}

@media only screen and (max-device-width: 768px) and (orientation: landscape) {
  .rating-review-section .comment-form .comment-form-inner {
    top: 10px;
  }
  .rating-review-section .comment-form h4 {
    margin-bottom: 10px;
  }
  .rating-review-section .comment-form .star-review {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .rating-review-section .comment-form h4 {
    margin-bottom: 20px;
  }
  .rating-review-section .comment-form .star-review {
    margin-bottom: 18px;
  }
  .rating-review-section .comment-form .star-review span {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
}

.brandlisting-page {
  background: #f7f7f7;
}

@media only screen and (max-width: tablet) {
  .brandlisting-page {
    background: #fff;
  }
}

@media only screen and (max-width: 990px) {
  .brandlisting-page {
    background: #fff;
  }
}

/* brand-top-content */
.brand-top-content {
  /* az-icon */
}

.brand-top-content .az-icon,
.brand-top-content .az-icon-close {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #f37e20;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.brand-top-content .az-icon-close {
  background: transparent;
  display: none;
}

@media only screen and (max-width: tablet) {
  .brand-top-content .page-topbar .section-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .brand-top-content .page-topbar .page-heading {
    width: 100%;
  }
  .brand-top-content .page-topbar .search-container {
    width: calc(100% - 60px);
    margin-right: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .brand-top-content .page-topbar .section-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .brand-top-content .page-topbar .page-heading {
    width: 100%;
  }
  .brand-top-content .page-topbar .search-container {
    width: calc(100% - 60px);
    margin-right: 20px;
  }
}

/* brand-lists */
.brand-nav .section-inner {
  padding: 20px 20px 25px;
}

.brand-nav .ln-letters {
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.brand-nav .ln-letters li {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: #fff;
  color: #333333;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
}

.brand-nav .ln-letters li:not(:last-child) {
  margin-right: 10px;
}

.brand-nav .ln-letters li:hover, .brand-nav .ln-letters li.ln-selected {
  background: #f37e20;
  color: #fff;
}

.brand-nav .ln-letters li.ln-disabled {
  color: rgba(51, 51, 51, 0.3);
  cursor: not-allowed;
  pointer-events: none;
}

.brand-nav .ln-letters li.ln-disabled:hover {
  background: #fff;
  color: rgba(51, 51, 51, 0.3);
}

@media only screen and (max-width: desktop) {
  .brand-nav .ln-letters {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
}

@media only screen and (max-width: 1279px) {
  .brand-nav .ln-letters {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
}

@media only screen and (max-width: tablet) {
  .brand-nav {
    display: none;
    margin-top: 25px;
  }
  .brand-nav .ln-letters {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .brand-nav .ln-letters li {
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin-right: 13p 0.5x;
  }
}

@media only screen and (max-width: 990px) {
  .brand-nav {
    display: none;
    margin-top: 25px;
  }
  .brand-nav .ln-letters {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .brand-nav .ln-letters li {
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin-right: 13p 0.5x;
  }
}

/* brand-lists */
.brand-list-section {
  background: #fff;
  min-height: 300px;
}

.brand-list-section .section-inner {
  padding: 25px 20px;
}

.brand-list-section .brand-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.brand-list-section .brand-list.card-loading {
  min-height: 50px;
  background: #fff url("../images/icons/loader.svg") no-repeat center;
  margin-bottom: 40px;
}

.brand-list-section .brand-list.card-loading .brand-card {
  opacity: 0;
}

.brand-list-section .brand-list.hidden-card {
  height: 0;
}

.brand-list-section .brand-list.hidden-card .brand-card {
  opacity: 0;
}

.brand-list-section .brand-list.auto-height {
  height: auto;
}

.brand-list-section .brand-list.auto-height .brand-card {
  opacity: 1;
}

.brand-list-section .brand-card {
  width: calc(25% - 30px);
  padding: 0 20px 15px;
  border: 1px solid #dedede;
  border-radius: 10px;
  margin: 15px;
}

.brand-list-section .brand-card a {
  text-decoration: none;
}

.brand-list-section .brand-card .media {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 100%;
  height: 85px;
  overflow: hidden;
}

.brand-list-section .brand-card .media img {
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  max-height: 85px;
}

.brand-list-section .brand-card .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  border-top: 1px solid #dedede;
  padding-top: 10px;
}

.brand-list-section .brand-card .content .title {
  color: #4b4b4b;
}

.brand-list-section .brand-card .content .offer-text img {
  margin-right: 10px;
}

@media only screen and (max-width: 1200px) {
  .brand-list-section .brand-card {
    width: calc(33% - 30px);
  }
}

@media only screen and (max-width: tablet) {
  .brand-list-section .brand-card {
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width: 990px) {
  .brand-list-section .brand-card {
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width: phablet) {
  .brand-list-section .brand-card {
    width: 100%;
    margin: 0 15px 12px;
  }
}

@media only screen and (max-width: 559px) {
  .brand-list-section .brand-card {
    width: 100%;
    margin: 0 15px 12px;
  }
}

/* brand-section */
.brand-page {
  background: -webkit-gradient(linear, left bottom, left top, from(#fff7eb), color-stop(84.33%, rgba(249, 240, 227, 0)));
  background: linear-gradient(0deg, #fff7eb 0%, rgba(249, 240, 227, 0) 84.33%);
}

.brand-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 40px 20px 80px;
}

.brand-section .left-content {
  width: 65%;
  margin-right: 60px;
}

.brand-section .left-content .offer-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.brand-section .left-content .offer-cards .offer-card {
  width: calc(50% - 30px);
  margin: 0 15px 30px;
}

.brand-section .right-content {
  width: 35%;
  max-width: 390px;
}

.brand-section .right-content .brand-logo {
  margin-top: -50px;
  margin-bottom: 15px;
}

.brand-section .right-content h4 {
  margin-bottom: 20px;
}

.brand-section .right-content p {
  color: #3d3d3d;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

@media only screen and (max-width: tablet) {
  .brand-section {
    background: #fff;
  }
  .brand-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 40px;
  }
  .brand-section .left-content,
  .brand-section .right-content {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 15px;
  }
  .brand-section .left-content {
    padding-bottom: 40px;
    background: -webkit-gradient(linear, left bottom, left top, from(#fff7eb), color-stop(84.33%, rgba(249, 240, 227, 0)));
    background: linear-gradient(0deg, #fff7eb 0%, rgba(249, 240, 227, 0) 84.33%);
  }
  .brand-section .right-content .brand-logo {
    margin: 40px 0 20px;
  }
}

@media only screen and (max-width: 990px) {
  .brand-section {
    background: #fff;
  }
  .brand-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 40px;
  }
  .brand-section .left-content,
  .brand-section .right-content {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 15px;
  }
  .brand-section .left-content {
    padding-bottom: 40px;
    background: -webkit-gradient(linear, left bottom, left top, from(#fff7eb), color-stop(84.33%, rgba(249, 240, 227, 0)));
    background: linear-gradient(0deg, #fff7eb 0%, rgba(249, 240, 227, 0) 84.33%);
  }
  .brand-section .right-content .brand-logo {
    margin: 40px 0 20px;
  }
}

@media only screen and (max-width: phablet) {
  .brand-section .left-content .offer-cards {
    display: block;
  }
  .brand-section .left-content .offer-cards .offer-card {
    width: 100%;
    margin: 0 15px 20px 0;
  }
  .brand-section .left-content .offer-cards .slick-dots {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }
  .brand-section .left-content .link {
    text-align: center;
  }
}

@media only screen and (max-width: 559px) {
  .brand-section .left-content .offer-cards {
    display: block;
  }
  .brand-section .left-content .offer-cards .offer-card {
    width: 100%;
    margin: 0 15px 20px 0;
  }
  .brand-section .left-content .offer-cards .slick-dots {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }
  .brand-section .left-content .link {
    text-align: center;
  }
}

/* brandlisting-page */
.brandlisting-page .search-container .search-listing .search-listing-inner {
  max-height: 180px;
}

.rate-charges-page .top-content {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-21.6%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #f6f6f6 -21.6%, rgba(246, 246, 246, 0) 100%);
  padding-bottom: 50px;
}

.rate-charges-page .top-content .section-inner {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.rate-charges-page .top-content .left-content {
  width: 50%;
  padding-right: 50px;
  padding-bottom: 25px;
}

.rate-charges-page .top-content .left-content .page-heading {
  margin: 0;
}

.rate-charges-page .top-content .left-content .search-container {
  max-width: 570px;
}

.rate-charges-page .top-content .right-content {
  width: 50%;
}

.rate-charges-page .top-content .right-content .f-offer-card {
  width: 100%;
  margin: 0;
}

.rate-charges-page .top-content .right-content .f-offer-card p {
  font-size: 14px;
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .rate-charges-page .top-content .section-inner {
    display: block;
  }
  .rate-charges-page .top-content .left-content,
  .rate-charges-page .top-content .right-content {
    width: 100%;
  }
}

@media only screen and (max-width: tablet) {
  .rate-charges-page .top-content {
    background: #fff;
    padding: 0;
  }
  .rate-charges-page .top-content .left-content {
    padding: 0;
  }
  .rate-charges-page .top-content .left-content .page-heading {
    margin: 0 0 25px;
  }
  .rate-charges-page .top-content .left-content .search-container {
    display: none;
  }
  .rate-charges-page .top-content .right-content {
    display: none;
  }
}

@media only screen and (max-width: 990px) {
  .rate-charges-page .top-content {
    background: #fff;
    padding: 0;
  }
  .rate-charges-page .top-content .left-content {
    padding: 0;
  }
  .rate-charges-page .top-content .left-content .page-heading {
    margin: 0 0 25px;
  }
  .rate-charges-page .top-content .left-content .search-container {
    display: none;
  }
  .rate-charges-page .top-content .right-content {
    display: none;
  }
}

.rate-charges-page .bottom-content {
  background: #fff7eb;
}

.rate-charges-page .bottom-content .section-inner {
  padding: 0 20px 80px;
}

.rate-charges-page .bottom-content .tabs-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.rate-charges-page .bottom-content .tabs-container .nav-tabs {
  width: 100%;
  margin-left: 20px;
  margin-bottom: 40px;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.rate-charges-page .bottom-content .tabs-container .tab-content {
  width: calc(68% - 30px);
  margin-right: 30px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content.full-width {
  width: 100%;
  margin-right: 0;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content {
  width: 100%;
  margin: 0;
  min-height: 300px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content h6 {
  font-size: 14px;
  margin-bottom: 5px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-head.active {
  color: #4b4b4b;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content p:not(:last-child) {
  margin-bottom: 25px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content ul li::before {
  display: none;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs {
  margin: 0 -12px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .left-info-boxs,
.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .right-info-boxs {
  width: calc(50% - 12px);
  margin: 0 12px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs h6 {
  font-weight: 400;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .info-box {
  margin-bottom: 23px;
}

@media only screen and (max-width: phablet) {
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs {
    display: block;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .left-info-boxs,
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .right-info-boxs {
    width: 100%;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .left-info-boxs {
    margin-bottom: 35px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .right-info-boxs {
    margin-bottom: 10px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .info-box {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 559px) {
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs {
    display: block;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .left-info-boxs,
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .right-info-boxs {
    width: 100%;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .left-info-boxs {
    margin-bottom: 35px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .right-info-boxs {
    margin-bottom: 10px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-boxs .info-box {
    margin-bottom: 35px;
  }
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box {
  background: #fdf6f4;
  padding: 20px;
  max-width: 665px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box p {
  margin-bottom: 20px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box ul li {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 140.62%;
  letter-spacing: 0.2px;
  padding-left: 0;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box ul li:not(:last-child) {
  margin-bottom: 20px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box ul li span.icon {
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("../images/icons/more.png") no-repeat center;
  margin-left: 5px;
  margin-top: 2px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -20px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two ul {
  width: 50%;
  margin: 0 20px;
}

@media only screen and (max-width: tablet) {
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box {
    padding: 20px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box ul {
    width: calc(100% - 40px);
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two {
    display: block;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two:last-child ul {
    margin-top: 15px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two ul {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 990px) {
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box {
    padding: 20px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box ul {
    width: calc(100% - 40px);
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two {
    display: block;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two:last-child ul {
    margin-top: 15px;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .accordion .accordion-list .accordion-content .info-box .info-box-two ul {
    width: calc(100% - 40px);
  }
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .table-scroll {
  overflow-x: auto;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table th {
  background: #fdf6f4;
  color: #666666;
  padding: 16px 30px 18px;
  text-align: left;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table th,
.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table td {
  border-right: 1px dashed rgba(102, 102, 102, 0.2);
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table th:last-child,
.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table td:last-child {
  border: none;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table td {
  padding: 15px 30px;
  font-size: 14px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table tr {
  border: 1px solid rgba(102, 102, 102, 0.2);
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .table-note {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 25px;
  line-height: 20px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .note-content {
  max-width: 975px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .note-content p {
  line-height: 25px;
}

.rate-charges-page .bottom-content .tabs-container .tab-content .tab-content .label {
  font-weight: bold;
  margin-bottom: 15px;
}

@media only screen and (max-width: tablet) {
  .rate-charges-page .bottom-content .section-inner {
    padding: 0 20px 25px;
  }
  .rate-charges-page .bottom-content .tabs-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rate-charges-page .bottom-content .tabs-container .tabs-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .rate-charges-page .bottom-content .tabs-container .nav-tabs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 25px;
    margin-left: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table td,
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table th {
    padding: 10px 20px;
  }
  .rate-charges-page .bottom-content .tabs-container .interest-rates-box {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .rate-charges-page .bottom-content .m-100 {
    width: 100%;
  }
  .rate-charges-page .bottom-content .m-100 td {
    width: 50%;
  }
}

@media only screen and (max-width: 990px) {
  .rate-charges-page .bottom-content .section-inner {
    padding: 0 20px 25px;
  }
  .rate-charges-page .bottom-content .tabs-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rate-charges-page .bottom-content .tabs-container .tabs-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .rate-charges-page .bottom-content .tabs-container .nav-tabs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 25px;
    margin-left: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin: 0;
  }
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table td,
  .rate-charges-page .bottom-content .tabs-container .tab-content .tab-content table th {
    padding: 10px 20px;
  }
  .rate-charges-page .bottom-content .tabs-container .interest-rates-box {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .rate-charges-page .bottom-content .m-100 {
    width: 100%;
  }
  .rate-charges-page .bottom-content .m-100 td {
    width: 50%;
  }
}

.rate-charge-inner-page .option-table {
  overflow-x: auto;
}

.rate-charge-inner-page table {
  max-width: 882px;
  width: 100%;
  margin-bottom: 35px;
}

.rate-charge-inner-page table th {
  width: 294px;
}

.rate-charge-inner-page .select-table-area {
  max-width: 882px;
  background: #fdf6f4;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-bottom: none;
}

.rate-charge-inner-page .select-table-area #interest-rate-table-button {
  margin-left: auto;
  max-width: 588px;
  width: 100%;
  padding: 18px 40px 18px 25px;
  border: 1px solid #f37e20;
  margin: 0 0 0 auto;
}

.rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-closed .ui-icon-triangle-1-s {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f37e20;
  right: 40px;
  top: calc(50% - 4px);
}

.rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-open .ui-icon-triangle-1-s {
  right: 40px;
  top: calc(50% - 4px);
  border-top: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f37e20;
}

.rate-charge-inner-page .select-table-area #interest-rate-table-button .ui-selectmenu-text {
  max-width: 390px;
  width: 100%;
  white-space: normal;
  font-weight: normal;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.rate-charge-inner-page .pay-table-content {
  padding: 30px;
  background: #fff;
}

@media only screen and (max-width: tablet) {
  .rate-charge-inner-page .pay-table-content {
    padding: 20px;
  }
  .rate-charge-inner-page .option-table table td,
  .rate-charge-inner-page .option-table table th {
    min-width: 165px;
  }
  .rate-charge-inner-page .pay-table table td:last-child,
  .rate-charge-inner-page .pay-table table th:last-child {
    width: 100px;
  }
}

@media only screen and (max-width: 990px) {
  .rate-charge-inner-page .pay-table-content {
    padding: 20px;
  }
  .rate-charge-inner-page .option-table table td,
  .rate-charge-inner-page .option-table table th {
    min-width: 165px;
  }
  .rate-charge-inner-page .pay-table table td:last-child,
  .rate-charge-inner-page .pay-table table th:last-child {
    width: 100px;
  }
}

@media only screen and (max-width: phablet) {
  .rate-charge-inner-page .select-table-area #interest-rate-table-button {
    padding: 10px 55px 10px 10px;
  }
  .rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-closed .ui-icon-triangle-1-s {
    right: 15px;
    top: 15px;
  }
  .rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-open .ui-icon-triangle-1-s {
    right: 15px;
    top: 15px;
  }
}

@media only screen and (max-width: 559px) {
  .rate-charge-inner-page .select-table-area #interest-rate-table-button {
    padding: 10px 55px 10px 10px;
  }
  .rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-closed .ui-icon-triangle-1-s {
    right: 15px;
    top: 15px;
  }
  .rate-charge-inner-page .select-table-area #interest-rate-table-button.ui-selectmenu-button-open .ui-icon-triangle-1-s {
    right: 15px;
    top: 15px;
  }
}

.highlight-boxs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  margin-bottom: 20px;
}

.highlight-boxs .highlight-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  position: relative;
  width: calc(33% - 7px);
  background: #fff;
  border: 1px solid #f37e20;
  -webkit-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  border-radius: 8px;
  padding: 15px 20px 15px 25px;
  margin: 0 15px 15px 0;
}

.highlight-boxs .highlight-box::before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 7px);
  background: url("../images/icons/more-g.svg") no-repeat;
  width: 10px;
  height: 15px;
}

.highlight-boxs .highlight-box:last-child {
  margin-right: 0;
}

.highlight-boxs .highlight-box a {
  color: #3d3d3d;
  text-decoration: none;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.highlight-boxs .highlight-box h5 {
  font-size: 14px;
  line-height: 1.3;
}

.highlight-boxs .highlight-box h5 span {
  font-weight: normal;
  display: block;
}

.highlight-boxs .highlight-box h5 span.bold {
  font-weight: bold;
}

.highlight-boxs .highlight-box p {
  margin-top: 5px;
  font-size: 12px;
  color: #4b4b4b;
}

@media only screen and (max-width: tablet) {
  .highlight-boxs {
    display: block;
  }
  .highlight-boxs .highlight-box {
    width: 100%;
    padding: 15px 20px;
  }
  .highlight-boxs .highlight-box:last-child {
    margin-bottom: 30px;
  }
  .highlight-boxs .highlight-box h5 span {
    display: inline-block;
  }
}

@media only screen and (max-width: 990px) {
  .highlight-boxs {
    display: block;
  }
  .highlight-boxs .highlight-box {
    width: 100%;
    padding: 15px 20px;
  }
  .highlight-boxs .highlight-box:last-child {
    margin-bottom: 30px;
  }
  .highlight-boxs .highlight-box h5 span {
    display: inline-block;
  }
}

@media only screen and (max-width: phablet) {
  .highlight-boxs .highlight-box p {
    display: none;
  }
}

@media only screen and (max-width: 559px) {
  .highlight-boxs .highlight-box p {
    display: none;
  }
}

.interest-rates-box {
  width: 32%;
}

.interest-rates-box .info-box {
  padding: 20px 20px 15px 20px;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 5px;
}

.interest-rates-box .info-box ul {
  max-width: 220px;
}

.interest-rates-box .info-box ul li {
  text-transform: uppercase;
  font-size: 13px;
}

.interest-rates-box .info-box ul li img {
  margin-top: -3px;
  margin-left: 2px;
}

.interest-rates-box .info-box ul li:not(:last-child) {
  margin-bottom: 12px;
}

.interest-rates-box .interest-rate-content {
  background: url("../images/other/interest-rates-bg.jpg") no-repeat;
  background-size: cover;
  color: #fff;
  padding: 20px;
}

.interest-rates-box .section-label-new,
.interest-rates-box .section-title {
  color: #fff;
  text-align: left;
}

.interest-rates-box .section-label-new {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.interest-rates-box .section-label-new::after {
  display: inline-block !important;
  border-color: #fff;
}

.interest-rates-box .section-title {
  margin-bottom: 20px;
}

.interest-rates-box .content {
  padding: 5px 25px 5px 30px;
  margin-bottom: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.interest-rates-box .content .title {
  font-weight: bold;
}

.interest-rates-box .content .label {
  font-size: 13px;
  text-align: right;
  font-weight: 300;
}

.interest-rates-box .content .rate {
  text-align: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 144%;
}

@media only screen and (max-width: tablet) {
  .interest-rates-box {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interest-rates-box .interest-rate-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 -20px;
    border-radius: 0;
  }
  .interest-rates-box .interest-rate-content .content .label {
    font-size: 11px;
  }
  .interest-rates-box .interest-rate-content .content .rate {
    font-size: 20px;
  }
  .interest-rates-box .interest-rate-inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin-right: -15px;
  }
  .interest-rates-box .interest-rate-inner .content {
    display: block;
    min-width: 162px;
    margin-right: 8px;
    padding: 15px 18px;
    margin-bottom: 0;
  }
  .interest-rates-box .interest-rate-inner .content .label {
    font-size: 11px;
  }
  .interest-rates-box .interest-rate-inner .content .rate {
    font-size: 16px;
  }
  .interest-rates-box .interest-rate-inner .content div {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
  }
  .interest-rates-box .info-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 -20px;
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 990px) {
  .interest-rates-box {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interest-rates-box .interest-rate-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 -20px;
    border-radius: 0;
  }
  .interest-rates-box .interest-rate-content .content .label {
    font-size: 11px;
  }
  .interest-rates-box .interest-rate-content .content .rate {
    font-size: 20px;
  }
  .interest-rates-box .interest-rate-inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin-right: -15px;
  }
  .interest-rates-box .interest-rate-inner .content {
    display: block;
    min-width: 162px;
    margin-right: 8px;
    padding: 15px 18px;
    margin-bottom: 0;
  }
  .interest-rates-box .interest-rate-inner .content .label {
    font-size: 11px;
  }
  .interest-rates-box .interest-rate-inner .content .rate {
    font-size: 16px;
  }
  .interest-rates-box .interest-rate-inner .content div {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
  }
  .interest-rates-box .info-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 -20px;
    padding: 30px 20px;
  }
}

#interest-rate-table-menu {
  -webkit-box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
  -ms-box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
  -o-box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.19);
}

#interest-rate-table-menu li {
  width: 548px;
  font-size: 16px;
  margin: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

#interest-rate-table-menu li:last-child {
  border-bottom: none;
}

#interest-rate-table-menu li div {
  padding: 0;
  max-width: 464px;
}

@media only screen and (max-width: tablet) {
  #interest-rate-table-menu {
    width: calc(100% - 80px);
  }
  #interest-rate-table-menu li {
    font-size: 13px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 990px) {
  #interest-rate-table-menu {
    width: calc(100% - 80px);
  }
  #interest-rate-table-menu li {
    font-size: 13px;
    width: calc(100% - 40px);
  }
}

/* service-request-content */
.service-request-content > .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 10px 20px 40px;
}

.service-request-content .left-content {
  width: 77%;
  padding-right: 30px;
  max-width: 930px;
}

.service-request-content .right-content {
  width: 23%;
}

.service-request-content .page-topbar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.service-request-content .page-topbar .page-heading {
  padding-top: 10px;
}

.service-request-content .page-topbar .filter-tags {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin: 20px 0;
}

.service-request-content .page-topbar .filter-tags .tag {
  width: 240px;
  background: #fff0e6;
  border-radius: 40px;
  text-align: center;
  cursor: pointer;
}

.service-request-content .page-topbar .filter-tags .tag a {
  display: block;
  font-size: 15px;
  color: #f37e20;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
}

.service-request-content .page-topbar .filter-tags .tag:hover {
  background: #f37e20;
}

.service-request-content .page-topbar .filter-tags .tag:hover a {
  color: #fff;
}

.service-request-content .filter-section {
  border-radius: 10px;
}

.service-request-content .filter-section .section-inner {
  padding: 40px 20px 40px 0;
}

.service-request-content .filter-section .filter-inner-container.sticky-enable .filter-content {
  margin-left: 330px;
}

.service-request-content .sidebar-content {
  width: 300px;
  margin-right: 30px;
}

.service-request-content .sidebar-content .filter-icon {
  padding-left: 25px;
}

.service-request-content .sidebar-content ul li .menu-item {
  padding: 11px 10px 11px 20px;
}

.service-request-content .sidebar-content ul li .menu-item::before {
  left: 20px;
}

.service-request-content .sidebar-content ul li.dropdown .dropdown-list li,
.service-request-content .sidebar-content ul li.dropdown .dropdown-list p {
  font-size: 12px;
  padding: 10px 10px 10px 55px;
}

.service-request-content .filter-content {
  width: calc(100% - 330px);
}

.service-request-content .filter-content h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
}

.service-request-content .filter-content p {
  font-size: 14px;
  line-height: 22px;
}

.service-request-content .service-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -8px 14px;
}

.service-request-content .service-lists.mostservice-list .service-list {
  border: 1px solid #f37e20;
}

.service-request-content .service-lists.mostservice-list .service-list a {
  max-width: 250px;
}

.service-request-content .service-lists .service-list {
  background: #fff;
  margin: 0 8px;
  width: calc(50% - 16px);
  margin-bottom: 16px;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  border-radius: 10px;
}

.service-request-content .service-lists .service-list a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  padding: 20px;
  color: #3d3d3d;
  text-decoration: none;
}

.service-request-content .service-lists .service-list a span {
  font-weight: bold;
}

.service-request-content .service-lists .service-list a span.icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background: url("../images/icons/more-g.svg") no-repeat center;
}

.service-request-content .service-lists .service-list a img {
  margin-left: 10px;
}

.service-request-content .service-lists .service-list:hover {
  background: #f37e20;
}

.service-request-content .service-lists .service-list:hover a {
  color: #fff;
}

.service-request-content .service-lists .service-list:hover a span.icon {
  background: url("../images/icons//more-w.svg") no-repeat center;
}

.service-request-content .widget-content {
  padding-top: 10px;
}

.service-request-content .looking-section {
  margin-top: 40px;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .service-request-content .left-content {
    width: 73%;
  }
  .service-request-content .right-content {
    width: 27%;
  }
}

@media only screen and (max-width: tablet) {
  .service-request-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 285px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(rgba(246, 246, 246, 0)));
    background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    z-index: -1;
  }
  .service-request-content > .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .service-request-content .left-content,
  .service-request-content .right-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .service-request-content .page-topbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-request-content .page-topbar .page-heading {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .service-request-content .filter-section {
    margin: 25px -20px;
    padding: 0 20px 30px;
  }
  .service-request-content .filter-section h5 {
    margin-bottom: 20px;
  }
  .service-request-content .filter-section .section-inner {
    padding: 0;
  }
  .service-request-content .filter-section .filter-inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-request-content .filter-section .sidebar-content {
    display: block;
    width: 100%;
  }
  .service-request-content .filter-section .sidebar-content .tabs-section {
    margin: 0 -15px 30px;
    width: calc(100% + 30px);
  }
  .service-request-content .filter-section .sidebar-content .tabs-section.dropdown-active {
    overflow: initial;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li {
    background: #ebe7e7;
    border: none;
    vertical-align: top;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.active {
    border: none;
    border-radius: 0;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li:first-child {
    margin-left: 30px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown {
    position: static;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown::before, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown::after {
    display: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item {
    position: relative;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item::after, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: -20px;
    background: url("../images/icons/tab-left-icon.png") no-repeat;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active {
    background: #fff7eb;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item {
    position: relative;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::after, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::before {
    width: 24px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::before {
    display: inline-block;
    background: url("../images/icons/active-left.png") no-repeat;
    z-index: 2;
    left: -22px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::after {
    background: url("../images/icons/active-left.png") no-repeat;
    z-index: 2;
    right: -20px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item.menu-item {
    background: #f37e20;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li .menu-item {
    border-radius: 0;
    margin: 0;
    padding: 11px 25px;
    border: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li .menu-item::before {
    display: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs.dropdown-active {
    padding-bottom: 90px;
    overflow: initial;
  }
  .service-request-content .filter-section .sub-dropdown-list {
    display: none;
    position: relative;
    padding: 0;
    margin-bottom: 30px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header label {
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header .dropdown-value {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    color: #3d3d3d;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid #4b4b4b;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header .dropdown-value::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4b4b4b;
    right: 0;
    top: 7px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header.dropdown-open .dropdown-value {
    border-bottom: none;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header.dropdown-open .dropdown-value::after {
    border-top: 0;
    border-bottom: 5px solid #f37e20;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 20px 10px 20px;
    -webkit-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    -ms-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    -o-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    border-radius: 4.82069px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner p {
    text-transform: uppercase;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.2;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner p:not(:last-child) {
    margin-bottom: 10px;
  }
  .service-request-content .filter-section .filter-content {
    width: 100%;
  }
  .service-request-content .service-lists,
  .service-request-content .service-lists.mostservice-list {
    margin-bottom: 15px;
  }
  .service-request-content .service-lists .service-list a,
  .service-request-content .service-lists.mostservice-list .service-list a {
    padding: 15px 20px;
    font-size: 16px;
    max-width: 280px;
  }
}

@media only screen and (max-width: 990px) {
  .service-request-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 285px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(rgba(246, 246, 246, 0)));
    background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    z-index: -1;
  }
  .service-request-content > .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .service-request-content .left-content,
  .service-request-content .right-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .service-request-content .page-topbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-request-content .page-topbar .page-heading {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .service-request-content .filter-section {
    margin: 25px -20px;
    padding: 0 20px 30px;
  }
  .service-request-content .filter-section h5 {
    margin-bottom: 20px;
  }
  .service-request-content .filter-section .section-inner {
    padding: 0;
  }
  .service-request-content .filter-section .filter-inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-request-content .filter-section .sidebar-content {
    display: block;
    width: 100%;
  }
  .service-request-content .filter-section .sidebar-content .tabs-section {
    margin: 0 -15px 30px;
    width: calc(100% + 30px);
  }
  .service-request-content .filter-section .sidebar-content .tabs-section.dropdown-active {
    overflow: initial;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li {
    background: #ebe7e7;
    border: none;
    vertical-align: top;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.active {
    border: none;
    border-radius: 0;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li:first-child {
    margin-left: 30px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown {
    position: static;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown::before, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown::after {
    display: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item {
    position: relative;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item::after, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown .menu-item::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: -20px;
    background: url("../images/icons/tab-left-icon.png") no-repeat;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active {
    background: #fff7eb;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item {
    position: relative;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::after, .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::before {
    width: 24px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::before {
    display: inline-block;
    background: url("../images/icons/active-left.png") no-repeat;
    z-index: 2;
    left: -22px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item::after {
    background: url("../images/icons/active-left.png") no-repeat;
    z-index: 2;
    right: -20px;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li.dropdown.active .menu-item.menu-item {
    background: #f37e20;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li .menu-item {
    border-radius: 0;
    margin: 0;
    padding: 11px 25px;
    border: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs li .menu-item::before {
    display: none;
  }
  .service-request-content .filter-section .sidebar-content .nav-tabs.dropdown-active {
    padding-bottom: 90px;
    overflow: initial;
  }
  .service-request-content .filter-section .sub-dropdown-list {
    display: none;
    position: relative;
    padding: 0;
    margin-bottom: 30px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header label {
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header .dropdown-value {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    color: #3d3d3d;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid #4b4b4b;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header .dropdown-value::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4b4b4b;
    right: 0;
    top: 7px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header.dropdown-open .dropdown-value {
    border-bottom: none;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-header.dropdown-open .dropdown-value::after {
    border-top: 0;
    border-bottom: 5px solid #f37e20;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 20px 10px 20px;
    -webkit-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    -ms-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    -o-box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    box-shadow: 0px 3.21379px 12.0517px #efe2ce;
    border-radius: 4.82069px;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner p {
    text-transform: uppercase;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.2;
  }
  .service-request-content .filter-section .sub-dropdown-list .dropdown-list-inner p:not(:last-child) {
    margin-bottom: 10px;
  }
  .service-request-content .filter-section .filter-content {
    width: 100%;
  }
  .service-request-content .service-lists,
  .service-request-content .service-lists.mostservice-list {
    margin-bottom: 15px;
  }
  .service-request-content .service-lists .service-list a,
  .service-request-content .service-lists.mostservice-list .service-list a {
    padding: 15px 20px;
    font-size: 16px;
    max-width: 280px;
  }
}

@media only screen and (max-width: tablet-small) {
  .service-request-content .page-topbar .filter-tags {
    display: block;
  }
  .service-request-content .page-topbar .filter-tags .tag {
    width: 100%;
  }
  .service-request-content .page-topbar .filter-tags .tag:last-child {
    margin-top: 15px;
  }
  .service-request-content .service-lists .service-list {
    width: 100%;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 639px) {
  .service-request-content .page-topbar .filter-tags {
    display: block;
  }
  .service-request-content .page-topbar .filter-tags .tag {
    width: 100%;
  }
  .service-request-content .page-topbar .filter-tags .tag:last-child {
    margin-top: 15px;
  }
  .service-request-content .service-lists .service-list {
    width: 100%;
    margin-bottom: 12px;
  }
}

/* widget-content */
.widget-content .widget:not(:last-child) {
  margin-bottom: 25px;
}

.widget-content .widget h5 {
  font-size: 14px;
  margin-bottom: 15px;
}

.widget-content .widget h5.title {
  position: relative;
  padding-right: 30px;
  margin-bottom: 15px;
}

.widget-content .widget h5.title span {
  position: absolute;
  top: 0;
  right: 0;
}

.widget-content .widget .list {
  display: block;
  margin-bottom: 8px;
}

.widget-content .widget .list li {
  position: relative;
  font-size: 15px;
  width: 100%;
  margin: 0 0 8px;
  background: #fff0e6;
  color: #f37e20;
  border-radius: 50px;
}

.widget-content .widget .list li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 20px;
  top: 10px;
  left: 20px;
}

.widget-content .widget .list li:last-child {
  margin-bottom: 0;
}

.widget-content .widget .list li a {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  padding: 10px 15px 10px 60px;
  border: none;
  color: #f37e20;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.widget-content .widget .list li a:hover {
  border-bottom: none;
}

.widget-content .widget .list li.sr-icon::before {
  background: url("../images/icons/customer-care/service-request-m.svg") no-repeat center;
  background-size: 100%;
}

.widget-content .widget .list li.sr-icon:hover::before {
  background: url("../images/icons/customer-care/service-request-w.svg") no-repeat center;
  background-size: 100%;
}

.widget-content .widget .list li.atm-icon::before {
  background: url("../images/icons/customer-care/card-m.svg") no-repeat center;
}

.widget-content .widget .list li.atm-icon:hover::before {
  background: url("../images/icons/customer-care/card-w.svg") no-repeat center;
}

.widget-content .widget .list li.branch-icon::before {
  background: url("../images/icons/customer-care/bank-m.svg") no-repeat center;
}

.widget-content .widget .list li.branch-icon:hover::before {
  background: url("../images/icons/customer-care/bank-w.svg") no-repeat center;
}

.widget-content .widget .list li.block-icon::before {
  background: url("../images/icons/services/blocked-card-m.svg") no-repeat center;
}

.widget-content .widget .list li.block-icon:hover::before {
  background: url("../images/icons/services/blocked-card-w.svg") no-repeat center;
}

.widget-content .widget .list li.stop-icon::before {
  background: url("../images/icons/services/stop-card-m.svg") no-repeat center;
}

.widget-content .widget .list li.stop-icon:hover::before {
  background: url("../images/icons/services/stop-card-w.svg") no-repeat center;
}

.widget-content .widget .list li.report-icon::before {
  background: url("../images/icons/services/report-m.svg") no-repeat center;
}

.widget-content .widget .list li.report-icon:hover::before {
  background: url("../images/icons/services/report-w.svg") no-repeat center;
}

.widget-content .widget .list li.atm-icon::before {
  background: url("../images/icons/services/atm-m.svg") no-repeat center;
}

.widget-content .widget .list li.atm-icon:hover::before {
  background: url("../images/icons/services/atm-w.svg") no-repeat center;
}

.widget-content .widget .list li.user-icon::before {
  background: url("../images/icons/services/UserID-m.svg") no-repeat center;
}

.widget-content .widget .list li.user-icon:hover::before {
  background: url("../images/icons/services/UserID-w.svg") no-repeat center;
}

.widget-content .widget .list li.lock-icon::before {
  background: url("../images/icons/services/password-m.svg") no-repeat center;
}

.widget-content .widget .list li.lock-icon:hover::before {
  background: url("../images/icons/services/password-w.svg") no-repeat center;
}

.widget-content .widget .list li:hover {
  background: #f37e20;
}

.widget-content .widget .list li:hover a {
  color: #fff;
}

.widget-content .widget .ic-more {
  font-size: 13px;
  margin-top: 20px;
  font-weight: bold;
}

.widget-content .widget .ic-more::after {
  background-size: 6px;
  top: 5px;
}

.widget-content .widget .ic-more:hover {
  text-decoration: underline;
}

.widget-content .widget .barcode-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  background: #f37e20;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
}

.widget-content .widget .barcode-content .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: calc(100% - 65px);
  padding-right: 15px;
}

.widget-content .widget .barcode-content .content p {
  font-size: 13px;
  height: 54px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-content .widget .barcode-content .barcode {
  width: 65px;
  text-align: center;
  margin-bottom: 10px;
}

.widget-content .widget .barcode-content .barcode p {
  font-size: 12px;
  margin-bottom: 2px;
}

.widget-content .widget .barcode-content .text-right {
  width: 100%;
}

.widget-content .widget .barcode-content .text-right .ic-more {
  margin-top: 0;
}

@media only screen and (max-width: tablet) {
  .widget-content .widget .barcode-content {
    margin: 0 -20px;
    border-radius: 0;
  }
  .widget-content .widget .barcode-content .content {
    width: 100%;
    padding: 0;
  }
  .widget-content .widget .barcode-content .content p {
    height: auto;
    border: none;
  }
  .widget-content .widget .barcode-content .content .ic-more {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 990px) {
  .widget-content .widget .barcode-content {
    margin: 0 -20px;
    border-radius: 0;
  }
  .widget-content .widget .barcode-content .content {
    width: 100%;
    padding: 0;
  }
  .widget-content .widget .barcode-content .content p {
    height: auto;
    border: none;
  }
  .widget-content .widget .barcode-content .content .ic-more {
    margin: 10px 0;
  }
}

.widget-content .widget .contact-other p {
  font-size: 13px;
}

.widget-content .widget .contact-other h5 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
}

.widget-content .widget .contact-other:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget-content .sr-contact {
  background: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 25px 20px 50px;
}

.widget-content .sr-contact .sr-contact-slider .item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 0;
  text-align: center;
}

.widget-content .sr-contact .sr-contact-slider .item .media {
  width: 32px;
  margin: 0 auto 15px;
}

.widget-content .sr-contact .sr-contact-slider .item .content {
  margin-left: 15px;
}

.widget-content .sr-contact .sr-contact-slider .item .content p {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #3d3d3d;
}

.widget-content .sr-contact .sr-contact-slider .item .content p:last-child {
  font-size: 16px;
  line-height: 22px;
  color: #3d3d3d;
}

.widget-content .sr-contact .sr-contact-slider .slick-arrow {
  top: calc(50% - 11px);
  background-color: #f37e20;
  z-index: 9;
  width: 22px;
  height: 22px;
}

.widget-content .sr-contact .sr-contact-slider .slick-arrow.slick-prev {
  left: 0;
  background: #f37e20 url("../images/icons/left-arrow-w.png") no-repeat center;
}

.widget-content .sr-contact .sr-contact-slider .slick-arrow.slick-next {
  right: 0;
  background: #f37e20 url("../images/icons/left-arrow-w.png") no-repeat center;
}

.widget-content .sr-contact .sr-contact-slider .slick-dots {
  padding: 0;
  bottom: -30px;
  text-align: center;
}

.widget-content .sr-contact .sr-contact-slider .slick-dots li {
  margin: 0 3px;
  vertical-align: middle;
  background: rgba(0, 0, 0, 0.2);
}

.widget-content .sr-contact .sr-contact-slider .slick-dots li.slick-active {
  background: #f37e20;
}

.widget-content .loan-forms {
  padding: 15px;
  background: #f6f6f6;
  display: block;
  border-radius: 10px;
}

.widget-content .loan-forms .title {
  text-align: left;
  padding-right: 30px;
  margin-bottom: 10px;
}

.widget-content .loan-forms .form-slider .form-group {
  position: relative;
  padding-bottom: 5px;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 5px 10px 8px 0;
  border-bottom: 0.5px solid #4b4b4b;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 2px;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner.error {
  border-bottom: 0.5px solid #ad1e23;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .icon {
  margin-right: 12px;
  width: auto;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box {
  width: calc(100% - 40px);
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input {
  background: #f6f6f6;
  border: 0;
  color: #4b4b4b;
  width: 100%;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input.error {
  color: #e6371f;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input::placeholder {
  color: #a6a6a6;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input::-ms-clear {
  display: none;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:focus {
  background-color: #f6f6f6 !important;
}

.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-internal-autofill-selected, .widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill, .widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:hover,
.widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:focus .widget-content .loan-forms .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #f6f6f6 inset;
  -ms-box-shadow: 0 0 0 50px #f6f6f6 inset;
  -o-box-shadow: 0 0 0 50px #f6f6f6 inset;
  box-shadow: 0 0 0 50px #f6f6f6 inset;
}

.widget-content .loan-forms .form-slider .form-group .error-msg {
  position: absolute;
  bottom: -13px;
  color: #a6a6a6;
  font-size: 12px;
  line-height: 14px;
}

.widget-content .loan-forms .form-slider .form-group .success-message {
  background: #e6e6e6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 6px 13px 5px;
  border-bottom: 0.5px solid #219653;
}

.widget-content .loan-forms .form-slider .form-group .success-message img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.widget-content .loan-forms .form-slider .form-group .success-message p {
  margin-left: 15px;
  max-width: 180px;
  font-weight: bold;
}

.widget-content .loan-forms .form-slider .slick-dots {
  position: static;
  text-align: left;
}

.widget-content .loan-forms .form-slider .slick-dots li:last-child {
  display: none;
}

.widget-content .loan-forms .form-slider .slick-disabled {
  visibility: hidden;
}

.widget-content .loan-forms .form-slider .slick-arrow {
  width: 22px;
  height: 22px;
}

.widget-content .loan-forms .form-slider .slick-arrow.slick-prev {
  background: #f37e20 url("../images/left_arrow_orange.png") center center no-repeat !important;
  left: -53px;
  top: 5px;
  border: 0;
  display: none !important;
}

.widget-content .loan-forms .form-slider .slick-arrow.slick-prev:hover {
  border: 0;
}

.widget-content .loan-forms .form-slider .slick-arrow.slick-next {
  background: #f37e20 url("../images/right_arrow_white.png") center center no-repeat !important;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  right: -8px;
  top: 5px;
  border: 0;
}

.widget-content .loan-forms .form-slider .slick-arrow.slick-next:hover {
  border: 0;
}

.widget-content .loan-forms .form-slider .slick-arrow.arrow-disable {
  background: #4b4b4b url("../images/right_arrow_white.png") center center no-repeat !important;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  pointer-events: none;
}

@media only screen and (max-width: tablet) {
  .widget-content .loan-forms .form-slider .form-group .input-box {
    float: right;
    width: 93%;
  }
  .widget-content .loan-forms .form-slider .form-group .input-box input {
    background: transparent;
  }
  .widget-content .loan-forms .form-slider .slick-dots {
    text-align: left;
  }
  .widget-content .loan-forms .slick-arrow.slick-prev {
    left: -42px;
  }
}

@media only screen and (max-width: 990px) {
  .widget-content .loan-forms .form-slider .form-group .input-box {
    float: right;
    width: 93%;
  }
  .widget-content .loan-forms .form-slider .form-group .input-box input {
    background: transparent;
  }
  .widget-content .loan-forms .form-slider .slick-dots {
    text-align: left;
  }
  .widget-content .loan-forms .slick-arrow.slick-prev {
    left: -42px;
  }
}

@media only screen and (max-width: tablet) {
  .widget-content .widget-slider {
    margin: 0 -20px;
  }
  .widget-content .widget-slider .slick-list {
    padding-left: 20px !important;
  }
  .widget-content .widget-slider .slick-dots {
    position: static;
    text-align: center;
    padding: 0;
    margin-top: 15px;
  }
  .widget-content .widget-slider .list {
    margin: 0 20px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .widget-content .widget-slider {
    margin: 0 -20px;
  }
  .widget-content .widget-slider .slick-list {
    padding-left: 20px !important;
  }
  .widget-content .widget-slider .slick-dots {
    position: static;
    text-align: center;
    padding: 0;
    margin-top: 15px;
  }
  .widget-content .widget-slider .list {
    margin: 0 20px 0 0;
  }
}

/* looking-section  */
.looking-section .section-inner {
  padding: 40px 20px;
}

.looking-section .content .list::before {
  height: 30px;
  top: calc(50% - 15px);
}

@media only screen and (max-width: tablet) {
  .looking-section .section-inner {
    padding: 25px 20px;
  }
  .looking-section .section-title {
    font-size: 18px;
    text-align: left;
    margin: 0 0 25px 0;
  }
  .looking-section .section-title br {
    display: block;
  }
}

@media only screen and (max-width: 990px) {
  .looking-section .section-inner {
    padding: 25px 20px;
  }
  .looking-section .section-title {
    font-size: 18px;
    text-align: left;
    margin: 0 0 25px 0;
  }
  .looking-section .section-title br {
    display: block;
  }
}

@media only screen and (max-width: tablet-small) {
  .looking-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
  .looking-section .content .list {
    width: 100%;
    padding: 0;
  }
  .looking-section .content .list:not(:last-child) {
    margin: 0 0 20px;
  }
  .looking-section .content .list::before {
    display: none;
  }
  .looking-section .content .list .icon {
    width: 24px;
    margin: 0;
  }
  .looking-section .content .list .link {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 639px) {
  .looking-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
  .looking-section .content .list {
    width: 100%;
    padding: 0;
  }
  .looking-section .content .list:not(:last-child) {
    margin: 0 0 20px;
  }
  .looking-section .content .list::before {
    display: none;
  }
  .looking-section .content .list .icon {
    width: 24px;
    margin: 0;
  }
  .looking-section .content .list .link {
    margin-left: 10px;
  }
}

/* service-request-page */
.service-request-page {
  overflow: hidden;
}

/* customer-care-page */
.customer-care-page {
  position: relative;
  overflow: hidden;
}

.customer-care-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  z-index: -1;
}

.customer-care-page .page-topbar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin: 0 0 20px;
}

.customer-care-page .page-topbar .link {
  color: #f37e20;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-weight: bold;
}

.customer-care-page .page-topbar .link span.icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background: url("../images/icons/more.png") no-repeat center;
}

.customer-care-page .smart-way-section .content {
  max-width: 900px;
  margin-right: 100px;
}

.customer-care-page .smart-way-section .content .desc {
  max-width: 600px;
}

.customer-care-page .smart-way-section .content .desc p {
  max-width: 600px;
}

.customer-care-page .search-container {
  background: #074a86;
  max-width: 100%;
  padding: 20px 50px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.customer-care-page .search-container .search-label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  color: #fff;
  margin-bottom: 10px;
}

.customer-care-page .search-container .search-label .ic-more {
  color: #fff;
}

.customer-care-page .search-container .search-label .ic-more::after {
  background: url("../images/icons/more-w.png") no-repeat;
}

.customer-care-page .search-container .search-box-area {
  border: 1px solid #f37e20;
}

.customer-care-page .search-container .search-filter-slider {
  margin: 15px -8px 0;
}

.customer-care-page .search-container .search-filter-slider .item {
  background: #115694;
  border-radius: 10px;
  margin: 0 8px;
  padding: 10px 15px;
  width: 188px;
  text-align: center;
}

.customer-care-page .search-container .search-filter-slider .item a {
  font-size: 13px;
  color: #fff;
}

.customer-care-page .search-container .search-filter-slider .slick-arrow,
.customer-care-page .search-container .search-filter-slider .slick-arrow {
  width: 22px;
  height: 22px;
  top: calc(50% - 11px);
}

.customer-care-page .search-container .search-filter-slider .slick-arrow:hover,
.customer-care-page .search-container .search-filter-slider .slick-arrow:hover {
  border-color: #fff;
}

.customer-care-page .search-container .search-filter-slider .slick-arrow.slick-prev,
.customer-care-page .search-container .search-filter-slider .slick-arrow.slick-prev {
  background: url("../images/icons/left-arrow-w.png") no-repeat center;
  left: -30px;
  background-size: 6px;
  background-position: 5px 5px;
}

.customer-care-page .search-container .search-filter-slider .slick-arrow.slick-next,
.customer-care-page .search-container .search-filter-slider .slick-arrow.slick-next {
  background: url("../images/icons/left-arrow-w.png") no-repeat center;
  right: -30px;
  background-size: 6px;
  background-position: 8px 5px;
}

.customer-care-page .search-container .search-listing.active {
  width: calc(100% - 100px);
  top: 50px;
}

.customer-care-page .notification-alert {
  max-width: 260px;
  padding: initial;
}

.customer-care-page .notification-alert p {
  font-size: 12px;
  line-height: 1.5;
}

.customer-care-page .service-request-link {
  padding: 20px 0 0 0;
  text-align: center;
}

@media only screen and (max-width: tablet) {
  .customer-care-page .notification-alert {
    display: none;
  }
  .customer-care-page .page-topbar {
    margin: 0 -20px;
    background: #074a86;
    border-top: 1px solid #fff;
    padding: 20px 20px 0;
  }
  .customer-care-page .page-topbar .page-heading {
    color: #fff;
    margin: 0;
  }
  .customer-care-page .page-topbar .link {
    color: #fff;
    min-width: 130px;
  }
  .customer-care-page .page-topbar .link.nri-link {
    width: 110px;
    min-width: auto;
  }
  .customer-care-page .page-topbar .link span.icon {
    background: url("../images/icons/more-w.png") no-repeat center;
  }
  .customer-care-page .search-container {
    margin: 0 -20px;
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    border-radius: 0;
    padding: 20px 0;
  }
  .customer-care-page .search-container .ic-more {
    display: none !important;
  }
  .customer-care-page .search-container .search-label {
    padding: 0 20px;
  }
  .customer-care-page .search-container .search-label p {
    font-size: 12px;
  }
  .customer-care-page .search-container .search-box-area {
    margin: 0 20px;
  }
  .customer-care-page .search-container .search-filter-slider {
    margin: 20px 30px 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .customer-care-page .search-container .search-filter-slider .item {
    padding: 10px;
    margin: 0 4px;
  }
  .customer-care-page .search-container .search-filter-slider .item a {
    font-size: 11px;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow {
    z-index: 1;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow.slick-prev {
    left: -25px;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow.slick-next {
    right: -25px;
  }
  .customer-care-page .search-container .search-listing.active {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .customer-care-page .smart-way-section .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
  .customer-care-page .smart-way-section .content .media {
    display: inline-block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .customer-care-page .smart-way-section .content .media img {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }
  .customer-care-page .smart-way-section .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    margin-left: 30px;
    text-align: left;
    max-width: 400px;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn {
    width: auto;
    min-width: 170px;
    text-align: center;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn.border-btn {
    border-color: #fff;
    color: #fff;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn.border-btn:hover {
    color: #f37e20;
  }
}

@media only screen and (max-width: 990px) {
  .customer-care-page .notification-alert {
    display: none;
  }
  .customer-care-page .page-topbar {
    margin: 0 -20px;
    background: #074a86;
    border-top: 1px solid #fff;
    padding: 20px 20px 0;
  }
  .customer-care-page .page-topbar .page-heading {
    color: #fff;
    margin: 0;
  }
  .customer-care-page .page-topbar .link {
    color: #fff;
    min-width: 130px;
  }
  .customer-care-page .page-topbar .link.nri-link {
    width: 110px;
    min-width: auto;
  }
  .customer-care-page .page-topbar .link span.icon {
    background: url("../images/icons/more-w.png") no-repeat center;
  }
  .customer-care-page .search-container {
    margin: 0 -20px;
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    border-radius: 0;
    padding: 20px 0;
  }
  .customer-care-page .search-container .ic-more {
    display: none !important;
  }
  .customer-care-page .search-container .search-label {
    padding: 0 20px;
  }
  .customer-care-page .search-container .search-label p {
    font-size: 12px;
  }
  .customer-care-page .search-container .search-box-area {
    margin: 0 20px;
  }
  .customer-care-page .search-container .search-filter-slider {
    margin: 20px 30px 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .customer-care-page .search-container .search-filter-slider .item {
    padding: 10px;
    margin: 0 4px;
  }
  .customer-care-page .search-container .search-filter-slider .item a {
    font-size: 11px;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow {
    z-index: 1;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow.slick-prev {
    left: -25px;
  }
  .customer-care-page .search-container .search-filter-slider .slick-arrow.slick-next {
    right: -25px;
  }
  .customer-care-page .search-container .search-listing.active {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .customer-care-page .smart-way-section .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
  .customer-care-page .smart-way-section .content .media {
    display: inline-block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .customer-care-page .smart-way-section .content .media img {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }
  .customer-care-page .smart-way-section .content .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    margin-left: 30px;
    text-align: left;
    max-width: 400px;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn {
    width: auto;
    min-width: 170px;
    text-align: center;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn.border-btn {
    border-color: #fff;
    color: #fff;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn.border-btn:hover {
    color: #f37e20;
  }
}

@media only screen and (max-width: tablet-small) {
  .customer-care-page .search-container .search-filter-slider .item {
    padding: 10px 5px;
  }
  .customer-care-page .smart-way-section .section-inner {
    padding: 30px 20px;
  }
  .customer-care-page .smart-way-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .customer-care-page .smart-way-section .content .media {
    display: inline-block;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .customer-care-page .smart-way-section .content .media img {
    max-width: 140px;
  }
  .customer-care-page .smart-way-section .content .desc {
    margin-right: auto;
    margin-left: 0;
  }
  .customer-care-page .smart-way-section .content .desc h3 {
    font-size: 18px;
  }
  .customer-care-page .smart-way-section .content .desc p {
    font-size: 13px;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn {
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .customer-care-page .search-container .search-filter-slider .item {
    padding: 10px 5px;
  }
  .customer-care-page .smart-way-section .section-inner {
    padding: 30px 20px;
  }
  .customer-care-page .smart-way-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .customer-care-page .smart-way-section .content .media {
    display: inline-block;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .customer-care-page .smart-way-section .content .media img {
    max-width: 140px;
  }
  .customer-care-page .smart-way-section .content .desc {
    margin-right: auto;
    margin-left: 0;
  }
  .customer-care-page .smart-way-section .content .desc h3 {
    font-size: 18px;
  }
  .customer-care-page .smart-way-section .content .desc p {
    font-size: 13px;
  }
  .customer-care-page .smart-way-section .content .button-group .ic-btn {
    width: 100%;
  }
}

/* browse-product-faq */
.browse-product-faq {
  border: 1px solid #f6f6f6;
  background: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  padding: 20px 15px 30px;
  margin: 20px 0 0;
}

.browse-product-faq .browse-product-slider {
  margin: 0;
  padding: 10px 30px 0;
  margin: 0 -10px;
}

.browse-product-faq .browse-product-slider .list {
  text-align: center;
  min-width: 90px;
  margin: 0 8px;
}

.browse-product-faq .browse-product-slider .list a {
  color: #4b4b4b;
}

.browse-product-faq .browse-product-slider .list span.icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: #f1f1f1;
  border-radius: 50%;
  margin-bottom: 6px;
}

.browse-product-faq .browse-product-slider .list span.icon img {
  display: inline-block;
}

.browse-product-faq .browse-product-slider .list span.link {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.browse-product-faq .browse-product-slider .slick-arrow {
  width: 25px;
  height: 48px;
  background-color: #f37e20 !important;
  top: 10px;
  z-index: 1;
}

.browse-product-faq .browse-product-slider .slick-arrow.slick-prev {
  background: url("../images/icons/left-arrow-w.png") no-repeat 5px center;
  border-radius: 0 50px 50px 0;
  left: -5px;
}

.browse-product-faq .browse-product-slider .slick-arrow.slick-next {
  background: url("../images/icons/left-arrow-w.png") no-repeat 10px center;
  border-radius: 50px 0px 0px 50px;
  right: -5px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.browse-product-faq .browse-product-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
}

@media only screen and (max-width: tablet) {
  .browse-product-faq {
    margin: 0 -20px;
    border: none;
    padding: 0px 20px 20px;
  }
  .browse-product-faq .browse-product-slider {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 -20px;
    padding: 10px 0;
  }
  .browse-product-faq .browse-product-slider .slick-list {
    padding: 0 20px;
  }
  .browse-product-faq .browse-product-slider .list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 10px;
    min-width: auto;
    text-align: center;
  }
  .browse-product-faq .browse-product-slider .list span.link {
    min-width: 75px;
    line-height: 1.2;
    word-break: break-word;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 990px) {
  .browse-product-faq {
    margin: 0 -20px;
    border: none;
    padding: 0px 20px 20px;
  }
  .browse-product-faq .browse-product-slider {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 -20px;
    padding: 10px 0;
  }
  .browse-product-faq .browse-product-slider .slick-list {
    padding: 0 20px;
  }
  .browse-product-faq .browse-product-slider .list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 10px;
    min-width: auto;
    text-align: center;
  }
  .browse-product-faq .browse-product-slider .list span.link {
    min-width: 75px;
    line-height: 1.2;
    word-break: break-word;
    margin: 0 auto;
  }
}

/* contact-info-nri */
.contact-info-nri {
  margin-bottom: 30px;
}

.contact-info-nri .contact-num-info {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.contact-info-nri .contact-num-info .c-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -4px;
}

.contact-info-nri .contact-num-info .c-list li {
  background: #fff0e5;
  color: #f37e20;
  border-radius: 40px;
  margin: 0 4px;
  line-height: 1;
  padding: 8px 24px;
  text-align: center;
  min-height: 30px;
  cursor: pointer;
}

.contact-info-nri .contact-num-info .c-list li.active {
  background: #ad1e23;
  color: #fff;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info {
  position: relative;
  display: none;
  width: 330px;
  padding: 15px 30px 15px 20px;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.16);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.16);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.16);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.16);
  border-radius: 10px;
  margin-left: 70px;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -14px;
  width: 14px;
  height: 25px;
  background: url("../images/icons/triangle-w.png") no-repeat;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info.active {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info .icon {
  margin-right: 12px;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info .desc p {
  font-size: 13px;
  color: #666666;
  text-transform: capitalize;
}

.contact-info-nri .contact-num-info .contact-info-list .contact-info .desc h5 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

@media only screen and (max-width: tablet) {
  .contact-info-nri .contact-num-info .c-list li {
    padding: 8px 20px;
  }
  .contact-info-nri .contact-num-info .contact-info-list .contact-info {
    width: auto;
    padding: 15px;
    margin-left: 30px;
  }
}

@media only screen and (max-width: 990px) {
  .contact-info-nri .contact-num-info .c-list li {
    padding: 8px 20px;
  }
  .contact-info-nri .contact-num-info .contact-info-list .contact-info {
    width: auto;
    padding: 15px;
    margin-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-info-nri .contact-num-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-info-nri .contact-num-info .c-list {
    margin-bottom: 15px;
    white-space: nowrap;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .contact-info-nri .contact-num-info .c-list li {
    padding: 8px 25px;
  }
  .contact-info-nri .contact-num-info .contact-info-list {
    width: 100%;
  }
  .contact-info-nri .contact-num-info .contact-info-list .contact-info {
    width: 100%;
    margin: 0;
    padding: 17px 20px;
  }
  .contact-info-nri .contact-num-info .contact-info-list .contact-info::before {
    display: none;
  }
}

/* contact-numbers-inner */
.contact-numbers-inner {
  max-width: 640px;
}

.contact-numbers-inner .desc-note {
  padding-left: 50px;
}

.contact-numbers-inner .desc-note p.note {
  position: relative;
  margin-bottom: 15px;
}

.contact-numbers-inner .desc-note p.note::before {
  content: "*";
  position: absolute;
  left: -15px;
  top: 2px;
}

.contact-numbers-inner .more-city {
  margin: 20px 0;
}

@media only screen and (max-width: tablet) {
  .contact-numbers-inner {
    max-width: 100%;
  }
  .contact-numbers-inner .desc-note {
    padding-left: 0;
  }
  .contact-numbers-inner .desc-note p.note::before {
    position: static;
    margin-right: 5px;
  }
}

@media only screen and (max-width: 990px) {
  .contact-numbers-inner {
    max-width: 100%;
  }
  .contact-numbers-inner .desc-note {
    padding-left: 0;
  }
  .contact-numbers-inner .desc-note p.note::before {
    position: static;
    margin-right: 5px;
  }
}

/* pagination */
.pagination li {
  width: 32px;
  height: 32px;
  background: #fff;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
  line-height: 30px;
  border-radius: 5px;
  cursor: pointer;
}

.pagination li.active, .pagination li:hover {
  background: #f37e20;
  color: #fff;
}

/* branches-inner */
.branches-inner .branches-lists {
  margin-top: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -25px;
}

.branches-inner .branches-lists .branches-list {
  width: calc(33% - 50px);
  margin: 0 25px 25px;
}

.branches-inner .branches-lists .branches-list h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}

.branches-inner .branches-lists .branches-list p {
  line-height: 1.5;
}

@media only screen and (max-width: tablet) {
  .branches-inner .branches-lists .branches-list {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .branches-inner .branches-lists .branches-list {
    width: 100%;
  }
}

/* customer-care-content */
.customer-care-content > .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 0 20px;
}

.customer-care-content .left-content {
  width: 77%;
  padding-right: 30px;
  max-width: 930px;
}

.customer-care-content .left-content h5,
.customer-care-content .left-content h2 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.customer-care-content .right-content {
  width: 23%;
}

.customer-care-content .widget-content {
  padding-top: 50px;
}

@media only screen and (max-width: tablet) {
  .customer-care-content > .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customer-care-content .left-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .customer-care-content .left-content h5,
  .customer-care-content .left-content h2 {
    margin: 25px 0 15px;
  }
  .customer-care-content .right-content {
    width: 100%;
  }
  .customer-care-content .widget-content {
    padding-top: 25px;
  }
  .customer-care-content .widget-content .widget .ic-more {
    margin-top: 17px;
  }
}

@media only screen and (max-width: 990px) {
  .customer-care-content > .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customer-care-content .left-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .customer-care-content .left-content h5,
  .customer-care-content .left-content h2 {
    margin: 25px 0 15px;
  }
  .customer-care-content .right-content {
    width: 100%;
  }
  .customer-care-content .widget-content {
    padding-top: 25px;
  }
  .customer-care-content .widget-content .widget .ic-more {
    margin-top: 17px;
  }
}

/*contact-tab-section  */
.contact-tab-section .tabs-container {
  background: #fff7eb;
  border-radius: 10px;
  padding: 0 30px 30px;
}

.contact-tab-section .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  margin: 0 0 30px 20px;
}

.contact-tab-section .nav-tabs li {
  white-space: nowrap;
}

.contact-tab-section .nav-tabs li a {
  padding: 11px 20px;
}

@media only screen and (max-width: tablet) {
  .contact-tab-section .tabs-container {
    margin: 0 -20px;
    padding: 0 20px 30px;
    border-radius: 0;
  }
  .contact-tab-section .tabs-container .tabs-section {
    margin: 0 -20px 30px;
    width: calc(100% + 40px);
  }
  .contact-tab-section .tabs-container .tabs-section .left-arrow {
    z-index: 3;
  }
  .contact-tab-section .tabs-container .nav-tabs {
    margin: 0;
  }
}

@media only screen and (max-width: 990px) {
  .contact-tab-section .tabs-container {
    margin: 0 -20px;
    padding: 0 20px 30px;
    border-radius: 0;
  }
  .contact-tab-section .tabs-container .tabs-section {
    margin: 0 -20px 30px;
    width: calc(100% + 40px);
  }
  .contact-tab-section .tabs-container .tabs-section .left-arrow {
    z-index: 3;
  }
  .contact-tab-section .tabs-container .nav-tabs {
    margin: 0;
  }
}

/* contact-info-inner */
.contact-info-inner {
  margin: 0 -30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.contact-info-inner .contact-info {
  width: 33%;
  padding: 0 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-right: 1px solid #dedede;
  margin-bottom: 30px;
}

.contact-info-inner .contact-info:last-child, .contact-info-inner .contact-info:nth-child(3n) {
  border-right: none;
}

.contact-info-inner .contact-info:last-child p, .contact-info-inner .contact-info:nth-child(3n) p {
  min-width: 320px;
}

@media only screen and (max-width: 1024px) {
  .contact-info-inner .contact-info:last-child p, .contact-info-inner .contact-info:nth-child(3n) p {
    min-width: auto;
  }
}

.contact-info-inner .contact-info .icon {
  width: 25px;
}

.contact-info-inner .contact-info .desc {
  width: calc(100% - 25px);
  padding-left: 15px;
}

.contact-info-inner .contact-info .desc p {
  font-size: 13px;
  color: #666666;
}

.contact-info-inner .contact-info .desc h5 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

.contact-info-inner .contact-info .call {
  display: none;
}

@media only screen and (max-width: tablet) {
  .contact-info-inner {
    display: block;
    margin: 0 -20px;
  }
  .contact-info-inner .contact-info {
    position: relative;
    width: 100%;
    border-right: none;
    padding: 0 20px;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .contact-info-inner .contact-info .desc {
    padding-right: 25px;
  }
  .contact-info-inner .contact-info .call {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 8px;
  }
  .contact-info-inner .contact-info:not(:last-child) {
    margin: 0;
  }
  .contact-info-inner .contact-info:not(:last-child) .desc {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
  }
  .contact-info-inner .contact-info .icon img {
    width: 24px;
    height: 24px;
  }
  .contact-info-inner .contact-info .desc {
    padding-left: 12px;
  }
  .contact-info-inner .contact-info .desc p {
    font-size: 12px;
    line-height: 1;
    padding-bottom: 5px;
  }
  .contact-info-inner .contact-info .desc h4 {
    font-size: 14px;
    line-height: 1;
  }
  .contact-info-inner .contact-info.selected-city .desc {
    border-bottom: none;
  }
}

@media only screen and (max-width: 990px) {
  .contact-info-inner {
    display: block;
    margin: 0 -20px;
  }
  .contact-info-inner .contact-info {
    position: relative;
    width: 100%;
    border-right: none;
    padding: 0 20px;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .contact-info-inner .contact-info .desc {
    padding-right: 25px;
  }
  .contact-info-inner .contact-info .call {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 8px;
  }
  .contact-info-inner .contact-info:not(:last-child) {
    margin: 0;
  }
  .contact-info-inner .contact-info:not(:last-child) .desc {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
  }
  .contact-info-inner .contact-info .icon img {
    width: 24px;
    height: 24px;
  }
  .contact-info-inner .contact-info .desc {
    padding-left: 12px;
  }
  .contact-info-inner .contact-info .desc p {
    font-size: 12px;
    line-height: 1;
    padding-bottom: 5px;
  }
  .contact-info-inner .contact-info .desc h4 {
    font-size: 14px;
    line-height: 1;
  }
  .contact-info-inner .contact-info.selected-city .desc {
    border-bottom: none;
  }
}

/* contact-info-free */
.contact-info-free .contact-free-inner {
  background: #fff7eb;
  border-radius: 10px;
  padding: 25px 0 0;
  margin: 0 0 30px;
}

.contact-info-free .contact-info-inner {
  max-width: 760px;
  margin: 0;
}

.contact-info-free .contact-info-inner .contact-info {
  margin-bottom: 25px;
}

.contact-info-free .contact-info-inner .contact-info:not(:last-child) {
  margin-bottom: 25px;
}

.contact-info-free .contact-info-inner .contact-info .desc p {
  text-transform: capitalize;
}

@media only screen and (max-width: tablet) {
  .contact-info-free .contact-free-inner {
    margin: 0 -20px 30px;
    padding: 25px 0;
    border-radius: 0;
  }
  .contact-info-free .contact-free-inner .contact-info-inner {
    display: block;
  }
  .contact-info-free .contact-free-inner .contact-info-inner .contact-info:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 990px) {
  .contact-info-free .contact-free-inner {
    margin: 0 -20px 30px;
    padding: 25px 0;
    border-radius: 0;
  }
  .contact-info-free .contact-free-inner .contact-info-inner {
    display: block;
  }
  .contact-info-free .contact-free-inner .contact-info-inner .contact-info:not(:last-child) {
    margin-bottom: 15px;
  }
}

/* other-ways */
.other-ways .other-ways-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.other-ways .other-ways-inner .other-ways-links {
  width: 33%;
}

.other-ways .other-ways-inner .other-ways-links .other-ways-link {
  margin-bottom: 20px;
}

.other-ways .other-ways-inner .other-ways-links .other-ways-link a {
  font-weight: bold;
}

.other-ways .other-ways-inner .other-ways-links .other-ways-link span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.other-ways .other-ways-inner .other-ways-links .other-ways-link img {
  height: 40px;
}

.other-ways .other-ways-inner .email-box {
  width: 66%;
  background: #fff;
  padding: 20px 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 40px;
}

.other-ways .other-ways-inner .email-box .icon {
  width: 32px;
}

.other-ways .other-ways-inner .email-box .desc {
  width: calc(100% - 32px);
  padding-left: 15px;
}

.other-ways .other-ways-inner .email-box .desc h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

.other-ways .other-ways-inner .email-box .desc h3 {
  font-size: 22px;
  color: #ad1e23;
  margin-bottom: 20px;
  font-weight: normal;
}

.other-ways .other-ways-inner .more-info {
  max-width: 620px;
}

.other-ways .other-ways-inner .more-info h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 25px;
}

.other-ways .other-ways-inner .more-info p {
  margin-bottom: 20px;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .other-ways .other-ways-inner .other-ways-links {
    width: 40%;
  }
  .other-ways .other-ways-inner .email-box {
    width: 60%;
  }
}

@media only screen and (max-width: tablet) {
  .other-ways .other-ways-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .other-ways .other-ways-inner .other-ways-links {
    width: 100%;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-bottom: 25px;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link span {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link span img {
    width: 32px;
    height: 32px;
  }
  .other-ways .other-ways-inner .email-box {
    width: 100%;
    margin: 0 0 25px;
  }
  .other-ways .other-ways-inner .email-box .desc h5 {
    margin-top: 0;
    font-size: 14px;
  }
  .other-ways .other-ways-inner .email-box .desc h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .other-ways .other-ways-inner .more-info p:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .other-ways .other-ways-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .other-ways .other-ways-inner .other-ways-links {
    width: 100%;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-bottom: 25px;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link span {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
  .other-ways .other-ways-inner .other-ways-links .other-ways-link span img {
    width: 32px;
    height: 32px;
  }
  .other-ways .other-ways-inner .email-box {
    width: 100%;
    margin: 0 0 25px;
  }
  .other-ways .other-ways-inner .email-box .desc h5 {
    margin-top: 0;
    font-size: 14px;
  }
  .other-ways .other-ways-inner .email-box .desc h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .other-ways .other-ways-inner .more-info p:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* contact-information */
.contact-information {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), color-stop(78.83%, rgba(246, 246, 246, 0)));
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 78.83%);
}

.contact-information .contact-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -30px;
}

.contact-information .contact-lists .contact-list {
  width: 33%;
  padding: 0 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.contact-information .contact-lists .contact-list .icon {
  width: 32px;
  margin-right: 12px;
}

.contact-information .contact-lists .contact-list .desc {
  width: calc(100% - 32px);
}

.contact-information .contact-lists .contact-list .desc h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
}

.contact-information .contact-lists .contact-list .desc p {
  line-height: 1.5;
}

.contact-information .contact-lists .contact-list .desc .info {
  margin-top: 20px;
}

.contact-information .contact-lists .contact-list .desc .info p {
  line-height: 2;
}

.contact-information .contact-lists-top {
  margin-bottom: 40px;
}

.contact-information .contact-lists-top .contact-list:not(:last-child) {
  border-right: 1px solid #dedede;
}

.contact-information .contact-lists-bottom {
  padding-left: 40px;
}

.contact-information .contact-lists-bottom .contact-list {
  width: 28%;
}

.contact-information .contact-lists-bottom .contact-list:first-child {
  width: calc(72% - 90px);
}

.contact-information .contact-lists-bottom .contact-list:first-child p:first-child {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 22px;
}

.contact-information .contact-lists-bottom .contact-list:first-child p:not(:first-child) {
  margin-bottom: 5px;
}

@media only screen and (max-width: tablet) {
  .contact-information .section-inner {
    padding: 40px 20px 25px;
  }
  .contact-information .contact-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .contact-information .contact-lists .contact-list {
    width: 100%;
    padding: 0;
  }
  .contact-information .contact-lists .contact-list:not(:last-child) {
    border: none;
  }
  .contact-information .contact-lists .contact-list .icon {
    width: 24px;
  }
  .contact-information .contact-lists .contact-list .desc {
    border-bottom: 1px solid #dedede;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .contact-information .contact-lists .contact-list .desc h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contact-information .contact-lists .contact-list .desc p br {
    display: none;
  }
  .contact-information .contact-lists.contact-lists-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list {
    width: 100%;
    padding: 0;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list .desc {
    border-bottom: none;
    padding-bottom: 0;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child p:not(:first-child) {
    margin-bottom: 15px;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child .desc {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (max-width: 990px) {
  .contact-information .section-inner {
    padding: 40px 20px 25px;
  }
  .contact-information .contact-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .contact-information .contact-lists .contact-list {
    width: 100%;
    padding: 0;
  }
  .contact-information .contact-lists .contact-list:not(:last-child) {
    border: none;
  }
  .contact-information .contact-lists .contact-list .icon {
    width: 24px;
  }
  .contact-information .contact-lists .contact-list .desc {
    border-bottom: 1px solid #dedede;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .contact-information .contact-lists .contact-list .desc h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contact-information .contact-lists .contact-list .desc p br {
    display: none;
  }
  .contact-information .contact-lists.contact-lists-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list {
    width: 100%;
    padding: 0;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list .desc {
    border-bottom: none;
    padding-bottom: 0;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child p:not(:first-child) {
    margin-bottom: 15px;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:first-child .desc {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .contact-information .contact-lists.contact-lists-bottom .contact-list:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* dropdown-area */
.dropdown-area {
  margin-bottom: 10px;
}

.dropdown-area .country-dropdown {
  display: inline-block;
}

.dropdown-area .country-dropdown label {
  font-size: 12px;
}

.dropdown-area .country-dropdown .ui-selectmenu-button {
  width: 240px;
  margin-right: 20px;
  border-bottom: 1px solid #4b4b4b;
}

.dropdown-area .country-dropdown .ui-selectmenu-button .ui-selectmenu-text {
  padding-bottom: 10px;
}

@media only screen and (max-width: tablet-small) {
  .dropdown-area .country-dropdown {
    width: 100%;
  }
  .dropdown-area .country-dropdown .ui-selectmenu-button {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 639px) {
  .dropdown-area .country-dropdown {
    width: 100%;
  }
  .dropdown-area .country-dropdown .ui-selectmenu-button {
    width: 100%;
    margin-bottom: 25px;
  }
}

/** City dropdown nri : start**/
ul#branches-City-nri-menu {
  height: 250px;
}

ul#city-menu {
  height: 200px;
}

/** City dropdown nri : end**/
.product-category-list-page .page-topbar .links {
  margin-left: auto;
}

.product-category-list-page .page-topbar .links .ic-more:last-child {
  margin-left: 30px;
}

.product-category-list {
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(0%, #f6f6f6), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
}

.product-category-list .product-list-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -10px;
}

.product-category-list .product-list-cards .product-list-card {
  width: 25%;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border: 1px solid rgba(117, 117, 117, 0.06);
  border-radius: 10px;
  margin: 0 10px;
  padding: 12px 20px 20px 15px;
}

.product-category-list .product-list-cards .product-list-card h5 {
  font-size: 14px;
  margin-bottom: 15px;
}

.product-category-list .product-list-cards .product-list-card h5.title {
  position: relative;
  padding-right: 30px;
  margin-bottom: 15px;
}

.product-category-list .product-list-cards .product-list-card h5.title span {
  position: absolute;
  top: 0;
  right: 0;
}

.product-category-list .product-list-cards .product-list-card .list {
  display: block;
}

.product-category-list .product-list-cards .product-list-card .list > li {
  padding-bottom: 8px;
}

.product-category-list .product-list-cards .product-list-card .list > li .cta-title {
  position: relative;
  font-size: 15px;
  width: 100%;
  background: #fff0e6;
  color: #f37e20;
  width: 100%;
  padding: 10px 30px;
  border: none;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 50px;
}

.product-category-list .product-list-cards .product-list-card .list > li a {
  text-decoration: none;
}

.product-category-list .product-list-cards .product-list-card .list > li:hover .cta-title {
  background: #f37e20;
  color: #fff;
}

.product-category-list .product-list-cards .product-list-card .list > li:hover a {
  color: #fff;
}

.product-category-list .product-list-cards .product-list-card .ic-more {
  font-size: 13px;
  margin-top: 12px;
  font-weight: bold;
}

.product-category-list .product-list-cards .product-list-card .ic-more::after {
  background-size: 6px;
  top: 5px;
}

.product-category-list .product-list-cards .product-list-card .ic-more:hover {
  text-decoration: underline;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown {
  position: relative;
  cursor: pointer;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link {
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid #f37e20;
  padding: 8px 12px;
  border-radius: 20px;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link .close {
  display: none;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link h5 {
  display: none;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a {
  text-transform: capitalize;
  display: inline-block;
  font-size: 15px;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a.ic-btn {
  padding: 2px 12px 3px;
  margin-right: 10px;
  color: #fff;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a.ic-btn:hover {
  background: #f37e20;
  color: #fff;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a.ic-more {
  color: #f37e20;
  letter-spacing: 0;
  margin: 0;
  padding-right: 10px;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a.ic-more::after {
  top: 6px;
  width: 5px;
  background-size: 5px;
}

.product-category-list .product-list-cards .product-list-card .cta-dropdown:hover .cta-link {
  display: block;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link {
    padding: 8px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a {
    font-size: 13px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link a.ic-btn {
    padding: 2px 6px 3px;
  }
}

.product-category-list .product-list-cards.slick-slider {
  display: block;
}

.product-category-list .product-list-cards.slick-slider .slick-list {
  padding-left: 0 !important;
}

.product-category-list .product-list-cards.slick-slider .slick-dots {
  position: static;
  margin-top: 25px;
  text-align: center;
}

@media only screen and (max-width: tablet) {
  .product-category-list > .section-inner {
    padding: 0 20px 15px;
  }
  .product-category-list .links {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
  }
  .product-category-list .links .button-group {
    max-width: 200px;
  }
  .product-category-list .links .ic-more {
    margin-top: 20px;
  }
  .product-category-list .product-list-cards.active .slick-list,
  .product-category-list .product-list-cards.active .slick-track {
    width: 100% !important;
    overflow: initial !important;
    -webkit-transform: initial !important;
            transform: initial !important;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link.active {
    display: block !important;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    border-radius: 10px;
    padding: 20px 15px 25px;
    margin-top: 100px;
    text-align: center;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner h5 {
    text-align: left;
    display: block;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner .close {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 12px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner .close img {
    width: 10px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner a.ic-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown:hover .cta-link {
    display: none;
  }
}

@media only screen and (max-width: 990px) {
  .product-category-list > .section-inner {
    padding: 0 20px 15px;
  }
  .product-category-list .links {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
  }
  .product-category-list .links .button-group {
    max-width: 200px;
  }
  .product-category-list .links .ic-more {
    margin-top: 20px;
  }
  .product-category-list .product-list-cards.active .slick-list,
  .product-category-list .product-list-cards.active .slick-track {
    width: 100% !important;
    overflow: initial !important;
    -webkit-transform: initial !important;
            transform: initial !important;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link.active {
    display: block !important;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
    border-radius: 10px;
    padding: 20px 15px 25px;
    margin-top: 100px;
    text-align: center;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner h5 {
    text-align: left;
    display: block;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner .close {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 12px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner .close img {
    width: 10px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown .cta-link-inner a.ic-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  .product-category-list .product-list-cards .product-list-card .cta-dropdown:hover .cta-link {
    display: none;
  }
}

@media only screen and (max-width: tablet-small) {
  .product-category-list .product-list-cards.slick-slider {
    margin: 0 -20px 0 -8px;
  }
}

@media only screen and (max-width: 639px) {
  .product-category-list .product-list-cards.slick-slider {
    margin: 0 -20px 0 -8px;
  }
}

/* product-tab-section */
.product-tab-section {
  background: #f6f6f6;
}

.product-tab-section .section-inner {
  padding: 10px 20px 0;
}

.product-tab-section .product-category-tab {
  background: #fff7eb;
}

.product-tab-section .product-category-tab .section-inner {
  padding: 40px 20px 30px;
}

.product-tab-section .product-category-tab .product-cat-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -12px;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card {
  width: calc(33% - 20px);
  margin: 0 12px 24px;
  border-radius: 10px;
  overflow: hidden;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .media img {
  width: 100%;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0 0 10px 10px;
  padding: 25px;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content h4 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content ul li a {
  display: block;
  position: relative;
  color: #f37e20;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 0 15px 0;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content ul li a .icon {
  display: inline-block;
  width: 7px;
  height: 9px;
  margin-left: 5px;
  background: url("../images/icons/more.png") no-repeat center;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content ul li a:hover {
  text-decoration: underline;
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content .link {
  margin-top: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content .link a {
  font-size: 15px;
  line-height: 16px;
}

@media only screen and (max-width: tablet) {
  .product-tab-section .section-title {
    max-width: 280px;
    font-size: 26px;
    margin: 0 auto 24px;
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card {
    width: calc(50% - 24px);
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .product-tab-section .section-title {
    max-width: 280px;
    font-size: 26px;
    margin: 0 auto 24px;
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card {
    width: calc(50% - 24px);
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card .content h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .product-tab-section .product-category-tab .section-inner {
    padding: 30px 20px 20px;
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card {
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .product-tab-section .product-category-tab .section-inner {
    padding: 30px 20px 20px;
  }
  .product-tab-section .product-category-tab .product-cat-cards .product-cat-card {
    width: 100%;
  }
}

.logout-page .ic-btn.disable {
  background: #e7e7e7;
  border-color: #e7e7e7;
  pointer-events: none;
  color: #c4c4c4;
}

.star {
  display: inline-block;
  width: 27px;
  height: 27px;
  background: url("../images/logout/star-y.svg") no-repeat;
}

.logout-top {
  background: #a01319 url("../images/logout/logout-bg.jpg") no-repeat bottom;
  background-size: cover;
}

.logout-top .section-inner {
  padding-top: 20px;
}

.logout-top .lt-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -5px;
}

.logout-top .lt-cards .lt-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  margin: 0 5px;
  width: calc(100% / 3);
  padding: 0 40px 30px;
  border-radius: 10px;
  overflow: hidden;
}

.logout-top .lt-cards .lt-card h4 {
  font-size: 18px;
  line-height: 32px;
}

.logout-top .lt-cards .lt-card .ic-btn {
  width: 100%;
  height: 40px;
  padding: 10px 34px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.logout-top .lt-cards .lt-card .ic-btn.disable {
  background: #e7e7e7;
  border-color: #e7e7e7;
  pointer-events: none;
  color: #c4c4c4;
}

.logout-top .lt-cards .lt-card.transaction-box {
  padding: 20px;
}

.logout-top .lt-cards .lt-card.transaction-box .icon {
  margin: 10px 0 15px;
}

.logout-top .lt-cards .lt-card.transaction-box .icon img {
  width: 100%;
  border-radius: 10px;
}

.logout-top .lt-cards .lt-card.transaction-box p {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 30px;
  font-weight: 400;
  max-width: 300px;
  padding: 0;
}

.logout-top .lt-cards .lt-card.transaction-box .ic-btn {
  max-width: 255px;
}

.logout-top .lt-cards .lt-card.share-box {
  padding-top: 20px;
}

.logout-top .lt-cards .lt-card.rating-box .heading {
  background: #fdf6f4;
  margin: 0 -40px 20px;
  padding: 16px 30px;
  border-radius: 10px 10px 0 0;
}

.logout-top .lt-cards .lt-card.rating-box .heading .rating-txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.logout-top .lt-cards .lt-card.rating-box .heading .rating-txt .star {
  margin-right: 5px;
}

.logout-top .lt-cards .lt-card.rating-box .heading .rating-txt p {
  font-size: 16px;
}

.logout-top .lt-cards .lt-card.rating-box .tooltips {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border: 1px solid rgba(199, 199, 199, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  padding: 12.5px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.logout-top .lt-cards .lt-card.rating-box .tooltips::before, .logout-top .lt-cards .lt-card.rating-box .tooltips::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.logout-top .lt-cards .lt-card.rating-box .tooltips::before {
  bottom: -8px;
  left: calc(50% - 13px);
  border-top: solid 7px rgba(199, 199, 199, 0.8);
  border-right: solid 10px transparent;
  border-left: solid 10px transparent;
}

.logout-top .lt-cards .lt-card.rating-box .tooltips::after {
  bottom: -6px;
  left: calc(50% - 11px);
  border-top: solid 7px #fff;
  border-right: solid 9px transparent;
  border-left: solid 9px transparent;
}

.logout-top .lt-cards .lt-card.rating-box .rating-slider {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 270px;
  margin: 0 auto 40px;
}

.logout-top .lt-cards .lt-card.rating-box .rating-slider .slick-list {
  max-width: 165px;
  margin: 0 auto;
}

.logout-top .lt-cards .lt-card.rating-box .rating-slider .slick-arrow.slick-prev, .logout-top .lt-cards .lt-card.rating-box .rating-slider .slick-arrow.slick-next {
  position: static;
  width: 45px;
  height: 45px;
  border: 1.71536px solid #f37e20;
  background-size: 8px;
  background-position: 18px 14px;
}

.logout-top .lt-cards .lt-card.rating-box .rating-slider .num {
  display: inline-block;
  border: 1px solid #bbbbbb;
  width: 45px !important;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  margin: 0 7px;
  cursor: pointer;
}

.logout-top .lt-cards .lt-card.rating-box .rating-slider .num:hover, .logout-top .lt-cards .lt-card.rating-box .rating-slider .num.active {
  background: #8bd541;
  color: #fff;
}

.logout-top .lt-cards .lt-card.voucher-box {
  overflow: initial;
}

.logout-top .lt-cards .lt-card.voucher-box .heading {
  background: #fdf6f4;
  margin: 0 -40px 15px;
  padding: 10px 20px 10px 30px;
  border-radius: 10px 10px 0 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: Center;
          align-items: Center;
  -webkit-align-items: Center;
  -ms-flex-align: Center;
}

.logout-top .lt-cards .lt-card.voucher-box .heading h4 {
  margin-top: 10px;
  color: #ad1e23;
  letter-spacing: -1px;
  font-size: 15px;
  line-height: 1.1;
}

.logout-top .lt-cards .lt-card.voucher-box .heading img {
  margin-right: 10px;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form {
  /* Firefox */
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"],
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"],
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"] {
  margin-bottom: 15px;
  border-width: 0 0 1px 0;
  width: 100%;
  border-bottom: 1px solid rgba(199, 199, 199, 0.8);
  padding: 0 0 5px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"]:focus,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"]:focus,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"]:focus {
  border-bottom: 1px solid rgba(199, 199, 199, 0.8);
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"]::-webkit-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"]::-webkit-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"]::-webkit-input-placeholder {
  color: #999999;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"]:-ms-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"]:-ms-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"]:-ms-input-placeholder {
  color: #999999;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"]::-ms-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"]::-ms-input-placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"]::-ms-input-placeholder {
  color: #999999;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="text"]::placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"]::placeholder,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="email"]::placeholder {
  color: #999999;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input::-webkit-outer-spin-button,
.logout-top .lt-cards .lt-card.voucher-box .voucher-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form input[type="number"] {
  -moz-appearance: textfield;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form .form-control {
  position: relative;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form .form-control .error {
  position: absolute;
  bottom: -2px;
  width: 100%;
  left: 0;
  font-size: 10px;
  color: #ff0000;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form #product-select-button {
  width: 100%;
  border-bottom: 1px solid rgba(199, 199, 199, 0.8);
  margin-top: 0;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form #product-select-button .ui-selectmenu-text {
  color: #999999;
  font-weight: 400;
  font-size: 14px;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form .ui-selectmenu-button-closed .ui-icon-triangle-1-s {
  border-top: 5px solid #f37e20;
}

.logout-top .lt-cards .lt-card.voucher-box .voucher-form #ms-list-1 > .ms-options {
  min-height: auto !important;
  max-height: 110px !important;
}

.logout-top .lt-cards .lt-card.voucher-box .note {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
}

.logout-top .lt-cards .lt-card.voucher-box .note input {
  position: relative;
  top: 2px;
}

.logout-top .lt-cards .lt-card.voucher-box .ic-btn {
  margin-top: 10px;
}

.logout-top .lt-cards .lt-card .amazon-box {
  background: #fff2eb url("../images/logout/amazon-bg.png") bottom no-repeat;
  padding: 20px 40px 30px;
  margin: 0 -40px -30px;
  border-radius: 10px;
}

.logout-top .lt-cards .lt-card .amazon-box h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
}

.logout-top .lt-cards .lt-card .amazon-box .discount-box {
  margin-bottom: 50px;
}

.logout-top .lt-cards .lt-card .amazon-box .discount-box h4 {
  color: #b02a30;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 10px;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .label {
  font-size: 12px;
  line-height: 23px;
  margin-bottom: 5px;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  border: 1px dashed #074a86;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  letter-spacing: 0.05em;
  padding: 14px 20px 14px 25px;
  min-height: 50px;
  margin-right: 15px;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  color: #074a86;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  min-width: 150px;
  margin-right: 20px;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
  font-size: 12px;
  font-weight: bold;
  color: #f37e20;
  text-transform: uppercase;
  cursor: pointer;
}

.logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-tags {
  margin-bottom: 0;
}

@media only screen and (max-width: tablet) {
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content {
    margin-bottom: 30px;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon {
    padding: 14px;
    margin: 0 0 15px;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
    font-size: 16px;
    width: calc(100% - 100px);
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 990px) {
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content {
    margin-bottom: 30px;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon {
    padding: 14px;
    margin: 0 0 15px;
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .coupon {
    font-size: 16px;
    width: calc(100% - 100px);
  }
  .logout-top .lt-cards .lt-card .amazon-box .offer-coupon-content .offer-coupon-area .offer-Coupon .copy {
    text-transform: uppercase;
  }
}

.logout-top .lt-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 15px;
}

.logout-top .lt-title p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.logout-top .lt-title a {
  margin-left: auto;
  color: #fff;
}

.logout-top .lt-title a::after {
  background: url("../images/icons/more-w.png") no-repeat;
}

@media only screen and (max-width: tablet) {
  .logout-top .lt-title {
    margin-bottom: 30px;
  }
  .logout-top .lt-title a {
    display: none !important;
  }
}

@media only screen and (max-width: 990px) {
  .logout-top .lt-title {
    margin-bottom: 30px;
  }
  .logout-top .lt-title a {
    display: none !important;
  }
}

.logout-top .card-nav {
  display: none;
}

.logout-top .card-nav .card-nav-icon {
  display: inline-block;
  color: #fff;
  padding-left: 28px;
  margin-right: 35px;
  padding-bottom: 5px;
  min-height: 25px;
  line-height: 25px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid #b13034;
}

.logout-top .card-nav .card-nav-icon.active {
  border-bottom: 2px solid #f37e20;
}

.logout-top .card-nav .rate-icon {
  background: url("../images/logout/rate-g.svg") no-repeat;
}

.logout-top .card-nav .rate-icon.active {
  background: url("../images/logout/rate-o.svg") no-repeat;
}

.logout-top .card-nav .share-icon {
  background: url("../images/logout/share-g.svg") no-repeat;
}

.logout-top .card-nav .share-icon.active {
  background: url("../images/logout/share-o.svg") no-repeat;
}

.logout-top .card-nav .refer-icon {
  background: url("../images/logout/refer-g.svg") no-repeat;
}

.logout-top .card-nav .refer-icon.active {
  background: url("../images/logout/refer-o.svg") no-repeat;
}

@media only screen and (max-width: tablet) {
  .logout-top {
    background: #b23135 url("../images/logout/logout-mob-bg.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .logout-top .card-nav {
    display: block;
  }
  .logout-top .lt-cards {
    display: block;
    margin: 10px -20px -10px -10px;
  }
  .logout-top .lt-cards .lt-card {
    width: 100%;
    margin: 10px 10px 10px 0;
    padding: 0 15px 20px;
    opacity: 0.5;
  }
  .logout-top .lt-cards .lt-card.slick-current {
    opacity: 1;
  }
  .logout-top .lt-cards .lt-card.rating-box .heading {
    margin: 0 -20px 20px;
    padding: 16px 20px;
  }
  .logout-top .lt-cards .lt-card.voucher-box .heading {
    margin: 0 -15px 20px;
    padding: 16px 20px;
  }
  .logout-top .slick-dots {
    position: static;
    text-align: center;
    padding: 0;
    margin: 10px 0 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .logout-top {
    background: #b23135 url("../images/logout/logout-mob-bg.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .logout-top .card-nav {
    display: block;
  }
  .logout-top .lt-cards {
    display: block;
    margin: 10px -20px -10px -10px;
  }
  .logout-top .lt-cards .lt-card {
    width: 100%;
    margin: 10px 10px 10px 0;
    padding: 0 15px 20px;
    opacity: 0.5;
  }
  .logout-top .lt-cards .lt-card.slick-current {
    opacity: 1;
  }
  .logout-top .lt-cards .lt-card.rating-box .heading {
    margin: 0 -20px 20px;
    padding: 16px 20px;
  }
  .logout-top .lt-cards .lt-card.voucher-box .heading {
    margin: 0 -15px 20px;
    padding: 16px 20px;
  }
  .logout-top .slick-dots {
    position: static;
    text-align: center;
    padding: 0;
    margin: 10px 0 0 0;
  }
}

.logout-bottom {
  background: #f6f6f6;
}

.logout-bottom .lb-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -5px;
}

.logout-bottom .lb-cards .lb-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 10px;
  margin: 0 5px;
  width: calc(100% / 3 - 10px);
  padding: 20px;
}

.logout-bottom .lb-cards .lb-card h5 {
  font-size: 14px;
  margin-bottom: 18px;
}

.logout-bottom .lb-cards .lb-card .heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.logout-bottom .lb-cards .lb-card .heading a {
  margin-left: auto;
}

.logout-bottom .lb-cards .lb-card .lb-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.logout-bottom .lb-cards .lb-card .lb-list .media {
  min-width: 145px;
  margin-right: 20px;
}

.logout-bottom .lb-cards .lb-card .lb-list .content p {
  max-width: 155px;
  margin-bottom: 10px;
}

.logout-bottom .lb-cards .lb-card .lb-list .content .ic-more {
  font-size: 12px;
  font-weight: bold;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider {
  padding: 0 30px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  background: #fff;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card img {
  width: 70px;
  margin-right: 10px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card p {
  padding-left: 10px;
  color: #000;
  max-width: 180px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  text-decoration: none;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card a:hover {
  color: #f37e20;
  text-decoration: none;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .handpicked-card a:hover p {
  color: #f37e20;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow {
  top: calc(50% - 30px);
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
  background-color: #fff0e6;
  border: none;
  z-index: 9;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-prev {
  left: -10px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-next {
  right: -10px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-dots {
  position: relative;
  bottom: -10px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-dots li {
  margin: 0 3px;
}

.logout-bottom .lb-cards .lb-card .handpicked-slider .slick-dots li.slick-active {
  width: 7px;
  height: 7px;
}

@media only screen and (max-width: tablet) {
  .logout-bottom .section-inner {
    padding: 20px 0 20px 20px !important;
  }
  .logout-bottom .lb-cards {
    display: block;
    margin: -10px 0;
  }
  .logout-bottom .lb-cards .lb-card {
    width: 100%;
    margin: 10px 15px 10px 0;
  }
  .logout-bottom .lb-cards .lb-card .lb-list .content .ic-more {
    font-size: 9.5px;
  }
  .logout-bottom .lb-cards .slick-list {
    padding-left: 0 !important;
  }
  .logout-bottom .lb-cards .slick-dots {
    text-align: center;
    position: static;
  }
}

@media only screen and (max-width: 990px) {
  .logout-bottom .section-inner {
    padding: 20px 0 20px 20px !important;
  }
  .logout-bottom .lb-cards {
    display: block;
    margin: -10px 0;
  }
  .logout-bottom .lb-cards .lb-card {
    width: 100%;
    margin: 10px 15px 10px 0;
  }
  .logout-bottom .lb-cards .lb-card .lb-list .content .ic-more {
    font-size: 9.5px;
  }
  .logout-bottom .lb-cards .slick-list {
    padding-left: 0 !important;
  }
  .logout-bottom .lb-cards .slick-dots {
    text-align: center;
    position: static;
  }
}

@media only screen and (max-width: tablet-small) {
  .logout-bottom .lb-cards .lb-card .lb-list .media {
    min-width: 120px;
    margin-right: 10px;
  }
  .logout-bottom .lb-cards .lb-card .lb-list .media img {
    width: 120px;
  }
  .logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-prev {
    left: -20px;
  }
  .logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-next {
    right: -20px;
  }
}

@media only screen and (max-width: 639px) {
  .logout-bottom .lb-cards .lb-card .lb-list .media {
    min-width: 120px;
    margin-right: 10px;
  }
  .logout-bottom .lb-cards .lb-card .lb-list .media img {
    width: 120px;
  }
  .logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-prev {
    left: -20px;
  }
  .logout-bottom .lb-cards .lb-card .handpicked-slider .slick-arrow.slick-next {
    right: -20px;
  }
}

.share-box h4 {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 5px;
}

.share-box .social-links .link {
  width: 45px;
  height: 45px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 20px;
}

.share-box .social-links .link:last-child {
  margin-right: 0;
}

.share-box .social-links .link.wa {
  background: url("../images/logout/whatsapp.svg") no-repeat;
}

.share-box .social-links .link.fb {
  background: url("../images/logout/fb.svg") no-repeat;
}

.share-box .social-links .link.tw {
  background: url("../images/logout/tw.svg") no-repeat;
}

.share-box .social-links .link.ln {
  background: url("../images/logout/ln.svg") no-repeat;
}

.share-box .social-links .link.ig {
  background: url("../images/logout/ig.svg") no-repeat;
}

.share-box .social-links .link.insta {
  background: url("../images/logout/insta-follow.svg") no-repeat;
}

.share-box .youtube-text {
  margin: 10px 0 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border: 1px solid rgba(199, 199, 199, 0.8);
  border-radius: 50px;
  padding: 7px 15px;
  height: 40px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.share-box .youtube-text input {
  width: calc(100% - 55px);
  color: #666666;
  border: none;
  background: transparent;
  font-weight: 600;
}

.share-box .youtube-text span {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  color: #f37e20;
  width: 85px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.share-box .social-box {
  width: 330px;
}

.share-box .social-box .social-group {
  display: block;
}

.share-box .social-box .sb-text {
  display: inline-block;
  margin-right: 12px;
}

.share-box .social-box .sb-text.fb-txt, .share-box .social-box .sb-text.tw-txt {
  margin-bottom: 5px;
}

.share-box .social-box .sb-text.fb-txt {
  position: relative;
  left: -12px;
}

.share-box .social-box .sb-text.tw-txt {
  position: relative;
  top: -4px;
  left: -12px;
}

.share-box .social-box .sb-text.ln-txt {
  position: relative;
  top: -15px;
}

.share-box .social-box .sb-text.ln-txt iframe {
  height: 25px !important;
}

@media only screen and (max-width: tablet) {
  .share-box .social-box {
    width: 90%;
  }
  .share-box .social-box .social-group {
    display: inline-block;
  }
  .share-box .social-box .sb-text {
    margin-bottom: 0 !important;
  }
  .share-box .social-box .sb-text.tw-txt {
    top: 0;
  }
}

@media only screen and (max-width: 990px) {
  .share-box .social-box {
    width: 90%;
  }
  .share-box .social-box .social-group {
    display: inline-block;
  }
  .share-box .social-box .sb-text {
    margin-bottom: 0 !important;
  }
  .share-box .social-box .sb-text.tw-txt {
    top: 0;
  }
}

@media only screen and (max-width: tablet-wide) {
  .share-box .social-links .link {
    margin-right: 12px;
  }
  .share-box .social-box {
    width: 100%;
  }
  .share-box .social-box .sb-text.tw-txt {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .share-box .social-links .link {
    margin-right: 12px;
  }
  .share-box .social-box {
    width: 100%;
  }
  .share-box .social-box .sb-text.tw-txt {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .share-box .social-links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .share-box .social-box .social-group {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .share-box .social-box .sb-text.ln-txt {
    top: -7px;
  }
}

/* rating-section */
.rating-section .section-inner {
  padding: 20px 20px 0;
}

.rating-section textarea {
  width: 100%;
  height: 56px;
  border: 1px solid #f37e20;
  resize: none;
  padding: 5px 10px;
}

.rating-section .note {
  font-size: 13px;
  line-height: 16px;
  text-align: right;
  margin-bottom: 20px;
  max-width: 100%;
}

.rating-section .ic-btn {
  min-width: 180px;
}

.rating-section .rating-heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.rating-section .rating-heading p {
  font-size: 18px;
  line-height: 32px;
}

.rating-section .rating-heading .success-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background: url("../images/logout/success-icon.png") no-repeat;
}

.rating-section .rating-heading .rate-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border: 1px solid #e7ddd5;
  border-radius: 2px;
  margin-left: 10px;
  padding: 0 5px;
}

.rating-section .rating-heading .rate-box .star {
  width: 18px;
  height: 18px;
  background-size: 18px;
  margin-right: 5px;
}

@media only screen and (max-width: tablet) {
  .rating-section .rating-heading .rate-box {
    margin-left: auto;
  }
  .rating-section textarea {
    height: 150px;
  }
  .rating-section .ic-btn {
    min-width: 320px;
  }
  .rating-section .note {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .rating-section .rating-heading .rate-box {
    margin-left: auto;
  }
  .rating-section textarea {
    height: 150px;
  }
  .rating-section .ic-btn {
    min-width: 320px;
  }
  .rating-section .note {
    margin-bottom: 20px;
  }
}

.rating-contents .rating-content h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.rating-contents .rating-content p {
  max-width: 550px;
  color: #666666;
  margin-bottom: 10px;
}

.rating-contents .rating-content form {
  max-width: 625px;
  width: 100%;
}

.rating-contents .rating-content .inner-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: -40px;
}

.rating-contents .rating-content .left-content {
  padding: 40px 0;
  margin-right: 95px;
}

.rating-contents .rating-content .right-content {
  max-width: 500px;
  width: 100%;
  padding: 40px 0;
  background: #fdf6f4;
}

.rating-contents .rating-content .right-content .share-box {
  max-width: 320px;
  margin: 0 auto;
}

@media only screen and (max-width: tablet) {
  .rating-contents .rating-content .inner-content {
    display: block;
  }
  .rating-contents .rating-content .left-content {
    padding: 25px 0 50px;
    margin-right: 0;
  }
  .rating-contents .rating-content .right-content {
    width: calc(100% + 40px);
    padding: 40px 30px;
    margin: 0 -20px;
  }
  .rating-contents .rating-content form {
    text-align: center;
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .rating-contents .rating-content .inner-content {
    display: block;
  }
  .rating-contents .rating-content .left-content {
    padding: 25px 0 50px;
    margin-right: 0;
  }
  .rating-contents .rating-content .right-content {
    width: calc(100% + 40px);
    padding: 40px 30px;
    margin: 0 -20px;
  }
  .rating-contents .rating-content form {
    text-align: center;
    max-width: 100%;
  }
}

.rating-form-content {
  max-width: 840px;
  margin-bottom: 85px;
}

.rating-form-content h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.rating-form-content .form-controls .form-control {
  max-width: 350px;
  width: 100%;
  margin-bottom: 50px;
}

.rating-form-content .form-controls .form-control.full-width {
  max-width: 100%;
  margin-bottom: 15px;
}

.rating-form-content .form-controls .form-control.msg-content {
  margin-top: -10px;
}

.rating-form-content .form-controls .form-control label {
  display: block;
  margin-bottom: 15px;
  max-width: 565px;
}

.rating-form-content .form-controls .form-control textarea {
  margin-top: 10px;
  resize: none;
}

@media only screen and (max-width: 767px) {
  .rating-form-content .form-controls .form-control {
    max-width: 100%;
    margin-bottom: 35px;
  }
  .rating-form-content .form-controls .form-control .radio-style-box .radio-wrap.w50 {
    max-width: 150px;
  }
  .rating-form-content .form-controls .form-control .checkmark {
    font-size: 12px;
  }
}

/* thankyou-section */
.thankyou-section .section-inner {
  padding-bottom: 100px;
}

.thankyou-section .thankyou-content .icon {
  text-align: center;
  margin-bottom: 25px;
}

.thankyou-section .thankyou-content p {
  text-align: center;
  font-size: 26px;
  line-height: 1.4;
}

.thankyou-section .thankyou-content .ic-more {
  font-weight: 700;
}

.thankyou-section .thankyou-content .low-rate-thankyou-content {
  margin-bottom: 30px;
}

.thankyou-section .thankyou-content .lrate-content {
  text-align: center;
}

.thankyou-section .thankyou-content .lrate-content .ic-more {
  margin-top: 35px;
}

.thankyou-section .thankyou-content .hrate-content {
  text-align: center;
  margin-bottom: 40px;
}

.thankyou-section .thankyou-content .hrate-content .share-box {
  text-align: left;
  max-width: 740px;
  margin: 40px auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.thankyou-section .thankyou-content .hrate-content .share-box .youtube-text {
  margin-bottom: 0;
}

.thankyou-section .thankyou-content .hrate-content .share-box .left-content,
.thankyou-section .thankyou-content .hrate-content .share-box .right-content {
  width: 50%;
}

.thankyou-section .thankyou-content .hrate-content .share-box .left-content {
  position: relative;
  margin-right: 50px;
}

.thankyou-section .thankyou-content .hrate-content .share-box .left-content::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: calc(100% - 30px);
  right: -50px;
  bottom: 0;
}

.thankyou-section .thankyou-content .hrate-content .share-box .right-content {
  margin-left: 50px;
}

.thankyou-section .thankyou-content .ic-more-link {
  margin-top: 35px;
}

@media only screen and (max-width: tablet) {
  .thankyou-section .section-inner {
    padding-bottom: 50px;
  }
  .thankyou-section .thankyou-content p {
    font-size: 20px;
  }
  .thankyou-section .thankyou-content .hrate-content .share-box {
    display: block;
    overflow: hidden;
  }
  .thankyou-section .thankyou-content .hrate-content .share-box .left-content,
  .thankyou-section .thankyou-content .hrate-content .share-box .right-content {
    width: 100%;
    margin: 30px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .thankyou-section .section-inner {
    padding-bottom: 50px;
  }
  .thankyou-section .thankyou-content p {
    font-size: 20px;
  }
  .thankyou-section .thankyou-content .hrate-content .share-box {
    display: block;
    overflow: hidden;
  }
  .thankyou-section .thankyou-content .hrate-content .share-box .left-content,
  .thankyou-section .thankyou-content .hrate-content .share-box .right-content {
    width: 100%;
    margin: 30px 0 0;
  }
}

.tnc_more {
  display: none;
}

.more_TNC {
  display: block;
  color: navy;
  font-size: 13px;
  padding: 3px;
  cursor: pointer;
}

label#product-err {
  position: inherit;
}

#more {
  display: none;
}

.logout-bottom {
  background: #d4d4d4;
}

.logout-bottom > .section-inner {
  padding: 20px 20px;
}

/* calculator-container */
.page-calculators-section.calculators-section {
  margin: 20px 0 40px;
}

.page-calculators-section.calculators-section .left-panel .card-panel .card-panel-bottom ul li {
  font-size: 15px;
  line-height: 25px;
}

.page-calculators-section.calculators-section .right-panel .tab-pane {
  padding-top: 0;
}

.page-calculators-section.calculators-section .right-panel .tab-pane h3 {
  font-size: 26px;
}

.page-calculators-section.calculators-section .calculator-nps-container input[type="range"] {
  height: 2px;
}

.page-calculators-section.calculators-section .result-container .font-18 {
  font-size: 18px !important;
}

.page-calculators-section.calculators-section hr {
  opacity: 0.2 !important;
}

@media only screen and (max-width: tablet) {
  .page-calculators-section.calculators-section {
    margin-top: 110px;
  }
  .page-calculators-section.calculators-section .calculator-nps-container .input-style {
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .page-calculators-section.calculators-section {
    margin-top: 110px;
  }
  .page-calculators-section.calculators-section .calculator-nps-container .input-style {
    max-width: 100%;
  }
}

@media only screen and (max-width: 580px) {
  .page-calculators-section.calculators-section .page-nps .cal-dropdown .ui-selectmenu-button {
    width: 100%;
    max-width: 100%;
  }
}

.greylight-bg {
  background-color: #fff7eb;
}

.overlap-padding-bottom-75 {
  padding-bottom: 75px;
}

.overlap-top-75 {
  margin-top: -75px;
}

.bullet-list-content {
  padding-top: 10px !important;
}

.bullet-list-content .info {
  font-size: 16px;
  line-height: 138%;
  margin-bottom: 20px;
  color: #666666;
}

.bullet-list-content ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
}

.bullet-list-content ul li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.bullet-list-content ul li:last-child {
  margin-bottom: 0;
}

table.custom-table {
  margin-bottom: 20px;
}

table.custom-table th {
  background: #fdf6f4;
  color: #666666;
  padding: 16px 30px 18px;
  text-align: left;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
}

table.custom-table th,
table.custom-table td {
  border-right: 1px dashed rgba(102, 102, 102, 0.2);
}

table.custom-table th:last-child,
table.custom-table td:last-child {
  border: none;
}

table.custom-table td {
  padding: 15px 30px;
  font-size: 14px;
}

table.custom-table tr {
  border: 1px solid rgba(102, 102, 102, 0.2);
}

table.left-column-heading-table tr td.heading {
  background: rgba(7, 74, 134, 0.05);
  width: 255px;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
}

table.left-column-heading-table tr td.value {
  font-size: 14px;
  line-height: 26px;
}

.multiselect-dropdown {
  position: relative;
}

.multiselect-dropdown .ui-selectmenu-button-closed,
.multiselect-dropdown .ui-selectmenu-button-open {
  margin-bottom: 0;
  border: 0;
  width: 100% !important;
}

.multiselect-dropdown .ui-selectmenu-button-closed .ui-selectmenu-text,
.multiselect-dropdown .ui-selectmenu-button-open .ui-selectmenu-text {
  font-weight: 300;
  font-size: 14px;
  padding-bottom: 0px;
  color: #a6a6a6;
}

.multiselect-dropdown .ms-options-wrap {
  width: 100%;
  background: transparent !important;
}

.multiselect-dropdown .ms-options-wrap > button {
  border-color: rgba(199, 199, 199, 0.8) !important;
  border-width: 0 !important;
  font-size: 14px;
  color: #999999;
  padding-top: 0;
  background: transparent !important;
}

.multiselect-dropdown .ms-options-wrap > button:hover, .multiselect-dropdown .ms-options-wrap > button:focus, .multiselect-dropdown .ms-options-wrap > button:active {
  background: transparent !important;
}

.multiselect-dropdown .ms-options-wrap > button:after {
  border-top-color: #a6a6a6 !important;
}

.multiselect-dropdown .ms-options-wrap > button,
.multiselect-dropdown .ms-options-wrap > button:focus {
  border-color: rgba(199, 199, 199, 0.8);
  border-width: 0 0 1px 0;
  font-size: 14px;
  color: #999999;
  padding-top: 0;
}

.multiselect-dropdown .ms-options-wrap > button::after,
.multiselect-dropdown .ms-options-wrap > button:focus::after {
  border-top-color: #f37e20;
}

.multiselect-dropdown .ms-options-wrap.ms-active > .ms-options {
  min-height: auto !important;
}

.multiselect-dropdown .ms-options-wrap > .ms-options {
  border: 0 !important;
}

.multiselect-dropdown .ms-options-wrap > .ms-options > ul li {
  padding-left: 2px;
}

.multiselect-dropdown .ms-options-wrap > .ms-options > ul input[type="checkbox"] {
  left: 0px;
  top: 0px;
  position: relative;
  width: 15px;
}

.multiselect-dropdown .ms-options-wrap > .ms-options > ul label {
  padding: 6px 6px 6px 5px;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.faq-button-group {
  padding-top: 15px;
}

.desktop-nav-tabs-override {
  max-width: 1260px;
  margin: 0 auto;
}

.desktop-nav-tabs-override .left-arrow,
.desktop-nav-tabs-override .right-arrow {
  display: block;
}

.desktop-nav-tabs-override .nav-tabs {
  margin: 0 auto;
  display: block;
  max-width: 98%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.desktop-nav-tabs-override .nav-tabs li {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-right: -10px;
}

.desktop-nav-tabs-override .nav-tabs:before, .desktop-nav-tabs-override .nav-tabs:after {
  width: 20px !important;
  display: inline-block;
}

.desktop-nav-tabs-override .nav-tabs:before {
  -webkit-transform: matrix(1, 0, 0, -1, 4, -6);
          transform: matrix(1, 0, 0, -1, 4, -6);
}

.desktop-nav-tabs-override .nav-tabs:after {
  -webkit-transform: matrix(-1, 0, 0, 1, 0, -6);
          transform: matrix(-1, 0, 0, 1, 0, -6);
}

.component-heading .section-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 43px;
  color: #ad1e23;
  margin-bottom: 0;
  text-transform: capitalize;
}

.banner-component {
  background: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #eeeeee 0%, rgba(246, 246, 246, 0) 100%);
  padding-bottom: 20px;
  overflow: hidden;
}

.banner-component.banner-component .media img {
  border: 1px solid #dcdcdc;
  border-radius: 20px;
}

.banner-component + .benefit-short-card .cards-lists {
  margin-top: -100px;
}

.banner-slider {
  /*  full-width-slider  */
}

.banner-slider .content h3,
.banner-slider .content h1 {
  font-weight: bold;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  margin-bottom: 15px;
  margin-top: 0;
}

.banner-slider .content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 23px;
  color: #3d3d3d;
}

.banner-slider .content p:last-child {
  margin-bottom: 0;
}

.banner-slider .media .d-img,
.banner-slider .media .m-img {
  border-radius: 20px;
  overflow: hidden;
}

.banner-slider .media .d-img img,
.banner-slider .media .m-img img {
  width: 100%;
}

.banner-slider .button-group a {
  margin-bottom: 20px;
}

.banner-slider .button-group a:not(:last-child) {
  margin-right: 20px;
}

@media only screen and (max-width: 1122px) {
  .banner-slider .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: phablet) {
  .banner-slider .button-group a:not(:last-child) {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 559px) {
  .banner-slider .button-group a:not(:last-child) {
    margin-right: 10px;
  }
}

.banner-slider .button-group a:last-child {
  margin-bottom: 0;
}

.banner-slider .slick-arrow {
  background-color: rgba(0, 0, 0, 0.15);
  width: 30px;
  height: 30px;
  border: 0;
  background-repeat: no-repeat;
  background-size: 10px 15px;
  background-position: center;
  top: calc(50% - 35px);
}

.banner-slider .slick-arrow:hover {
  width: 30px;
  height: 30px;
  border: 0;
}

.banner-slider .slick-arrow.slick-prev {
  left: -67px;
  background-image: url("../images/left_arrow_white.png");
}

.banner-slider .slick-arrow.slick-next {
  right: -67px;
  background-image: url("../images/left_arrow_white.png");
}

@media only screen and (max-width: 1380px) {
  .banner-slider .slick-arrow.slick-next {
    right: -37px;
  }
  .banner-slider .slick-arrow.slick-prev {
    left: -37px;
  }
}

@media only screen and (max-width: 1310px) {
  .banner-slider .banner-list-inner {
    margin: 0 50px;
  }
  .banner-slider .slick-arrow.slick-next {
    right: 0px;
  }
  .banner-slider .slick-arrow.slick-prev {
    left: 0px;
  }
}

.banner-slider .banner-slide,
.banner-slider .banner-video {
  position: relative;
}

.banner-slider .banner-slide .banner-list-inner,
.banner-slider .banner-video .banner-list-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.banner-slider .banner-slide .content,
.banner-slider .banner-video .content {
  width: 50%;
}

.banner-slider .banner-slide .openvideo,
.banner-slider .banner-video .openvideo {
  cursor: pointer;
}

.banner-slider .banner-slide .media,
.banner-slider .banner-video .media {
  width: 50%;
}

.banner-slider .banner-slide .media .media-list-inner,
.banner-slider .banner-video .media .media-list-inner {
  border-radius: 10px;
  display: none;
}

.banner-slider .banner-slide .media .media-list-inner:first-child,
.banner-slider .banner-video .media .media-list-inner:first-child {
  display: block;
}

.banner-slider .banner-slide.img-align-left .content, .banner-slider .banner-slide.video-align-left .content,
.banner-slider .banner-video.img-align-left .content,
.banner-slider .banner-video.video-align-left .content {
  padding-right: 109px;
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-slide.img-align-left .content, .banner-slider .banner-slide.video-align-left .content,
  .banner-slider .banner-video.img-align-left .content,
  .banner-slider .banner-video.video-align-left .content {
    margin: 0;
    padding: 0;
  }
}

.banner-slider .banner-slide.img-align-right .content,
.banner-slider .banner-video.img-align-right .content {
  padding-left: 109px;
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-slide.img-align-right .content,
  .banner-slider .banner-video.img-align-right .content {
    margin: 0;
    padding: 0;
  }
}

@media only screen and (max-width: 1310px) {
  .banner-slider .banner-slide .banner-list-inner,
  .banner-slider .banner-video .banner-list-inner {
    margin: 0 50px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-slide .content,
  .banner-slider .banner-slide .media,
  .banner-slider .banner-video .content,
  .banner-slider .banner-video .media {
    width: 100%;
  }
  .banner-slider .banner-slide .media,
  .banner-slider .banner-video .media {
    margin-bottom: 20px;
  }
}

.banner-slider .banner-img .slick-dots {
  position: static;
  margin-top: 10px;
  text-align: center;
}

.banner-slider .banner-video .slick-dots {
  position: static;
  margin-top: 0;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-slide {
    margin: 0;
  }
  .banner-slider .banner-slide .banner-list-inner {
    margin: 0 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .banner-slider .banner-slide.img-align-right .banner-list-inner {
    margin: 0 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-slider .banner-video .banner-list-inner {
    margin: 0 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .banner-slider.tab-no-change-sequence .banner-slide .banner-list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-slider.tab-no-change-sequence .content p {
    margin-bottom: 0;
  }
  .banner-slider.tab-no-change-sequence .button-group {
    margin-top: 20px;
  }
  .banner-slider.tab-no-change-sequence .button-group a {
    width: 100%;
    text-align: center;
  }
  .banner-slider .banner-img .slick-dots,
  .banner-slider .banner-video .slick-dots {
    margin-top: 20px;
  }
}

.banner-slider .banner-calculator .calculator-list {
  position: relative;
}

.banner-slider .banner-calculator .calculator-list .caluculator-list-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.banner-slider .banner-calculator .calculator-list .content {
  width: calc(43% - 76px);
  margin-right: 76px;
}

.banner-slider .banner-calculator .calculator-list .button-group a:not(:last-child) {
  margin-right: 20px;
}

@media only screen and (max-width: 1122px) {
  .banner-slider .banner-calculator .calculator-list .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

.banner-slider .banner-calculator .calculator-list .calculator-right {
  width: 57%;
  border-radius: 10px;
  overflow: hidden;
  background: #ad1e23;
  padding: 28px 32px 40px;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner h5 {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 144%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner input {
  background: transparent;
  color: #fff;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner input:before, .banner-slider .banner-calculator .calculator-list .loan-container-inner input:after {
  background: #fff;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner input:focus {
  background-color: transparent !important;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner label {
  color: #fff;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .range-figures ul li {
  color: #fff;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .text-in-line p {
  white-space: nowrap;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner input[type="range"] {
  height: 2px;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .light-brown {
  background: rgba(77, 0, 3, 0.2);
  border-radius: 10px;
  color: #fff;
  padding: 11px 5px 8px 15px;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .light-brown label {
  color: rgba(255, 255, 255, 0.8);
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .ic-more {
  color: #fff;
}

.banner-slider .banner-calculator .calculator-list .loan-container-inner .ic-more:after {
  background: url("../images/icons/more-w.png") no-repeat;
}

@media only screen and (max-width: 1310px) {
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .apply-btn {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner {
    display: block;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .emi-interest {
    max-width: 67%;
    margin-bottom: 20px;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .apply-btn {
    max-width: 100%;
    white-space: unset;
  }
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner {
    display: block;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .emi-interest {
    max-width: 100%;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .apply-btn {
    max-width: 100%;
    padding-left: 0px;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner h5 {
    margin-bottom: 16px;
  }
  .banner-slider .banner-calculator .calculator-list .loan-container-inner label {
    margin-top: 20px;
  }
}

@media only screen and (max-width: phone) {
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .light-brown .col-md-6 {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 399px) {
  .banner-slider .banner-calculator .calculator-list .loan-container-inner .number-hoderinner .light-brown .col-md-6 {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1310px) {
  .banner-slider .banner-calculator .calculator-list .caluculator-list-inner {
    margin: 0 50px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-calculator .calculator-list .caluculator-list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
  }
  .banner-slider .banner-calculator .calculator-list .calculator-right,
  .banner-slider .banner-calculator .calculator-list .content {
    width: 100%;
  }
  .banner-slider .banner-calculator .calculator-list .content {
    margin: 20px 0;
  }
}

.banner-slider .banner-calculator .slick-dots {
  margin-left: 276px;
  bottom: 23px;
}

.banner-slider .banner-calculator .slick-dots li.slick-active {
  border: 2px solid #fff !important;
  background: #fff !important;
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-calculator .slick-dots {
    margin-left: 0px;
    bottom: 15px;
    text-align: center;
  }
}

.banner-slider .banner-multiple-video {
  position: relative;
  padding-bottom: 50px;
}

.banner-slider .banner-multiple-video .banner-list-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding-bottom: 30px;
}

.banner-slider .banner-multiple-video .content {
  width: calc(40% - 31px);
  margin-right: 31px;
}

.banner-slider .banner-multiple-video .video-right {
  width: 60%;
}

.banner-slider .banner-multiple-video .video-right .video-card {
  background: #fff;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 17px;
  margin-right: 10px;
  width: calc(100% / 4 - 10px);
}

@media only screen and (max-width: phablet) {
  .banner-slider .banner-multiple-video .video-right .video-card {
    width: 48%;
    margin: 0 5px;
  }
}

@media only screen and (max-width: 559px) {
  .banner-slider .banner-multiple-video .video-right .video-card {
    width: 48%;
    margin: 0 5px;
  }
}

.banner-slider .banner-multiple-video .video-right .video-card .text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #3d3d3d;
  padding: 15px 16px 30px 14px;
}

.banner-slider .banner-multiple-video .video-right .video-card a {
  cursor: pointer;
}

.banner-slider .banner-multiple-video .video-right .video-card .media {
  overflow: hidden;
  width: 100%;
}

.banner-slider .banner-multiple-video .video-right .video-card:last-child {
  margin-right: 0;
}

.banner-slider .banner-multiple-video .slick-dots {
  position: static;
  margin-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .banner-slider .banner-multiple-video {
    padding-bottom: 10px;
  }
  .banner-slider .banner-multiple-video .banner-list-inner {
    margin: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 0;
  }
  .banner-slider .banner-multiple-video .banner-list-inner .content,
  .banner-slider .banner-multiple-video .banner-list-inner .video-right {
    width: 100%;
  }
  .banner-slider .banner-multiple-video .banner-list-inner .content {
    margin: 0;
    float: unset;
  }
  .banner-slider .banner-multiple-video .banner-list-inner .video-right {
    padding-bottom: 30px;
  }
  .banner-slider .banner-multiple-video .video-right .video-card {
    width: calc(100% / 4 - 20px);
  }
  .banner-slider .banner-multiple-video .video-right .video-card:not(:last-child) {
    margin: 0 20 0 0;
  }
  .banner-slider .banner-multiple-video .video-right .video-card .media img {
    width: 100%;
  }
}

.banner-slider .img-with-content .slick-list {
  height: 100%;
}

.banner-slider .img-with-content .slick-list .slick-track {
  height: 100%;
}

.banner-slider .img-with-content .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 215px;
  text-align: left;
}

.banner-slider .img-with-content .img-description {
  width: 50%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135.11deg, #f3a126 17.34%, #ad1e23 94.28%);
  /* .img-description-list {
				@include radius(20px);
				overflow: hidden;
				background: linear-gradient(135.11deg, #f3a126 17.34%, #ad1e23 94.28%);
			} */
}

.banner-slider .img-with-content .img-description .slick-arrow {
  bottom: 17px;
  top: auto;
  background: transparent;
  background-repeat: no-repeat;
  height: 20px;
}

.banner-slider .img-with-content .img-description .slick-arrow.slick-prev {
  left: 43%;
  width: 15px;
  background: url("../images/icons/chevron-left-white.svg") no-repeat;
}

.banner-slider .img-with-content .img-description .slick-arrow.slick-next {
  right: 43%;
  width: 15px;
  background: url("../images/icons/chevron-left-white.svg") no-repeat;
}

.banner-slider .img-with-content .img-description-inner {
  height: 100%;
}

.banner-slider .img-with-content .img-description-inner .media .d-img,
.banner-slider .img-with-content .img-description-inner .media .m-img {
  border-radius: 0;
}

.banner-slider .img-with-content .img-description-inner .media .d-img {
  height: 100%;
}

.banner-slider .img-with-content .img-description-inner .media .d-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-slider .img-with-content.right-img-content .content {
  margin-right: 109px;
}

.banner-slider .img-with-content.right-img-content .img-description-inner {
  padding: 20px 25px 45px;
}

.banner-slider .img-with-content.right-img-content .img-description-inner .media {
  width: 170px;
}

.banner-slider .img-with-content.left-img-content .content {
  margin-left: 109px;
}

.banner-slider .img-with-content.left-img-content .img-description-inner .media {
  width: 194px;
  border-radius: 10px;
}

.banner-slider .img-with-content.left-img-content .img-description-inner .content {
  margin: 21px 25px 0 19px;
  width: calc(100% - 240px);
}

.banner-slider .img-with-content.left-img-content .img-description-inner .button-group .ic-btn {
  padding: 9px 34px;
}

.banner-slider .img-with-content.left-img-content .img-description .slick-arrow {
  bottom: 21px;
}

.banner-slider .img-with-content.left-img-content .img-description .slick-arrow.slick-prev {
  left: 34%;
}

.banner-slider .img-with-content.left-img-content .img-description .slick-arrow.slick-next {
  right: 52%;
}

@media only screen and (max-width: 1310px) {
  .banner-slider .img-with-content.left-img-content .img-description .slick-arrow.slick-prev {
    left: 38%;
  }
  .banner-slider .img-with-content.left-img-content .img-description .slick-arrow.slick-next {
    right: 48%;
  }
}

.banner-slider .img-with-content.img-with-content--small-img .img-description-inner .media .d-img img {
  height: 116px;
}

.banner-slider .img-with-content .img-description-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.banner-slider .img-with-content .img-description-inner .content {
  width: calc(100% - 190px);
  margin: 0 0 0 19px;
}

.banner-slider .img-with-content .img-description-inner h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 9px;
}

.banner-slider .img-with-content .img-description-inner p {
  color: #fff;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.02em;
}

.banner-slider .img-with-content .img-description-inner ul li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.banner-slider .img-with-content .img-description-inner ul li:last-child {
  margin-bottom: 20px;
}

.banner-slider .img-with-content .img-description-inner .button-group .ic-more {
  color: #fff;
}

.banner-slider .img-with-content .img-description-inner .button-group .ic-more:after {
  content: "";
  background: url("../images/icons/more-w.png") no-repeat;
}

@media only screen and (max-width: 1310px) {
  .banner-slider .img-with-content .img-description .slick-arrow.slick-prev {
    left: 41.5%;
  }
  .banner-slider .img-with-content .img-description .slick-arrow.slick-next {
    right: 41%;
  }
}

@media only screen and (max-width: 1175px) {
  .banner-slider .img-with-content .content,
  .banner-slider .img-with-content .img-description {
    width: 50%;
  }
  .banner-slider .img-with-content .button-group a:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-slider .img-with-content .img-description-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-slider .img-with-content .slick-dots {
    bottom: 20px;
    left: 15px;
  }
  .banner-slider .img-with-content .content {
    margin: 0 !important;
  }
  .banner-slider .img-with-content .content,
  .banner-slider .img-with-content .img-description {
    width: 100%;
  }
  .banner-slider .img-with-content.right-img-content .ic-btn, .banner-slider .img-with-content.left-img-content .ic-btn {
    padding: 10px 20px;
  }
  .banner-slider .img-with-content.right-img-content .img-description-inner, .banner-slider .img-with-content.left-img-content .img-description-inner {
    padding: 0 !important;
  }
  .banner-slider .img-with-content.right-img-content .img-description-inner .media, .banner-slider .img-with-content.left-img-content .img-description-inner .media {
    width: 100%;
    margin-bottom: 0;
  }
  .banner-slider .img-with-content.right-img-content .img-description-inner .media img, .banner-slider .img-with-content.left-img-content .img-description-inner .media img {
    width: 100%;
  }
  .banner-slider .img-with-content.right-img-content .img-description-inner .content, .banner-slider .img-with-content.left-img-content .img-description-inner .content {
    margin: 0 !important;
    padding: 30px 20px 50px;
    width: 100%;
  }
  .banner-slider .img-with-content.left-img-content .img-description {
    margin-top: 20px;
  }
  .banner-slider .img-with-content.right-img-content .img-description {
    margin-bottom: 20px;
  }
}

.banner-slider .full-width-slider {
  padding-bottom: 30px;
}

.benefit-short-card .slick-slider {
  margin-bottom: 35px;
}

.benefit-short-card .cards-lists {
  background: #fff;
  border: 1px solid #f6f6f6;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 20px 10px 20px 20px;
}

.benefit-short-card .cards-lists .card-list {
  width: calc(100% / 5);
  margin: 15px 0;
  padding: 0 15px 0 0;
}

.benefit-short-card .cards-lists .card-list .card-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.benefit-short-card .cards-lists .card-list:last-child {
  padding-right: 0;
}

.benefit-short-card .cards-lists .card-list .media {
  width: 52px;
  margin: 0 16px 0 0;
}

.benefit-short-card .cards-lists .card-list .content {
  width: calc(100% - 45px);
}

.benefit-short-card .cards-lists .card-list .content p.title,
.benefit-short-card .cards-lists .card-list .content a.title {
  font-size: 16px;
  font-weight: normal;
  line-height: 19px;
  color: #3d3d3d;
  display: block;
}

.benefit-short-card .cards-lists .slick-arrow {
  border: 0;
  top: calc(50% - 25px);
}

.benefit-short-card .cards-lists .slick-arrow.slick-prev {
  left: -40px;
}

.benefit-short-card .cards-lists .slick-arrow.slick-next {
  right: -40px;
}

.benefit-short-card .cards-lists.card-list-item-carousel {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  padding: 0;
  border: none;
}

.benefit-short-card .cards-lists.card-list-item-carousel .card-list {
  padding: 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 10px 15px;
}

.benefit-short-card .cards-lists.card-list-item-carousel .card-list h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 7px;
}

.benefit-short-card .cards-lists.card-list-item-carousel .card-list p {
  font-size: 14px;
  line-height: 19px;
}

.benefit-short-card .cards-lists.benefit-card-border .card-list .card-inner {
  position: relative;
}

.benefit-short-card .cards-lists.benefit-card-border .card-list .card-inner::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 37px;
  background: #baa173;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.2;
}

.benefit-short-card .cards-lists.benefit-card-border .card-list:last-child .card-inner::after {
  display: none;
}

.benefit-short-card .cards-lists.benefit-vertical-card .card-list .card-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.benefit-short-card .cards-lists.benefit-vertical-card .card-list .media {
  margin: 0 auto 10px;
}

.benefit-short-card .cards-lists.benefit-vertical-card-carousel {
  padding: 0;
  position: relative;
  margin: 0;
}

.benefit-short-card .cards-lists.benefit-vertical-card-carousel .card-list {
  width: calc(100% / 7);
}

.benefit-short-card .slick-dots {
  bottom: -40px;
}

.benefit-short-card .blue-bg .cards-lists.card-list-item-carousel .card-list {
  background: #fff;
}

@media only screen and (max-width: 1310px) {
  .benefit-short-card .cards-list-carousel {
    margin: 0 20px;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-prev {
    left: -20px;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-next {
    right: -20px;
  }
}

@media only screen and (max-width: tablet-wide) {
  .benefit-short-card .cards-lists {
    padding: 20px 10px 20px 10px;
  }
  .benefit-short-card .cards-lists .card-list {
    width: 100%;
    border: none;
    padding: 0 10px;
    margin: 12.5px 0;
  }
  .benefit-short-card .cards-lists .card-list .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .benefit-short-card .cards-lists .card-list .media {
    margin: 0 auto 20px !important;
  }
  .benefit-short-card .cards-lists .card-list .content {
    width: 100%;
  }
  .benefit-short-card .cards-lists .card-list .content p.title,
  .benefit-short-card .cards-lists .card-list .content a.title {
    text-align: center;
  }
  .benefit-short-card .cards-lists .slick-arrow {
    border: 0;
    top: calc(50% - 25px);
  }
  .benefit-short-card .cards-lists .slick-arrow.slick-prev {
    left: 0;
  }
  .benefit-short-card .cards-lists .slick-arrow.slick-next {
    right: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .benefit-short-card .cards-lists {
    padding: 20px 10px 20px 10px;
  }
  .benefit-short-card .cards-lists .card-list {
    width: 100%;
    border: none;
    padding: 0 10px;
    margin: 12.5px 0;
  }
  .benefit-short-card .cards-lists .card-list .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .benefit-short-card .cards-lists .card-list .media {
    margin: 0 auto 20px !important;
  }
  .benefit-short-card .cards-lists .card-list .content {
    width: 100%;
  }
  .benefit-short-card .cards-lists .card-list .content p.title,
  .benefit-short-card .cards-lists .card-list .content a.title {
    text-align: center;
  }
  .benefit-short-card .cards-lists .slick-arrow {
    border: 0;
    top: calc(50% - 25px);
  }
  .benefit-short-card .cards-lists .slick-arrow.slick-prev {
    left: 0;
  }
  .benefit-short-card .cards-lists .slick-arrow.slick-next {
    right: 0;
  }
}

@media only screen and (max-width: tablet) {
  .benefit-short-card .cards-lists .card-list {
    width: calc(100% / 3);
    margin: 15px 0;
    padding: 0 15px 0 0;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-prev {
    left: -10px;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-next {
    right: -10px;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-short-card .cards-lists .card-list {
    width: calc(100% / 3);
    margin: 15px 0;
    padding: 0 15px 0 0;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-prev {
    left: -10px;
  }
  .benefit-short-card .card-list-item-carousel .slick-arrow.slick-next {
    right: -10px;
  }
}

@media only screen and (max-width: 768px) {
  .benefit-short-card .card-list-item-carousel {
    padding: 0;
  }
}

@media only screen and (max-width: tablet-small) {
  .benefit-short-card .cards-lists .card-list {
    width: calc(100% / 2);
  }
}

@media only screen and (max-width: 639px) {
  .benefit-short-card .cards-lists .card-list {
    width: calc(100% / 2);
  }
}

@media only screen and (max-width: phone) {
  .benefit-short-card .cards-lists .card-list {
    width: 100%;
  }
}

@media only screen and (max-width: 399px) {
  .benefit-short-card .cards-lists .card-list {
    width: 100%;
  }
}

.benefit-tab-section .benefit-tab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

@media only screen and (max-width: tablet) {
  .benefit-tab-section .benefit-tab {
    display: block;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-tab-section .benefit-tab {
    display: block;
  }
}

.benefit-tab-section h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.benefit-tab-section .sidebar-content {
  width: 312px;
  margin-right: 73px;
}

.benefit-tab-section .sidebar-content ul {
  margin: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.benefit-tab-section .sidebar-content ul li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.benefit-tab-section .sidebar-content ul li:before, .benefit-tab-section .sidebar-content ul li:after {
  display: none;
}

.benefit-tab-section .sidebar-content ul li .menu-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  line-height: 1;
  padding: 11px 10px 11px 12px;
  cursor: pointer;
  min-height: 40px;
  margin-bottom: 5px;
  border-radius: 0 20px 20px 0;
  border-left: 2px solid #fff7eb;
  background: transparent;
}

.benefit-tab-section .sidebar-content ul li .menu-item .icon {
  width: 22px;
  margin-right: 10px;
}

.benefit-tab-section .sidebar-content ul li .menu-item .n-icon {
  display: inline-block;
}

.benefit-tab-section .sidebar-content ul li .menu-item .a-icon {
  display: none;
}

.benefit-tab-section .sidebar-content ul li:hover .menu-item {
  background: #fff;
  border-left: 2px solid #f37e20;
}

.benefit-tab-section .sidebar-content ul li.active {
  border-radius: 0 20px 20px 0;
}

.benefit-tab-section .sidebar-content ul li.active .menu-item {
  position: relative;
  z-index: 1;
  background: #f37e20;
  color: #fff;
  border-left: 2px solid #f37e20;
}

.benefit-tab-section .sidebar-content ul li.active .menu-item .n-icon {
  display: none;
}

.benefit-tab-section .sidebar-content ul li.active .menu-item .a-icon {
  display: inline-block;
}

.benefit-tab-section .media-content .content {
  max-width: 379px;
  width: 100%;
  margin-right: 34px;
  margin-bottom: 20px;
}

.benefit-tab-section .benefits-content-inner {
  display: none;
  padding: 40px 27px 31px 50px;
}

.benefit-tab-section .benefits-content-inner.active {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.benefit-tab-section .benefits-content-inner h4,
.benefit-tab-section .benefits-content-inner h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  color: #074a86;
}

.benefit-tab-section .benefits-content-inner p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
}

.benefit-tab-section .benefits-content-inner p:last-child {
  margin-bottom: 0;
}

.benefit-tab-section .benefits-content-inner ul li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #737373;
}

.benefit-tab-section .benefits-content-inner .grid-ul.grid-ul-2 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.benefit-tab-section .benefits-content-inner .grid-ul.grid-ul-2 ul {
  width: 50%;
}

.benefit-tab-section .benefits-content-inner .grid-ul.grid-ul-2 ul li {
  padding-right: 30px;
}

.benefit-tab-section .benefits-content-inner .grid-ul.grid-ul-2 ul:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 38px;
}

.benefit-tab-section .benefits-content-inner.full-width-content .content {
  width: 100%;
}

.benefit-tab-section .benefits-content {
  position: relative;
  background: #fff7eb;
  border-radius: 10px;
  width: calc(100% - 385px);
}

.benefit-tab-section .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  margin: 0 0 30px 20px;
}

.benefit-tab-section .nav-tabs li {
  white-space: nowrap;
}

.benefit-tab-section .nav-tabs li a {
  padding: 11px 20px;
}

@media only screen and (max-width: tablet) {
  .benefit-tab-section .nav-tabs {
    margin: 0 0 30px 0px;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-tab-section .nav-tabs {
    margin: 0 0 30px 0px;
  }
}

.benefit-tab-section .benefit-nested-tabs .tab-content {
  width: 100%;
}

.benefit-tab-section .benefit-nested-tabs .tab-content .tab-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: tablet) {
  .benefit-tab-section .benefit-nested-tabs .tab-content .tab-content {
    display: block;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-tab-section .benefit-nested-tabs .tab-content .tab-content {
    display: block;
  }
}

.benefit-tab-section .benefit-product-nested-tabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content {
  width: calc(100% - 385px);
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .info {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 12px;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content > .tab-pane {
  background: #fff;
  padding: 0 30px 50px 50px;
  border: 1px solid rgba(243, 126, 32, 0.15);
  border-radius: 10px;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content {
  width: 100%;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .active {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .benefits-content-inner {
  padding: 0;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .benefits-content-inner h4 {
  color: #3d3d3d;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .button-group {
  margin-top: 29px;
}

.benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .button-group .ic-btn {
  margin-right: 20px;
}

@media only screen and (max-width: 1025px) {
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .button-group .ic-btn:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: tablet) {
  .benefit-tab-section .benefit-product-nested-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content {
    width: 100%;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .info {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-tab-section .benefit-product-nested-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content {
    width: 100%;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .info {
    margin-top: 20px;
  }
}

@media only screen and (max-width: phone-wide) {
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-pane {
    padding: 0 20px 50px;
  }
}

@media only screen and (max-width: 479px) {
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-content .active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefit-tab-section .benefit-product-nested-tabs > .benefits-product-content .tab-pane {
    padding: 0 20px 50px;
  }
}

.benefit-tab-section .notes p {
  font-size: 16px;
}

.benefit-tab-section .notes p:not(:last-child) {
  margin-bottom: 20px;
}

.benefit-tab-section + .benefit-short-card .cards-lists {
  margin-top: -70px;
}

@media only screen and (max-width: tablet) {
  .benefit-tab-section {
    display: block;
  }
  .benefit-tab-section.nested-tabs .tab-content .tab-content {
    display: block;
  }
  .benefit-tab-section .sidebar-content {
    width: 100%;
  }
  .benefit-tab-section .sidebar-content ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .benefit-tab-section .sidebar-content ul li:before, .benefit-tab-section .sidebar-content ul li:after {
    display: block;
  }
  .benefit-tab-section .sidebar-content ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 11px 22px;
  }
  .benefit-tab-section .media-content .content,
  .benefit-tab-section .media-content .media {
    width: 50%;
  }
  .benefit-tab-section .benefits-content {
    width: 100%;
  }
  .benefit-tab-section .benefits-content .benefits-content-inner {
    padding: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .benefit-tab-section {
    display: block;
  }
  .benefit-tab-section.nested-tabs .tab-content .tab-content {
    display: block;
  }
  .benefit-tab-section .sidebar-content {
    width: 100%;
  }
  .benefit-tab-section .sidebar-content ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .benefit-tab-section .sidebar-content ul li:before, .benefit-tab-section .sidebar-content ul li:after {
    display: block;
  }
  .benefit-tab-section .sidebar-content ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 11px 22px;
  }
  .benefit-tab-section .media-content .content,
  .benefit-tab-section .media-content .media {
    width: 50%;
  }
  .benefit-tab-section .benefits-content {
    width: 100%;
  }
  .benefit-tab-section .benefits-content .benefits-content-inner {
    padding: 20px;
  }
}

@media only screen and (max-width: phone-wide) {
  .benefit-tab-section .media-content .content,
  .benefit-tab-section .media-content .media {
    max-width: 100%;
    width: 100%;
  }
  .benefit-tab-section .benefits-content {
    width: 100%;
  }
  .benefit-tab-section .benefits-content .benefits-content-inner {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 479px) {
  .benefit-tab-section .media-content .content,
  .benefit-tab-section .media-content .media {
    max-width: 100%;
    width: 100%;
  }
  .benefit-tab-section .benefits-content {
    width: 100%;
  }
  .benefit-tab-section .benefits-content .benefits-content-inner {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 340px) {
  .benefit-tab-section .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

.benefit-card-section {
  overflow: hidden;
}

.benefit-card-section h4 {
  margin-bottom: 20px;
}

.benefit-card-section .nav-tabs {
  width: 100%;
  margin-bottom: 20px;
}

.benefit-card-section .nav-tabs li a {
  padding: 11px 35px;
}

.benefit-card-section .nav-tabs.border-top {
  border-top: 1px solid #ebe7e7;
}

.benefit-card-section .tab-content {
  padding: 40px 0;
}

.benefit-card-section .benefit-card {
  width: calc(100% / 4 - 20px);
  padding: 23px 27px;
  margin: 20px 0 0 0;
}

.benefit-card-section .benefit-card:nth-child(-n + 4) {
  margin: 0;
}

.benefit-card-section .benefit-card img {
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
}

.benefit-card-section .benefit-card p {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  text-transform: capitalize;
}

.benefit-card-section .benefit-with-icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.benefit-card-section .benefit-with-icon .benefit-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 8px;
  margin: 0 10px 20px;
}

.benefit-card-section .benefit-without-icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.benefit-card-section .benefit-without-icon .benefit-card {
  background: #2370b6;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 24px 22px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 10px 20px;
}

.benefit-card-section .benefit-without-icon .benefit-card p {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
}

.benefit-card-section .benefit-itsa-cards {
  border: 1px solid #dedede;
  border-radius: 10px;
}

.benefit-card-section .benefit-itsa-cards .benefit-itsa-card {
  text-align: center;
  padding: 30px 25px;
}

.benefit-card-section .benefit-itsa-cards .benefit-itsa-card img {
  margin: 0 auto 20px;
}

.benefit-card-section .benefit-itsa-cards .benefit-itsa-card p {
  font-size: 16px;
  font-weight: 600;
}

.benefit-card-section .benefit-itsa-cards .slick-dots {
  position: static;
  text-align: center;
  margin-bottom: 20px;
}

.benefit-card-section .benefit-itsa-cards .slick-arrow {
  border: none;
}

.benefit-card-section .benefit-itsa-cards .slick-arrow.slick-prev {
  left: -35px;
}

.benefit-card-section .benefit-itsa-cards .slick-arrow.slick-next {
  right: -35px;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card {
  border: none;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card {
  background: #fff;
  margin: 0 20px;
  -webkit-box-shadow: 0px 3.423px 12.8363px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 3.423px 12.8363px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 3.423px 12.8363px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 3.423px 12.8363px rgba(117, 117, 117, 0.06);
  border-radius: 7px;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card .icon {
  height: 50px;
  margin-bottom: 10px;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card img {
  margin: 0 auto 15px;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card h5 {
  color: #baa173;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card p {
  font-size: 14px;
}

.benefit-card-section .action-benefit-card .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding-top: 0;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 8px;
  border: 1px solid #dedede;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card .heading {
  margin-bottom: 20px;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card .heading .ic-link {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 100%;
  text-decoration: none;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card .heading .ic-link img {
  margin-bottom: 0;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card .heading .ic-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/icons/more.png") no-repeat;
  width: 10px;
  height: 11px;
}

.benefit-card-section .action-benefit-card .section-inner .benefit-card .heading h5 {
  font-size: 16px;
  margin-left: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #f37e20;
  width: calc(100% - 52px);
}

@media only screen and (max-width: tablet) {
  .benefit-card-section .benefit-card {
    width: calc(100% / 3 - 20px);
  }
}

@media only screen and (max-width: 990px) {
  .benefit-card-section .benefit-card {
    width: calc(100% / 3 - 20px);
  }
}

@media only screen and (max-width: 991px) {
  .benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .slick-list {
    padding-left: 0 !important;
  }
  .benefit-card-section .benefit-itsa-cards.benefit-itsa-white-card .benefit-itsa-card {
    margin: 0 8px;
  }
}

@media only screen and (max-width: 768px) {
  .benefit-card-section .benefit-card {
    width: calc(100% / 2 - 20px);
  }
}

@media only screen and (max-width: phone-wide) {
  .benefit-card-section .benefit-card {
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .benefit-card-section .benefit-card {
    width: 100%;
  }
}

.related-products h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #4b4b4b;
  margin-bottom: 18px;
  text-transform: unset;
}

.related-products .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.related-products .row:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (max-width: tablet) {
  .related-products .row:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .row:not(:last-child) {
    margin-bottom: 20px;
  }
}

.related-products .related-card-inner {
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 7.8px;
  background: #fff;
  padding: 22px 16px 22px 24px;
}

.related-products .related-card-inner .customer-review-medium {
  border: 0;
  padding: 0 40px;
  -webkit-box-shadow: unset;
  -ms-box-shadow: unset;
  -o-box-shadow: unset;
  box-shadow: unset;
}

.related-products .card-list .card-item a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  text-decoration: none;
}

.related-products .card-list .card-item:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.related-products .card-list .card-item .media {
  width: 100%;
  max-width: 193px;
  margin-bottom: 15px;
}

.related-products .card-list .card-item .content {
  width: 100%;
}

.related-products .card-list .card-item .content h5 {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #4b4b4b;
  margin-bottom: 5px;
}

.related-products .card-list .card-item .content h5 a {
  color: #4b4b4b;
}

.related-products .card-list .card-item .content p {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #8b8b8b;
}

.related-products .card-list .card-item .content p:not(:last-child) {
  margin-bottom: 12px;
}

.related-products .card-list .card-item .openvideo {
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  outline: none;
  text-decoration: none;
}

.related-products .card-list .card-item .openvideo img {
  width: 70px;
  margin-right: 15px;
}

.related-products .card-list .card-item .openvideo h5 {
  width: calc(100% - 85px);
  font-size: 14px;
  line-height: 19px;
}

.related-products .card-list .card-item .content-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: 5px;
}

.related-products .card-list .card-item .content-bottom p:not(:last-child) {
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.related-products .related-card-small .card-list .card-item .media {
  width: 70px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.related-products .related-card-small .card-list .card-item .content {
  width: calc(100% - 85px);
}

.related-products .related-card-medium .card-list .card-item .media {
  width: 128px;
  margin-right: 15px;
}

.related-products .related-card-medium .card-list .card-item .content {
  width: calc(100% - 145px);
}

.related-products .related-card-medium .card-list .card-item:last-child .content {
  padding-bottom: 10px;
}

.related-products .related-card-large .card-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.related-products .related-card-large .card-list .card-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 3 - 28px);
}

.related-products .related-card-large .card-list .card-item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.related-products .related-card-large .card-list .card-item:not(:last-child) {
  padding: 0px 22px 0 0;
  border-bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0px 28px 0 0;
}

.related-products .related-card-large .card-list .card-item .media {
  max-width: 128px;
  margin: 0 0 16px;
}

@media only screen and (max-width: tablet) {
  .related-products .related-card-large .card-list .card-item {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-card-large .card-list .card-item {
    max-width: 100%;
    width: 100%;
  }
}

.related-products .related-card-full-width .card-list {
  padding-right: 30px;
}

.related-products .related-card-full-width .card-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 4 - 28px);
}

.related-products .related-card-full-width .card-item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.related-products .related-card-full-width .card-item .media {
  width: 128px;
  margin: 0 0 16px;
}

@media only screen and (max-width: tablet) {
  .related-products .related-card-full-width .card-item {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-card-full-width .card-item {
    width: 100%;
  }
}

.related-products .related-blog.related-card-medium .card-list .card-item {
  width: 50%;
}

.related-products .related-blog.related-card-medium .card-list .card-item:last-child {
  margin-right: 20px;
}

@media only screen and (max-width: tablet) {
  .related-products .related-blog.related-card-medium .card-list .card-item {
    width: 100%;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item:last-child {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-blog.related-card-medium .card-list .card-item {
    width: 100%;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item:last-child {
    margin-right: 0px;
  }
}

.related-products .related-blog.related-card-medium .card-list, .related-products .related-blog.related-card-large .card-list, .related-products .related-blog.related-card-full-width .card-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.related-products .related-blog.related-card-medium .card-list .card-item, .related-products .related-blog.related-card-large .card-list .card-item, .related-products .related-blog.related-card-full-width .card-list .card-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.related-products .related-blog.related-card-medium .card-list .card-item a, .related-products .related-blog.related-card-large .card-list .card-item a, .related-products .related-blog.related-card-full-width .card-list .card-item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.related-products .related-blog.related-card-medium .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-large .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-full-width .card-list .card-item:not(:last-child) {
  padding: 0px 22px 0 0;
  border-bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0px 37px 0 0;
}

.related-products .related-blog.related-card-medium .card-list .card-item .media, .related-products .related-blog.related-card-large .card-list .card-item .media, .related-products .related-blog.related-card-full-width .card-list .card-item .media {
  max-width: 193px;
  margin: 0 0 14px;
  border-radius: 4px;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .related-products .related-blog.related-card-medium .card-list .card-item .media, .related-products .related-blog.related-card-large .card-list .card-item .media, .related-products .related-blog.related-card-full-width .card-list .card-item .media {
    max-width: 100%;
  }
}

@media only screen and (max-width: tablet) {
  .related-products .related-blog.related-card-medium .card-list, .related-products .related-blog.related-card-large .card-list, .related-products .related-blog.related-card-full-width .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item, .related-products .related-blog.related-card-large .card-list .card-item, .related-products .related-blog.related-card-full-width .card-list .card-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-large .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-full-width .card-list .card-item:not(:last-child) {
    padding: 0px 0px 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0px 0px 22px 0;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-blog.related-card-medium .card-list, .related-products .related-blog.related-card-large .card-list, .related-products .related-blog.related-card-full-width .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item, .related-products .related-blog.related-card-large .card-list .card-item, .related-products .related-blog.related-card-full-width .card-list .card-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .related-products .related-blog.related-card-medium .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-large .card-list .card-item:not(:last-child), .related-products .related-blog.related-card-full-width .card-list .card-item:not(:last-child) {
    padding: 0px 0px 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0px 0px 22px 0;
  }
}

.related-products .related-blog .card-list.card-without-img .card-item:not(:last-child) {
  padding: 0px 0 17px;
  margin: 0px 0 19px;
}

.related-products .related-blog .card-list .card-item .content {
  width: 100%;
}

.related-products .card-bottom {
  margin-top: 38px;
}

@media only screen and (max-width: tablet) {
  .related-products .card-bottom {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .card-bottom {
    margin-top: 20px;
  }
}

.related-products .accordion .button-group {
  margin-top: 34px;
}

@media only screen and (max-width: tablet) {
  .related-products .related-card:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-card:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: phablet) {
  .related-products .related-card-medium .card-list,
  .related-products .related-card-large .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-products .related-card-medium .card-list .card-item,
  .related-products .related-card-large .card-list .card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .related-products .related-card-medium .card-list .card-item:not(:last-child),
  .related-products .related-card-large .card-list .card-item:not(:last-child) {
    padding: 0px 0px 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0px 0px 22px 0;
  }
  .related-products .related-card-medium .card-list .card-item .media,
  .related-products .related-card-large .card-list .card-item .media {
    margin-bottom: 20px;
    width: 100%;
  }
  .related-products .related-card-medium .card-list .card-item .content,
  .related-products .related-card-large .card-list .card-item .content {
    width: 100%;
  }
}

@media only screen and (max-width: 559px) {
  .related-products .related-card-medium .card-list,
  .related-products .related-card-large .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-products .related-card-medium .card-list .card-item,
  .related-products .related-card-large .card-list .card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .related-products .related-card-medium .card-list .card-item:not(:last-child),
  .related-products .related-card-large .card-list .card-item:not(:last-child) {
    padding: 0px 0px 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0px 0px 22px 0;
  }
  .related-products .related-card-medium .card-list .card-item .media,
  .related-products .related-card-large .card-list .card-item .media {
    margin-bottom: 20px;
    width: 100%;
  }
  .related-products .related-card-medium .card-list .card-item .content,
  .related-products .related-card-large .card-list .card-item .content {
    width: 100%;
  }
}

.related-products .related-video-slider {
  padding: 40px 20px 0;
}

.related-products .related-video-slider .image {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.related-products .related-video-slider .image .play-btn {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: calc(50% - 23px);
  left: calc(50% - 23px);
  background: url("../images/icons/play-arrow-o.png") no-repeat center;
  background-size: 15px;
  background-position: 17px 15px;
  background-color: rgba(254, 254, 255, 0.9);
}

.related-products .related-video-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin: 20px 0;
}

.related-products .related-video-slider .slick-arrow {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  border: 0;
}

.related-products .related-video-slider .slick-arrow.slick-next {
  -webkit-transform: scale(0.7) rotate(-180deg);
  transform: scale(0.7) rotate(-180deg);
}

@media only screen and (max-width: tablet) {
  .related-products .related-video-slider {
    padding: 20px 50px 0 50px;
    margin: 0 -20px;
  }
  .related-products .related-video-slider .slick-list {
    padding-left: 0 !important;
  }
  .related-products .related-video-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .related-products .related-video-slider .slick-arrow.slick-prev {
    left: 10px;
  }
  .related-products .related-video-slider .slick-arrow.slick-next {
    right: 10px;
  }
  .related-products .related-video-slider .card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .related-products .related-video-slider {
    padding: 20px 50px 0 50px;
    margin: 0 -20px;
  }
  .related-products .related-video-slider .slick-list {
    padding-left: 0 !important;
  }
  .related-products .related-video-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .related-products .related-video-slider .slick-arrow.slick-prev {
    left: 10px;
  }
  .related-products .related-video-slider .slick-arrow.slick-next {
    right: 10px;
  }
  .related-products .related-video-slider .card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .related-products .related-video-slider {
    margin: 0;
    padding: 0 20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .related-products .related-video-slider {
    padding: 0;
  }
  .related-products .related-video-slider .slick-list {
    margin: 0 -20px 0 -10px;
  }
}

@media only screen and (max-width: 639px) {
  .related-products .related-video-slider {
    padding: 0;
  }
  .related-products .related-video-slider .slick-list {
    margin: 0 -20px 0 -10px;
  }
}

.customer-review-slider-wrapper {
  border-radius: 8px;
  padding: 25px 35px;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
}

.customer-review-slider-wrapper .customer-review-slider {
  padding: 0 40px;
}

.customer-review-slider-wrapper h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 138%;
  margin-bottom: 7px;
  color: #4b4b4b;
  text-align: center;
}

.customer-review-slider-wrapper .star-review {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #8b8b8b;
  text-align: center;
}

.customer-review-slider-wrapper .star-review span {
  display: inline-block;
  background-image: url("../images/icons/saving-account/star.svg");
  background-repeat: no-repeat;
  overflow: hidden;
  width: 11px;
  height: 11px;
  text-indent: -9999999px;
}

.customer-review-slider-wrapper .star-review.text-left {
  text-align: left;
}

.customer-review-slider-wrapper .decp {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #8b8b8b;
  margin-bottom: 20px;
  position: relative;
  padding-top: 52px;
}

.customer-review-slider-wrapper .decp::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 31px;
  background-image: url("../images/icons/saving-account/double_quote.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  top: 15px;
  left: 0;
}

.customer-review-slider-wrapper a {
  outline: none;
}

.customer-review-slider-wrapper .signature {
  font-weight: bold;
  font-size: 14px;
  line-height: 138%;
  text-transform: capitalize;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.customer-review-slider-wrapper .signature .left-column {
  width: calc(100% - 170px);
  padding-right: 10px;
}

.customer-review-slider-wrapper .signature .right-column {
  width: 170px;
}

.customer-review-slider-wrapper .signature .right-column .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
}

.customer-review-slider-wrapper .signature .right-column a:not(:last-child) {
  margin-right: 25px;
}

.customer-review-slider-wrapper .signature .right-column .count {
  font-size: 14px;
  line-height: 23px;
  color: #8b8b8b;
  padding-left: 7px;
}

.customer-review-slider-wrapper .signature .right-column .icon {
  width: 20px;
  height: 19px;
  display: block;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.customer-review-slider-wrapper .signature .right-column .social-like {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.customer-review-slider-wrapper .signature .right-column .social-like .like {
  background: url("../images/icons/icon-like.svg") no-repeat left;
}

.customer-review-slider-wrapper .signature .right-column .social-dislike {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.customer-review-slider-wrapper .signature .right-column .social-dislike .dislike {
  background: url("../images/icons/icon-dislike.svg") no-repeat left;
}

.customer-review-slider-wrapper .bottom-btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  margin-top: 25px;
}

.customer-review-slider-wrapper .bottom-btn .ic-more {
  margin-right: 30px;
}

.customer-review-slider-wrapper .slick-arrow {
  width: 22px !important;
  height: 22px !important;
  background-size: 4px 8px !important;
  background-position: center center !important;
  background-color: #fff0e5 !important;
  border: 0 !important;
}

.customer-review-slider-wrapper .slick-arrow.slick-next {
  right: 0;
  background-image: url("../images/icons/saving-account/arrow_prev.svg");
}

.customer-review-slider-wrapper .slick-arrow.slick-prev {
  left: 0;
  background-image: url("../images/icons/saving-account/arrow_prev.svg");
}

@media only screen and (max-width: phone-wide) {
  .customer-review-slider-wrapper {
    padding: 25px;
    max-width: 100%;
  }
  .customer-review-slider-wrapper .customer-review-slider {
    padding: 0;
  }
  .customer-review-slider-wrapper .signature {
    display: block;
  }
  .customer-review-slider-wrapper .signature .left-column,
  .customer-review-slider-wrapper .signature .right-column {
    width: 100%;
  }
  .customer-review-slider-wrapper .signature .right-column {
    margin-top: 10px;
  }
  .customer-review-slider-wrapper .signature .right-column .content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .customer-review-slider-wrapper .signature .right-column .content a:not(:last-child) {
    margin-right: 25px;
  }
  .customer-review-slider-wrapper .slick-arrow {
    width: 22px !important;
    height: 35px !important;
    background-size: 8px !important;
  }
  .customer-review-slider-wrapper .slick-arrow.slick-next {
    right: -28px;
    border-radius: 0 35px 35px 0;
  }
  .customer-review-slider-wrapper .slick-arrow.slick-prev {
    left: -28px;
    border-radius: 0 35px 35px 0;
  }
  .customer-review-slider-wrapper .bottom-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customer-review-slider-wrapper .bottom-btn .ic-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .customer-review-slider-wrapper .bottom-btn .ic-more {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
  }
}

@media only screen and (max-width: 479px) {
  .customer-review-slider-wrapper {
    padding: 25px;
    max-width: 100%;
  }
  .customer-review-slider-wrapper .customer-review-slider {
    padding: 0;
  }
  .customer-review-slider-wrapper .signature {
    display: block;
  }
  .customer-review-slider-wrapper .signature .left-column,
  .customer-review-slider-wrapper .signature .right-column {
    width: 100%;
  }
  .customer-review-slider-wrapper .signature .right-column {
    margin-top: 10px;
  }
  .customer-review-slider-wrapper .signature .right-column .content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .customer-review-slider-wrapper .signature .right-column .content a:not(:last-child) {
    margin-right: 25px;
  }
  .customer-review-slider-wrapper .slick-arrow {
    width: 22px !important;
    height: 35px !important;
    background-size: 8px !important;
  }
  .customer-review-slider-wrapper .slick-arrow.slick-next {
    right: -28px;
    border-radius: 0 35px 35px 0;
  }
  .customer-review-slider-wrapper .slick-arrow.slick-prev {
    left: -28px;
    border-radius: 0 35px 35px 0;
  }
  .customer-review-slider-wrapper .bottom-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customer-review-slider-wrapper .bottom-btn .ic-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .customer-review-slider-wrapper .bottom-btn .ic-more {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
  }
}

.customer-review-slider-wrapper.blue-bg {
  color: #fff;
}

.customer-review-slider-wrapper.blue-bg h4 {
  text-transform: inherit;
}

.customer-review-slider-wrapper.blue-bg h4,
.customer-review-slider-wrapper.blue-bg .star-review,
.customer-review-slider-wrapper.blue-bg .decp {
  color: #fff;
}

.customer-review-slider-wrapper.col-md-3 {
  margin: 0 15px;
}

.customer-review-slider-wrapper.customer-review-small {
  padding: 25px;
}

.customer-review-slider-wrapper.customer-review-small .customer-review-slider {
  padding: 0;
}

.customer-review-slider-wrapper.customer-review-small h4 {
  text-align: left;
}

.customer-review-slider-wrapper.customer-review-small .star-review {
  text-align: left;
}

.customer-review-slider-wrapper.customer-review-small .decp {
  padding-top: 30px;
}

.customer-review-slider-wrapper.customer-review-small .decp::after {
  width: 28px;
  height: 22px;
  top: 5px;
}

.customer-review-slider-wrapper.customer-review-small .signature {
  display: block;
}

.customer-review-slider-wrapper.customer-review-small .signature .left-column,
.customer-review-slider-wrapper.customer-review-small .signature .right-column {
  width: 100%;
}

.customer-review-slider-wrapper.customer-review-small .signature .right-column {
  margin-top: 10px;
}

.customer-review-slider-wrapper.customer-review-small .signature .right-column .content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.customer-review-slider-wrapper.customer-review-small .signature .right-column .content a:not(:last-child) {
  margin-right: 25px;
}

.customer-review-slider-wrapper.customer-review-small .bottom-btn {
  border-top: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.customer-review-slider-wrapper.customer-review-small .bottom-btn .ic-btn {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.customer-review-slider-wrapper.customer-review-small .bottom-btn .ic-more {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.customer-review-slider-wrapper.customer-review-small .slick-arrow {
  width: 22px !important;
  height: 35px !important;
  background-size: 8px !important;
}

.customer-review-slider-wrapper.customer-review-small .slick-arrow.slick-next {
  right: -28px;
  border-radius: 0 35px 35px 0;
}

.customer-review-slider-wrapper.customer-review-small .slick-arrow.slick-prev {
  left: -28px;
  border-radius: 0 35px 35px 0;
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active .decp {
  padding-right: 55px;
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active .signature {
  padding-right: 15px;
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp {
  padding-left: 55px;
  padding-right: 0;
  position: relative;
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31pxs;
  height: calc(100% - 31px);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp::after {
  left: 55px;
}

.customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .signature {
  padding-left: 55px;
  padding-right: 0;
}

@media only screen and (max-width: 991px) {
  .customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active .decp {
    padding-right: 0;
  }
  .customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp {
    padding-left: 0;
  }
  .customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp::before {
    display: none;
  }
  .customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .decp::after {
    left: 0;
  }
  .customer-review-slider-wrapper.customer-review-large .customer-review-slider-item.slick-active:nth-child(2n) .signature {
    padding-left: 0;
  }
}

.customer-review-slider-wrapper.customer-review-large.blue-bg .customer-review-slider-item.slick-active:nth-child(2n) .decp::before {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-review-slider-wrapper .reviews--scroll {
  height: 140px;
  overflow: auto;
}

.customer-review-slider-wrapper .reviews--scroll .decp {
  padding-right: 10px;
}

.reference-section .reference-title {
  margin-bottom: 30px;
}

.to-apply-component .to-apply-wrapper h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  margin-bottom: 32px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider {
  margin-bottom: 45px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .slick-list {
  margin-left: 13px;
  margin-right: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  margin: 0 42px 0 12px;
  position: relative;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background-image: url("../images/icons/saving-account/trangle.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: -30px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item .to-apply-slider-item-inner {
  padding: 32px 0 32px 32px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item .to-apply-slider-item-inner .to-apply-icon {
  width: 70px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item .to-apply-slider-item-inner .to-apply-content {
  width: calc(100% - 70px);
  padding-left: 23px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item .to-apply-slider-item-inner .to-apply-content h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 7px;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .to-apply-slider-item .to-apply-slider-item-inner .to-apply-content .decp {
  font-size: 14px;
  line-height: 138%;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .slick-dots {
  bottom: -30px;
  text-align: center;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .slick-arrow {
  top: calc(50% - 22px) !important;
  border: 0;
}

.to-apply-component .to-apply-wrapper .to-apply-slider .slick-arrow:hover {
  border: 0;
}

.to-apply-component .to-apply-wrapper .button-group {
  margin-top: 20px;
}

.to-apply-component .to-apply-wrapper .button-group .ic-btn {
  margin-right: 30px;
}

.additional-content-component .additional-content-wrapper .heading-content {
  max-width: 1090px;
}

.additional-content-component .additional-content-wrapper .heading-content p {
  line-height: 24px;
}

.additional-content-component .additional-content-wrapper .section-title {
  margin-bottom: 50px;
  text-align: left;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
}

.additional-content-component .additional-content-wrapper .section-title strong {
  font-weight: 800;
}

.additional-content-component .additional-content-wrapper .additional-content-tab.additional-content-tab-verticle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

@media only screen and (max-width: 768px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab.additional-content-tab-verticle {
    display: block;
  }
}

.additional-content-component .additional-content-wrapper .additional-content-tab .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  padding-left: 24px;
  border-top: 1px solid #ebe7e7;
  margin-bottom: 40px;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper {
  max-width: 312px;
  margin-right: 73px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper {
    margin-right: 0;
  }
}

.additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper h4 {
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper .nav-tabs {
  border-top: none;
  padding-left: 0;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content {
  position: relative;
  background: #fff7eb;
  border-radius: 10px;
  width: calc(100% - 385px);
}

@media only screen and (max-width: 768px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content {
    width: 100%;
  }
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner {
  display: none;
  padding: 40px 27px 31px 50px;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.active {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 991px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.active .media {
    margin-top: 20px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.active.mob-content-switch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.active.mob-content-switch .media {
    margin: 0 0 20px;
  }
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner h4 {
  font-weight: 800;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  color: #074a86;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner p:last-child {
  margin-bottom: 0;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner ul li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #737373;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner .grid-ul.grid-ul-2 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner .grid-ul.grid-ul-2 ul {
  width: 50%;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner .grid-ul.grid-ul-2 ul li {
  padding-right: 30px;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner .grid-ul.grid-ul-2 ul:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 38px;
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.media-content .content {
  max-width: 379px;
  width: 100%;
  margin-right: 34px;
}

@media only screen and (max-width: tablet) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.media-content .content {
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.media-content .content {
    max-width: 100%;
  }
}

.additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner.media-content .media .openvideo {
  cursor: pointer;
}

.additional-content-component .additional-content-wrapper .additional-content-icon {
  background-color: #fff;
}

.additional-content-component .additional-content-wrapper .additional-content-icon .additional-content-card {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 136%;
  color: #3d3d3d;
}

.additional-content-component .additional-content-wrapper .additional-content-icon .additional-content-card p {
  font-size: 16px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon .additional-content-card img {
  margin-bottom: 20px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider {
  border: 1px solid #dedede;
  display: block;
  margin: 0px 50px 30px;
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .additional-content-card {
  padding-right: 15px;
  padding-left: 15px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .additional-content-card img {
  margin: 0 auto 20px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-arrow {
  border: 0;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-arrow:hover {
  border: 0;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-arrow.slick-prev {
  left: -50px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-arrow.slick-next {
  right: -50px;
}

.additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-dots {
  bottom: -30px;
}

@media only screen and (max-width: tablet) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li {
    display: inline-block !important;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li:before, .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li:after {
    display: block;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 8px 22px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner {
    padding: 20px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-dots {
    text-align: center;
  }
}

@media only screen and (max-width: 990px) {
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li {
    display: inline-block !important;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li:before, .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li:after {
    display: block;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .tab-wrapper ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 8px 22px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-tab .additional-tab-content .benefits-content-inner {
    padding: 20px;
  }
  .additional-content-component .additional-content-wrapper .additional-content-icon.additional-content-slider .slick-dots {
    text-align: center;
  }
}

.special-discounts.section .section-inner {
  padding: 40px 20px;
}

.special-discounts .blue-bg .ui-selectmenu-button {
  background: url("../images/location-icon-white.svg") no-repeat left 0;
}

.special-discounts .blue-bg .ui-selectmenu-button-closed .ui-selectmenu-text,
.special-discounts .blue-bg .ui-selectmenu-button-open .ui-selectmenu-text {
  color: #fff;
}

.special-discounts .blue-bg .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.special-discounts .blue-bg .ui-selectmenu-button-open .ui-icon-triangle-1-s {
  border-top: 5px solid #fff;
}

.special-discounts .section-title {
  margin-bottom: 50px;
}

.special-discounts .short-card-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  padding-left: 46px;
  margin-bottom: 20px;
}

.special-discounts .short-card-slider {
  background: transparent;
}

.special-discounts .short-card-slider .offer-card {
  margin: 1px 15px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border-width: 0.8px;
}

.special-discounts .short-card-slider .slick-list {
  position: relative;
  z-index: 9;
  margin-bottom: -50px;
  padding-bottom: 60px;
}

.special-discounts .short-card-slider .slick-arrow {
  top: calc(50% - 45px);
  border: none !important;
  width: 35px;
}

.special-discounts .short-card-slider .slick-arrow.slick-prev {
  left: -10px;
}

.special-discounts .short-card-slider .slick-arrow.slick-next {
  right: -10px;
}

.special-discounts .short-card-slider .slick-arrow:hover {
  width: 35px;
  outline: none;
}

.special-discounts .short-card-slider .slick-dots {
  position: static;
  text-align: center;
  margin-top: 20px;
}

.special-discounts .short-card--only-heading .card-title {
  font-size: 22px;
  line-height: 33.3px;
}

@media only screen and (max-width: 1200px) {
  .special-discounts .short-card-title {
    padding-left: 0;
  }
  .special-discounts .short-card-slider .slick-arrow.slick-prev {
    left: -26px;
  }
  .special-discounts .short-card-slider .slick-arrow.slick-next {
    right: -20px;
  }
}

@media only screen and (max-width: tablet-small) {
  .special-discounts .short-card-slider {
    margin: 0 -20px;
  }
  .special-discounts .short-card-slider .slick-list {
    margin-left: -20px;
  }
  .special-discounts .offer-card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 639px) {
  .special-discounts .short-card-slider {
    margin: 0 -20px;
  }
  .special-discounts .short-card-slider .slick-list {
    margin-left: -20px;
  }
  .special-discounts .offer-card {
    margin: 0 15px 0 0;
  }
}

.special-discounts .deals-section {
  background: transparent;
}

.special-discounts .deals-section .trending-deals-tab {
  background: transparent;
}

.special-discounts .deals-section .tab-content .section-inner {
  padding: 40px 20px;
}

@media only screen and (max-width: tablet) {
  .special-discounts .deals-section .tab-content .section-inner {
    padding: 40px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .special-discounts .deals-section .tab-content .section-inner {
    padding: 40px 0 0;
  }
}

.special-discounts .deals-section .slick-arrow {
  border: none;
}

.special-discounts .grey-bg .offer-discount-slider .deal-card,
.special-discounts .grey-bg .deals-section .deal-card,
.special-discounts .white-bg .offer-discount-slider .deal-card,
.special-discounts .white-bg .deals-section .deal-card {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border-width: 0.8px;
  margin: 1px 12px;
}

.special-discounts .offer-discount-slider {
  padding: 0 30px;
}

.special-discounts .offer-discount-slider .slick-arrow {
  border: none !important;
  top: calc(50% - 38px);
}

@media only screen and (max-width: tablet) {
  .special-discounts .offer-discount-slider {
    padding: 0 10px;
  }
  .special-discounts .offer-discount-slider .slick-dots {
    text-align: center;
  }
}

@media only screen and (max-width: 990px) {
  .special-discounts .offer-discount-slider {
    padding: 0 10px;
  }
  .special-discounts .offer-discount-slider .slick-dots {
    text-align: center;
  }
}

@media only screen and (max-width: phone-wide) {
  .special-discounts .offer-discount-slider {
    padding: 0;
    margin: 0 -20px;
  }
}

@media only screen and (max-width: 479px) {
  .special-discounts .offer-discount-slider {
    padding: 0;
    margin: 0 -20px;
  }
}

.special-discounts .img-text-right .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  margin-bottom: 40px;
  padding-left: 24px;
}

@media only screen and (max-width: 768px) {
  .special-discounts .img-text-right .nav-tabs {
    padding-left: 0px;
    margin: 0 0 40px;
  }
}

.special-discounts .offer-cards-sliders {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.special-discounts .offer-cards-sliders .left-content {
  width: 46%;
  margin-right: 30px;
}

.special-discounts .offer-cards-sliders .left-content h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
}

.special-discounts .offer-cards-sliders .left-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.special-discounts .offer-cards-sliders .left-content p:not(:last-child) {
  margin-bottom: 20px;
}

.special-discounts .offer-cards-sliders .right-content {
  background: url("../images/saving-account/inflash-offers.png") no-repeat center;
  background-size: cover;
  padding: 39px 40px 49px;
  width: 54%;
  border-radius: 10px;
}

.special-discounts .offer-cards-sliders .right-content h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 16px;
  color: #fff;
}

.special-discounts .offer-cards-sliders .right-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-width: 300px;
}

@media only screen and (max-width: tablet) {
  .special-discounts .offer-cards-sliders .left-content,
  .special-discounts .offer-cards-sliders .right-content {
    width: 50%;
  }
  .special-discounts .offer-cards-sliders .right-content p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .special-discounts .offer-cards-sliders .left-content,
  .special-discounts .offer-cards-sliders .right-content {
    width: 50%;
  }
  .special-discounts .offer-cards-sliders .right-content p {
    max-width: 100%;
  }
}

@media only screen and (max-width: phone-wide) {
  .special-discounts .offer-cards-sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .special-discounts .offer-cards-sliders .left-content,
  .special-discounts .offer-cards-sliders .right-content {
    width: 100%;
  }
  .special-discounts .offer-cards-sliders .left-content {
    margin-bottom: 20px;
  }
  .special-discounts .offer-cards-sliders .right-content p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .special-discounts .offer-cards-sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .special-discounts .offer-cards-sliders .left-content,
  .special-discounts .offer-cards-sliders .right-content {
    width: 100%;
  }
  .special-discounts .offer-cards-sliders .left-content {
    margin-bottom: 20px;
  }
  .special-discounts .offer-cards-sliders .right-content p {
    max-width: 100%;
  }
}

@media only screen and (max-width: phablet) {
  .special-discounts .offer-details.img-text-right {
    margin: 0 -20px 0 -20px;
  }
  .special-discounts .offer-details.img-text-right h4 {
    padding: 0 20px;
  }
  .special-discounts .offer-details.img-text-right .tab-content {
    padding: 0 20px 40px;
  }
}

@media only screen and (max-width: 559px) {
  .special-discounts .offer-details.img-text-right {
    margin: 0 -20px 0 -20px;
  }
  .special-discounts .offer-details.img-text-right h4 {
    padding: 0 20px;
  }
  .special-discounts .offer-details.img-text-right .tab-content {
    padding: 0 20px 40px;
  }
}

.way-to-bank-cards-section .width-25 {
  width: calc(25% - 30px);
}

.way-to-bank-cards-section .width-26 {
  width: calc(26% - 30px);
}

.way-to-bank-cards-section .width-49 {
  width: calc(49% - 66px);
}

.way-to-bank-cards-section .section-inner {
  padding: 40px 20px;
}

.way-to-bank-cards-section .row {
  margin: 0 -15px;
}

.way-to-bank-cards-section .way-to-bank-cards {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 26px 21px 35px 23px;
  margin: 0 15px;
}

.way-to-bank-cards-section h4 {
  line-height: 30px;
  margin-bottom: 20px;
}

.way-to-bank-cards-section h5 {
  font-size: 14px;
  line-height: 17px;
  color: #3d3d3d;
}

.way-to-bank-cards-section p {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
}

.way-to-bank-cards-section p strong {
  font-weight: 600;
}

.way-to-bank-cards-section .img-align-left .card-warpper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.way-to-bank-cards-section .img-align-left .card-warpper .media {
  width: 79px;
  margin-right: 20px;
}

.way-to-bank-cards-section .img-align-left .card-warpper .content {
  width: calc(100% - 90px);
}

.way-to-bank-cards-section .img-align-bottom .card-warpper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.way-to-bank-cards-section .img-align-bottom .card-warpper h5 {
  margin-bottom: 11px;
}

.way-to-bank-cards-section .img-align-bottom .card-warpper p {
  margin-bottom: 11px;
  max-width: 376px;
}

.way-to-bank-cards-section .img-align-bottom .card-warpper a {
  margin-bottom: 12px;
}

.way-to-bank-cards-section .img-align-bottom .card-warpper .mt-23 {
  margin-top: 12px;
}

.way-to-bank-cards-section .img-align-bottom .card-warpper .align-right {
  text-align: right;
}

.way-to-bank-cards-section .app-link {
  border-top: 1px dashed #f2994a;
  margin-top: 27px;
  padding-top: 22px;
  position: relative;
  bottom: -37px;
}

.way-to-bank-cards-section .app-link h5 {
  margin-bottom: 17px;
}

.way-to-bank-cards-section .app-link .app-link-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.way-to-bank-cards-section .app-link .app-link-inner a {
  width: 50%;
}

.way-to-bank-cards-section .app-link .app-link-inner a:not(:last-child) {
  margin-right: 19px;
}

@media only screen and (max-width: 1078px) {
  .way-to-bank-cards-section .app-link {
    bottom: 0;
  }
}

@media only screen and (max-width: tablet) {
  .way-to-bank-cards-section .width-25,
  .way-to-bank-cards-section .width-49,
  .way-to-bank-cards-section .width-26 {
    width: 100%;
    max-width: 100%;
  }
  .way-to-bank-cards-section .way-to-bank-cards:not(:last-child) {
    margin-bottom: 20px;
  }
  .way-to-bank-cards-section .img-align-left .card-warpper {
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .way-to-bank-cards-section .img-align-bottom .card-warpper .media {
    text-align: left;
  }
  .way-to-bank-cards-section .img-align-bottom .card-warpper p {
    max-width: 100%;
  }
  .way-to-bank-cards-section .app-link .app-link-inner a {
    width: auto;
  }
}

@media only screen and (max-width: 990px) {
  .way-to-bank-cards-section .width-25,
  .way-to-bank-cards-section .width-49,
  .way-to-bank-cards-section .width-26 {
    width: 100%;
    max-width: 100%;
  }
  .way-to-bank-cards-section .way-to-bank-cards:not(:last-child) {
    margin-bottom: 20px;
  }
  .way-to-bank-cards-section .img-align-left .card-warpper {
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .way-to-bank-cards-section .img-align-bottom .card-warpper .media {
    text-align: left;
  }
  .way-to-bank-cards-section .img-align-bottom .card-warpper p {
    max-width: 100%;
  }
  .way-to-bank-cards-section .app-link .app-link-inner a {
    width: auto;
  }
}

@media only screen and (max-width: 400px) {
  .way-to-bank-cards-section .app-link .app-link-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .way-to-bank-cards-section .app-link .app-link-inner a {
    width: 100%;
  }
  .way-to-bank-cards-section .app-link .app-link-inner a:not(:last-child) {
    margin: 0 0 20px;
  }
}

.eligibility-documentation-component {
  overflow: hidden;
}

.eligibility-documentation-component .eligibility-documentation-wrapper h4.section-title {
  margin-bottom: 50px;
  text-align: left;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
}

.eligibility-documentation-component .eligibility-documentation-wrapper h4.section-title strong {
  font-weight: 800;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .additional-content-tab .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  padding-left: 24px;
  border-top: 1px solid #ebe7e7;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .additional-content-tab .nav-tabs {
    padding-left: 0;
  }
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common h5 {
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .card-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 -27px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .card-wrapper .eligibility-documentation-card {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 10px 27px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .card-wrapper .eligibility-documentation-card .card-icon {
  margin-right: 15px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .card-wrapper .eligibility-documentation-card .card-content .lable {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 2px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .card-wrapper .eligibility-documentation-card .card-content .value {
  font-weight: 600;
  font-size: 24px;
  line-height: 144%;
  letter-spacing: 0.02em;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .cards-note {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  margin-top: 8px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common .cards-note .ic-more::after {
  display: none;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-details-below h5 {
  font-size: 16px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card h5 {
  padding: 25px 55px;
  margin: 0;
  border-right: 1px solid #dedede;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card .cards-note {
  padding: 10px 55px;
  margin: 0;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card .card-wrapper {
  margin: 0 -55px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card .card-wrapper .eligibility-documentation-card {
  padding: 10px 55px;
  margin: 0;
  border-right: 1px solid #dedede;
}

@media only screen and (max-width: 768px) {
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card h5 {
    border-right: 0;
  }
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card .card-wrapper {
    display: block;
  }
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-card .card-wrapper .eligibility-documentation-card {
    border-right: 0;
  }
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .additional-content-tab .nav-tabs {
  border-top: 0;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper {
  display: block;
  margin: 0;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper .line-lable {
  position: relative;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper .line-lable::after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: "";
  border-bottom: 1px dashed #4b4b4b;
  left: 0;
  top: 10px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper .line-lable label {
  background-color: #f8f8f8;
  position: relative;
  z-index: 1;
  padding-right: 15px;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper .eligibility-documentation-card {
  margin: 20px 0 30px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs .card-wrapper .eligibility-documentation-card .card-content .lable {
  margin-top: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .additional-content-tab .nav-tabs {
  border-top: 0;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .info {
  font-size: 14px;
  line-height: 138%;
  margin-bottom: 20px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail h2,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail h3,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail h4,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail h5,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail p {
  margin-bottom: 20px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ul,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ol {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ul li,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ol li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ul li:last-child,
.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ol li:last-child {
  margin-bottom: 0;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.eligibility-documentation-full-width-tabs-detail-discription .detail ol li {
  list-style-type: decimal;
}

.eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.documentation-table .documentation-table-wrapper table.custom-table tr td:not(:first-child) {
  text-align: center;
}

@media only screen and (max-width: tablet) {
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.documentation-table .documentation-table-wrapper {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 990px) {
  .eligibility-documentation-component .eligibility-documentation-wrapper .eligibility-documentation-common.documentation-table .documentation-table-wrapper {
    overflow-x: auto;
  }
}

.eligibility-documentation-component.eligibility-documentation-component-full-width-tabs .section-inner, .eligibility-documentation-component.eligibility-documentation-component-full-width-tabs-detail-discription .section-inner {
  padding-top: 0;
}

.eligibility-documentation-component .eligibility-details-list-only {
  max-width: 890px;
}

.eligibility-documentation-component .eligibility-details-list-only h5 {
  font-weight: 800;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.eligibility-documentation-component .eligibility-details-list-only ul {
  margin: 0 0 10px 10px;
  padding-left: 20px;
  font-size: 18px;
  line-height: 133%;
  font-weight: 500;
}

.eligibility-documentation-component .eligibility-details-list-only ul li {
  list-style-type: disc;
  margin-bottom: 15px;
}

.eligibility-documentation-component .eligibility-details-list-only ul li:last-child {
  margin-bottom: 0;
}

.eligibility-documentation-component .eligibility-details-list-only p {
  font-size: 16px;
  margin-bottom: 20px;
}

.eligibility-documentation-component .eligibility-details-list-only p.notes {
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .eligibility-documentation-component .eligibility-details-list-only ul {
    font-size: 16px;
  }
}

.orange-bg {
  background-color: #fff7eb;
}

.loan-finder .loan-finder-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.loan-finder .loan-finder-inner p {
  color: #ffdeac;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 38px;
}

.loan-finder .loan-finder-inner .content {
  width: 62%;
}

.loan-finder .loan-finder-inner .media {
  width: 35%;
  margin-left: 60px;
}

.loan-finder .loan-finder-inner .cal-dropdown,
.loan-finder .loan-finder-inner .monthly-income {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.loan-finder .loan-finder-inner .cal-dropdown label,
.loan-finder .loan-finder-inner .monthly-income label {
  color: #fff;
}

.loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button,
.loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button {
  max-width: 192px;
  border: 1px solid #fff;
  border-radius: 3px;
}

.loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button-open .ui-icon-triangle-1-s,
.loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button-open .ui-icon-triangle-1-s {
  top: 7px;
  right: 9px;
}

.loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button-closed .ui-icon-triangle-1-s {
  border-top: 5px solid #fff;
}

.loan-finder .loan-finder-inner .cal-dropdown .input-group,
.loan-finder .loan-finder-inner .monthly-income .input-group {
  position: relative;
}

.loan-finder .loan-finder-inner .cal-dropdown .input-group .rupee-icon,
.loan-finder .loan-finder-inner .monthly-income .input-group .rupee-icon {
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
}

.loan-finder .loan-finder-inner .cal-dropdown .input-group .input-style,
.loan-finder .loan-finder-inner .monthly-income .input-group .input-style {
  padding-left: 25px;
}

.loan-finder .loan-finder-inner .cal-dropdown .input-style,
.loan-finder .loan-finder-inner .monthly-income .input-style {
  max-width: 192px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff !important;
  border-radius: 3px;
  font-weight: 700;
}

.loan-finder .loan-finder-inner .cal-dropdown input:focus,
.loan-finder .loan-finder-inner .monthly-income input:focus {
  background: transparent !important;
}

.loan-finder .loan-finder-inner .cal-dropdown {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.loan-finder .loan-finder-inner .cal-dropdown label {
  width: auto;
  margin-right: 16px;
}

.loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-text {
  color: #fff;
  text-transform: unset;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.loan-finder .loan-finder-inner .monthly-income label {
  max-width: 224px;
  margin-right: 16px;
}

.loan-finder .loan-finder-inner .buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.loan-finder .loan-finder-inner .buttons p {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0px 20px;
}

.loan-finder .loan-finder-inner .number-holder {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  padding: 27px 30px 30px;
}

.loan-finder .loan-finder-inner .number-holder label {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 6px;
}

.loan-finder .loan-finder-inner .number-holder p {
  font-weight: bold;
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0;
  white-space: nowrap;
}

.loan-finder .loan-finder-inner .number-holder .calculation-col {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.loan-finder .loan-finder-inner .number-holder .calculation-col:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.loan-finder .loan-finder-inner .number-holder .calculation-col:not(:first-child) {
  padding-left: 30px;
}

.loan-finder .loan-finder-inner .buttons .white {
  background: transparent;
}

.loan-finder .loan-finder-inner .col {
  position: relative;
}

.loan-finder .loan-finder-inner .error {
  position: absolute;
  color: #fff;
  bottom: -23px;
  right: 20px;
}

@media only screen and (max-width: 1174px) {
  .loan-finder .loan-finder-inner .content {
    width: 60%;
  }
  .loan-finder .loan-finder-inner .media {
    width: 40%;
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1010px) {
  .loan-finder .loan-finder-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .loan-finder .loan-finder-inner .content,
  .loan-finder .loan-finder-inner .media {
    width: 100%;
  }
  .loan-finder .loan-finder-inner .media {
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: phone-wide) {
  .loan-finder .loan-finder-inner .cal-dropdown,
  .loan-finder .loan-finder-inner .monthly-income {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .loan-finder .loan-finder-inner .cal-dropdown label,
  .loan-finder .loan-finder-inner .monthly-income label {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button,
  .loan-finder .loan-finder-inner .cal-dropdown .input-style,
  .loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button,
  .loan-finder .loan-finder-inner .monthly-income .input-style {
    max-width: 100%;
    width: 100%;
  }
  .loan-finder .loan-finder-inner .number-holder .calculation-col:not(:last-child) {
    border-right: 0;
    padding: 0 0 20px;
  }
  .loan-finder .loan-finder-inner .number-holder .calculation-col:not(:first-child) {
    padding-left: 0;
  }
}

@media only screen and (max-width: 479px) {
  .loan-finder .loan-finder-inner .cal-dropdown,
  .loan-finder .loan-finder-inner .monthly-income {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .loan-finder .loan-finder-inner .cal-dropdown label,
  .loan-finder .loan-finder-inner .monthly-income label {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .loan-finder .loan-finder-inner .cal-dropdown .ui-selectmenu-button,
  .loan-finder .loan-finder-inner .cal-dropdown .input-style,
  .loan-finder .loan-finder-inner .monthly-income .ui-selectmenu-button,
  .loan-finder .loan-finder-inner .monthly-income .input-style {
    max-width: 100%;
    width: 100%;
  }
  .loan-finder .loan-finder-inner .number-holder .calculation-col:not(:last-child) {
    border-right: 0;
    padding: 0 0 20px;
  }
  .loan-finder .loan-finder-inner .number-holder .calculation-col:not(:first-child) {
    padding-left: 0;
  }
}

.how-it-works-component .section-title {
  margin-bottom: 50px;
  text-align: left;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
}

.how-it-works-component .how-it-works-two-cta .white-card-wrapper {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border: 1px solid #dedede;
}

.how-it-works-component .how-it-works-two-cta h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 7px;
}

.how-it-works-component .how-it-works-two-cta .how-it-works-card .how-it-works-card-inner .content-wrapper a {
  text-decoration: none;
  color: #4b4b4b;
}

.how-it-works-component .how-it-works-two-cta .how-it-works-card .how-it-works-card-inner .content-wrapper p {
  font-size: 14px;
  line-height: 138%;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .white-card-wrapper {
  padding: 55px 25px 30px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner {
  text-align: center;
  width: calc(100% / 3);
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper::after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: "";
  border-bottom: 1px dashed #f2994a;
  left: 0;
  top: 50%;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span {
  display: inline-block;
  background: #fff;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span::after, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span::before {
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  position: absolute;
  background: #f2994a;
  border-radius: 100%;
  margin-top: -3px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span::after {
  right: 0;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span::before {
  left: 0;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .content-wrapper a {
  text-decoration: none;
  color: #4b4b4b;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .content-wrapper p {
  max-width: 260px;
  margin: 0 auto;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:first-child .icon-wrapper::after {
  width: 50%;
  left: 50%;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:first-child .icon-wrapper span::before {
  display: none;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:last-child .icon-wrapper::after {
  width: 50%;
  left: 0;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:last-child .icon-wrapper span::after {
  display: none;
}

@media only screen and (max-width: phablet) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner {
    width: 100%;
    position: relative;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) {
    padding-bottom: 100px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child):after {
    height: 1px;
    width: 60px;
    position: absolute;
    content: "";
    border-bottom: 1px dashed #f2994a;
    left: 41%;
    top: unset;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    bottom: 49px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background: #f2994a;
    border-radius: 100%;
    margin-top: -3px;
    margin-left: -8px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before {
    content: "";
    bottom: 81px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper::after {
    content: "";
    top: unset;
    bottom: 12px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper:after {
    display: none;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span:after {
    display: none;
  }
}

@media only screen and (max-width: 559px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner {
    width: 100%;
    position: relative;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) {
    padding-bottom: 100px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child):after {
    height: 1px;
    width: 60px;
    position: absolute;
    content: "";
    border-bottom: 1px dashed #f2994a;
    left: 41%;
    top: unset;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    bottom: 49px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background: #f2994a;
    border-radius: 100%;
    margin-top: -3px;
    margin-left: -8px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before {
    content: "";
    bottom: 81px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper::after {
    content: "";
    top: unset;
    bottom: 12px;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper:after {
    display: none;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner .icon-wrapper span:after {
    display: none;
  }
}

@media only screen and (max-width: 414px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    margin-left: -2px;
  }
}

@media only screen and (max-width: 400px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    margin-left: -1px;
  }
}

@media only screen and (max-width: 375px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    margin-left: 1px;
  }
}

@media only screen and (max-width: 320px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:before, .how-it-works-component .how-it-works-two-cta.how-it-works-single-card .how-it-works-card .how-it-works-card-inner:not(:last-child) .content-wrapper:after {
    content: "";
    margin-left: 6px;
  }
}

.how-it-works-component .how-it-works-two-cta.how-it-works-multi-card .how-it-works-slider {
  padding: 15px;
  margin-bottom: 2px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-multi-card .how-it-works-slider .slick-dots {
  bottom: -15px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-multi-card .how-it-works-card-inner {
  margin: 12px 12px;
  padding: 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.how-it-works-component .how-it-works-two-cta.how-it-works-multi-card .how-it-works-card-inner .icon-wrapper {
  width: 70px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-multi-card .how-it-works-card-inner .content-wrapper {
  width: calc(100% - 30px);
  padding-left: 20px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  margin: 0 42px 30px 12px;
  position: relative;
  width: calc(25% - 64px);
}

@media only screen and (max-width: 991px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item {
    width: calc(50% - 64px);
  }
}

@media only screen and (max-width: 768px) {
  .how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item {
    width: calc(100% - 64px);
  }
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background-image: url("../images/icons/saving-account/trangle_grey.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: -30px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner {
  padding: 22px 0 22px 22px;
  min-height: 148px;
  text-align: center;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner a {
  text-decoration: none;
  color: #4b4b4b;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner .icon-wrapper {
  margin: 0 auto 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner .icon-wrapper h5 {
  margin-left: 6px;
  margin-bottom: 0;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner .icon-wrapper img {
  width: 40px;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .how-it-works-arrow-card-item .how-it-works-arrow-card-item-inner .how-it-works-arrow-card-content .decp {
  font-size: 14px;
  line-height: 138%;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .slick-dots {
  bottom: -30px;
  text-align: center;
}

.how-it-works-component .how-it-works-two-cta.how-it-works-arrow-card .slick-arrow {
  top: calc(50% - 22px) !important;
}

.how-it-works-component .how-it-works-two-cta .list-content-wrapper {
  margin-top: 40px;
}

.how-it-works-component .how-it-works-two-cta .list-content-wrapper ul {
  padding-left: 20px;
}

.how-it-works-component .how-it-works-two-cta .list-content-wrapper ul li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.how-it-works-component .how-it-works-two-cta .list-content-wrapper ul li:last-child {
  margin-bottom: 0;
}

.how-it-works-component .button-group {
  margin-top: 40px;
}

.how-it-works-component .button-group .ic-btn {
  margin-right: 30px;
}

.debit-cards-section .deals-section {
  background: transparent;
  padding: 40px 0;
}

.debit-cards-section .section-title {
  margin-bottom: 40px !important;
}

.debit-cards-section .deal-card .deal-inner .image {
  height: 116px;
}

.debit-cards-section .deal-card .deal-inner .image img {
  max-height: 116px;
}

.debit-cards-section .trending-deals-tab {
  background: transparent;
}

.debit-cards-section .trending-deals-tab .section-inner {
  padding: 40px 20px;
}

.debit-cards-section .tabs-bottom-btn {
  max-width: 1260px;
  margin: -80px auto 0;
  padding-left: 80px;
}

@media only screen and (max-width: tablet) {
  .debit-cards-section .tabs-bottom-btn {
    margin: -120px auto 0;
  }
}

@media only screen and (max-width: 990px) {
  .debit-cards-section .tabs-bottom-btn {
    margin: -120px auto 0;
  }
}

@media only screen and (max-width: tablet-small) {
  .debit-cards-section .tabs-bottom-btn {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 639px) {
  .debit-cards-section .tabs-bottom-btn {
    padding-left: 30px;
  }
}

.debit-cards-section .slick-dots {
  text-align: right;
  padding-right: 13px;
}

.debit-cards-section .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.debit-cards-section .slick-slide {
  height: inherit;
}

@media only screen and (max-width: phablet) {
  .debit-cards-section .section-title {
    margin-bottom: 20px !important;
  }
  .debit-cards-section .trending-deals-tab {
    background: transparent;
  }
  .debit-cards-section .trending-deals-tab .section-inner {
    padding: 40px 0px;
  }
  .debit-cards-section .slick-dots {
    padding-right: 15px;
  }
}

@media only screen and (max-width: 559px) {
  .debit-cards-section .section-title {
    margin-bottom: 20px !important;
  }
  .debit-cards-section .trending-deals-tab {
    background: transparent;
  }
  .debit-cards-section .trending-deals-tab .section-inner {
    padding: 40px 0px;
  }
  .debit-cards-section .slick-dots {
    padding-right: 15px;
  }
}

.debit-cards-section .recomeded-cards-section .cards-list {
  padding: 0 30px;
}

.debit-cards-section .recomeded-cards-section .cards-list .card-item {
  background: #fff;
  border: 0.8px solid #dedede;
  -webkit-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  box-shadow: 0px 4px 15px rgba(243, 126, 32, 0.06);
  border-radius: 10px;
  padding: 17px 20px 21px;
  margin: 0 10px;
}

.debit-cards-section .recomeded-cards-section .cards-list .card-item .two-column {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}

.debit-cards-section .recomeded-cards-section .cards-list .card-item .two-column .media {
  max-width: 70px;
  margin-right: 16px;
}

.debit-cards-section .recomeded-cards-section .cards-list .card-item .two-column .content {
  width: calc(100%- 85px);
}

.debit-cards-section .recomeded-cards-section .cards-list .card-item .two-column .content p {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
}

.debit-cards-section .recomeded-cards-section .cards-list .slick-arrow {
  border: 0;
  outline: 0;
  top: calc(50% - 45px);
}

.debit-cards-section .recomeded-cards-section .cards-list .slick-arrow:hover {
  border: 0;
}

.debit-cards-section .recomeded-cards-section .cards-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.debit-cards-section .recomeded-cards-section .cards-list .slick-slide {
  height: inherit;
}

.debit-cards-section .recomeded-cards-section .cards-list .slick-dots {
  position: static;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: tablet) {
  .debit-cards-section .recomeded-cards-section .cards-list {
    padding: 0px;
  }
}

@media only screen and (max-width: 990px) {
  .debit-cards-section .recomeded-cards-section .cards-list {
    padding: 0px;
  }
}

@media only screen and (max-width: phablet) {
  .debit-cards-section .recomeded-cards-section .cards-list {
    margin: 0 -20px;
  }
  .debit-cards-section .recomeded-cards-section .cards-list .slick-list {
    margin-left: -20px;
  }
}

@media only screen and (max-width: 559px) {
  .debit-cards-section .recomeded-cards-section .cards-list {
    margin: 0 -20px;
  }
  .debit-cards-section .recomeded-cards-section .cards-list .slick-list {
    margin-left: -20px;
  }
}

@media only screen and (max-width: 320px) {
  .debit-cards-section .recomeded-cards-section .cards-list .buttons a:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .debit-cards-section .left-arrow,
  .debit-cards-section .right-arrow {
    display: block;
  }
  .debit-cards-section .nav-tabs {
    margin: 0 auto;
    display: block;
    max-width: 98%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .debit-cards-section .nav-tabs li {
    display: inline-block;
    float: none;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .debit-cards-section .nav-tabs:before, .debit-cards-section .nav-tabs:after {
    width: 20px !important;
    display: inline-block;
  }
  .debit-cards-section .nav-tabs:before {
    -webkit-transform: matrix(1, 0, 0, -1, 4, -6);
            transform: matrix(1, 0, 0, -1, 4, -6);
  }
  .debit-cards-section .nav-tabs:after {
    -webkit-transform: matrix(-1, 0, 0, 1, 0, -6);
            transform: matrix(-1, 0, 0, 1, 0, -6);
  }
}

.interest-rate-charges .label {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 20px;
}

.interest-rate-charges .rate-small-card {
  width: calc(68% - 30px);
  margin-right: 30px;
}

.interest-rate-charges .rate-medium-card {
  width: calc(68% - 30px);
  margin-right: 30px;
}

.interest-rate-charges .rate-medium-card .info-box {
  background: #fff;
  padding: 27px 29px 29px 34px;
  border-radius: 10px;
}

.interest-rate-charges .rate-medium-card .info-box:not(:last-child) {
  margin-bottom: 16px;
}

.interest-rate-charges .rate-medium-card .info-box .label {
  font-weight: normal;
}

.interest-rate-charges .rate-medium-card .info-box .info-box-two {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.interest-rate-charges .rate-medium-card .info-box .info-box-two ul {
  width: 50%;
}

.interest-rate-charges .rate-medium-card .info-box .info-box-two ul li {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 140.62%;
  letter-spacing: 0.2px;
  padding-left: 0;
}

.interest-rate-charges .rate-medium-card .info-box .info-box-two ul li:not(:last-child) {
  margin-bottom: 20px;
}

.interest-rate-charges .rate-medium-card .info-box .info-box-two ul li span.icon {
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("../images/icons/more.png") no-repeat center;
  margin-left: 5px;
  margin-top: 2px;
}

.interest-rate-charges .rate-vertical-card .interest-rates-box .content {
  padding: 21px 25px 20px 32px;
  margin-bottom: 16px;
}

.interest-rate-charges .rate-vertical-card .interest-rates-box .content .label {
  margin-bottom: 0;
}

@media only screen and (max-width: tablet) {
  .interest-rate-charges .rate-small-card {
    width: 100%;
    margin: 0 0 20px;
  }
  .interest-rate-charges .rate-medium-card {
    width: 100%;
    margin-right: 0px;
  }
  .interest-rate-charges .rate-vertical-card .interest-rates-box {
    width: 40%;
  }
  .interest-rate-charges .rate-vertical-card .interest-rates-box .interest-rate-content {
    margin: 0;
  }
}

@media only screen and (max-width: 990px) {
  .interest-rate-charges .rate-small-card {
    width: 100%;
    margin: 0 0 20px;
  }
  .interest-rate-charges .rate-medium-card {
    width: 100%;
    margin-right: 0px;
  }
  .interest-rate-charges .rate-vertical-card .interest-rates-box {
    width: 40%;
  }
  .interest-rate-charges .rate-vertical-card .interest-rates-box .interest-rate-content {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .interest-rate-charges .rate-medium-card .info-box .info-box-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interest-rate-charges .rate-medium-card .info-box .info-box-two ul {
    width: 100%;
    margin-bottom: 20px;
  }
  .interest-rate-charges .rate-vertical-card .interest-rates-box {
    width: 60%;
  }
}

@media only screen and (max-width: tablet-small) {
  .interest-rate-charges .rate-vertical-card .interest-rates-box {
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .interest-rate-charges .rate-vertical-card .interest-rates-box {
    width: 100%;
  }
}

.quick-links .quick-links-inner .loan-forms {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.quick-links .quick-links-inner .widget-content .widget .barcode-content {
  border-radius: 10px;
}

.quick-links .quick-links-inner .widget-content .widget .barcode-content .content p {
  font-weight: 600;
}

@media only screen and (max-width: tablet) {
  .quick-links .quick-links-inner .widget-content {
    max-width: 40%;
  }
  .quick-links .quick-links-inner .widget-content .widget .barcode-content {
    margin: 0;
  }
}

@media only screen and (max-width: 990px) {
  .quick-links .quick-links-inner .widget-content {
    max-width: 40%;
  }
  .quick-links .quick-links-inner .widget-content .widget .barcode-content {
    margin: 0;
  }
}

@media only screen and (max-width: tablet-small) {
  .quick-links .quick-links-inner .widget-content {
    max-width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .quick-links .quick-links-inner .widget-content {
    max-width: 100%;
  }
}

.comparing-cards-section .section-title {
  margin-bottom: 50px;
}

.comparing-cards-section .comparing-cards {
  overflow-x: hidden;
  padding-top: 20px;
}

.comparing-cards-section .comparing-cards .empty-card-content .comparing-cards-inner {
  padding-top: 20px;
}

.comparing-cards-section .comparing-cards .comparing-cards-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  width: 100%;
}

.comparing-cards-section .comparing-cards .comparing-cards-bottom {
  padding-left: 38%;
  margin-top: 10px;
}

.comparing-cards-section .comparing-cards .comparing-cards-bottom p {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
}

.comparing-cards-section .comparing-cards .compare-left-heading {
  width: 40%;
  padding: 0;
}

.comparing-cards-section .comparing-cards .compare-left-heading .comparing-block {
  padding-left: 0 !important;
}

.comparing-cards-section .comparing-cards .compare-left-heading .comparing-block p {
  text-align: left;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 20px;
  color: #053c6d;
}

.comparing-cards-section .comparing-cards .compare-left-heading .comparing-block:not(:last-child):after {
  content: "";
  position: absolute;
  border-bottom: 1px dashed #dedede;
  width: 1220px;
  bottom: -1px;
}

@media only screen and (max-width: 1220px) {
  .comparing-cards-section .comparing-cards .compare-left-heading .comparing-block:not(:last-child):after {
    width: 94vw;
  }
}

@media only screen and (max-width: tablet) {
  .comparing-cards-section .comparing-cards .compare-left-heading .comparing-block:not(:last-child):after {
    display: none;
  }
}

@media only screen and (max-width: 990px) {
  .comparing-cards-section .comparing-cards .compare-left-heading .comparing-block:not(:last-child):after {
    display: none;
  }
}

.comparing-cards-section .comparing-cards .compare-content {
  width: 20%;
  background: #fff7eb;
  border-radius: 10px;
  padding: 0px 0px 5px;
}

.comparing-cards-section .comparing-cards .compare-content:not(:last-child) {
  margin-right: 30px;
}

.comparing-cards-section .comparing-cards .compare-content p {
  text-align: center;
  font-size: 14px;
  line-height: 21px;
}

.comparing-cards-section .comparing-cards .compare-content .content img {
  width: 18px;
  text-align: center;
  margin: 0 auto;
}

.comparing-cards-section .comparing-cards .compare-content.empty-card img {
  width: 30px;
  height: 30px;
}

.comparing-cards-section .comparing-cards .comparing-column {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: column;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  padding: 0px 20px 11px;
  margin-bottom: 16px;
  position: relative;
  text-align: center;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block h4 {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: #074a86;
  margin-top: 9px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block ul li {
  margin-bottom: 10px;
  color: #737373;
  font-size: 14px;
  line-height: 24px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block ul li:before {
  content: "\2022";
  color: #a6a6a6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block a.link {
  color: #f37e20;
  text-decoration: none;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block p:not(:last-child) {
  margin-bottom: 10px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block .star-review {
  text-align: center;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block .star-review span {
  display: inline-block;
  background-image: url("../images/saving-account/comparing-cards/orange-star-empty.png");
  background-repeat: no-repeat;
  overflow: hidden;
  width: 18px;
  height: 17px;
  text-indent: -9999999px;
  margin: 10px 0;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block .star-review span.checked {
  background-image: url("../images/saving-account/comparing-cards/orange-star-fill.svg");
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block .star-review span:not(:last-child) {
  margin-right: 11px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block .close-btn {
  position: absolute;
  right: -21px;
  top: -20px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards {
  margin-top: -20px;
  padding-bottom: 23px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards p {
  text-align: left;
  margin-top: 3px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards img {
  border-radius: 8px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn {
  margin-top: 10px;
  max-height: 80px;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn .button-group {
  text-align: center;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn .ic-btn {
  width: 100%;
  outline: none;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn .ic-more {
  margin-top: 20px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  margin-top: 15px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn {
  background: transparent;
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #f37e20;
  text-transform: capitalize;
  border: 0;
  outline: 0;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn:not(:last-child) {
  margin-right: 20px;
}

.comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn img {
  margin-right: 9px;
  width: 14px;
  height: 14px;
}

@media only screen and (max-width: tablet) {
  .comparing-cards-section .comparing-cards .comparing-cards-inner {
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    overflow-x: auto;
  }
  .comparing-cards-section .comparing-cards .comparing-column {
    margin-top: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn {
    text-align: center;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn:not(:last-child) {
    margin: 0 15px 0px 0;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn .ic-btn {
    padding: 12px 5px;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block:not(:last-child) {
    border-bottom: 1px dashed #dedede;
  }
  .comparing-cards-section .comparing-cards .compare-left-heading {
    width: 50%;
  }
  .comparing-cards-section .comparing-cards .compare-content {
    width: calc(50% - 30px);
  }
  .comparing-cards-section .comparing-cards .comparing-cards-bottom {
    padding-left: 0;
  }
}

@media only screen and (max-width: 990px) {
  .comparing-cards-section .comparing-cards .comparing-cards-inner {
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    overflow-x: auto;
  }
  .comparing-cards-section .comparing-cards .comparing-column {
    margin-top: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn {
    text-align: center;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.cards .button-group .ic-btn:not(:last-child) {
    margin: 0 15px 0px 0;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block.apply-btn .ic-btn {
    padding: 12px 5px;
  }
  .comparing-cards-section .comparing-cards .comparing-column .comparing-block:not(:last-child) {
    border-bottom: 1px dashed #dedede;
  }
  .comparing-cards-section .comparing-cards .compare-left-heading {
    width: 50%;
  }
  .comparing-cards-section .comparing-cards .compare-content {
    width: calc(50% - 30px);
  }
  .comparing-cards-section .comparing-cards .comparing-cards-bottom {
    padding-left: 0;
  }
}

@media only screen and (max-width: phablet) {
  .comparing-cards-section .comparing-cards .compare-left-heading {
    width: 60%;
  }
  .comparing-cards-section .comparing-cards .compare-content {
    width: 60%;
  }
  .comparing-cards-section .comparing-cards .compare-content.empty-card .comparing-block {
    height: auto !important;
  }
}

@media only screen and (max-width: 559px) {
  .comparing-cards-section .comparing-cards .compare-left-heading {
    width: 60%;
  }
  .comparing-cards-section .comparing-cards .compare-content {
    width: 60%;
  }
  .comparing-cards-section .comparing-cards .compare-content.empty-card .comparing-block {
    height: auto !important;
  }
}

.comparing-cards-section .comparing-cards.comparing-with-empty-card .comparing-cards-inner {
  overflow-x: hidden;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.comparing-cards-section .comparing-cards.comparing-with-empty-card .comparing-cards .comparing-column {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}

.comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content {
  min-height: 181px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0.74)), to(rgba(248, 248, 248, 0.48)));
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.74) 0%, rgba(248, 248, 248, 0.48) 100%);
  border-radius: 10px;
}

.comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content:not(:last-child) {
  margin-right: 50px;
}

.comparing-cards-section .comparing-cards.comparing-with-empty-card .comparing-block .content {
  margin: -20px auto 0 !important;
}

@media only screen and (max-width: tablet) {
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content {
    width: calc(100% / 2 - 50px);
  }
}

@media only screen and (max-width: 990px) {
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content {
    width: calc(100% / 2 - 50px);
  }
}

@media only screen and (max-width: phablet) {
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content {
    width: 100%;
    margin-right: 0;
  }
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content:not(:last-child) {
    margin-right: 0;
  }
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .comparing-block .content {
    max-width: 90%;
  }
}

@media only screen and (max-width: 559px) {
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content {
    width: 100%;
    margin-right: 0;
  }
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .compare-content:not(:last-child) {
    margin-right: 0;
  }
  .comparing-cards-section .comparing-cards.comparing-with-empty-card .comparing-block .content {
    max-width: 90%;
  }
}

.comparing-cards-section .comparing-cards .empty-card-content {
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0.74)), to(rgba(248, 248, 248, 0.48)));
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.74) 0%, rgba(248, 248, 248, 0.48) 100%);
}

.comparing-cards-section .comparing-cards .empty-card-content .comparing-block .content {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 100%;
  max-height: 120px;
  max-width: 176px;
  padding: 18px 21px;
  border: 1px dashed #f37e20;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  background: #fff;
  margin: 0 auto;
}

.comparing-cards-section .comparing-cards .empty-card-content .comparing-block .content img {
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
}

.comparing-cards-section .comparing-cards .empty-card-content .comparing-block .content p {
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f37e20;
  max-width: 156px;
  margin: 0 auto;
}

.debit-card-customisation .content, .debit-card-customisation .desc ul.features-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.debit-card-customisation {
  background: url("../images/saving-account/custom-card/section-background.jpg") no-repeat;
  background-size: cover;
  padding: 30px 0;
}

.debit-card-customisation .media {
  width: 38%;
  margin-right: 30px;
  overflow: hidden;
  border-radius: 25px;
}

.debit-card-customisation .media img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.debit-card-customisation .desc {
  width: calc(62% - 30px);
}

.debit-card-customisation .desc h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  font-family: "Muli";
  font-weight: 600;
  font-style: normal;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.debit-card-customisation .desc p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 32px;
}

.debit-card-customisation .desc ul.features-list {
  list-style: none;
  font-size: 0;
  margin: 0 0 26px;
  padding: 0;
}

.debit-card-customisation .desc ul.features-list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5%;
  max-width: 30%;
}

.debit-card-customisation .desc ul.features-list li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 576px) {
  .debit-card-customisation .desc ul.features-list li {
    display: block;
    margin: 0 0 20px;
    max-width: none;
  }
}

.debit-card-customisation .desc ul.features-list img {
  margin-right: 15px;
}

.debit-card-customisation .desc ul.features-list span {
  color: #fff;
  font-family: "Muli";
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
}

@media only screen and (max-width: 992px) {
  .debit-card-customisation .desc h3 {
    font-size: 22px;
  }
  .debit-card-customisation .desc ul.features-list li img {
    margin-right: 10px;
  }
  .debit-card-customisation .desc ul.features-list li span {
    font-size: 14px;
  }
}

.debit-card-customisation .custom-card-action a {
  margin-right: 25px;
  text-transform: uppercase;
}

.debit-card-customisation .custom-card-action a.ic-more {
  color: #fff;
  margin-right: 0;
}

.debit-card-customisation .custom-card-action a.ic-more::after {
  background-image: url("../images/icons/more-w.png");
}

@media only screen and (max-width: 576px) {
  .debit-card-customisation .custom-card-action a {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .debit-card-customisation .content {
    display: block;
  }
  .debit-card-customisation .desc {
    width: 100%;
  }
  .debit-card-customisation .media {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
  }
  .debit-card-customisation .media img {
    margin: 0 auto;
  }
}

.step-to-apply-section .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.step-to-apply-section .content .section-title {
  text-align: left;
  font-weight: normal;
  font-size: 26px;
  line-height: 30px;
}

.step-to-apply-section .content .desc {
  width: 50%;
}

.step-to-apply-section .content .desc .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 34px;
}

.step-to-apply-section .content .desc .list .icon {
  margin-right: 19px;
}

.step-to-apply-section .content .desc .list h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 9px;
}

.step-to-apply-section .content .desc .list:last-child {
  margin-bottom: 0;
}

.step-to-apply-section .content .media {
  width: 50%;
}

.step-to-apply-section .content .media .openvideo {
  cursor: pointer;
  width: 100%;
}

.step-to-apply-section .content .button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.step-to-apply-section .content .button-group .ic-btn {
  margin-right: 30px;
}

.step-to-apply-section .content .button-group p {
  font-size: 16px;
  line-height: normal;
}

@media only screen and (max-width: tablet-wide) {
  .step-to-apply-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step-to-apply-section .content .desc,
  .step-to-apply-section .content .media {
    width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .step-to-apply-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step-to-apply-section .content .desc,
  .step-to-apply-section .content .media {
    width: 100%;
  }
}

@media only screen and (max-width: tablet) {
  .step-to-apply-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .step-to-apply-section .content .media {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .step-to-apply-section .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .step-to-apply-section .content .media {
    margin-bottom: 20px;
  }
}

.note-content {
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .step-to-apply-note .media {
    margin-top: 30px;
  }
}

.terms-condition-accordion.section .section-inner {
  padding: 40px 20px;
}

@media only screen and (max-width: tablet) {
  .terms-condition-accordion .table-wrapper {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 990px) {
  .terms-condition-accordion .table-wrapper {
    overflow-x: auto;
  }
}

.terms-condition-accordion .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  padding-left: 24px;
}

.terms-condition-accordion .tabs-accordion-wrapper .tabs-accordion-desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  line-height: 24px;
  max-width: 80%;
}

.terms-condition-accordion .tabs-accordion-wrapper .card-accordion .accordion .accordion-list:nth-last-of-type(2) {
  border-bottom: 1px solid #ececec !important;
}

.terms-condition-accordion .tabs-accordion-wrapper .card-accordion .accordion .accordion-list:last-child {
  border-bottom: 0 !important;
  margin-bottom: 0;
}

.terms-condition-accordion .tabs-accordion-wrapper .card-accordion .accordion .accordion-content .label {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 14px;
  color: #3d3d3d;
  font-weight: 400;
}

@media only screen and (max-width: tablet) {
  .terms-condition-accordion .tabs-accordion-wrapper .tabs-accordion-desc {
    max-width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .terms-condition-accordion .tabs-accordion-wrapper .tabs-accordion-desc {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .terms-condition-accordion .nav-tabs {
    padding-left: 0;
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: phone-wide) {
  .terms-condition-accordion.section .section-inner {
    padding: 40px 0;
  }
  .terms-condition-accordion.section .section-inner .section-title {
    padding: 0 20px;
  }
  .terms-condition-accordion .tab-content {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 479px) {
  .terms-condition-accordion.section .section-inner {
    padding: 40px 0;
  }
  .terms-condition-accordion.section .section-inner .section-title {
    padding: 0 20px;
  }
  .terms-condition-accordion .tab-content {
    padding: 0 20px;
  }
}

/* Did you know start */
.slider-card {
  background: #fff;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 10px;
}

.slider-card:last-child {
  margin-right: 0;
}

.slider-card a {
  text-decoration: none;
}

.slider-card .card-inner .image {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.slider-card .card-inner .image img {
  width: 100%;
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slider-card .card-inner .content {
  padding: 23px 27px 41px;
  border: 1px solid #dedede;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 1199px) {
  .slider-card .card-inner .content {
    padding: 30px 20px;
  }
}

.slider-card .card-inner .content h3 {
  font-weight: 600;
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 30px;
  color: #4b4b4b;
  margin-bottom: 17px;
  outline: none;
}

.slider-card .card-inner .content .card-title {
  display: block;
  font-weight: 600;
  display: block;
  text-decoration: none;
  font-size: 22px;
  line-height: 30px;
  color: #4b4b4b;
  margin-bottom: 17px;
  outline: none;
  overflow: hidden;
}

.slider-card .card-inner .content .card-bottom .date-readtime {
  float: left;
  color: #8b8b8b;
}

.slider-card .card-inner .content .card-bottom .date-readtime span:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #8b8b8b;
}

.slider-card .card-inner .content .card-bottom .bookmark-share {
  float: right;
  position: relative;
}

.slider-card .card-inner .content .card-bottom .bookmark-share .bookmark {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url("../images/bookmark.png") no-repeat center;
  background-size: 16px;
  cursor: pointer;
}

.slider-card .card-inner .content .card-bottom .bookmark-share .bookmark:hover {
  background: url("../images/bookmark-orange.png") no-repeat center;
  background-size: 16px;
}

.slider-card .card-inner .content .card-bottom .bookmark-share .share {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url("../images/share.png") no-repeat center;
  background-size: 16px;
  cursor: pointer;
}

.slider-card .card-inner .content .card-bottom .share-content .share-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  max-width: 165px;
  margin: 0 auto;
}

.slider-card .card-inner .content .card-bottom .share-content .share-link li:first-child {
  width: 40px;
  border-right: 1px solid #e5e5e5;
}

.slider-card .card-inner .content .card-bottom .share-content .share-link li:last-child {
  width: 40px;
  text-align: right;
  border-left: 1px solid #e5e5e5;
}

.slider-card .card-inner .content .card-bottom .share-content .share-link li:last-child img {
  margin-left: auto;
}

.slider-card .card-inner:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media only screen and (max-width: 991px) {
  .slider-card .card-inner .content .card-title {
    font-size: 18px !important;
    line-height: normal;
  }
  .slider-card:hover img {
    -webkit-transform: initial;
            transform: initial;
    -webkit-filter: none;
            filter: none;
  }
}

@media only screen and (max-width: 640px) {
  .slider-card {
    margin: 0 10px;
  }
  .slider-card .card-inner .content {
    padding: 30px 20px;
  }
}

.did-you-know-section {
  overflow: hidden;
}

.did-you-know-section .section-inner .section-title {
  margin-bottom: 0;
  font-size: 26px;
}

.did-you-know-section .did-you-know-slider {
  padding: 40px 20px 0;
  margin: 0 -30px;
}

.did-you-know-section .did-you-know-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin: 44px 0 20px;
}

.did-you-know-section .did-you-know-slider .slick-arrow {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

@media only screen and (max-width: tablet) {
  .did-you-know-section .section-inner {
    padding: 6css0px 0 40px 20px;
  }
  .did-you-know-section .section-inner .section-title {
    max-width: 270px;
    margin-bottom: 20px;
  }
  .did-you-know-section .did-you-know-slider {
    padding: 20px 50px 0 50px;
    margin: 0 -20px;
  }
  .did-you-know-section .did-you-know-slider .slick-list {
    padding-left: 0 !important;
  }
  .did-you-know-section .did-you-know-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .did-you-know-section .did-you-know-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .did-you-know-section .did-you-know-slider .slick-arrow.slick-next {
    right: 0;
  }
  .did-you-know-section .card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .did-you-know-section .section-inner {
    padding: 6css0px 0 40px 20px;
  }
  .did-you-know-section .section-inner .section-title {
    max-width: 270px;
    margin-bottom: 20px;
  }
  .did-you-know-section .did-you-know-slider {
    padding: 20px 50px 0 50px;
    margin: 0 -20px;
  }
  .did-you-know-section .did-you-know-slider .slick-list {
    padding-left: 0 !important;
  }
  .did-you-know-section .did-you-know-slider .slick-dots {
    margin: 20px 0;
    text-align: center;
  }
  .did-you-know-section .did-you-know-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .did-you-know-section .did-you-know-slider .slick-arrow.slick-next {
    right: 0;
  }
  .did-you-know-section .card {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .did-you-know-section .did-you-know-slider {
    margin: 0 -15px;
    padding: 0;
  }
}

@media only screen and (max-width: tablet-small) {
  .did-you-know-section .did-you-know-slider .slick-list {
    margin: 0 -20px 0 0;
  }
}

@media only screen and (max-width: 639px) {
  .did-you-know-section .did-you-know-slider .slick-list {
    margin: 0 -20px 0 0;
  }
}

/* did you konw end */
/*Horizontal full width table tab*/
.horizontal-full-width-table-tab .section-inner {
  padding: 40px 20px;
}

.horizontal-full-width-table-tab .section-title {
  margin-bottom: 30px;
  line-height: 30px;
}

.horizontal-full-width-table-tab .nav-tabs {
  margin-bottom: 40px;
  border-top: 1px solid #ebe7e7;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  padding-left: 24px;
}

.horizontal-full-width-table-tab .table-wrapper {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .horizontal-full-width-table-tab .nav-tabs {
    margin: 0 auto 40px 0;
    padding-left: 0;
  }
  .horizontal-full-width-table-tab .table-wrapper {
    overflow-x: auto;
  }
}

@media only screen and (max-width: phone-wide) {
  .horizontal-full-width-table-tab .nav-tabs {
    margin: 0 auto 40px 0;
    padding-left: 0;
  }
  .horizontal-full-width-table-tab .nav-tabs .table-wrapper {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 479px) {
  .horizontal-full-width-table-tab .nav-tabs {
    margin: 0 auto 40px 0;
    padding-left: 0;
  }
  .horizontal-full-width-table-tab .nav-tabs .table-wrapper {
    overflow-x: auto;
  }
}

/* product-highlight-section */
.product-highlight-section .card-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -20px;
}

.product-highlight-section .card-lists .card-list {
  width: 33%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.product-highlight-section .card-lists .card-list:last-child {
  border: none;
}

.product-highlight-section .card-lists .card-list .card-icon {
  margin-right: 15px;
}

.product-highlight-section .card-lists .card-list .lable {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-highlight-section .card-lists .card-list .value {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

@media only screen and (max-width: tablet) {
  .product-highlight-section .card-lists {
    margin: 0 -10px;
  }
  .product-highlight-section .card-lists .card-list {
    margin: 0 10px;
  }
  .product-highlight-section .card-lists .card-list .card-icon {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 990px) {
  .product-highlight-section .card-lists {
    margin: 0 -10px;
  }
  .product-highlight-section .card-lists .card-list {
    margin: 0 10px;
  }
  .product-highlight-section .card-lists .card-list .card-icon {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .product-highlight-section .card-lists {
    margin: -15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-highlight-section .card-lists .card-list {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 15px 0;
    border-right: none;
    padding-bottom: 20px;
  }
  .product-highlight-section .card-lists .card-list:last-child {
    border: none;
    padding-bottom: 0;
  }
}

/* terms-condition-link-wrapper */
.terms-condition-link-wrapper .terms-condition-links {
  margin: 25px -20px 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.terms-condition-link-wrapper .terms-condition-links .terms-condition-link-heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 15px;
}

.terms-condition-link-wrapper .terms-condition-links .terms-condition-link-heading .heading {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-left: 15px;
}

.terms-condition-link-wrapper .terms-condition-links .terms-condition-link {
  width: 50%;
  border-right: 1px solid rgba(102, 102, 102, 0.2);
  margin: 0 20px;
}

.terms-condition-link-wrapper .terms-condition-links .terms-condition-link:last-child {
  border: none;
}

.terms-condition-link-wrapper .terms-condition-links .terms-condition-link ul li {
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  margin: 7px 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: tablet) {
  .terms-condition-link-wrapper .terms-condition-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 0;
  }
  .terms-condition-link-wrapper .terms-condition-links .terms-condition-link {
    width: 100%;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    border-right: none;
    margin: 0 0 20px;
    padding-bottom: 20px;
  }
  .terms-condition-link-wrapper .terms-condition-links .terms-condition-link:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 990px) {
  .terms-condition-link-wrapper .terms-condition-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 0;
  }
  .terms-condition-link-wrapper .terms-condition-links .terms-condition-link {
    width: 100%;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    border-right: none;
    margin: 0 0 20px;
    padding-bottom: 20px;
  }
  .terms-condition-link-wrapper .terms-condition-links .terms-condition-link:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* sumup-calculation-section */
.sumup-calculation-section .row {
  margin: 0 -20px;
}

.sumup-calculation-section .left-content {
  width: 430px;
  margin: 0 20px;
}

.sumup-calculation-section .right-content {
  width: calc(100% - 510px);
  margin: 0 20px;
  padding-left: 80px;
}

.sumup-calculation-section h4 {
  font-size: 26px;
  margin-bottom: 15px;
}

.sumup-calculation-section .sumup-calculation-data {
  background: #fff;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 10px 10px 0px 0px;
}

.sumup-calculation-section .sumup-calculation-data .heading {
  padding: 20px;
  background: rgba(7, 74, 134, 0.05);
}

.sumup-calculation-section .sumup-calculation-data .heading p {
  font-size: 18px;
  line-height: 23px;
}

.sumup-calculation-section .sumup-calculation-data .heading p span {
  font-weight: bold;
  font-size: 30px;
  line-height: 115%;
  margin-left: 20px;
}

.sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents {
  padding: 0 0px 0 20px;
  margin: 0;
}

.sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content {
  width: calc(50% - 40px);
  margin: 25px 20px 15px;
}

.sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content:first-child {
  border-right: 1px solid rgba(102, 102, 102, 0.2);
}

.sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content .label {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}

.sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content .value {
  font-weight: 600;
  font-size: 24px;
  line-height: 144%;
}

@media only screen and (max-width: tablet) {
  .sumup-calculation-section .left-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .sumup-calculation-section .right-content {
    width: 100%;
    padding: 0;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents {
    padding: 20px;
    margin: 0;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content {
    width: 100%;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    border-right: none;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content:first-child {
    border-right: none;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 990px) {
  .sumup-calculation-section .left-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .sumup-calculation-section .right-content {
    width: 100%;
    padding: 0;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents {
    padding: 20px;
    margin: 0;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content {
    width: 100%;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    border-right: none;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content:first-child {
    border-right: none;
  }
  .sumup-calculation-section .sumup-calculation-data .sumup-calculation-contents .content:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 480px) {
  .sumup-calculation-section .sumup-calculation-data .heading {
    padding: 20px;
  }
  .sumup-calculation-section .sumup-calculation-data .heading p span {
    display: block;
  }
}

/* popup-section */
.popup-section {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 80px 20px;
}

.popup-section .popup-content {
  max-width: 1024px;
  max-height: 578px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  padding: 35px 30px 0;
  overflow-y: auto;
}

.popup-section .popup-content .close {
  position: absolute;
  cursor: pointer;
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 22px;
  color: #f37e20;
  text-align: center;
  top: 15px;
  right: 15px;
}

.popup-section .popup-content .top-section {
  margin-top: 15px;
}

.popup-section .popup-content .top-section p {
  font-size: 14px;
  line-height: 22px;
  color: #8b8b8b;
  margin-bottom: 15px;
}

.popup-section .popup-content .related-products {
  margin: 15px -30px 0;
  border-radius: 0 0 10px 10px;
}

.popup-section .popup-content .related-products .related-card-inner {
  background: transparent;
}

@media only screen and (max-width: tablet) {
  .popup-section {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 990px) {
  .popup-section {
    padding: 40px 20px;
  }
}

/* review-popup-section */
/*24/3/21: Added and update write a review code*/
.review-popup-section {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 160px 20px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: auto;
}

.review-popup-section .tab {
  display: none;
}

.review-popup-section .tab-bottom-btn {
  margin-top: 41px;
}

.review-popup-section #prevBtn {
  margin-right: 20px;
}

.review-popup-section .note {
  margin-top: 8px;
  font-size: 10px;
  line-height: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.review-popup-section .popup-content {
  max-width: 833px;
  max-height: 462px;
  border-radius: 6px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.review-popup-section .popup-content .close {
  position: absolute;
  cursor: pointer;
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 22px;
  color: #f37e20;
  text-align: center;
  top: 15px;
  right: 15px;
}

.review-popup-section .popup-content .popup-inner-content {
  max-width: 600px;
  margin: 0 auto;
}

.review-popup-section .popup-content .popup-inner-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 35px;
  color: #074a86;
  text-align: center;
}

.review-popup-section .popup-content .popup-inner-content form label {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}

.review-popup-section .popup-content .popup-inner-content form textarea {
  width: 100%;
  height: 75px;
  border: 1px solid #f37e20;
  resize: none;
  padding: 5px 10px;
}

.review-popup-section .popup-content .popup-inner-content form .note {
  font-size: 13px;
  line-height: 16px;
  text-align: right;
  margin: 15px 0 20px;
  max-width: 100%;
  text-align: left;
}

.review-popup-section .popup-content .popup-inner-content form .ic-btn {
  min-width: 180px;
}

.review-popup-section .popup-content.customer-review-content .close {
  top: 20px;
}

.review-popup-section .popup-content.customer-review-content.popup-content {
  max-height: 550px;
  padding: 20px 20px 40px;
}

.review-popup-section .popup-content.customer-review-content.popup-content .popup-inner-content h4 {
  margin-bottom: 40px;
}

.review-popup-section .popup-content.customer-review-content .title-review {
  width: 100%;
  resize: none;
  padding: 5px 10px;
  margin-bottom: 13px;
  border: 0.5px solid #858585;
}

.review-popup-section .popup-content.customer-review-content .title-review:focus {
  border: 1px solid #f37e20;
}

.review-popup-section .popup-content.customer-review-content form textarea {
  border: 0.5px solid #858585;
}

.review-popup-section .popup-content.customer-review-content form textarea:focus {
  border: 1px solid #f37e20;
}

.review-popup-section .popup-content.customer-review-content .star-rating-section {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 24px;
}

.review-popup-section .popup-content.customer-review-content .star-rating-section h5 {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  margin-right: 10px;
}

.review-popup-section .popup-content.customer-review-content .star-rating-section span {
  width: 30px;
  height: 30px;
  background-size: 30px;
  margin-right: 10px;
}

.review-popup-section .popup-content.customer-review-content .captcha-form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.review-popup-section .popup-content.customer-review-content .captcha-form label {
  margin: 0 0px 0 10px;
  background: #e4e4e4;
  padding: 5px;
  border: 0.5px solid #e4e4e4;
}

.review-popup-section .popup-content.customer-review-content .captcha-form .content,
.review-popup-section .popup-content.customer-review-content .captcha-form label {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

.review-popup-section .popup-content.customer-review-content .captcha-form .form-input {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.review-popup-section .popup-content.customer-review-content .captcha-form input {
  background: transparent;
  border: 0.5px solid #e4e4e4;
  padding: 5px;
  width: 100px;
}

.review-popup-section .popup-content.customer-review-content .captcha-form input:focus {
  border: 1px solid #f37e20;
}

.review-popup-section .popup-content .sucess-message {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.review-popup-section .popup-content .sucess-message#sucess-message1, .review-popup-section .popup-content .sucess-message#sucess-message2 {
  display: none;
}

.review-popup-section .popup-content .sucess-message .media {
  margin-bottom: 22px;
  text-align: center;
  padding-top: 145px;
}

.review-popup-section .popup-content .sucess-message .content {
  font-size: 26px;
  line-height: 130%;
  color: #3d3d3d;
  text-align: center;
  padding-bottom: 145px;
}

.review-popup-section .popup-content .sucess-message .content strong {
  display: block;
  font-weight: bold;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .media {
  padding-top: 50px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .content {
  padding-bottom: 40px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  margin-bottom: 6px;
  text-align: left;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .left-column {
  position: relative;
  padding-right: 45px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .left-column:after {
  content: "";
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 45px;
  right: 0;
  width: 1px;
  height: 100px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .right-column {
  padding-left: 45px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box {
  margin: 0 -50px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box .social-group {
  display: inline-block;
}

.review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box .youtube-text {
  margin-bottom: 0;
}

@media only screen and (max-width: phablet) {
  .review-popup-section .popup-content .sucess-message .media {
    margin-bottom: 22px;
    text-align: center;
    padding-top: 50px;
  }
  .review-popup-section .popup-content .sucess-message .content {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 559px) {
  .review-popup-section .popup-content .sucess-message .media {
    margin-bottom: 22px;
    text-align: center;
    padding-top: 50px;
  }
  .review-popup-section .popup-content .sucess-message .content {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: tablet) {
  .review-popup-section {
    padding: 140px 20px 40px;
  }
  .review-popup-section .popup-content {
    padding: 40px 20px;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box {
    margin: 0 20px;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box .social-links {
    text-align: center;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message h5 {
    text-align: center;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .content {
    padding-bottom: 0px;
  }
  .review-popup-section.customer-review-pop-up {
    top: 80px;
  }
  .review-popup-section.customer-review-pop-up .popup-content {
    max-width: calc(100% - 60px);
    max-height: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .review-popup-section {
    padding: 140px 20px 40px;
  }
  .review-popup-section .popup-content {
    padding: 40px 20px;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box {
    margin: 0 20px;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .share-box .social-links {
    text-align: center;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message h5 {
    text-align: center;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .content {
    padding-bottom: 0px;
  }
  .review-popup-section.customer-review-pop-up {
    top: 80px;
  }
  .review-popup-section.customer-review-pop-up .popup-content {
    max-width: calc(100% - 60px);
    max-height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .review-popup-section .popup-content {
    padding: 40px 20px;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .left-column,
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .right-column {
    max-width: 100%;
    padding: 0;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .left-column::after {
    display: none;
  }
  .review-popup-section .popup-content .sucess-message.rated-sucess-message .right-column {
    padding-top: 28px;
  }
}

@media only screen and (max-width: phablet) {
  .review-popup-section.customer-review-pop-up .popup-content {
    padding: 20px;
  }
  .review-popup-section.customer-review-pop-up .popup-content .close {
    top: 23px;
  }
  .review-popup-section.customer-review-pop-up .popup-content .popup-inner-content h4 {
    margin-bottom: 0 !important;
    text-align: left;
  }
  .review-popup-section .popup-content.customer-review-content .star-rating-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-popup-section .popup-content.customer-review-content .star-rating-section h5 {
    margin: 30px 0 6px;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form .form-input {
    width: 100%;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form label {
    margin-left: 0;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form .content {
    margin-bottom: 20px;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form input {
    width: calc(100% - 100px);
  }
  .review-popup-section .popup-content.customer-review-content.popup-content {
    max-height: initial;
    padding-bottom: 30px;
    max-width: 100%;
  }
  .review-popup-section .popup-content .sucess-message .content strong {
    margin-bottom: 20px;
  }
  .review-popup-section #prevBtn {
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 559px) {
  .review-popup-section.customer-review-pop-up .popup-content {
    padding: 20px;
  }
  .review-popup-section.customer-review-pop-up .popup-content .close {
    top: 23px;
  }
  .review-popup-section.customer-review-pop-up .popup-content .popup-inner-content h4 {
    margin-bottom: 0 !important;
    text-align: left;
  }
  .review-popup-section .popup-content.customer-review-content .star-rating-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-popup-section .popup-content.customer-review-content .star-rating-section h5 {
    margin: 30px 0 6px;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form .form-input {
    width: 100%;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form label {
    margin-left: 0;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form .content {
    margin-bottom: 20px;
  }
  .review-popup-section .popup-content.customer-review-content .captcha-form input {
    width: calc(100% - 100px);
  }
  .review-popup-section .popup-content.customer-review-content.popup-content {
    max-height: initial;
    padding-bottom: 30px;
    max-width: 100%;
  }
  .review-popup-section .popup-content .sucess-message .content strong {
    margin-bottom: 20px;
  }
  .review-popup-section #prevBtn {
    margin: 0 0 20px;
  }
}

.review-popup-section .form-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.review-popup-section .form-group:not(:first-child) {
  margin-top: 39px;
}

@media only screen and (max-width: phablet) {
  .review-popup-section .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-popup-section .form-group:not(:first-child) {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 559px) {
  .review-popup-section .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-popup-section .form-group:not(:first-child) {
    margin-top: 0px;
  }
}

.review-popup-section .input-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2px;
  position: relative;
  width: 50%;
}

.review-popup-section .input-group:first-child {
  margin-right: 74px;
}

.review-popup-section .input-group.error {
  border-bottom: 0.5px solid #ad1e23;
}

.review-popup-section .input-group .icon {
  padding-right: 10px;
}

.review-popup-section .input-group:focus-within .input-box {
  border-bottom: 2px solid #f37e20;
}

.review-popup-section .input-group:focus-within .input-box .icon-email {
  background: url("../images/icons/call-back/email-orange.svg") no-repeat 0 0;
  background-size: 16px;
  width: 28px;
  height: 14px;
}

.review-popup-section .input-group:focus-within .input-box .icon-email img {
  display: none;
}

.review-popup-section .input-group:focus-within .input-box .icon-user {
  background: url("../images/icons/call-back/user-orange.svg") no-repeat 0px 2px;
  background-size: 15.5px;
  width: 30px;
  height: 21px;
}

.review-popup-section .input-group:focus-within .input-box .icon-user img {
  display: none;
}

.review-popup-section .input-group .error {
  margin-top: 8px;
  color: #e6371f;
  font-size: 12px;
}

.review-popup-section .input-group .input-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-align: centeflex-startr;
          align-items: centeflex-startr;
  -webkit-align-items: centeflex-startr;
  -ms-flex-align: centeflex-startr;
  width: 100%;
  border-bottom: 0.5px solid #4b4b4b;
  padding: 5px 10px 8px 0px;
}

.review-popup-section .input-group .input-box input {
  border: 0;
  color: #a6a6a6;
  max-width: 300px;
  width: 100%;
  line-height: 21px;
}

.review-popup-section .input-group .input-box input.error {
  color: #e6371f;
  margin-top: 0px;
}

.review-popup-section .input-group .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.review-popup-section .input-group .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.review-popup-section .input-group .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.review-popup-section .input-group .input-box input::placeholder {
  color: #a6a6a6;
}

.review-popup-section .input-group .input-box input::-ms-clear {
  display: none;
}

@media only screen and (max-width: phablet) {
  .review-popup-section .input-group {
    width: 100%;
    margin-top: 30px;
  }
  .review-popup-section .input-group:not(:last-child) {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 559px) {
  .review-popup-section .input-group {
    width: 100%;
    margin-top: 30px;
  }
  .review-popup-section .input-group:not(:last-child) {
    margin-bottom: 0px;
  }
}

.sticky-enable.sticky + .review-popup-section {
  padding: 100px ​20px 20px;
}

/*24/3/21 End*/
/* right-white-box  */
.right-white-box .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.right-white-box .content .left-content {
  width: 40%;
  margin-right: 30px;
}

.right-white-box .content .left-content h4 {
  margin-bottom: 15px;
  font-size: 24px;
}

.right-white-box .content .left-content p {
  line-height: 24px;
}

.right-white-box .content .right-content {
  max-width: 700px;
  width: 60%;
  margin-left: auto;
}

.right-white-box .content .right-content .white-bg {
  padding: 35px 40px;
  border-radius: 10px;
}

.right-white-box .content .right-content .white-bg h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 22px;
}

.right-white-box .content .right-content .white-bg ul.lists {
  display: list-item;
  color: #8b8b8b;
  margin-left: 15px;
}

.right-white-box .content .right-content .white-bg ul.lists li {
  list-style: inherit;
  line-height: 20px;
}

.right-white-box .content .right-content .white-bg ul.lists li:not(:last-child) {
  margin-bottom: 15px;
}

@media only screen and (max-width: tablet) {
  .right-white-box .content {
    display: block;
  }
  .right-white-box .content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .right-white-box .content .right-content {
    width: 100%;
  }
  .right-white-box .content .right-content .white-bg {
    min-height: auto;
    padding: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .right-white-box .content {
    display: block;
  }
  .right-white-box .content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .right-white-box .content .right-content {
    width: 100%;
  }
  .right-white-box .content .right-content .white-bg {
    min-height: auto;
    padding: 20px;
  }
}

/* queries-section */
.queries-section .content .left-content p {
  line-height: 30px;
}

.queries-section .content .right-content .white-bg p {
  color: #8b8b8b;
  font-weight: 400;
  margin-bottom: 15px;
}

.queries-section .content .right-content .white-bg .info-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.queries-section .content .right-content .white-bg .info-lists .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #3d3d3d;
  margin-right: 40px;
  line-height: 26px;
  border-right: 1px dashed rgba(102, 102, 102, 0.2);
  width: 50%;
}

.queries-section .content .right-content .white-bg .info-lists .list:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.queries-section .content .right-content .white-bg .info-lists .list img {
  margin-right: 15px;
}

@media only screen and (max-width: desktop) {
  .queries-section .content .right-content .white-bg {
    padding: 20px;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    font-size: 16px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1279px) {
  .queries-section .content .right-content .white-bg {
    padding: 20px;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    font-size: 16px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: tablet) {
  .queries-section .content {
    display: block;
  }
  .queries-section .content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .queries-section .content .right-content {
    width: 100%;
    max-width: 100%;
  }
  .queries-section .content .right-content .white-bg {
    min-height: auto;
    padding: 20px 30px;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 990px) {
  .queries-section .content {
    display: block;
  }
  .queries-section .content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .queries-section .content .right-content {
    width: 100%;
    max-width: 100%;
  }
  .queries-section .content .right-content .white-bg {
    min-height: auto;
    padding: 20px 30px;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    margin-right: 40px;
  }
}

@media only screen and (max-width: tablet-small) {
  .queries-section .content .right-content .white-bg .info-lists {
    display: block;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    border-right: none;
    border-bottom: 1px dashed rgba(102, 102, 102, 0.2);
    padding-bottom: 20px;
    margin: 0 0 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .queries-section .content .right-content .white-bg .info-lists {
    display: block;
  }
  .queries-section .content .right-content .white-bg .info-lists .list {
    border-right: none;
    border-bottom: 1px dashed rgba(102, 102, 102, 0.2);
    padding-bottom: 20px;
    margin: 0 0 20px;
    width: 100%;
  }
}

/* documentation-content */
.documentation-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.documentation-content .left-content {
  width: 40%;
  margin-right: 30px;
}

.documentation-content .right-content {
  max-width: 700px;
  width: 60%;
  margin-left: auto;
}

.documentation-content .right-content .white-bg {
  min-height: 212px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 30px;
  padding: 40px 40px 20px;
  color: #8b8b8b;
}

.documentation-content .right-content .white-bg h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

@media only screen and (max-width: phablet) {
  .documentation-content {
    display: block;
  }
  .documentation-content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .documentation-content .right-content {
    width: 100%;
  }
  .documentation-content .right-content .white-bg {
    min-height: auto;
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 559px) {
  .documentation-content {
    display: block;
  }
  .documentation-content .left-content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .documentation-content .right-content {
    width: 100%;
  }
  .documentation-content .right-content .white-bg {
    min-height: auto;
    padding: 40px 20px;
  }
}

/* product-feature-section */
.product-feature-section .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/* product-feature-bottom-navigation  */
.product-feature-bottom-navigation {
  background: linear-gradient(237.03deg, #ad1e23 7.67%, #f3a126 92.22%);
  padding-bottom: 40px;
  position: relative;
}

.product-feature-bottom-navigation .content .media {
  max-width: 490px;
  margin-left: 75px;
  width: 40%;
}

.product-feature-bottom-navigation .content .desc {
  max-width: 640px;
  width: 60%;
}

.product-feature-bottom-navigation .content .desc h4,
.product-feature-bottom-navigation .content .desc p {
  color: #fff;
  max-width: 456px;
}

.product-feature-bottom-navigation .content .desc .light-text {
  color: #ffdeac;
  margin-top: 5px;
}

.product-feature-bottom-navigation .content .desc .highlight-offer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-width: 456px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px dashed #c6ced6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin: 30px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 6px 30px;
}

.product-feature-bottom-navigation .content .desc .highlight-offer img {
  margin-right: 15px;
}

.product-feature-bottom-navigation .content .desc .ic-btn {
  padding: 12px 24px;
}

.product-feature-bottom-navigation .product-feature-navigation {
  position: absolute;
  bottom: -25px;
  max-width: 665px;
  width: calc(100% - 40px);
  border-radius: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 18px 20px 18px 30px;
  text-align: center;
}

.product-feature-bottom-navigation .product-feature-navigation li {
  padding: 0 11px;
}

.product-feature-bottom-navigation .product-feature-navigation li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.product-feature-bottom-navigation .product-feature-navigation li a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media only screen and (max-width: 720px) {
  .product-feature-bottom-navigation {
    padding-bottom: 70px;
    margin-bottom: 60px;
  }
  .product-feature-bottom-navigation .content {
    display: block;
  }
  .product-feature-bottom-navigation .content .media,
  .product-feature-bottom-navigation .content .desc {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .product-feature-bottom-navigation .content .media {
    margin-top: 30px;
  }
  .product-feature-bottom-navigation .content .ic-btn {
    margin-bottom: 10px;
  }
  .product-feature-bottom-navigation .product-feature-navigation {
    bottom: -65px;
  }
  .product-feature-bottom-navigation .product-feature-navigation li {
    width: 50%;
    margin: 10px 0;
  }
  .product-feature-bottom-navigation .product-feature-navigation li:nth-child(2n) {
    border: none;
  }
  .product-feature-bottom-navigation .product-feature-navigation li a {
    white-space: normal;
  }
}

/* product-feature-long-card */
.product-feature-long-card .content {
  padding: 35px 40px;
}

.product-feature-long-card .content .media {
  max-width: 385px;
  margin-right: 75px;
  width: 40%;
}

.product-feature-long-card .content .desc {
  max-width: 590px;
  width: 60%;
}

.product-feature-long-card .content .desc h4 {
  margin-bottom: 10px;
}

.product-feature-long-card .content .desc p {
  margin-bottom: 30px;
}

@media only screen and (max-width: tablet-small) {
  .product-feature-long-card .content {
    display: block;
    padding: 20px;
  }
  .product-feature-long-card .content .media,
  .product-feature-long-card .content .desc {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .product-feature-long-card .content .media {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 639px) {
  .product-feature-long-card .content {
    display: block;
    padding: 20px;
  }
  .product-feature-long-card .content .media,
  .product-feature-long-card .content .desc {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .product-feature-long-card .content .media {
    margin-bottom: 30px;
  }
}

/* product-cta-text-left */
.product-cta-text-left .content {
  max-width: 800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.product-cta-text-left .content .title {
  max-width: 490px;
  margin-right: 40px;
  color: #fff;
}

.product-cta-text-left .content h4 {
  color: #fff;
  margin-bottom: 5px;
}

@media only screen and (max-width: tablet-small) {
  .product-cta-text-left .content {
    display: block;
  }
  .product-cta-text-left .content .title {
    max-width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 639px) {
  .product-cta-text-left .content {
    display: block;
  }
  .product-cta-text-left .content .title {
    max-width: 100%;
    margin: 0 0 20px;
  }
}

/* ftri-section  */
.ftri-section .investment-content {
  padding: 25px 40px 40px;
  text-align: center;
}

.ftri-section .investment-content .invext-boxs {
  max-width: 410px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ftri-section .investment-content .invext-boxs .invext-box {
  background: #fff;
  width: 165px;
  height: 175px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}

.ftri-section .investment-content .invext-boxs .invext-box img {
  margin: 0 auto 10px;
}

@media only screen and (max-width: phone-wide) {
  .ftri-section .investment-content {
    padding: 25px 20px 40px;
  }
  .ftri-section .investment-content .invext-boxs {
    margin: 20px auto 0;
  }
  .ftri-section .investment-content .invext-boxs .invext-box {
    margin: 0 5px;
    height: 145px;
  }
  .ftri-section .investment-content .invext-boxs .invext-box img {
    max-height: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .ftri-section .investment-content {
    padding: 25px 20px 40px;
  }
  .ftri-section .investment-content .invext-boxs {
    margin: 20px auto 0;
  }
  .ftri-section .investment-content .invext-boxs .invext-box {
    margin: 0 5px;
    height: 145px;
  }
  .ftri-section .investment-content .invext-boxs .invext-box img {
    max-height: 40px;
  }
}

.ftri-section .ftri-steps-top {
  padding: 25px 0 40px;
  background: #fff7eb;
  border-bottom: 1px solid #dedede;
}

.ftri-section .ftri-steps-top .progress-bar {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  width: 110%;
  margin: 0 -5%;
  height: auto;
  background: #fff7eb;
}

.ftri-section .ftri-steps-top .progress-bar .indicator {
  position: relative;
  width: 20%;
  text-align: center;
  font-weight: 400;
}

.ftri-section .ftri-steps-top .progress-bar .indicator::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #8b8b8b;
  bottom: -2px;
  width: 100%;
  left: -50%;
}

.ftri-section .ftri-steps-top .progress-bar .indicator:first-child::before {
  display: none;
}

.ftri-section .ftri-steps-top .progress-bar .indicator .label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 140px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 16px;
  margin: 0 auto 10px;
  min-height: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ftri-section .ftri-steps-top .progress-bar .indicator .label::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #8b8b8b;
  border-radius: 50%;
  bottom: -18px;
  left: calc(50% - 7px);
  z-index: 2;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.active, .ftri-section .ftri-steps-top .progress-bar .indicator.current {
  color: #f37e20;
  font-weight: 700;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.active::before, .ftri-section .ftri-steps-top .progress-bar .indicator.current::before {
  background: #f37e20;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.current .label::before {
  width: 22px;
  height: 22px;
  border-color: #f37e20;
  bottom: -22px;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.current .label::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f37e20;
  border-radius: 50%;
  bottom: -16px;
  left: calc(50% - 1px);
  z-index: 3;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.active .label::before {
  width: 22px;
  height: 22px;
  border-color: #f37e20;
  bottom: -22px;
}

.ftri-section .ftri-steps-top .progress-bar .indicator.active .label::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 7px;
  background: url("../images/icons/transparent-orange-tick.svg") no-repeat;
  bottom: -15px;
  left: calc(50% - 1px);
  z-index: 3;
}

.ftri-section .goal-steps {
  min-height: 100px;
}

.ftri-section .goal-steps .radio-style-box .radio-wrap {
  width: 130px;
  margin-right: 15px;
}

.ftri-section .goal-steps .radio-style-box .radio-wrap.width-160 {
  width: 160px;
}

.ftri-section .goal-steps .radio-style-box .radio-wrap .checkmark {
  border: 1px solid #f37e20;
  border-radius: 50px;
  font-size: 13px;
  background-color: #fff;
}

.ftri-section .goal-steps .radio-style-box .radio-wrap input:checked ~ .checkmark {
  background-color: #f37e20;
}

.ftri-section .ftri-steps-content {
  margin: 30px 60px;
}

.ftri-section .ftri-steps-content h4 {
  margin-bottom: 20px;
}

.ftri-section .ftri-steps-content .input-style {
  border: 1px solid #f37e20;
}

.ftri-section .basic-details-steps .form-field {
  border-right: 1px solid #c4c4c4;
  padding-right: 60px;
  margin-right: 60px;
  padding-bottom: 20px;
}

.ftri-section .basic-details-steps .form-field:last-child {
  border-right: none;
}

.ftri-section .basic-details-steps .form-field .checkmark {
  background-color: #fff;
  border-left: 1px solid #f37e20;
}

.ftri-section .basic-details-steps .form-field input:checked ~ .checkmark {
  background-color: #f37e20;
}

.ftri-section .estimated-amt-steps .form-field {
  border-right: 1px solid #c4c4c4;
  padding-right: 35px;
  margin-right: 35px;
}

.ftri-section .estimated-amt-steps .form-field:last-child {
  border-right: none;
}

.ftri-section .strategy-steps {
  color: #666666;
}

.ftri-section .strategy-steps .strategy-info {
  background: #f8f8f8;
  padding: 30px 35px;
}

.ftri-section .strategy-steps .strategy-info h5 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.ftri-section .strategy-steps .strategy-info .invest-ul {
  margin-top: 10px;
}

.ftri-section .strategy-steps .strategy-info .invest-ul li {
  margin-bottom: 15px;
  padding-left: 20px;
}

.ftri-section .strategy-steps .strategy-info .invest-ul li.checked {
  color: #f37e20;
  font-weight: 600;
  background: url("../images/icons/transparent-orange-tick.svg") left no-repeat;
}

.ftri-section .strategy-steps .strategy-info .interest-box {
  padding: 0;
}

.ftri-section .strategy-steps .strategy-info .light-sky {
  max-width: 320px;
  padding: 15px 30px;
  margin-bottom: 10px;
}

.ftri-section .strategy-steps .strategy-info .light-sky ul li:not(:last-child) {
  margin-bottom: 5px;
}

.ftri-section .strategy-steps .strategy-info .light-sky ul li .label {
  width: 100px;
  display: inline-block;
  margin-right: 50px;
}

.ftri-section .strategy-steps .strategy-info .light-sky ul li .value {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #3d3d3d;
}

.ftri-section .strategy-steps .strategy-info .bullet-list {
  margin-left: 15px;
}

.ftri-section .strategy-steps .strategy-info .bullet-list li {
  list-style: disc;
  line-height: 24px;
}

.ftri-section .strategy-steps .number-holder {
  padding: 10px 35px 10px;
  min-height: 70px;
  height: auto;
  border-radius: 0;
  margin-bottom: 30px;
}

.ftri-section .strategy-steps .equity-chart {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.ftri-section .strategy-steps .equity-chart #equityChart {
  max-width: 124px;
  margin-right: 25px;
}

.ftri-section .strategy-steps .equity-chart .legends li:not(:last-child) {
  margin-bottom: 10px;
}

.ftri-section .strategy-steps .equity-chart .legends li .dots {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

.ftri-section .strategy-steps .equity-chart .legends li .label {
  font-weight: 600;
  margin-right: 10px;
}

.ftri-section .strategy-steps .equity-chart .legends li .value {
  font-weight: 800;
}

.ftri-section .ftri-steps-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  border-top: 1px dashed rgba(222, 222, 222, 0.7);
  margin: 0 40px;
  padding: 30px 0;
}

.ftri-section .ftri-steps-bottom .back-link {
  margin-right: auto;
  background: url("../images/icons/orange-prev.svg") left no-repeat;
  padding-left: 15px;
  text-decoration: none;
}

.ftri-section .ftri-steps-bottom .next-link {
  margin-left: auto;
  background: url("../images/icons/orange-next.svg") right 4px no-repeat;
  padding-right: 12px;
  text-decoration: none;
}

.ftri-section .ftri-steps-bottom .disable-el {
  opacity: 0.3;
}

.ftri-section .input-box input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 2px;
  padding: 0;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
}

@media only screen and (max-width: desktop) {
  .ftri-section .ftri-steps-top .progress-bar {
    width: 105%;
  }
  .ftri-section .ftri-steps-content {
    margin: 30px 40px;
  }
  .ftri-section .ftri-steps-content h4 {
    font-size: 18px;
    font-weight: 600;
  }
  .ftri-section .basic-details-steps .form-field {
    padding-right: 20px;
    margin-right: 20px;
    min-width: 33%;
  }
}

@media only screen and (max-width: 1279px) {
  .ftri-section .ftri-steps-top .progress-bar {
    width: 105%;
  }
  .ftri-section .ftri-steps-content {
    margin: 30px 40px;
  }
  .ftri-section .ftri-steps-content h4 {
    font-size: 18px;
    font-weight: 600;
  }
  .ftri-section .basic-details-steps .form-field {
    padding-right: 20px;
    margin-right: 20px;
    min-width: 33%;
  }
}

@media only screen and (max-width: tablet) {
  .ftri-section .strategy-steps .strategy-info .light-sky {
    padding: 15px;
  }
  .ftri-section .strategy-steps .strategy-info .light-sky ul li .label {
    width: 80px;
    margin-right: 20px;
  }
  .ftri-section .strategy-steps .number-holder .total-amount {
    padding: 0 10px;
    margin: 5px 0;
  }
}

@media only screen and (max-width: 990px) {
  .ftri-section .strategy-steps .strategy-info .light-sky {
    padding: 15px;
  }
  .ftri-section .strategy-steps .strategy-info .light-sky ul li .label {
    width: 80px;
    margin-right: 20px;
  }
  .ftri-section .strategy-steps .number-holder .total-amount {
    padding: 0 10px;
    margin: 5px 0;
  }
}

@media only screen and (max-width: 767px) {
  .ftri-section .ftri-steps-top {
    padding: 10px 0 20px;
  }
  .ftri-section .ftri-steps-top .progress-bar {
    width: 110%;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator::before {
    bottom: 2px;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator span {
    display: none;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator span br {
    display: none;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator.current span {
    display: block;
    position: absolute;
    width: 100vw;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator:nth-child(1) span {
    left: -10vw;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator:nth-child(2) span {
    left: -30vw;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator:nth-child(3) span {
    left: -50vw;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator:nth-child(4) span {
    left: -70vw;
  }
  .ftri-section .ftri-steps-top .progress-bar .indicator:nth-child(5) span {
    left: -90vw;
  }
  .ftri-section .ftri-steps-content {
    margin: 30px 20px;
  }
  .ftri-section .ftri-steps-bottom {
    margin: 0;
    padding: 20px;
  }
  .ftri-section .basic-details-steps .form-field {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .ftri-section .estimated-amt-steps .form-field {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ftri-section .goal-steps .radio-style-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ftri-section .goal-steps .radio-style-box .radio-wrap,
  .ftri-section .goal-steps .radio-style-box .radio-wrap.width-160 {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    font-size: 12px;
  }
  .ftri-section .goal-steps .radio-style-box .radio-wrap:nth-child(2n),
  .ftri-section .goal-steps .radio-style-box .radio-wrap.width-160:nth-child(2n) {
    margin-right: 0;
  }
  .ftri-section .strategy-steps .strategy-info {
    padding: 0;
    background: #fff;
  }
  .ftri-section .strategy-steps .strategy-info .invest-ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
  .ftri-section .strategy-steps .strategy-info .invest-ul li {
    position: relative;
    width: calc(50% - 2px);
    padding-right: 5px;
    display: inline-block;
    margin-bottom: 20px;
  }
  .ftri-section .strategy-steps .strategy-info .invest-ul li::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    border: 1px solid #999999;
    border-radius: 2px;
    left: -3px;
    top: 1px;
  }
  .ftri-section .strategy-steps .strategy-info .invest-ul li.checked::before {
    border-color: #f37e20;
  }
  .ftri-section .strategy-steps .strategy-info .interest-box {
    padding: 0 15px;
    margin: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
  }
  .ftri-section .strategy-steps .strategy-info .light-sky {
    padding: 15px 0;
    background: #fff;
    margin: 0;
  }
  .ftri-section .strategy-steps .strategy-info .light-sky ul li .label {
    width: 80px;
    margin-right: 20px;
  }
  .ftri-section .strategy-steps .equity-chart {
    margin-bottom: 30px;
  }
  .ftri-section .strategy-steps .equity-chart #equityChart {
    margin-right: 15px;
  }
  .ftri-section .strategy-steps .equity-chart .legends li {
    font-size: 12px;
  }
}

/*customer-section- */
.customer-section .nav-tabs {
  margin-bottom: 60px;
}

.customer-section-lists {
  max-width: 976px;
  margin: 0 auto;
}

.customer-section-lists .customer-section-list:not(:last-child) {
  margin-bottom: 90px;
}

.customer-section-lists .customer-section-list .inner-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  margin: 0 -15px;
}

.customer-section-lists .customer-section-list .media {
  max-width: 385px;
  cursor: pointer;
  margin: 0 15px;
}

.customer-section-lists .customer-section-list .content {
  max-width: 460px;
  margin: 0 15px;
}

.customer-section-lists .customer-section-list .button-group {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .customer-section-lists .customer-section-list:not(:last-child) {
    margin-bottom: 40px;
  }
  .customer-section-lists .customer-section-list .inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customer-section-lists .customer-section-list .media,
  .customer-section-lists .customer-section-list .content {
    max-width: 100%;
  }
  .customer-section-lists .customer-section-list .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
  .customer-section-lists .customer-section-list .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* subscribe-form-box  */
.subscribe-form-box {
  border-radius: 10px;
  padding: 15px 50px;
}

.subscribe-form-box .content {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.subscribe-form-box.large-box {
  padding: 30px 65px;
}

.subscribe-form-box.large-box .title {
  margin-bottom: 0;
}

.subscribe-form-box .title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  max-width: 500px;
  margin-bottom: 20px;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  margin-bottom: 10px;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"] {
  background: transparent;
  border-bottom: 0.5px solid #4b4b4b;
  margin: 0 -20px 0 -35px;
  padding: 0px 40px 10px 40px;
  width: calc(100% + 55px);
  max-width: 280px;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:focus {
  background: transparent !important;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:-internal-autofill-selected, .subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:-webkit-autofill, .subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:-webkit-autofill:hover,
.subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:-webkit-autofill:focus .subscribe-form-box .subscribe-form .form-group .form-group-inner input[type="text"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px transparent inset;
  -ms-box-shadow: 0 0 0 50px transparent inset;
  -o-box-shadow: 0 0 0 50px transparent inset;
  box-shadow: 0 0 0 50px transparent inset;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner .icon {
  margin-right: 10px;
}

.subscribe-form-box .subscribe-form .form-group .form-group-inner .ic-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f37e20 url("../images/right_arrow_white.png") center center no-repeat !important;
  text-indent: -999px;
  overflow: hidden;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .subscribe-form-box {
    padding: 20px;
  }
  .subscribe-form-box.large-box {
    padding: 30px;
  }
  .subscribe-form-box .title {
    font-size: 18px;
    line-height: 22px;
  }
}

/* transact-section */
.transact-section .section-title {
  margin-bottom: 40px;
}

.transact-section .transact-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.transact-section .sidebar-content {
  width: 240px;
}

.transact-section .transact-tab-content {
  width: calc(100% - 280px);
  margin-left: 40px;
  padding: 25px 40px 40px;
}

.transact-section .transact-tab-content .border-bottom {
  border-top: 1px dashed #dedede;
  margin: 30px 0;
}

.transact-section .transact-tab-content .number-holder p {
  text-transform: uppercase;
}

.transact-section .transact-tab-content .buttons-group {
  margin-right: 45px;
  padding-right: 45px;
  border-right: 1px dashed #dedede;
}

.transact-section .transact-tab-content .buttons-group .ic-btn {
  min-width: 180px;
  text-align: center;
}

.transact-section .transact-tab-content .upi-link span {
  color: #8b8b8b;
}

.transact-section .transact-tab-content .upi-link a {
  background: #ebf6fe;
  display: inline-block;
  padding: 4px 20px 4px 8px;
  min-width: 158px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  color: #4b4b4b;
}

.transact-section .transact-tab-content .upi-link a img {
  margin-right: 15px;
}

.transact-section .transact-tab-content .upi-link a:not(:last-child) {
  margin: 0 20px;
}

@media only screen and (max-width: tablet) {
  .transact-section .transact-content {
    display: block;
  }
  .transact-section .sidebar-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .transact-section .sidebar-content ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .transact-section .sidebar-content ul li {
    display: inline-block !important;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .transact-section .sidebar-content ul li:before, .transact-section .sidebar-content ul li:after {
    display: block;
  }
  .transact-section .sidebar-content ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 8px 22px;
  }
  .transact-section .transact-tab-content {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .transact-section .transact-tab-content .buttons-group {
    margin: 0 20px;
    padding-right: 20px;
  }
  .transact-section .transact-tab-content .upi-link {
    margin: 20px 20px 0;
  }
}

@media only screen and (max-width: 990px) {
  .transact-section .transact-content {
    display: block;
  }
  .transact-section .sidebar-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .transact-section .sidebar-content ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .transact-section .sidebar-content ul li {
    display: inline-block !important;
    vertical-align: bottom;
    margin-right: -6px;
  }
  .transact-section .sidebar-content ul li:before, .transact-section .sidebar-content ul li:after {
    display: block;
  }
  .transact-section .sidebar-content ul li .menu-item {
    border-radius: 0;
    background: #ebe7e7;
    padding: 8px 22px;
  }
  .transact-section .transact-tab-content {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .transact-section .transact-tab-content .buttons-group {
    margin: 0 20px;
    padding-right: 20px;
  }
  .transact-section .transact-tab-content .upi-link {
    margin: 20px 20px 0;
  }
}

@media only screen and (max-width: 480px) {
  .transact-section .transact-tab-content .upi-link a {
    margin: 10px 0 !important;
  }
}

/* download-app-section */
.download-app-section {
  overflow: hidden;
}

.download-app-section .inner-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  max-width: 1100px;
  margin: 0 -15px;
}

.download-app-section .inner-content .content {
  width: 55%;
  padding: 0 15px;
}

.download-app-section .inner-content .content p.desc {
  font-size: 16px;
  line-height: 26px;
  max-width: 450px;
  margin-bottom: 25px;
}

.download-app-section .inner-content .content p.label {
  color: #8b8b8b;
  font-size: 14px;
  margin-bottom: 10px;
}

.download-app-section .inner-content .media {
  width: 45%;
  padding: 0 15px;
}

.download-app-section .iMobile-slider-section {
  max-width: 252px;
  position: relative;
}

.download-app-section .iMobile-slider-section .link {
  color: #f37e20;
  font-weight: 700;
  position: absolute;
  right: 0;
  bottom: 0px;
  cursor: pointer;
}

.download-app-section .iMobile-slider-section img {
  cursor: pointer;
}

.download-app-section .iMobile-slider-section .slick-dots {
  text-align: left;
  position: static;
  margin-top: 15px;
}

.download-app-section .download-vertical-link {
  max-width: 230px;
  margin-bottom: 30px;
}

.download-app-section .download-vertical-link .link {
  position: relative;
  margin-bottom: 15px;
}

.download-app-section .download-vertical-link .link .iplay-icon,
.download-app-section .download-vertical-link .link .pockets-icon {
  display: inline-block;
  background: #f37e20;
  width: 230px;
  padding: 8px 20px 8px 8px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.download-app-section .download-vertical-link .link .iplay-icon img,
.download-app-section .download-vertical-link .link .pockets-icon img {
  margin-right: 20px;
}

.download-app-section .download-vertical-link .link:hover .barcode {
  display: block;
}

.download-app-section .download-vertical-link .barcode {
  display: none;
  position: absolute;
  width: 150px;
  height: 180px;
  padding: 15px 20px 10px;
  background: #fff7eb;
  text-align: center;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  left: calc(100% + 15px);
  top: -10px;
}

.download-app-section .download-vertical-link .barcode::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff7eb;
  border-bottom: 10px solid transparent;
  top: 20px;
  left: -10px;
}

.download-app-section .download-vertical-link .barcode img {
  width: 100%;
  margin-bottom: 10px;
}

.download-app-section .download-vertical-link .barcode p {
  font-size: 12px;
}

@media only screen and (max-width: 480px) {
  .download-app-section .download-vertical-link .barcode {
    left: 60%;
  }
}

.download-app-section .download-horizontal-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 -30px 30px;
}

.download-app-section .download-horizontal-link .links,
.download-app-section .download-horizontal-link .barcode {
  padding: 0 30px;
}

.download-app-section .download-horizontal-link .links {
  border-right: 1px dashed #dedede;
}

.download-app-section .download-horizontal-link .links a {
  display: inline-block;
  margin: 0 10px 10px;
  cursor: pointer;
}

.download-app-section .download-horizontal-link .links a:not(:last-child) {
  margin-right: 10px;
}

.download-app-section .download-horizontal-link .barcode {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.download-app-section .download-horizontal-link .barcode img {
  max-width: 55px;
}

.download-app-section .download-horizontal-link .barcode p {
  text-transform: uppercase;
  max-width: 100px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
}

.download-app-section.video-text-section .inner-content {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .download-app-section .inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .download-app-section .inner-content .content,
  .download-app-section .inner-content .media {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .download-app-section .inner-content .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
  .download-app-section .inner-content .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* merchants-slider-section */
.merchants-slider-section .merchants-slider.slick-initialized .slick-list .slick-slide {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.merchants-slider-section .merchants-slider .item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  min-height: 172px;
  margin: 15px;
}

.merchants-slider-section .merchants-slider .item img {
  margin: 0 auto;
}

.merchants-slider-section .merchants-slider .slick-arrow {
  border: none;
  top: calc(50% - 30px);
}

.merchants-slider-section .merchants-slider .slick-arrow.slick-prev {
  left: -30px;
}

.merchants-slider-section .merchants-slider .slick-arrow.slick-next {
  right: -30px;
}

.merchants-slider-section .merchants-slider .slick-dots {
  position: static;
  margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
  .merchants-slider-section .merchants-slider .merchants-slider .item img {
    max-width: 150px;
  }
  .merchants-slider-section .merchants-slider .slick-arrow {
    display: none !important;
  }
  .merchants-slider-section .merchants-slider .slick-dots {
    text-align: center;
  }
}

/* infographics-tab */
.infographics-tab .infographics-tab-section {
  background: #fff;
  margin-bottom: 20px;
}

.infographics-tab .tab-content {
  padding: 20px;
}

.infographics-tab .ic-btn {
  min-width: 130px;
}

/* infographics-slider-section */
.infographics-slider-section .infographics-slider .slick-arrow {
  border: none;
}

.infographics-slider-section .infographics-slider .slick-arrow.slick-prev {
  left: -40px;
}

.infographics-slider-section .infographics-slider .slick-arrow.slick-next {
  right: -40px;
}

.infographics-slider-section .infographics-slider .slick-dots {
  position: static;
  margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
  .infographics-slider-section .infographics-slider .slick-arrow {
    display: none !important;
  }
  .infographics-slider-section .infographics-slider .slick-dots {
    text-align: center;
  }
}

.infographics-slider-section .ic-btn {
  min-width: 130px;
}

/* right-image-content */
.right-image-content .row {
  margin: 0;
}

.right-image-content .left-content {
  max-width: 600px;
  width: 50%;
  margin-right: 100px;
}

.right-image-content .left-content p,
.right-image-content .left-content ul,
.right-image-content .left-content ol {
  margin-bottom: 20px;
}

.right-image-content .right-content {
  width: calc(50% - 100px);
}

@media only screen and (max-width: 767px) {
  .right-image-content .left-content {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .right-image-content .right-content {
    width: 100%;
  }
}

/* ourproduct-tab */
.ourproduct-tab-section .section-inner {
  padding: 40px 20px;
}

.ourproduct-tab-section .section-title {
  margin-bottom: 25px !important;
}

.ourproduct-tab-section .section-title strong {
  display: inline-block !important;
}

.ourproduct-tab-section .nav-tabs li a {
  padding: 11px 25px;
}

.ourproduct-tab-section .info {
  margin: 25px 0 15px;
}

.ourproduct-tab-section .info p {
  font-size: 16px;
  line-height: 24px;
  max-width: 905px;
}

.ourproduct-tab-section .product-slider .slick-track {
  display: block !important;
}

.ourproduct-tab-section .product-slider .deal-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px rgba(117, 117, 117, 0.15);
  -ms-box-shadow: 0px 4px 20px rgba(117, 117, 117, 0.15);
  -o-box-shadow: 0px 4px 20px rgba(117, 117, 117, 0.15);
  box-shadow: 0px 4px 20px rgba(117, 117, 117, 0.15);
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-bottom: 30px;
}

.ourproduct-tab-section .product-slider .deal-card .deal-inner {
  height: initial;
}

.ourproduct-tab-section .product-slider .deal-card .deal-inner .image {
  height: initial;
  margin: -30px -30px 10px;
  overflow: hidden;
}

.ourproduct-tab-section .product-slider .deal-card .deal-inner .image img {
  max-height: initial;
  width: calc(100% + 30px);
}

.ourproduct-tab-section .product-slider .deal-card .deal-inner .description {
  line-height: 22px;
}

.ourproduct-tab-section .product-slider .deal-card .deal-inner .ic-btn {
  min-width: 140px;
}

@media only screen and (max-width: 640px) {
  .ourproduct-tab-section .product-slider .deal-card {
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    margin: 15px 0;
    border: 1px solid rgba(117, 117, 117, 0.15);
  }
}

.ourproduct-tab-section .product-slider .slick-arrow {
  border: none;
}

.ourproduct-tab-section .product-slider .slick-arrow.slick-prev {
  left: -40px;
}

.ourproduct-tab-section .product-slider .slick-arrow.slick-next {
  right: -40px;
}

.ourproduct-tab-section .product-slider .slick-dots {
  position: static;
  margin-top: 5px;
}

@media only screen and (min-width: 1150px) {
  .ourproduct-tab-section {
    /* .right-arrow, .left-arrow {
			display: none !important;
			visibility: hidden !important;
		} */
  }
  .ourproduct-tab-section .tabs-section {
    border-top: 1px solid #ebe7e7;
  }
}

/* faq-form */
.faq-form {
  width: 100%;
}

.faq-form form {
  text-align: center;
  margin-bottom: 30px;
}

.faq-form form input {
  padding: 21px 25px 19px;
  line-height: 25px;
  font-size: 18px;
  height: 63px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.2);
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comparision-graph h2 {
  margin-bottom: 22px;
}

.comparision-graph .section-sub-ttile {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 33px;
  color: #666666;
}

.comparision-graph label {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
}

.comparision-graph .checkmark {
  background-color: #fff;
  border: 1px solid #f37e20;
}

.comparision-graph #loan-amt-home-input {
  background: transparent !important;
}

.comparision-graph .left-conetnt {
  padding-right: 51px;
}

.comparision-graph .bar-graph {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-59.05%, #ffffff), color-stop(105.48%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #ffffff -59.05%, rgba(255, 255, 255, 0) 105.48%);
  border-radius: 10px 10px 0px 0px;
}

@media only screen and (max-width: tablet) {
  .comparision-graph .width-50 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .comparision-graph .left-content {
    margin-bottom: 20px;
  }
  .comparision-graph .section-inner {
    padding: 40px 20px !important;
  }
}

@media only screen and (max-width: 990px) {
  .comparision-graph .width-50 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .comparision-graph .left-content {
    margin-bottom: 20px;
  }
  .comparision-graph .section-inner {
    padding: 40px 20px !important;
  }
}

.online-services-section .online-services-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.online-services-section .online-services-inner .left-content {
  width: 50%;
  margin-right: 35px;
}

.online-services-section .online-services-inner .media {
  width: 50%;
  text-align: center;
}

.online-services-section .online-services-inner .section-title {
  margin-bottom: 21px;
}

.online-services-section .online-services-inner h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #3d3d3d;
  margin-bottom: 10px;
}

.online-services-section .online-services-inner p {
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #bbbbbb;
  margin-bottom: 23px;
}

.online-services-section .online-services-inner .radio-wrapper {
  margin-bottom: 26px;
}

.online-services-section .online-services-inner .radio-wrapper .radio-list {
  width: 250px;
  padding: 13px 12px 13px 36px;
  margin-left: 0;
}

.online-services-section .online-services-inner .radio-wrapper .radio-list.checked {
  border: 1px solid #f37e20;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
}

.online-services-section .online-services-inner .radio-wrapper .radio-list.checked .checkmark {
  background-image: url("../images/saving-account/download-app/half-circle.png");
  border: 1px solid #e0e0e3;
}

.online-services-section .online-services-inner .radio-wrapper .radio-list.checked .checkmark:after {
  display: none;
}

.online-services-section .online-services-inner .radio-wrapper .radio-list .checkmark {
  top: 32%;
  left: 12px;
  background: transparent;
}

.online-services-section .online-services-inner .content-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.online-services-section .online-services-inner .content-bottom .button-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 42px;
  border-right: 1px solid #dedede;
  width: 50%;
}

.online-services-section .online-services-inner .content-bottom .button-group .ic-btn {
  margin-bottom: 26px;
}

.online-services-section .online-services-inner .content-bottom .barcode {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 50%;
}

.online-services-section .online-services-inner .content-bottom .barcode p {
  margin: 0 0 0 20px;
}

@media only screen and (max-width: tablet) {
  .online-services-section .online-services-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .online-services-section .online-services-inner .left-content,
  .online-services-section .online-services-inner .media {
    width: 100%;
  }
  .online-services-section .online-services-inner .left-content {
    margin-right: 0;
  }
  .online-services-section .online-services-inner .media {
    margin-bottom: 20px;
  }
  .online-services-section .online-services-inner .media img {
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .online-services-section .online-services-inner .content-bottom .button-group {
    width: 300px;
  }
}

@media only screen and (max-width: 990px) {
  .online-services-section .online-services-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .online-services-section .online-services-inner .left-content,
  .online-services-section .online-services-inner .media {
    width: 100%;
  }
  .online-services-section .online-services-inner .left-content {
    margin-right: 0;
  }
  .online-services-section .online-services-inner .media {
    margin-bottom: 20px;
  }
  .online-services-section .online-services-inner .media img {
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }
  .online-services-section .online-services-inner .content-bottom .button-group {
    width: 300px;
  }
}

@media only screen and (max-width: phablet) {
  .online-services-section .online-services-inner .content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .online-services-section .online-services-inner .content-bottom .button-group {
    width: 100%;
    border-right: 0;
  }
  .online-services-section .online-services-inner .content-bottom .barcode {
    width: 100%;
  }
}

@media only screen and (max-width: 559px) {
  .online-services-section .online-services-inner .content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .online-services-section .online-services-inner .content-bottom .button-group {
    width: 100%;
    border-right: 0;
  }
  .online-services-section .online-services-inner .content-bottom .barcode {
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .online-services-section .online-services-inner .content-bottom .barcode {
    margin-top: 20px;
  }
}

.product-works-steps .section-title {
  margin-bottom: 30px;
}

.product-works-steps .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  padding-left: 20px;
  margin-bottom: 30px;
  border-top: 1px solid #ebe7e7;
}

@media only screen and (max-width: 768px) {
  .product-works-steps .nav-tabs {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    margin: 0 0 30px 0;
    padding-left: 0px;
  }
}

.product-works-steps .content-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.product-works-steps .content-inner .content {
  width: 60%;
  padding-right: 91px;
}

.product-works-steps .content-inner ul li {
  font-size: 12px;
  padding: 5px 25px;
}

.product-works-steps .content-inner ul li:not(:last-child) {
  margin-bottom: 20px;
}

.product-works-steps .content-inner ul li.checked {
  border: 1px solid #f37e20;
  border-radius: 100px;
  color: #f37e20;
  line-height: 40px;
}

.product-works-steps .content-inner .button-group {
  margin-top: 17px;
}

.product-works-steps .content-inner .button-group .ic-btn {
  margin-right: 30px;
}

.product-works-steps .content-inner .media {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 40%;
}

.product-works-steps .content-inner .media .barcode {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  margin-right: 20px;
}

.product-works-steps .content-inner .media .barcode p {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 6px;
}

.product-works-steps .content-inner .media .barcode img {
  background: #fff;
  padding: 10px;
}

@media only screen and (max-width: tablet) {
  .product-works-steps .content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-works-steps .content-inner .content,
  .product-works-steps .content-inner .media {
    width: 100%;
  }
  .product-works-steps .content-inner .content {
    padding-right: 0;
  }
  .product-works-steps .content-inner .media {
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}

@media only screen and (max-width: 990px) {
  .product-works-steps .content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-works-steps .content-inner .content,
  .product-works-steps .content-inner .media {
    width: 100%;
  }
  .product-works-steps .content-inner .content {
    padding-right: 0;
  }
  .product-works-steps .content-inner .media {
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}

@media only screen and (max-width: phablet) {
  .product-works-steps .content-inner ul li.checked {
    line-height: 20px;
  }
}

@media only screen and (max-width: 559px) {
  .product-works-steps .content-inner ul li.checked {
    line-height: 20px;
  }
}

.variation-fd-xtra-sections .nav-tabs {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  padding-left: 20px;
  margin-bottom: 30px;
  border-top: 1px solid #ebe7e7;
}

@media only screen and (max-width: 768px) {
  .variation-fd-xtra-sections .nav-tabs {
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    margin: 0 0 30px 0;
    padding-left: 0px;
  }
}

.variation-fd-xtra-sections .sub-title {
  margin-bottom: 30px;
  max-width: 80%;
  font-size: 16px;
  line-height: 24px;
}

.variation-fd-xtra-sections .left-tab {
  width: calc(65% - 32px);
  margin-right: 32px;
}

.variation-fd-xtra-sections .left-tab p {
  margin-bottom: 15px;
}

.variation-fd-xtra-sections .form-right {
  width: 35%;
  padding: 20px;
  background: #dedede;
}

.variation-fd-xtra-sections .form-right .fd-xtra-form {
  background: #fff;
  padding: 20px;
  margin: 0 auto;
}

.variation-fd-xtra-sections .form-right .label {
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.variation-fd-xtra-sections .form-right .ui-selectmenu-button-closed .ui-icon-triangle-1-s,
.variation-fd-xtra-sections .form-right .ui-selectmenu-button-open .ui-icon-triangle-1-s {
  top: 12px;
  right: 10px;
}

.variation-fd-xtra-sections .form-right form {
  text-align: center;
}

.variation-fd-xtra-sections .form-right form .form-control,
.variation-fd-xtra-sections .form-right form .ui-selectmenu-button-closed,
.variation-fd-xtra-sections .form-right form .ui-selectmenu-button-open {
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid rgba(199, 199, 199, 0.5);
  padding: 5px;
  margin-top: 0;
  font-weight: normal;
  font-size: 14px;
}

.variation-fd-xtra-sections .form-right form .ui-selectmenu-text {
  padding-bottom: 0px;
  font-weight: normal;
  font-size: 14px;
}

.variation-fd-xtra-sections .form-right form .btn-black {
  background: #131317;
  border-radius: 0;
  width: 100%;
  border: 1px solid #131317;
}

.variation-fd-xtra-sections .form-right form .btn-black:hover {
  color: #000;
  background: #fff;
}

.variation-fd-xtra-sections .fd-xtra-sections-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.variation-fd-xtra-sections .content-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  background: #fff;
  border: 1px solid rgba(243, 126, 32, 0.15);
  border-radius: 10px;
  padding: 25px 33px 30px 55px;
}

.variation-fd-xtra-sections .content-inner h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 7px;
}

.variation-fd-xtra-sections .content-inner p:not(:last-child) {
  margin-bottom: 20px;
}

.variation-fd-xtra-sections .content-inner .button-group {
  margin-top: 30px;
}

.variation-fd-xtra-sections .content-inner .button-group .ic-btn {
  margin-right: 21px;
}

.variation-fd-xtra-sections .content-inner .media {
  padding-left: 27px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: tablet) {
  .variation-fd-xtra-sections .sub-title {
    width: 100%;
  }
  .variation-fd-xtra-sections .fd-xtra-sections-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .variation-fd-xtra-sections .left-tab {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .variation-fd-xtra-sections .form-right {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .variation-fd-xtra-sections .sub-title {
    width: 100%;
  }
  .variation-fd-xtra-sections .fd-xtra-sections-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .variation-fd-xtra-sections .left-tab {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .variation-fd-xtra-sections .form-right {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .variation-fd-xtra-sections .width-50 {
    max-width: 100%;
  }
  .variation-fd-xtra-sections .content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  .variation-fd-xtra-sections .content-inner .content {
    margin-bottom: 20px;
  }
  .variation-fd-xtra-sections .content-inner .media {
    padding-left: 0;
  }
}

.mba-calculator-section .select-filter .ui-selectmenu-button-closed,
.mba-calculator-section .select-filter .ui-selectmenu-button-open {
  border: 0;
  border-bottom: 1px solid #4b4b4b;
  padding: 5px 0 8px 0px;
  border-radius: 0;
}

.mba-calculator-section .select-filter .ui-selectmenu-button-closed .ui-selectmenu-text,
.mba-calculator-section .select-filter .ui-selectmenu-button-open .ui-selectmenu-text {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-weight: bold;
}

.mba-calculator-section .date-picker input,
.mba-calculator-section .date-picker input[type="text"],
.mba-calculator-section .date-picker input[type="date"] {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3d3d3d;
  background-image: url("../images/icons/date-picker-orange.png");
}

.mba-calculator-section .card-panel .card-panel-bottom {
  height: auto !important;
  border-radius: 0 0px 10px 10px;
}

.mba-calculator-section .average-mab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.mba-calculator-section .average-mab label {
  margin-right: 20px;
}

.mba-calculator-section .add-more-container {
  width: 100%;
  padding: 17px 10px 24px;
  position: relative;
}

.mba-calculator-section .add-more-container .row-col {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.mba-calculator-section .add-more-container label {
  font-size: 14px;
  line-height: 19px;
}

.mba-calculator-section .add-more-container .input-style {
  background-color: #fff;
}

.mba-calculator-section .add-more-container .ic-column {
  width: 30%;
  padding: 0 10px;
}

.mba-calculator-section .add-more-container .ic-small-column {
  width: 5%;
  padding: 0 10px;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
}

.mba-calculator-section .add-more-container .close-icon {
  position: absolute;
  right: 10px;
  top: 15px;
  background: url("../images/icons/close-orange.svg") no-repeat center;
  width: 20px;
  height: 20px;
}

.mba-calculator-section .number-holder p {
  height: auto !important;
}

.mba-calculator-section .add-more-btn .btn-more {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.mba-calculator-section .add-more-btn .btn-more .text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12.1196px;
  line-height: 17px;
  color: #f37e20;
  text-decoration: none;
  margin: 10px 0;
  width: 150px;
}

.mba-calculator-section .add-more-btn .btn-more:after {
  content: "";
  width: 100%;
  border-bottom: 1px dashed #666666;
  margin: auto;
  height: 2px;
}

.mba-calculator-section .add-more-btn .btn-more .icon-plus {
  background: url("../images/icons/icon-plus-orange.png") no-repeat center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
}

.mba-calculator-section .buttons-group .ic-more:after {
  display: none;
}

@media only screen and (max-width: tablet) {
  .mba-calculator-section .section-inner {
    padding: 40px 0px !important;
  }
}

@media only screen and (max-width: 990px) {
  .mba-calculator-section .section-inner {
    padding: 40px 0px !important;
  }
}

@media only screen and (max-width: tablet-small) {
  .mba-calculator-section .date-picker input,
  .mba-calculator-section .date-picker input[type="text"],
  .mba-calculator-section .date-picker input[type="date"] {
    max-width: 100%;
  }
  .mba-calculator-section .add-more-container .row-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mba-calculator-section .add-more-container .ic-column {
    width: 100%;
    padding: 0 0 20px;
  }
  .mba-calculator-section .add-more-container .ic-small-column {
    margin-top: 0;
    width: 100%;
    padding: 0 0 20px;
  }
  .mba-calculator-section .add-more-container .input-style {
    max-width: 100%;
  }
}

@media only screen and (max-width: 639px) {
  .mba-calculator-section .date-picker input,
  .mba-calculator-section .date-picker input[type="text"],
  .mba-calculator-section .date-picker input[type="date"] {
    max-width: 100%;
  }
  .mba-calculator-section .add-more-container .row-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mba-calculator-section .add-more-container .ic-column {
    width: 100%;
    padding: 0 0 20px;
  }
  .mba-calculator-section .add-more-container .ic-small-column {
    margin-top: 0;
    width: 100%;
    padding: 0 0 20px;
  }
  .mba-calculator-section .add-more-container .input-style {
    max-width: 100%;
  }
}

@media only screen and (max-width: phone-wide) {
  .mba-calculator-section .buttons-group .ic-btn {
    text-align: left;
    margin: 0 0 20px;
  }
  .mba-calculator-section .add-more-btn .btn-more .text {
    width: 200px;
  }
  .mba-calculator-section .number-holder .total-amount {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .mba-calculator-section .buttons-group .ic-btn {
    text-align: left;
    margin: 0 0 20px;
  }
  .mba-calculator-section .add-more-btn .btn-more .text {
    width: 200px;
  }
  .mba-calculator-section .number-holder .total-amount {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: tablet) {
  .review-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .review-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .review-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .review-page .filter-section .filter-content {
    width: 100%;
  }
}

@media only screen and (max-width: 990px) {
  .review-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .review-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .review-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .review-page .filter-section .filter-content {
    width: 100%;
  }
}

/*disable-el  */
.disable-el {
  pointer-events: none !important;
}

/* loan-forms */
.loan-forms {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  vertical-align: middle;
}

.loan-forms .text-left {
  max-width: 200px;
  margin-right: 15px;
}

.loan-forms .content {
  max-width: 340px;
  width: 100%;
  padding: 0 15px 0 0;
}

.loan-forms .content .form-slider .slick-list {
  padding-bottom: 10px;
}

.loan-forms .content .form-slider .form-group {
  position: relative;
  padding-bottom: 5px;
}

.loan-forms .content .form-slider .form-group .form-group-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 5px 10px 8px 0;
  border-bottom: 0.5px solid #4b4b4b;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  margin-bottom: 2px;
}

.loan-forms .content .form-slider .form-group .form-group-inner.error {
  border-bottom: 0.5px solid #ad1e23;
}

.loan-forms .content .form-slider .form-group .form-group-inner .icon {
  margin-right: 11px;
  width: auto;
  float: left;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box {
  float: right;
  width: 90%;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input {
  border: 0;
  color: #a6a6a6;
  max-width: 300px;
  width: 100%;
  background: transparent;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input.error {
  color: #e6371f;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-webkit-input-placeholder {
  color: #a6a6a6;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-ms-input-placeholder {
  color: #a6a6a6;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-ms-input-placeholder {
  color: #a6a6a6;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input::placeholder {
  color: #a6a6a6;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input::-ms-clear {
  display: none;
}

.loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-internal-autofill-selected, .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill, .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:hover,
.loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill:focus .loan-forms .content .form-slider .form-group .form-group-inner .input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px white inset;
  -ms-box-shadow: 0 0 0 50px white inset;
  -o-box-shadow: 0 0 0 50px white inset;
  box-shadow: 0 0 0 50px white inset;
}

.loan-forms .content .form-slider .form-group .error-msg {
  position: absolute;
  bottom: -13px;
  color: #a6a6a6;
  font-size: 12px;
  line-height: 14px;
}

.loan-forms .content .form-slider .form-group .success-message {
  background: #e6e6e6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 6px 13px 5px;
  border-bottom: 0.5px solid #219653;
}

.loan-forms .content .form-slider .form-group .success-message img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.loan-forms .content .form-slider .form-group .success-message p {
  margin-left: 15px;
  max-width: 180px;
  font-weight: bold;
}

.loan-forms .content .form-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 0;
  padding: 0;
}

.loan-forms .content .form-slider .cust-btn-submit {
  position: absolute;
  top: 5px;
  right: 0;
  text-indent: 0;
  width: 75px !important;
  border-radius: 20px;
  color: #fff;
  background: #4b4b4b !important;
  pointer-events: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.loan-forms .content .form-slider .cust-btn-submit.active-btn-submit {
  background: #f37e20 !important;
  pointer-events: initial;
}

.loan-forms .slick-arrow {
  width: 22px !important;
  height: 22px !important;
}

.loan-forms .slick-arrow.slick-prev {
  background: #f37e20 url("../images/left_arrow_orange.png") center center no-repeat !important;
  left: -53px;
  top: 5px;
  border: 0;
  display: none !important;
}

.loan-forms .slick-arrow.slick-prev:hover {
  border: 0;
}

.loan-forms .slick-arrow.slick-next {
  background: #f37e20 url("../images/left_arrow_orange.png") center center no-repeat !important;
  right: -8px;
  top: 5px;
  border: 0;
}

.loan-forms .slick-arrow.slick-next:hover {
  border: 0;
}

.loan-forms .slick-arrow.arrow-disable {
  background: #4b4b4b url("../images/right_arrow_white.png") center center no-repeat !important;
  pointer-events: none;
}

.loan-forms .slick-dots {
  padding-left: 5px;
  text-align: left;
  bottom: -27px;
}

.loan-forms input:focus {
  background-color: white !important;
}

@media screen and (max-width: 600px) {
  .loan-forms {
    display: block;
    margin: 0;
    padding: 40px 20px;
    background: #f2f5f6;
  }
  .loan-forms .content {
    padding: 0;
    max-width: 320px;
    width: 100%;
  }
  .loan-forms .text-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .loan-forms .form-slider .form-group .input-box {
    float: right;
    width: 93%;
  }
  .loan-forms .form-slider .form-group .input-box input {
    background: transparent;
  }
  .loan-forms .slick-arrow.slick-prev {
    left: -42px;
  }
}

.account-variants-curve-10 {
  border-radius: 10px;
}

.account-variants-padding-20 {
  padding: 20px;
}

.show-more-cards {
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  line-height: 140%;
  padding-right: 20px;
  letter-spacing: 0.05em;
  color: #f37e20;
  cursor: pointer;
}

.show-more-cards::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(../images//icons/down-arrow-o.svg) no-repeat left center;
  background-position: 0px 2.5px;
  z-index: 1;
}

.account-variants .section-title {
  margin-bottom: 50px;
  text-align: left !important;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
}

@media only screen and (max-width: tablet) {
  .account-variants .section-title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 990px) {
  .account-variants .section-title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .account-variants .filter-top {
    padding-top: 20px;
  }
}

@media only screen and (max-width: phone-wide) {
  .account-variants .filter-top {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 479px) {
  .account-variants .filter-top {
    padding-top: 0px;
  }
}

.account-variants-card {
  margin-bottom: 15px;
  height: 100%;
}

.account-variants-card:last-child {
  margin-bottom: 0;
}

.account-variants-card h4 {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.account-variants-card p,
.account-variants-card ul {
  font-size: 14px;
  line-height: 23px;
  color: #8b8b8b;
}

.account-variants-card ul {
  padding-left: 20px;
}

.account-variants-card ul li {
  list-style-type: disc;
}

.account-variants-card .button-group {
  margin-top: 20px;
}

.account-variants-card .button-group .ic-btn {
  margin-right: 20px;
}

@media only screen and (max-width: 1024px) {
  .account-variants-card .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

.account-variants-card .button-group-2 {
  background: rgba(7, 74, 134, 0.05);
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  padding: 13px;
  display: inline-block;
}

.account-variants-card .button-group-2 a:link,
.account-variants-card .button-group-2 a:visited {
  color: #053c6d;
  text-transform: uppercase;
  margin-right: 10px;
}

.account-variants-card .button-group-2 span {
  display: inline-block;
  padding-right: 18px;
}

.account-variants-card .button-group-2 span.line {
  padding-right: 0;
  padding-left: 18px;
  position: relative;
}

.account-variants-card .button-group-2 span.line::before {
  content: "";
  border-left: 1px solid #d9d9d9;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.account-variants-card .buttons-group-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: baseline;
          align-items: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
}

.account-variants-card.account-variants-vertical-card .account-variants-card-with-img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.account-variants-card.account-variants-vertical-card .account-variants-card-with-img .img-wrapper {
  margin: 0 0 20px;
}

.account-variants-card.blue-bg {
  background-color: #074a86;
}

.account-variants-card.blue-bg p,
.account-variants-card.blue-bg h3,
.account-variants-card.blue-bg h4,
.account-variants-card.blue-bg h5 {
  color: #fff;
}

.account-variants-card.blue-bg .account-variants-card-with-img.align-center {
  -webkit-box-align: Center;
          align-items: Center;
  -webkit-align-items: Center;
  -ms-flex-align: Center;
  height: 100%;
}

.account-variants-card.blue-bg .account-variants-card-with-img.align-center h5 {
  font-size: 18px;
  font-weight: 400;
}

.account-variants-card.blue-bg .account-variants-card-with-img.align-center .button-group {
  margin-top: 15px;
}

.account-variants-card.blue-bg .account-variants-card-with-img.justify-content-center {
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  height: 100%;
}

.account-variants-card.blue-bg .account-variants-card-with-img.justify-content-center h5 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.account-variants-card.blue-bg .account-variants-card-with-img.justify-content-center h3 {
  position: relative;
  max-width: 185px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.account-variants-card.blue-bg .account-variants-card-with-img.justify-content-center h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 106px;
  height: 1px;
  background: #fff;
  opacity: 0.2;
}

.account-variants-card.blue-bg .account-variants-card-with-img.justify-content-center .button-group {
  margin-top: 30px;
}

.account-variants-card.maroon-bg {
  background-color: #ad1e23;
  color: #fff;
}

.account-variants-card.maroon-bg p,
.account-variants-card.maroon-bg h4 {
  color: #fff;
}

.account-variants-card.banner-card .cap {
  font-size: 22px;
  line-height: 138%;
}

.account-variants-card.banner-card h4 {
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
  text-transform: inherit;
  margin-top: 6px;
  margin-bottom: 0;
}

.account-variants-card.banner-card .button-group {
  margin-top: 30px;
}

.account-variants-card.banner-card .button-group a.ic-more:link,
.account-variants-card.banner-card .button-group a.ic-more:visited {
  color: #fff;
}

.account-variants-card.banner-card .button-group a.ic-more:link::after,
.account-variants-card.banner-card .button-group a.ic-more:visited::after {
  background-image: url("../images/icons/more-w.png");
}

.account-variants-card.banner-card-left .button-group {
  margin-top: 30px;
  text-align: center;
}

.account-variants-card.banner-card-left .button-group .ic-btn {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
}

.account-variants-card.banner-card-middle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  padding: 20px 50px;
}

.account-variants-card.banner-card-middle .title-wrapper {
  margin-right: 20px;
}

.account-variants-card.banner-card-middle .button-group {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .account-variants-card.banner-card-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: left;
            align-items: left;
    -webkit-align-items: left;
    -ms-flex-align: left;
    padding: 20px;
  }
  .account-variants-card.banner-card-middle .title-wrapper {
    margin: 0 0 20px;
  }
  .account-variants-card.banner-card-middle .title-wrapper,
  .account-variants-card.banner-card-middle .button-group {
    width: 100%;
  }
}

@media only screen and (max-width: phone-wide) {
  .account-variants-card.banner-card-middle .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .account-variants-card.banner-card-middle .button-group a:not(:last-child) {
    margin-bottom: 20px;
  }
}

.account-variants-card.recommended-card {
  position: relative;
  border: 1px solid #ad1e23;
}

.account-variants-card.recommended-card .recommended-label {
  background: #ad1e23;
  color: #fff;
  position: absolute;
  top: -26px;
  left: 10px;
  min-width: 140px;
  text-align: center;
  padding: 3px 20px;
  border-radius: 10px 10px 0 0;
}

.account-variants-card.account-variants-card-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  border-bottom: 1px dashed #C6C6C6;
  padding: 30px 0;
}

.account-variants-card.account-variants-card-links .title-wrapper {
  font-size: 26px;
  line-height: 34px;
  text-transform: uppercase;
}

.account-variants-card.account-variants-card-links .title-wrapper h4 {
  font-size: 26px;
}

.account-variants-card.account-variants-card-links .button-group {
  margin-left: auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.account-variants-card.account-variants-card-links .button-group .line {
  background: #dedede;
  margin: 0 40px 0 20px;
  width: 1px;
  height: 30px;
}

@media only screen and (max-width: 767px) {
  .account-variants-card.account-variants-card-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .account-variants-card.account-variants-card-links .button-group {
    margin: 30px 0 0;
  }
  .account-variants-card.account-variants-card-links .button-group a:not(:last-child) {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 568px) {
  .account-variants-card.account-variants-card-links .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .account-variants-card.account-variants-card-links .button-group .line {
    background: transparent;
  }
}

.account-variants-card .account-variants-card-with-img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.account-variants-card .account-variants-card-with-img .titie-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.account-variants-card .account-variants-card-with-img .titie-wrapper .checkbox-list {
  background-color: #ffebdc;
  padding: 5px 10px 5px 40px;
  color: #f37e20;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 15px;
}

.account-variants-card .account-variants-card-with-img .titie-wrapper .checkbox-list .checkmark {
  border-color: #f37e20;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.account-variants-card .account-variants-card-with-img .img-wrapper {
  margin-right: 50px;
}

.account-variants-card .account-variants-card-with-img .img-wrapper img {
  max-width: 320px;
}

.account-variants-card .account-variants-card-with-img .content-wrapper {
  width: 100%;
}

.account-variants-card .account-variants-card-with-img .content-wrapper.scroll-content {
  max-height: 180px;
}

@media only screen and (max-width: 991px) {
  .account-variants-card .account-variants-card-with-img .content-wrapper.scroll-content {
    max-height: 100%;
  }
}

.account-variants-card .account-variants-card-with-img .icon-text-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 10px -10px -15px;
}

.account-variants-card .account-variants-card-with-img .icon-text-lists .icon-text-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 0 10px 15px;
}

.account-variants-card .account-variants-card-with-img .icon-text-lists .icon-text-list img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}

.account-variants-card .account-variants-card-with-img .icon-text-lists .icon-text-list p {
  line-height: 16px;
}

.account-variants-card .account-variants-card-with-img .button-group {
  margin-top: 30px;
}

.account-variants-card .account-variants-card-with-img .button-group-2 {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .account-variants-card .account-variants-card-with-img {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .account-variants-card .account-variants-card-with-img .img-wrapper {
    margin: 0 auto 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .account-variants-card .account-variants-card-with-img .img-wrapper img {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .account-variants-card {
    height: auto !important;
  }
}

@media only screen and (max-width: 576px) {
  .account-variants-single-card .account-variants-card .buttons-group-wrapper {
    display: block;
  }
  .account-variants-single-card .account-variants-card .buttons-group-wrapper .button-group-2 {
    margin-top: 20px;
  }
}

.account-variants-double-card.row {
  margin-right: -10px;
  margin-left: -10px;
}

.account-variants-double-card.row .col-lg-6,
.account-variants-double-card.row .col-md-6,
.account-variants-double-card.row .col-sm-6,
.account-variants-double-card.row .col-xs-12 {
  padding: 10px;
}

.account-variants-double-card .row {
  margin-right: -10px;
  margin-left: -10px;
}

.account-variants-double-card .row .col-lg-6,
.account-variants-double-card .row .col-md-6,
.account-variants-double-card .row .col-sm-6,
.account-variants-double-card .row .col-xs-12 {
  padding: 10px;
}

.account-variants-double-card .button-group-2 {
  margin-bottom: 20px;
}

.account-variants-double-card .account-variants-card .img-wrapper {
  margin-right: 30px;
}

.account-variants-double-card .account-variants-card .img-wrapper img {
  max-width: 175px;
}

@media only screen and (max-width: 768px) {
  .account-variants-double-card .account-variants-card .img-wrapper {
    margin-right: 0px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 auto 20px;
  }
  .account-variants-double-card .account-variants-card .img-wrapper img {
    max-width: 100%;
    margin-left: 0;
  }
}

.account-varients-long-card .section-title {
  margin-bottom: 31px;
}

.account-varients-long-card .media img {
  width: 100%;
}

.account-varients-long-card .i-card {
  padding: 0;
  overflow: hidden;
}

.account-varients-long-card .i-card__box {
  padding: 0;
}

.account-varients-long-card .content {
  padding: 8px 27px 30px;
}

.account-varients-long-card .i-card__title {
  margin-bottom: 12px;
}

.account-varients-long-card .i-card__subtitle {
  margin-bottom: 0;
}

.account-varients-long-card .i-card__subtitle:not(:last-child) {
  margin-bottom: 15px;
}

@media only screen and (max-width: tablet) {
  .account-variation-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .account-variation-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .account-variation-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands {
    margin-bottom: 20px !important;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands.active .heading {
    margin: 15px 0 25px;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands.active .content {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .account-variation-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .account-variation-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .account-variation-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands {
    margin-bottom: 20px !important;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands.active .heading {
    margin: 15px 0 25px;
  }
  .account-variation-page.filter-section .sidebar-content .sb-box.sb-brands.active .content {
    padding-left: 20px;
  }
}

/* account-varaints-pointer */
.varaints-pointer-cards {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.varaints-pointer-cards .varaints-pointer-card {
  background: #fff;
  margin: 0 12px 30px;
  width: calc(33% - 24px);
  -webkit-box-shadow: 0px 4px 25px rgba(117, 117, 117, 0.15);
  -ms-box-shadow: 0px 4px 25px rgba(117, 117, 117, 0.15);
  -o-box-shadow: 0px 4px 25px rgba(117, 117, 117, 0.15);
  box-shadow: 0px 4px 25px rgba(117, 117, 117, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.varaints-pointer-cards .varaints-pointer-card .content {
  padding: 15px 22px 30px;
}

.varaints-pointer-cards .varaints-pointer-card .content h4 {
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}

.varaints-pointer-cards .varaints-pointer-card .content ul {
  padding-left: 15px;
}

.varaints-pointer-cards .varaints-pointer-card .content ul li {
  font-size: 14px;
  line-height: 24px;
  list-style: disc;
  margin-bottom: 20px;
  color: #8b8b8b;
}

.varaints-pointer-cards .varaints-pointer-card .content ul li:last-child {
  margin-bottom: 0;
}

.varaints-pointer-cards .varaints-pointer-card .content .button-group {
  margin-top: 20px;
}

.varaints-pointer-cards .varaints-pointer-card .content .button-group .ic-btn {
  margin-right: 20px;
}

@media only screen and (max-width: 1025px) {
  .varaints-pointer-cards .varaints-pointer-card {
    width: calc(50% - 24px);
  }
}

@media only screen and (max-width: 576px) {
  .varaints-pointer-cards .varaints-pointer-card {
    width: 100%;
    margin: 0 0 30px;
  }
}

.pointer-carousel-with-link .section-title {
  line-height: 38px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.pointer-carousel-with-link .varaints-pointer-cards {
  padding: 0 40px;
}

.pointer-carousel-with-link .varaints-pointer-card {
  position: relative;
  margin-bottom: 0;
}

.pointer-carousel-with-link .varaints-pointer-card .content {
  padding: 15px 22px 65px;
  min-height: 210px;
}

.pointer-carousel-with-link .varaints-pointer-card .button-group {
  position: absolute;
  bottom: 30px;
  margin: 0;
}

.pointer-carousel-with-link .slick-arrow {
  top: calc(50% - 40px);
  border: none;
}

.pointer-carousel-with-link .slick-arrow:hover {
  border: none;
}

.pointer-carousel-with-link .slick-arrow.slick-prev {
  left: 0;
}

.pointer-carousel-with-link .slick-arrow.slick-next {
  right: 0;
}

.pointer-carousel-with-link .slick-dots {
  position: static;
  margin-top: 20px;
}

@media only screen and (max-width: 991px) {
  .pointer-carousel-with-link .varaints-pointer-cards {
    padding: 0;
  }
  .pointer-carousel-with-link .slick-dots {
    text-align: center;
  }
}

@media only screen and (max-width: 576px) {
  .pointer-carousel-with-link .varaints-pointer-cards .varaints-pointer-card {
    margin: 0;
  }
}

.pointer-with-two-cta .section-title {
  line-height: 38px;
  margin-bottom: 30px;
}

.pointer-with-two-cta .varaints-pointer-card .content .desc {
  min-height: 140px;
}

/* account-varaints-shuffling-tabs */
.account-varaints-shuffling-tabs .section-inner {
  padding: 0 20px;
}

.account-varaints-shuffling-tabs .blue-bg-tab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 100%;
}

.account-varaints-shuffling-tabs .blue-bg-tab::before, .account-varaints-shuffling-tabs .blue-bg-tab::after {
  display: none;
}

.account-varaints-shuffling-tabs .blue-bg-tab li {
  width: 33.3%;
  margin: 0;
}

.account-varaints-shuffling-tabs .blue-bg-tab li::before, .account-varaints-shuffling-tabs .blue-bg-tab li::after {
  display: none;
}

.account-varaints-shuffling-tabs .blue-bg-tab li a {
  min-height: 95px;
  background: transparent;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}

.account-varaints-shuffling-tabs .blue-bg-tab li a::before {
  position: absolute;
  width: 48px;
  height: 0px;
  content: "";
  opacity: 0.3;
  border: 0.6px solid #666666;
  -webkit-transform: matrix(0, 1, 1, 0, 0, 0);
  transform: matrix(0, 1, 1, 0, 0, 0);
  left: -25px;
  top: 45px;
}

.account-varaints-shuffling-tabs .blue-bg-tab li:first-child a::before {
  display: none;
}

.account-varaints-shuffling-tabs .blue-bg-tab li.active a {
  background-color: #074a86 !important;
}

.account-varaints-shuffling-tabs .blue-bg-tab li.active a:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eaf5ff;
  left: calc(50% - 10px);
  bottom: 0;
}

.account-varaints-shuffling-tabs .blue-bg-tab li span img {
  height: auto;
  max-width: 55px;
}

.account-varaints-shuffling-tabs .top-content .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 40px 20px;
}

.account-varaints-shuffling-tabs .top-content .content {
  max-width: 610px;
}

.account-varaints-shuffling-tabs .top-content .content h4 {
  margin-bottom: 15px;
  color: #3d3d3d;
}

.account-varaints-shuffling-tabs .top-content .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
  color: #3d3d3d;
}

.account-varaints-shuffling-tabs .top-content .media {
  margin-left: auto;
}

.account-varaints-shuffling-tabs .bottom-content-lists {
  background: rgba(255, 255, 255, 0.4);
  padding: 30px 0 25px;
}

.account-varaints-shuffling-tabs .bottom-content-lists .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.account-varaints-shuffling-tabs .bottom-content-lists .list {
  position: relative;
  width: 25%;
  padding: 0px 20px 0 30px;
}

.account-varaints-shuffling-tabs .bottom-content-lists .list::before {
  position: absolute;
  width: 48px;
  height: 0px;
  content: "";
  opacity: 0.4;
  border: 0.6px solid #666666;
  -webkit-transform: matrix(0, 1, 1, 0, 0, 0);
  transform: matrix(0, 1, 1, 0, 0, 0);
  left: -25px;
  top: 30px;
}

.account-varaints-shuffling-tabs .bottom-content-lists .list .label {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

.account-varaints-shuffling-tabs .bottom-content-lists .list .value {
  line-height: 1.45;
}

.account-varaints-shuffling-tabs .bottom-content-lists .list .ic-more {
  margin-top: 5px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .account-varaints-shuffling-tabs .bottom-content-lists .list .value {
    font-size: 24px;
  }
}

@media only screen and (max-width: tablet) {
  .account-varaints-shuffling-tabs .blue-bg-tab li {
    width: 100%;
  }
  .account-varaints-shuffling-tabs .blue-bg-tab li a {
    font-size: 18px;
  }
  .account-varaints-shuffling-tabs .top-content .section-inner {
    display: block;
  }
  .account-varaints-shuffling-tabs .top-content .content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .account-varaints-shuffling-tabs .top-content .media img {
    width: 100%;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list {
    width: 50%;
    padding: 10px 20px;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list .value {
    font-size: 18px;
  }
}

@media only screen and (max-width: 990px) {
  .account-varaints-shuffling-tabs .blue-bg-tab li {
    width: 100%;
  }
  .account-varaints-shuffling-tabs .blue-bg-tab li a {
    font-size: 18px;
  }
  .account-varaints-shuffling-tabs .top-content .section-inner {
    display: block;
  }
  .account-varaints-shuffling-tabs .top-content .content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .account-varaints-shuffling-tabs .top-content .media img {
    width: 100%;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list {
    width: 50%;
    padding: 10px 20px;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list .value {
    font-size: 18px;
  }
}

@media only screen and (max-width: phone) {
  .account-varaints-shuffling-tabs .bottom-content-lists .list {
    width: 100%;
    padding: 0 0 20px;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list::before {
    width: 100%;
    height: 1px;
    -webkit-transform: none;
            transform: none;
    left: 0;
    top: auto;
    bottom: 5px;
  }
}

@media only screen and (max-width: 399px) {
  .account-varaints-shuffling-tabs .bottom-content-lists .list {
    width: 100%;
    padding: 0 0 20px;
  }
  .account-varaints-shuffling-tabs .bottom-content-lists .list::before {
    width: 100%;
    height: 1px;
    -webkit-transform: none;
            transform: none;
    left: 0;
    top: auto;
    bottom: 5px;
  }
}

.review-page.filter-section {
  background: #f6f6f6;
}

.review-page.filter-section .filter-content {
  width: 100%;
}

.review-page.filter-section .filter-top .sort-tools {
  position: relative;
}

.review-page.filter-section .filter-top .sort-tools .title {
  position: relative;
}

.review-page.filter-section .filter-top .sort-tools .title:after {
  content: "";
  position: absolute;
  border-left: 1px rgba(0, 0, 0, 0.3) solid;
  top: 3px;
  right: -12px;
  height: 60%;
  margin-top: auto;
  margin-bottom: auto;
}

.review-page.filter-section .filter-top .sort-tools .sort-dropdown {
  background: transparent;
}

.review-page.filter-section .filter-top .sort-tools .sort-dropdown span {
  background: transparent;
}

.review-page .section-title {
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #074a86;
}

.review-page .filter-top-tool .button-group {
  margin-right: 60px;
}

.review-page .filter-top-tool .button-group .review-btn {
  outline: none;
}

.review-page .notification-alert.apply-now {
  top: 380px;
  z-index: 1;
  max-width: 138px;
}

.review-page .notification-alert.apply-now a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: tablet) {
  .review-page {
    margin-top: 112px;
  }
  .review-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .review-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .review-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .review-page .filter-top-tool .button-group {
    margin-right: 0px;
  }
  .review-page.filter-section .filter-top.filter-sticky .section-title {
    margin-bottom: 0;
  }
  .review-page.filter-section .filter-top.filter-sticky .filter-inner {
    height: auto;
  }
}

@media only screen and (max-width: 990px) {
  .review-page {
    margin-top: 112px;
  }
  .review-page .filter-inner-container.active {
    margin-top: 50px;
  }
  .review-page .filter-inner-container.active .banner-card {
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }
  .review-page .filter-inner-container .filter-sticky {
    top: 110px;
  }
  .review-page .filter-top-tool .button-group {
    margin-right: 0px;
  }
  .review-page.filter-section .filter-top.filter-sticky .section-title {
    margin-bottom: 0;
  }
  .review-page.filter-section .filter-top.filter-sticky .filter-inner {
    height: auto;
  }
}

@media only screen and (max-width: phablet) {
  .review-page.filter-section .filter-top .filter-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-page.filter-section .filter-top-tool {
    margin: 10px 0 0 0 !important;
  }
}

@media only screen and (max-width: 559px) {
  .review-page.filter-section .filter-top .filter-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-page.filter-section .filter-top-tool {
    margin: 10px 0 0 0 !important;
  }
}

.review-card-lists .card-loading {
  min-height: 80px;
  background: url("../images/icons/loader.gif") no-repeat center;
  background-size: 80px;
  margin-bottom: 40px;
}

.review-card-lists .card-loading .card-list {
  opacity: 0;
}

.review-card-lists .card-list-wraper {
  margin-bottom: 20px;
}

.review-card-lists .card-list-wraper.hidden-card {
  display: none;
}

.review-card-lists .card-list-wraper.hidden-card .card-list {
  opacity: 0;
}

.review-card-lists .card-list-wraper.auto-height .card-list {
  opacity: 1;
}

.review-card-lists .card-list {
  position: relative;
  background: #fff;
  border: 0.8px solid #dedede;
  padding: 25px;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 8px;
}

.review-card-lists .card-list:last-child {
  margin-bottom: 0;
}

.review-card-lists .card-list .card-icon {
  background: url("../images/icons/user-icon-orange-bg.svg") no-repeat;
  margin-right: 12px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.review-card-lists .card-list .card-img img {
  width: 100%;
}

.review-card-lists .card-list .content > h5 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.review-card-lists .card-list .content > h5 a {
  color: #4b4b4b;
}

.review-card-lists .card-list .content > p {
  font-size: 14px;
  line-height: 21px;
  color: #8b8b8b;
}

.review-card-lists .card-list .content .card-top-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.review-card-lists .card-list .content .card-top-text h5 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 3px;
}

.review-card-lists .card-list .content .card-top-text .star-review {
  margin-left: auto;
  position: relative;
}

.review-card-lists .card-list .content .card-top-text .star-review span {
  display: inline-block;
  cursor: pointer;
  background-image: url("../images/saving-account/comparing-cards/orange-star-empty.png");
  background-size: 15px;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 18px;
  height: 17px;
  text-indent: -9999999px;
}

.review-card-lists .card-list .content .card-top-text .star-review span.checked {
  background-image: url("../images/icons/saving-account/star.svg");
}

.review-card-lists .card-list .content .card-top-text .star-review span:not(:last-child) {
  margin-right: 1px;
}

.review-card-lists .card-list .content .card-middel-text {
  width: 80%;
}

.review-card-lists .card-list .content .card-middel-text p {
  font-size: 14px;
  line-height: 21px;
  color: #bbbbbb;
}

.review-card-lists .card-list .content .card-bottom-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-top: 20px;
}

.review-card-lists .card-list .content .card-bottom-text .card-date {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  line-height: 17px;
  font-size: 12px;
}

.review-card-lists .card-list .content .card-bottom-text .card-date .name {
  color: #3d3d3d;
  font-weight: 600;
  margin-right: 13px;
}

.review-card-lists .card-list .content .card-bottom-text .card-date .date {
  color: #999999;
}

.review-card-lists .card-list .content .card-bottom-text .social-share {
  margin-left: auto;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .count {
  font-size: 14px;
  line-height: 23px;
  color: #8b8b8b;
  padding-left: 7px;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .icon {
  width: 20px;
  height: 19px;
  display: block;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .social-like {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .social-like .like {
  background: url("../images/icons/icon-like.svg") no-repeat left;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .social-dislike {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-right: 35px;
}

.review-card-lists .card-list .content .card-bottom-text .social-share .social-dislike .dislike {
  background: url("../images/icons/icon-dislike.svg") no-repeat left;
}

.review-card-lists.horizontal-view .card-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.review-card-lists.horizontal-view .card-list .content {
  width: calc(100% - 45px);
}

@media only screen and (max-width: tablet) {
  .review-card-lists .card-list {
    padding: 15px 15px 20px;
  }
  .review-card-lists .card-list .card-bottom-text {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 990px) {
  .review-card-lists .card-list {
    padding: 15px 15px 20px;
  }
  .review-card-lists .card-list .card-bottom-text {
    margin-top: 10px;
  }
}

@media only screen and (max-width: phablet) {
  .review-card-lists .card-list .content .card-top-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-card-lists .card-list .content .card-top-text .star-review {
    margin-left: 0 !important;
  }
  .review-card-lists .card-list .content .card-middel-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .review-card-lists .card-list .content .card-bottom-text {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-card-lists .card-list .content .card-bottom-text .card-date {
    margin-bottom: 10px;
  }
  .review-card-lists .card-list .content .card-bottom-text .social-share {
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 559px) {
  .review-card-lists .card-list .content .card-top-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-card-lists .card-list .content .card-top-text .star-review {
    margin-left: 0 !important;
  }
  .review-card-lists .card-list .content .card-middel-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .review-card-lists .card-list .content .card-bottom-text {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
  }
  .review-card-lists .card-list .content .card-bottom-text .card-date {
    margin-bottom: 10px;
  }
  .review-card-lists .card-list .content .card-bottom-text .social-share {
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: tablet) {
  .customer-review-pop-page.review-popup-section.customer-review-pop-up {
    top: 0;
  }
}

@media only screen and (max-width: 990px) {
  .customer-review-pop-page.review-popup-section.customer-review-pop-up {
    top: 0;
  }
}

.para-title {
  text-transform: uppercase;
}

.para-title p {
  font-size: 18px;
  line-height: 1.5;
}

.para-title p strong {
  font-weight: 800;
  display: block;
}

.para-title p.title {
  text-transform: none;
  color: #7d7d7d;
  margin-bottom: 10px;
  font-weight: 600;
}

.para-title .ic-more,
.para-title .ic-btn {
  margin-top: 30px;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .para-title {
    text-align: center;
    margin: 0 auto;
  }
  .para-title p {
    font-size: 16px;
  }
}

/* banking-banner-section" */
.banking-banner-section .banking-banner-nav {
  position: relative;
  z-index: 2;
  background: #faf9f9;
}

.banking-banner-section .banking-banner-nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.banking-banner-section .banking-banner-nav .section-inner {
  padding: 0;
}

.banking-banner-section .banking-banner-nav .nav-tabs {
  margin: 0 auto;
}

.banking-banner-section .banking-banner-nav .nav-tabs li::after, .banking-banner-section .banking-banner-nav .nav-tabs li::before {
  top: 1px;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-filter: FlipV;
          filter: FlipV;
  -ms-filter: "FlipV";
}

.banking-banner-section .banking-banner-nav .nav-tabs li::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.banking-banner-section .banking-banner-nav .nav-tabs li a {
  padding: 11.3px 25px;
}

.banking-banner-section .banking-banner-content {
  background: #faf9f9;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}

.banking-banner-section .banking-banner-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 375px;
  background: radial-gradient(57.63% 615.36% at 50.03% 52.3%, #f37e20 0%, #de5416 100%);
  z-index: 0;
}

.banking-banner-section .banking-banner-content h1 {
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  opacity: 0.5;
  margin: 0 0 30px;
}

.banking-banner-section .banking-banner-content .banking-banner-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-width: 1100px;
  padding-top: 50px;
}

.banking-banner-section .banking-banner-content .left-block,
.banking-banner-section .banking-banner-content .right-block {
  width: 50%;
}

.banking-banner-section .banking-banner-content .left-block {
  position: relative;
}

.banking-banner-section .banking-banner-content .right-block .media {
  position: relative;
}

.banking-banner-section .banking-banner-content .para-title {
  margin-top: 30px;
}

.banking-banner-section .banking-banner-content .para-title p.title {
  margin-bottom: 5px;
}

.banking-banner-section .banking-banner-content .para-title .ic-more {
  margin-top: 10px;
}

.banking-banner-section .banking-banner-content .para-title .ic-btn {
  margin-top: 15px;
  min-width: 155px;
}

.banking-banner-section .banking-banner-content .qrcode-icon {
  position: absolute;
  font-size: 12px;
  background: rgba(234, 100, 33, 0.9);
  padding: 10px 10px 5px;
  width: 210px;
  border-radius: 10px;
  cursor: pointer;
  left: 300px;
  top: 115px;
  text-align: right;
}

.banking-banner-section .banking-banner-content .qrcode-icon img {
  max-width: 70px;
  max-height: 70px;
  position: relative;
  z-index: 1;
  margin: 0 5px;
}

.banking-banner-section .banking-banner-content .qrcode-icon p {
  font-size: 12px;
  position: relative;
  z-index: 1;
  color: #ffede4;
  margin-top: 5px;
  cursor: pointer;
}

.banking-banner-section .banking-banner-content .download-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 360px;
  margin-top: 35px;
}

.banking-banner-section .banking-banner-content .download-link li:not(:first-child) {
  margin: 0 0px 0 30px;
}

.banking-banner-section .banking-banner-content .download-link li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  color: #3d3d3d;
  text-decoration: none;
}

.banking-banner-section .banking-banner-content .download-link li a .media {
  margin-right: 15px;
}

.banking-banner-section .banking-banner-content .download-link li a p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.banking-banner-section .banking-banner-content .download-link li a p.title {
  text-transform: none;
  font-size: 10px;
}

.banking-banner-section.retail-banner-section .banking-banner-content::before {
  height: 448px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .pointed-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  position: absolute;
  color: #fff;
}

.banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::before, .banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::after {
  content: "";
  position: absolute;
}

.banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::after {
  width: 70px;
  height: 1px;
  background: #fff;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block {
  width: 60%;
  max-width: 565px;
  margin-right: auto;
  position: relative;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block .icon {
  position: absolute;
  top: -10px;
  left: 178px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block .qrcode-icon {
  left: 280px;
  top: 135px;
  text-align: right;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text {
  top: 110px;
  left: 308px;
  width: 160px;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text::before {
  left: 65px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text::after {
  left: 3px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block {
  width: 40%;
  max-width: 415px;
  margin-left: auto;
  margin-top: 17px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .icon {
  position: absolute;
  top: -15px;
  left: 150px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .qrcode-icon {
  left: -50px;
  top: 85px;
  text-align: left;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text {
  top: 17%;
  right: calc(100% - 160px);
  width: 145px;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text::before {
  left: 60px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text::after {
  left: 70px;
}

.banking-banner-section.retail-banner-section .banking-banner-content .right-block .para-title {
  margin-left: -110px;
  min-width: 430px;
}

.banking-banner-section.corporate-banner-section .banking-banner-content .left-block {
  width: 58%;
}

.banking-banner-section.corporate-banner-section .banking-banner-content .right-block {
  width: 42%;
  margin-top: 27px;
}

@media screen and (max-width: 1200px) {
  .banking-banner-section.corporate-banner-section .banking-banner-content .right-block {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1100px) {
  .banking-banner-section.retail-banner-section .banking-banner-content::before {
    height: 388px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block {
    width: 60%;
    margin-right: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .icon {
    width: 80px;
    left: 120px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .slick-slider img {
    max-height: 380px;
    max-width: initial;
    margin-right: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text {
    top: 80px;
    left: 220px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .qrcode-icon {
    left: 190px;
    top: 105px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block {
    width: 40%;
    margin-left: auto;
    max-width: 330px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .icon {
    width: 75px;
    left: 38%;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .slick-slider img {
    max-height: 245px;
    max-width: initial;
    margin-left: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text {
    top: 15%;
    right: calc(100% - 140px);
    width: 155px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .qrcode-icon {
    left: -55px;
    top: 65px;
  }
}

@media screen and (max-width: 991px) {
  .banking-banner-section .banking-banner-content .left-block .qrcode-icon,
  .banking-banner-section .banking-banner-content .right-block .qrcode-icon {
    background: transparent;
    z-index: 1;
  }
  .banking-banner-section .banking-banner-content .left-block .qrcode-icon {
    background-image: linear-gradient(45deg, rgba(255, 0, 0, 0) 40%, #df5a18 100%);
  }
  .banking-banner-section .banking-banner-content .right-block .qrcode-icon {
    background-image: linear-gradient(-45deg, rgba(255, 0, 0, 0) 40%, #df5a18 100%);
  }
  .banking-banner-section .banking-banner-content .download-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    width: 100%;
    margin: 35px auto 0;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .qrcode-icon {
    left: 50%;
    top: 105px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .right-block {
    margin-top: 100px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content {
    padding-bottom: 290px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content::before {
    height: 358px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .qrcode-icon,
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .qrcode-icon {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .qrcode-icon {
    left: 190px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .qrcode-icon {
    left: -60px;
    top: 50px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .slick-slider img {
    max-height: 215px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .para-title {
    margin: 180px 0 0;
    min-width: 340px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .banking-banner-section .banking-banner-content h1 {
    font-size: 32px;
    padding-top: 20px;
  }
  .banking-banner-section .banking-banner-content .qrcode {
    display: none;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-inner {
    display: block;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content::before {
    height: 327px;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .left-block,
  .banking-banner-section.corporate-banner-section .banking-banner-content .right-block {
    width: 100%;
    text-align: center;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .left-block .slick-slider img {
    max-height: 290px;
    max-width: initial;
    margin: auto;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .para-title .ic-btn {
    max-width: 475px;
    width: 100%;
  }
  .banking-banner-section.corporate-banner-section .banking-banner-content .right-block {
    margin: 0;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .section-inner {
    padding: 40px 10px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content::before {
    height: 277px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .pointed-text {
    width: 105px;
    font-size: 12px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::after {
    width: 25px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .pointed-text::before {
    width: 8px;
    height: 8px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block {
    width: 60%;
    max-width: 295px;
    margin-right: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .icon {
    width: 50px;
    left: 60px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .slick-slider img {
    max-height: 280px;
    max-width: initial;
    margin-right: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text {
    top: 60px;
    left: 164px;
    width: 105px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text::before {
    left: 28px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block {
    width: 40%;
    max-width: 200px;
    margin-left: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .icon {
    width: 50px;
    left: 70px;
    top: -10px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .slick-slider img {
    max-height: 145px;
    max-width: initial;
    margin-left: auto;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text {
    top: 20px;
    left: -10px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text::after {
    left: 60px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text::before {
    left: 52px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .para-title {
    margin: 124px 0 0 0;
  }
}

@media screen and (min-width: 520px) {
  .banking-banner-section .banking-banner-nav .arrows-tab {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .banking-banner-section.corporate-banner-section .banking-banner-content {
    padding-bottom: 160px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content {
    padding-bottom: 365px;
  }
}

@media screen and (max-width: 480px) {
  .banking-banner-section .banking-banner-content h1 {
    font-size: 24px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content {
    padding-bottom: 385px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content::before {
    height: 222px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block {
    max-width: 220px;
    margin-top: 10px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .icon {
    width: 45px;
    left: 60px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .slick-slider img {
    max-height: 210px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .left-block .pointed-text {
    top: 45px;
    left: 123px;
    padding: 0;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block {
    max-width: 142px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .icon {
    width: 45px;
    left: 50px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .slick-slider img {
    max-height: 105px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .pointed-text {
    top: 10px;
    left: -30px;
  }
  .banking-banner-section.retail-banner-section .banking-banner-content .right-block .para-title {
    margin: 120px 0 0 0;
  }
}

.banking-banner-section.gredient-style .banking-banner-content:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-15%, #f37e20), color-stop(79.13%, #ffffff));
  background: linear-gradient(180deg, #f37e20 -15%, #ffffff 79.13%);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
}

@media screen and (max-width: 991px) {
  .banking-banner-section .banking-banner-nav,
  .banking-banner-section .banking-banner-nav.sticky {
    position: fixed;
    top: 112px;
    width: 100%;
    z-index: 9;
  }
  .notification-enabled .banking-banner-section .banking-banner-nav,
  .notification-enabled .banking-banner-section .banking-banner-nav.sticky {
    top: 172px;
  }
}

/* download-section */
.download-section {
  position: relative;
  z-index: 2;
  margin-top: -90px;
}

.download-section .download-inner {
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -ms-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  -o-box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  box-shadow: 0px 4px 15px rgba(117, 117, 117, 0.06);
  border-radius: 10px;
  max-width: 1042px;
  padding: 30px 40px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.download-section .download-inner.full-width-inner .download-content {
  width: 100%;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.download-section .download-inner.full-width-inner .download-content p {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.download-section .download-inner.full-width-inner .download-content p strong {
  display: contents;
}

.download-section .download-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: calc(100% - 360px);
}

.download-section .download-content p {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.4;
}

.download-section .download-content p strong {
  display: block;
}

.download-section .download-content .ic-btn {
  margin-left: 40px;
}

.download-section .download-content .ic-btn:hover {
  background: #f37e20 !important;
  color: #fff !important;
}

.download-section .download-link {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-left: auto;
  width: 360px;
}

.download-section .download-link li {
  margin: 0 20px;
}

.download-section .download-link li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  color: #3d3d3d;
  text-decoration: none;
}

.download-section .download-link li a .media {
  margin-right: 15px;
}

.download-section .download-link li a p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.download-section .download-link li a p.title {
  text-transform: none;
  font-size: 10px;
}

@media screen and (max-width: 991px) {
  .download-section .download-inner {
    display: block;
  }
  .download-section .download-inner .download-content {
    margin-bottom: 40px;
    width: 100%;
  }
  .download-section .download-link {
    margin: 0 -20px;
  }
}

@media screen and (max-width: 640px) {
  .download-section {
    margin-top: -200px;
  }
  .download-section .section-inner {
    padding-bottom: 20px;
  }
  .download-section .download-inner {
    display: block;
    padding: 42px 20px 20px;
  }
  .download-section .download-inner .download-content {
    display: block;
    text-align: center;
  }
  .download-section .download-inner .download-content p {
    margin-bottom: 30px;
  }
  .download-section .download-inner .download-content p br {
    display: none;
  }
  .download-section .download-inner .download-content p strong {
    display: inline;
  }
  .download-section .download-inner .download-content .ic-btn {
    max-width: 367px;
    margin: 0 auto;
    width: 100%;
  }
  .download-section .download-link {
    display: block;
    margin: 0 auto;
    width: auto;
  }
  .download-section .download-link li {
    margin: 15px;
  }
  .download-section .download-link li a {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
}

/* banking-section */
.banking-section .banking-section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  max-width: 1080px;
  margin-left: auto;
}

.banking-section .banking-section-inner .media,
.banking-section .banking-section-inner .content {
  width: 50%;
}

.banking-section .banking-section-inner .media {
  margin-bottom: -160px;
}

.banking-section .banking-section-inner .banking-bg {
  position: relative;
}

.banking-section .banking-section-inner .banking-bg .banking-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banking-section .banking-section-inner .banking-bg .banking-slider .slide {
  position: absolute;
  display: none;
}

.banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(1) {
  top: -10px;
  right: -60px;
  display: block;
}

.banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(2) {
  top: 0px;
  left: 100px;
}

.banking-section.retail-banking-section .banking-section-inner {
  max-width: 1024px;
  margin: 0 auto 40px;
}

.banking-section.retail-banking-section .banking-section-inner .media {
  margin-bottom: 0;
}

.banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(1) {
  top: -30px;
  left: 120px;
}

.banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(2) {
  top: -59px;
  left: 84px;
}

.banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(3) {
  top: -30px;
  right: 8px;
}

.banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(4) {
  top: 20px;
  right: -40px;
}

.banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(5) {
  top: -10px;
  right: -10px;
}

@media screen and (max-width: 1200px) {
  .banking-section .banking-section-inner .media {
    width: 48%;
  }
  .banking-section .banking-section-inner .banking-bg .banking-slider .slide {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(1) {
    top: -47px;
    right: -60px;
  }
  .banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(2) {
    top: -59px;
    left: 50px;
  }
  .banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(3) {
    top: -30px;
    right: 20px;
  }
  .banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(4) {
    top: 20px;
    right: -60px;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(1) {
    top: -50px;
    left: 40px;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(2) {
    top: -59px;
    left: 50px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(3) {
    top: -30px;
    right: 8px;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(4) {
    top: -9px;
    right: -40px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(3) {
    top: -20px;
    right: -70px;
  }
}

@media screen and (max-width: 767px) {
  .banking-section .banking-section-inner .media,
  .banking-section .banking-section-inner .content {
    width: 100%;
  }
  .banking-section .banking-section-inner .media {
    overflow: hidden;
    margin: 40px 0 -250px;
    text-align: center;
    padding-top: 30px;
  }
  .banking-section .banking-section-inner .media .button-group {
    margin-top: 30px;
  }
  .banking-section .banking-section-inner .media .button-group .ic-btn {
    min-width: 150px;
  }
  .banking-section.retail-banking-section .banking-section-inner {
    margin: 0 auto;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(1) {
    left: -100px;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(2) {
    top: -50px;
    left: -156px;
  }
  .banking-section.retail-banking-section .banking-section-inner .banking-bg .banking-slider .slide:nth-child(4) {
    right: -60px;
  }
}

/* api-section */
.api-section {
  background: #faf9f9;
}

.api-section .section-inner {
  padding-top: 80px;
}

.api-section .api-inner {
  max-width: 1024px;
  margin: 0 auto -110px auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.api-section .api-inner .media,
.api-section .api-inner .content {
  width: 50%;
}

.api-section .api-inner .para-title {
  max-width: 340px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .api-section {
    padding: 200px 0;
  }
  .api-section .api-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .api-section .api-inner .media {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 40px 0 -310px;
    text-align: center;
  }
  .api-section .api-inner .media .ic-more {
    margin-top: 30px;
  }
  .api-section .api-inner .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

/* merchant-partners-section */
.merchant-partners-section {
  position: relative;
}

.merchant-partners-section .section-inner {
  padding-bottom: 0;
}

.merchant-partners-section .merchant-partners-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.merchant-partners-section .merchant-partners-inner .media,
.merchant-partners-section .merchant-partners-inner .content {
  width: 50%;
  padding: 0 10px;
}

.merchant-partners-section .merchant-partners-inner .para-title {
  max-width: 385px;
}

.merchant-partners-section .merchant-partners-inner .media {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .merchant-partners-section {
    padding: 200px 0 50px;
  }
  .merchant-partners-section .merchant-partners-inner {
    display: block;
  }
  .merchant-partners-section .merchant-partners-inner .media,
  .merchant-partners-section .merchant-partners-inner .content {
    width: 100%;
  }
  .merchant-partners-section .merchant-partners-inner .media {
    text-align: center;
    margin-top: 50px;
  }
  .merchant-partners-section .merchant-partners-inner .media .ic-more {
    margin-top: 30px;
  }
}

/* digital-payment-section */
.digital-payment-section .section-inner {
  padding: 0 20px;
}

.digital-payment-section .digital-payment-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.digital-payment-section .digital-payment-inner .left-block,
.digital-payment-section .digital-payment-inner .right-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.digital-payment-section .digital-payment-inner .left-block {
  width: 47%;
  border: 1px solid #dedede;
}

.digital-payment-section .digital-payment-inner .left-block .para-title {
  max-width: 240px;
}

.digital-payment-section .digital-payment-inner .right-block {
  position: relative;
  width: 53%;
  max-width: 660px;
  margin-top: 55px;
}

.digital-payment-section .digital-payment-inner .right-block .content {
  position: absolute;
  top: 50px;
  left: 35px;
}

.digital-payment-section .digital-payment-inner .right-block .content .para-title {
  max-width: 310px;
}

@media screen and (max-width: 1025px) {
  .digital-payment-section .digital-payment-inner .left-block,
  .digital-payment-section .digital-payment-inner .right-block {
    width: 100%;
  }
  .digital-payment-section .digital-payment-inner .right-block {
    max-width: 100%;
    margin: 0;
    background: #f4f4f4;
  }
  .digital-payment-section .digital-payment-inner .right-block .media {
    width: 100%;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .digital-payment-section .para-title {
    text-align: left;
  }
  .digital-payment-section .digital-payment-inner .left-block {
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
  }
  .digital-payment-section .digital-payment-inner .left-block .media {
    width: 40%;
  }
  .digital-payment-section .digital-payment-inner .left-block .content {
    width: 60%;
    padding: 15px 0;
  }
  .digital-payment-section .digital-payment-inner .right-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .digital-payment-section .digital-payment-inner .right-block .content {
    position: relative;
    top: 15px;
    left: 15px;
  }
}

/* digital-chain-section */
.digital-chain-section .section-inner {
  padding-top: 0;
}

.digital-chain-section .digital-chain-inner {
  max-width: 910px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.digital-chain-section .digital-chain-inner .media,
.digital-chain-section .digital-chain-inner .content {
  width: 50%;
  padding: 0 10px;
}

.digital-chain-section .digital-chain-inner .media {
  margin-bottom: -135px;
}

.digital-chain-section .digital-chain-inner .para-title {
  max-width: 365px;
  margin-left: auto;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .digital-chain-section .digital-chain-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .digital-chain-section .digital-chain-inner .media {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    margin: 30px 0 0 0;
    padding: 0;
  }
  .digital-chain-section .digital-chain-inner .media img {
    margin-bottom: 40px;
  }
  .digital-chain-section .digital-chain-inner .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 0;
  }
}

/* banking-card-section */
.banking-card-section {
  background: #faf9f9;
  padding-top: 85px;
}

.banking-card-section h4 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
}

.banking-card-section .card-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px -20px;
}

.banking-card-section .card-lists .card-list {
  width: calc(33% - 28px);
  margin: 0 15px;
}

.banking-card-section .card-lists .card-list .card-item {
  background: #fff;
  border: 1px solid #ece9e9;
  border-radius: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
  padding: 17px 20px 17px 15px;
}

.banking-card-section .card-lists .card-list .card-item .media {
  max-width: 135px;
}

.banking-card-section .card-lists .card-list .card-item .media img {
  border-radius: 5px;
}

.banking-card-section .card-lists .card-list .card-item .content {
  position: relative;
  width: calc(100% - 150px);
}

.banking-card-section .card-lists .card-list .card-item h5 {
  font-size: 14px;
  font-weight: 700;
}

.banking-card-section .card-lists .card-list .card-item p {
  font-size: 13px;
  max-height: 57px;
  overflow: hidden;
}

.banking-card-section .card-lists .card-list .card-item a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
}

.banking-card-section.retail-banking-card-section {
  padding-top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(254, 254, 254, 0)), color-stop(88%, #f9f9f9));
  background: linear-gradient(180deg, rgba(254, 254, 254, 0) 12%, #f9f9f9 88%);
}

@media screen and (max-width: 1200px) {
  .banking-card-section .card-lists .card-list .card-item .media {
    max-width: 100px;
    width: 100%;
  }
  .banking-card-section .card-lists .card-list .card-item .content {
    width: calc(100% - 115px);
  }
  .banking-card-section .card-lists .card-list .card-item a {
    position: relative;
    margin-top: 8px;
  }
}

@media screen and (max-width: 1023px) {
  .banking-card-section {
    background: #fff;
  }
  .banking-card-section .card-lists .card-list .card-item .media {
    max-width: 185px;
    width: 100%;
  }
  .banking-card-section .card-lists .card-list .card-item .content {
    width: calc(100% - 185px);
  }
  .banking-card-section .card-lists .slick-dots {
    margin: 35px auto 0;
    text-align: center;
    position: relative;
    padding: 0;
  }
  .banking-card-section.retail-banking-card-section {
    background: #fff;
  }
}

@media screen and (max-width: 767px) {
  .banking-card-section {
    padding-top: 0;
  }
  .banking-card-section .card-lists .card-list .card-item .media {
    width: 40%;
  }
  .banking-card-section .card-lists .card-list .card-item .content {
    width: 60%;
  }
}

/* social-box-section */
.social-box-section h4 {
  margin-bottom: 20px;
}

.social-box-section .social-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.social-box-section .social-box .a2a_kit {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.social-box-section .social-box .social-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.social-box-section .social-box .social-group .sb-text {
  margin: 0 5px;
}

.social-box-section .social-box .social-group .sb-text.ln-txt {
  position: relative;
  top: -5px;
}

.social-box-section .social-box .social-group .sb-text.ln-txt iframe {
  height: 25px !important;
}

/* video-section */
@media screen and (max-width: 767px) {
  .video-section iframe {
    height: 325px;
  }
}

/* banking-tagline */
.banking-tagline .section-inner {
  padding: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.banking-tagline .section-inner .media {
  max-width: 190px;
  margin-right: 30px;
  width: 100%;
}

.banking-tagline .section-inner .content {
  max-width: 380px;
}

.banking-tagline .section-inner .content .ic-more {
  margin-top: 5px;
  cursor: pointer;
}

.banking-tagline.text-with-btn .section-inner .media {
  max-width: 185px;
  margin-right: 10px;
}

.banking-tagline.text-with-btn .section-inner .content {
  max-width: 245px;
  padding-right: 8px;
}

.banking-tagline.text-with-btn .section-inner .content p {
  font-size: 14px;
  line-height: 138%;
  color: #6e6e6e;
}

.banking-tagline.text-with-btn .section-inner .bg-red {
  background: rgba(241, 110, 37, 0.8);
}

.banking-tagline.text-with-btn .section-inner .bg-red .btn {
  color: #fcfcfc;
  padding: 26px 19px;
  font-size: 13px;
  line-height: 140.62%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .banking-tagline .section-inner {
    padding: 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .banking-tagline .section-inner .media {
    max-width: 190px;
    margin-right: 30px;
    width: 100%;
  }
  .banking-tagline.text-with-btn .section-inner .media {
    max-width: 174px;
  }
  .banking-tagline.text-with-btn .section-inner .content {
    max-width: 234px;
  }
  .banking-tagline.text-with-btn .section-inner .content p {
    font-size: 13px;
    line-height: 138%;
    color: #6e6e6e;
  }
  .banking-tagline.text-with-btn .section-inner .bg-red {
    background: rgba(241, 110, 37, 0.8);
  }
  .banking-tagline.text-with-btn .section-inner .bg-red .btn {
    color: #fcfcfc;
    padding: 25px 12px;
    font-size: 13px;
  }
}

/* whatsapp-section */
.whatsapp-section {
  position: relative;
}

.whatsapp-section .section-inner {
  padding-bottom: 0;
}

.whatsapp-section .whatsapp-section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.whatsapp-section .whatsapp-section-inner .media {
  width: 55%;
  text-align: right;
}

.whatsapp-section .whatsapp-section-inner .content {
  width: 45%;
}

.whatsapp-section .whatsapp-section-inner .content .para-title {
  max-width: 430px;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp {
  margin-top: 15px;
  border: 1px solid rgba(64, 64, 64, 0.3);
  padding: 12px 30px;
  line-height: normal;
  border-radius: 30px;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form input[type="number"] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  border: none;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form input::-webkit-outer-spin-button,
.whatsapp-section .whatsapp-section-inner .content .whatsapp form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form .error {
  position: absolute;
  font-size: 10px;
  color: red;
  margin-bottom: -78px;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form .icon {
  margin-right: 5px;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form img {
  border: none;
}

.whatsapp-section .whatsapp-section-inner .content .whatsapp form .whatsapp-submit,
.whatsapp-section .whatsapp-section-inner .content .whatsapp form .whatsapp-submit-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-weight: bold;
  font-size: 12px;
  color: #f37e20;
  border-left: 1px solid rgba(64, 64, 64, 0.3);
  padding-left: 35px;
  text-transform: initial;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .whatsapp-section .whatsapp-section-inner .media {
    width: 45%;
  }
  .whatsapp-section .whatsapp-section-inner .content {
    width: 55%;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .whatsapp-section .whatsapp-section-inner .media,
  .whatsapp-section .whatsapp-section-inner .content {
    width: 100%;
  }
  .whatsapp-section .whatsapp-section-inner .media {
    display: none;
  }
  .whatsapp-section .whatsapp-section-inner .content .para-title {
    max-width: 490px;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp {
    padding: 35px 20px;
    border-radius: 10px;
    margin-top: 40px;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    font-size: 20px;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form .error {
    margin-bottom: 0;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form .icon {
    width: 20px;
    margin-right: 15px;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form .num {
    width: 200px;
  }
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form .whatsapp-submit,
  .whatsapp-section .whatsapp-section-inner .content .whatsapp form .whatsapp-submit-link {
    border: none;
    width: 100%;
    padding: 0;
    font-size: 16px;
    margin-top: 40px;
    text-transform: uppercase;
  }
}

/*App download form*/
.app-download-form .form-wrapper {
  margin-top: 15px;
  border: 1px solid rgba(64, 64, 64, 0.3);
  padding: 12px 30px;
  line-height: normal;
  border-radius: 30px;
}

.app-download-form .form-wrapper form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.app-download-form .form-wrapper form input[type="number"] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  border: none;
}

.app-download-form .form-wrapper form input {
  width: calc(100% - 125px);
}

.app-download-form .form-wrapper form input::-webkit-outer-spin-button,
.app-download-form .form-wrapper form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.app-download-form .form-wrapper form .error {
  position: absolute;
  font-size: 10px;
  color: red;
  margin-bottom: -78px;
}

.app-download-form .form-wrapper form .icon {
  margin-right: 10px;
  width: 23px;
}

.app-download-form .form-wrapper form .whatsapp-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-weight: bold;
  font-size: 12px;
  color: #f37e20;
  padding-left: 10px;
  width: 80px;
}

@media screen and (max-width: 767px) {
  .app-download-form .form-wrapper {
    padding: 24px 45px;
    border-radius: 10px;
    margin-top: 20px;
  }
  .app-download-form .form-wrapper form {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    font-size: 20px;
  }
  .app-download-form .form-wrapper form .error {
    margin-bottom: 20px;
  }
  .app-download-form .form-wrapper form .icon {
    width: 20px;
    margin-right: 15px;
  }
  .app-download-form .form-wrapper form .num {
    width: 200px;
  }
  .app-download-form .form-wrapper form .whatsapp-submit {
    border: none;
    width: 100%;
    padding: 0;
    font-size: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #adadad;
    text-transform: uppercase;
  }
}

.app-download-form .iframe-whatsup {
  border: none;
  margin: 0 -10px -10px;
}

@media screen and (max-width: 767px) {
  .app-download-form .iframe-whatsup table {
    margin: 0 auto;
  }
}

/* voice-banking-section  */
.voice-banking-section .section-inner {
  padding-top: 0;
}

.voice-banking-section .voice-banking-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.voice-banking-section .voice-banking-inner .media {
  width: 49%;
}

.voice-banking-section .voice-banking-inner .content {
  width: 51%;
  position: relative;
  max-width: 616px;
}

.voice-banking-section .voice-banking-inner .content .desc {
  position: absolute;
  top: 50px;
  left: 45px;
  z-index: 1;
}

.voice-banking-section .voice-banking-inner .content .alexa-txt {
  position: absolute;
  left: 75px;
  top: 240px;
  max-width: 170px;
  z-index: 1;
}

.voice-banking-section .voice-banking-inner .content .alexa-txt p:last-child {
  color: #808080;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .voice-banking-section .voice-banking-inner .content .desc {
    top: 20px;
    left: 45px;
  }
  .voice-banking-section .voice-banking-inner .content .desc .ic-more {
    margin-top: 10px;
  }
  .voice-banking-section .voice-banking-inner .content .alexa-txt {
    left: 65px;
    top: 210px;
  }
}

@media screen and (max-width: 991px) {
  .voice-banking-section .section-inner {
    padding: 0;
  }
  .voice-banking-section .voice-banking-inner .media,
  .voice-banking-section .voice-banking-inner .content {
    width: 100%;
  }
  .voice-banking-section .voice-banking-inner .media img {
    width: 100%;
  }
  .voice-banking-section .voice-banking-inner .content {
    background: #f2f2f2;
    max-width: 100%;
    text-align: right;
  }
  .voice-banking-section .voice-banking-inner .content .bg {
    overflow: hidden;
  }
  .voice-banking-section .voice-banking-inner .content img {
    position: relative;
    right: -30px;
  }
  .voice-banking-section .voice-banking-inner .content .desc,
  .voice-banking-section .voice-banking-inner .content .alexa-txt {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .voice-banking-section .voice-banking-inner .para-title {
    text-align: left;
  }
  .voice-banking-section .voice-banking-inner .content .desc {
    left: 25px;
  }
  .voice-banking-section .voice-banking-inner .content .alexa-txt {
    left: 40px;
  }
}

@media screen and (max-width: 640px) {
  .voice-banking-section .voice-banking-inner .content {
    padding-top: 100px;
    margin-bottom: 20px;
    min-height: 400px;
  }
}

/* qrcode-notification-alert */
.qrcode-notification-alert {
  display: none;
  position: fixed;
  top: 200px;
  z-index: 2;
  background: #f37e20;
  width: 200px;
  padding: 0;
  border: 3px solid #f37e20;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 0px 5.91262px 14.3592px rgba(117, 117, 117, 0.28);
  -ms-box-shadow: 0px 5.91262px 14.3592px rgba(117, 117, 117, 0.28);
  -o-box-shadow: 0px 5.91262px 14.3592px rgba(117, 117, 117, 0.28);
  box-shadow: 0px 5.91262px 14.3592px rgba(117, 117, 117, 0.28);
}

.qrcode-notification-alert .qrcode {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.qrcode-notification-alert .qrcode .media {
  background: #fff;
  padding: 5px 10px;
  width: 100px;
  text-align: right;
}

.qrcode-notification-alert .qrcode .media img {
  max-height: 65px;
  max-width: 65px;
}

.qrcode-notification-alert .qrcode .content {
  width: calc(100% - 100px);
}

.qrcode-notification-alert .qrcode .content p {
  font-size: 12px;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .qrcode-notification-alert {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .qrcode-notification-alert.qr-code-show-mob {
    display: block !important;
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .qrcode-notification-alert.qr-code-show-mob .qrcode {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .qrcode-notification-alert.qr-code-show-mob .qrcode .content {
    width: calc(100% - 60px);
  }
}

.imobile-banner-section .section-inner {
  padding-top: 80px;
  padding-bottom: 0;
}

.imobile-banner-section .section-inner .tab-sticky-enable.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.imobile-banner-section .banking-banner-content {
  background: #fff;
  padding-bottom: 0;
}

.imobile-banner-section .banking-banner-content .heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  position: relative;
  max-width: 290px;
  margin: 0 auto;
}

.imobile-banner-section .banking-banner-content .heading img {
  margin: 0 !important;
}

.imobile-banner-section .banking-banner-content .heading h2 {
  color: #fff;
  margin: 0 0 0 10px;
}

.imobile-banner-section .banking-banner-content h1 {
  width: 100%;
  margin: 10px 0 40px;
}

.imobile-banner-section .banking-banner-content::before {
  height: 230px;
}

.imobile-banner-section .banking-banner-content .left-block {
  width: 50%;
}

.imobile-banner-section .banking-banner-content .left-block img {
  margin: 0 auto;
}

.imobile-banner-section .banking-banner-content .form-section {
  max-width: 438px;
  margin-top: 15px;
}

.imobile-banner-section .banking-banner-content .form-section h3 {
  font-size: 23px;
  line-height: 130%;
  text-transform: uppercase;
  font-weight: normal;
}

.imobile-banner-section .banking-banner-content .form-section h3 strong {
  font-weight: bold;
}

.imobile-banner-section .banking-banner-content .form-section p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #6d6b6b;
  margin: 10px 0;
}

.imobile-banner-section .banking-banner-content .form-section p.note {
  margin-top: 25px;
}

.imobile-banner-section .banking-banner-content .right-block {
  width: 50%;
  margin-left: -50px;
}

.imobile-banner-section .banking-banner-content .right-block > .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode {
  width: 210px;
  margin-right: 25px;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon {
  position: static;
  background: #fff;
  border: 1px solid #c8c8c8;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon p {
  color: #231d1f;
  margin: 0;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon .media,
.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon .content {
  width: 50%;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon .content {
  text-align: left;
  padding: 10px 0 0 10px;
}

.imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon .content p {
  font-size: 13px;
}

.imobile-banner-section .banking-banner-content .right-block .download-link {
  width: 210px;
  border: 1px solid #c8c8c8;
  padding: 10px 40px;
  border-radius: 10px;
  display: block;
  margin-top: 0;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li:not(:first-child) {
  margin: 0 0px 0 0px;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li:last-child {
  border-top: 1px solid #adadad;
  padding-top: 10px;
  margin-top: 10px;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li.hide-link ~ li:last-of-type {
  border-top: none;
  padding: 0;
  margin: 0;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  color: #3d3d3d;
  text-decoration: none;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li a .media {
  margin-right: 10px;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li a .media img {
  max-width: 25px;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li a p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.imobile-banner-section .banking-banner-content .right-block .download-link li a p.title {
  text-transform: none;
  font-size: 10px;
}

.imobile-banner-section .banking-banner-content .right-block.insta-right .content .d-view {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .imobile-banner-section .banking-banner-content .right-block.insta-right .content .d-view {
    margin-bottom: 20px;
  }
}

.imobile-banner-section .banking-banner-content .right-block.insta-right .content .d-view h1 {
  color: #3d3d3d;
  opacity: 0.9;
}

@media screen and (max-width: 1200px) {
  .imobile-banner-section .banking-banner-content .left-block {
    width: 44%;
  }
  .imobile-banner-section .banking-banner-content .right-block {
    width: 56%;
  }
}

@media screen and (max-width: 991px) {
  .imobile-banner-section .banking-banner-content h1 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .imobile-banner-section .banking-banner-content .right-block > .content {
    margin-top: 0;
  }
  .imobile-banner-section .banking-banner-content .right-block .qrcode {
    width: 170px;
  }
  .imobile-banner-section .banking-banner-content .right-block .qrcode .qrcode-icon {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .imobile-banner-section .banking-banner-content .right-block .download-link {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    width: 165px;
    padding: 15px 20px;
  }
}

@media screen and (max-width: 767px) {
  .imobile-banner-section .section-inner {
    padding-top: 40px;
  }
  .imobile-banner-section .section-inner .tab-sticky-enable {
    margin-left: 0px;
    position: fixed;
    width: 95%;
    z-index: 1000;
  }
  .imobile-banner-section .banking-banner-content::before {
    height: 57%;
    max-height: 455px;
  }
  .imobile-banner-section .banking-banner-content h1 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  .imobile-banner-section .banking-banner-content .heading h2 {
    font-size: 32px;
  }
  .imobile-banner-section .banking-banner-content .form-section {
    max-width: 100%;
    margin-top: 40px;
  }
  .imobile-banner-section .banking-banner-content .form-section h3 {
    font-size: 26px;
    line-height: 130%;
    text-align: center;
  }
  .imobile-banner-section .banking-banner-content .form-section p {
    font-weight: 300;
    font-size: 22px;
    line-height: 33px;
    color: #7d7d7d;
    margin: 15px 0;
    text-align: center;
  }
  .imobile-banner-section .banking-banner-content .form-section p.note {
    margin-top: 25px;
  }
  .imobile-banner-section .banking-banner-content .banking-banner-inner .left-block,
  .imobile-banner-section .banking-banner-content .banking-banner-inner .right-block {
    width: 100%;
    margin: 0;
  }
  .imobile-banner-section .banking-banner-content .banking-banner-inner .right-block > .content {
    margin-top: 0;
  }
  .imobile-banner-section .banking-banner-content .banking-banner-inner .right-block .download-link {
    -webkit-transform: none;
            transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .imobile-banner-section .banking-banner-content .banking-banner-inner .right-block .download-link li a {
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
}

.imobile-image-content-section .left-image-content .section-inner,
.imobile-image-content-section .right-image-content .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
}

.imobile-image-content-section .left-image-content .section-inner .media,
.imobile-image-content-section .left-image-content .section-inner .content,
.imobile-image-content-section .right-image-content .section-inner .media,
.imobile-image-content-section .right-image-content .section-inner .content {
  width: 50%;
}

.imobile-image-content-section .left-image-content .section-inner .media,
.imobile-image-content-section .right-image-content .section-inner .media {
  margin-bottom: -180px;
}

.imobile-image-content-section .left-image-content .section-inner .content,
.imobile-image-content-section .right-image-content .section-inner .content {
  max-width: 555px;
}

.imobile-image-content-section .left-image-content .section-inner .content .section-title,
.imobile-image-content-section .right-image-content .section-inner .content .section-title {
  text-align: left;
  font-size: 23px;
  line-height: 1.3;
}

.imobile-image-content-section .left-image-content .section-inner .content p,
.imobile-image-content-section .right-image-content .section-inner .content p {
  font-weight: 300px;
  color: #7d7d7d;
}

.imobile-image-content-section .left-image-content .section-inner .content ul,
.imobile-image-content-section .right-image-content .section-inner .content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 20px;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li,
.imobile-image-content-section .right-image-content .section-inner .content ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li a,
.imobile-image-content-section .right-image-content .section-inner .content ul li a {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 19px;
  text-transform: inherit;
  text-decoration: none;
  font-weight: normal;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li a:after,
.imobile-image-content-section .right-image-content .section-inner .content ul li a:after {
  background: url("../images/icons/more-grey.png") no-repeat;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li a:hover,
.imobile-image-content-section .right-image-content .section-inner .content ul li a:hover {
  color: #f37e20;
  text-decoration: none !important;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li a:hover:after,
.imobile-image-content-section .right-image-content .section-inner .content ul li a:hover:after {
  background: url("../images/icons/more.png") no-repeat;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li:not(:last-child),
.imobile-image-content-section .right-image-content .section-inner .content ul li:not(:last-child) {
  margin-bottom: 25px;
}

.imobile-image-content-section .left-image-content .section-inner .content ul li::before,
.imobile-image-content-section .right-image-content .section-inner .content ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f37e20;
  left: 0;
  top: 10px;
}

.imobile-image-content-section .left-image-content .section-inner .content ul.list-50 li,
.imobile-image-content-section .right-image-content .section-inner .content ul.list-50 li {
  width: 50%;
}

.imobile-image-content-section .left-image-content {
  padding-top: 80px;
}

.imobile-image-content-section .left-image-content .content {
  margin-right: auto;
}

.imobile-image-content-section .right-image-content {
  position: relative;
  padding-top: 80px;
}

.imobile-image-content-section .right-image-content .content {
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .imobile-image-content-section .left-image-content .section-inner .media,
  .imobile-image-content-section .right-image-content .section-inner .media {
    margin-bottom: -130px;
  }
}

@media screen and (max-width: 767px) {
  .imobile-image-content-section .left-image-content .section-inner,
  .imobile-image-content-section .right-image-content .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .imobile-image-content-section .left-image-content .section-inner .media,
  .imobile-image-content-section .left-image-content .section-inner .content,
  .imobile-image-content-section .right-image-content .section-inner .media,
  .imobile-image-content-section .right-image-content .section-inner .content {
    width: 100%;
    max-width: 100%;
  }
  .imobile-image-content-section .left-image-content .section-inner .media,
  .imobile-image-content-section .right-image-content .section-inner .media {
    margin-bottom: -130px;
    margin-top: 30px;
  }
  .imobile-image-content-section .left-image-content .section-inner .content ul.list-50 li,
  .imobile-image-content-section .right-image-content .section-inner .content ul.list-50 li {
    width: 100%;
  }
  .imobile-image-content-section .left-image-content .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* play-video-section  */
.iplay-video-section {
  padding-top: 180px;
}

@media screen and (max-width: 1200px) {
  .iplay-video-section {
    padding-top: 130px;
  }
}

/* important-service-section */
.important-service-section {
  padding-top: 80px;
}

.important-service-section .section-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.important-service-section .right-image-content {
  position: relative;
}

.important-service-section .right-image-content:before {
  content: "";
  width: 100%;
  height: 263px;
  display: block;
  background: #faf9f9;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.important-service-section .right-image-content .section-inner {
  max-width: 1024px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.important-service-section .right-image-content .section-inner .content {
  max-width: 525px;
}

.important-service-section .important-link-inner {
  background: radial-gradient(63.5% 677.97% at 62.18% 52.3%, #f37e20 0%, #da4008 100%);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  padding: 0px;
  margin-bottom: -90px;
  z-index: 1;
  position: relative;
  padding: 0 30px;
}

.important-service-section .important-link-inner .important-link {
  padding: 0;
  min-height: 120px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  position: relative;
  width: 100%;
  height: 180px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*&:not(:last-child) {
				border-right: 1px solid rgba(254, 254, 254, 0.2);
			}*/
}

.important-service-section .important-link-inner .important-link:not(:last-child):after {
  content: "";
  border-left: 1px solid rgba(254, 254, 254, 0.2);
  width: auto;
  left: auto;
  position: absolute;
  height: 60%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.important-service-section .important-link-inner .important-link:hover {
  background: #f37e20;
}

.important-service-section .important-link-inner .important-link p {
  color: #fff;
  max-width: 200px;
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.3;
}

.important-service-section .important-link-inner.important-link-slider {
  display: block;
}

.important-service-section .important-link-inner.important-link-slider .slick-list .slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 50px;
}

.important-service-section .important-link-inner.important-link-slider .important-link:nth-child(3n):after {
  display: inline-block;
}

.important-service-section .important-link-inner.important-link-slider .slick-dots {
  bottom: -25px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .important-service-section .important-link-inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-bottom: 0;
  }
  .important-service-section .important-link-inner .important-link {
    width: 33%;
    min-height: 128px;
    height: 128px;
    padding: 0 20px;
  }
  .important-service-section .important-link-inner .important-link:nth-child(3n) {
    border-right: none;
  }
  .important-service-section .important-link-inner .important-link:nth-child(3n):after {
    display: none;
  }
  .important-service-section .important-link-inner.important-link-slider .slick-list .slick-slide {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .important-service-section .important-link-inner .important-link p {
    font-size: 12px;
  }
  .important-service-section .right-image-content:before {
    height: 100%;
  }
  .important-service-section .right-image-content .section-inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-top: 40px;
  }
  .important-service-section .right-image-content .section-inner .content {
    max-width: 100%;
    text-align: center;
  }
  .important-service-section .right-image-content .section-inner .content .section-title {
    text-align: center !important;
  }
  .important-service-section .right-image-content .section-inner .media {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .important-service-section .right-image-content .section-inner .media img {
    max-width: 250px;
  }
}

@media screen and (max-width: 480px) {
  .important-service-section .important-link-inner {
    padding: 0 10px;
  }
  .important-service-section .important-link-inner .important-link p {
    font-size: 13px;
  }
}

/* whatsnew-section */
.whatsnew-section .section-inner {
  padding-top: 120px;
}

.whatsnew-section .whatsnew-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.whatsnew-section .whatsnew-inner .whatsnew-media,
.whatsnew-section .whatsnew-inner .whatsnew-content {
  width: 50%;
}

.whatsnew-section .whatsnew-inner .whatsnew-media {
  position: relative;
}

.whatsnew-section .whatsnew-inner .whatsnew-media .banking-tagline {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.whatsnew-section .whatsnew-inner .whatsnew-media .banking-tagline .section-inner {
  padding: 12px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  text-align: center;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .bg {
  position: absolute;
  top: -51px;
  left: 0;
  z-index: 0;
  width: 100%;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .bg img {
  width: 100%;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider {
  padding: 0 30px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider img {
  margin: 30px auto 25px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider .slick-arrow {
  width: 57px;
  height: 57px;
  z-index: 1;
  top: calc(50% - 28.5px);
}

.whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider .slick-arrow.slick-prev {
  background: #f37e20 url("../images/white_left_arrow.svg") no-repeat center;
  background-size: 10px;
  background-position: 29px 19px;
  border: none;
  left: -25px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider .slick-arrow.slick-next {
  background: #f37e20 url("../images/white_left_arrow.svg") no-repeat center;
  background-size: 10px;
  background-position: 29px 19px;
  border: none;
  right: -25px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content h4,
.whatsnew-section .whatsnew-inner .whatsnew-content p {
  position: relative;
  color: #fff;
  margin: 0 auto;
  max-width: 305px;
}

.whatsnew-section .whatsnew-inner .whatsnew-content p {
  font-size: 22px;
  line-height: 138%;
  opacity: 0.8;
}

.whatsnew-section .whatsnew-inner .whatsnew-content .ic-btn {
  min-width: 175px;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

.whatsnew-section .whatsnew-inner .slick-dots {
  position: static;
  margin-top: 30px;
}

.whatsnew-section.ib-whatsnew-section {
  position: relative;
  z-index: 1;
}

.whatsnew-section.ib-whatsnew-section .section-inner {
  padding-top: 75px;
}

.whatsnew-section.ib-whatsnew-section .section-title {
  font-size: 22px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .whatsnew-section .whatsnew-inner .whatsnew-content {
    padding-top: 20px;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-content .whatsnew-slider img {
    margin: 15px auto;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-content .ic-btn {
    margin-top: 15px;
  }
  .whatsnew-section .whatsnew-inner .slick-dots {
    margin-top: 20px;
  }
}

@media screen and (max-width: 992px) {
  .whatsnew-section .whatsnew-inner {
    display: block;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-media,
  .whatsnew-section .whatsnew-inner .whatsnew-content {
    width: 100%;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-media img {
    width: 100%;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-content {
    height: 420px;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-content .bg {
    top: 0;
    background: #ad1e23;
    height: 420px;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-content .bg img {
    width: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .whatsnew-section .whatsnew-inner .slick-dots {
    text-align: center;
  }
  .whatsnew-section.ib-whatsnew-section .section-inner {
    padding-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .whatsnew-section .whatsnew-inner .whatsnew-media {
    position: relative;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-media .openvideo img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    width: 100%;
  }
  .whatsnew-section .whatsnew-inner .whatsnew-media .banking-tagline {
    position: relative;
  }
}

/* service-section */
.service-section .service-card-slider {
  margin: 0 -15px;
}

.service-section .service-card-slider .slick-list {
  padding-bottom: 60px;
}

.service-section .service-card-slider .slick-arrow {
  border: none !important;
  top: calc(50% - 40px);
}

.service-section .service-card-slider .slick-arrow.slick-prev {
  left: -30px;
}

.service-section .service-card-slider .slick-arrow.slick-next {
  right: -30px;
}

.service-section .service-card {
  padding: 0 15px;
}

.service-section .service-card .card-inner {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.service-section .service-card .card-inner .media {
  overflow: hidden;
}

.service-section .service-card .card-inner .media img {
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 100%;
}

.service-section .service-card .card-inner .content {
  padding: 25px 35px;
  border-radius: 0 0 10px 10px;
}

.service-section .service-card .card-inner .content .card-title {
  display: block;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.38;
  color: #4b4b4b;
  margin-bottom: 15px;
  outline: none;
  max-width: 265px;
  height: 50px;
  overflow: hidden;
}

.service-section .service-card .card-inner .content .card-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-top: 1px solid rgba(97, 61, 61, 0.2);
  padding-top: 15px;
}

.service-section .service-card .card-inner .content .card-bottom .date-readtime {
  font-size: 12px;
  color: #666666;
}

.service-section .service-card .card-inner .content .card-bottom .share-content {
  right: 0;
}

.service-section .service-card .card-inner:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
  .service-section .slick-arrow {
    display: none !important;
  }
  .service-section .slick-dots {
    text-align: center;
  }
}

/* security-steps-section */
.security-steps-section .security-steps-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.security-steps-section .security-content {
  position: relative;
}

.security-steps-section .security-content::before {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 200px;
  opacity: 0.5;
  border-right: 1px dashed #3d3d3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.security-steps-section .security-content .lists .list {
  margin: 0 27px;
}

.security-steps-section .security-content,
.security-steps-section .steps-content {
  width: 50%;
  padding: 0 90px;
}

.security-steps-section .security-content h4,
.security-steps-section .security-content p,
.security-steps-section .steps-content h4,
.security-steps-section .steps-content p {
  text-align: center;
}

.security-steps-section .security-content .lists,
.security-steps-section .steps-content .lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  margin-top: 30px;
}

.security-steps-section .security-content .lists .list,
.security-steps-section .steps-content .lists .list {
  width: 105px;
  margin: 0 20px;
}

.security-steps-section .security-content .lists .list .icon,
.security-steps-section .steps-content .lists .list .icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  width: 105px;
  height: 101px;
  background: url("../images/digital-banking/gradient-border.png") no-repeat;
  margin: 0 auto 20px;
}

.security-steps-section .security-content .lists .list p,
.security-steps-section .steps-content .lists .list p {
  font-weight: 700;
  font-size: 13px;
}

@media screen and (max-width: 991px) {
  .security-steps-section .security-steps-inner {
    display: block;
  }
  .security-steps-section .security-steps-inner .security-content,
  .security-steps-section .security-steps-inner .steps-content {
    width: 100%;
    padding: 0;
  }
  .security-steps-section .security-steps-inner .security-content::before {
    display: none;
  }
  .security-steps-section .security-steps-inner .security-content::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 423px;
    height: 1px;
    opacity: 0.5;
    margin: 40px auto;
    border-bottom: 1px dashed #3d3d3d;
  }
}

@media screen and (max-width: 640px) {
  .security-steps-section .security-content .lists .list,
  .security-steps-section .steps-content .lists .list {
    width: 75px;
  }
  .security-steps-section .security-content .lists .list .icon,
  .security-steps-section .steps-content .lists .list .icon {
    width: 85px;
    height: 85px;
    background-size: 100%;
    margin: 0 auto 10px;
  }
  .security-steps-section .security-content .lists .list {
    width: 105px;
  }
}

/* download-highlight-section */
.download-highlight-section .download-highlight-inner {
  position: relative;
  background: #3d3d3d;
  color: #fff;
  padding: 50px 20px;
  margin-bottom: -130px;
}

.download-highlight-section .download-highlight-lists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.download-highlight-section .download-highlight-lists .download-highlight-list {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 33%;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.download-highlight-section .download-highlight-lists .download-highlight-list:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: rgba(210, 210, 210, 0.6);
  right: 0;
  top: calc(50% - 25px);
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content {
  margin-left: 20px;
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content h3 {
  color: #fff;
  margin-bottom: 5px;
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content p {
  font-size: 12px;
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review {
  text-align: left;
  margin-top: 7px;
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span {
  display: inline-block;
  cursor: pointer;
  background-image: url("../images/saving-account/comparing-cards/orange-star-empty.png");
  background-repeat: no-repeat;
  overflow: hidden;
  width: 18px;
  height: 17px;
  text-indent: -9999999px;
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span.checked {
  background-image: url("../images/saving-account/comparing-cards/orange-star-fill.svg");
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span.halffill {
  background-image: url("../images/saving-account/comparing-cards/orange-star-half-fill.png");
}

.download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span:not(:last-child) {
  margin-right: 5px;
}

@media screen and (max-width: 991px) {
  .download-highlight-section .section-inner {
    padding-top: 0;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span {
    width: 15px;
    height: 15px;
    background-size: 100%;
  }
}

@media screen and (max-width: 767px) {
  .download-highlight-section .download-highlight-lists {
    max-width: 270px;
    margin: 0 auto;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list {
    width: 100%;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list:not(:last-child) {
    border-bottom: 1px solid rgba(210, 210, 210, 0.6);
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list:not(:last-child)::after {
    display: none;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list .content h3 {
    font-size: 40px;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list .content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .download-highlight-section .download-highlight-lists .download-highlight-list .content .star-review span {
    width: 18px;
    height: 18px;
  }
}

/* handpicked-offer */
.handpicked-offer .section-inner {
  padding-top: 155px;
  padding-bottom: 10px;
}

.handpicked-offer .short-card-slider {
  margin: 0 -15px;
  padding: 0;
}

.handpicked-offer .short-card-slider .slick-list {
  padding-bottom: 40px !important;
}

.handpicked-offer .slick-arrow {
  border: none !important;
  top: calc(50% - 40px);
}

.handpicked-offer .slick-arrow.slick-prev {
  left: -30px;
}

.handpicked-offer .slick-arrow.slick-next {
  right: -30px;
}

.handpicked-offer .num-rating {
  margin: 0 10px 0 0;
}

@media screen and (max-width: 1200px) {
  .handpicked-offer .section-inner {
    padding-bottom: 40px;
  }
  .handpicked-offer .slick-arrow {
    display: none !important;
  }
  .handpicked-offer .slick-dots {
    text-align: center;
  }
}

/* banking-other-section */
.banking-other-section .section-inner {
  padding-bottom: 70px;
}

.banking-other-section .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.banking-other-section .related-card {
  height: 100%;
}

.banking-other-section .related-card .related-card-inner {
  height: 100%;
}

.banking-other-section .card-accordion-wrapper {
  height: 100%;
}

.banking-other-section .card-accordion-wrapper .card-accordion {
  height: 100%;
}

.banking-other-section .accordion--scroll {
  height: 260px;
}

.banking-other-section .card-accordion {
  border: none;
}

.banking-other-section .customer-review-slider-wrapper {
  border: none;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .banking-other-section .related-card {
    height: auto;
    margin-bottom: 40px;
  }
  .banking-other-section .related-card.related-blog {
    margin-bottom: 20px;
  }
  .banking-other-section .card-accordion-wrapper {
    height: auto;
  }
  .banking-other-section .card-accordion {
    margin-bottom: 40px;
  }
}

/*internet banking*/
.ib-section.top-section {
  background: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), color-stop(78.83%, rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #eeeeee 0%, rgba(246, 246, 246, 0) 78.83%);
}

.ib-section.top-section .banner-slider {
  margin-top: 32px;
}

.ib-section.top-section .tab-sticky-enable {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .ib-section.top-section .tab-sticky-enable {
    margin-left: 0;
  }
}


/* ib-banner-section */
.ib-banner-section {
  position: relative;
  color: #fff;
  text-align: center;
}

.ib-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 395px;
  background: radial-gradient(57.63% 615.36% at 50.03% 52.3%, #f37e20 0%, #de5416 100%);
}

.ib-banner-section .banking-banner-inner {
  position: relative;
}

.ib-banner-section .banking-banner-inner h4 {
  font-size: 26px;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 15px;
  font-weight: 900;
}

.ib-banner-section .banking-banner-inner p {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* experience-step-section */
.experience-step-section {
  position: relative;
  color: #fff;
}

.experience-step-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 60px;
  left: 0;
  width: 100%;
  height: 310px;
  background: radial-gradient(57.63% 615.36% at 50.03% 52.3%, #f37e20 0%, #de5416 100%);
}

.experience-step-section .section-inner {
  padding-bottom: 20px;
}

.experience-step-section .experience-step-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 -15px;
}

.experience-step-section .section-title {
  position: absolute;
  top: 20px;
  font-size: 18px;
  margin: 0;
}

.experience-step-section .left-block {
  width: 48%;
  padding: 0 15px;
}

.experience-step-section .right-block {
  padding: 0 15px;
  width: 52%;
}

.experience-step-section .right-block .openvideo {
  position: absolute;
  right: 0;
}

.experience-step-section .experience-steps {
  padding-top: 70px;
  max-width: 580px;
}

.experience-step-section .experience-steps .row {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.experience-step-section .experience-steps .row:first-child {
  padding-bottom: 20px;
}

.experience-step-section .experience-steps .row:first-child::after {
  content: "";
  background: url("../images/digital-banking/icons/line-dot-border1.png") no-repeat;
  width: 100%;
  height: 80px;
  position: absolute;
  background-position: 15px 10px;
}

.experience-step-section .experience-steps .step {
  width: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  min-height: 85px;
}

.experience-step-section .experience-steps .step .num {
  font-size: 82px;
  opacity: 0.16;
  font-weight: 900;
  margin-right: 15px;
}

.experience-step-section .experience-steps .step .text {
  font-size: 14px;
  line-height: 20px;
}

.experience-step-section .experience-steps .step:first-child::after {
  content: "";
  display: inline-block;
  background: url("../images/digital-banking/icons/line-dot-border.png") no-repeat;
  width: 65px;
  height: 5px;
  position: relative;
  left: 20px;
  top: 7px;
}

.experience-step-section .experience-steps .step:first-child .text {
  min-width: 100px;
}

.experience-step-section .experience-steps .step:last-child .text {
  width: 194px;
}

.experience-step-section .ic-more {
  color: #fff;
}

.experience-step-section .ic-more::after {
  display: none;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .experience-step-section .experience-steps .step .num {
    font-size: 62px;
  }
  .experience-step-section .experience-steps .step .text br {
    display: none;
  }
  .experience-step-section .experience-steps .row:first-child::after {
    background-size: 97%;
    background-position: bottom;
  }
  .experience-step-section .experience-steps .row:last-child .step:first-child::after {
    left: 0;
  }
}

@media screen and (max-width: 991px) {
  .experience-step-section::before {
    height: 580px;
  }
  .experience-step-section .experience-step-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .experience-step-section .experience-steps {
    margin: 0 auto;
  }
  .experience-step-section .left-block {
    width: 100%;
  }
  .experience-step-section .right-block {
    width: 100%;
    margin-top: 60px;
  }
  .experience-step-section .right-block .openvideo {
    position: static;
    width: 100%;
    text-align: center;
  }
  .experience-step-section .button-group {
    text-align: center;
  }
  .experience-step-section .button-group .ic-btn {
    min-width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .experience-step-section::before {
    height: 510px;
    top: 60px;
  }
  .experience-step-section .section-inner {
    padding-top: 0;
  }
  .experience-step-section .section-title {
    position: static;
    padding-top: 10px;
  }
  .experience-step-section .experience-steps {
    padding-top: 60px;
  }
  .experience-step-section .experience-steps .row:first-child::after {
    background-position: bottom;
    background-size: 100%;
  }
  .experience-step-section .experience-steps .step:first-child::after {
    width: 35px;
    background-size: 100%;
    left: 0;
  }
  .experience-step-section .experience-steps .step:first-child .text {
    min-width: 80px;
  }
  .experience-step-section .experience-steps .step .num {
    font-size: 50px;
    margin-right: 10px;
  }
  .experience-step-section .experience-steps .step .text {
    font-size: 12px;
  }
  .experience-step-section .button-group {
    margin-top: 40px;
  }
  .experience-step-section .button-group .ic-btn {
    margin-bottom: 20px;
  }
  .experience-step-section .right-block {
    margin-top: 40px;
  }
}

.ib-security-section {
  background: #f8f8f8;
  padding-top: 200px;
  margin-top: -230px;
}

.ib-security-section .section-inner {
  max-width: 1260px;
}

@media only screen and (max-width: 767px) {
  .show_desktop {
    display: none !important;
  }
}

.show_mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .show_mobile {
    display: block;
  }
}

.section-inner.inst-slider .important-link-slider {
  overflow: hidden;
}

.section-inner.inst-slider .important-link-slider .slick-arrow.slick-prev {
  left: -15px;
  background: #f37e20 url(../images/white_left_arrow.svg) no-repeat center;
  background-size: 10px;
  background-position: 19px 11px;
  border: none;
}

.section-inner.inst-slider .important-link-slider .slick-arrow.slick-next {
  right: -15px;
  background: #f37e20 url(../images/white_left_arrow.svg) no-repeat center;
  background-size: 10px;
  background-position: 19px 11px;
  border: none;
}

@media only screen and (max-width: 690px) {
  .section-inner.inst-slider .important-link-inner .important-link {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 690px) {
  .section-inner.inst-slider .important-link-inner .important-link p {
    margin-top: 5px;
  }
}

@media only screen and (max-width: 500px) {
  .section-inner.inst-slider .important-link-inner.important-link-slider .slick-list .slick-slide {
    padding-top: 8px !important;
  }
}

/* filter */
.compare-btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  cursor: pointer;
  text-decoration: none;
}

.compare-btn:hover {
  text-decoration: none;
}

.compare-btn img {
  margin-right: 10px;
}

/* comparing-card-popup */
.comparing-card-popup {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.6);
}

.comparing-card-popup .close {
  background: url("../images/icons/orange_close-icon.svg") no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
}

.comparing-card-popup .popup-content {
  position: relative;
  background: #fff7eb;
  width: 95%;
  max-width: 915px;
  padding: 30px 20px;
  margin: 50px auto 0 auto;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .comparing-card-popup .popup-content {
    padding: 30px 10px 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .comparing-card-popup .popup-content {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 auto;
  }
}

.comparing-card-popup .popup-content .popup-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 0 60px 0 40px;
}

.comparing-card-popup .popup-content .popup-header .search-container {
  max-width: 230px;
}

.comparing-card-popup .popup-content .popup-header .search-container .search-box-area {
  border-width: 2px;
  margin-left: 10px;
}

.comparing-card-popup .popup-content .popup-header .search-container .search-box-area input {
  height: 32px;
}

.comparing-card-popup .popup-content .popup-header .search-container .search-box-area .search-btn {
  top: 8px;
  right: 10px;
  background-size: 15px;
}

@media screen and (max-width: 767px) {
  .comparing-card-popup .popup-content .popup-header {
    display: block;
    padding: 0 20px;
  }
  .comparing-card-popup .popup-content .popup-header .search-container .search-box-area {
    margin: 0 0 20px;
  }
}

.comparing-card-popup .popup-content .popup-body {
  height: 450px;
}

.comparing-card-popup .popup-content .popup-body .mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.comparing-card-popup .popup-content .popup-filters {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .comparing-card-popup .popup-content .popup-filters {
    padding: 0 20px;
  }
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown, .comparing-card-popup .popup-content .popup-filters .reset-button {
  width: 120px;
  height: 28px;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #f37e20;
  border-radius: 3px;
  text-align: center;
  background: rgba(255, 241, 220, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f37e20;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 0 10px;
  cursor: pointer;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown::before, .comparing-card-popup .popup-content .popup-filters .filter-dropdown::after, .comparing-card-popup .popup-content .popup-filters .reset-button::before, .comparing-card-popup .popup-content .popup-filters .reset-button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown::before, .comparing-card-popup .popup-content .popup-filters .reset-button::before {
  left: 0;
  background: url("../images/icons/video/filter-icon.svg") no-repeat;
  margin-right: 10px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown::after, .comparing-card-popup .popup-content .popup-filters .reset-button::after {
  right: 0;
  background: url("../images//icons/down-arrow-o.svg") no-repeat left center;
  width: 10px;
  margin-left: 10px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown.active::after, .comparing-card-popup .popup-content .popup-filters .reset-button.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.comparing-card-popup .popup-content .popup-filters .reset-button {
  width: 90px;
  margin-left: auto;
}

.comparing-card-popup .popup-content .popup-filters .reset-button::before {
  background: url("../images/icons/reset.svg") no-repeat;
}

.comparing-card-popup .popup-content .popup-filters .reset-button::after {
  display: none;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  background: #fff;
  padding: 20px;
  margin-top: 15px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column {
  width: calc(100% / 3);
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column ul li {
  width: calc(100% / 2);
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column ul li {
    width: 100%;
  }
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column .checkbox-list {
  margin: 0;
  font-size: 12px;
}

.comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column:not(:last-child) ul {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

@media screen and (max-width: 480px) {
  .comparing-card-popup .popup-content .popup-filters .filter-dropdown-content {
    display: block;
  }
  .comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column {
    width: 100%;
  }
  .comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column ul {
    margin: 0 !important;
    border: none !important;
  }
  .comparing-card-popup .popup-content .popup-filters .filter-dropdown-content .column ul li {
    width: 50%;
  }
}

.comparing-card-popup .popup-content .popup-card-slider {
  margin-top: 30px;
}

.comparing-card-popup .popup-content .popup-card-slider .card-slider {
  margin: 0 -15px;
  padding: 0 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.comparing-card-popup .popup-content .popup-card-slider h4 {
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0 40px;
}

.comparing-card-popup .popup-content .popup-card-slider .card {
  background: #fff;
  padding: 10px;
  margin: 0 15px 30px;
  width: calc(100%/3 - 30px);
}

.comparing-card-popup .popup-content .popup-card-slider .card img {
  width: 100%;
}

.comparing-card-popup .popup-content .popup-card-slider .card h6 {
  min-height: 50px;
  margin: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.comparing-card-popup .popup-content .popup-card-slider .card .checkbox-list {
  margin: 15px 15px 0;
  color: #f37e20;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .comparing-card-popup .popup-content .popup-card-slider .card .checkbox-list {
    margin: 15px 5px 0;
  }
}

.comparing-card-popup .popup-content .popup-card-slider .card .checkbox-list .checkmark {
  border-color: #f37e20;
}

.comparing-card-popup .popup-content .popup-card-slider .slick-arrow.slick-prev {
  left: 15px;
  border: none !important;
}

.comparing-card-popup .popup-content .popup-card-slider .slick-arrow.slick-next {
  right: 15px;
  border: none !important;
}

@media screen and (max-width: 767px) {
  .comparing-card-popup .popup-content .popup-card-slider .slick-dots {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
  .comparing-card-popup .popup-content .popup-card-slider .card-slider {
    padding: 0 0px 0 20px;
  }
  .comparing-card-popup .popup-content .popup-card-slider .card-slider .card {
    margin: 0 5px 10px;
    width: calc(100%/2 - 10px);
  }
  .comparing-card-popup .popup-content .popup-card-slider h4 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .comparing-card-popup .popup-content .popup-card-slider .card .checkbox-list {
    font-size: 10px;
    padding-left: 25px;
  }
}

/* creditcard-toast */
.creditcard-toast {
  display: none;
  position: fixed;
  z-index: 1003;
  bottom: 0;
  width: 100%;
}

.creditcard-toast .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 15px 20px;
}

.creditcard-toast .card-label {
  font-size: 12px;
  color: #fff;
  opacity: 0.6;
  font-weight: 600;
  margin-right: 40px;
}

.creditcard-toast .selected-card {
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.creditcard-toast .selected-card li {
  padding: 0 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.creditcard-toast .selected-card li:not(:last-child) {
  border-right: 1px solid rgba(201, 201, 201, 0.4);
}

.creditcard-toast .button-group {
  margin-left: auto;
}

.creditcard-toast .button-group .ic-btn {
  min-width: 170px;
  text-align: center;
  height: 40px;
}

.creditcard-toast .close {
  background: url("../images/icons/orange_close-icon.svg") no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  .creditcard-toast .card-label {
    margin-right: 20px;
  }
  .creditcard-toast .selected-card li {
    padding: 0 10px;
  }
  .creditcard-toast .button-group {
    width: 250px;
  }
  .creditcard-toast .button-group .ic-btn {
    min-width: auto;
    padding: 11px 20px;
  }
}

@media screen and (max-width: 991px) {
  .creditcard-toast .card-label {
    width: 100%;
  }
  .creditcard-toast .selected-card {
    margin: 15px 0 15px -10px;
    width: calc(100% - 250px);
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .creditcard-toast .button-group {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .creditcard-toast .selected-card {
    width: 100%;
  }
}

.atm-landing-section .adddress-section {
  background: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), color-stop(89.69%, rgba(246, 246, 246, 0)));
  background: linear-gradient(0deg, #eeeeee 0%, rgba(246, 246, 246, 0) 89.69%);
}

.atm-landing-section .adddress-section .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.atm-landing-section .adddress-section .section-inner .content {
  max-width: 450px;
  margin-right: auto;
  padding-right: 20px;
}

.atm-landing-section .adddress-section .section-inner .content .section-title {
  text-transform: none;
}

.atm-landing-section .adddress-section .section-inner .content p {
  color: #7d7d7d;
  margin-bottom: 26px;
}

.atm-landing-section .adddress-section .section-inner .content ul li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.atm-landing-section .adddress-section .section-inner .content ul li::before {
  content: "";
  min-width: 30px;
  min-height: 30px;
  display: inline-block;
  margin-right: 10px;
}

.atm-landing-section .adddress-section .section-inner .content ul li.map::before {
  background: url("../images/icons/atm/map.svg") no-repeat left;
}

.atm-landing-section .adddress-section .section-inner .content ul li.bank {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 20px;
  color: #ad1e23;
  font-weight: 600;
}

.atm-landing-section .adddress-section .section-inner .content ul li.bank::before {
  background: url("../images/icons/atm/bank.svg") no-repeat left;
}

.atm-landing-section .adddress-section .section-inner .content ul li.call {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.atm-landing-section .adddress-section .section-inner .content ul li.call::before {
  background: url("../images/icons/atm/mic.svg") no-repeat left;
}

.atm-landing-section .adddress-section .section-inner .content ul li.time::before {
  background: url("../images/icons/atm/time.svg") no-repeat left;
}

.atm-landing-section .adddress-section .section-inner .content .ic-btn {
  min-width: 210px;
  margin-top: 15px;
}

.atm-landing-section .adddress-section .section-inner .media {
  max-width: 488px;
  border-radius: 10px;
  margin-left: auto;
}

@media only screen and (max-width: 640px) {
  .atm-landing-section .adddress-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .atm-landing-section .adddress-section .section-inner .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    max-width: 100%;
  }
  .atm-landing-section .adddress-section .section-inner .content ul li {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .atm-landing-section .adddress-section .section-inner .content ul li.bank {
    font-size: 18px;
  }
  .atm-landing-section .adddress-section .section-inner .content .ic-btn {
    min-width: 100%;
    margin-top: 10px;
  }
  .atm-landing-section .adddress-section .section-inner .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 30px;
  }
}

.atm-landing-section .service-offerd-section {
  overflow: hidden;
}

.atm-landing-section .service-offerd-section .section-inner {
  padding: 36px 20px 20px;
}

.atm-landing-section .service-offerd-section .section-title {
  padding: 0 60px 30px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider {
  padding: 0 60px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-list {
  margin: 0 -30px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .item {
  position: relative;
  padding: 0 30px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .item img {
  margin-bottom: 15px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .item p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  width: 130px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .item:not(:first-child)::before {
  content: "";
  background: rgba(254, 254, 254, 0.2);
  position: absolute;
  width: 1px;
  height: 100%;
  left: -30px;
  top: 0;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-arrow {
  border: none;
  top: calc(50% - 50px);
  z-index: 1;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-arrow.slick-disabled {
  opacity: 0.7;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-arrow.slick-disabled:hover {
  opacity: 0.7;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-arrow.slick-prev {
  left: -10px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-arrow.slick-next {
  right: -15px;
}

.atm-landing-section .service-offerd-section .service-offerd-slider .slick-dots {
  margin-top: 30px;
  position: static;
  text-align: center;
}

@media screen and (min-width: 641px) and (max-width: 1025px) {
  .atm-landing-section .service-offerd-section .service-offerd-slider .item:nth-child(3n + 1)::before {
    display: none;
  }
  .atm-landing-section .service-offerd-section .service-offerd-slider .item:last-child::before {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .atm-landing-section .service-offerd-section .section-title {
    padding: 0 0 30px;
  }
  .atm-landing-section .service-offerd-section .service-offerd-slider {
    padding: 0;
  }
  .atm-landing-section .service-offerd-section .service-offerd-slider .item:not(:first-child)::before {
    left: -10px;
  }
  .atm-landing-section .service-offerd-section .service-offerd-slider .item:nth-child(2n + 1)::before {
    display: none;
  }
  .atm-landing-section .service-offerd-section .service-offerd-slider .item:last-child::before {
    display: block;
  }
}

.atm-landing-section .location-section .trending-deals-tab {
  background: transparent;
  padding-bottom: 0;
}

.atm-landing-section .location-section .trending-deals-tab .location-card {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 0;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading {
  background: #fdf6f4;
  border-radius: 10px 10px 0 0;
  padding: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 2px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading h5 {
  width: 100%;
  margin-bottom: 15px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .open-status {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #999999;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .open-status .status {
  color: #f37e20;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .open-status .time {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 8px;
  margin-left: 8px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .open-status .time span {
  font-size: 12px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .phone {
  background: url("../images/icons/phone.svg") no-repeat left;
  margin-left: auto;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #999999;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-body {
  padding: 15px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-body .address {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  margin-bottom: 30px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .card-body .address::before {
  background: url("../images/icons/atm/map.svg") no-repeat left;
  content: "";
  min-width: 30px;
  min-height: 30px;
  display: inline-block;
  margin-right: 10px;
}

.atm-landing-section .location-section .trending-deals-tab .location-card .ic-btn {
  padding: 10px 32px;
}

.atm-landing-section .location-section .trending-deals-tab .slick-list {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.atm-landing-section .location-section .trending-deals-tab .slick-dots {
  position: static;
  margin: 20px 0 0;
  text-align: center;
}

.atm-landing-section .location-section .nav-tabs {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .atm-landing-section .location-section .arrows-tab {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .atm-landing-section .location-section .arrows-tab {
    display: block;
  }
  .atm-landing-section .location-section .trending-deals-tab .location-card .ic-btn {
    padding: 10px 25px;
  }
  .atm-landing-section .location-section .trending-deals-tab .location-card .card-heading {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 375px) {
  .atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .open-status .time {
    padding-left: 5px;
    margin-left: 5px;
  }
  .atm-landing-section .location-section .trending-deals-tab .location-card .card-heading .phone {
    padding-left: 17px;
  }
}

.atm-landing-section .feature-section .trending-deals-tab {
  background: transparent;
  padding-bottom: 0;
}

.atm-landing-section .feature-section .feature-card {
  padding: 0 25px 25px;
}

.atm-landing-section .feature-section .feature-card .image {
  height: auto;
  margin: 0 -25px 20px;
}

.atm-landing-section .feature-section .feature-card .image img {
  max-height: none;
  width: 100%;
}

.atm-landing-section .feature-section .feature-card .description {
  height: 70px;
  overflow: hidden;
  font-size: 14px;
  line-height: 23px;
  color: #8b8b8b;
}

.atm-landing-section .feature-section .slick-dots {
  position: static;
  margin: 20px 0 0;
  text-align: center;
}

.atm-landing-section .handpicked-offer .section-inner {
  padding-top: 115px;
  padding-bottom: 40px;
}

.atm-landing-section .handpicked-offer .short-card-slider .slick-list {
  background: #fff7eb;
}

@media screen and (max-width: 640px) {
  .atm-landing-section .handpicked-offer .section-inner {
    padding-top: 40px;
  }
  .atm-landing-section .handpicked-offer .slick-dots {
    position: static;
    background: #fff7eb;
  }
}

.atm-landing-section .right-image-content .section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.atm-landing-section .right-image-content .section-inner .content {
  max-width: 410px;
  margin-right: auto;
  padding-right: 20px;
}

.atm-landing-section .right-image-content .section-inner .content p {
  color: #7d7d7d;
  margin-bottom: 25px;
}

.atm-landing-section .right-image-content .section-inner .media {
  max-width: 486px;
  border-radius: 10px;
  margin-left: auto;
}

@media only screen and (max-width: 640px) {
  .atm-landing-section .right-image-content .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .atm-landing-section .right-image-content .section-inner .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    max-width: 100%;
  }
  .atm-landing-section .right-image-content .section-inner .content .ic-btn {
    width: 100%;
  }
  .atm-landing-section .right-image-content .section-inner .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 30px;
  }
}

.atm-landing-section .highlight-section {
  background: linear-gradient(92.73deg, #e95603 -27.48%, #f37e20 52.28%);
  border-radius: 10px;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 0;
  color: #fff;
  max-width: 1220px;
}

.atm-landing-section .highlight-section .content {
  padding: 15px 40px 20px;
}

.atm-landing-section .highlight-section .content .title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.atm-landing-section .highlight-section .content p {
  max-width: 560px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.atm-landing-section .highlight-section .content .ic-btn {
  padding: 5px 32px;
  min-width: 170px;
}

@media screen and (max-width: 640px) {
  .atm-landing-section .highlight-section {
    display: block;
    margin: 0 20px;
  }
  .atm-landing-section .highlight-section img {
    width: 100%;
  }
  .atm-landing-section .highlight-section .content {
    padding: 20px;
  }
  .atm-landing-section .highlight-section .content p {
    margin-bottom: 20px;
  }
  .atm-landing-section .highlight-section .content .ic-btn {
    min-width: auto;
  }
}

.atm-landing-section .banking-card-section {
  padding-top: 40px;
}

.atm-landing-section .banking-card-section .section-inner {
  padding-top: 0;
}

.atm-landing-section .banking-card-section .card-lists .slick-dots {
  margin-top: 15px;
}

.atm-landing-section .map-section {
  position: relative;
}

.atm-landing-section .map-section .notification-alert {
  padding: 5px 14px 5px 5px;
  max-width: 226px;
}

.atm-landing-section .map-section .notification-alert p {
  font-style: normal;
  font-size: 12px;
}

.atm-landing-section .map-section .filter-section {
  margin-top: 40px;
}

.atm-landing-section .map-section .filter-section .sidebar-content {
  width: 290px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .filter-icon {
  padding-left: 0;
  margin-bottom: 30px;
  cursor: pointer;
}

.atm-landing-section .map-section .filter-section .sidebar-content .search-box-area {
  border-bottom: 1px solid #3d3d3d;
  padding: 10px 0;
  margin-bottom: 30px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .search-box-area input {
  width: calc(100% - 20px);
  background: transparent !important;
  padding: 0 10px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .search-box-area input:focus, .atm-landing-section .map-section .filter-section .sidebar-content .search-box-area input:visited {
  background: transparent !important;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .heading {
  margin-bottom: 20px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .heading.service-heading {
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .service-content {
  max-height: 280px;
  margin-right: -10px;
}

@media screen and (max-width: 991px) {
  .atm-landing-section .map-section .filter-section .sidebar-content .sb-box .service-content {
    max-height: 200px;
  }
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .checkbox-list {
  color: rgba(61, 61, 61, 0.6);
  padding-left: 50px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .checkbox-list .icon {
  position: absolute;
  left: 27px;
  top: -3px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .checkbox-list:last-child {
  margin-bottom: 0;
}

.atm-landing-section .map-section .filter-section .sidebar-content .sb-box .more-link {
  margin-left: 15px;
  display: inline-block;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 40px 0 15px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-header .close {
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  color: #f37e20;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-weight: bold;
  cursor: pointer;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-header .close img {
  margin-left: 7px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-toggle {
  text-align: right;
  cursor: pointer;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form {
  position: relative;
  margin-bottom: 25px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form label {
  display: block;
  margin-bottom: 5px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .df-search-from-box {
  border-bottom: 1px solid #3d3d3d;
  padding: 10px;
  margin-bottom: 15px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .df-search-from-box::after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, color-stop(65.85%, #fff7eb), color-stop(110.37%, rgba(255, 247, 235, 0)));
  background: linear-gradient(270deg, #fff7eb 65.85%, rgba(255, 247, 235, 0) 110.37%);
  width: 70px;
  height: 20px;
  z-index: 0;
  right: 6px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .df-search-from-box img {
  position: relative;
  z-index: 1;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .df-search-from-box input {
  width: calc(100% - 43px);
  background: transparent !important;
  padding: 0 10px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .btn-groups {
  margin-top: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .btn-groups button {
  font-size: 12px;
  margin-right: 15px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .btn-groups button.ic-btn {
  padding: 6px 16px;
  max-width: 145px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .btn-groups .pickMap {
  display: inline-block;
  cursor: pointer;
  margin-left: auto;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-to p {
  max-width: 250px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-listing {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 100;
  margin-top: -15px;
  background: #fbfbfb;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  max-height: 480px;
  overflow-y: auto;
  padding: 0 15px 0 0;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-listing.active {
  display: block;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-listing ul li {
  padding: 10px 25px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  color: #333a43;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-listing ul li:first-child {
  margin-top: 10px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-listing ul li:hover {
  background: #fff0e3;
  cursor: pointer;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction h4 {
  color: #000;
  font-size: 18px;
  line-height: 138%;
  margin-bottom: 10px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction .instruction-box {
  height: 205px;
  background: #fff;
  overflow-y: auto;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction ul li {
  padding: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  color: #666666;
  text-transform: none;
  width: 100%;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction ul li:nth-of-type(2n) {
  background: #c5cbd7;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction ul li .number {
  margin-right: 10px;
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction ul li .direction-block {
  width: calc(100% - 30px);
}

.atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-instruction ul li .distance {
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .atm-landing-section .map-section .filter-section .sidebar-content .direction-filter {
    position: absolute;
    width: 100%;
    padding: 0 20px 55px;
    z-index: 1;
    background: #fff7eb;
    left: 0;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .direction-filter .df-search-form .df-search-from-box {
    border: 2px solid #f37e20;
    border-radius: 50px;
  }
}

.atm-landing-section .map-section .filter-section .filter-content .result-num {
  font-weight: 600;
  margin-bottom: 20px;
  color: #535353;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content {
  height: 550px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .gm-style-iw-c {
  background: #fbfafa;
  border-radius: 10px;
  max-width: 280px !important;
  padding: 15px !important;
  font-size: 12px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .gm-style-iw-t::after {
  background: linear-gradient(45deg, #fbfafa 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
  left: -145px !important;
  top: -130px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .gm-ui-hover-effect {
  top: 4px !important;
  right: 2px !important;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .gm-ui-hover-effect img {
  width: 0 !important;
  height: 0 !important;
  padding: 8px !important;
  background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%20fill%3D"%23f37e20"/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E');
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .map-type-btns div {
  background: #666666;
  color: white;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .gm-style .map-type-btns .active-map {
  background: #f37e20;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content {
  font-size: 12px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content h5 {
  font-size: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #000;
  padding-right: 10px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .address {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.23);
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .address .map-icon {
  margin-right: 12px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .address .map-icon img {
  max-width: 21px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .address p {
  font-size: 12px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list {
  padding-bottom: 20px;
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.23);
  max-height: 120px;
  overflow-y: auto;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-size: 12px;
  line-height: 15px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list li:not(:last-child) {
  margin-bottom: 16px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list li .ser-icon {
  margin-right: 12px;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #ded6d6;
  margin-right: 0;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .service-list .mCSB_draggerRail {
  display: none;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .button-group a {
  font-size: 10px;
  outline: none;
}

.atm-landing-section .map-section .filter-section .filter-content .map-content .map-popup-content .button-group a.ic-btn {
  padding: 8px 24px;
}

.atm-landing-section .map-section .filter-section .filter-content #map-error {
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}

.atm-landing-section .map-section .filter-section .filter-content #map-error img {
  max-height: 150px;
}

.atm-landing-section .map-section .filter-section .filter-content #map-error b {
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .atm-landing-section .map-section .section-inner {
    padding: 40px 0;
  }
  .atm-landing-section .map-section .section-title {
    padding: 0 20px;
    margin: 0;
  }
  .atm-landing-section .map-section .filter-section {
    margin-top: 20px;
    overflow: initial;
  }
  .atm-landing-section .map-section .filter-section .filter-inner-container {
    padding-top: 100px;
    background: #fff;
    overflow: initial;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content {
    position: absolute;
    top: 0;
    padding: 0 20px;
    display: block;
    width: 100%;
    z-index: 3;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .filter-icon {
    color: #f37e20;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .filter-icon::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 5px 0 0 10px;
    display: inline-block;
    background: url("../images//icons/down-arrow-o.svg") no-repeat left center;
    background-position: 0px 2.5px;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .filter-icon.active::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    top: 5px;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .sidebar-body {
    display: none;
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .sidebar-body.active {
    display: block;
    background: #fff;
    margin-top: -16px;
    -webkit-box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.12);
    -o-box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.12);
  }
  .atm-landing-section .map-section .filter-section .sidebar-content .search-box-area {
    border: 1px solid #f37e20;
    border-radius: 20px;
    padding: 10px 15px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 640px) {
  .atm-landing-section .digitalbanking .banking-tagline {
    margin-bottom: 0;
  }
  .atm-landing-section .banking-card-section {
    padding-bottom: 20px;
  }
}

.pac-container {
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.pac-logo:after {
  content: "";
  padding: 1px 1px 1px 0;
  height: 16px;
  text-align: right;
  display: block;
  background-image: url("");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 120px 14px;
}

.hdpi.pac-logo:after {
  background-image: url("");
}

.pac-item {
  cursor: pointer;
  padding: 0 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 11px;
  color: #999;
}

.pac-item:hover {
  background-color: #fafafa;
}

.pac-item-selected,
.pac-item-selected:hover {
  background-color: #ebf2fe;
}

.pac-matched {
  font-weight: 700;
}

.pac-item-query {
  font-size: 13px;
  padding-right: 3px;
  color: #000;
}

.pac-icon {
  width: 15px;
  height: 20px;
  margin-right: 7px;
  margin-top: 6px;
  display: inline-block;
  vertical-align: top;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
  background-size: 34px;
}

.hdpi .pac-icon {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png);
}

.pac-icon-search {
  background-position: -1px -1px;
}

.pac-item-selected .pac-icon-search {
  background-position: -18px -1px;
}

.pac-icon-marker {
  background-position: -1px -161px;
  display: inline-block;
}

.pac-item-selected .pac-icon-marker {
  background-position: -18px -161px;
}

.pac-placeholder {
  color: gray;
}

.ifsc-finder-section .orange-bg {
  margin-top: 15px;
  padding: 40px;
}

.ifsc-finder-section h5 {
  margin-bottom: 20px;
}

.ifsc-finder-section p.f-16 {
  line-height: 24px;
  max-width: 1080px;
}

.ifsc-finder-section .search-container {
  margin: 0 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-width: 714px;
}

.ifsc-finder-section .search-container .search-box-area {
  position: static;
  max-width: 594px;
  margin-right: 20px;
  width: calc(100% - 115px);
}

.ifsc-finder-section .search-container .search-box-area input[type="text"] {
  background: url("../images/icons/search-icon.svg") no-repeat right;
  background-size: 20px;
  width: calc(100% - 15px);
  padding: 10px 25px 10px 15px;
}

.ifsc-finder-section .search-container .ic-btn {
  width: 100px;
  position: absolute;
  right: 0;
  z-index: 9;
  cursor: pointer;
}

.ifsc-finder-section .search-container .search-listing {
  max-width: 594px;
  width: calc(100% - 115px);
}

.ifsc-finder-section .or-text {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  color: #999999;
  margin-bottom: 20px;
}

.ifsc-finder-section .or-text::after {
  content: "";
  width: 100px;
  height: 1px;
  border-top: 1px dashed rgba(139, 139, 139, 0.5);
  position: absolute;
  top: 12px;
  left: 35px;
}

.ifsc-finder-section .branch-dropdowns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ifsc-finder-section .branch-dropdowns .dropdown {
  max-width: 232px;
  width: 100%;
}

.ifsc-finder-section .branch-dropdowns .dropdown:not(:last-child) {
  margin-right: 30px;
}

.ifsc-finder-section .branch-dropdowns .dropdown .ui-selectmenu-button {
  max-width: 232px;
}

.ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3) {
  max-width: 385px;
}

.ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3) .ui-selectmenu-button {
  max-width: 385px;
}

.ifsc-finder-section .branch-dropdowns .dropdown label {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
}

.ifsc-finder-section .branch-dropdowns .dropdown .ui-selectmenu-button.ui-button {
  background: #fff;
  border: 1px solid #f37e20;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}

.ifsc-finder-section .branch-dropdowns .dropdown .ui-selectmenu-button.ui-button .ui-selectmenu-icon {
  top: 20px;
  right: 15px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.ifsc-finder-section .branch-dropdowns .dropdown .ui-selectmenu-button.ui-button .ui-selectmenu-text {
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 400;
  min-height: 40px;
}

.ifsc-finder-section .branch-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid rgba(102, 102, 102, 0.2);
  max-width: 1100px;
}

.ifsc-finder-section .branch-table table:not(:last-child) {
  margin-bottom: 30px;
}

.ifsc-finder-section .branch-table table tr td {
  padding: 10px 30px;
  background: #fff;
  line-height: 24px;
}

.ifsc-finder-section .branch-table table tr td:first-child {
  background: #fdf6f4;
  width: 230px;
  border-right: 1px dashed rgba(102, 102, 102, 0.2);
  font-weight: 600;
}

.ifsc-finder-section .branch-table table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

@media only screen and (max-width: 991px) {
  .ifsc-finder-section .orange-bg {
    padding: 40px 20px;
  }
  .ifsc-finder-section .branch-dropdowns .dropdown, .ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3) {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .ifsc-finder-section .branch-dropdowns .dropdown:not(:last-child), .ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3):not(:last-child) {
    margin-right: 0;
  }
  .ifsc-finder-section .branch-dropdowns .dropdown .ui-selectmenu-button, .ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3) .ui-selectmenu-button, .ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3) .ui-selectmenu-button, .ifsc-finder-section .branch-dropdowns .dropdown:nth-child(3):nth-child(3) .ui-selectmenu-button {
    max-width: 100%;
  }
  .ifsc-finder-section .search-container {
    margin-bottom: 25px;
  }
  .ifsc-finder-section .branch-table table tr td:first-child {
    width: 160px;
  }
}

@media only screen and (max-width: 480px) {
  .ifsc-finder-section .search-container .search-box-area, .ifsc-finder-section .search-container .search-listing {
    width: calc(100% - 85px);
  }
  .ifsc-finder-section .search-container .ic-btn {
    width: 75px;
  }
  .ifsc-finder-section .branch-table table tr td {
    padding: 10px 20px;
  }
  .ifsc-finder-section .branch-table table tr td:first-child {
    width: 100px;
  }
}

/* dropdown height */
#state-dropdown-menu, #city-dropdown-menu, #branch-dropdown-menu {
  max-height: 300px;
}

#branch-dropdown-menu {
  max-width: 385px;
}

.error-content {
  text-align: center;
  padding: 30px 20px 50px;
}

.error-content img {
  margin-bottom: 30px;
}

.error-content h3 {
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #000;
  text-transform: capitalize;
}

.error-content p {
  color: #666666;
}

.error-content .ic-btn {
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
  min-width: 220px;
}

@media only screen and (max-width: tablet) {
  .error-content img {
    max-width: 200px;
  }
  .error-content h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 990px) {
  .error-content img {
    max-width: 200px;
  }
  .error-content h3 {
    font-size: 30px;
  }
}

/* card-top */
.card-top .blue-tag {
  display: inline-block;
  background: #6FACE2;
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
  min-width: 70px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 0 20px 20px 0;
  padding: 0 14px;
  margin-right: 10px;
}

.card-top .date {
  display: inline-block;
  color: #666666;
  font-weight: 300;
  font-size: 12px;
}

/* card-tags  */
.card-tags {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}

.card-tags .tag {
  background: #ffebdc;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 10px;
  color: #f37e20;
  height: 20px;
  line-height: 20px;
}

.card-tags .tag:not(:last-child) {
  margin-right: 10px;
}

/* bookmark-share */
.bookmark-share .like {
  font-size: 12px;
  display: inline-block;
  background: url("../images/icons/orange-hub/thumb-o.svg") no-repeat left;
  background-size: 16px;
  padding: 0 10px 0 22px;
  margin-right: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.bookmark-share .like.disliked {
  background: url("../images/icons/video/dislike-o.svg") no-repeat left bottom;
}

.bookmark-share .like span {
  position: relative;
  top: 2px;
}

/* orangebook-card */
.orangebook-card {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.orangebook-card:last-child {
  margin-right: 0;
}

.orangebook-card a {
  text-decoration: none;
}

.orangebook-card .bookmark-share .share {
  background: url("../images/icons/orange-hub/share-o.svg") no-repeat bottom;
  background-size: 16px;
}

.orangebook-card .card-inner .media {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.orangebook-card .card-inner .media img {
  width: 100%;
  vertical-align: middle;
  -webkit-transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.orangebook-card .card-inner .media .play-btn {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: calc(50% - 23px);
  left: calc(50% - 23px);
  background: url("../images/icons/play-arrow-o.png") no-repeat center;
  background-size: 15px;
  background-position: 17px 15px;
  background-color: rgba(254, 254, 255, 0.9);
}

.orangebook-card .card-inner .media .play-btn.podcast-play-btn {
  background: url("../images/icons/orange-hub/play-o.svg") no-repeat center;
  left: 20px;
}

.orangebook-card .card-inner .media .time {
  position: absolute;
  font-size: 10px;
  line-height: 27px;
  color: #fff;
  font-weight: 100;
  text-align: center;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  width: 35px;
  height: 25px;
  background: rgba(0, 0, 0, 0.3);
}

.orangebook-card .card-inner .content {
  padding: 15px 15px 20px 15px;
  border-radius: 0 0 10px 10px;
  border-top: none;
}

@media screen and (max-width: 1199px) {
  .orangebook-card .card-inner .content {
    padding: 20px;
  }
}

.orangebook-card .card-inner .card-top {
  margin-bottom: 15px;
}

.orangebook-card .card-inner .card-top .blue-tag {
  margin-left: -15px;
}

@media screen and (max-width: 1199px) {
  .orangebook-card .card-inner .card-top .blue-tag {
    margin-left: -20px;
  }
}

.orangebook-card .card-inner .card-title {
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.38;
  color: #4b4b4b;
  margin-bottom: 10px;
  outline: none;
  height: 55px;
  max-width: 250px;
  overflow: hidden;
}

.orangebook-card .card-inner .card-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.orangebook-card .card-inner .card-bottom .date-readtime {
  font-size: 12px;
  color: #666666;
}

.orangebook-card .card-inner .card-bottom .date-readtime .num-viewer {
  display: inline-block;
  background: url("../images/icons/orange-hub/eye-icon-o.svg") no-repeat left;
  background-size: 20px;
  padding-left: 25px;
}

.orangebook-card .card-inner .card-bottom .share-content {
  right: 0;
}

.orangebook-card .card-inner:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.orangebook-card.h-view {
  border: none;
  border-radius: 0;
}

.orangebook-card.h-view:not(:last-child) {
  margin-bottom: 25px;
}

.orangebook-card.h-view .card-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.orangebook-card.h-view .card-inner .media {
  width: 240px;
  border-radius: 0;
}

.orangebook-card.h-view .card-inner .media img {
  width: 100%;
}

.orangebook-card.h-view .card-inner .content {
  width: calc(100% - 240px);
  border: none;
  border-radius: 0;
  padding: 0 0 0 30px;
}

.orangebook-card.h-view .card-inner .content .card-top {
  margin-bottom: 8px;
}

.orangebook-card.h-view .card-inner .content .card-top .blue-tag {
  margin-left: 0;
  min-width: auto;
}

.orangebook-card.h-view .card-inner .content .card-title {
  height: 35px;
  max-width: 250px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.orangebook-card.h-view .card-inner .content .card-tags {
  margin-bottom: 15px;
}

.orangebook-card.h-view .card-inner .content .card-bottom {
  border-top: 1px solid rgba(102, 102, 102, 0.2);
  padding-top: 15px;
}

.orangebook-card.overlay-view {
  position: relative;
  border-bottom: 4px solid #f37e20;
  border-radius: 0;
}

.orangebook-card.overlay-view .card-inner .media {
  border-radius: 0;
  position: relative;
}

.orangebook-card.overlay-view .card-inner .media::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.orangebook-card.overlay-view .card-inner .overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, #000 10%, rgba(0, 0, 0, 0) 100%);
  height: 50%;
  bottom: 0;
}

.orangebook-card.overlay-view .card-inner .content {
  position: absolute;
  bottom: 0;
  border: none;
  border-radius: 0;
  padding: 10px 20px 15px;
  width: 100%;
  z-index: 3;
}

.orangebook-card.overlay-view .card-inner .card-title {
  font-size: 14px;
  line-height: 144%;
  font-weight: bold;
  color: #fff;
  height: auto;
  max-width: 325px;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.orangebook-card.overlay-view .card-inner .card-top {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}

.orangebook-card.overlay-view .card-inner .card-top .blue-tag {
  font-size: 18px;
  padding: 4px 15px;
  font-weight: 500;
  height: auto;
  min-width: 72px;
  margin-left: 0;
}

.orangebook-card.overlay-view .card-inner .card-top .date {
  color: #fff;
}

.orangebook-card.overlay-view .card-inner .card-bottom {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.orangebook-card.overlay-view .card-inner .card-bottom .card-tags {
  margin-bottom: 0;
}

.orangebook-card.overlay-view .card-inner .card-bottom .card-tags .tag {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.orangebook-card.overlay-view .card-inner .card-bottom .card-share {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-left: auto;
}

.orangebook-card.overlay-view .card-inner .card-bottom .date-readtime {
  color: #fff;
  border-right: 1px solid #5c5c5c;
  padding-right: 15px;
  margin-right: 15px;
}

.orangebook-card.overlay-view .card-inner .card-bottom .bookmark-share .like {
  border-right: 1px solid #5c5c5c;
  padding-right: 15px;
  margin-right: 15px;
  color: #fff;
}

@media only screen and (max-width: tablet-small) {
  .orangebook-card.overlay-view .card-inner .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .orangebook-card.overlay-view .card-inner .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

@media only screen and (max-width: 639px) {
  .orangebook-card.overlay-view .card-inner .card-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .orangebook-card.overlay-view .card-inner .card-bottom .bookmark-share {
    margin-left: auto;
  }
}

@media screen and (max-width: 560px) {
  .orangebook-card.overlay-view .card-inner .media::before {
    background: rgba(0, 0, 0, 0.4);
  }
  .orangebook-card.overlay-view .card-inner .content {
    padding-bottom: 5px;
  }
  .orangebook-card.overlay-view .card-inner .card-top {
    top: 10px;
  }
  .orangebook-card.overlay-view .card-inner .card-top .blue-tag {
    font-size: 16px;
  }
  .orangebook-card.overlay-view .card-inner .card-bottom .card-tags {
    display: none;
  }
  .orangebook-card.overlay-view .card-inner .card-bottom .card-share {
    width: 100%;
  }
}

@media only screen and (max-width: tablet) {
  .orangebook-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
  }
}

@media only screen and (max-width: 990px) {
  .orangebook-card .card-inner .content .card-bottom .date-readtime {
    font-size: 14px;
  }
}

@media only screen and (max-width: tablet-small) {
  .orangebook-card .card-inner .content .card-title {
    height: auto;
    min-height: 40px;
  }
  .orangebook-card .card-inner .content .card-bottom .share-content {
    left: 0;
    top: 0;
  }
}

@media only screen and (max-width: 639px) {
  .orangebook-card .card-inner .content .card-title {
    height: auto;
    min-height: 40px;
  }
  .orangebook-card .card-inner .content .card-bottom .share-content {
    left: 0;
    top: 0;
  }
}

/* orangebook-lists */
.orangebook-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -15px;
}

.orangebook-list .orangebook-card {
  width: calc(33% - 27px);
  margin: 0 15px 30px;
}

.orangebook-list .account-variants-card {
  margin: 0 15px 30px;
  width: 100%;
}

.orangebook-list .account-variants-card .account-variants-card-with-img {
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.orangebook-list.card-loading {
  height: 0;
}

.orangebook-list.card-loading .orangebook-card {
  opacity: 0;
}

.orangebook-list.hidden-card {
  height: 0;
}

.orangebook-list.hidden-card .orangebook-card {
  opacity: 0;
}

.orangebook-list.auto-height {
  height: auto;
}

.orangebook-list.auto-height .orangebook-card {
  opacity: 1;
}

.orangebook-list.four-list-grid-share .orangebook-card {
  width: calc(25% - 30px);
}

.orangebook-list.four-list-grid-share .orangebook-card .card-tags {
  margin-bottom: 0;
}

.orangebook-list.four-list-grid-share .orangebook-card .bookmark-share {
  margin-top: -20px;
}

@media only screen and (max-width: 1199px) {
  .orangebook-list .orangebook-card {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
  .orangebook-list.orangebook-list .orangebook-card {
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width: tablet) {
  .orangebook-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .orangebook-list .no-result {
    text-align: center;
    margin: 20px 0 50px;
  }
  .orangebook-list .filter-top.filter-sticky {
    top: 110px;
  }
}

@media only screen and (max-width: 990px) {
  .orangebook-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .orangebook-list .no-result {
    text-align: center;
    margin: 20px 0 50px;
  }
  .orangebook-list .filter-top.filter-sticky {
    top: 110px;
  }
}

@media only screen and (max-width: phablet) {
  .orangebook-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .orangebook-list .account-variants-card {
    margin: 0 0 20px;
  }
  .orangebook-list .account-variants-card .button-group {
    text-align: center;
  }
  .orangebook-list .account-variants-card .button-group .ic-btn {
    width: 100%;
    margin: 0 0 20px;
  }
  .orangebook-list .orangebook-card {
    width: 100%;
    margin: 0 0 30px;
  }
  .orangebook-list.orangebook-list .orangebook-card {
    width: 100%;
  }
}

@media only screen and (max-width: 559px) {
  .orangebook-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .orangebook-list .account-variants-card {
    margin: 0 0 20px;
  }
  .orangebook-list .account-variants-card .button-group {
    text-align: center;
  }
  .orangebook-list .account-variants-card .button-group .ic-btn {
    width: 100%;
    margin: 0 0 20px;
  }
  .orangebook-list .orangebook-card {
    width: 100%;
    margin: 0 0 30px;
  }
  .orangebook-list.orangebook-list .orangebook-card {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .orangebook-lists-1 .orangebook-card {
    width: calc(25% - 30px);
  }
}

/* orange-hub-section */
.orange-hub-section .feature-video-inner {
  padding-bottom: 65px;
}

.orange-hub-section .feature-video-inner .left-content {
  max-width: 545px;
  margin-right: 50px;
}

.orange-hub-section .feature-video-inner .right-content {
  max-width: 530px;
}

@media screen and (max-width: 991px) {
  .orange-hub-section .feature-video-inner {
    margin-top: 35px;
    padding-bottom: 25px;
    overflow: hidden;
  }
  .orange-hub-section .feature-video-inner .left-content {
    max-width: 100%;
    width: 100%;
  }
  .orange-hub-section .feature-video-inner .right-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card {
    width: calc(50% - 20px);
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card:not(:last-child) {
    margin: 0 20px 0 0;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner .media {
    width: 100%;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner .content {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    margin-left: 0;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner .content .card-title {
    font-size: 16px;
    margin: 15px 0;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner .content .card-tags {
    margin-bottom: 20px;
  }
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider .orangebook-card .card-inner .content .card-bottom {
    padding-top: 12px;
  }
}

@media screen and (max-width: 560px) {
  .orange-hub-section .feature-video-inner .right-content .orangebook-card-m-slider {
    margin: 0 -20px 0 -15px;
  }
}

/* orangebook-download */
.orangebook-download {
  overflow: hidden;
}

.orangebook-download .section-inner {
  position: relative;
}

.orangebook-download .section-title {
  margin-bottom: 30px;
}

.orangebook-download .links {
  top: 45px;
  right: 30px;
  position: absolute;
}

.orangebook-download .links .download-link {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 15px;
  color: #666666;
  font-size: 13px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  padding: 0 15px 0 25px;
  font-weight: 700;
  background: url("../images/icons/orange-hub/download-o.svg") no-repeat left;
}

.orangebook-download .links .ic-more {
  color: #f37e20;
}

.orangebook-download .orangebook-card {
  margin: 0 15px;
}

.orangebook-download .orangebook-card .share-content {
  bottom: 0;
  top: auto;
}

.orangebook-download .slick-arrow {
  border: none;
  top: calc(50% - 20px);
}

.orangebook-download .slick-arrow.slick-prev {
  left: -25px; transform: rotate(0deg);
}

.orangebook-download .slick-arrow.slick-next {
  right: -25px;
}

.orangebook-download .slick-arrow:hover {
  border: none;
}

@media screen and (max-width: 991px) {
  .orangebook-download .slick-list {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .orangebook-download .links {
    position: static;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 557px) {
  .orangebook-download .orangebook-cards-slider {
    margin: 0 -20px 0 -15px;
  }
  .orangebook-download .orangebook-cards-slider .orangebook-card {
    margin: 0 15px 0 0;
  }
}

/* orange-hub-filter-section  */
.orange-hub-filter-section.share-overlap {
  z-index: -1;
}

.orange-hub-filter-section .filter-top-tool {
  min-width: auto;
}

.orange-hub-filter-section .sidebar-content .toggle-checkbox-ul-more {
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  padding-right: 20px;
  margin: 0 0 15px 45px;
  letter-spacing: 0.05em;
  color: #f37e20;
  cursor: pointer;
}

.orange-hub-filter-section .sidebar-content .toggle-checkbox-ul-more::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: url("../images/icons/down-arrow-o.svg") no-repeat left center;
  background-position: 0px 2.5px;
  z-index: 1;
}

.orange-hub-filter-section .sidebar-content .checkbox-ul-more {
  display: none;
}

.orange-hub-filter-section .sidebar-content .orangebook-dropdown {
  border-top: 1px dashed #f37e20;
  border-bottom: 1px dashed #f37e20;
  padding: 20px 0 10px;
  margin-bottom: 20px;
}

.orange-hub-filter-section .sidebar-content .orangebook-dropdown .dropdown-list {
  height: 210px;
  overflow: hidden;
}

.orange-hub-filter-section .sidebar-content .orangebook-dropdown .checkbox-list {
  margin: 0;
}

.orange-hub-filter-section .sidebar-content ul li .menu-item,
.orange-hub-filter-section .sidebar-content ul li:hover .menu-item,
.orange-hub-filter-section .sidebar-content ul li.active .menu-item {
  border-left: none;
}

.orange-hub-filter-section .sidebar-content .orangebook-ul ul {
  position: relative;
  border-bottom: 1px dashed #f2994a;
  height: 415px;
}

.orange-hub-filter-section .sidebar-content .orangebook-ul ul::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 28px;
  bottom: 0%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(29.31%, #fff7eb), color-stop(106.9%, rgba(255, 247, 235, 0)));
  background: linear-gradient(0deg, #fff7eb 29.31%, rgba(255, 247, 235, 0) 106.9%);
}

.orange-hub-filter-section .sidebar-content .orangebook-ul li.active {
  color: #f37e20;
}

.orange-hub-filter-section .sidebar-content .orangebook-ul .mCSB_draggerRail {
  display: none;
}

.orange-hub-filter-section .filter-content {
  padding-bottom: 40px;
}

.orange-hub-filter-section .filter-cat.active {
  border-top: none;
  padding-bottom: 0;
}

.orange-hub-filter-section .filter-top.filter-sticky .filter-cat.active {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.orange-hub-filter-section .no-result {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .orange-hub-filter-section .sidebar-content.active .sidebar-body {
    height: calc(100vh - 130px);
    padding-top: 20px;
  }
  .orange-hub-filter-section .sidebar-content.active .orangebook-ul ul {
    height: 100%;
    border: none;
  }
  .orange-hub-filter-section .sidebar-content.active .orangebook-ul ul::after {
    display: none;
  }
  .orange-hub-filter-section .search-container {
    display: none;
  }
  .orange-hub-filter-section .filter-top.filter-sticky .search-container {
    display: block;
    max-width: 220px;
  }
}

/* podcast-popup */
.podcast-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
}

.podcast-popup .podcast-popup-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #fff;
}

.podcast-popup .section-inner {
  position: relative;
}

.podcast-popup .close-icon {
  position: absolute;
  right: 15px;
  top: 30px;
  width: 15px;
  height: 15px;
  background: url("../images/icons/close-orange.svg") no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.podcast-popup .blue-tag {
  display: inline-block;
  background: #6face2;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  min-width: 70px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 0 20px 20px 0;
  padding: 0 14px;
  margin-right: 10px;
}

.podcast-popup .date {
  display: inline-block;
  color: #666666;
  font-weight: 300;
  font-size: 12px;
}

.podcast-popup .card-tags {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-right: 15px;
}

.podcast-popup .card-tags .tag {
  background: #ffebdc;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 10px;
  color: #f37e20;
  height: 20px;
  line-height: 20px;
}

.podcast-popup .card-tags .tag:not(:last-child) {
  margin-right: 10px;
}

.podcast-popup .title {
  font-size: 22px;
  line-height: 138%;
  font-weight: 400;
  margin-right: 40px;
  max-width: 480px;
  width: 100%;
}

.podcast-popup .middle-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-width: 840px;
  margin: 15px 0 25px 0;
}

.podcast-popup .middle-content .info-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-left: auto;
}

.podcast-popup .middle-content .play-duration {
  font-size: 16px;
}

.podcast-popup .middle-content .play-duration .total {
  color: #f37e20;
  font-weight: 700;
}

.podcast-popup .bottom-content {
  max-width: 840px;
}

.podcast-popup .card-bottom {
  display: none;
}

@media screen and (max-width: 991px) {
  .podcast-popup .podcast-popup-content {
    border-top: 5px solid #f37e20;
    padding: 25px 0 15px;
  }
  .podcast-popup .close-icon {
    top: 0;
  }
  .podcast-popup .middle-content {
    display: block;
    margin-bottom: 15px;
  }
  .podcast-popup .middle-content .title {
    margin-bottom: 20px;
  }
  .podcast-popup .middle-content .card-tags {
    margin-bottom: 10px;
  }
  .podcast-popup .middle-content .info-box {
    display: block;
  }
  .podcast-popup .audioPlayer {
    margin-bottom: 20px;
  }
  .podcast-popup .audioPlayer .icon.play-icon {
    display: none;
  }
  .podcast-popup .audioPlayer .progress-bar {
    margin-left: 0;
  }
  .podcast-popup .card-bottom {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid rgba(102, 102, 102, 0.2);
  }
}

/* subscribe-orangebook-section */
.subscribe-orangebook-section {
  position: relative;
  background: linear-gradient(-268.05deg, #f37e20 -2.54%, #de5416 95.41%);
  border-radius: 10px;
  color: #fff;
  text-align: left;
  padding: 25px;
  width: 100%;
}

.subscribe-orangebook-section .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
}

.subscribe-orangebook-section p {
  max-width: 550px;
}

.subscribe-orangebook-section form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-top: 25px;
}

.subscribe-orangebook-section form .form-group {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 50px;
  margin-right: 40px;
  max-width: 250px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 20px;
}

.subscribe-orangebook-section form .form-group input,
.subscribe-orangebook-section form .form-group input:focus {
  background: transparent !important;
  width: 100%;
}

.subscribe-orangebook-section form .form-group input::-webkit-input-placeholder,
.subscribe-orangebook-section form .form-group input:focus::-webkit-input-placeholder {
  color: #fff;
}

.subscribe-orangebook-section form .form-group input:-ms-input-placeholder,
.subscribe-orangebook-section form .form-group input:focus:-ms-input-placeholder {
  color: #fff;
}

.subscribe-orangebook-section form .form-group input::-ms-input-placeholder,
.subscribe-orangebook-section form .form-group input:focus::-ms-input-placeholder {
  color: #fff;
}

.subscribe-orangebook-section form .form-group input::placeholder,
.subscribe-orangebook-section form .form-group input:focus::placeholder {
  color: #fff;
}

.subscribe-orangebook-section form .form-group .ic-btn {
  margin-left: 40px;
  min-width: 110px;
}

.subscribe-orangebook-section form .form-group .error-txt {
  font-size: 10px;
  position: absolute;
  bottom: -30px;
  width: 100%;
  left: 16px;
}

.subscribe-orangebook-section form .success-txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  background: #f37e20;
}

.subscribe-orangebook-section form .success-txt.active {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.subscribe-orangebook-section form .success-txt h3 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 115%;
  margin-bottom: 20px;
  color: #fff;
}

.subscribe-orangebook-section form .success-txt img {
  margin: 0 auto 20px;
  max-width: 50px;
}

.subscribe-orangebook-section form .success-txt p.small {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .subscribe-orangebook-section {
    background: linear-gradient(-45deg, #de5416 20.27%, #f37e20 81.41%);
    padding: 35px;
  }
  .subscribe-orangebook-section .section-title {
    text-align: center;
    max-width: 250px;
    margin: 0 auto 20px;
  }
  .subscribe-orangebook-section p {
    text-align: center;
  }
  .subscribe-orangebook-section form {
    display: block;
  }
  .subscribe-orangebook-section form .form-group {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .subscribe-orangebook-section form .ic-btn {
    margin-top: 22px;
    width: 100%;
    min-height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 560px) {
  .subscribe-orangebook-section {
    margin: 0;
  }
}

/* orange-book-page */
.orange-book-page .filter-content .button-area {
  margin: 0 15px 30px;
}

.orange-book-page .filter-content .button-area .border-btn {
  min-width: 172px;
}

.orange-book-page .filter-content .button-area .border-btn:hover {
  background: #f37e20;
  color: #fff;
}

@media screen and (max-width: 560px) {
  .orange-book-page .filter-content .button-area {
    text-align: center;
  }
}

/* orangebook-details-page */
.orangebook-details-page .page-title.page-title-style-1 .title {
  padding: 0;
}

.orangebook-details-page .page-title.page-title-style-1 .title h1 {
  font-size: 36px;
}

.orangebook-details-page .page-title.page-title-style-1 .title h1 span {
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .orangebook-details-page .page-title.page-title-style-1 .title h1 {
    font-size: 34px;
    padding: 20px 0;
  }
  .orangebook-details-page .page-title.page-title-style-1 .title h1 span {
    font-size: 15px;
  }
}

/* orange-talk-section */
.orange-talk-section .section-inner {
  padding: 0 20px;
}

.orange-talk-section .orange-talk-video iframe {
  margin-bottom: -10px;
}

.orange-talk-section .orange-talk-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.orange-talk-section .orange-talk-inner::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  background: #f9f9f9;
  right: 0;
  z-index: -1;
}

.orange-talk-section .orange-talk-inner .left-content {
  padding: 45px 30px 45px 0;
  width: 60%;
}

.orange-talk-section .orange-talk-inner .left-content p {
  line-height: 24px;
}

.orange-talk-section .orange-talk-inner .left-content .ic-more {
  margin-top: 30px;
}

.orange-talk-section .orange-talk-inner .left-content .button-group {
  margin-top: 35px;
}

.orange-talk-section .orange-talk-inner .left-content .button-group .ic-more {
  margin-top: 0;
}

.orange-talk-section .orange-talk-inner .right-content {
  background: #f9f9f9;
  padding: 60px 0 60px 60px;
  min-height: 540px;
  width: 40%;
}

.orange-talk-section .orange-talk-inner .right-content .share-box .youtube-text {
  margin-bottom: 0;
}

.orange-talk-section .orange-talk-inner .right-content .share-box h4 {
  margin-bottom: 15px;
}

.orange-talk-section .orange-talk-inner .right-content hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.23);
  border-top: none;
  margin: 30px 0 20px;
}

@media screen and (max-width: 1200px) {
  .orange-talk-section .orange-talk-inner .right-content {
    padding: 45px 20px;
  }
}

@media screen and (max-width: 991px) {
  .orange-talk-section .orange-talk-inner {
    display: block;
  }
  .orange-talk-section .orange-talk-inner .left-content {
    width: 100%;
    padding: 30px 0;
  }
  .orange-talk-section .orange-talk-inner .left-content p {
    font-size: 14px;
  }
  .orange-talk-section .orange-talk-inner .right-content {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 30px 20px;
    min-height: auto;
  }
}

@media screen and (max-width: 560px) {
  .orange-talk-section .orange-talk-video iframe {
    height: 210px;
  }
  .orange-talk-section .orange-talk-inner .left-content .button-group {
    margin-top: 25px;
    text-align: center;
  }
  .orange-talk-section .orange-talk-inner .left-content .button-group .ic-btn {
    display: block;
    min-height: 40px;
    line-height: 40px;
    padding: 0 20px;
    width: 280px;
    margin: 0 auto 20px;
  }
}

/* blog */
.blog-title {
  color: #074a86;
  font-weight: bold;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: -0.01em;
  margin: 15px 0;
  max-width: 400px;
}

@media screen and (max-width: 991px) {
  .blog-title {
    font-size: 18px;
  }
}

.blog-subtitle {
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .blog-subtitle {
    font-size: 18px;
  }
}

.blog-body p,
.blog-body ul,
.blog-body ol {
  opacity: 0.85;
  font-weight: 300;
}

.tag-share-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
  max-width: 460px;
}

.tag-share-box .card-tags {
  margin-bottom: 0;
}

.tag-share-box .bookmark-share {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.tag-share-box .bookmark-share .date-readtime {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 15px;
  padding-right: 15px;
}

.tag-share-box .bookmark-share .share {
  background: url("../images/icons/orange-hub/share-o.svg") no-repeat bottom;
  background-size: 16px;
}

.tag-share-box.bottom-postion {
  max-width: 100%;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  padding-top: 20px;
  margin-bottom: 45px;
}

.tag-share-box.banner-bottom {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .tag-share-box {
    overflow: hidden;
  }
}

@media screen and (max-width: 560px) {
  .tag-share-box {
    display: block;
  }
  .tag-share-box .card-tags {
    margin-bottom: 20px;
  }
}

/* ic-comment-section  */
.ic-comment-section {
  padding: 20px 0 30px;
}

.ic-comment-section .accordion {
  max-width: 900px;
}

.ic-comment-section .comment-box {
  margin-top: 45px;
  max-width: 900px;
}

.ic-comment-section .comment-box h3 {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 140.62%;
  color: #000;
}

.ic-comment-section .comment-box form textarea {
  width: 100%;
  border: 0.5px solid #f37e20;
  border-radius: 5px;
  height: 68px;
  padding: 10px 20px;
  letter-spacing: -0.01em;
  color: #8b8b8b;
  margin-bottom: 30px;
}

.ic-comment-section .comment-box .comment-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.ic-comment-section .comment-box .comment-list p {
  margin-bottom: 20px;
  line-height: 22px;
  max-width: 750px;
}

.ic-comment-section .comment-box .comment-list p.name {
  margin-bottom: 10px;
  font-weight: 600;
}

.ic-comment-section .comment-box .comment-list .date-readtime {
  color: #999999;
}

.ic-comment-section .comment-box .comment-list .date-readtime span:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
}

.ic-comment-section .comment-box .link {
  color: #f37e20;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
}

.ic-comment-section .comment-box .more-comment {
  display: none;
}

@media screen and (max-width: 991px) {
  .ic-comment-section {
    padding: 0;
  }
  .ic-comment-section .accordion .accordion-list .accordion-head {
    padding: 16px 60px 16px 20px;
  }
  .ic-comment-section .comment-box {
    margin-top: 25px;
  }
  .ic-comment-section .comment-box h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .ic-comment-section .comment-box form textarea {
    height: 47px;
    margin-bottom: 20px;
  }
}

/* ic-blog-details */
.ic-blog-details {
  position: relative;
}

.ic-blog-details .section-inner {
  padding: 0 20px;
}

.ic-blog-details .ic-blog-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.ic-blog-details .ic-blog-inner::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  background: #f9f9f9;
  top: 0;
  right: 0;
  z-index: -1;
}

.ic-blog-details .ic-blog-inner .left-content {
  padding: 45px 45px 45px 0;
  width: 60%;
}

.ic-blog-details .ic-blog-inner .left-content p {
  font-size: 16px;
  line-height: 24px;
}

.ic-blog-details .ic-blog-inner .left-content p:not(:last-child) {
  margin-bottom: 15px;
}

.ic-blog-details .ic-blog-inner .left-content .bullet-list {
  padding-left: 15px;
  margin-left: 15px;
  margin-bottom: 35px;
}

.ic-blog-details .ic-blog-inner .left-content .bullet-list li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

.ic-blog-details .ic-blog-inner .left-content .bullet-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999999;
  left: -17px;
  top: 10px;
}

.ic-blog-details .ic-blog-inner .left-content .blog-img {
  margin-bottom: 30px;
  width: 100%;
}

.ic-blog-details .ic-blog-inner .left-content .ic-more {
  margin-top: 30px;
}

.ic-blog-details .ic-blog-inner .left-content .button-group {
  margin-top: 35px;
}

.ic-blog-details .ic-blog-inner .left-content .button-group .ic-more {
  margin-top: 0;
}

.ic-blog-details .ic-blog-inner .left-content .blog-header .button-group {
  margin-bottom: 40px;
}

.ic-blog-details .ic-blog-inner .right-content {
  background: #f9f9f9;
  padding: 45px 0 55px 55px;
  min-height: 540px;
  width: 40%;
}

.ic-blog-details .ic-blog-inner .right-content .share-box .youtube-text {
  margin-bottom: 0;
}

.ic-blog-details .ic-blog-inner .right-content .share-box h4 {
  margin-bottom: 15px;
}

.ic-blog-details .ic-blog-inner .right-content .divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.23);
  border-top: none;
  margin: 30px 0 20px;
}

.ic-blog-details .ic-blog-inner .right-content .blog-ads {
  margin: 20px 0;
}

.ic-blog-details .ic-blog-inner .right-content .blog-ads img {
  width: 100%;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards {
  background: #ad1e23;
  border-radius: 10px;
  padding: 25px 15px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .top-bar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .top-bar h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.05em;
  color: #fff;
  max-width: 215px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .top-bar .ic-more,
.ic-blog-details .ic-blog-inner .right-content .releted-cards .top-bar .ic-btn {
  margin-left: auto;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .top-bar .ic-btn {
  height: 26px;
  padding: 0 20px;
  line-height: 26px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card {
  margin-bottom: 10px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 20px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .media {
  border-radius: 0;
  width: 112px;
  margin-right: 15px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .content {
  width: calc(100% - 130px);
  padding: 0;
  border: none;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-top .blue-tag {
  margin-left: 0;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-title {
  height: auto;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-bottom {
  width: 100%;
  border-top: 1px solid #dedede;
  padding-top: 10px;
}

.ic-blog-details .ic-blog-inner .right-content .releted-cards .divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ic-blog-details.infograph-details .tag-share-box {
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .ic-blog-details .ic-blog-inner .right-content {
    padding: 45px 20px;
  }
}

@media screen and (max-width: 991px) {
  .ic-blog-details .ic-blog-inner {
    display: block;
  }
  .ic-blog-details .ic-blog-inner::after {
    display: none;
  }
  .ic-blog-details .ic-blog-inner .left-content {
    width: 100%;
    padding: 30px 0;
  }
  .ic-blog-details .ic-blog-inner .left-content p,
  .ic-blog-details .ic-blog-inner .left-content ol,
  .ic-blog-details .ic-blog-inner .left-content li,
  .ic-blog-details .ic-blog-inner .left-content ul {
    font-size: 14px;
  }
  .ic-blog-details .ic-blog-inner .left-content .bullet-list li {
    font-size: 14px;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header {
    background: #fff7eb;
    padding: 20px 20px 30px;
    margin: -30px -20px 25px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header .blog-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header .card-top {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header .blog-title {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header .tag-share-box {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .ic-blog-details .ic-blog-inner .left-content .blog-header .button-group {
    margin: 20px 0 0;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .ic-blog-details .ic-blog-inner .right-content {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 30px 20px;
  }
  .ic-blog-details .ic-blog-inner .right-content .blog-ads {
    margin-bottom: 0;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards {
    margin: 25px -20px 40px;
    border-radius: 0;
  }
  .ic-blog-details.infograph-details {
    background: #fff7eb;
  }
  .ic-blog-details.infograph-details .ic-blog-inner .left-content {
    padding: 30px 0 0;
  }
  .ic-blog-details.infograph-details .infograph-img {
    margin: 0 -20px;
  }
  .ic-blog-details.infograph-details .infograph-img img {
    width: 100%;
  }
  .ic-blog-details.infograph-details .tag-share-box {
    margin-bottom: 25px;
    display: block;
  }
  .ic-blog-details.infograph-details .tag-share-box .card-tags {
    margin-bottom: 20px;
  }
  .ic-blog-details.infograph-details .tag-share-box .card-tags .tab {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .ic-blog-details .ic-blog-inner .left-content .button-group {
    margin-top: 25px;
    text-align: center;
  }
  .ic-blog-details .ic-blog-inner .left-content .button-group .ic-btn {
    display: block;
    min-height: 40px;
    line-height: 40px;
    padding: 0 20px;
    width: 280px;
    margin: 0 auto 20px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner {
    padding: 20px 15px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .media {
    width: 95px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .content {
    width: calc(100% - 110px);
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-title {
    font-size: 12px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-top {
    margin-bottom: 10px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-top .date {
    font-size: 10px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-top .blue-tag {
    font-size: 10.5px;
    min-width: 55px;
    padding: 0 10px;
  }
  .ic-blog-details .ic-blog-inner .right-content .releted-cards .orangebook-card .card-inner .card-tags .tag {
    font-size: 11px;
  }
}

/*  */
.filter-section .sidebar-content .selection-filters-1 {
  border-bottom: 1px dashed #f37e20;
  padding: 10px 0 20px 0;
}

.filter-section .sidebar-content .selection-filters-1 li .title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.filter-section .sidebar-content .selection-filters-1 li .title img {
  margin-right: 10px;
}

.filter-section .sidebar-content .selection-filters-1 li ul {
  margin-left: 10px;
}

.filter-section .sidebar-content .selection-filters-1 li ul li {
  position: relative;
  padding: 10px 10px 10px 15px;
  cursor: pointer;
  font-weight: 600;
}

.filter-section .sidebar-content .selection-filters-1 li ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d1cfbb;
  border-radius: 50%;
  left: 0;
  top: 15px;
}

.filter-section .sidebar-content .selection-filters-1 li ul li.active {
  color: #f37e20;
  background: transparent;
}

@media screen and (max-width: 991px) {
  .filter-section .sidebar-content .selection-filters-1 {
    padding: 0 20px 10px;
  }
}

/* retirement-banner-section */
.retirement-banner-section {
  position: relative;
  overflow: hidden;
}

.retirement-banner-section .retirement-banner .section-inner {
  padding: 0 20px;
}

.retirement-banner-section .retirement-banner img {
  width: 100%;
}

.retirement-banner-section .retirement-banner .content {
  position: absolute;
  color: #fff;
  z-index: 1;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  text-align: left;
  bottom: 30px;
}

.retirement-banner-section .retirement-banner .content .title {
  color: #fff;
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
}

.retirement-banner-section .retirement-banner .content .golden-years {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .retirement-banner-section .retirement-banner .content .golden-years {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .retirement-banner-section .retirement-banner .content .golden-years {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 567px) {
  .retirement-banner-section .retirement-banner .content .golden-years {
    text-align: center;
  }
}

.retirement-banner-section .retirement-banner .content .golden-years img {
  width: inherit;
}

.retirement-banner-section .retirement-banner .content p {
  font-size: 22px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 460px;
}

@media only screen and (max-width: 1200px) {
  .retirement-banner-section .retirement-banner .content p {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .retirement-banner-section .retirement-banner .content p {
    margin-bottom: 30px;
    font-size: 22px;
  }
}

.retirement-banner-section .retirement-banner .content p.sub-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: 0.05em;
  max-width: 570px;
}

.retirement-banner-section .retirement-banner .content .button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.retirement-banner-section .retirement-banner .content .button-group .play-icon-text {
  max-width: 180px;
  margin: 0 28px;
  font-size: 14px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
}

.retirement-banner-section .float-play-icon {
  position: absolute;
  top: 45%;
  right: 25%;
  opacity: 0.95;
  border: 1px solid #f4f4f4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
}

.retirement-banner-section .notification-box {
  background: #f37e20;
}

.retirement-banner-section .notification-box .num {
  color: #f37e20;
}

@media screen and (max-width: 1200px) {
  .retirement-banner-section .retirement-banner .content {
    top: 60px;
  }
  .retirement-banner-section .notification-box {
    bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .retirement-banner-section .retirement-banner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .retirement-banner-section .retirement-banner .m-img {
    position: relative;
  }
  .retirement-banner-section .retirement-banner .content {
    position: static;
    background: #da4008;
    margin: 0 -20px;
    padding: 20px;
  }
  .retirement-banner-section .retirement-banner .content .button-group .ic-btn {
    padding: 10px 15px;
  }
  .retirement-banner-section .retirement-banner .section-inner {
    position: relative;
    width: 100%;
  }
  .retirement-banner-section .float-play-icon {
    right: calc(50% - 30px);
    -webkit-transform: translateX(10%) scale(0.8);
    transform: translateX(10%) scale(0.8);
    top: 50%;
  }
  .retirement-banner-section .notification-box {
    bottom: 0;
    -webkit-transform: translateX(10%) scale(0.8);
            transform: translateX(10%) scale(0.8);
  }
}

@media screen and (max-width: 567px) {
  .retirement-banner-section .retirement-banner .content .title {
    font-size: 32px;
    font-weight: 600;
  }
  .retirement-banner-section .retirement-banner .content p {
    font-size: 16px;
    margin: 0 auto 30px;
    text-align: center;
  }
  .retirement-banner-section .retirement-banner .content p.sub-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
  }
  .retirement-banner-section .retirement-banner .content .button-group {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .retirement-banner-section .retirement-banner .content .button-group .ic-btn {
    margin: 0 auto;
  }
  .retirement-banner-section .retirement-banner .content .button-group .play-icon-text {
    margin: 20px auto 0;
  }
}

/* retirement-tab-section */
.retirement-tab-section {
  background: #fff;
}

.retirement-tab-section .section-inner {
  padding: 20px 20px 0px;
}

@media screen and (max-width: 991px) {
  .retirement-tab-section .section-inner {
    padding: 30px 0 0;
  }
}

@media screen and (max-width: 576px) {
  .retirement-tab-section .section-inner {
    padding: 15px 0 0;
  }
}

.retirement-tab-section .retirement-tab-content {
  position: relative;
  background: #f37e20;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 20px;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
          box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
  border-radius: 8px 8px 0 0;
  color: #fff;
}

.retirement-tab-section .retirement-tab-content .media {
  position: absolute;
  bottom: 0;
  left: 5%;
}

.retirement-tab-section .retirement-tab-content .content {
  text-align: center;
  margin: 0 auto;
}

.retirement-tab-section .retirement-tab-content h5 {
  font-weight: 600;
  font-size: 19px;
  line-height: 138%;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}

.retirement-tab-section .retirement-tab-content .link-tab-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: 0.02em;
}

.retirement-tab-section .retirement-tab-content .link-tabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.retirement-tab-section .retirement-tab-content .link-tabs li {
  border: 1px solid #ffb57a;
  border-radius: 7.2px;
  padding: 6px 10px;
  margin: 0 7px 0 12px;
  cursor: pointer;
}

.retirement-tab-section .retirement-tab-content .link-tabs li:last-child {
  margin-right: 0;
}

.retirement-tab-section .retirement-tab-content .link-tabs li a {
  color: #fff;
  text-decoration: none;
}

.retirement-tab-section .retirement-tab-content .link-tabs li.active {
  background: #ad1e23;
  border: 1px solid #ad1e23;
}

@media screen and (max-width: 991px) {
  .retirement-tab-section .retirement-tab-content {
    border-radius: 0;
  }
  .retirement-tab-section .retirement-tab-content .media {
    left: -10px;
  }
  .retirement-tab-section .retirement-tab-content .content {
    padding-bottom: 40px;
    position: relative;
  }
  .retirement-tab-section .retirement-tab-content .link-tab-group {
    display: block;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs {
    display: block;
    position: absolute;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li {
    display: none;
    margin: 0;
    border: none;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li .m-show {
    display: inline-block;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li a {
    color: #4b4b4b;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value {
    display: block;
    padding-right: 40px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: url("../images/icons/down-arrow-w.svg") no-repeat;
    background-size: 15px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value.active {
    background: #ad1e23 !important;
    border: 1px solid #ad1e23 !important;
    border-radius: 0px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value.active a {
    color: #fff;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open {
    background: #fff;
    -webkit-box-shadow: 2px 2px 22px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 22px rgba(0, 0, 0, 0.15);
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open li {
    display: block;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open li.dropdown-value::before {
    top: 10px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open li.active {
    background: transparent;
    border: none;
  }
}

@media screen and (max-width: 576px) {
  .retirement-tab-section .retirement-tab-content {
    padding: 10px 10px 10px 0;
  }
  .retirement-tab-section .retirement-tab-content .media {
    left: -10px;
    max-width: 150px;
  }
  .retirement-tab-section .retirement-tab-content .content {
    margin-left: 0px;
    padding-bottom: 25px;
    width: 100%;
  }
  .retirement-tab-section .retirement-tab-content .content h5 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs {
    width: 300px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value {
    padding-right: 30px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value::before {
    top: 12px;
    right: 10px;
    background-size: 10px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open li.dropdown-value::before {
    top: 3px;
    right: 14px;
  }
}

@media screen and (max-width: 413px) {
  .retirement-tab-section .retirement-tab-content .media {
    max-width: 140px;
  }
  .retirement-tab-section .retirement-tab-content .content h5 {
    font-size: 11px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0px;
    padding: 5px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value {
    padding-right: 20px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li.dropdown-value::before {
    top: 10px;
    right: 4px;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs.open li.dropdown-value::before {
    top: 2px;
    right: 6px;
  }
}

@media screen and (max-width: 340px) {
  .retirement-tab-section .retirement-tab-content .content {
    padding-bottom: 40px;
  }
  .retirement-tab-section .retirement-tab-content .content h5 {
    text-align: center;
  }
  .retirement-tab-section .retirement-tab-content .link-tabs li {
    text-align: center;
  }
}

.retirement-tab-section .plan-for-retirement {
  position: relative;
}

.retirement-tab-section .plan-for-retirement .section-title.text-normal {
  font-size: 40px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 10px;
}

.retirement-tab-section .plan-for-retirement .notification-box {
  background: #ad1e23;
}

.retirement-tab-section .plan-for-retirement .notification-box .num {
  color: #ad1e23;
}

.retirement-tab-section .plan-for-retirement .sticky-nav-tab {
  overflow: initial;
}

.retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky {
  position: fixed;
  top: 130px;
  background: #fff;
  z-index: 9;
  left: 0;
  width: 100%;
  padding: 15px 0;
}

.retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky .nav-tab {
  max-width: 1260px;
  margin: 0 auto;
}

.retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky + .tab-content {
  padding-top: 110px;
}

.retirement-tab-section .plan-for-retirement .nav-tab {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  border: 1px solid #fdebdd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 12px 20px rgba(243, 126, 32, 0.12);
          box-shadow: 0px 12px 20px rgba(243, 126, 32, 0.12);
  border-radius: 55px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.retirement-tab-section .plan-for-retirement .nav-tab li {
  width: 20%;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  padding: 0 20px 0 38px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  height: 68px;
}

.retirement-tab-section .plan-for-retirement .nav-tab li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid transparent;
  bottom: 0;
  left: 0;
}

.retirement-tab-section .plan-for-retirement .nav-tab li:first-child::after {
  left: 30px;
  width: calc(100% - 30px);
}

.retirement-tab-section .plan-for-retirement .nav-tab li:last-child::after {
  right: 30px;
  left: auto;
  width: calc(100% - 30px);
}

.retirement-tab-section .plan-for-retirement .nav-tab li:not(:last-child) {
  border-right: 1px solid #fdebdd;
}

.retirement-tab-section .plan-for-retirement .nav-tab li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  color: #666666;
  text-decoration: none;
  width: 100%;
  min-height: 68px;
  font-weight: bold;
  font-size: 15px;
  line-height: 120%;
  color: #828282;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .icon {
  display: inline-block;
  min-width: 30px;
  min-height: 33px;
  line-height: 33px;
  text-align: center;
  margin-right: 10px;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .pro-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/understand-needs-b.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .goal-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/goal-icon-b.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .graph-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/graph-icon-b.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .identify-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/identify-icon-b.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li .expert-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/expert-icon-b.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active {
  background: #fff9f7;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active a {
  font-weight: 800;
  color: #4b4b4b;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active::after {
  border-bottom: 3px solid #f37e20;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active .pro-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/understand-needs.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active .goal-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/goal-icon-o.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active .graph-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/graph-icon-o.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active .identify-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/identify-icon-o.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .nav-tab li.active .expert-icon {
  background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/expert-icon-o.svg") no-repeat;
}

.retirement-tab-section .plan-for-retirement .notification-box {
  top: 298px;
  bottom: auto;
}

.retirement-tab-section .plan-for-retirement .section-inner {
  padding-top: 0;
}

.retirement-tab-section .plan-for-retirement .section-heading {
  padding-bottom: 30px;
}

.retirement-tab-section .plan-for-retirement .section-heading p {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.retirement-tab-section .plan-for-retirement .take-a-look {
  background: #fdebdd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  border-bottom: 2px solid #f37e20;
  border-left: 2px solid #f37e20;
  border-right: 2px solid #f37e20;
  padding: 27px 0;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .retirement-tab-section .plan-for-retirement .take-a-look {
    padding: 20px 30px;
    margin-bottom: 5px;
  }
}

.retirement-tab-section .plan-for-retirement .take-a-look p {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
}

@media screen and (max-width: 567px) {
  .retirement-tab-section .plan-for-retirement .take-a-look p {
    font-size: 16px;
    line-height: 23px;
    margin: 0 20px;
  }
}

@media screen and (max-width: 1200px) {
  .retirement-tab-section .plan-for-retirement .nav-tab {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow-x: auto;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 -2px;
    max-width: 250px;
    width: 100%;
    white-space: normal;
  }
  .retirement-tab-section .plan-for-retirement .tab-content {
    margin-top: 110px;
  }
}

@media screen and (max-width: 991px) {
  .retirement-tab-section .plan-for-retirement {
    background: #fff;
  }
  .retirement-tab-section .plan-for-retirement .section-heading {
    padding: 30px 20px 20px;
  }
  .retirement-tab-section .plan-for-retirement .section-heading .section-title {
    text-align: center;
    font-size: 32px;
  }
  .retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky {
    top: 90px;
  }
  .retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky + .tab-content {
    padding-top: 0;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab {
    border-radius: 0;
    white-space: normal;
    overflow-x: initial;
    margin-bottom: 0;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li {
    display: none;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    height: 48px;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li.dropdown-value {
    display: block;
    background: transparent;
    border: none;
    padding: 0 40px 0 20px;
    height: 65px;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li.dropdown-value a {
    min-height: 68px;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li.dropdown-value::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: url("/content/dam/icicibank/india/managed-assets/investment/retirement-planning/images/down-arrow-o.svg") no-repeat;
    background-size: 15px;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li.dropdown-value::after {
    display: block !important;
    left: 0;
    width: 100%;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li a {
    font-size: 16px;
    min-height: 48px;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab li a br {
    display: none;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab.open li {
    display: block;
    border: none;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab.open li.dropdown-value::before {
    top: 25px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .retirement-tab-section .plan-for-retirement .nav-tab.open li.active {
    background: transparent;
  }
  .retirement-tab-section .plan-for-retirement .nav-tab.open li.active::after {
    display: none;
  }
  .retirement-tab-section .plan-for-retirement .notification-box {
    top: auto;
    bottom: 50px;
    -webkit-transform: translateX(10%) scale(0.8);
            transform: translateX(10%) scale(0.8);
  }
  .retirement-tab-section .plan-for-retirement .tab-content {
    margin-top: 70px;
  }
}

@media screen and (max-width: 576px) {
  .retirement-tab-section .plan-for-retirement .section-heading {
    padding: 20px;
  }
  .retirement-tab-section .plan-for-retirement .section-heading .section-title {
    font-size: 26px;
  }
}

/* plan-slider-item */
.rp-slider .rp-slider-item .section-title {
  max-width: 740px;
  text-align: left;
  text-transform: initial;
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  color: #000;
}

@media screen and (max-width: 576px) {
  .rp-slider .rp-slider-item .section-title {
    font-size: 22px !important;
  }
}

.rp-slider .rp-slider-item .rp-content-grid {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-media {
  margin-right: 40px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content h4 {
  font-size: 22px;
  line-height: 138%;
  letter-spacing: -0.02em;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-weight: 600;
  font-size: 16.676px;
  line-height: 138%;
  color: #646464;
  margin: 25px 0 70px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box.curr-age {
  margin-bottom: 30px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value p {
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 22px;
  line-height: 138%;
  color: #3d3d3d;
  padding-right: 32px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .minus-sign,
.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .plus-sign {
  min-width: 32px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  color: #fff;
  background: #ad1e23;
  border-radius: 6.31934px;
  cursor: pointer;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .value {
  border-radius: 6.31934px;
  background: #f4f4f4;
  height: 42px;
  line-height: 42px;
  margin: 0 7.5px;
  text-align: center;
  width: 136px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .value input {
  border: none;
  max-width: 20px;
  background: #f4f4f4;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value.rp-amount .value input {
  max-width: 70px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .btn-inp-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 740px) {
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .btn-inp-wrap {
    max-width: 250px;
  }
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .or-txt {
  font-weight: bold;
  font-size: 14.043px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #f37e20;
  margin: 0 35px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .radio-list {
  border-radius: 6.31934px;
  background: #fff;
  margin-left: 0;
  padding: 14px 32px 14px 42px;
  font-weight: 600;
  font-size: 16.676px;
  line-height: 138%;
  text-transform: capitalize;
  color: #333333;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .radio-list .checkmark {
  top: 18px;
  left: 14px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con {
  background-color: #fdebdd;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 462px;
  padding: 10px 30px;
}

@media only screen and (max-width: 991px) {
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con {
    margin: 0 auto 25px;
    text-align: left;
  }
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con p {
  font-weight: 700;
  font-size: 12px;
  line-height: 128%;
  letter-spacing: 0.05em;
  color: #3d3d3d;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: 10px;
}

@media only screen and (max-width: 567px) {
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .assum-con ul li {
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  list-style: disc;
  margin: 0 15px;
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .group-btn .ic-btn:first-child {
  margin-right: 15px;
}

@media only screen and (max-width: 468px) {
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .group-btn .ic-btn:first-child {
    margin: 0 0 15px;
  }
}

.rp-slider .rp-slider-item .rp-content-grid .rp-content .ic-btn {
  min-width: 182px;
}

.rp-slider .rp-slider-item.lifestyle-content .rp-content-grid {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box {
  width: 40%;
  padding-right: 20px;
  border-right: 1px solid #ebe7e7;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box {
  background: #f37e20;
  border-radius: 8px;
  padding: 24px;
  min-height: 80px;
  position: relative;
  color: #fff;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  width: 100%;
}

@media only screen and (max-width: 1220px) {
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 991px) {
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

@media only screen and (max-width: 430px) {
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details {
  position: relative;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 1279px) {
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details:after {
    display: none;
  }
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details:last-child:after {
  display: none;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details .exp-price {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .expense-details-top .exp-details span {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .estimate-amt {
  background: #ffebdc;
  border-radius: 8px;
  margin-top: 12px;
  padding: 10px;
  text-align: center;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .estimate-amt p {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  max-width: 100%;
  color: #f37e20;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box .estimate-amt .est-amt {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #f37e20;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box img {
  position: absolute;
  right: 25px;
  bottom: 0;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  max-width: 315px;
  margin-bottom: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box ul li {
  position: relative;
  padding: 0 3px 0 18px;
  width: 50%;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .left-box ul li::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("../images/duble-tick.svg") no-repeat center center;
  left: 0;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box {
  width: 63%;
  padding-left: 25px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
  color: #3d3d3d;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps .rp-step {
  position: relative;
  background: #f37e20;
  padding: 12px 10px;
  border: 10px solid #f4f4f4;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  outline: 1px solid #f37e20;
  color: #fff;
  text-align: center;
  margin: 0 10px 15px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps .rp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 9px;
  background: url("../images/polygon-arrow.svg") no-repeat;
  right: -30px;
  top: calc(50% - 5px);
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps .rp-step .num {
  background: #fff;
  border: 1px solid #f37e20;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #ad1e23;
  font-weight: bold;
  border-radius: 50%;
  font-size: 16px;
  position: absolute;
  top: -3px;
  left: -10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps .rp-step p {
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .rp-steps .rp-step img {
  margin: 0 auto 5px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list {
  background: #064b89;
  border-radius: 8px;
  padding: 15px 25px;
  margin-top: 12px;
}

@media only screen and (max-width: 991px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list {
    margin-bottom: -50px;
  }
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 0 30px 0 25px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content:first-child {
  padding-left: 0;
}

@media only screen and (max-width: 567px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content:first-child {
    padding-right: 0;
  }
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .icon {
  margin-right: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc {
  color: #eeeeee;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 144%;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  margin-bottom: 5px;
  color: #fff;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc a {
  font-weight: bold;
  font-size: 12px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc a.link {
  margin-right: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc a.spec-link {
  margin-left: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content:last-child a.ic-more {
  margin-left: 0;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-top {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.rp-slider .rp-slider-item.lifestyle-content .right-box .info-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (max-width: 567px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: inherit;
  }
}

@media only screen and (max-width: 567px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-wrap .info-content:last-child {
    padding-left: 0;
  }
}

.rp-slider .rp-progress {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.rp-slider .rp-progress li {
  position: relative;
  margin-right: 15px;
}

.rp-slider .rp-progress li span {
  display: inline-block;
  text-indent: -999px;
  width: 9px;
  height: 9px;
  background: #fff;
  border: 1px solid #f37e20;
  border-radius: 50%;
  overflow: hidden;
}

.rp-slider .rp-progress li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 15px;
  height: 1px;
  border-bottom: 1px dashed #f37e20;
}

.rp-slider .rp-progress li:last-child::after {
  display: none;
}

.rp-slider .rp-progress li.active span {
  background: #f37e20;
}

.rp-slider .rp-progress li.active::after {
  border-bottom: 1px solid #f37e20;
}

.rp-slider .rp-progress li.current span {
  background: #f37e20;
}

.rp-slider .rp-progress li.current::after {
  border-bottom: 1px dashed #f37e20;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content {
    padding: 0 10px;
  }
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .icon {
    width: 40px;
  }
}

@media screen and (max-width: 991px) {
  .rp-slider .rp-slider-item .section-title {
    padding: 30px 50px 0;
    text-align: center !important;
    margin: 0 auto 20px;
  }
  .rp-slider .rp-slider-item .rp-content-grid {
    display: block;
    background: #fff7eb;
    border: 1px solid #f37e20;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 29px;
    margin: 0 15px 40px;
    padding: 60px 30px 110px;
    overflow: hidden;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-media {
    display: none;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content {
    text-align: center;
    margin: 0 auto;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box {
    display: block;
    margin-bottom: 30px;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .value {
    width: 236px;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .or-txt {
    margin: 0 10px;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .radio-list {
    padding: 14px 32px 14px 12px;
  }
  .rp-slider .rp-slider-item.lifestyle-content .rp-content-grid {
    padding: 0 10px 170px;
  }
  .rp-slider .rp-slider-item.lifestyle-content .left-box,
  .rp-slider .rp-slider-item.lifestyle-content .right-box {
    width: 100%;
    padding: 0;
    border: none;
  }
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box {
    margin: 0 -15px 20px;
    width: calc(100% + 30px) !important;
  }
  .rp-slider .rp-slider-item.lifestyle-content .left-box .orange-box img {
    right: 0;
  }
  .rp-slider .rp-slider-item.lifestyle-content .right-box {
    margin-top: 20px;
  }
  .rp-slider .rp-progress {
    position: absolute;
    bottom: 135px;
    width: 100%;
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .rp-slider .rp-progress {
    bottom: 15px;
    left: 0;
  }
}

@media screen and (max-width: 991px) {
  .rp-slider .notification-box {
    bottom: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list {
    display: block;
  }
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content {
    padding: 0 15px;
  }
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content:last-child {
    border: none;
    margin-top: 15px;
  }
  .rp-slider .rp-slider-item .rp-content-grid {
    margin-bottom: 140px;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rp-slider .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value p {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 567px) {
  .rp-slider .rp-slider-item .rp-content-grid {
    padding: 20px 30px 110px;
  }
}

@media screen and (max-width: 480px) {
  .rp-slider .rp-slider-item.lifestyle-content .right-box .info-content-list .info-content .desc a.ic-more {
    margin-left: 0;
  }
}

.notification-enabled .retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky {
  top: 90px;
}

@media screen and (max-width: 991px) {
  .notification-enabled .retirement-tab-section .plan-for-retirement .sticky-nav-tab.sticky {
    top: 150px;
  }
}

/* manage-progress-section */
.manage-progress-section {
  position: relative;
  background: #f4f4f4;
}

.manage-progress-section .manage-progress-tab {
  position: relative;
  background: #064b89;
}

.manage-progress-section .manage-progress-tab::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background: #f37e20;
}

.manage-progress-section .manage-progress-tab .section-inner {
  padding: 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #fff;
}

.manage-progress-section .manage-progress-tab .section-inner .left-block {
  background: #f37e20;
  position: relative;
  width: 36%;
  padding: 0 70px 0 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.manage-progress-section .manage-progress-tab .section-inner .left-block::after {
  content: "";
  position: absolute;
  right: -19px;
  bottom: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #f37e20;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block {
  width: 64%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: 50%;
  padding: 17px 0 17px 40px;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li .icon {
  min-width: 42px;
  margin-right: 12px;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt {
  color: #fff;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt h5 {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
}

.manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt span {
  opacity: 0.6;
  font-weight: 300;
}

@media screen and (max-width: 1200px) {
  .manage-progress-section .manage-progress-tab .section-inner .left-block {
    width: 25%;
    padding: 10px 20px 10px 0;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block {
    width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .manage-progress-section .manage-progress-tab::before {
    display: none;
  }
  .manage-progress-section .manage-progress-tab .section-inner {
    display: block;
    padding: 0;
  }
  .manage-progress-section .manage-progress-tab .section-inner .left-block {
    width: 100%;
    padding: 20px;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block {
    width: 100%;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block ul li {
    padding: 17px 0 17px 20px;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block ul li .icon {
    min-width: 30px;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt h5 {
    font-size: 12px;
    line-height: 1.2;
  }
  .manage-progress-section .manage-progress-tab .section-inner .right-block ul li .desc-txt a {
    font-size: 12px;
    line-height: 1.2;
  }
}

.manage-progress-section .manage-progress-step {
  position: relative;
  background-color: #fff;
}

.manage-progress-section .manage-progress-step .section-inner {
  padding: 60px 20px 100px;
}

.manage-progress-section .manage-progress-step:last-child .section-inner {
  padding-top: 0;
}

.manage-progress-section .manage-progress-step:last-child .notification-box {
  top: -30px;
}

.manage-progress-section .section-title {
  font-size: 40px;
  letter-spacing: -0.01em;
  color: #000;
}

.manage-progress-section .section-title p {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #666666;
  margin: 10px 85px 0 0;
}

.manage-progress-section .section-title .icon {
  width: 50px;
  height: 50px;
  background: #f37e20;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  margin-left: 30px;
  cursor: pointer;
}

.manage-progress-section .section-title .icon::after {
  content: "+";
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.manage-progress-section .section-title.active .icon::after {
  content: "-";
}

.manage-progress-section .manage-progress-slider {
  max-width: 1070px;
  margin: 100px auto 0;
  display: none;
}

.manage-progress-section .manage-progress-slider.active {
  display: block;
}

.manage-progress-section .manage-progress-slider .slick-dots {
  text-align: left;
  position: static;
  margin-top: 20px;
}

.manage-progress-section .manage-progress {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.manage-progress-section .manage-progress .content {
  max-width: 485px;
  margin-right: 60px;
}

.manage-progress-section .manage-progress .content h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.01em;
  color: #3d3d3d;
  margin-bottom: 26px;
}

.manage-progress-section .manage-progress .content h2 strong {
  background-image: -webkit-gradient(linear, left top, right top, from(#ad1e23), to(#f37e20));
  background-image: linear-gradient(to right, #ad1e23, #f37e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.manage-progress-section .manage-progress .content h2 span {
  color: #828282;
}

.manage-progress-section .manage-progress .content p {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #828282;
  max-width: 420px;
}

.manage-progress-section .manage-progress .media {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.manage-progress-section .notification-box {
  background: #ad1e23;
  top: 30px;
  bottom: auto;
}

.manage-progress-section .notification-box .num {
  color: #ad1e23;
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .manage-progress-section .section-inner {
    padding: 40px 20px 130px;
  }
  .manage-progress-section .manage-progress-slider {
    margin-top: 40px;
  }
  .manage-progress-section .manage-progress-slider .slick-dots {
    text-align: center;
    position: static;
    margin-top: 20px;
  }
  .manage-progress-section .manage-progress {
    display: block;
  }
  .manage-progress-section .manage-progress .content {
    margin: 0;
    max-width: 100%;
  }
  .manage-progress-section .manage-progress .content h2,
  .manage-progress-section .manage-progress .content p {
    max-width: 100%;
  }
  .manage-progress-section .manage-progress .media {
    margin-top: 30px;
  }
  .manage-progress-section .manage-progress .media img {
    width: 100%;
  }
  .manage-progress-section .notification-box {
    top: auto !important;
    bottom: 30px;
    -webkit-transform: translateX(10%) scale(0.8);
            transform: translateX(10%) scale(0.8);
  }
}

@media screen and (max-width: 567px) {
  .manage-progress-section .section-title {
    font-size: 26px;
    text-align: left;
  }
  .manage-progress-section .section-title .icon {
    width: 35px;
    height: 35px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
  }
  .manage-progress-section .manage-progress .content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .manage-progress-section .manage-progress .content p {
    font-size: 16px;
    line-height: 1.3;
  }
}

/* retirement-nav-tab */
.retirement-nav-tab {
  position: absolute;
  z-index: 1;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .retirement-nav-tab {
    position: static;
  }
}

/* retirement-button-links */
.retirement-button-links {
  position: relative;
}

.retirement-button-links .retirement-button-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: -50px;
  margin-bottom: -95px;
}

.retirement-button-links .retirement-button {
  margin: 0 -10px;
}

.retirement-button-links .retirement-button a {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 125%;
  background: #fff1e9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 86px;
  display: inline-block;
  padding: 16px 25px 16px 80px;
  color: #f37e20;
  margin: 0 10px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 12px rgba(142, 166, 188, 0.23);
          box-shadow: 0px 4px 12px rgba(142, 166, 188, 0.23);
  border-radius: 10px;
  min-width: 245px;
}

.retirement-button-links .retirement-button a:hover {
  background: #f37e20;
  color: #fff;
}

.retirement-button-links .retirement-button a .icon {
  position: absolute;
  left: 18px;
  top: calc(50% - 24px);
}

.retirement-button-links .notification-alert {
  top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  max-width: 370px;
  border-radius: 50px 0 0 50px;
  text-align: left;
  z-index: 1;
  padding: 10px 15px;
}

.retirement-button-links .notification-alert p {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  font-style: normal;
}

.retirement-button-links .notification-alert p span {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 120px) {
  .retirement-button-links .notification-alert {
    top: -100px;
  }
}

@media screen and (max-width: 991px) {
  .retirement-button-links {
    position: absolute;
  }
  .retirement-button-links .section-inner {
    padding-right: 0;
  }
  .retirement-button-links .retirement-button-group {
    margin-top: -40px;
    margin-bottom: 0;
  }
  .retirement-button-links .retirement-button-group .retirement-button {
    width: 100%;
    margin: 0;
    white-space: nowrap;
    overflow-x: auto;
    width: calc(100vw - 20px);
  }
  .retirement-button-links .retirement-button-group .retirement-button a {
    border: 1px solid #ffc596;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 10px;
    margin: 0;
    min-height: 75px;
    padding: 10px 25px 10px 80px;
    margin-right: 20px;
  }
  .retirement-button-links .retirement-button-group .retirement-button a .d-block {
    display: block;
    margin-top: 5px;
  }
  .retirement-button-links .retirement-button-group .retirement-button a:not(:last-child) {
    margin-bottom: 12px;
  }
  .retirement-button-links .notification-alert {
    display: none;
  }
}

/* profile-tab-section */
.profile-tab-section .section-inner {
  padding: 0 20px;
}

.profile-tab-section .profile-tabs {
  position: relative;
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
          box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
  border-radius: 8px;
  margin-bottom: -50px;
}

.profile-tab-section .profile-tabs .profile-tab {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  height: 104px;
  color: #666666;
  padding: 0 20px;
}

.profile-tab-section .profile-tabs .profile-tab:first-child {
  border-radius: 7px 0 0 7px;
}

.profile-tab-section .profile-tabs .profile-tab:last-child {
  border-radius: 0 7px 7px 0;
}

.profile-tab-section .profile-tabs .profile-tab strong {
  display: block;
}

.profile-tab-section .profile-tabs .profile-tab p {
  max-width: 140px;
  margin-right: 10px;
}

.profile-tab-section .profile-tabs .profile-tab img {
  height: 104px;
}

.profile-tab-section .profile-tabs .profile-tab.active {
  background: #f37e20;
  color: #fff;
}

.profile-tab-section .profile-tabs .profile-tab.active img {
  height: 130px;
  position: relative;
  bottom: 13px;
}

.profile-tab-section .profile-tabs .profile-tab.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: calc(50% - 30px);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f37e20;
}

.profile-tab-section .profile-tabs .profile-tab:last-child p {
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  .profile-tab-section .section-title {
    text-align: center;
  }
  .profile-tab-section .profile-tabs {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 15px 0;
    margin-bottom: -15px;
  }
  .profile-tab-section .profile-tabs .profile-tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 -2px;
    border: 1px solid #e4e4e4;
    background: #fff;
    vertical-align: middle;
  }
  .profile-tab-section .profile-tabs .profile-tab p {
    white-space: normal;
  }
}

/* retirement-journey */
.retirement-journey {
  padding: 60px 0 0;
  letter-spacing: -0.01em;
}

.retirement-journey .section-title {
  letter-spacing: -0.01em;
}

.retirement-journey .grey-bg {
  padding: 40px 0 80px;
}

.retirement-journey p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.retirement-journey .retirement-journey-ul {
  max-width: 1024px;
  margin: -118px auto -10px;
  position: relative;
  overflow: hidden;
}

.retirement-journey .retirement-journey-ul::after {
  position: absolute;
  content: "";
  border-bottom: 1px dashed #f37e20;
  height: 2px;
  width: 700px;
  left: 16%;
  top: calc(50% + 10px);
}

.retirement-journey .retirement-journey-ul ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.retirement-journey .retirement-journey-ul li {
  display: inline-block;
  width: 33%;
}

.retirement-journey .retirement-journey-ul li:nth-child(2) {
  text-align: center;
}

.retirement-journey .retirement-journey-ul li:last-child {
  text-align: right;
}

.retirement-journey .retirement-journey-ul li span {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  -webkit-box-shadow: 0px 4px 12px rgba(142, 166, 188, 0.15);
          box-shadow: 0px 4px 12px rgba(142, 166, 188, 0.15);
  color: #ad1e23;
  border: 1px solid #ad1e23;
}

.retirement-journey .retirement-journey-ul li span img {
  display: block;
  margin: 0 auto 10px;
}

@media screen and (max-width: 991px) {
  .retirement-journey {
    padding: 0;
  }
  .retirement-journey .section-title {
    text-align: center;
  }
  .retirement-journey .grey-bg {
    padding: 40px 0 50px;
  }
  .retirement-journey .retirement-journey-ul {
    margin-top: -90px;
  }
  .retirement-journey .retirement-journey-ul::after {
    width: 70%;
  }
  .retirement-journey .retirement-journey-ul li span {
    width: 75px;
    height: 75px;
  }
  .retirement-journey .retirement-journey-ul li span img {
    margin: 60px auto 30px;
    width: 35px;
  }
}

/* retirement-calculator */
.retirement-calculator {
  position: relative;
}

.retirement-calculator .calculator-container {
  position: relative;
  padding: 30px 40px;
  background: #fff3ed;
}

.retirement-calculator .calculator-container .calculator-step-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-calculator .calculator-container .calculator-step-inner .notification-alert {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  max-width: 370px;
  border-radius: 50px 0 0 50px;
  text-align: left;
  z-index: 1;
}

.retirement-calculator .calculator-container .calculator-step-inner .notification-alert p {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  font-style: normal;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-media {
  width: 320px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 65px;
  padding-top: 20px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-media p {
  color: #ad1e23;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-media .ic-btn {
  background: #ad1e23;
  position: absolute;
  bottom: 0;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-media .ic-btn:hover {
  color: #fff;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content {
  width: calc(100% - 320px);
  padding: 10px 20px 80px 45px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list {
  position: relative;
  min-height: 205px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list.calculator-age-list {
  padding-top: 0;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list h5 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 138%;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .value {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  font-weight: bold;
  font-size: 36px;
  color: #f37e20;
  text-transform: uppercase;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .value input {
  border: none;
  background: transparent;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .value input:focus {
  background: transparent !important;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .value #rp-age-input {
  width: 45px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .range input[type="range"] {
  width: 100%;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .input-box .range-figures {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  color: #666666;
  margin-top: 8px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: 25px -10px 0;
  width: calc(100% + 30px);
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-bottom: 1px solid #4b4b4b;
  margin: 0 15px;
  padding: 10px 0;
  width: 50%;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .icon {
  margin-right: 10px;
  min-width: 42px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box {
  width: calc(100% - 30px);
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input {
  width: 100%;
  border: none;
  background: transparent;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input:focus {
  background: transparent !important;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input::-webkit-input-placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input:-ms-input-placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input::-ms-input-placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input::placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input::-moz-placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .input-box input::-webkit-input-placeholder {
  background: #fff3ed;
  border: none;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner .error {
  position: absolute;
  bottom: -20px;
  color: #ff0000;
  font-size: 10px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -4px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  width: calc(33% - 8px);
  background: #fff;
  border: 1px solid #ad1e23;
  color: #ad1e23;
  height: 40px;
  line-height: 40px;
  padding: 0 15px 0 40px;
  border-radius: 5px;
  margin: 0 4px 8px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list.active, .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list:hover {
  background: #ad1e23;
  color: #fff;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list.active .tooltips .tooltips-icon, .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list:hover .tooltips .tooltips-icon {
  background: url("../images/retirement-planner/help-icon-w.svg") no-repeat;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .checkmark {
  top: 11px;
  left: 15px;
  width: 15px;
  height: 15px;
  border: 1px solid #ad1e23;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .checkmark::after {
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  background: #ad1e23;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips {
  margin-left: auto;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips .tooltips-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../images/retirement-planner/help-icon-g.svg") no-repeat;
  position: relative;
  top: 3px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips .tooltips-icon:hover {
  background: url("../images/retirement-planner/help-icon-w.svg") no-repeat;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list:nth-child(3n) .tooltips .tooltiptext {
  left: auto;
  right: -20px;
}

.retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list:nth-child(3n) .tooltips .tooltiptext::before, .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list:nth-child(3n) .tooltips .tooltiptext::after {
  left: auto;
  right: 18px;
}

.retirement-calculator .calculator-container .slick-dots {
  text-align: left;
  bottom: 10px;
  left: 375px;
  width: 200px;
}

.retirement-calculator .calculator-container .slick-dots li {
  background: transparent;
  border: 1px solid #ec6423;
  width: 9px;
  height: 9px;
}

.retirement-calculator .calculator-container .slick-dots li.slick-active {
  background: #ec6423;
}

.retirement-calculator .calculator-container .button-group {
  position: absolute;
  right: 65px;
  bottom: 30px;
}

.retirement-calculator .calculator-container .button-group .ic-btn {
  outline: none;
  min-width: 150px;
}

@media screen and (max-width: 991px) {
  .retirement-calculator .calculator-container {
    padding: 40px 30px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner {
    display: block;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-media {
    position: relative;
    width: 100%;
    padding: 0 0 40px;
    margin-bottom: 40px;
    border-right: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-media img {
    margin: 0 auto;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-media p {
    max-width: 450px;
    margin: 20px auto 0;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-media .ic-btn {
    position: static;
    margin-top: 25px;
    max-width: 440px;
    width: 100%;
    padding: 12.5px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content {
    width: 100%;
    padding: 0;
    background: transparent;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list {
    padding: 0;
    display: block;
    min-height: 170px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list.calculator-age-list {
    padding: 0;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group {
    display: block;
    margin: 25px 0 0;
    width: 100%;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner {
    width: 100%;
    margin: 0 0 20px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .form-group .form-group-inner:not(:last-child) {
    margin-bottom: 20px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list {
    width: 100%;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips .tooltiptext {
    left: auto;
    right: -20px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips .tooltiptext::before, .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list .radio-list-group .radio-list .tooltips .tooltiptext::after {
    left: auto;
    right: 18px;
  }
  .retirement-calculator .calculator-container .calculator-step-inner .calculator-content .calculator-list #invest-profile-grp {
    padding-bottom: 20px;
  }
  .retirement-calculator .calculator-container .slick-dots {
    position: static;
    text-align: center;
    width: 100%;
    margin: 20px 0 35px;
    padding: 0;
  }
  .retirement-calculator .calculator-container .button-group {
    position: static;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 440px;
    margin: 0 auto;
  }
  .retirement-calculator .calculator-container .button-group a {
    min-height: 40px;
    line-height: 18px;
  }
  .retirement-calculator .calculator-container .button-group a.border-btn {
    margin-top: 15px;
  }
}

@media screen and (max-width: 480px) {
  .retirement-calculator .calculator-container .calculator-step .notification-alert {
    bottom: -20px;
  }
}

.retirement-calculator .calculator-result {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.retirement-calculator .calculator-result .left-content {
  position: relative;
  background: #ffece2;
  width: 35%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  text-align: center;
}

.retirement-calculator .calculator-result .left-content .score-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}

.retirement-calculator .calculator-result .left-content .score-box {
  margin: -20px 0 25px;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle {
  position: relative;
  height: 165px;
  width: 215px;
  min-width: 215px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle canvas {
  position: relative;
  z-index: 1;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle .score {
  font-weight: bold;
  font-size: 16px;
  line-height: 144%;
  position: absolute;
  top: 52px;
  left: 0px;
  color: #ff4a42;
  background: #fff;
  width: 213px;
  height: 112px;
  border-radius: 100px 100px 0 0;
  padding-top: 55px;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle .score strong {
  display: block;
  font-size: 22px;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle .score-box-pointer {
  position: absolute;
  width: 150px;
  height: 130px;
  bottom: -62px;
  left: 33px;
  border-radius: 50%;
  z-index: 2;
}

.retirement-calculator .calculator-result .left-content .score-box .score-box-circle .score-box-pointer .pointer {
  background: url("../images/retirement-planner/polygon.svg") no-repeat;
  width: 31px;
  height: 31px;
  position: absolute;
  bottom: 55px;
  right: -19px;
  -webkit-transform: rotate(-75deg);
  transform: rotate(-75deg);
}

.retirement-calculator .calculator-result .left-content .score-box .content {
  padding-left: 20px;
}

.retirement-calculator .calculator-result .left-content .score-box .content p {
  color: #666666;
}

.retirement-calculator .calculator-result .left-content .link {
  display: block;
  font-weight: bold;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-decoration: underline;
  max-width: 145px;
  font-size: 13px;
  line-height: 133%;
  letter-spacing: 0.02em;
}

.retirement-calculator .calculator-result .left-content .border-btn {
  min-width: 166px;
}

.retirement-calculator .calculator-result .right-content {
  width: 65%;
  padding-left: 35px;
  min-height: 300px;
  background: #fff3ed;
  padding: 30px 40px 40px;
}

.retirement-calculator .calculator-result .right-content .top-text {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values {
  max-width: 290px;
  margin-right: 35px;
  width: 100%;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values .value {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values .value:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values .value .icon {
  min-width: 40px;
  margin-right: 15px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values .value .desc p {
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
}

.retirement-calculator .calculator-result .right-content .top-text .score-values .value .desc h4 {
  font-weight: 800;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0.02em;
  margin-top: 5px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc {
  background: #fff;
  border-radius: 10px;
  padding: 20px 40px 30px 30px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .score-icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 25px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .score-icon .icon {
  min-width: 75px;
  margin-right: 20px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc h5 {
  font-size: 16px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-btn {
  margin-right: 30px;
  height: 40px;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-more {
  font-weight: 700;
}

.retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-more::after {
  position: static;
  margin-left: 7px;
  display: inline-block;
}

.retirement-calculator .calculator-result .right-content .bottom-text .desc {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

.retirement-calculator .calculator-result .right-content .bottom-text h3 {
  position: relative;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.retirement-calculator .calculator-result .right-content .bottom-text h3 span {
  background: #fff;
  z-index: 1;
  position: relative;
  padding-right: 15px;
}

.retirement-calculator .calculator-result .right-content .bottom-text h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #999999;
  top: 50%;
  right: 0;
}

.retirement-calculator .calculator-result .right-content .bottom-text p {
  max-width: 300px;
  line-height: 20px;
  font-weight: 700;
  margin-right: 15px;
}

.retirement-calculator .calculator-result .right-content .bottom-text .scrollDown {
  position: absolute;
  bottom: 30px;
  color: #f37e20;
  font-weight: bold;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin-left: auto;
  cursor: pointer;
  text-transform: uppercase;
  height: 30px;
  padding: 0 30px;
  background: #fff;
  -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.retirement-calculator .calculator-result .right-content .bottom-text .scrollDown img {
  margin-left: 5px;
}

@media screen and (max-width: 1200px) {
  .retirement-calculator .calculator-result .left-content {
    width: 35%;
  }
  .retirement-calculator .calculator-result .right-content {
    width: 65%;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc {
    padding: 20px;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-more {
    min-width: 112px;
    padding: 0 !important;
  }
}

@media screen and (max-width: 991px) {
  .retirement-calculator .calculator-result .left-content {
    width: 100%;
    border: none;
    padding: 40px 20px;
  }
  .retirement-calculator .calculator-result .left-content .score-box {
    margin-bottom: 0;
  }
  .retirement-calculator .calculator-result .left-content .score-box .content {
    padding: 0 20px;
    max-width: 450px;
    margin: 0 auto;
  }
  .retirement-calculator .calculator-result .right-content {
    width: 100%;
    padding: 30px 20px 50px;
  }
  .retirement-calculator .calculator-result .right-content .top-text {
    display: block;
    padding: 0;
    border: none;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-values {
    min-width: auto;
    margin-right: 0;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc {
    margin-top: 40px;
    padding: 20px;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc .score-icon .icon {
    min-width: 50px;
    margin-right: 15px;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group {
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-btn {
    width: 100%;
    margin: 0 0 15px;
  }
  .retirement-calculator .calculator-result .right-content .top-text .score-desc .btn-group .ic-more {
    padding: 0 !important;
  }
  .retirement-calculator .calculator-result .right-content .bottom-text {
    display: block;
    text-align: center;
  }
  .retirement-calculator .calculator-result .right-content .bottom-text .desc p {
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
  }
  .retirement-calculator .calculator-result .right-content .bottom-text .desc .border-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 25px;
  }
  .retirement-calculator .calculator-result .right-content .bottom-text .scrollDown {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 260px;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .retirement-calculator .section-title {
    text-align: center;
  }
}

/* retirement-journey-tab */
.retirement-journey-tab {
  overflow: hidden;
}

.retirement-journey-tab .section-heading {
  margin-bottom: 20px;
}

.retirement-journey-tab .tab-content {
  background: rgba(255, 255, 255, 0.7);
  padding: 45px 60px;
}

.retirement-journey-tab .mobile-next-tab {
  background: #fff7eb;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
          box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
  border-radius: 10px 0 0 10px;
  padding: 50px 30px 20px;
  margin: -70px -20px 0 0;
}

.retirement-journey-tab .mobile-next-tab span {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.01em;
}

.retirement-journey-tab .mobile-next-tab .mobile-next-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-top: 5px;
}

.retirement-journey-tab .mobile-next-tab .mobile-next-content {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #f37e20;
  width: calc(100% - 75px);
  margin-right: 25px;
}

.retirement-journey-tab .mobile-next-tab .circle-arrow {
  margin-left: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f37e20;
  border: none;
}

.retirement-journey-tab .mobile-next-tab .circle-arrow.last-tab {
  opacity: 0.3;
  cursor: default;
}

.retirement-journey-tab .retirement-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-journey-tab .retirement-content .content {
  max-width: 450px;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.retirement-journey-tab .retirement-content .content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.retirement-journey-tab .retirement-content .content p {
  margin-bottom: 20px;
  max-width: 375px;
}

.retirement-journey-tab .retirement-content .content ul li {
  position: relative;
  padding-left: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.retirement-journey-tab .retirement-content .content ul li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #818181;
  left: 4px;
  top: 10px;
}

.retirement-journey-tab .retirement-content .content ul .ul-tag {
  margin: 10px -15px -20px;
}

.retirement-journey-tab .retirement-content .content ul .ul-tag.half-ul-tag div {
  width: calc(50% - 10px);
}

.retirement-journey-tab .retirement-content .content ul .ul-tag.half-ul-tag div:nth-child(2n) {
  margin-right: 0;
}

.retirement-journey-tab .retirement-content .content ul .ul-tag div {
  position: relative;
  display: inline-block;
  background: #ffefe2;
  border-radius: 40px;
  margin: 0 15px 20px 0;
  padding: 0 20px 0 35px;
  min-height: 26px;
  line-height: 26px;
  font-size: 14px;
  font-weight: 600;
}

.retirement-journey-tab .retirement-content .content ul .ul-tag div::before {
  content: "";
  position: absolute;
  background: url("../images/retirement-planner/tick.svg") no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 15px;
  top: calc(50% - 5px);
}

.retirement-journey-tab .retirement-content .content .media {
  border-radius: 4px;
  overflow: hidden;
  margin-left: auto;
}

.retirement-journey-tab .retirement-content .content .media img {
  border-radius: 4px;
}

@media screen and (max-width: 991px) {
  .retirement-journey-tab .retirement-content {
    padding-top: 0;
  }
  .retirement-journey-tab .retirement-content.retirement-journey-plan {
    padding-top: 20px;
  }
  .retirement-journey-tab .retirement-content .section-inner {
    padding: 20px;
  }
  .retirement-journey-tab .retirement-content .mobile-next-tab .circle-arrow {
    width: 40px;
    height: 40px;
  }
  .retirement-journey-tab .retirement-content .mobile-next-tab .circle-arrow img {
    width: 25px;
  }
  .retirement-journey-tab .retirement-content .retirement-content {
    display: block;
  }
  .retirement-journey-tab .retirement-content .retirement-content .content {
    max-width: 100%;
    margin: 0 0 30px;
  }
  .retirement-journey-tab .retirement-content .retirement-content .content h5 {
    margin-bottom: 15px;
  }
  .retirement-journey-tab .retirement-content .retirement-content .content ul .ul-tag.half-ul-tag div {
    width: auto;
  }
  .retirement-journey-tab .retirement-content .retirement-content .content ul .ul-tag.half-ul-tag div:nth-child(2n) {
    margin-right: 15px;
  }
  .retirement-journey-tab .retirement-content .media img {
    width: 100%;
  }
}

.retirement-journey-tab .retirement-content .tab-content {
  padding: 40px 20px;
  margin: 0 -20px;
  background: #fff;
}

/* program-apply */
.program-apply .section-inner {
  padding: 20px;
}

.program-apply .white-box {
  position: relative;
  z-index: 1;
  margin-bottom: -70px;
  background: #fff;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
          box-shadow: 0px 3.50646px 24.5452px rgba(232, 232, 222, 0.8);
  border-radius: 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  padding: 25px 60px;
}

.program-apply .white-box p {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  width: calc(100% - 220px);
}

.program-apply .white-box .ic-btn {
  width: 182px;
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .program-apply {
    text-align: center;
    margin-bottom: 90px;
  }
  .program-apply .white-box {
    display: block;
    padding: 25px 30px;
    min-height: 180px;
    margin-bottom: -90px;
  }
  .program-apply .white-box p {
    max-width: 400px;
    margin: 0 auto 20px;
    width: 100%;
  }
}

/* retirement-page */
.retirement-page {
  overflow: hidden;
}

.retirement-page .benefit-tab-section.overlap-padding-top-75 {
  padding-top: 75px;
}

.retirement-page .benefit-tab-section .benefits-content {
  background: transparent;
  margin-top: 80px;
}

.retirement-page .benefit-tab-section .benefits-content .tab-content-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-page .benefit-tab-section .benefits-content .tab-content-inner .content {
  max-width: 340px;
  margin-right: 50px;
}

.retirement-page .benefit-tab-section .benefits-content .tab-content-inner .content p {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.retirement-page .benefit-tab-section .benefits-content .tab-content-inner .media {
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  .retirement-page .benefit-tab-section {
    background: #f6f6f6;
  }
}

@media screen and (max-width: 576px) {
  .retirement-page .benefit-tab-section .benefits-content {
    margin-top: 30px;
  }
  .retirement-page .benefit-tab-section .benefits-content .tab-content-inner {
    display: block;
  }
  .retirement-page .benefit-tab-section .benefits-content .tab-content-inner .content {
    max-width: 100%;
    margin: 0 0 20px;
  }
}

.retirement-page .customer-review-slider-wrapper .reviews--scroll {
  height: 200px;
}

.retirement-page .customer-review-slider-wrapper .slick-dots {
  position: static;
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .retirement-page .customer-review-slider-wrapper .slick-arrow.slick-next {
    right: -18px;
  }
}

.retirement-page .lead-capture-form .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.01em;
  max-width: 610px;
  margin-bottom: 40px;
}

.retirement-page .lead-capture-form .content .list-new {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0 40px 30px;
  color: #333333;
  padding-right: 60px;
}

.retirement-page .lead-capture-form .content .list-new:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.retirement-page .lead-capture-form .content .list-new .media {
  margin-right: 18px;
}

.retirement-page .lead-capture-form .content .list-new .content {
  display: block;
  margin: 0;
}

.retirement-page .lead-capture-form .content .list-new .content h6 {
  font-size: 13px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.retirement-page .lead-capture-form .content .list-new .content p {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

.retirement-page .lead-capture-form .content .list-new .content p:not(:last-child) {
  margin-bottom: 7px;
}

.retirement-page .lead-capture-form .content .list-new .content .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.retirement-page .lead-capture-form .content .list-new .content .flex p:not(:last-child) {
  margin-right: 25px;
}

.retirement-page .lead-capture-form.orange-bg .form-group .input-group input {
  background-color: #fff7eb;
}

.retirement-page .lead-capture-form.orange-bg .form-group .input-group input:focus {
  background-color: #fff7eb !important;
}

.retirement-page .lead-capture-form .ic-btn {
  min-width: 140px;
  cursor: pointer;
}

.retirement-page .lead-capture-form .success-txt,
.retirement-page .lead-capture-form .error-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.retirement-page .lead-capture-form .success-txt.show,
.retirement-page .lead-capture-form .error-popup.show {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.retirement-page .lead-capture-form .success-txt svg,
.retirement-page .lead-capture-form .error-popup svg {
  margin-top: 40px;
  margin-bottom: 26px;
}

.retirement-page .lead-capture-form .success-txt h4,
.retirement-page .lead-capture-form .error-popup h4 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
  color: #3d3d3d;
}

.retirement-page .lead-capture-form .success-txt p,
.retirement-page .lead-capture-form .error-popup p {
  font-weight: 600;
  font-size: 18px;
  line-height: 138%;
  text-transform: capitalize;
  color: #3d3d3d;
  margin-bottom: 22px;
}

.retirement-page .lead-capture-form .success-txt p.small,
.retirement-page .lead-capture-form .error-popup p.small {
  font-size: 18px;
  font-weight: 600;
  line-height: 138%;
  color: #8b8b8b;
  margin-bottom: 0;
  text-transform: none;
}

@media screen and (max-width: 991px) {
  .retirement-page .lead-capture-form {
    padding: 0;
  }
  .retirement-page .lead-capture-form .callback-form {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 0;
  }
  .retirement-page .lead-capture-form .looking-for-section {
    background: transparent;
  }
  .retirement-page .lead-capture-form .looking-for-section .section-title {
    margin-left: 0;
    text-align: left;
  }
  .retirement-page .lead-capture-form .looking-for-section .content .list-new:not(:last-child) {
    border: none;
    padding-right: 0;
    width: 100%;
  }
  .retirement-page .lead-capture-form .looking-for-section .content .list-new .content .flex {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .retirement-page .related-products {
    background: #fff;
  }
  .retirement-page .related-products .section-inner {
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .retirement-page .orangebook-download .section-inner {
    padding-top: 0;
  }
}

@media screen and (max-width: 557px) {
  .retirement-page .orangebook-download .orangebook-cards-slider {
    margin: 0 -20px 0 -5px;
  }
}

/* floating-btn */
.floating-btn {
  position: fixed;
  top: 25%;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.floating-btn ul {
  position: absolute;
  width: 100px;
}

.floating-btn ul::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 100px);
  border-left: 1px dashed #bb2328;
  left: 22px;
  top: 10px;
  z-index: -1;
}

.floating-btn ul li:not(:last-child) {
  margin-bottom: 30px;
}

.floating-btn ul li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ad1e23;
  color: #ad1e23;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  text-decoration: none;
}

.floating-btn ul li a.active {
  background: #ad1e23;
}

.floating-btn ul li a.active .icon img:first-child {
  display: none;
}

.floating-btn ul li a.active .icon img:last-child {
  display: block;
}

.floating-btn ul li a.active:hover .icon img:first-child {
  display: block;
}

.floating-btn ul li a.active:hover .icon img:last-child {
  display: none;
}

.floating-btn ul li a:hover {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  width: 146px;
  background: #fffdf9;
  border: 1px solid #ad1e23;
  border-radius: 50px;
  padding: 0 0 0 15px;
}

.floating-btn ul li a:hover .title {
  display: block;
}

.floating-btn ul li a .title {
  display: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 140.62%;
  letter-spacing: 0.05em;
  min-width: 90px;
  text-align: center;
}

.floating-btn ul li .icon {
  min-width: 20px;
}

.floating-btn ul li .icon img {
  height: 20px;
}

.floating-btn ul li .icon img:last-child {
  display: none;
}

.floating-btn ul li:last-child a:hover {
  background: #ad1e23;
  width: 155px;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
}

.floating-btn ul li:last-child a:hover .icon img:first-child {
  display: none;
}

.floating-btn ul li:last-child a:hover .icon img:last-child {
  display: block;
}

.floating-btn ul li:last-child a:hover .title {
  display: block;
  margin-left: 10px;
}

/* short-note */
.short-note .section-inner {
  padding: 20px 20px 40px;
}

.short-note .section-inner p {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.short-note .section-inner p strong {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}

.retirement-content .content .plan-your-ret-step .plan-your-ret-slider .plan-your-ret-prog-list .plan-your-ret-progress {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
}

@media only screen and (max-width: 991px) {
  .retirement-content .content .plan-your-ret-step .plan-your-ret-slider .plan-your-ret-prog-list .plan-your-ret-progress {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}

.retirement-content .content .plan-your-ret-step .plan-your-ret-slider .plan-your-ret-prog-list .plan-your-ret-progress .content {
  max-width: 485px;
  margin-right: 60px;
}

@media only screen and (max-width: 991px) {
  .retirement-content .content .plan-your-ret-step .plan-your-ret-slider .plan-your-ret-prog-list .plan-your-ret-progress .content {
    max-width: 100%;
    margin-right: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .retirement-content .content .plan-your-ret-step .plan-your-ret-slider .plan-your-ret-prog-list .plan-your-ret-progress.mtop-0 {
    margin-top: 15px !important;
  }
}

.retirement-content .content .plan-your-ret-step .plan-your-ret-slider .slick-dots {
  text-align: left;
  position: static;
  margin: 0 0 20px 0px;
}

.retirement-content .content .prog-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.01em;
  color: #3d3d3d;
  margin-bottom: 26px;
}

@media only screen and (max-width: 991px) {
  .retirement-content .content .prog-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
  }
}

.retirement-content .content span {
  color: #828282;
}

.retirement-content .content strong {
  background-image: -webkit-gradient(linear, left top, right top, from(#ad1e23), to(#f37e20));
  background-image: linear-gradient(to right, #ad1e23, #f37e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.grad-title {
  background: linear-gradient(91.66deg, #ad1e23 -43.85%, #f37e20 95.33%);
  border-radius: 100px;
  display: inline-block;
  padding: 10px 25px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
}

.noti-mob .num img {
  width: auto;
}

/****/
@media only screen and (max-width: 1280px) {
  .retirement-content {
    margin: 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .retirement-content {
    margin: 0 0px;
  }
}

@media screen and (max-width: 630px) {
  .rp-slider-item .rp-content-grid .rp-content .rp-box .rp-value .value {
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .rp-slider-item.lifestyle-content .rp-content-grid {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .rp-slider .notification-box.live-acct {
    bottom: -120px !important;
  }
}

@media only screen and (max-width: 991px) {
  .tab-plan {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 991px) {
  .tab-plan .media {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .tab-plan .media img {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .tab-content.less-five-years-top {
    margin-top: 0 !important;
  }
}

/**retirement-tab**/
.retire-plan-tab {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  margin: 60px 0;
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 100px 20px 40px;
  }
}

.retire-plan-tab .tab-left-con {
  max-width: 485px;
  margin-right: 90px;
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab .tab-left-con {
    max-width: 100%;
    margin-right: 0;
  }
}

.retire-plan-tab .tab-left-con .top-title-main {
  font-weight: 800;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.01em;
  color: #3d3d3d;
  margin-bottom: 26px;
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab .tab-left-con .top-title-main {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
  }
}

.retire-plan-tab .tab-left-con .top-title-main strong {
  background-image: -webkit-gradient(linear, left top, right top, from(#ad1e23), to(#f37e20));
  background-image: linear-gradient(to right, #ad1e23, #f37e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.retire-plan-tab .tab-left-con .top-title-main span {
  color: #828282;
}

.retire-plan-tab .tab-left-con p {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab .tab-left-con p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.retire-plan-tab .tab-img-right {
  max-width: 395px;
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab .tab-img-right {
    max-width: inherit;
  }
}

@media only screen and (max-width: 991px) {
  .retire-plan-tab .tab-img-right {
    text-align: center;
    margin-top: 40px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

.retirement-tab-section .plan-for-retirement .notification-box.calc-nudge {
  max-width: 395px;
  top: 320px;
}

@media only screen and (max-width: 1105px) {
  .retirement-tab-section .plan-for-retirement .notification-box.calc-nudge {
    top: 800px;
  }
}

@media only screen and (max-width: 1040px) {
  .retirement-tab-section .plan-for-retirement .notification-box.calc-nudge {
    max-width: 295px;
    top: 860px;
  }
}

@media only screen and (max-width: 991px) {
  .retirement-tab-section .plan-for-retirement .notification-box.calc-nudge {
    max-width: 295px;
    top: auto;
  }
}

@media only screen and (max-width: 1040px) {
  .retirement-tab-section .plan-for-retirement .notification-box .desc {
    font-size: 11px;
    line-height: 123.62%;
  }
}
/*# sourceMappingURL=style.css.map */