@font-face {
  font-family: "Gotham";
  src: local("Gotham"), url("../fonts/gotham/Gotham-Book.otf") format("opentype");
}
@font-face {
  font-family: "Gotham";
  font-weight: 300;
  src: local("Gotham"), url("../fonts/gotham/Gotham-Light.otf") format("opentype");
}
@font-face {
  font-family: "Gotham";
  font-weight: 500;
  src: local("Gotham"), url("../fonts/gotham/Gotham-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham";
  font-weight: 600;
  src: local("Gotham"), url("../fonts/gotham/Gotham-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham";
  font-weight: 700;
  src: local("Gotham"), url("../fonts/gotham/Gotham-Black.otf") format("opentype");
}
body {
  font-family: Gotham;
}

.container {
  max-width: 1600px;
  width: 90% !important;
  margin: 0 auto;
}

.banner {
  background: linear-gradient(0deg, #E7F1FF 0%, #E9F2FF 47%, #F2F7FF 77%, #FFFFFF 100%);
}
.banner__text {
  max-width: 565px;
  width: 100%;
  line-height: 23px !important;
}
.banner__imagesWrapper {
  margin: 10px 0;
  margin-right: 50px;
  width: 300px;
  position: relative;
  height: 550px;
}
.banner__phoneImg {
  width: 300px;
}
.banner__cardImg {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  right: -130px;
  width: 250px;
}

.about__text {
  max-width: 750px;
  width: 100%;
}

.gradientBtn {
  background: linear-gradient(120deg, #0B55D1, #0B55D1, #135fe1, #029EF3, #25baff);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.4s;
  border-radius: 8px;
  font-weight: 500;
  color: #ffffff;
  padding: 14px 60px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
.gradientBtn:hover {
  background-position: 0 0;
}

.card {
  overflow: hidden;
  height: 500px;
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.card__terminalImgWrapper {
  position: absolute;
  top: -120px;
}
.card__terminalImg {
  width: 100%;
}
.card__terminalCheckMarkWrapper {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}
.card__terminalCheckMark {
  top: 53%;
  position: absolute;
  transform: translateY(-50%);
  right: 120px;
}
.card__cardImg {
  position: absolute;
  bottom: -40px;
  right: 80px;
}
.card__terminalText {
  position: absolute;
  right: 160px;
  top: 60px;
}
.card__fingerprintImg {
  position: absolute;
  bottom: 50px;
  left: 0;
}
.card__infoText {
  display: none;
}

.link {
  transition: 0.2s ease-in-out;
  text-wrap: nowrap;
  border-bottom: 1px solid transparent;
}
.link:hover {
  color: #51bff2;
  cursor: pointer;
  border-bottom: 1px solid rgba(54, 170, 224, 0.259);
}

@media (max-width: 640px) {
  .banner__imagesWrapper {
    margin: 20px 0;
    margin-right: 150px;
    width: 220px;
    height: auto;
  }
  .banner__phoneImg {
    width: 250px;
  }
  .banner__cardImg {
    right: -140px;
    width: 210px;
    top: 18%;
  }
  .banner__text {
    line-height: 20px !important;
  }
  .gradientBtn {
    width: 100%;
    padding: 12px 60px;
  }
}
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 69, 85, 0.594);
}

.modal.active .modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation-name: slideIn;
}

.modal.active.slideOut .modal-content {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  animation-name: slideOut;
}

@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    top: 8%;
    opacity: 0;
  }
  to {
    top: 20%;
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    top: 20%;
    opacity: 1;
  }
  to {
    top: 5%;
    opacity: 0;
  }
}
.modalPlain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 90%;
  opacity: 0;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.42, 0, 0.21, 0.99);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contactModal {
  max-width: 700px;
  position: relative;
  overflow: hidden;
}
.contactModal__notificationOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.503);
  z-index: 5;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.privacyPolicyModal,
.cookiePolicyModal,
.termsOfUseModal {
  max-width: 900px;
}

.modal.active .modalPlain {
  opacity: 1;
  animation-name: slideOuts;
}

