@charset "UTF-8";
@font-face {
  font-family: 'PFHandbookPro-Regular';
  src: url("../fonts/PFHandbookPro-Regular.eot");
  src: url("../fonts/PFHandbookPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/PFHandbookPro-Regular.woff2") format("woff2"), url("../fonts/PFHandbookPro-Regular.woff") format("woff"), url("../fonts/PFHandbookPro-Regular.ttf") format("truetype"), url("../fonts/PFHandbookPro-Regular.svg#PFHandbookPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PFHandbookPro-Medium';
  src: url("../fonts/PFHandbookPro-Medium.eot");
  src: url("../fonts/PFHandbookPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/PFHandbookPro-Medium.woff2") format("woff2"), url("../fonts/PFHandbookPro-Medium.woff") format("woff"), url("../fonts/PFHandbookPro-Medium.ttf") format("truetype"), url("../fonts/PFHandbookPro-Medium.svg#PFHandbookPro-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PFHandbookPro-Bold';
  src: url("../fonts/PFHandbookPro-Bold.eot");
  src: url("../fonts/PFHandbookPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/PFHandbookPro-Bold.woff2") format("woff2"), url("../fonts/PFHandbookPro-Bold.woff") format("woff"), url("../fonts/PFHandbookPro-Bold.ttf") format("truetype"), url("../fonts/PFHandbookPro-Bold.svg#PFHandbookPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PFHandbookPro-Thin';
  src: url("../fonts/PFHandbookPro-Thin.eot");
  src: url("../fonts/PFHandbookPro-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/PFHandbookPro-Thin.woff2") format("woff2"), url("../fonts/PFHandbookPro-Thin.woff") format("woff"), url("../fonts/PFHandbookPro-Thin.ttf") format("truetype"), url("../fonts/PFHandbookPro-Thin.svg#PFHandbookPro-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'PFHandbookPro-Light';
    src: url('../fonts/PFHandbookPro-Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  overflow-y: visible;
  background-color: #f7f7f7;
  font-family: 'PFHandbookPro-Regular';
}

.overflow-visible {
  overflow: visible;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
}

a:hover {
  text-decoration: none;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.font-in {
  font-size: inherit !important;
}

.font-xl {
  font-size: 26px !important;
}

@media screen and (max-width: 767px) {
  .font-xl {
    font-size: 16px !important;
  }
}

.font-md {
  font-size: 18px !important;
}

.font-lg {
  font-size: 20px !important;
}

.font-sm {
  font-size: 14px !important;
}

.font-family-bold {
  font-family: "PFHandbookPro-Bold";
}

.font-small {
  font-size: 14px;
}

.cursor-pointer {
  cursor: pointer;
}

.error-msg {
  margin-top: 5px;
}

.error-msg span {
  display: inline-block;
  font-size: 16px;
  color: #FF0000;
  line-height: 18px;
  position: relative;
  padding-left: 20px;
}

.error-msg span:before {
  height: 17px;
  width: 17px;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  position: absolute;
  background: url(../images/error-icon.svg) no-repeat 0 0;
}

.fullbutton li {
  width: 100% !important;
  border-bottom-right-radius: 10px;
  -moz-border-bottom-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-bottom-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
}

.search-slider .slick-track,
#whatdowe-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.search-slider .slick-slide,
#whatdowe-slider .slick-slide {
  height: inherit !important;
}

/**********************************
        HEADER STYLE START
 **********************************/
header {
  position: relative;
  z-index: 999;
  background: #FFF0D9;
}

header.white-bg {
  background-color: #f7f7f7;
}

@media screen and (max-width: 767px) {
  header.white-bg .container {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  header .main-menu-has-sub {
    position: relative;
  }
  header .main-menu-has-sub:before {
    content: '';
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 5px;
  }
}

header .active .main-menu-has-sub:before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

@media screen and (max-width: 767px) {
  header .topbar__innercontainer__rowbox__rightcol__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #c7222b;
    padding: 5px 15px 16px;
  }
  header .top-submenu ul > li span {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
    font-family: "PFHandbookPro-Medium";
    padding: 17px 0 15px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header .top-submenu ul > li span {
    padding: 17px 0 8px;
  }
  header .top-submenu ul > li span.heading {
    font-size: 20px;
    line-height: 23px;
    font-family: 'PFHandbookPro-Bold';
  }
}

@media screen and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(4) span {
    color: #D9908B;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  header .top-submenu ul > li:nth-last-child(4) span {
    border-bottom: 1px solid #D9908B;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(4) span:before {
    background: #D9908B;
    content: "";
    width: 12px;
    height: 28px;
    position: absolute;
    left: -20px;
    top: 10px;
  }
}

@media screen and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(3) span {
    color: #969E71;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  header .top-submenu ul > li:nth-last-child(3) span {
    border-bottom: 1px solid #969E71;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(3) span:before {
    background: #969E71;
    content: "";
    width: 12px;
    height: 28px;
    position: absolute;
    left: -20px;
    top: 10px;
  }
}

@media screen and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(2) span {
    color: #D3AE6F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  header .top-submenu ul > li:nth-last-child(2) span {
    border-bottom: 1px solid #D3AE6F;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(2) span:before {
    background: #D3AE6F;
    content: "";
    width: 12px;
    height: 28px;
    position: absolute;
    left: -20px;
    top: 10px;
  }
}

@media screen and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(1) span {
    color: #C52530;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  header .top-submenu ul > li:nth-last-child(1) span {
    border-bottom: 1px solid #C52530;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  header .top-submenu ul > li:nth-last-child(1) span:before {
    background: #C52530;
    content: "";
    width: 12px;
    height: 28px;
    position: absolute;
    left: -20px;
    top: 10px;
  }
}

@media screen and (max-width: 767px) {
  header .top-submenu ul > li li {
    border-bottom: 1px solid #DDDDDD;
    padding: 8px 0;
  }
  header .top-submenu ul > li li a {
    font-size: 16px;
    line-height: 18px;
    color: #000;
  }
  header .top-submenu ul > li li:last-child {
    border-bottom: none;
  }
  header .top-submenu ul > li li:hover {
    border-color: #C7222A;
  }
  header .top-submenu ul > li li:hover a {
    color: #C7222A !important;
  }
  header.open .top-menu-wrap {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    visibility: visible;
    opacity: 1;
    background-color: #c7222b;
    height: 100%;
  }
  header.open .top-menu-wrap .top-menu-link .top-submenu {
    position: fixed;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    top: 60px;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  header.open .top-menu-wrap .top-menu-link .top-submenu ::-webkit-scrollbar {
    width: 2px;
    height: 5px;
  }
  header.open .top-menu-wrap .top-menu-link .top-submenu ::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #695935;
  }
  header.open .top-menu-wrap .top-menu-link .top-submenu > ul {
    padding: 10px 20px 160px;
    overflow: auto;
    height: 100%;
    margin: 10px 8px 0 0;
  }
  header.open .top-menu-wrap .top-menu-link.open .top-submenu {
    z-index: 9;
  }
  header.open .line {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header.open .line:before {
    top: 0px !important;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: 0px;
  }
  header.open .line:after {
    display: none !important;
  }
}

header .mob-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .mob-icons li {
  position: relative;
}

header .mob-icons li:first-child {
  margin-right: 30px;
}

header .mob-icons .user {
  width: 25px;
  margin-top: 4px;
}

header .mob-icons .c-menu {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 21px !important;
  height: 17px;
  position: absolute;
  top: -7px;
  right: 0;
  padding: 0;
}

header .mob-icons .line {
  width: 20px;
  height: 1px;
  display: block;
  background: #fff;
  margin-right: 20px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0;
}

header .mob-icons .line:before, header .mob-icons .line:after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .mob-icons .line:before {
  top: -6px;
}

header .mob-icons .line:after {
  bottom: -6px;
}

header .hide-mob {
  z-index: 99;
  position: relative;
}

header .dsk-header-img {
  width: 100%;
  display: block;
}

header .mob-header-img {
  width: 100%;
  display: block;
}

header .top-menu-wrap {
  position: relative;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  header .top-menu-wrap {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(330px);
            transform: translateX(330px);
    position: fixed;
    top: 85px;
    z-index: 999;
    left: 0;
    right: 0;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    background-color: #c7222b;
  }
}

@media screen and (min-width: 768px) {
  header .top-menu-wrap .top-menu-link:hover {
    background: #fff;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .top-menu-wrap .top-menu-link:hover a:after {
    border-color: #000;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
    top: 12px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  header .top-menu-wrap .top-menu-link.open {
    background: #8A171F;
    margin: 0;
    position: relative;
  }
  header .top-menu-wrap .top-menu-link.open:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 12px solid #8A171F;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
  }
  header .top-menu-wrap .top-menu-link.open a:after {
    display: none;
  }
}

header .top-menu-wrap__innerwrap__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  header .top-menu-wrap__innerwrap__inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

header .top-menu-wrap__innerwrap__inner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-color: #c7222a;
}

@media screen and (max-width: 767px) {
  header .top-menu-wrap__innerwrap__inner__list {
    padding: 0 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

header .top-menu-wrap__innerwrap__inner__list__item {
  padding: 0px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 475px) {
  header .top-menu-wrap__innerwrap__inner__list__item {
    position: relative !important;
  }
}

@media screen and (max-width: 767px) {
  header .top-menu-wrap__innerwrap__inner__list__item {
    padding: 0px;
    position: static;
    height: 37px;
    width: 100%;
  }
  header .top-menu-wrap__innerwrap__inner__list__item > a {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:last-child:after {
    display: none;
  }
}

header .top-menu-wrap__innerwrap__inner__list__item:last-child a:before {
  border-right: none;
}

@media screen and (min-width: 768px) {
  header .top-menu-wrap__innerwrap__inner__list__item:last-child, header .top-menu-wrap__innerwrap__inner__list__item:first-child {
    border-right: none;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:first-child {
    background: #8A171F;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:first-child > a:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 12px solid #8A171F;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
    top: inherit !important;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:first-child a:after {
    display: none;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:first-child:hover {
    background: #fff;
  }
  header .top-menu-wrap__innerwrap__inner__list__item:first-child:hover > a:before {
    border-top-color: #fff;
  }
}

header .top-menu-wrap__innerwrap__inner__list__item > a {
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: 'PFHandbookPro-Regular';
  position: relative;
  padding-left: 20px;
  padding-right: 30px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .top-menu-wrap__innerwrap__inner__list__item > a {
    font-size: 12px !important;
  }
}

header .top-menu-wrap__innerwrap__inner__list__item > a:before {
  content: "";
  border-right: 1px solid #fff;
  height: 19px;
  position: absolute;
  right: 0;
  top: 6px;
}

@media screen and (min-width: 768px) {
  header .top-menu-wrap__innerwrap__inner__list__item > a:after {
    content: '';
    border: solid #ffffff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 9px;
  }
}

@media screen and (min-width: 768px) {
  header .top-menu-wrap__innerwrap__inner__list__item:hover > a {
    color: #000 !important;
    width: 100%;
  }
}

@media screen and (min-width: 767px) {
  header .top-menu-wrap .top-menu-link:last-child:hover {
    margin-left: -1px;
  }
  header .top-menu-wrap .top-menu-link:hover .top-submenu {
    background-color: #fff;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .top-menu-wrap .top-menu-link:hover .top-submenu a {
    color: #000;
  }
  header .top-menu-wrap .top-menu-link:hover .top-submenu a:after {
    top: 6px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
    border-color: #000;
  }
  header .top-menu-wrap .top-menu-link:hover .top-submenu > ul {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .top-submenu {
    position: static !important;
  }
  header .top-submenu > ul {
    left: 0px !important;
    top: 28px !important;
    min-width: 710px !important;
    border-radius: 5px !important;
  }
  header .topbar__innercontainer__rowbox__leftcol__logo {
    margin-right: 14px;
  }
  header .topbar__innercontainer__rowbox__leftcol__logo img {
    max-width: 103px !important;
  }
  header .topbar__innercontainer__rowbox__leftcol__menu__ul__list > a {
    font-size: 14px !important;
    padding-right: 0 !important;
  }
  header .topbar__innercontainer__rowbox__rightcol__inner {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  header .topbar__innercontainer__rowbox__rightcol__inner a span {
    font-size: 12px !important;
  }
}

@media screen and (min-width: 768px) {
  header .top-submenu {
    position: relative;
  }
  header .top-submenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 14px;
    border-top: 3px solid #c7222b;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 6px 0 4px 4px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    -webkit-transition: visibility .3s ease-in-out,opacity .3s ease-in-out,margin-top .5s ease-in-out;
    transition: visibility .3s ease-in-out,opacity .3s ease-in-out,margin-top .5s ease-in-out;
    min-width: 790px;
    width: 100%;
    max-height: 548px;
    padding: 12px 0;
    z-index: 101;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  header .top-submenu > ul > li {
    min-width: 22%;
  }
  header .top-submenu > ul > li span {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
    font-family: "PFHandbookPro-Medium";
    padding: 0 0 10px;
  }
  header .top-submenu > ul > li:nth-child(1) span {
    color: #D9908B;
    border-bottom: 1px solid #D9908B;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .top-submenu > ul > li:nth-child(2) span {
    color: #969E71;
    border-bottom: 1px solid #969E71;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .top-submenu > ul > li:nth-child(3) span {
    color: #D3AE6F;
    border-bottom: 1px solid #D3AE6F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .top-submenu > ul > li:nth-child(4) span {
    color: #C52530;
    border-bottom: 1px solid #C52530;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .top-submenu > ul > li li {
    border-bottom: 1px solid #DDDDDD;
    padding: 8px 0;
  }
  header .top-submenu > ul > li li:last-child {
    border-bottom: none;
  }
  header .top-submenu > ul > li li a {
    font-size: 14px;
    line-height: 16px;
    color: #000;
  }
  header .top-submenu > ul > li li:hover {
    border-color: #C7222A;
  }
  header .top-submenu > ul > li li:hover a {
    color: #C7222A !important;
  }
}

header .topbar {
  padding-top: 23px;
  padding-bottom: 23px;
  background-color: #c7222a;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 999;
}

header .topbar__innercontainer__rowbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}

header .topbar__innercontainer__rowbox__leftcol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .topbar__innercontainer__rowbox__leftcol__logo {
  display: inline-block;
}

header .topbar__innercontainer__rowbox__leftcol__logo img {
  max-width: 185px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  header .topbar__innercontainer__rowbox__leftcol__logo img {
    max-width: 140px !important;
  }
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list {
  padding: 0;
  margin: 0 5px 0 0;
  list-style-type: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  header .topbar__innercontainer__rowbox__leftcol__menu__ul__list {
    margin: 0 10px 0 0 !important;
  }
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list > a {
  font-size: 17px;
  color: #ffffff;
  display: block;
  padding: 5px 10px 5px 10px;
  font-family: 'PFHandbookPro-Regular';
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  header .topbar__innercontainer__rowbox__leftcol__menu__ul__list > a {
    font-size: 14px !important;
  }
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.has-sub > a {
  position: relative;
  padding-right: 25px;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.has-sub .drop-menu a::after {
  display: none !important;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list .drop-menu {
  display: none;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu {
  position: relative;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu {
  z-index: 999999;
  min-width: 224px;
  top: 34px;
  position: absolute;
  background-color: #fafafa;
  padding: 3px 0px;
  margin: 0;
  list-style-type: none;
  border: 1px solid #E4E4E4;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu li {
  width: 100%;
  padding: 0 14px;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu li a {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  display: block;
  padding: 11px 0px;
  font-family: 'PFHandbookPro-Regular';
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  border-bottom: 1px solid #DDDDDD;
  background: transparent;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu li a:hover {
  color: #C7222A;
  border-bottom-color: #C7222A;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu li:last-child a {
  border-bottom: none;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu a::after {
  display: none !important;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu a:after {
  border: solid #c7222a;
  transform: rotate(-135deg);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(-135deg);
  position: absolute;
  top: 14px;
}

header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu {
  min-width: 224px;
  top: 100%;
  position: absolute;
  display: block;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  list-style-type: none;
  z-index: 9;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .topbar__innercontainer__rowbox__leftcol__menu__ul__list.submenu .drop-menu {
    min-width: 185px;
  }
}

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

header .topbar__innercontainer__rowbox__rightcol__inner a {
  color: #ffffff;
  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;
}

header .topbar__innercontainer__rowbox__rightcol__inner a:first-child {
  margin-left: 0;
}

header .topbar__innercontainer__rowbox__rightcol__inner a span {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  padding-top: 1px;
  line-height: 1;
  font-size: 18px;
  color: #fff;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  header .topbar__innercontainer__rowbox__rightcol__inner a span {
    font-size: 14px !important;
  }
}

header .financingsolutions {
  line-height: 1;
  background-color: #C3A16A;
  position: relative;
  padding: 0 15px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .financingsolutions .policy-head {
    position: static !important;
  }
  header .financingsolutions .policy-head .policy-submenus > li:first-child {
    min-width: 432px !important;
  }
  header .financingsolutions .policy-head .policy-submenus > li:last-child {
    min-width: 216px !important;
  }
}

@media screen and (min-width: 768px) {
  header .financingsolutions .policy-submenus > li {
    border-right: none !important;
    position: relative;
  }
  header .financingsolutions .policy-submenus > li:first-child:after {
    content: "";
    border-right: 1px solid #ddd;
    position: absolute;
    top: 14px;
    bottom: 14px;
    right: 0;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .financingsolutions .policy-submenus {
    left: 0;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  header .financingsolutions .policy-submenus {
    right: 0;
  }
  header .financingsolutions .policy-submenus > li:first-child {
    min-width: 432px !important;
  }
  header .financingsolutions .policy-submenus > li:first-child > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 432px;
    padding-right: 5px;
  }
  header .financingsolutions .policy-submenus > li:first-child > ul > li {
    width: 50%;
  }
  header .financingsolutions .policy-submenus > li:first-child > ul > li:nth-last-child(2) a {
    border-bottom: none;
  }
  header .financingsolutions .policy-submenus > li:last-child {
    background-color: #fff !important;
  }
}

header .financingsolutions__containerbox__innerbox__menu__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .financingsolutions__containerbox__innerbox__menu__inner .sub-menu-list > a:after {
    right: -3px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .sub-menu-list .sub-menu-block {
    padding: 0 !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list {
    margin: 0 15px 0 0 !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list a {
    padding: 6px 25px 6px 0 !important;
    font-size: 14px !important;
  }
}

@media screen and (max-width: 767px) {
  header .financingsolutions__containerbox__innerbox__menu__inner__ul {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    position: fixed;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    top: 0;
    bottom: 0;
    height: 100%;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul.open {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding: 0;
    margin-bottom: 0;
    overflow: auto;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list {
    border-bottom: 1px solid #DDDDDD;
    padding: 17px 15px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.active {
    background-color: rgba(255, 215, 150, 0.13);
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list a {
    color: #323232;
    font-size: 20px;
    line-height: 17px;
    display: block;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li h6 {
    padding-top: 10px;
    margin-bottom: -10px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li .sub-head {
    border-bottom: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li > ul {
    padding: 12px 0 0px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li {
    border-bottom: 1px solid rgba(241, 200, 133, 0.86);
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li:last-child {
    border-bottom: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list > ul {
    display: none;
    padding-left: 15px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus {
    margin-bottom: 15px;
    border-bottom: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block .sub-head, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus .sub-head {
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'PFHandbookPro-Medium';
    padding-bottom: 10px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block > ul > li, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus > ul > li {
    border-bottom: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block > ul > li > a, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus > ul > li > a {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    padding: 10px 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block > ul > li > a:after, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus > ul > li > a:after {
    display: none !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .sub-menu-block + .quick-link-menus, header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li li.sub-menu-list .quick-link-menus + .quick-link-menus {
    display: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu > li a {
    font-size: 16px;
    line-height: 18px;
    color: #695935;
    padding: 12px 0;
    display: block;
    position: relative;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu .sub-menu-list a:after {
    content: "";
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 16px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu .sub-menu-list.slide-down > a {
    color: #C7222A !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu .sub-menu-list.slide-down > a:after {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
    border-color: #C7222A;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu.policy-submenus h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'PFHandbookPro-Medium';
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__hd {
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: "PFHandbookPro-Bold";
    padding: 4px 0;
    position: relative;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .finance-solution:after {
    content: '';
    border: solid #ffffff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: -16px;
    top: 7px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .mob-finance-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .mob-finance-head h4 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'PFHandbookPro-Bold';
    letter-spacing: 0.3px;
    color: #BA904B;
    padding: 24px 0 27px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .financingsolutions__containerbox__innerbox__menu__inner .sub-head {
    border-bottom: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .sub-head h5 {
    font-size: 14px !important;
    margin: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__hd {
    font-size: 12px !important;
    line-height: 14px !important;
    letter-spacing: 0.01em !important;
    width: 150px !important;
    margin-top: 0 !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list {
    margin-right: 10px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list > a {
    font-size: 14px !important;
    line-height: 1 !important;
    padding: 7px 20px 10px 3px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list > a:after {
    top: 9px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu > a:after {
    top: 12px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu a {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li {
    min-width: 160px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list > ul {
    min-width: 407px !important;
    -webkit-transform: translateX(144px) !important;
            transform: translateX(144px) !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  header .financingsolutions__containerbox__innerbox__menu__inner__hd {
    max-width: 100% !important;
    width: auto !important;
  }
}

@media screen and (min-width: 768px) {
  header .financingsolutions__containerbox__innerbox__menu__inner__hd {
    max-width: 253px;
    width: 100%;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 16px;
    margin: 3px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.3000000119px;
    font-family: "PFHandbookPro-Bold";
    position: relative;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .finance-solution:after {
    display: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .finance-menu-block .has-sub .drop-menu > li {
    padding: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .finance-menu-block .has-sub .drop-menu > li > ul > li.sub-menu-list > a:after {
    content: "";
    background: url(../images/mob-menu-arrow.svg) no-repeat 0 0;
    width: 7px;
    height: 10px;
    display: block !important;
    -webkit-transform: none;
            transform: none;
    border: none;
    position: absolute;
    right: 14px;
    top: 16px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner .finance-menu-block .has-sub .drop-menu > li > ul > li.sub-menu-list > a:hover:after {
    background: url(../images/mob-menu-arrow-hover.svg) no-repeat 0 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list {
    list-style-type: none;
    margin: 0 19px 0 0;
    padding: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list:last-child {
    margin-right: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list a {
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    padding: 6px 25px 6px 15px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list span {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 16px;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.30000001192092896px;
    font-family: 'PFHandbookPro-Bold';
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.has-sub a {
    position: relative;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.has-sub a::after {
    content: '';
    border: solid #ffffff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2.6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 7px;
    top: 8px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.has-sub .drop-menu a::after {
    display: none !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list .drop-menu {
    display: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu {
    position: relative;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu > a {
    color: #000000;
    background-color: #fff;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu > a::after {
    border: solid #000;
    transform: rotate(-135deg);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(-135deg);
    position: absolute;
    top: 12px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu {
    z-index: 999999;
    top: 29px;
    position: absolute;
    display: block;
    background-color: #ffffff;
    margin: 0;
    list-style-type: none;
    border: 1px solid #E4E4E4;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li {
    width: 100%;
    min-width: 216px;
    border-right: 1px solid #ddd;
    background: rgba(228, 228, 228, 0.15);
    padding: 11px 0px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li:last-child {
    border-right: none;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li h5 {
    padding: 0px 12px 5px;
    font-size: 16px;
    line-height: 18px;
    font-family: 'PFHandbookPro-Bold';
    color: #323232;
    text-transform: uppercase;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li h6 {
    padding: 0 14px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li {
    padding: 0 15px;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list.quick-links-only > ul {
    min-width: 220px !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list > ul {
    position: absolute;
    top: -1px;
    width: 100%;
    background-color: #fff;
    min-width: 485px;
    display: block;
    overflow-y: auto;
    height: 100%;
    display: none;
    -webkit-transform: translateX(194px);
            transform: translateX(194px);
    border-radius: 0 6px 6px 0;
    padding: 11px 0;
    -webkit-box-shadow: 3px 4px 4px rgba(145, 145, 145, 0.25);
            box-shadow: 3px 4px 4px rgba(145, 145, 145, 0.25);
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list > ul > li.sub-menu-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    padding: 0 14px;
    border-right: 1px solid #ddd;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list > ul > li.sub-menu-block > a {
    font-size: 16px;
    line-height: 18px;
    color: #000;
    display: block;
    padding: 11px 0px;
    font-family: 'PFHandbookPro-Regular';
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    margin: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list > ul > li.sub-menu-block > a:hover {
    color: #C7222A;
    border-bottom-color: #C7222A;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list:hover > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list.open-menu > a {
    color: #C7222A;
    border-bottom-color: #C7222A;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu > li li.sub-menu-list.open-menu > a:after {
    background: url(../images/mob-menu-arrow-hover.svg) no-repeat 0 0 !important;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu a {
    font-size: 16px;
    line-height: 18px;
    color: #000;
    display: block;
    padding: 11px 0px;
    font-family: 'PFHandbookPro-Regular';
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    margin: 0;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu a:hover {
    color: #C7222A !important;
    border-bottom-color: #C7222A;
  }
  header .financingsolutions__containerbox__innerbox__menu__inner__ul__list.submenu .drop-menu ul li:last-child a {
    border-bottom: none;
  }
}

header .financingsolutions__containerbox__innerbox .quick-link-menus li a {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.6) !important;
  padding: 8px 0 !important;
}

header .financingsolutions__containerbox__innerbox__btnbar {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
}

header .financingsolutions__containerbox__innerbox__btnbar__inner__paynow-btn {
  display: inline-block;
  color: #000000;
  background: #FFAE0C;
  border-radius: 2.48684px;
  font-size: 14px;
  line-height: 16px;
  margin-right: 15px;
  padding: 6px 10px;
  font-family: 'PFHandbookPro-Medium';
}

@media (min-width: 768px) and (max-width: 1199px) {
  header .financingsolutions__containerbox__innerbox__btnbar__inner__paynow-btn {
    padding: 7px;
  }
}

header .financingsolutions__containerbox__innerbox__btnbar__inner__paynow-btn:hover {
  color: #ffffff;
  background-color: #c7222a;
}

header .financingsolutions__containerbox__innerbox__btnbar__inner__applynow-btn {
  display: inline-block;
  color: #000000;
  background: #ffffff;
  border-radius: 2.48684px;
  font-size: 14px;
  line-height: 16px;
  padding: 6px 10px;
  font-family: 'PFHandbookPro-Medium';
}

@media (min-width: 768px) and (max-width: 1199px) {
  header .financingsolutions__containerbox__innerbox__btnbar__inner__applynow-btn {
    padding: 7px;
  }
}

header .financingsolutions__containerbox__innerbox__btnbar__inner__applynow-btn:hover {
  color: #ffffff;
  background-color: #c7222a;
}

header .adityabirlafinancelimited {
  padding: 3px 15px;
  background-color: #c7222a;
}

header .adityabirlafinancelimited__container__txt {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-family: 'PFHandbookPro-Thin';
}

@media screen and (max-width: 767px) {
  header .adityabirlafinancelimited__container__txt {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  header::before {
    display: none;
  }
  header .financingsolutions {
    padding: 5px 15px;
  }
  header .financingsolutions__containerbox__innerbox__btnbar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .financingsolutions__containerbox__innerbox__btnbar__inner__paynow-btn {
    font-size: 13px;
    padding: 4px 12px;
    margin-right: 9px;
  }
  header .financingsolutions__containerbox__innerbox__btnbar__inner__applynow-btn {
    font-size: 13px;
    padding: 4px 12px;
  }
}

@media screen and (max-width: 767px) and (max-width: 375px) {
  header .financingsolutions__containerbox__innerbox__btnbar__inner__applynow-btn {
    padding: 4px 2px;
  }
}

@media screen and (max-width: 767px) {
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__mainlink {
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: "PFHandbookPro-Bold";
    padding: 6px 0;
  }
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__dropdownmenu {
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    position: fixed !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__dropdownmenu.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__dropdownmenu__submenu .dropdown-item {
    color: #c7222a;
    vertical-align: top;
  }
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__dropdownmenu__submenu .dropdown-item.dropdown-toggle:after {
    margin-top: 6px;
    vertical-align: top;
  }
  header .financingsolutions__containerbox__innerbox__nav-dropdown__navitem__dropdownmenu__submenu .dropdown-menu {
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #f2f2f2;
  }
}

/**********************************
    RIGHT SIDE BLOCK START
*********************************/
.right-side {
  position: relative;
  height: 100%;
  padding: 38px 0px 85px 30px;
  margin-bottom: 34px;
}

@media screen and (max-width: 991px) {
  .right-side {
    padding-bottom: 45px;
    padding-left: 0 !important;
  }
}

.right-side:before {
  content: "";
  background-color: rgba(255, 240, 217, 0.55);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  position: absolute;
  left: 0px;
  right: -100%;
  height: 100%;
  top: 0px;
  z-index: 1;
}

@media screen and (min-width: 1600px) {
  .right-side:before {
    right: -113%;
  }
}

@media screen and (max-width: 767px) {
  .right-side:before {
    background: rgba(255, 240, 217, 0.55);
    left: -100%;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .right-side:before {
    transform: matrix(2, 0, 0, -1, 0, 0);
    -webkit-transform: matrix(2, 0, 0, -1, 0, 0);
    -moz-transform: matrix(2, 0, 0, -1, 0, 0);
    -ms-transform: matrix(2, 0, 0, -1, 0, 0);
    -o-transform: matrix(2, 0, 0, -1, 0, 0);
  }
}

/**********************************
    RIGHT SIDE BLOCK END
*********************************/
@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
  body {
    overflow-x: hidden;
  }
}

@media screen and (max-width: 1199px) and (min-width: 991px) {
  .table-style ul li {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .table-style ul li {
    font-size: 15px;
    padding: 14px 25px 14px 48px;
  }
  .table-style ul li::before {
    left: 15px;
  }
}

.tellmemore-modal .close {
  opacity: 1;
}

.tellmemore-modal .close:hover {
  opacity: 1;
}

.tellmemore-modal .close:hover svg path {
  stroke: #C7222A;
}

.tellmemore-modal .modal-dialog {
  max-width: 610px;
}

.tellmemore-modal .modal-content {
  background: #FFFFFF;
  border: 1px solid #C4A167;
  box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.tellmemore-modal .modal-body {
  padding: 26px 30px 21px 30px;
}

.tellmemore-modal h4 {
  max-width: 445px;
  color: black;
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 10px;
  font-family: 'PFHandbookPro-Regular';
}

.tellmemore-modal .tellmemoretab .nav-tabs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  border-bottom: 1px solid #CFCFCF;
  margin-bottom: 40px;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link {
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: transparent;
  display: inline-block;
  padding: 15px 25px;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link:first-child {
  padding-left: 0;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link .tabnav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link .tabnav-inner .tabnmbr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  width: 24px;
  color: #ffffff;
  font-size: 18px;
  line-height: 21px;
  font-family: 'PFHandbookPro-Regular';
  background: #BA904B;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  margin-right: 10px;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link .tabnav-inner .tabtitle {
  display: inline-block;
  color: #BA904B;
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
  letter-spacing: 0.01em;
  font-family: 'PFHandbookPro-Regular';
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link.active {
  border-bottom: 2px solid #C7222A;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link.active .tabnav-inner .tabnmbr {
  background-color: #C7222A;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-link.active .tabnav-inner .tabtitle {
  color: #C7222A;
}

.tellmemore-modal .tellmemoretab .nav-tabs .nav-sep {
  height: 24px;
  width: 1px;
  display: inline-block;
  background-color: #CFCFCF;
  margin-left: 25px;
  margin-right: 25px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li {
  padding: 0;
  margin: 40px 0 0 0;
  list-style-type: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li:first-child {
  margin-top: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap .hd-rdiolist {
  color: #695935;
  font-size: 19px;
  line-height: 1;
  font-family: 'PFHandbookPro-Regular';
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap label {
  margin-bottom: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap .form-check-inline {
  margin-right: 0;
  margin-left: 50px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap .form-check-inline:first-child {
  margin-left: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked,
.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label,
.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) + label {
  color: #212121;
  font-size: 21px;
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 19px;
  display: inline-block;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label:before,
.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #EEEEEE;
  border: 1px solid #C8C8C8;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label:after,
.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 9px;
  height: 9px;
  background: #ffffff;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label:before {
  background-color: #C7222A;
  border-color: #C7222A;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked ~ label {
  color: #C7222A;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap label {
  color: #695935;
  font-size: 19px;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'PFHandbookPro-Regular';
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect {
  padding: 11px 13px 9px 13px;
  border: 1px solid #C4A167;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
  margin: 1px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  margin-top: -2px;
  width: 13px;
  height: 8px;
  background: url(../images/select-arrow.svg) no-repeat 0 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 {
  padding: 0;
  background-color: #ffffff;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select {
  padding: 10px 13px 10px 13px;
  position: relative;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select .select {
  display: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select .select-styled {
  font-size: 18px;
  color: black;
  font-family: "PFHandbookPro-Regular";
  line-height: 23px;
  position: relative;
  z-index: 9;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4.disabled .select .select-styled {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options {
  height: 125px;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ffffff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options::-webkit-scrollbar-thumb {
  background-color: #BA904B;
  border-radius: 10px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li {
  font-size: 16px;
  cursor: pointer;
  margin: 0;
  padding: 7px 0;
  text-indent: 15px;
  border-bottom: 1px solid #D7D7D7;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-family: 'PFHandbookPro-Regular';
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li:last-child {
  border-bottom: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li:hover {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li.is-selected {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li[rel="hide"] {
  display: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4 .select-options li:first-child {
  display: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.customselect-typ4.towline-select .select-options {
  height: 80px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect select {
  z-index: 99;
  height: 100%;
  width: 100%;
  color: #000000;
  border: none;
  font-size: 18px;
  line-height: 21px;
  font-family: "PFHandbookPro-Regular";
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect select:focus {
  outline: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.disabled {
  border-color: rgba(219, 219, 219, 0.25);
  background: rgba(219, 219, 219, 0.25);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-slect.disabled select {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input {
  padding: 11px 10px 9px 10px;
  border: 1px solid #C4A167;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.amount-input {
  padding-left: 30px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.amount-input p {
  position: absolute;
  left: 10px;
  margin-bottom: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input {
  width: 100%;
  color: #000000;
  border: none;
  font-size: 18px;
  line-height: 21px;
  font-family: 'PFHandbookPro-Regular';
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input:focus {
  outline: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input inputplaceholder {
  color: #000000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input:-ms-input-placeholder {
  color: #000000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input::-webkit-input-placeholder {
  color: #000000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input::-ms-input-placeholder {
  color: #000000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input input::placeholder {
  color: #000000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled {
  border-color: rgba(219, 219, 219, 0.25);
  background: rgba(219, 219, 219, 0.25);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled p {
  opacity: .4;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled inputplaceholder {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled input:-ms-input-placeholder {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled input::-webkit-input-placeholder {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled input::-ms-input-placeholder {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.disabled input::placeholder {
  color: #C7C7C7;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .error-msg {
  margin-top: 5px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .error-msg span {
  display: inline-block;
  font-size: 16px;
  color: #FF0000;
  line-height: 18px;
  position: relative;
  padding-left: 25px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .error-msg span::before {
  height: 17px;
  width: 17px;
  content: '';
  left: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  position: absolute;
  background: url(../images/error-icon.svg) no-repeat 0 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input {
  -webkit-box-flex: 75%;
      -ms-flex: 75%;
          flex: 75%;
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-right: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input.error-input {
  background: rgba(219, 219, 219, 0.25);
  border-color: #FF0000 !important;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input.error-input input:-webkit-autofill, .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input.error-input input:-webkit-autofill:hover, .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input.error-input input:-webkit-autofill:focus, .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .tb-input.error-input input:-webkit-autofill:active {
  background: rgba(219, 219, 219, 0.25);
  box-shadow: 0 0 0 30px #f5f4f5 inset !important;
  -webkit-box-shadow: 0 0 0 30px #f5f4f5 inset !important;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  width: 96px;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  border-top-right-radius: 5px;
  -moz-border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -moz-border-bottom-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  padding: 15px 10px 13px 10px;
  background-color: #C7222A;
  border: none;
  display: inline-block;
  position: relative;
  text-align: center;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn:hover {
  box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -moz-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -webkit-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn:focus {
  outline: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn:disabled:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup {
  margin-top: 15px;
  display: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .otp-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .otp-fields input {
  width: 36px;
  height: 41px;
  border: none;
  display: block;
  margin-left: 8px;
  border: 1px solid #C4A167;
  background-color: #ffffff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: #202020;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  padding: 12px 5px 7px 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "PFHandbookPro-Medium";
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .otp-fields input:first-child {
  margin-left: 0;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .otp-fields input.inactive {
  border-color: rgba(219, 219, 219, 0.3);
  background: rgba(219, 219, 219, 0.3);
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .enter-otp-txt {
  color: #6A5935;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
  font-family: "PFHandbookPro-Regular";
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper {
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper input {
  max-width: 88px;
  display: inline-block;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  border: none;
  font-size: 16px;
  color: #FF0000;
  background: none;
  margin-right: 5px;
  padding-left: 20px;
  background: url(../images/icon-resend-otp.svg) no-repeat 0 1px;
  transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper input:focus {
  outline: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper span {
  display: none;
  font-size: 16px;
  color: #FF0000;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper.disabled input {
  cursor: default;
  opacity: 0.4;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .resend-otp-wrapper.disabled input:hover {
  color: #FF0000;
  background: url(../images/icon-resend-otp.svg) no-repeat 0 1px;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .otpcontent-popup .checknow-btn {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 12px 49px 13px 49px;
  background-color: #C7222A;
  border: none;
  display: block;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .nxt-btn {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 14px 52px 12px 52px;
  background-color: #C7222A;
  border: none;
  text-align: center;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .nxt-btn:disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .loansubmit-btn {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 14px 52px 12px 52px;
  background-color: #C7222A;
  border: none;
  text-align: center;
}

.tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .loansubmit-btn:disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.success-modal .close {
  top: 30px;
  right: 30px;
  position: absolute;
  opacity: 1;
}

.success-modal .close:hover {
  opacity: 1;
}

.success-modal .close:hover svg path {
  stroke: #C7222A;
}

.success-modal .modal-dialog {
  max-width: 575px;
}

.success-modal .modal-content {
  background: #FFFFFF;
  border: 1px solid #C4A167;
  box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0px 2.2963px 12px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.success-modal .modal-body {
  padding: 35px 68px 37px 68px;
}

.success-modal .successfullymsg-box {
  text-align: center;
}

.success-modal .successfullymsg-box .icon {
  display: inline-block;
  margin: 0 auto 14px;
}

.success-modal .successfullymsg-box h4 {
  color: #000000;
  font-size: 35px;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-family: 'PFHandbookPro-Medium';
}

.success-modal .successfullymsg-box p {
  color: #695935;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0em;
}

@media screen and (max-width: 1199px) and (min-width: 991px) {
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.amount-input {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .tb-input.amount-input {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .input-btn-box .getotp-btn {
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .tellmemore-modal .close {
    top: 7px;
    right: 20px;
    position: absolute;
  }
  .tellmemore-modal .close svg {
    height: 10px;
    width: 10px;
  }
  .tellmemore-modal .modal-body {
    padding: 18px 18px 18px 18px;
  }
  .tellmemore-modal h4 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0em;
    margin-bottom: 10px;
    margin-right: 45px;
  }
  .tellmemore-modal .tellmemoretab .nav-tabs .nav-link {
    padding: 10px 10px 10px 10px;
  }
  .tellmemore-modal .tellmemoretab .nav-tabs .nav-link .tabnav-inner .tabnmbr {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    padding-top: 2px;
    letter-spacing: 0.01em;
    font-family: 'PFHandbookPro-Medium';
  }
  .tellmemore-modal .tellmemoretab .nav-tabs .nav-link .tabnav-inner .tabtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.01em;
    font-family: 'PFHandbookPro-Medium';
  }
  .tellmemore-modal .tellmemoretab .nav-tabs .nav-sep {
    margin-right: 10px;
    margin-left: 10px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li {
    margin-top: 20px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap {
    display: block;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap .hd-rdiolist {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    margin-bottom: 13px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:checked + label,
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .rdio-list-wrap [type="radio"]:not(:checked) + label {
    font-size: 18px;
    line-height: 1;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap .col-md-6:first-child {
    margin-bottom: 20px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore ul li .fild-list-wrap label {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 11px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar {
    display: block;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .nxt-btn {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .tellmemore-modal .tellmemoretab .frm-tellmemore .btnbar .loansubmit-btn {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .success-modal .modal-body {
    padding: 30px 28px;
  }
  .success-modal .successfullymsg-box h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .success-modal .successfullymsg-box p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 360px) {
  .tellmemore-modal .tellmemoretab .nav-tabs .nav-sep {
    margin-right: 5px;
    margin-left: 5px;
  }
}

/*************************************
        FOOTER STYLE START
************************************/
@media screen and (max-width: 767px) {
  .mob-menu-open {
    overflow: hidden;
  }
  .mob-menu-open .footer__contact-icons-home {
    z-index: 99;
  }
}

.footer__contact-icons-inner-pg {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  background-color: #6B5835;
}

.footer__contact-icons-inner-pg__help-icon {
  top: -50%;
  right: 34px;
  position: absolute;
  display: inline-block;
}

.footer__contact-icons-inner-pg__help-icon:hover {
  opacity: 0.8;
}

.footer__contact-icons-inner-pg ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__contact-icons-inner-pg ul li {
  margin: 0;
  padding: 0 80px;
  display: inline-block;
  list-style-type: none;
  position: relative;
}

.footer__contact-icons-inner-pg ul li::after {
  content: '';
  height: 22px;
  width: 1px;
  left: 0;
  top: 8px;
  position: absolute;
  background: rgba(0, 0, 0, 0.52);
}

.footer__contact-icons-inner-pg ul li:first-child::after {
  display: none;
}

.footer__contact-icons-inner-pg ul li a {
  min-height: 34px;
  line-height: 1;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  padding: 7px 15px 7px 15px;
  background: rgba(33, 21, 21, 0.37);
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
}

.footer__contact-icons-inner-pg ul li a svg {
  margin-right: 10px;
  display: inline-block;
}

.footer__contact-icons-inner-pg ul li a:hover {
  background-color: #000000;
}

.footer__contact-icons-home {
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  padding: 8px 22px 8px 22px;
  width: 530px;
  margin-left: auto;
  position: relative;
  background-color: #6B5835;
  border-top-left-radius: 26px;
  -moz-border-top-left-radius: 26px;
  -webkit-border-top-left-radius: 26px;
}

.footer__contact-icons-home__help-icon {
  top: -50%;
  right: 34px;
  position: absolute;
  display: inline-block;
}

.footer__contact-icons-home__help-icon:hover {
  opacity: 0.8;
}

.footer__contact-icons-home ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -moz-justify-content: left;
  -webkit-justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__contact-icons-home ul li {
  margin: 0;
  padding: 0 25px;
  display: inline-block;
  list-style-type: none;
  position: relative;
}

.footer__contact-icons-home ul li::after {
  content: '';
  height: 22px;
  width: 1px;
  left: 0;
  top: 8px;
  position: absolute;
  background: rgba(0, 0, 0, 0.52);
}

.footer__contact-icons-home ul li:first-child::after {
  display: none;
}

.footer__contact-icons-home ul li a {
  min-height: 34px;
  line-height: 1;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  padding: 7px 15px 7px 15px;
  background: rgba(33, 21, 21, 0.37);
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
}

.footer__contact-icons-home ul li a svg {
  margin-right: 10px;
  display: inline-block;
}

.footer__contact-icons-home ul li a:hover {
  background-color: #000000;
}

.footer__contact-icons-home.innerpagefooterfloaing {
  width: 100%;
  border-top-left-radius: 0px;
  -moz-border-top-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  padding-right: 140px;
  padding-left: 140px;
}

@media (max-width: 991px) {
  .footer__contact-icons-home.innerpagefooterfloaing {
    padding-right: 60px;
    padding-left: 0;
  }
}

.footer__contact-icons-home.innerpagefooterfloaing ul {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.footer__contact-icons-home.innerpagefooterfloaing ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
}

.modal {
  z-index: 999999;
}

.modal-backdrop.show {
  opacity: 0.69;
  z-index: 99999;
  background: #070707;
}

.callus-modal .modal-dialog {
  position: absolute;
  bottom: 20px;
  right: 266px;
  max-width: 402px;
  padding-bottom: 18px;
}

.callus-modal .modal-dialog .modal-content {
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.callus-modal .modal-dialog .modal-content::after {
  content: '';
  display: block;
  height: 15px;
  width: 31px;
  left: 50%;
  bottom: -14px;
  position: absolute;
  margin-left: -16px;
  background: url(../images/down-arrow.svg) no-repeat 0 0;
}

.callus-modal .modal-dialog .modal-content .modal-body {
  padding: 19px 30px 30px 30px;
}

.callus-modal .modal-dialog .modal-content .modal-body .close {
  z-index: 999999;
  top: 20px;
  right: 20px;
  position: absolute;
}

.callus-modal .modal-dialog .modal-content .modal-body h2 {
  color: #000000;
  font-size: 24px;
  line-height: 31px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 9px;
  font-family: 'PFHandbookPro-Medium';
}

.callus-modal .modal-dialog .modal-content .modal-body h2::before {
  content: '';
  height: 16px;
  width: 19px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  background: url(../images/cllus-poup-phn.png) no-repeat 0 0;
}

.callus-modal .modal-dialog .modal-content .modal-body p {
  max-width: 319px;
  margin: 0 0 20px 0;
  padding: 0;
  color: #000000;
  font-size: 17px;
  line-height: 20px;
  font-family: 'PFHandbookPro-Thin';
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .txt-fld {
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  border: none;
  background: #ECECEC;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 12px 12px 11px 12px;
  border: 1px solid transparent;
  width: 202px;
  margin-right: 12px;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .txt-fld:focus {
  outline: none;
  border-color: #C7222B !important;
  box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
  -moz-box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
  -webkit-box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 202px;
  margin-right: 12px;
  background: #ECECEC;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 12px 12px 10px 12px;
  position: relative;
  border: 1px solid rgba(219, 219, 219, 0.25);
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt::after {
  content: '';
  height: 26px;
  width: 1px;
  left: 60px;
  top: 8px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt.error-input {
  background: rgba(219, 219, 219, 0.25);
  border-color: #FF0000 !important;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt.error-input input:-webkit-autofill, .callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt.error-input input:-webkit-autofill:hover, .callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt.error-input input:-webkit-autofill:focus, .callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt.error-input input:-webkit-autofill:active {
  background: rgba(219, 219, 219, 0.25);
  box-shadow: 0 0 0 30px #f5f4f5 inset !important;
  -webkit-box-shadow: 0 0 0 30px #f5f4f5 inset !important;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld {
  width: 35px;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  border: none;
  background: none;
  margin-right: 12px;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld:focus {
  outline: none;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fldplaceholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld:-ms-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld::-webkit-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld::-ms-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .cntrycode-txt-fld::placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld {
  color: #000000;
  font-size: 16px;
  line-height: 1;
  margin-left: 12px;
  border: none;
  background: none;
  width: 100%;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld:focus {
  outline: none;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fldplaceholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld:-ms-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld::-webkit-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld::-ms-input-placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .fild-txt .number-txt-fld::placeholder {
  color: #C7C7C7;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .callme-btn {
  padding: 11px 20px 10px 20px;
  color: #C7222B;
  font-size: 18px;
  line-height: 20px;
  font-family: 'PFHandbookPro-Thin';
  border: 1px solid #C7222B;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .callme-btn:hover {
  box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
  -moz-box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
  -webkit-box-shadow: 4px 4px 4px rgba(202, 31, 52, 0.2);
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .callme-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .callme-btn:disabled:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.callus-modal .modal-dialog .modal-content .modal-body .toll-free-txt {
  margin-top: 15px;
}

.callus-modal .modal-dialog .modal-content .modal-body .toll-free-txt em {
  font-size: 14px;
  color: #000000;
  font-family: 'PFHandbookPro-Thin';
}

.callus-modal .modal-dialog .modal-content .modal-body .toll-free-txt em b {
  font-size: 14px;
  color: #000000;
  font-family: 'PFHandbookPro-Medium';
}

.callus-modal .modal-dialog .modal-content .modal-body #callme_error span {
  font-size: 16px;
  color: #FF0000;
  line-height: 18px;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.callus-modal .modal-dialog .modal-content .modal-body #callme_error span:before {
  height: 17px;
  width: 17px;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  position: absolute;
  background: url(../images/error-icon.svg) no-repeat 0 0;
}

.callus-modal.home-callusmodal .modal-dialog {
  right: 244px;
  left: auto;
}

.callus-modal.innerpage-callus-modal .modal-dialog {
  right: auto;
  left: 161px;
}

.locateus-modal .modal-dialog {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 960px !important;
  max-width: 960px;
  padding-bottom: 18px;
}

.locateus-modal .modal-dialog .modal-content {
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.locateus-modal .modal-dialog .modal-content::after {
  content: '';
  display: block;
  height: 15px;
  width: 31px;
  right: 244px;
  bottom: -14px;
  position: absolute;
  margin-left: -16px;
  background: url(../images/down-arrow.svg) no-repeat 0 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body {
  padding: 19px 30px 30px 30px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .close {
  z-index: 999999;
  top: 20px;
  right: 20px;
  position: absolute;
}

.locateus-modal .modal-dialog .modal-content .modal-body h2 {
  color: #000000;
  font-size: 24px;
  line-height: 31px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 9px;
  font-family: 'PFHandbookPro-Medium';
}

.locateus-modal .modal-dialog .modal-content .modal-body h2::before {
  content: '';
  height: 23px;
  width: 19px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0px;
  background: url(../images/icon-location.png) no-repeat 0 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap {
  max-width: 446px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 16px 8px 16px;
  position: relative;
  background: #FFFFFF;
  border: 0.6px solid #C4A167;
  box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
  -moz-box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
  -webkit-box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap::before {
  left: 200px;
  top: 6px;
  position: absolute;
  height: 28px;
  content: '';
  width: 1px;
  background: #D6D6D6;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .inpt-wrap {
  margin-right: 12px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .inpt-wrap input {
  width: 185px;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  border: none;
  background: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .inpt-wrap input:focus {
  outline: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .slct-wrap {
  margin-left: 12px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .slct-wrap select {
  width: 196px;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  border: none;
  background: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .slct-wrap select:focus {
  outline: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .findbranch-btn {
  margin-left: -2px;
  color: #ffffff;
  outline: none;
  border: none;
  font-size: 18px;
  line-height: 20px;
  border-radius: 3px;
  padding: 9px 22px 11px 22px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #c7222a;
}

.locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .findbranch-btn:hover {
  box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -moz-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -webkit-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer {
  border-top: 1px solid #a4a4a4;
  padding-top: 25px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap {
  height: 430px;
  padding-right: 32px;
  overflow-y: scroll;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #ECEAE7;
  -webkit-box-shadow: inset 0 0 4px #ECEAE7;
  border-radius: 10px;
  background-color: #ECEAE7;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap::-webkit-scrollbar {
  width: 9px;
  background-color: #F5F5F5;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 4px #C4A167;
  -webkit-box-shadow: inset 0 0 4px #C4A167;
  background-color: #C4A167;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row {
  margin-bottom: 26px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row .locaion-hd {
  margin-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row .locaion-hd h4 {
  color: #000000;
  font-size: 22px;
  line-height: 20px;
  font-family: 'PFHandbookPro-Bold';
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row .locaion-hd a {
  color: #c7222a;
  font-size: 15px;
  line-height: 15px;
  text-decoration: underline;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row .locaion-hd a:hover {
  text-decoration: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .adrss {
  font-size: 15px;
  color: #000000;
  padding-left: 25px;
  position: relative;
  font-family: 'PFHandbookPro-Thin';
  max-width: 230px;
  margin-bottom: 7px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .adrss::before {
  content: '';
  width: 13px;
  height: 13px;
  left: 0;
  top: 4px;
  position: absolute;
  display: inline-block;
  background: url(../images/icon-map.png) no-repeat 0 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .phn {
  font-size: 15px;
  color: #000000;
  padding-left: 25px;
  position: relative;
  display: inline-block;
  margin-bottom: 7px;
  font-family: 'PFHandbookPro-Thin';
  max-width: 230px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .phn::before {
  content: '';
  width: 13px;
  height: 13px;
  left: 0;
  top: 1px;
  position: absolute;
  display: inline-block;
  background: url(../images/icon-phn.png) no-repeat 0 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .time {
  font-size: 15px;
  color: #000000;
  padding-left: 25px;
  position: relative;
  font-family: 'PFHandbookPro-Thin';
  max-width: 230px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .time::before {
  content: '';
  width: 14px;
  height: 14px;
  left: 0;
  top: 1px;
  position: absolute;
  display: inline-block;
  background: url(../images/icon-time.png) no-repeat 0 0;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .btnbar {
  margin-top: 16px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .btnbar a {
  color: #c7222a;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  padding: 5px 10px 5px 30px;
  font-family: 'PFHandbookPro-Thin';
  background-color: #ffffff;
  border: 1px solid #C7222A;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .btnbar a:hover {
  box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -moz-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
  -webkit-box-shadow: 4px 4px 10px rgba(202, 31, 52, 0.5);
}

.locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li .btnbar a::before {
  content: '';
  width: 14px;
  height: 14px;
  left: 10px;
  top: 8px;
  position: absolute;
  display: inline-block;
  background: url(../images/icon-direction.png);
}

.locateus-modal.home-locateusmodal .modal-dialog {
  right: 23px;
}

.locateus-modal.innerpage-locateus-modal .modal-dialog {
  right: 80px;
}

@media screen and (max-width: 1440px) {
  .callus-modal.innerpage-callus-modal .modal-dialog {
    right: auto;
    left: 80px;
  }
  .locateus-modal.innerpage-locateus-modal .modal-dialog {
    right: 16px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .callus-modal .modal-dialog {
    right: auto;
    left: 42px;
  }
  .callus-modal .modal-dialog .modal-content::after {
    right: 205px;
  }
  .locateus-modal.home-locateusmodal .modal-dialog .modal-content::after {
    right: 243px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .callus-modal.home-callusmodal .modal-dialog .modal-content::after {
    left: 50%;
  }
  .locateus-modal.home-locateusmodal .modal-dialog {
    max-width: 743px;
  }
  .locateus-modal.home-locateusmodal .modal-dialog .modal-content::after {
    right: 243px;
  }
}

@media screen and (max-width: 767px) {
  .footer__contact-icons-home {
    width: 100%;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
  }
  .footer__contact-icons-home ul li {
    padding: 0 7px;
  }
  .footer__contact-icons-home ul li:after {
    display: none;
  }
  .footer__contact-icons-home ul li a svg {
    margin-right: 0;
  }
  .footer__contact-icons-home ul li a span {
    display: none;
  }
  .footer__contact-icons-home.innerpagefooterfloaing {
    padding-left: 0;
    padding-right: 76px;
  }
  .footer__contact-icons-home.innerpagefooterfloaing__help-icon {
    width: 55px;
    right: 16px;
  }
  .footer img {
    width: 100%;
  }
  .callus-modal .modal-dialog {
    bottom: 60px;
    right: auto;
    left: 15px;
  }
  .callus-modal .modal-dialog .modal-content::after {
    left: 60px;
  }
  .callus-modal .modal-dialog .modal-content .modal-body {
    padding: 15px;
  }
  .callus-modal .modal-dialog .modal-content .modal-body .close {
    top: 13px;
    right: 13px;
  }
  .callus-modal.home-callusmodal .modal-dialog {
    right: auto;
    left: 10px;
  }
  .callus-modal.home-callusmodal .modal-dialog .modal-content::after {
    left: 44px;
  }
  .callus-modal.innerpage-callus-modal .modal-dialog {
    right: auto;
    left: 0px;
  }
  .callus-modal.innerpage-callus-modal .modal-dialog .modal-content::after {
    left: 35px;
  }
  .locateus-modal .modal-dialog {
    bottom: 50px;
    right: 15px;
    left: 15px;
    max-width: 100% !important;
    width: auto !important;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body {
    padding: 15px;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .close {
    top: 13px;
    right: 13px;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer {
    display: block;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap {
    background: none;
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 15px;
    display: block;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap:before {
    display: none;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .slct-wrap {
    width: 100%;
    margin-left: 0;
    padding: 7px 16px 8px 16px;
    position: relative;
    background: #FFFFFF;
    border: 0.6px solid #C4A167;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .slct-wrap select {
    width: 100%;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .inpt-wrap {
    margin-bottom: 10px;
    width: 100%;
    padding: 7px 16px 8px 16px;
    position: relative;
    background: #FFFFFF;
    border: 0.6px solid #C4A167;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .filds-outer .txtandselct-wrap .inpt-wrap input {
    width: 100%;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap {
    height: 197px;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul {
    display: block;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body .adresswrap-outer .adress-wrap .address-row ul li {
    margin: 0 0 20px 0;
  }
  .locateus-modal .modal-dialog .modal-content:after {
    right: auto;
    left: 171px;
  }
  .locateus-modal.home-locateusmodal .modal-dialog {
    right: 16px;
  }
  .locateus-modal.home-locateusmodal .modal-dialog .modal-content:after {
    left: 76px;
    right: auto;
  }
  .locateus-modal.innerpage-locateus-modal .modal-dialog {
    right: 16px;
  }
  .locateus-modal.innerpage-locateus-modal .modal-dialog .modal-content:after {
    left: auto;
    right: 80px;
  }
}

@media screen and (max-width: 380px) {
  .callus-modal.innerpage-callus-modal .modal-dialog {
    right: auto;
    left: 0px;
  }
  .callus-modal.innerpage-callus-modal .modal-dialog .modal-content::after {
    left: 30px;
  }
  .locateus-modal.innerpage-locateus-modal .modal-dialog {
    right: 16px;
  }
  .locateus-modal.innerpage-locateus-modal .modal-dialog .modal-content:after {
    left: auto;
    right: 72px;
  }
}

@media screen and (max-width: 350px) {
  .callus-modal .modal-dialog .modal-content .modal-body h2 {
    font-size: 22px;
  }
  .callus-modal .modal-dialog .modal-content .modal-body .txt-fields-wrap .callme-btn {
    padding: 5px;
  }
  .locateus-modal .modal-dialog .modal-content .modal-body h2 {
    font-size: 18px;
  }
}

.table-style {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: 1px solid #6A5935;
}

.table-style ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.table-style ul li {
  position: relative;
  margin: 0;
  padding: 14px 40px 14px 60px;
  list-style-type: none;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  font-family: 'PFHandbookPro-Regular';
  border-top: 1px solid #6A593550;
}

@media screen and (max-width: 767px) {
  .table-style ul li {
    font-size: 16px;
    line-height: 20px;
  }
}

.table-style ul li:first-child {
  border: none;
}

.table-style ul li::before {
  height: 16px;
  width: 16px;
  content: '';
  left: 25px;
  top: 16px;
  position: absolute;
  background: url(../images/tick-point.svg) no-repeat 0 0;
}

.table-style ul li strong {
  font-family: 'PFHandbookPro-Bold';
}

.table-style ul li a {
  color: #C7222A;
}

.table-style ul li a:hover {
  color: #000000;
}

/**************************************
    TAB-INSIDE-SLIDER START
**************************************/
.fullwidth-tab {
  padding: 30px 0px 130px;
}

.fullwidth-tab__nav {
  border: 0px;
  margin-bottom: 30px;
  border-bottom: 0.5px solid #6A5935;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.fullwidth-tab__nav .nav-item {
  margin-right: 40px;
}

.fullwidth-tab__nav .nav-item:last-child {
  margin-right: 0px;
}

.fullwidth-tab__nav .nav-item .nav-link {
  color: #8A8A8A;
  font-weight: 500;
  font-size: 24px;
  line-height: 27px;
  border: 0;
  background-color: transparent;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  font-family: 'PFHandbookPro-Medium';
}

.fullwidth-tab__nav .nav-item .nav-link.active {
  color: #C7222A;
}

.fullwidth-tab__nav .nav-item .nav-link.active::after {
  content: "";
  background-color: #C7222A;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .fullwidth-tab {
    padding-bottom: 30px;
  }
  .what-offer__what-do-we-offer-slider.slider-fullwidth {
    width: 105%;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .fullwidth-tab {
    padding-bottom: 30px;
  }
  .fullwidth-tab__nav .nav-item .nav-link {
    font-size: 24px;
    line-height: 27px;
  }
  .what-offer__what-do-we-offer-slider.slider-fullwidth {
    width: 108%;
  }
}

@media screen and (max-width: 767px) {
  .fullwidth-tab {
    padding-bottom: 0;
  }
  .fullwidth-tab__nav {
    border-bottom: 0.5px solid #6A5935;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fullwidth-tab__nav .nav-item {
    margin-right: 30px;
  }
  .fullwidth-tab__nav .nav-item:first-child .nav-link {
    padding-right: 20px;
  }
  .fullwidth-tab__nav .nav-item .nav-link {
    font-family: 'PFHandbookPro-Medium';
    font-size: 20px;
    line-height: 22px;
  }
  .fullwidth-tab__nav .nav-item .nav-link.active::after {
    height: 2px;
  }
}

@media screen and (max-width: 350px) {
  .fullwidth-tab__nav .nav-item {
    margin-right: 15px;
  }
}

/**************************************
      TAB-INSIDE-SLIDER END
**************************************/
/**************************************
    LOANS DETAIL START
**************************************/
.contentWrapper {
  margin: 0 auto;
  position: relative;
}

.tabsWrapper {
  width: 100%;
  height: 24px;
  overflow: hidden;
  position: relative;
}

.tabs {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: -25px;
  left: 0;
  right: 0;
  white-space: nowrap;
  overflow: auto;
}

.tabs li {
  display: inline-block;
  padding: 12px 0px;
  cursor: pointer;
  border-bottom: 1px solid #C4A167;
}

.tabs li a {
  color: #000;
  font-size: 20px;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs li a img {
  margin-right: 8px;
}

.tabs li.active a {
  color: #C7222A;
}

.tabs li:hover a {
  color: #C7222A;
}

.tabs li img {
  display: none;
}

.tabs li:hover img {
  display: block;
}

.tabs li.active img {
  display: block;
}

.next, .previous {
  position: absolute;
  padding: 2px 4px;
  top: 0;
}

.previous {
  left: -25px;
}

.tabContent {
  width: 100%;
  padding: 15px;
}

.btm-txt-line {
  color: #575757;
  font-size: 20px;
  line-height: 24px;
  margin-top: -22px;
  font-family: 'PFHandbookPro-Regular';
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .tabs li a {
    font-size: 18px;
  }
  .tabs li:hover a {
    color: #000000;
  }
  .tabs li:hover img {
    display: none;
  }
  .tabs li.active a {
    color: #C7222A;
  }
  .tabs li.active img {
    display: block;
  }
  .btm-txt-line {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .tabs li a {
    font-size: 15px;
    line-height: 20px;
  }
  .tabs li:hover a {
    color: #000000;
  }
  .tabs li:hover img {
    display: none;
  }
  .tabs li.active a {
    color: #C7222A;
  }
  .tabs li.active img {
    display: block;
  }
  .btm-txt-line {
    font-size: 15px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .tabsWrapper {
    height: 64px;
  }
  .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tabs li {
    position: relative;
  }
  .tabs li.active a img {
    display: none !important;
  }
  .tabs li:hover img {
    display: none !important;
  }
  .tabs li::after {
    content: '';
    left: 0;
    right: 0;
    top: 41px;
    position: absolute;
    height: 2px;
    background: transparent;
  }
  .tabs li.active::after {
    background-color: #C7222A;
  }
}

/**************************************
   LOANS DETAIL END
**************************************/
/**************************************
   PAGE HEAD STYLE START
**************************************/
.pagehead-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.pagehead-wrapper__hd {
  font-size: 35px;
  color: #000000;
  line-height: 40px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  font-family: 'PFHandbookPro-Medium';
}

.pagehead-wrapper__description {
  color: #695935;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  font-family: 'PFHandbookPro-Regular';
}

.pagehead-wrapper__description a {
  color: #C7222A;
}

.pagehead-wrapper__description a:hover {
  color: #695935;
}

.pagehead-wrapper__branch-flds {
  width: 570px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
  -moz-box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
  -webkit-box-shadow: 0px 0px 8px 2px rgba(193, 193, 193, 0.3);
}

.pagehead-wrapper__branch-flds__select-wrap {
  width: 446px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 11px 13px 9px 13px;
  border: 1px solid #C4A167;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-top-right-radius: 0px;
  -moz-border-top-right-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -moz-border-bottom-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  position: relative;
  margin: 0px;
}

.pagehead-wrapper__branch-flds__select-wrap:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  margin-top: -2px;
  width: 13px;
  height: 8px;
  background: url(../images/select-arrow.svg) no-repeat 0 0;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 {
  padding: 0;
  background-color: #ffffff;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select {
  padding: 9px 13px 9px 13px;
  position: relative;
  z-index: 9;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select .select-styled {
  font-size: 18px;
  color: black;
  font-family: "PFHandbookPro-Regular";
  line-height: 23px;
  position: relative;
  z-index: 9;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5.disabled .select .select-styled {
  color: #C7C7C7;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options {
  height: 125px;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ffffff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options::-webkit-scrollbar-thumb {
  background-color: #BA904B;
  border-radius: 10px;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li {
  font-size: 16px;
  cursor: pointer;
  margin: 0;
  padding: 7px 0;
  text-indent: 15px;
  border-bottom: 1px solid #D7D7D7;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-family: 'PFHandbookPro-Regular';
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li:last-child {
  border-bottom: 0;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li:hover {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li.is-selected {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li[rel="hide"] {
  display: none;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select-options li:first-child {
  display: none;
}

.pagehead-wrapper__branch-flds__select-wrap.customselect-typ5.towline-select .select-options {
  height: 80px;
}

.pagehead-wrapper__branch-flds__select-wrap select {
  z-index: 99;
  height: 100%;
  width: 100%;
  color: #000000;
  border: none;
  font-size: 18px;
  line-height: 21px;
  font-family: "PFHandbookPro-Regular";
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.pagehead-wrapper__branch-flds__select-wrap select:focus {
  outline: none;
}

.pagehead-wrapper__branch-flds__select-wrap.disabled {
  border-color: rgba(219, 219, 219, 0.25);
  background: rgba(219, 219, 219, 0.25);
}

.pagehead-wrapper__branch-flds__select-wrap.disabled select {
  color: #C7C7C7;
}

.pagehead-wrapper__branch-flds__findbtn {
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  height: 100%;
  width: 124px;
  border: 0;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFE;
  background: #C7222A;
  border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  display: inline-block;
}

.pagehead-wrapper__branch-name {
  margin-bottom: 25px;
  padding-bottom: 25px;
  margin-top: 36px;
  border-bottom: 1px solid #d8d8d8;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pagehead-wrapper__branch-name {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .pagehead-wrapper__branch-name {
    margin-top: 14px;
    border-top: 1px solid #ddd;
    padding-top: 24px;
  }
}

@media screen and (min-width: 992px) {
  .pagehead-wrapper__branch-name__city {
    max-width: 602px;
  }
}

@media screen and (max-width: 767px) {
  .pagehead-wrapper__branch-name__city {
    padding-bottom: 20px;
  }
}

.pagehead-wrapper__branch-name__label {
  font-size: 20px;
  line-height: 28px;
}

@media screen and (max-width: 991px) {
  .pagehead-wrapper__branch-name__label {
    font-size: 18px;
    line-height: 21px;
  }
}

@media screen and (min-width: 992px) {
  .pagehead-wrapper__branch-name__zone {
    max-width: 156px;
  }
}

@media screen and (min-width: 992px) {
  .pagehead-wrapper__branch-name__sort {
    max-width: 157px;
  }
}

.pagehead-wrapper__branch-name__input-wrap {
  border: 1px solid #C4A167;
  border-radius: 3px;
}

.pagehead-wrapper__branch-name__input-wrap .form-control {
  height: 50px;
  font-size: 20px;
  line-height: 23px;
}

.pagehead-wrapper__branch-name__input-wrap .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 991px) {
  .pagehead-wrapper__branch-name__input-wrap .form-control {
    height: 40px;
    font-size: 18px;
    line-height: 21px;
  }
}

.pagehead-wrapper__branch-name__findbtn {
  top: -1px;
  bottom: 0;
  right: 0;
  position: absolute;
  height: 104%;
  width: 124px;
  border: 0;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #FFFFFE;
  background: #C7222A;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  display: inline-block;
}

.pagehead-wrapper__branch-name__select-box {
  border: 1px solid #C4A167;
  background-color: #ffffff;
  border-radius: 3px;
}

.pagehead-wrapper__branch-name__select-box:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 23px;
  right: 14px;
  width: 0;
  height: 0;
  margin-top: -2px;
  width: 13px;
  height: 8px;
  background: url(../images/select-arrow.svg) no-repeat 0 0;
}

@media screen and (max-width: 991px) {
  .pagehead-wrapper__branch-name__select-box:after {
    top: 48%;
  }
}

.pagehead-wrapper__branch-name__select-box.customselect {
  padding: 0;
  background-color: #ffffff;
  position: relative;
}

.pagehead-wrapper__branch-name__select-box.customselect .select {
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.pagehead-wrapper__branch-name__select-box.customselect .select .select {
  display: none;
}

.pagehead-wrapper__branch-name__select-box.customselect .select .select-styled {
  font-size: 20px;
  color: black;
  font-family: 'PFHandbookPro-Regular';
  line-height: 23px;
  padding: 13px 13px 10px 13px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .pagehead-wrapper__branch-name__select-box.customselect .select .select-styled {
    height: 40px;
  }
}

.pagehead-wrapper__branch-name__select-box.customselect .select .select-styled:focus {
  outline: none !important;
  border-color: transparent  !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.pagehead-wrapper__branch-name__select-box.customselect .select:focus {
  outline: none !important;
  border-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.pagehead-wrapper__branch-name__select-box.customselect.disabled .select .select-styled {
  color: #000000;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options {
  max-height: 148px;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: 53px;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ffffff;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .pagehead-wrapper__branch-name__select-box.customselect .select-options {
    top: 42px;
  }
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options::-webkit-scrollbar-thumb {
  background-color: #BA904B;
  border-radius: 10px;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li {
  font-size: 16px;
  cursor: pointer;
  margin: 0;
  padding: 7px 0;
  text-indent: 15px;
  border-bottom: 1px solid #D7D7D7;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-family: 'PFHandbookPro-Regular';
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li:last-child {
  border-bottom: 0;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li:hover {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li.is-selected {
  color: #C7222A;
  background: #fff;
  border-bottom: 1px solid #C7222A;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li[rel="hide"] {
  display: none;
}

.pagehead-wrapper__branch-name__select-box.customselect .select-options li:first-child {
  display: none;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .pagehead-wrapper__hd {
    font-size: 30px;
  }
  .pagehead-wrapper__description {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 19px;
  }
}

@media screen and (max-width: 767px) {
  .pagehead-wrapper {
    margin-top: 26px;
    margin-bottom: 26px;
  }
  .pagehead-wrapper__hd {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0.01em;
  }
  .pagehead-wrapper__description {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0;
  }
  .pagehead-wrapper__branch-flds {
    width: 100%;
    padding-right: 110px;
  }
  .pagehead-wrapper__branch-flds__select-wrap {
    width: 100%;
  }
  .pagehead-wrapper__branch-flds__select-wrap.customselect-typ5 .select .select-styled {
    font-size: 16px;
  }
  .pagehead-wrapper__branch-flds__findbtn {
    font-size: 18px;
    width: 110px;
    padding: 0;
  }
}

/**************************************
   ECLGS STARTS
**************************************/
.eclgs {
  padding-right: 0px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .eclgs {
    padding-right: 0px;
  }
}

.eclgs p {
  font-size: 20px;
  line-height: 26px;
  color: #575757;
}

@media screen and (max-width: 767px) {
  .eclgs p {
    font-size: 18px;
    line-height: 26px;
  }
}

.eclgs h3 {
  font-size: 24px;
  line-height: 27px;
  color: #151515;
  border-bottom: 0.5px solid rgba(106, 89, 53, 0.5);
  padding-bottom: 5px;
  margin-bottom: 21px;
  padding-top: 38px;
}

@media screen and (max-width: 767px) {
  .eclgs h3 {
    padding-top: 0px !important;
    margin-top: 0 !important;
  }
}

.eclgs a {
  color: #C7222A;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

/**************************************
   ECLGS END
**************************************/
/**************************************
   PAGE HEAD STYLE END
**************************************/
.ipad-view {
  display: none;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .ipad-view {
    display: block;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .hide-ipad {
    display: none;
  }
  .ipad-view {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .hide-desk {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  .hide-mob {
    display: none !important;
  }
}

/*********************************************
          COMMON STYLE
 *********************************************/
@media screen and (max-width: 991px) and (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 740px;
  }
}

@media screen and (min-width: 1200px) {
  .row.gutter-16 {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  .row.gutter-16 > [class^=col] {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row.gutter-16 {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .row.gutter-16 > [class^=col] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media screen and (min-width: 1200px) {
  .row.gutter-25 {
    margin-left: -12.5px !important;
    margin-right: -12.5px !important;
  }
  .row.gutter-25 > [class^=col] {
    padding-left: 12.5px !important;
    padding-right: 12.5px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row.gutter-25 {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .row.gutter-25 > [class^=col] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media screen and (min-width: 1200px) {
  .row.gutter-33 {
    margin-left: -16.5px !important;
    margin-right: -16.5px !important;
  }
  .row.gutter-33 > [class^=col] {
    padding-left: 16.5px !important;
    padding-right: 16.5px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row.gutter-33 {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .row.gutter-33 > [class^=col] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .fullbutton li {
    width: 100% !important;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .what-offer__what-do-we-offer-slider.slider-fullwidth .slick-list.draggable {
    padding-bottom: 0;
  }
  .loan-section .boxes-mortgage > .container h2 {
    margin-top: 0;
  }
}

.font-arial {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.font-menu-arial {
  font-family: Arial, Helvetica, sans-serif !important;
  margin: 0;
}

.ext-number {
  color: #000;
  font-size: 18px;
  font-family: 'PFHandbookPro-Medium';
}

.view-ipad {
  display: none !important;
}

.view-ipad h4 {
  color: #000000;
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}

.view-ipad h4 a {
  position: absolute;
  right: 0px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #C7222A;
  text-decoration: underline;
}

@media (min-width: 767px) and (max-width: 991px) {
  .view-ipad {
    display: block !important;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .hide-ipad {
    display: none !important;
  }
  .boxes-mortgage {
    padding-bottom: 0px !important;
  }
}

/**************************************
      FILTER BUTTONS START
  **************************************/
.searchbx {
  margin-bottom: 30px;
  padding-bottom: 12px;
}

@media (max-width: 767px) {
  .searchbx {
    margin-bottom: 20px;
    padding-bottom: 2px;
  }
}

.searchbx__head {
  font-size: 20px;
  line-height: 24px;
  font-family: 'PFHandbookPro-bold';
  margin-bottom: 19px;
}

.searchbx__head span {
  font-family: 'PFHandbookPro-Medium';
}

@media (max-width: 991px) {
  .searchbx__head {
    font-family: 'PFHandbookPro-Medium';
  }
  .searchbx__head span {
    font-family: 'PFHandbookPro-Bold';
  }
}

.searchbx .filterbutton {
  width: 70%;
}

@media (max-width: 1199px) {
  .searchbx .filterbutton {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .searchbx .filterbutton {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 0;
    margin-right: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    overflow: hidden;
    height: 39px;
    position: relative;
  }
}

.searchbx .filterbutton ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  scroll-behavior: smooth;
}

@media (max-width: 575px) {
  .searchbx .filterbutton ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: -25px;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.searchbx .filterbutton ul li {
  list-style: none;
  margin-right: 16px;
  margin-bottom: 18px;
  outline: none !important;
}

@media (max-width: 991px) {
  .searchbx .filterbutton ul li {
    margin-right: 10px;
  }
}

.searchbx .filterbutton ul li:focus {
  outline: none !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

@media (max-width: 475px) {
  .searchbx .filterbutton ul li {
    margin-right: 15px;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
}

.searchbx .filterbutton ul li.active a {
  background: #BA904B;
  color: #fff;
}

.searchbx .filterbutton ul li.active:hover a {
  background: #BA904B;
  color: #fff;
}

.searchbx .filterbutton ul li:hover a {
  background-color: #fff;
  color: #000;
  border: #BA904B 1px solid;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.searchbx .filterbutton ul li a {
  border: none;
  outline: none;
  background: rgba(236, 236, 236, 0.8);
  padding: 4px 15px;
  font-size: 18px;
  font-family: 'PFHandbookPro-Regular';
  white-space: nowrap;
  line-height: 21px;
  letter-spacing: 0.2px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border: 1px solid transparent;
  color: #777777;
}

@media (max-width: 475px) {
  .searchbx .filterbutton ul li a {
    font-size: 16px;
  }
}

.searchbx .filterbutton ul li a:focus {
  outline: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

@media (max-width: 991px) {
  .searchbx .filterbutton ul li a {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    height: 27px;
  }
}

/**************************************
      FILTER BUTTONS END
  **************************************/
/**************************************
      TABLE FORM STARTS
  **************************************/
.table-form {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .table-form {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .table-form {
    margin-bottom: 35px;
  }
}

.table-form__innerbox {
  border: 1px solid #C4A167;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.table-form__head {
  font-size: 24px;
  font-family: 'PFHandbookPro-Medium';
  line-height: 26px;
  letter-spacing: 0.2px;
  color: #C7222A;
}

@media (max-width: 767px) {
  .table-form__head {
    font-size: 20px;
    line-height: 26px;
  }
}

.table-form .download {
  padding-right: 27px;
  position: relative;
}

.table-form .download:before {
  width: 17px;
  height: 17px;
  content: "";
  background: url(../images/download.svg) no-repeat 0 0;
  position: absolute;
  right: 0;
  top: 4px;
}

.table-form .download:hover:before {
  background: url(../images/download-arrow.svg) no-repeat 0 0;
  background-size: 95%;
}

.table-form ul {
  padding: 0;
  margin: 0;
}

.table-form ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.2px;
  padding: 15px 27px;
  border-bottom: 1px solid #C4A167;
}

@media (max-width: 767px) {
  .table-form ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 15px;
  }
}

.table-form ul li:last-child {
  border-bottom: none;
}

.table-form ul li span {
  width: 76%;
}

@media (max-width: 767px) {
  .table-form ul li span {
    display: block;
    width: 60%;
  }
}

.table-form ul li a {
  color: #BA904B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.table-form ul li a strong {
  padding-right: 20px;
  position: relative;
  font-weight: 400;
}

.table-form ul li a strong:before {
  width: 10px;
  height: 10px;
  content: "";
  background: url(../images/explor.svg) no-repeat 0 0;
  position: absolute;
  right: 0;
  top: 8px;
}

@media (max-width: 767px) {
  .table-form ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
  }
}

.table-form ul li a:hover {
  color: #C7222A;
}

.table-form ul li a:hover strong:before {
  background: url(../images/explore-hover.svg) no-repeat 0 0;
}

.rupees-sign:before {
  content: "₹";
  position: absolute;
  left: 10px;
  top: 4px;
  bottom: 0px;
  font-size: 15px;
  line-height: 1;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.rupees-sign.disabled:before {
  color: #c7c7c7;
}

.rupees-sign input {
  padding-left: 15px;
}

.successfullymsg-box {
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.successfullymsg-box .icon {
  margin-bottom: 21px;
}

.successfullymsg-box .icon img {
  max-width: 60px;
}

.successfullymsg-box h4 {
  font-size: 35px;
  line-height: 36px;
  color: #000;
  margin-bottom: 21px;
}

.successfullymsg-box p {
  color: #695935;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 21px;
}

.successfullymsg-box .submit-btn .btn {
  width: 137px;
  height: 45px;
  font-size: 20px;
  line-height: 23px;
  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;
}

.top-footer {
  background-color: #2b2b2b;
  padding: 40px 0 70px;
}

@media (max-width: 767px) {
  .top-footer {
    padding: 20px 0 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .top-footer {
    padding-bottom: 20px;
  }
}

.top-footer h6 {
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  font-family: 'PFHandbookPro-Bold';
  margin: 0;
}

.top-footer h6:before {
  content: "";
  width: 8px;
  height: 13px;
  background-color: #C7222A;
  display: inline-block;
  margin-right: 4px;
}

.top-footer ul {
  margin-bottom: 0;
}

.top-footer ul li {
  padding-bottom: 10px;
}

.top-footer ul.social-icons li {
  margin-right: 10px;
  width: 44px;
  height: 44px;
  background-color: #000000;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0;
}

.top-footer ul.social-icons li:hover {
  opacity: .7;
}

.top-footer ul.social-icons li a {
  padding: 0;
}

.top-footer ul.social-icons li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .top-footer ul.footer-menu {
    padding: 20px 0 0;
  }
}

.top-footer ul.footer-menu > li {
  padding-right: 75px;
}

@media (max-width: 767px) {
  .top-footer ul.footer-menu > li {
    padding-right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .top-footer ul.footer-menu > li {
    padding-right: 25px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .top-footer ul.footer-menu > li {
    padding-right: 15px;
    width: 100%;
  }
}

.top-footer ul.footer-menu > li:last-child {
  padding-right: 0;
}

.top-footer ul.footer-menu > li a {
  color: #D3D3D3;
  font-size: 16px;
  line-height: 25px;
}

.top-footer ul.footer-menu > li a:hover {
  color: #fff;
}

.bottom-footer {
  background-color: #6C7174;
  padding: 24px 0 50px;
}

.bottom-footer ul {
  margin-bottom: 0;
}

.bottom-footer .bottom-footer-top-section {
  padding-bottom: 10px;
}

.bottom-footer .bottom-footer-bottom-section {
  padding: 12px 0;
  border-top: 1px solid #fff;
}

@media (max-width: 767px) {
  .bottom-footer .bottom-footer-bottom-section {
    padding: 5px 0 10px;
    border-top: none;
  }
}

.bottom-footer .bottom-footer-bottom-section img {
  width: auto;
}

@media (max-width: 991px) {
  .bottom-footer .bottom-footer-bottom-section .social-icons {
    padding-top: 8px;
  }
}

.bottom-footer .bottom-footer-bottom-section .social-icons li {
  margin-right: 9px;
  background: #515151;
  border-radius: 5px;
  padding-bottom: 0;
}

.bottom-footer .bottom-footer-bottom-section .social-icons li:hover {
  opacity: .8;
}

.bottom-footer .bottom-footer-bottom-section .social-icons li a {
  padding: 0;
  width: 34px;
  height: 34px;
  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;
}

.bottom-footer .bottom-footer-bottom-section .social-icons li:last-child {
  margin-right: 0;
}

.bottom-footer .copy-right > li {
  padding-right: 25px;
  color: #D3D3D3;
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 991px) {
  .bottom-footer .copy-right > li {
    padding-right: 0;
  }
}

.bottom-footer .copy-right > li:last-child {
  padding-right: 0;
}

.bottom-footer .footer-menu > li {
  padding-right: 75px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bottom-footer .footer-menu > li {
    padding-right: 25px;
  }
}

.bottom-footer .footer-menu > li:last-child {
  padding-right: 0;
}

.bottom-footer .footer-menu > li a {
  color: #D3D3D3;
  font-size: 16px;
  line-height: 25px;
}

.bottom-footer .footer-menu > li a:hover {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */