@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans&family=Outfit:wght@100..900&display=swap");
html,
body {
  background: #000;
  color: #fff;
  font: 400 20px/1.5 "Open Sans", "Arial", sans-serif;
}

@keyframes arrowFromTopToBottom {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
  51% {
    transform: translate(-30px, 30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes playHover {
  0% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(120px);
  }
  51% {
    transform: translateX(-120px);
  }
}
.btn {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}
.btn-play {
  border-radius: 100%;
  border: 10px solid #fff;
  overflow: hidden;
}
.btn-play .icon-play {
  transform: translateX(5px);
}
.btn-play:hover .icon-play, .btn-play:focus .icon-play {
  animation: playHover 0.4s forwards;
}
.btn-m {
  border-radius: 45px;
  font-family: "Outfit", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 800;
  gap: 7px;
  justify-content: space-between;
  line-height: 20px;
  overflow: hidden;
  padding: 13px 20px;
  text-transform: uppercase;
  transition: 0.3s, transform 0.7s;
}
.btn-m > * {
  position: relative;
  z-index: 1;
}
.btn-m::before {
  border-radius: 100%;
  content: "";
  height: 15px;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  transform: scale(0);
  transition: 0.3s;
  width: 15px;
}
.btn-m .icon-arrow--top-right {
  font-size: 11px;
}
.btn-m:hover, .btn-m:focus {
  transform: scale(0.95);
}
.btn-m:hover .icon-arrow--top-right, .btn-m:focus .icon-arrow--top-right {
  animation: arrowFromTopToBottom 0.3s forwards;
  transform: translate(30px, -30px);
}
.btn-m:hover::before, .btn-m:focus::before {
  transform: scale(25);
}
.btn-white {
  background: #fff;
  color: #2E2E2E;
}
.btn-white::before, .btn-white::after {
  background: #2E2E2E;
}
.btn-white:hover, .btn-white:focus {
  color: #fff;
  background: none;
}
.btn-white:active {
  color: #fff;
}
.btn-white:active::before, .btn-white:active::after {
  background: #000;
}
.btn-white-link {
  color: #fff;
}
.btn-white-link:hover, .btn-white-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.btn-white-link:active {
  color: rgba(255, 255, 255, 0.5);
}
.btn-white-border {
  background: transparent;
  box-shadow: inset 0 0 0 1px #fff;
  color: #fff;
}
.btn-white-border::before, .btn-white-border::after {
  background: #fff;
}
.btn-white-border:hover, .btn-white-border:focus {
  color: #000;
}
.btn-white-border:active, .btn-white-border.active {
  background: #000;
  box-shadow: inset 0 0 0 1px #000;
  color: #fff;
}
.btn-white-border:active::before, .btn-white-border:active::after, .btn-white-border.active::before, .btn-white-border.active::after {
  background: #000;
}

body input[type=text],
body input[type=email],
body input[type=tel],
body select,
body textarea {
  background: transparent;
  border: 1px solid #fff;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
  border-radius: 50px;
  font: 400 18px/30px "Open Sans", "Arial", sans-serif;
  outline: none;
  padding: 8px 20px;
  transition: 0.3s;
  width: 100%;
}
body input[type=text]::-moz-placeholder, body input[type=email]::-moz-placeholder, body input[type=tel]::-moz-placeholder, body select::-moz-placeholder, body textarea::-moz-placeholder {
  color: #fff;
}
body input[type=text]::placeholder,
body input[type=email]::placeholder,
body input[type=tel]::placeholder,
body select::placeholder,
body textarea::placeholder {
  color: #fff;
}
body input[type=text]:hover,
body input[type=email]:hover,
body input[type=tel]:hover,
body select:hover,
body textarea:hover {
  box-shadow: inset 0 0 0 1px white;
}
body input[type=text]:focus,
body input[type=email]:focus,
body input[type=tel]:focus,
body select:focus,
body textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
}
body select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/icon-angle--down.svg) no-repeat right 20px center;
}
body select option {
  background: #000;
  color: #fff;
}
body textarea {
  border-radius: 20px;
  min-height: 80px;
  resize: vertical;
}
@media (min-width: 1024px) {
  body textarea {
    min-height: 115px;
  }
}

.fancybox__container .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.fancybox__container .fancybox__slide {
  padding: 25px;
}
@media (min-width: 768px) {
  .fancybox__container .fancybox__slide {
    padding: 50px;
  }
}
.fancybox__container .fancybox__content > .f-button.is-close-btn {
  --f-button-width: 27px;
  --f-button-height: 27px;
  --f-button-border-radius: 2px;
  --f-button-svg-width: 27px;
  --f-button-svg-height: 27px;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  outline: none;
}
.fancybox__container .fancybox__content > .f-button.is-close-btn:focus, .fancybox__container .fancybox__content > .f-button.is-close-btn:active {
  box-shadow: none;
  outline: none;
}

