﻿@charset "UTF-8";
/**
* Template Name: CustomStyles
* Author: Rencata-UI
* Version: 0.1
*/
/* General Style */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "AzoSans-Regular";
  src: url("../fonts/AzoSans-Regular.otf");
}
@font-face {
  font-family: "AzoSans-Medium";
  src: url("../fonts/AzoSans-Medium.otf");
}
body {
  font-family: "AzoSans-Regular", sans-serif;
  color: #222222;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.6px;
}

a {
  text-decoration: none;
  color: #1C3655;
}
a:hover {
  color: #fff;
}

p {
  font-size: 16px;
  line-height: 24px;
}

.container-fluid {
  padding-left: 200px;
  padding-right: 200px;
}

.btn-solid {
  padding: 12px 70px;
  border-radius: 10px;
  color: #fff;
  font-family: "AzoSans-Medium", sans-serif;
  font-size: 16px;
  background-color: #4D94FF;
  transition: 0.3s;
  border: none;
  outline: 0;
  text-align: center;
  line-height: 22px;
}
.btn-solid:hover {
  background-color: #1C3655;
  cursor: pointer;
}

.btn-outline {
  padding: 12px 70px;
  border-radius: 10px;
  color: #1C3655;
  font-family: "AzoSans-Medium", sans-serif;
  font-size: 16px;
  border: 2px solid #4D94FF;
  transition: 0.3s;
  outline: 0;
  text-align: center;
  line-height: 22px;
}
.btn-outline:hover {
  background-color: #1C3655;
  border: 2px solid #fff;
  color: #fff;
}

label.form-label {
  color: #222222;
  margin-bottom: 0;
}

input.btn-solid {
  line-height: normal;
  border-radius: 5px;
  padding: 10px 30px;
}

button.btn-solid {
  line-height: normal;
  border-radius: 5px;
  padding: 10px 30px;
}

input.form-control,
form textarea.form-control {
  border: 1px solid #1C3655;
  background-color: #F7F6F7;
  border-radius: 3px;
  padding: 4px 10px;
}
input.form-control:focus,
form textarea.form-control:focus {
  border: 1px solid #1C3655;
  box-shadow: none;
}

.wrapword {
  word-break: break-all;
}

/* Loader */
.spanner {
  position: fixed;
  top: 0;
  background: rgba(42, 42, 42, 0.3333333333);
  width: 100%;
  display: block;
  text-align: center;
  height: 100vh;
  color: #FFF;
  z-index: 1000;
  visibility: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation: load7 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.show {
  visibility: visible;
}

.spanner,
.overlay {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.spanner.show,
.overlay.show {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #4D94FF;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #C38C20;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  background: #1C3655;
  transition: all 0.5s;
  z-index: 997;
  padding: 27px 0;
  position: sticky !important;
}
#header .logo img {
  max-width: 216px;
}
#header .dropdown-menu {
  background-color: #fff;
  padding: 4px 12px;
}
#header .dropdown-menu a.dropdown-item {
  color: #1c3454 !important;
  margin: 4px 0;
  border-radius: 5px;
}
#header .dropdown-menu a.dropdown-item:hover {
  background-color: #1c3454;
  color: #fff !important;
}
#header .navbar a {
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-family: "AzoSans-Medium", sans-serif;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
#header .navbar a:focus {
  color: #4D94FF;
}
#header .navbar a:hover {
  color: #4D94FF;
}
#header .navbar a:focus.active {
  color: #4D94FF;
}
#header .navbar a.active {
  color: #4D94FF;
}
#header .navbar a.apply {
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  border: 2px solid #4D94FF;
}
#header .navbar a.apply:hover {
  background-color: #4D94FF;
  color: #fff;
}
#header .navbar a.apply:focus {
  background-color: #4D94FF;
}
#header .navbar .mobile-nav-toggle {
  color: #fff;
}
#header .navbar button.nav-link {
  background: transparent;
  border: 0;
  color: white;
}
#header .navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 54, 85, 0.85);
  transition: 0.3s;
  z-index: 999;
}
#header .navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
#header .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
#header .navbar-mobile a.active {
  color: #4D94FF;
}
#header .navbar-mobile a {
  padding: 10px 20px;
  font-size: 16px;
  color: #1C3655;
  margin: 15px;
}
#header .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: #1C3655;
  margin: 15px;
}
#header .navbar-mobile a:hover {
  color: #1C3655;
}
#header .navbar-mobile a.apply {
  padding: 8px 15px;
  margin-left: 30px;
  border-radius: 10px;
  color: #1C3655;
  font-size: 16px;
  border: 2px solid #4D94FF;
}
#header .navbar-mobile a.apply:hover {
  background-color: #4D94FF;
  color: #fff;
}
#header .navbar-mobile a.apply:focus {
  background-color: #4D94FF;
}

