@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: normal;
  src: url('../../assets/fonts/ProximaNova-Regular.woff') format('woff');
}

@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 600;
  src: url('../../assets/fonts/ProximaNova-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Graphik';
  font-style: normal;
  font-weight: 400;
  src: url('../../assets/fonts/Graphik-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Graphik';
  font-style: normal;
  font-weight: 600;
  src: url('../../assets/fonts/Graphik-Bold.woff') format('woff');
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

html, body {
  font-size: 16px;
  font-family: "ProximaNova", sans-serif;
  font-weight: normal;
  scroll-behavior: smooth;
  line-height: 1.2;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
  color: #162E4D;
  font-family: 'ProximaNova', sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.9rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #382C4D;
}

a, a:hover {
  text-decoration: none;
}

.btn {
  color: #fff;
  border-radius: 4px;
}

.btn-primary {
  color: #fff;
  background-color: #21B374;
  border-color: #21B374;
}

.btn-primary:hover {
  color: #fff;
  background-color: #21B374;
  border-color: #21B374;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #21B374;
  border-color: #21B374;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #21B374;
  border-color: #21B374;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #21B374;
  border-color: #21B374;
}

section {
  background: #fff;
  padding: 60px 0;
}

.ox-section-heading div {
  position: relative;
  height: 60px;
  margin-bottom: 15px;
}

.ox-section-heading div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ox-section-heading h2,
.ox-section-heading p  {
  width: 70%;
  margin: auto;
  text-align: center;
}

.ox-section-heading h2 {
  margin-bottom: 20px;
}
/* =================== Header Section ========================= */
.ox-navbar {
  position: absolute;
  height: 100px;
  padding: 30px 0;
  background: transparent;
  z-index: 3;
  width: 100%;
}

.ox-navbar .container {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ox-navbar .ox-nav-links {
  margin-bottom: 0;
  list-style: none;
  display: inline-flex;
}

.ox-nav-links li {
  padding: 7px 25px;
}

.ox-nav-links li a {
  color: #000;
  font-size: 1rem;
}

.ox-navbar.light .ox-nav-links li a {
  color: #fff;
}

.ox-mobile--menu__toggler {
  position: absolute;
  right: 0;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
  display: none;
}

.ox-mobile--menu__toggler:hover {
  opacity: .7;
}

.ox-mobile--menu__toggler span {
  background: #162E4D;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
  z-index: 5;
}

.ox-navbar.light .ox-mobile--menu__toggler span {
  background: #fff;
}

.ox-mobile--menu__toggler span:nth-of-type(2) {
  top: 10px;
}

.ox-mobile--menu__toggler span:nth-of-type(3) {
  top: 20px;
}

.ox-mobile--menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, width .35s;
  z-index: 1000;
}

.ox-mobile--menu .ox-mobile--menu__toggler {
  opacity: 0;
}

.ox-mobile--menu.open .ox-mobile--menu__toggler {
  right: 7%;
  opacity: 1;
  transition: 0.3s ease-in;
}

.ox-mobile--menu__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
  height: 100%;
}

.ox-mobile--menu:after {
  content: '';
  background: #21B374;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all .35s ease;
}


.ox-mobile--menu.open {
  visibility: visible;
  height: 100%;
}

.ox-mobile--menu.open:after {
  right: 0;
}

.ox-mobile--menu.open .ox-mobile--menu__toggler .top {
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #fff;
}

.ox-mobile--menu.open .ox-mobile--menu__toggler .middle {
  opacity: 0;
  background: #21B374;
}

.ox-mobile--menu.open .ox-mobile--menu__toggler .bottom {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #fff;
}

.ox-mobile--menu__links {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%
}

.ox-mobile--menu__links li {
  display: block;
  position: relative;
  opacity: 0;
  margin-bottom: 30px;
  cursor: pointer;
}

.ox-mobile--menu__links:last-child {
  display: none;
}

.ox-mobile--menu__links li a {
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 400;
}

.ox-mobile--menu__links li.active a {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  font-weight: 600;
}

.ox-mobile--menu__links li a:hover {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.ox-mobile--menu.open .ox-mobile--menu__links li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

.ox-mobile--menu.open .ox-mobile--menu__links li:nth-of-type(2) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

.ox-mobile--menu.open .ox-mobile--menu__links li:nth-of-type(3) {
  -webkit-animation-delay: .55s;
  animation-delay: .55s;
}

.ox-mobile--menu.open .ox-mobile--menu__links li:nth-of-type(4) {
  -webkit-animation-delay: .65s;
  animation-delay: .65s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.ox-header {
  position: relative;
  background: #F1FBF9;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ox-header .container {
  position: relative;
  z-index: 9;
}

.ox-header-gradient {
  position: absolute;
  top: 0;
  left: 15%;
  height: 100%;
  width: 100%;
  z-index: 2;
}


.ox-header-gradient img {
  height: 100%;
  object-fit: cover;
}

.ox-header-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}

.ox-header-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
}

.ox-header h1 {
  font-family: 'Graphik', sans-serif;
}

.ox-header p {
  color: #382C4D;
  margin: 20px 0 30px;
}

.ox-header.dark p {
  color: #fff;
}

.ox-header-buttons {
  display: flex;
  align-items: center;
}

.ox-login--cta a {
  color: #382C4D;
  font-size: 0.875rem;
}

/* =================== Savings ============================ */
.ox-sub-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.ox-sub-section h2 {
  margin-right: 20px;
}

.ox-sub-section img {
  height: 24px;
  width: auto
}

.ox-sub-section__image {
  text-align: center;
}

.ox-sub-section__image img {
  height: 360px;
  width: 360px;
  object-fit: cover;
  border-radius: 100%;
}
/* =================== Loans ============================ */
.ox-loans-features {
  margin-top: 50px;
  display: flex;
}

.ox-loans-features .ox-loans-feature {
  width: calc(33.33% - 40px);
  margin-right: 20px;
}

.ox-loans-features .ox-loans-feature img {
  margin-bottom: 10px;
}

.ox-loans-features .ox-loans-feature p {
  margin-bottom: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.ox-loans-features .ox-loans-feature p:last-child {
  font-weight: 600;
}

/* =================== How It Works ============================ */
#how-it-works {
  background: #2D9CDB20;
}

.ox-steps {
  margin-top: 80px;
}

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

.ox-step .ox-step--image {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF5DC;
  margin: auto auto 20px;
}

.ox-step p {
  font-size: 0.875rem;
}

.ox-step p:first-of-type {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* =================== Footer ========================= */

.ox-footer{
  background: #232F42;
  padding: 50px 0 100px;
}

.ox-footer p {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 15px;
}

.ox-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ox-footer ul li {
  margin-bottom: 15px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 2;
}

.ox-newsletter-input {
  height: auto;
  padding: 18px 12px;
  background: #fff;
  border-radius: 5px;
}

.ox-newsletter-input input {
  border: none;
  outline: none;
  box-shadow: none;
  height: 50px;
  width: 100%;
  padding-left: 15px;
  font-weight: 500;
  font-size: 1rem;
  color: #162E4D;
  margin-bottom: 5px;
}

.ox-newsletter-input input::placeholder {
  opacity: 0.2;
}

.ox-newsletter-input button {
  width: 100%;
}

.ox-footer hr {
  margin: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ox-footer .ox-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
}

.ox-footer-bottom .ox-social-icons {
  display: flex;
}

.ox-footer-bottom .ox-social-icons a:not(:last-child) {
  margin-right: 20px;
}

/** Media Queries **/

@media (max-width: 1024px) {
  .ox-header {
    min-height: 50vh;
  }

  .ox-header-gradient {
    left: 0;
  }
}

@media (max-width: 768px) {
  .ox-nav-links {
    display: none !important;
  }

  .ox-navbar .btn {
    position: relative;
    right: 50px;
  }

  .ox-mobile--menu__toggler {
    display: block;
  }

  .ox-header {
    min-height: 70vh;
  }

  .ox-header-gradient {
    left: -40%;
  }

  .ox-sub-section__image img {
    height: 250px;
    width: 250px;
  }

  .ox-loans-features {
    flex-direction: column;
  }

  .ox-loans-features .ox-loans-feature {
    margin-right: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .ox-loans-features .ox-loans-feature img {
    margin-bottom: 0;
    margin-right: 12px;
  }

  .ox-footer ul li {
    margin-bottom: 15px;
    line-height: 1.2 !important;
  }

  .ox-footer .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  html, body {
    font-size: 14px;
  }

  .ox-navbar .container > .btn {
    display: none;
  }

  .ox-mobile--menu__toggler {
    right: 20px;
  }

  .ox-mobile--menu__links:last-child {
    display: block;
  }

  .ox-header {
    min-height: 100vh;
  }

  .ox-header-gradient,
  .ox-header-image {
    display: none;
  }

  .ox-header h1,
  .ox-header p {
    text-align: center;
  }

  .ox-section-heading h2, .ox-section-heading p {
    width: 100%;
  }

  .ox-header-buttons {
    justify-content: center;
  }

  #loans .row {
    flex-direction: column-reverse;
  }

  .ox-footer .ox-footer-bottom {
    flex-direction: column;
  }
}