header.header {
  transition: 0.3s;
}
header.header .header__wrapper::before {
  background: #000;
  border-radius: 100%;
  content: "";
  height: 40px;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: opacity 0.2s 0.2s, transform 0.2s;
  width: 40px;
  z-index: 100;
}
header.header .header__nav {
  transform: scale(0);
  transition: 0.2s;
}
@media screen and (min-width: 1024px) {
  header.header .header__nav {
    transform: scale(1);
    transition: 0s;
  }
}
header.header .header__burger {
  height: 30px;
  position: relative;
  width: 30px;
}
header.header .header__burger::before, header.header .header__burger::after {
  background: #fff;
  border-radius: 3px;
  content: "";
  height: 3px;
  margin: auto;
  position: absolute;
  top: -12px;
  bottom: 0;
  left: 0;
  transition: 0.2s 0.3s, transform 0.3s;
  transform-origin: center;
  width: 100%;
}
header.header .header__burger::after {
  top: 12px;
  width: 70%;
}
header.header .header__nav-checkbox:checked ~ .header__wrapper {
  height: calc(100% - 0.75rem);
}
header.header .header__nav-checkbox:checked ~ .header__wrapper::before {
  opacity: 1;
  transform: scale(150);
  transition: opacity 0.2s, transform 1s;
}
@media screen and (min-width: 1024px) {
  header.header .header__nav-checkbox:checked ~ .header__wrapper::before {
    opacity: 0;
    transform: scale(0);
  }
}
header.header .header__nav-checkbox:checked ~ .header__wrapper .header__logo {
  position: fixed;
  top: 0.75rem;
  left: 1rem;
  z-index: 101;
}
@media screen and (min-width: 1024px) {
  header.header .header__nav-checkbox:checked ~ .header__wrapper .header__logo {
    position: static;
  }
}
header.header .header__nav-checkbox:checked ~ .header__wrapper .header__nav {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  transition: visibility 0s, opacity 0.3s 0.1s, transform 0.3s 0.5s;
  z-index: 101;
}
header.header .header__nav-checkbox:checked ~ .header__wrapper .header__burger {
  position: fixed;
  top: calc(0.6rem + 2px);
  right: 1rem;
  z-index: 101;
}
header.header .header__nav-checkbox:checked ~ .header__wrapper .header__burger::before, header.header .header__nav-checkbox:checked ~ .header__wrapper .header__burger::after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.2s;
  width: 100%;
}
header.header .header__nav-checkbox:checked ~ .header__wrapper .header__burger::after {
  transform: rotate(-45deg);
}

.heading-inner {
  line-height: 1.25;
  overflow: hidden;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot?ngxk1h");
  src: url("../fonts/Icons.eot?ngxk1h#iefix") format("embedded-opentype"), url("../fonts/Icons.ttf?ngxk1h") format("truetype"), url("../fonts/Icons.woff?ngxk1h") format("woff"), url("../fonts/Icons.svg?ngxk1h#Icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle--down:before {
  content: "\e900";
}
.icon-angle--right:before {
  content: "\e901";
}
.icon-arrow--right:before {
  content: "\e902";
}
.icon-arrow--top-right:before {
  content: "\e903";
}
.icon-automate-processes:before {
  content: "\e904";
}
.icon-blueport-platform:before {
  content: "\e905";
}
.icon-client-collaboration:before {
  content: "\e906";
}
.icon-collaboration:before {
  content: "\e907";
}
.icon-configure:before {
  content: "\e908";
}
.icon-create:before {
  content: "\e909";
}
.icon-fb:before {
  content: "\e90a";
}
.icon-instagram:before {
  content: "\e90b";
}
.icon-reduce-costs:before {
  content: "\e90c";
}
.icon-regulatory-reporting:before {
  content: "\e90d";
}
.icon-search:before {
  content: "\e90e";
}
.icon-secure:before {
  content: "\e90f";
}
.icon-service-pricing-approvals:before {
  content: "\e910";
}
.icon-twitter:before {
  content: "\e911";
}
.icon-bridge-data:before {
  content: "\e912";
}
.icon-business-outcome:before {
  content: "\e913";
}
.icon-check:before {
  content: "\e914";
}
.icon-ln:before {
  content: "\e915";
}
.icon-loan-re-valuations:before {
  content: "\e916";
}
.icon-play:before {
  content: "\e917";
}

.how-we-help__section .swiper-slide,
.our-aims__section .swiper-slide {
  height: auto;
}
.how-we-help__section .swiper-slide.swiper-slide-active .bg-gradient-to-b,
.our-aims__section .swiper-slide.swiper-slide-active .bg-gradient-to-b {
  background: linear-gradient(to bottom, #5482B0, #000);
}