#header.header-scrolled {
  background: #1C3655;
  box-shadow: 0px 2px 4px 4px rgba(28, 54, 85, 0.15);
}

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar ul li {
  position: relative;
  padding-right: 4px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1280px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
/* Main */
main {
  position: relative;
  top: 0;
  min-height: calc(100vh - 239px);
}

footer {
  background-color: #1C3655;
  padding: 20px 0;
  padding-bottom: 15px;
  position: relative;
  top: 0;
  color: #B0C0D4;
  font-size: 12px;
  line-height: 16px;
}
footer .admin-login {
  position: absolute;
  bottom: 12px;
}
footer .admin-login a {
  cursor: pointer;
}
footer .admin-login a img {
  max-width: 100%;
  height: auto;
}
footer a {
  color: #B0C0D4;
  font-size: 12px;
}
footer .mail {
  line-height: 12px;
  padding-top: 4px;
}
footer .border-left {
  border-left: 1px solid #B0C0D4;
}
footer .border-right {
  border-right: 1px solid #B0C0D4;
}
footer .border-b {
  border-bottom: none;
}
footer .url img {
  width: 185px;
  height: auto;
}
footer .link ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.section-set {
  padding: 60px 0;
}

/* Banner */
.banner .carousel .carousel-indicators button {
  border-radius: 50% !important;
  width: 15px;
  height: 15px;
  border: 2px solid #1C3655;
  opacity: 1;
  background-clip: unset;
  margin: 8px;
  padding: 0 !important;
}
.banner .carousel .carousel-indicators button.active {
  background-color: #1C3655;
}
.banner .carousel .carousel-control-prev span.carousel-control-prev-icon {
  background-image: url(../img/arrow-left.svg) !important;
}
.banner .carousel .carousel-control-next span.carousel-control-next-icon {
  background-image: url(../img/arrow-right.svg) !important;
}
.banner .carousel img.mobile {
  display: none !important;
}

/* Home */
.head {
  padding: 15px 0;
}
.head h2 {
  color: #1C3655;
  font-size: 36px;
  font-weight: 400;
  font-family: "AzoSans-Medium", sans-serif;
}
.head h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #C38C20;
  position: relative;
  left: 0;
  bottom: -10px;
}

.title {
  padding: 15px 0;
}
.title h2 {
  color: #4D94FF;
  font-size: 32px;
  font-weight: bold;
}

.head.center h2:after {
  margin: auto;
}

.w-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}
.w-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gray-bg {
  background-color: #f7f6f7;
}

.gray-bg2 {
  background-color: #e4e3e5;
}

.resources {
  background: url(../img/H-resources-bg.png);
  background-color: #1C3655;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.resources p {
  width: 75%;
  margin: 15px auto;
  padding-bottom: 10px;
  text-align: left;
}
.resources ul {
  text-align: left;
  list-style: none;
  margin: 15px auto;
  display: table;
}
.resources ul li::before {
  content: "• ";
  color: #C38C20;
  /* or whatever color you prefer */
}
.resources a.btn-solid {
  background-color: #fff;
  color: #1C3655;
}
.resources a.btn-solid:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #4D94FF;
}

