@font-face {
  font-family: "poppins_extra_light";
  src: url("../../fonts/poppins/Poppins-ExtraLight.ttf");
}
@font-face {
  font-family: "poppins_light";
  src: url("../../fonts/poppins/Poppins-Light.ttf");
}
@font-face {
  font-family: "poppins_regular";
  src: url("../../fonts/poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "poppins_medium";
  src: url("../../fonts/poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "poppins_semibold";
  src: url("../../fonts/poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "poppins_bold";
  src: url("../../fonts/poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "poppins_black";
  src: url("../../fonts/poppins/Poppins-Black.ttf");
}
html {
  font-size: 10px;
  font-family: "poppins_regular", sans-serif;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
  overflow: auto !important;
}
html body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #0B1A31;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.purple-color {
  color: #312B61;
}

.yellow-color {
  color: #FBC702;
}

.green-color {
  color: #50B196;
}

.rose-color {
  color: #FA9D7E;
}

.red-color {
  color: #f44336;
}

.grey-color {
  color: #707070;
}

.text-center {
  text-align: center;
}

.white-color {
  color: #fff;
}

.blue-color {
  color: #1A87BC;
}

.light-blue-color {
  color: #2BA7DE;
}

.dark-blue-color {
  color: #101010;
}

.grey-blue-background {
  color: #dae6ee;
}

.light-blue-background {
  background-color: #2BA7DE;
}

.dark-blue-background {
  background-color: #101010;
}

.white-background {
  background-color: #fff;
}

p {
  margin: 0;
  font-size: 1.8rem;
  font-family: "poppins_light", sans-serif;
  color: #101010;
  line-height: 2.6rem;
}

h1 {
  font-size: 5.1rem;
  line-height: 1;
}

h2 {
  font-size: 4.1rem;
  line-height: 1;
}

h3 {
  font-size: 3.5rem;
  line-height: 1;
}

h4 {
  font-size: 3rem;
  line-height: 1;
}

h5 {
  font-size: 2.5rem;
  line-height: 1;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  color: #0B1A31;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

img {
  max-width: 100%;
}

hr {
  border-bottom: none;
  box-shadow: none;
  outline: none;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1.5rem 0;
  padding: 0;
}

#ui-datepicker-div {
  width: auto;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
table tr th, table tr td {
  font-size: 1.5rem;
}

ol, ul {
  margin: 0;
  padding-left: 0;
  font-size: 1.8rem;
  font-family: "poppins_light", sans-serif;
  color: #101010;
  line-height: 2.6rem;
}

.collapseomatic {
  cursor: pointer;
  margin: 2px;
  padding: 5px 10px 5px 20px;
  display: block;
  background: url(./../../images/collapse-down.png) no-repeat 98% center #c7dae3;
  color: #393f4f;
  border: none;
}

input,
select,
texarea,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.checkbox-container {
  display: inline;
  position: relative;
  padding-left: 4.5rem;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.9rem;
  color: #373b47;
  font-weight: normal;
  font-family: "poppins_regular", sans-serif;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #fff;
  border: 1px solid #6c717d;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.7rem;
  top: 0.2rem;
  width: 0.8rem;
  height: 1.3rem;
  border: solid #0B1A31;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-container {
  display: inline;
  position: relative;
  padding-left: 3.8rem;
  line-height: 2.5rem;
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "poppins_medium", sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #707070;
}
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.4rem;
  top: 0.4rem;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid #707070;
  background: #0B1A31;
  border-radius: 100%;
}
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.radio-container input:checked ~ .checkmark {
  background-color: #fff;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.custom-select {
  position: relative;
  width: 100%;
  height: 5.85rem;
  margin: 0 1rem;
  border-bottom: 1px solid #0B1A31;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #fff;
  background-image: url(../../images/arrow_down.svg);
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5rem);
}

.select-items div,
.select-selected {
  padding: 0 6rem 0 0;
  cursor: pointer;
  height: 100%;
  font-size: 1.7rem;
  font-family: "poppins_medium", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
}

.select-selected {
  color: #7B7B7B;
}

.select-items div {
  padding: 1.25rem 1rem !important;
  color: #7B7B7B;
}
.select-items div.same-as-selected {
  color: #fff;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 99;
  margin-top: 1px;
  max-height: 25rem;
  overflow: auto;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #0B1A31;
  color: #fff;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1.6rem;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0.5rem;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #52B198;
  background: linear-gradient(90deg, rgb(82, 177, 152) 0%, rgb(67, 145, 125) 100%);
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 3px 0 6px 0 rgba(0, 0, 0, 0.2);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.expand-block {
  border-top: 1px solid rgba(112, 112, 112, 0.3607843137);
}
.expand-block:last-child {
  border-bottom: 1px solid rgba(112, 112, 112, 0.3607843137);
}
.expand-block.expanded > .heading span.title {
  color: #0B1A31;
}
.expand-block.expanded > .heading span.cross {
  transform: rotate(45deg);
}
.expand-block.expanded > .content {
  padding: 2.85rem 0;
  border-top: 1px solid rgba(112, 112, 112, 0.3607843137);
  max-height: 50rem;
  overflow: auto;
}
.expand-block .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.85rem 0;
  cursor: pointer;
}
.expand-block .heading:hover span.title {
  color: #0B1A31;
}
.expand-block .heading span.title {
  font-size: 2.3rem;
  line-height: 4.1rem;
  font-family: "poppins_light", sans-serif;
  color: rgba(12, 83, 135, 0.5019607843);
  transition: all 200ms linear;
}
.expand-block .heading span.cross {
  width: 3rem;
  height: 3rem;
  display: block;
  background-image: url("../../images/plus_blue.svg");
  background-position: center;
  background-size: 3rem;
  background-repeat: no-repeat;
  transition: all 200ms linear;
  flex-shrink: 0;
}
.expand-block .content {
  border-top: 1px solid transparent;
  padding: 0;
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-family: "poppins_light", sans-serif;
  color: #000000;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
}

@media only screen and (max-width: 1440px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 8px;
  }
}
.slider-container {
  position: relative;
  background: lightgrey;
}
.slider-container .slider-arrow {
  position: absolute;
  font-size: 5rem;
  top: 50%;
  transform: translateY(-50%);
  color: lightgrey;
  z-index: 20;
  cursor: pointer;
}
.slider-container .slider-arrow.slider-arrow-left {
  left: 3rem;
}
.slider-container .slider-arrow.slider-arrow-right {
  right: 3rem;
}
.slider-container .slider-arrow:hover i {
  text-shadow: 1px 0px 5px white;
}
.slider-container .slider-arrow i {
  transition: text-shadow 0.2s ease-in-out;
}
.slider-container .slide-single {
  height: auto;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.slider-container .slick-slide {
  height: auto;
}
.slider-container .slide-single-content button {
  margin: 2rem 0.5rem;
}
.slider-container .slide-single {
  min-height: 600px !important;
}
.slider-container ul.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}
.slider-container ul.slick-dots li {
  display: inline-block;
}
.slider-container ul.slick-dots li button {
  color: transparent;
  border-radius: 150px;
  padding: 0;
  width: 0.65rem;
  height: 0.65rem;
  margin: 0.25rem;
  border: 1px solid white;
  background: none;
}
.slider-container ul.slick-dots li.slick-active button {
  border: 1px solid lightgrey;
  background: lightgrey;
}

button {
  background-color: #fff;
  outline: none;
}
button:focus, button:active {
  outline: none;
}

.button-rectangle {
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: "poppins_medium", sans-serif;
  transition: all 0.5s ease;
  border-width: 2px;
  cursor: pointer;
}
.button-rectangle a {
  color: inherit;
}
.button-rectangle a:hover {
  text-decoration: none;
  color: inherit;
}
.button-rectangle.button-rounded {
  font-size: 1.7rem;
  border-radius: 10rem;
  padding: 1.75rem 6rem;
}

button.button-rounded {
  padding: 1rem 2.3rem;
  border-radius: 3px;
  width: auto;
  min-height: 6.3rem;
  font-size: 1.7rem;
  font-weight: normal;
  white-space: nowrap;
  transition: all 200ms linear;
  font-family: "poppins_medium", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
button.button-rounded.blue-button, button.button-rounded.vanilla-button {
  background: #0B1A31;
  color: #fff;
  border: 1px solid #1A87BC;
}
button.button-rounded.blue-button:hover, button.button-rounded.vanilla-button:hover {
  color: #0B1A31;
  background: #fff;
}
button.button-rounded.blue-button-transparent, button.button-rounded.vanilla-button-transparent {
  background: none;
  color: #1A87BC;
  border: 1px solid rgba(26, 135, 188, 0.3098039216);
}
button.button-rounded.blue-button-transparent:hover, button.button-rounded.vanilla-button-transparent:hover {
  background: #0B1A31;
  color: #fff;
  border: 1px solid #1A87BC;
}
button.button-rounded.grey-transparent-button, button.button-rounded.grey-button-transparent {
  background: transparent;
  color: #000000;
  border: 1px solid #D1D1D1;
}
button.button-rounded.grey-transparent-button:hover, button.button-rounded.grey-button-transparent:hover {
  border-color: #1A87BC;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  margin: 0;
  padding: 0 2rem;
}
.tabs-left {
  border-bottom: none !important;
  padding-top: 2px !important;
}
.tabs-left > li {
  float: none !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
}
.tabs-left > li > a {
  border-radius: 0 !important;
  margin-right: 0 !important;
  display: block !important;
  border: 1px solid #fff !important;
  border-bottom: 1px solid #D1D1D1 !important;
}
.tabs-left > li > a:hover {
  background-color: inherit !important;
}
.tabs-left > li.active > a {
  border-bottom: 1px solid #2BA7DE !important;
}

body #header-links {
  margin-top: 25px;
}
body .navigation-wrapper {
  padding-bottom: 5rem;
  position: relative;
}
body .header-breadcrumbs {
  max-width: 1590px;
}
body #outer-wrapper {
  width: 100%;
  padding-top: 0;
  background: #F2F6F9;
}
body #outer-wrapper .content-wrapper {
  max-width: 160rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