.modal.active.slideIns .modalPlain {
  opacity: 0;
  animation-name: slideIns;
}

.modal-input {
  font-weight: 300;
  font-size: 14px;
}

.modal-input input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  font-size: 16px;
  margin-top: 5px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  margin-bottom: 10px;
}

.modal-input input:focus {
  border-color: #36A9E0;
  outline: none;
  box-shadow: 0px 0px 5px 3px #e7f5fb !important;
}

.modal-input:focus-within label {
  color: #36A9E0;
}

.modal-input input::-moz-placeholder {
  color: #D9D9D9;
}

.modal-input input::placeholder {
  color: #D9D9D9;
}

.errorText {
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0;
  color: rgb(184, 0, 0);
}

.scrolableContent {
  height: 600px;
  overflow-y: auto;
  margin-top: 10px;
  font-size: 15px;
}
.scrolableContent__title {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 5px 0;
}
.scrolableContent p {
  margin-top: 3px;
}
.scrolableContent h4 {
  margin-block-end: 0 !important;
}
.scrolableContent ul {
  padding-inline-start: 0px;
  margin-bottom: 2px;
}
.scrolableContent ul ul {
  margin-left: 20px;
}
.scrolableContent li {
  list-style: disc;
  display: list-item;
  margin-left: 1em;
}
.scrolableContent table {
  border: 1px solid #b1b1b1;
  margin-top: 10px;
  font-size: 14px;
  border-collapse: collapse;
}
.scrolableContent table td,
.scrolableContent table th {
  border: 1px solid #b1b1b1;
}
.scrolableContent table th {
  font-weight: 500;
}
.scrolableContent table td {
  padding: 5px 10px;
}
.scrolableContent strong {
  font-weight: 500;
  margin-top: 50px;
}
.scrolableContent__subtitle {
  color: #36A9E0;
  font-size: 15px;
  margin-top: 10px;
  font-weight: 500;
}
.scrolableContent__subItem {
  font-weight: 500;
}

.titleSelector {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1019607843) !important;
  border-radius: 6px !important;
  width: 400px;
  padding: 8px 10px;
  font-size: 14px;
}
.titleSelector select {
  width: 100%;
  outline: none;
}

@keyframes slideIns {
  from {
    top: 50%;
    opacity: 1;
  }
  to {
    top: 55%;
    opacity: 0;
  }
}
@keyframes slideOuts {
  from {
    top: 55%;
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}
.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 10px 0 30px 0;
}
.checkbox__input {
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  opacity: 0;
  cursor: pointer;
}
.checkbox__input:checked + .checkbox__icon .tick {
  stroke-dashoffset: 0;
}
.checkbox__icon {
  width: 1.375em;
  height: 1.375em;
  flex-shrink: 0;
  overflow: visible;
}
.checkbox__icon .tick {
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: stroke-dashoffset 0.2s ease-out;
}
.checkbox__label {
  margin-left: 20px;
  font-size: 12px !important;
}

.videoWrapper {
  max-width: 1800px;
  margin: 0 auto;
  width: 100% !important;
}

.video {
  margin: 0 auto;
  width: 100%;
}

.hidden {
  display: none;
}