.login {
  background: url(../img/H-login-bg.png);
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login p {
  width: 60%;
  margin: 15px auto;
  padding-bottom: 10px;
  text-align: left;
}

.contacts {
  background: url(../img/contacts-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 30px 0;
}
.contacts .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.contacts .accordion .accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.contacts .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
}
.contacts .accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.contacts .accordion .accordion-header .accordion-button {
  box-shadow: none;
  font-size: 15px;
}
.contacts .accordion .accordion-header .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons", sans-serif;
  background-image: none;
  font-size: 24px;
  color: #4D94FF;
}
.contacts .accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.contacts .accordion .accordion-header .accordion-button:not(.collapsed)::after {
  transform: none;
  content: "\f2ea";
}
.contacts .accordion .accordion-body {
  padding-top: 0;
}
.contacts .accordion .accordion-body .acc-exe {
  border-top: 2px solid #C38C20;
  padding-top: 10px;
}
.contacts .accordion .acc-exe {
  display: flex;
}
.contacts .accordion .acc-exe .logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.contacts .accordion .acc-exe .logo img {
  width: 100%;
  height: auto;
  position: relative;
  top: 40%;
  transform: translate(0%, -40%);
}
.contacts .accordion .acc-exe .name {
  line-height: 20px;
  padding-top: 4px;
  padding-left: 10px;
}
.contacts .accordion .acc-exe .name .name1 {
  color: #1C3655;
  font-family: "AzoSans-Medium", sans-serif;
}
.contacts .accordion .acc-exe .name .name2 {
  color: #222222;
}
.contacts .accordion.no-jr .accordion-header .accordion-button::after {
  display: none;
}
.contacts .approved {
  background-color: #fff;
  padding: 20px 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
}
.contacts .approved h2 {
  color: #4D94FF;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
}
.contacts .approved .documents {
  color: #1C3655;
}
.contacts .approved .documents h2 {
  font-weight: bold;
  color: #1C3655;
  padding: 0;
  font-size: 15px;
}
.contacts .approved .documents ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.contacts .approved .documents ul li a {
  color: #222222;
  display: flex;
  font-size: 15px;
}
.contacts .approved .documents ul li a:hover {
  color: #4D94FF;
}
.contacts .approved .documents ul li span {
  padding-right: 6px;
}
.contacts .approved .documents ul li span img {
  max-width: 16px;
  height: auto;
}
.contacts .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.profile {
  background: url(../img/contact-profile-bg.png);
  background-color: #f7f6f7;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
}
.profile .p-box {
  background-color: #F7F6F7;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}
.profile .p-box .img {
  width: auto;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.profile .p-box .img img {
  width: 100%;
  height: auto;
}
.profile .p-box .p-name {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #C38C20;
}
.profile .p-box .p-name .name {
  font-size: 20px;
  color: #1C3655;
  font-weight: bold;
  padding-top: 6px;
}
.profile .p-box .p-name .role {
  color: #567294;
}
.profile .p-box .p-contact {
  padding: 10px 0;
  line-height: 16px;
}
.profile .p-box .p-contact a {
  color: #567294;
  line-height: 14px;
  font-size: 13px;
}
.profile .p-box .p-contact a:hover {
  color: #1C3655;
}
.profile .p-text {
  color: #222222;
}
.profile .p-text p {
  line-height: 21px;
}
.profile .p-text ul {
  line-height: 21px;
}
.profile .jr-profile {
  line-height: 24px;
  margin-top: 20px;
}
.profile .jr-profile .border-l {
  border-left: 1px solid #C38C20;
}
.profile .jr-profile .name {
  color: #1C3655;
  font-size: 20px;
  font-weight: bold;
}
.profile .jr-profile .role {
  color: #222222;
  font-weight: 600;
}
.profile .jr-profile a {
  color: #222222;
  font-size: 14px;
}
.profile .jr-profile a:hover {
  color: #1C3655;
}

.blendedratePage {
  background: url(../img/resourcesPage-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
  font-size: 14px;
}
.blendedratePage .section-header {
  font-size: 32px;
  font-weight: bold;
  color: #4D94FF;
  padding: 15px 0;
}
.blendedratePage .section-header h2 {
  font-size: 32px;
  font-weight: bold;
}
.blendedratePage .form .input-set .form-control {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 10px 15px;
  color: #130D40;
  font-size: 17px;
}
.blendedratePage .form .input-set .form-select {
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 10px 15px;
  color: #130D40;
  font-size: 17px;
  padding-right: 40px;
}
.blendedratePage .form .input-set span.input-group-text {
  border-color: #707070;
  background-color: #fff;
  padding: 8px;
  font-weight: bold;
  color: #130D40;
  font-size: 17px;
  width: 28px;
}
.blendedratePage .form .title {
  background-color: #4D94FF;
  border-radius: 4px 4px 0 0;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
.blendedratePage .form .form-head {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
}
.blendedratePage .form .form-box {
  background: #EDF1F7;
  border-radius: 4px;
  padding: 30px;
}
.blendedratePage .form .input-set {
  margin-bottom: 15px;
}
.blendedratePage .form .input-set span.text-danger.field-validation-error {
  color: #F92750 !important;
  font-size: 13px !important;
}
.blendedratePage .form input.btn-solid.get-btn {
  line-height: 22px;
  border-radius: 10px;
  padding: 12px 50px;
  margin-right: 15px;
}
.blendedratePage .form .btn-solid.reset-btn {
  background: #edf1f7;
  color: #1e3454;
  padding: 12px 50px;
}
.blendedratePage .form .result .box {
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  letter-spacing: 1px;
}
.blendedratePage .form .result .box h2 {
  font-size: 32px;
  font-weight: bold;
}
.blendedratePage .form .result .box h3 {
  font-size: 26px;
  font-weight: 500;
}
.blendedratePage .form .result .box p {
  font-size: 18px;
  width: 60%;
  margin: 0 auto;
}
.blendedratePage .form .result .box1 {
  background: url(../img/result1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blendedratePage .form .result .box2 {
  background: url(../img/result2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blendedratePage .form .result .box3 {
  background: url(../img/result3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blendedratePage .form .result .box.box1 {
  padding: 42px 20px;
  min-height: 375px;
}
.blendedratePage .form .result .box.box1 h2 {
  font-size: 32px;
  color: #bd862b;
}
.blendedratePage .form .result .box.box1 .btn-greenLight {
  background-color: #1c3655;
  border: 2px solid #4D94FF;
  color: #fff;
}
.blendedratePage .form .result .box.box1 .btn.btn-greenLight.no-data {
  margin: 89px 0;
  font-size: 18px;
  background-color: #4D94FF;
  color: #fff;
  line-height: 22px;
}
.blendedratePage .form .result .box.box2 {
  position: relative;
}
.blendedratePage .form .result .box.box2 .vs {
  position: absolute;
  right: -54px;
  background: #fff;
  border-radius: 50%;
  height: 90px;
  width: 90px;
  top: 40%;
  text-align: center;
  font-weight: bold;
  color: #1C3655;
  font-size: 42px;
  line-height: 96px;
}

.resourcesPage {
  background: url(../img/resourcesPage-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
}
.resourcesPage .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.resourcesPage .title {
  padding-bottom: 4px;
}
.resourcesPage a {
  color: #222222;
}
.resourcesPage a:hover {
  color: #4D94FF;
}
.resourcesPage p {
  margin-bottom: 0;
  color: #222222;
  font-size: 14px;
}
.resourcesPage .title h2 {
  font-size: 20px;
}
.resourcesPage ul {
  list-style: none;
  padding-left: 0;
}
.resourcesPage ul li span {
  padding-right: 4px;
}
.resourcesPage ul li span img {
  max-width: 16px;
  height: auto;
}
.resourcesPage .times {
  color: #222222;
  font-size: 14px;
  line-height: 24px;
}
.resourcesPage .times .set {
  display: flex;
  border-bottom: 1px solid #C38C20;
  padding: 0;
  margin-bottom: 4px;
}
.resourcesPage .times .set div:first-child {
  width: 50%;
  padding-right: 6px;
}
.resourcesPage .times .update-Date {
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
}
.resourcesPage .clause {
  color: #222222;
  font-size: 14px;
  line-height: 22px;
}
.resourcesPage .servicer {
  background: #4D94FF;
  font-size: 14px;
  padding: 0;
  height: auto;
  border: 2px solid #fff;
}
.resourcesPage .servicer .head-servicer {
  font-weight: bold;
  color: #1e3454;
  margin-bottom: -6px;
  padding: 0;
  height: auto;
}
.resourcesPage .servicer p.head-servicer {
  padding-top: 4px;
  line-height: 18px;
}
.resourcesPage .servicer .head-name {
  background: #fff;
  padding: 4px;
  text-align: center;
  font-weight: bold;
  color: #1e3454;
  font-size: 14px;
  border: 1px solid #1e3454;
}
.resourcesPage .servicer .set-box2 {
  border-left: 1px solid #1e3454;
}
.resourcesPage .servicer .set-box1 .head-name {
  border-right: 0;
}
.resourcesPage .servicer .set-box2 .head-name {
  border-left: 0;
}
.resourcesPage .servicer .text-white {
  line-height: 20px;
}
.resourcesPage .servicer .text-white a {
  color: #fff;
}
.resourcesPage .servicer .text-white a:hover {
  color: #fff;
}

.productsPage {
  background: url(../img/productsPage-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
}
.productsPage .p-row {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}
.productsPage .p-col {
  padding: 6px;
  text-align: center;
}
.productsPage .box {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
}
.productsPage .box .p-img {
  justify-content: center;
  display: flex;
  align-items: center;
  min-height: 142px;
}
.productsPage .box .p-img img {
  max-width: 100%;
  height: auto;
  padding-bottom: 15px;
}
.productsPage .box .p-name {
  font-size: 22px;
  font-family: "AzoSans-Medium", sans-serif;
  color: #1C3655;
  font-weight: bold;
  padding: 15px 0;
  min-height: 40px;
}
.productsPage .box p {
  color: #222222;
  line-height: 21px;
  min-height: 40px;
}
.productsPage .box .btn-solid {
  display: block;
  padding: 12px 0;
}

.aboutPage {
  background: url(../img/aboutPage-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
}
.aboutPage .img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}
.aboutPage .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.aboutPage p {
  color: #222222;
}
.aboutPage hr {
  border-top: 2px solid #C38C20;
}

/* Login */
.loginPage {
  background: url(../img/loginPage-bg.png);
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
}
.loginPage .login-box {
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  min-height: 534px;
}
.loginPage .login-box .title {
  padding-bottom: 0;
}
.loginPage .login-box p {
  color: #222222;
}
.loginPage .login-box a.btn-solid {
  line-height: normal;
  border-radius: 5px;
  padding: 10px 30px;
}
.loginPage .login-box .login-form {
  text-align: left;
  padding-top: 15px;
}
.loginPage .login-box .login-form .signup {
  justify-content: center;
  align-items: center;
}
.loginPage .login-box .login-form .signup .div {
  width: 6px;
  height: 6px;
  background-color: #222222;
  border-radius: 50%;
  margin: 0 10px;
}
.loginPage .login-box .login-form .signup a {
  font-size: 13px;
  color: #222222;
}
.loginPage .login-box .login-form .signup a:hover {
  color: #4D94FF;
}
.loginPage .login-box .tpo-img {
  height: 237px;
  padding-top: 20px;
}

.signup .approved {
  background-color: #fff;
  padding: 20px 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
}
.signup .approved h2 {
  color: #4D94FF;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
}
.signup .title {
  padding-bottom: 0;
}
.signup p {
  color: #1C3655;
}
.signup a {
  color: #1C3655;
}
.signup a:hover {
  color: #4D94FF;
}
.signup .p-conditions {
  color: #222222;
  margin-bottom: 0;
  padding-left: 10px;
}
.signup .p-conditions .tip {
  display: inline-block;
  cursor: pointer;
}
.signup .p-conditions i {
  font-size: 18px;
  color: #1C3655;
}

.otherPage {
  padding: 10px 0;
}
.otherPage .title h2 {
  font-size: 32px;
  text-align: center;
}
.otherPage p {
  margin-bottom: 6px;
}
.otherPage h2 {
  font-size: 18px;
  padding: 6px 0;
  font-weight: bold;
}
.otherPage .link a {
  color: #222222;
  word-break: break-all;
}
.otherPage .link a:hover {
  color: #4D94FF;
}
.otherPage .url a {
  color: #222222;
  word-break: break-word;
}
.otherPage .url a:hover {
  color: #4D94FF;
}
.otherPage .text-h {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}
.otherPage .text-h span b {
  font-size: 18px;
  padding: 6px 0;
  font-weight: bold;
}
.otherPage .table > :not(caption) > * > * {
  padding: 2px 2px !important;
}

/* Modal */
.modal .modal-header {
  padding-bottom: 6px;
}
.modal .modal-header button.btn-close:focus {
  box-shadow: none;
}
.modal .modal-header h1.modal-title {
  font-size: 20px;
}

/* Captcha */
.dntCaptcha {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  position: relative;
}
.dntCaptcha img {
  margin-left: 10px;
  width: 100px;
}
.dntCaptcha input.text-box.form-control {
  width: 100%;
}
.dntCaptcha span.text-danger {
  position: absolute;
  top: 40px;
}

/* Captcha */
.captcha-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha-wrapper .captcha-label {
  padding-right: 8px;
}
.captcha-wrapper .recaptcha-container {
  transform: scale(1);
  margin-right: -10px;
}

.recaptcha-container-partner {
  transform: scale(0.9);
  transform-origin: 0 0;
}

.captcha-wrapper-register {
  display: flex;
  align-items: center;
}
.captcha-wrapper-register .captcha-label {
  padding-right: 8px;
}

.hidden-item {
  display: none;
}

.footer-admin-icon {
  height: 25px;
}

/* Responsive Design*/
@media only screen and (max-width: 1600px) {
  .productsPage .box .p-name {
    min-height: 86px;
  }
  .productsPage .box p {
    min-height: 50px;
  }
  .loginPage .login-box {
    min-height: 573px;
  }
  .loginPage .login-box .tpo-img {
    height: 276px;
    padding-top: 40px;
  }
  .captcha-wrapper-register .recaptcha-container {
    transform: scale(0.85);
  }
  .recaptcha-container-partner {
    transform: scale(0.8);
    transform-origin: 0 0;
  }
}
@media only screen and (max-width: 1536px) {
  .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }
  .loginPage .login-box {
    min-height: 534px;
  }
  .loginPage .login-box .tpo-img {
    height: 237px;
    padding-top: 20px;
  }
  .recaptcha-container-partner {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 1440px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
  .recaptcha-container-partner {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 1369px) {
  .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
  .productsPage .box .p-img {
    min-height: 142px;
  }
  .productsPage .box .p-name {
    min-height: 40px;
  }
  .productsPage .box p {
    min-height: 60px;
  }
  .loginPage .login-box {
    min-height: 573px;
  }
  .loginPage .login-box .tpo-img {
    height: 276px;
    padding-top: 40px;
  }
  .resourcesPage {
    font-size: 12px;
  }
  .resourcesPage p {
    font-size: 12px;
  }
  .resourcesPage .title h2 {
    font-size: 18px;
  }
  .resourcesPage .times {
    font-size: 12px;
    line-height: 22px;
  }
  .resourcesPage .clause {
    font-size: 12px;
    line-height: 20px;
  }
  .resourcesPage .servicer {
    font-size: 12px;
  }
  .resourcesPage .servicer .servicer-p {
    font-size: 12px;
    line-height: 16px;
  }
  .resourcesPage .servicer .servicer-wl {
    line-height: 20px;
  }
  .resourcesPage .servicer .servicer-wl a {
    color: #fff;
  }
  .resourcesPage .servicer .servicer-wl a:hover {
    color: #fff;
  }
}
@media only screen and (max-width: 1280px) {
  .productsPage .box .p-img {
    min-height: 142px;
  }
  .productsPage .box .p-name {
    min-height: 86px;
  }
  .productsPage .box p {
    min-height: 60px;
  }
  .resourcesPage .servicer {
    font-size: 12px;
    padding: 10px 15px;
  }
  .resourcesPage .servicer .head-servicer {
    line-height: 18px;
  }
  .resourcesPage .servicer .head-servicer span {
    font-size: 10px;
  }
  footer .mail a {
    font-size: 10px;
  }
  .recaptcha-container-partner {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 1199px) {
  footer .border-left {
    border-left: none;
  }
  footer .border-right {
    border-right: none;
  }
  footer .border-b {
    border-bottom: 1px solid #B0C0D4;
    padding-bottom: 10px !important;
  }
  footer .col-auto {
    width: 100% !important;
  }
  footer .mail a {
    font-size: 12px;
  }
  .productsPage .p-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .productsPage .box .p-name {
    min-height: 40px;
  }
  .productsPage .box p {
    min-height: 60px;
  }
  .loginPage .login-box {
    min-height: 547px;
  }
  .captcha-wrapper .recaptcha-container {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 1024px) {
  .pricer .btn-solid {
    display: block;
  }
  .about .btn-solid {
    display: block;
  }
  .loginPage .login-box {
    min-height: 597px;
  }
  .captcha-wrapper .recaptcha-container {
    transform: scale(0.8);
    margin-right: -30px;
  }
}
@media only screen and (max-width: 991px) {
  .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
  .pricer .btn-solid {
    display: unset;
  }
  .about .btn-solid {
    display: unset;
  }
  .profile .jr-profile .border-l {
    border-left: 1px solid transparent !important;
  }
  .recaptcha-container-partner {
    transform: scale(1);
  }
}
@media only screen and (max-width: 810px) {
  .productsPage .p-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .productsPage .box .p-name {
    min-height: 86px;
  }
  .captcha-wrapper {
    flex-direction: column;
  }
  .captcha-wrapper .recaptcha-container {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 768px) {
  .productsPage .p-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .resourcesPage .servicer .set-box2 {
    border-left: none;
  }
}
@media only screen and (max-width: 576px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  .btn-solid {
    display: block !important;
  }
  input.btn-solid.get-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .loginPage .btn-solid {
    display: inline !important;
  }
  .resources p {
    width: 100%;
    text-align: left;
  }
  .resources ul {
    margin: 15px 0;
    padding-left: 0;
  }
  .login p {
    width: 100%;
    text-align: left;
  }
  .productsPage .p-row {
    grid-template-columns: 1fr !important;
  }
  .productsPage .box .p-name {
    min-height: 40px;
  }
  .productsPage .box p {
    min-height: auto;
  }
  .profile .p-box .img {
    width: 200px;
    height: 200px;
  }
  .banner .carousel img.mobile {
    display: block !important;
  }
  .banner .carousel img.desktop {
    display: none !important;
  }
  .captcha-wrapper-register {
    flex-direction: column;
  }
  .captcha-wrapper-register .recaptcha-container {
    transform: scale(1);
  }
}
@media only screen and (max-width: 414px) {
  .captcha-wrapper {
    flex-direction: column;
  }
  .captcha-wrapper .recaptcha-container {
    transform: scale(0.8);
    margin-right: 0;
  }
  .recaptcha-container-partner {
    transform: scale(0.8);
  }
  .captcha-wrapper-register {
    flex-direction: column;
  }
  .captcha-wrapper-register .recaptcha-container {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 390px) {
  .otherPage table tr {
    display: grid;
  }
  .otherPage table tr th {
    display: none;
  }
}
.mfaPage {
  background-color: #f7f6f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 0;
}
.mfaPage .box {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  width: 100%;
}
.mfaPage .box .title {
  padding: 0;
}

.mfaPage .form-label {
  word-break: normal;
}
.mfaPage a.btn-solid {
  padding: 10px;
  width: 100%;
}

.error-screen {
  text-align: center;
  margin: 50px auto;
  min-height: calc(100vh - 400px);
}
.error-screen h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.error-screen p {
  margin: 10px 0;
}
.error-screen .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.validation-summary-valid li {
  display: none; /* controlled via class, not inline style */
}

.validation-summary-errors li {
  display: list-item;
}