body #outer-wrapper .page-container {
  padding-bottom: 7.5rem;
}
body #outer-wrapper .page-container .page-head {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body #outer-wrapper .page-container .page-head .page-head-filter {
  background-color: rgba(0, 0, 0, 0.2509803922);
  padding-bottom: 5rem;
  height: 100%;
}
body #outer-wrapper .page-container .page-head .breadcrumbs {
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 0;
}
body #outer-wrapper .page-container .page-head .breadcrumbs .breadcrumb {
  margin-bottom: 0;
  background: none;
  padding: 0;
  color: #fff;
  font-size: 2rem;
}
body #outer-wrapper .page-container .page-head .breadcrumbs .breadcrumb a {
  color: #2BA7DE;
  font-size: 2rem;
}
body #outer-wrapper .page-container .page-head .header-content h2 {
  color: #fff;
  margin: 4rem 0;
  font-family: "poppins_medium", sans-serif;
  text-transform: none;
}
body #outer-wrapper .page-container .page-content .main-content {
  box-shadow: 0px 5px 15px 10px rgba(0, 0, 0, 0.05);
}
body #outer-wrapper .page-container .page-content .top-blocks {
  display: flex;
  justify-content: space-between;
  margin-top: -5rem;
  z-index: 1;
  position: relative;
  overflow: hidden;
  min-height: 45rem;
}
body #outer-wrapper .page-container .page-content .top-blocks .block-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px);
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block {
  width: 100%;
  position: relative;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .bg-filter {
  position: absolute;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .bg-filter.filter-dark {
  background: #3e728e;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .bg-filter.filter-white {
  background: #fff;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-content {
  position: relative;
  padding: 4rem;
  height: 100%;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block h4 {
  color: #fff;
  font-size: 3.5rem;
  font-family: "poppins_medium", sans-serif;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.25;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block p.thin-text {
  font-family: "poppins_light", sans-serif;
  font-size: 2rem;
  margin: 2rem 0;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle {
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 100%;
  background: #81D5BD;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle h2 {
  width: 100%;
  text-align: center;
  color: #424A58;
  font-size: 3.5rem;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle p {
  color: #424A58;
  width: 100%;
  text-align: center;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(1) {
  left: 10rem;
  top: 5rem;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(2) {
  left: calc(100% - 21.5rem);
  top: 5rem;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(3) {
  width: 15rem;
  height: 15rem;
  left: calc(50% - 7.2rem);
  top: calc(50% - 7.2rem);
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(4),
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(5) {
  width: 14rem;
  height: 14rem;
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(4) {
  left: 10rem;
  top: calc(100% - 19rem);
}
body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-circle:nth-child(5) {
  left: calc(100% - 24rem);
  top: calc(100% - 19rem);
}
body #outer-wrapper .page-container .page-content .stats-content {
  position: relative;
  margin-top: -6rem;
  z-index: 1;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal {
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
  padding: 0 2.5rem;
  z-index: 999;
  background: transparent;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li {
  display: block;
  width: 100%;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li a {
  width: 100%;
  display: block;
  background: #81D5BD;
  color: #424A58;
  border-radius: 0;
  text-align: center;
  font-size: 2rem;
  border-right: 1px solid #81D5BD;
  padding: 1.5rem 0;
  transition: all 300ms ease-in;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li a:hover, body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li a:focus, body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li a:visited {
  border: none;
  outline: none;
  text-decoration: none;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li.active a {
  background: #fff;
  color: #424A58;
  font-weight: bold;
}
body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li:last-child a {
  border-right: none;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content {
  padding: 0 6rem 5rem 6rem;
  background: #fff;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content h2 {
  color: #101010;
  font-size: 3.5rem;
  padding: 5rem 0 3rem 0;
  font-family: "poppins_medium", sans-serif;
  margin: 0;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content .table-container {
  overflow: auto;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.075);
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table {
  width: 100%;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table thead tr th {
  background: #81D5BD;
  color: #fff;
  padding: 2rem 0.5rem;
  white-space: nowrap;
  text-align: center;
  font-size: 1.55rem;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr td {
  text-align: right;
  padding: 2rem;
  color: #6C717F;
  font-size: 1.85rem;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr td.text-center {
  text-align: center;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr td.text-left {
  text-align: left;
  font-size: 1.5rem;
  max-width: 13rem;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr:nth-child(odd) td {
  background: #fff;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr:nth-child(even) td {
  background: #EDF7FC;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr.stats-row td {
  font-weight: bold;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link {
  color: #727884;
  font-size: 1.85rem;
  padding: 2rem 0;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link a {
  color: #727884;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link a span {
  border-bottom: 1px solid #727884;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link a:hover, body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link a:focus, body #outer-wrapper .page-container .page-content .stats-content .tab-content p.loanbook-link a:visited {
  text-decoration: none;
}
body #outer-wrapper .page-container .page-content .stats-content .tab-content .mtv-slide p {
  font-size: 1.8rem;
  padding: 1rem 0;
  color: #707070;
}

@media (max-width: 1600px) {
  body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table thead tr th {
    white-space: initial;
  }
}
@media (max-width: 1000px) {
  body #outer-wrapper .page-container .page-content .top-blocks {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-content {
    padding: 5rem 2rem 10rem 2rem;
  }
  body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-content.block-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
  }
  body #outer-wrapper .page-container .page-content .top-blocks .info-block .block-content .block-circle {
    padding-top: 2rem !important;
    width: 13.5rem !important;
    height: 13.5rem !important;
    position: relative;
    left: unset !important;
    top: unset !important;
    margin: 0.5rem;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tab-content {
    padding: 0 2rem 5rem 2rem;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tab-content h2 {
    font-size: 3rem;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table thead tr th {
    font-size: 1.4rem;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tab-content table.stats-table tbody tr td {
    font-size: 1.6rem;
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 768px) {
  body #outer-wrapper .page-container .page-head .header-content h2 {
    font-size: 3rem;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal {
    padding: 0;
  }
  body #outer-wrapper .page-container .page-content .stats-content .tabs-container ul.tabs-horizontal li a {
    font-size: 1.5rem;
  }
  body #outer-wrapper .page-container .page-content .tab-content {
    padding: 0 1rem 2rem 1rem;
  }
  body #outer-wrapper .page-container .page-content .tab-content h2 {
    font-size: 2.75rem;
    padding: 3rem 0 2rem 0;
  }
}
html body span.full-text {
  display: none;
}
html body span.more-link {
  color: #0B1A31;
  font-family: "poppins_medium", sans-serif;
  cursor: pointer;
}
html body .half-line {
  width: 50%;
  border-bottom: 2px solid #0B1A31;
}
html body ul.slick-dots {
  list-style: none;
  display: flex;
  margin-top: 5rem;
  position: relative;
}
html body ul.slick-dots:after {
  display: block;
  content: "";
  width: 100%;
  border-bottom: 1px solid #0B1A31;
  margin-left: 2.6rem;
  margin-bottom: 0;
}
html body ul.slick-dots li {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  border: 1px solid #707070;
  cursor: pointer;
  margin-right: 1.4rem;
  flex-shrink: 0;
}
html body ul.slick-dots li.slick-active {
  background-color: #0B1A31;
  border-color: #0B1A31;
}
html body ul.slick-dots li button {
  display: none;
}
html body .page-container section .content-wrapper {
  padding: 0 6.25%;
  width: 100%;
}
html body .page-container .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
html body .page-container .flex-container .content-block {
  width: 100%;
}
html body .page-container .flex-container .content-block.align-right {
  text-align: right;
}
html body .page-container section.breadcrumbs .section-content-wrapper {
  padding-top: 0;
}
html body .page-container section.breadcrumbs .breadcrumbs-wrapper {
  display: flex;
  padding: 1.5rem 0;
}
html body .page-container section.breadcrumbs .breadcrumbs-wrapper span {
  font-family: "poppins_medium", sans-serif;
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #000000;
  text-transform: uppercase;
}
html body .page-container section.breadcrumbs .breadcrumbs-wrapper span a {
  color: #0B1A31;
  cursor: pointer;
}
html body .page-container section.breadcrumbs .breadcrumbs-wrapper span.slash {
  opacity: 0.2;
  padding: 0 2.3rem;
}
html body .page-container section.breadcrumbs .line {
  width: 100%;
  border-top: 1px solid rgba(12, 83, 135, 0.3098039216);
  border-bottom: 2px solid #0B1A31;
}
html body .page-container section.breadcrumbs .section-content-wrapper {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0;
}
html body .page-container section.breadcrumbs .section-content-wrapper.align-right {
  padding-top: 13.2rem;
  padding-bottom: 13.2rem;
  width: 97.5%;
  margin: 0 0 0 auto;
  max-width: calc(1640px + (100% - 1640px) / 2);
}
html body .page-container section#top-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
}
html body .page-container section#top-banner .flex-container {
  min-height: 34.4rem;
  padding: 2rem 0;
}
html body .page-container section#top-banner h2 {
  color: #fff;
  font-size: 5.9rem;
  font-family: "poppins_medium", sans-serif;
  text-transform: none;
  margin-bottom: 1rem;
}
html body .page-container section#top-banner p {
  color: #fff;
  font-size: 2rem;
  line-height: 2.9rem;
}
html body .page-container section#bottom_banner {
  min-height: 47.7rem;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
html body .page-container section#bottom_banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  filter: grayscale(1);
  z-index: 1;
}
html body .page-container section#bottom_banner .banner-content {
  text-align: center;
  z-index: 2;
}
html body .page-container section#bottom_banner .banner-content h2 {
  text-transform: uppercase;
  font-size: 4.1rem;
  line-height: 6.1rem;
  margin-bottom: 2.1rem;
  margin-top: 0;
  color: #fff;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  width: 100%;
  text-align: center;
}
html body .page-container section#bottom_banner .banner-content h2 .bold-text {
  font-family: "poppins_medium", sans-serif;
}
html body .page-container section#bottom_banner .banner-content h2 .vanilla-text {
  color: #0B1A31;
}
html body .page-container section#bottom_banner .banner-content p {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}
html body .page-container section#why_lendcart {
  padding-bottom: 14rem;
}
html body .page-container section#why_lendcart .content-wrapper {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 6rem 0 0 0;
}
html body .page-container section#why_lendcart .flex-container .content-block {
  width: 100%;
  flex-basis: 50%;
}
html body .page-container section#why_lendcart .flex-container .content-block.text-block h3 {
  text-transform: uppercase;
  font-size: 4.1rem;
  line-height: 6.1rem;
  margin-bottom: 2.1rem;
  margin-top: 0;
  color: #0C5387;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  max-width: 85%;
}
html body .page-container section#why_lendcart .flex-container .content-block.text-block h4 {
  font-size: 2.3rem;
  line-height: 3.4rem;
  margin-bottom: 2.4rem;
  margin-top: 0;
  color: #000000;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  max-width: 85%;
}
html body .page-container section#why_lendcart .flex-container .content-block.text-block p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-top: 0;
  color: #1A1A1A;
  font-weight: normal;
  font-family: "poppins_light", sans-serif;
  max-width: 80%;
  margin-bottom: 4.5rem;
}
html body .page-container section#why_lendcart .flex-container .content-block.img-block .image-container {
  text-align: left;
}
html body .page-container section#why_lendcart .flex-container .content-block.img-block .image-container img {
  width: 100%;
  filter: grayscale(1);
}
html body .page-container section#user_types {
  padding-bottom: 5rem;
  margin-bottom: -37rem;
}
html body .page-container section#user_types .content-wrapper {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 10rem 0 0 0;
}
html body .page-container section#user_types .flex-container {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  align-items: unset;
}
html body .page-container section#user_types .flex-container .content-block {
  background-color: #F8F8F8;
}
html body .page-container section#user_types .flex-container .content-block .block-header {
  display: flex;
  align-items: flex-end;
  padding: 6% 0 0 6%;
}
html body .page-container section#user_types .flex-container .content-block .block-header h4 {
  flex-shrink: 0;
  font-family: "poppins_medium", sans-serif;
  font-size: 4.1rem;
  white-space: normal;
  width: 100%;
}
html body .page-container section#user_types .flex-container .content-block .block-header hr {
  width: 100%;
  border-color: #0B1A31;
  opacity: 0.36;
  margin: 0 0 0.75rem 1rem;
}
html body .page-container section#user_types .flex-container .content-block .block-content {
  padding: 6% 8% 6% 6%;
}
html body .page-container section#user_types .flex-container .content-block .block-content p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-top: 0;
  color: #1A1A1A;
  font-weight: normal;
  font-family: "poppins_light", sans-serif;
  max-width: 80%;
  margin-bottom: 4.5rem;
}
html body .page-container section#user_types .flex-container .content-block .block-content p.subheader {
  font-family: "poppins_medium", sans-serif;
  font-size: 1.9rem;
  line-height: 2.6rem;
}
html body .page-container section#user_types .flex-container .content-block .block-content button {
  min-width: 25rem;
  max-width: 100%;
  min-height: 6.6rem;
}
html body .page-container section#user_types .flex-container .content-block .block-content button.grey-button-transparent {
  background-color: #fff;
}
html body .page-container section#user_types .flex-container .content-block:nth-child(1) {
  background-color: #101010;
}
html body .page-container section#user_types .flex-container .content-block:nth-child(1) h4 {
  color: #fff;
}
html body .page-container section#user_types .flex-container .content-block:nth-child(1) .block-header hr {
  border-color: #fff;
  opacity: 0.65;
}
html body .page-container section#user_types .flex-container .content-block:nth-child(1) .block-content p {
  color: white;
}
html body .page-container section#how_it_works {
  background-color: rgba(128, 128, 128, 0.0705882353);
  min-height: 70rem;
  padding-top: 47rem;
  padding-bottom: 15rem;
}
html body .page-container section#how_it_works .content-wrapper {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 10rem 0 0 0;
}
html body .page-container section#how_it_works hr {
  margin: 2.9rem 0 4rem 0;
}
html body .page-container section#how_it_works .partner-block .slide-content .img-container {
  background-color: white;
  margin: 0 5% 2rem 5%;
  min-height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .page-container section#how_it_works .partner-block .slide-content .img-container a {
  display: flex;
  align-items: center;
}
html body .page-container section#how_it_works .partner-block .slide-content .img-container a img {
  margin: 0 auto;
  width: auto;
  max-height: 7rem;
}
html body .page-container section#how_it_works .partner-block .slide-content p.section-header {
  text-align: center;
  font-family: "poppins_regular", sans-serif;
  font-size: 2rem;
  color: #0B1A31;
}
html body .page-container section#how_it_works .flex-container.space-between {
  margin-bottom: 7.5rem;
}
html body .page-container section#how_it_works .flex-container.space-between h3 {
  text-transform: uppercase;
  font-size: 4.1rem;
  line-height: 6.1rem;
  margin-bottom: 0;
  margin-top: 0;
  color: #0B1A31;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  max-width: 85%;
}
html body .page-container section#how_it_works .flex-container.space-between a.about-link {
  font-family: "poppins_medium", sans-serif;
  font-size: 2.3rem;
  color: #312B61;
}
html body .page-container section#how_it_works .flex-container.three-columns {
  align-items: flex-start;
}
html body .page-container section#how_it_works .flex-container.three-columns .content-block {
  width: 30%;
  margin-bottom: 2rem;
  padding-right: 3.3333333333%;
  height: auto;
}
html body .page-container section#how_it_works .flex-container.three-columns .content-block p {
  margin-bottom: 3rem;
  color: #0B1A31;
}
html body .page-container section#how_it_works .flex-container.three-columns .content-block p.section-header {
  color: #0B1A31;
  font-family: "poppins_medium", sans-serif;
  font-size: 2.5rem;
}
html body .page-container section#how_it_works .flex-container.three-columns .content-block p.section-subheader {
  font-family: "poppins_medium", sans-serif;
  font-size: 1.9rem;
  line-height: 2.6rem;
}