@media (max-width: 1400px) {
  .card__cardImg {
    right: -60px;
  }
  .card__terminalText {
    right: 20px;
  }
  .left-side {
    margin-left: 5% !important;
  }
  .right-side {
    width: 60% !important;
  }
  .cards__card {
    width: 400px !important;
  }
}
@media (max-width: 1250px) {
  .card__cardImg {
    bottom: -90px;
    right: -170px;
  }
  .card__terminalText {
    right: 10px;
    top: 150px;
    width: 400px;
  }
}
@media (max-width: 1100px) {
  .card {
    width: 100%;
  }
  .card__terminalImgWrapper {
    left: 10px;
  }
  .card__cardImg {
    right: -200px;
  }
  .card__fingerprintImg {
    width: 170px;
    left: 30px;
  }
}
@media (max-width: 960px) {
  .card__terminalImgWrapper {
    top: -150px;
  }
  .card__cardImg {
    right: -250px;
  }
  .card__terminalText {
    display: none;
  }
  .card__infoText {
    display: block;
  }
}
@media (max-width: 740px) {
  .card__cardImg {
    right: -450px;
    max-width: 120% !important;
  }
  .sliderWrapper {
    flex-direction: column;
    margin: 60px 0 !important;
  }
  .left-side {
    width: 100% !important;
  }
  .right-side {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cards__card {
    width: 450px !important;
  }
}
@media (max-width: 640px) {
  .card {
    height: 300px;
  }
  .card__terminalImgWrapper {
    top: -100px;
    left: -30px;
    width: 380px !important;
  }
  .card__cardImg {
    right: -400px;
    max-width: 130% !important;
  }
  .card__fingerprintImg {
    width: 100px;
    bottom: 20px;
  }
  .card__terminalCheckMark {
    width: 60px;
    top: 52%;
    right: 85px;
  }
  .errorText {
    top: 0px !important;
    line-height: 10px;
    width: 70%;
    right: 0;
    text-align: right;
  }
  .titleSelector {
    padding: 5px;
    width: 100%;
  }
  .scrolableContent {
    height: 450px;
    font-size: 14px;
  }
  .sliderWrapper {
    margin: 70px 0 30px 0 !important;
  }
  .sliderWrapper .prevBtn:hover {
    transform: translateX(0%) !important;
  }
  .sliderWrapper .nextBtn:hover {
    transform: translateX(0%) !important;
  }
  .left-side {
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding: 20px 20px 20px 35px !important;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
  .cards {
    margin-left: 20px;
  }
  .cards__card {
    width: 300px !important;
  }
  .cards__content {
    margin: 10px !important;
    padding: 25px !important;
  }
}
@media (max-width: 450px) {
  .card__terminalImgWrapper {
    left: -100px;
  }
  .card__cardImg {
    right: -330px;
    max-width: 145% !important;
  }
}
@media (max-width: 415px) {
  .card__cardImg {
    right: -390px;
    max-width: 150% !important;
  }
}
.sliderWrapper {
  display: flex;
  margin: 200px 0 100px 0;
  width: 100% !important;
}
.sliderWrapper .prevBtn {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.sliderWrapper .prevBtn:hover {
  transform: translateX(-7%);
}
.sliderWrapper .nextBtn {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.sliderWrapper .nextBtn:hover {
  transform: translateX(7%);
}

.left-side {
  width: 30%;
  padding: 20px;
  margin-left: 20%;
  margin-top: 100px;
}

.right-side {
  width: 47%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.cards {
  height: 550px;
}
.cards__card {
  font-size: 40px;
  position: absolute;
  width: 500px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__content {
  position: relative;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(14, 42, 56, 0.1019607843);
  margin: 0 20px;
  width: 100%;
  height: 90%;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.activeCard {
  transform: translateX(0) scale(1);
  animation: cardSlideInRight 0.5s ease-in-out;
}

.next {
  transform: translateX(100%) scale(1);
  animation: cardSlideInRightNext 0.5s ease-in-out;
}

.sliderHidden {
  transform: translateX(200%) scale(1);
  opacity: 1;
}

.moving-out {
  animation: movingOut 0.5s ease-in-out;
}

.moving-in {
  animation: movingIn 0.5s ease-in-out;
  transform: translateX(0%) scale(1);
}

.nextPrev {
  transform: translateX(100%) scale(1);
  animation: slideInLefttNext 0.5s ease-in-out;
}

@keyframes movingOut {
  0% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(20%) scale(0.7);
    opacity: 0;
  }
}
@keyframes movingIn {
  0% {
    transform: translateX(20%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
}
@keyframes cardSlideInRight {
  0% {
    transform: translateX(100%) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
@keyframes cardSlideInRightNext {
  0% {
    transform: translateX(200%) scale(1);
  }
  100% {
    transform: translateX(100%) scale(1);
  }
}
@keyframes slideInLefttNext {
  0% {
    transform: translateX(0%) scale(1);
  }
  100% {
    transform: translateX(100%) scale(1);
  }
}/*# sourceMappingURL=styles1716379749.css.map */