@media (max-width: 768px) {
  html body .page-container section .content-wrapper {
    padding: 0 5%;
  }
  html body .page-container section#why_lendcart .content-wrapper,
  html body .page-container section#user_types .content-wrapper,
  html body .page-container section#how_it_works .content-wrapper {
    padding: 10rem 0;
  }
}
@media (max-width: 640px) {
  html body .page-container section#top-banner h2 {
    font-size: 4rem;
  }
  html body .page-container section#top-banner p {
    line-height: 2.4rem;
  }
  html body .page-container section#top-banner .flex-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  html body .page-container section#top-banner .flex-container .content-block {
    text-align: center;
  }
  html body .page-container section#why_lendcart .content-wrapper {
    padding: 0 2%;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg {
    background-size: 80%;
    background-position: center 95%;
  }
  html body .page-container section#why_lendcart .content-wrapper .flex-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  html body .page-container section#why_lendcart .content-wrapper .flex-container .content-block {
    flex-basis: auto;
  }
  html body .page-container section#why_lendcart .content-wrapper .flex-container .content-block.text-block {
    padding: 5% 0;
  }
  html body .page-container section#why_lendcart .content-wrapper .flex-container .content-block.img-block .image-container img {
    max-width: 70%;
  }
  html body .page-container section#user_types .content-wrapper {
    padding: 0 2%;
  }
  html body .page-container section#user_types .content-wrapper .flex-container {
    flex-wrap: wrap;
  }
  html body .page-container section#how_it_works {
    min-height: auto;
  }
  html body .page-container section#how_it_works .content-wrapper {
    padding: 0 2%;
  }
  html body .page-container section#how_it_works .content-wrapper .flex-container.three-columns {
    flex-wrap: wrap;
    justify-content: center;
  }
  html body .page-container section#how_it_works .content-wrapper .flex-container.three-columns .content-block {
    width: 100%;
  }
  html body .page-container section#how_it_works .content-wrapper .flex-container.three-columns .content-block p.section-header {
    text-align: center;
  }
}
@media (max-width: 640px) {
  html body .page-container ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  html body .page-container ul.slick-dots li button {
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border: 1px solid lightgrey;
    border-radius: 100%;
    color: transparent;
    margin: 0.6rem;
    cursor: pointer;
  }
  html body .page-container ul.slick-dots li.slick-active button {
    background: #0B1A31;
    border: 1px solid #0B1A31;
  }
  html body .page-container section .content-wrapper {
    padding: 5rem 0 !important;
  }
  html body .page-container section#top-banner .flex-container {
    min-height: auto;
  }
  html body .page-container section#top-banner .content-wrapper {
    padding: 2rem 6% !important;
  }
  html body .page-container section#top-banner h2 {
    font-size: 4rem;
  }
  html body .page-container section#top-banner p {
    line-height: 2.4rem;
  }
  html body .page-container section#why_lendcart {
    border-bottom: 1px solid rgba(49, 43, 97, 0.1411764706);
    padding-bottom: 0;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg {
    background-image: none;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg .flex-container {
    flex-direction: column-reverse;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg .flex-container .content-block.img-block .image-container img {
    max-width: 100%;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg .flex-container .content-block.text-block h3 {
    font-size: 2.6rem;
    max-width: 100%;
    line-height: 1;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg .flex-container .content-block.text-block h4 {
    max-width: 100%;
    text-align: justify;
  }
  html body .page-container section#why_lendcart .content-wrapper.parallel-bg .flex-container .content-block.text-block p {
    text-align: justify;
    max-width: 100%;
  }
  html body .page-container section#user_types {
    border-bottom: 1px solid rgba(49, 43, 97, 0.1411764706);
    margin-bottom: 0;
    padding-bottom: 0;
  }
  html body .page-container section#user_types .flex-container .content-block .block-header h4 {
    font-size: 2.6rem;
  }
  html body .page-container section#how_it_works {
    padding-top: 0;
    background-color: white;
  }
  html body .page-container section#how_it_works .flex-container.space-between {
    justify-content: center;
  }
  html body .page-container section#how_it_works .flex-container.space-between h3 {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    max-width: 100%;
  }
  html body .page-container section#how_it_works .flex-container.space-between a.about-link {
    display: none;
  }
  html body .page-container section#how_it_works hr {
    display: none;
  }
  html body .page-container section#how_it_works .flex-container.three-columns {
    display: block;
  }
  html body .page-container section#how_it_works .flex-container.three-columns .content-block {
    min-width: 27.5rem;
    padding: 0 2rem 0 1.25%;
    margin: 0;
    border: none;
    border-right: 3px solid #E8E7ED;
    height: auto;
  }
  html body .page-container section#how_it_works .flex-container.three-columns .content-block p.section-header {
    text-align: left !important;
  }
  html body .page-container section#how_it_works .flex-container.three-columns .content-block:last-child {
    border-right: none;
  }
  html body .page-container section#bottom_banner {
    padding: 2rem 10%;
  }
  html body .page-container section#bottom_banner .banner-content h2 {
    font-size: 3.5rem;
  }
  html body .page-container section#user_types .flex-container .content-block .block-content p {
    max-width: 100%;
    text-align: justify;
  }
  html body .page-container section#user_types .flex-container {
    box-shadow: none;
  }
  html body .partner-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  html body .partner-block .img-container a img {
    margin: 0 auto;
  }
  html body .partner-block p.section-header {
    text-align: center;
  }
}
@media (max-width: 768px) {
  html body .page-container section .content-wrapper {
    padding: 5rem 0;
  }
  html body .page-container section#why_lendcart .content-wrapper {
    padding: 5rem 0;
  }
}

/*# sourceMappingURL=partners.css.map */
