@font-face {
  font-family: 'basier_circle';
  src:
    url('fonts/basier_circle_regular-webfont.woff2') format('woff2'),
    url('fonts/basier_circle_regular-webfont.woff') format('woff'),
    url('fonts/basier_circle_regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'basier_circle';
  src:
    url('fonts/basier_circle_medium-webfont.woff2') format('woff2'),
    url('fonts/basier_circle_medium-webfont.woff') format('woff'),
    url('fonts/basier_circle_medium-webfont.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: fade-in 0.75s;
  animation: fade-in 0.75s;
}

*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: basier_circle, serif;
  margin: 0;
  padding: 0;
  color: #002f5e;
  font-size: 16px;
  line-height: 32px;
}

.layout::before {
  --background-color: #fa535422;
  --border-color: #fa535422;
  --gutter-width: 30px;
  --column-count: 12;
  --column-width: calc((100% / var(--column-count)) - var(--gutter-width));
  position: fixed;
  top: 0;
  bottom: 0;
  max-width: 1200px;
  width: 100%;
  left: calc((100% - 1200px) / 2 + 15px);
  content: ' ';
  z-index: 10000;
  pointer-events: none;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  background-image: -webkit-repeating-linear-gradient(
    left,
    var(--background-color),
    var(--background-color) var(--column-width),
    transparent var(--column-width),
    transparent calc(100% / var(--column-count))
  );
  background-image: -o-repeating-linear-gradient(
    left,
    var(--background-color),
    var(--background-color) var(--column-width),
    transparent var(--column-width),
    transparent calc(100% / var(--column-count))
  );
  background-image: -o-repeating-linear-gradient(
    left,
    var(--background-color),
    var(--background-color) var(--column-width),
    transparent var(--column-width),
    transparent calc(100% / var(--column-count))
  );
  background-image: repeating-linear-gradient(
    to right,
    var(--background-color),
    var(--background-color) var(--column-width),
    transparent var(--column-width),
    transparent calc(100% / var(--column-count))
  );
}

@media screen and (max-width: 1199px) {
  .layout::before {
    --column-count: 6;
    left: 15px;
  }
}

.dev .debug {
  border: 1px dashed #d25343;
  background-color: #5393f333;
}

.dev .debug > * {
  border: 1px dashed #33d213;
}

.dev .debug > *:hover {
  background-color: #5393f333;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.2;
}

p {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.4;
  text-align: left;
}

a {
  color: #4a90e2;
  text-decoration: none;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  list-style: none;
  padding-left: 15px;
}

ul li {
  position: relative;
}

ul li::before {
  content: '∙';
  position: absolute;
  left: -15px;
}

.list-none {
  list-style: none;
  padding: 0;
}

.list-none li::before {
  display: none;
}

.list-checkmarks {
  list-style: none;
  padding: 0;
  padding-left: 40px;
}

.list-checkmarks li {
  position: relative;
}

.list-checkmarks li::before {
  content: '✓';
  position: absolute;
  left: -40px;
}

.list-circle {
  list-style: none;
  padding: 0;
  padding-left: 40px;
}

.list-circle li {
  position: relative;
}

.list-circle li:before {
  content: '○';
  position: absolute;
  left: -40px;
  color: #cad0d7;
  font-size: 22px;
}

section,
header,
footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px;
}

section {
  padding: 90px 115px;
}

footer {
  padding: 87px 15px 172px;
}

.footer-logos {
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.footer-logo {
  display: block;
}

.footer-logo + .footer-logo {
  margin-left: 40px;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin-left: 24px;
}

nav a {
  color: #002f5e;
  text-decoration: none;
  padding: 4px 0;
  display: block;
  font-size: 14px;
}

nav a.request-card-link {
  color: #de8740;
}

nav a.login-link {
  background-image: -o-linear-gradient(left, #f5d400, #d0554d);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f5d400),
    to(#d0554d)
  );
  background-image: linear-gradient(90deg, #f5d400, #d0554d);
  color: #ffffff;
  padding: 4px 2em;
  border-radius: 0.5em;
}

nav a::after,
nav a.active::after {
  content: ' ';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-image: -o-linear-gradient(left, #fbea00, #eb7a57);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbea00),
    to(#eb7a57)
  );
  background-image: linear-gradient(90deg, #fbea00, #eb7a57);
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

nav a.login-link::after {
  display: none;
}

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

nav a:hover::after,
nav a.active::after {
  opacity: 1;
}

.logo {
  height: 32px;
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
}

hr {
  border: 0;
  background-image: -o-linear-gradient(left, #fbea00, #eb7a57);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbea00),
    to(#eb7a57)
  );
  background-image: linear-gradient(90deg, #fbea00, #eb7a57);
  height: 1px;
  max-width: 971px;
  width: 100%;
  margin: 0 auto;
}

figure {
  margin: 0;
}

table {
  border: 1px solid #cad0d7;
  padding: 40px 48px;
  border-spacing: 0;
}

thead {
  margin-bottom: 33px;
}

th {
  text-align: left;
  padding-left: 37px;
  padding-bottom: 33px;
}

table.limits th {
  padding: 0 0 20px 0;
}

th.icon-add {
  background: url('images/icon-add.svg') left 3px no-repeat;
}

th.icon-time {
  background: url('images/icon-time.svg') left 3px no-repeat;
}

td {
  vertical-align: top;
  padding: 20px 0;
  border-top: 1px solid #cad0d7;
}

tr:last-child td {
  padding-bottom: 0;
}

table.limits tr:last-child td {
  padding-bottom: 20px;
}

td:nth-child(1) {
  width: 45%;
}

td:nth-child(2) {
  width: 55%;
}

table.limits td:nth-child(1) {
  width: 40%;
}

table.limits td:nth-child(2) {
  width: 20%;
}

table.limits td:nth-child(3) {
  width: 20%;
}

ol {
  margin: 0;
  padding: 0;
  counter-reset: list;
}

ol > li {
  list-style: none;
}

ol > li:before {
  content: counter(list, lower-alpha) ') ';
  counter-increment: list;
}

.img-responsive {
  max-width: 100%;
}

.light-background {
  background-color: #eef1f5;
  -webkit-animation: none;
  animation: none;
}

.dark-background {
  background-color: #eef1f5;
}

.heading-48 {
  font-size: 48px;
  font-weight: bold;
}

.heading-36 {
  font-size: 36px;
  font-weight: bold;
}

.heading-24 {
  font-size: 24px;
  font-weight: bold;
}

.text-22 {
  font-size: 22px;
  line-height: 37px;
}

.text-24 {
  font-size: 24px;
}

.text-16 {
  font-size: 16px;
  line-height: 32px;
}

.text-36 {
  font-size: 36px;
}

.text-medium {
  font-weight: 500;
}

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

.text-14 {
  font-size: 14px;
  line-height: 28px;
}

.link-bordered {
  border: 1px solid #002f5e;
  border-radius: 5px;
  padding: 4px 16px;
}

.link-bordered:after {
  display: none;
}

.button {
  background-color: #ffa920;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  border-radius: 5px;
  line-height: 32px;
  padding: 11px 25px;
  -webkit-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  transition: background-color 0.25s;
  display: inline-block;
}

.button:hover {
  background-color: #ff8920;
  text-decoration: none;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-37 {
  margin-bottom: 37px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-63 {
  margin-bottom: 63px;
}

.mb-69 {
  margin-bottom: 69px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-8 {
  margin-top: 8px;
}

.p-45 {
  padding: 45px;
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rowy-end {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.col {
  margin: 0 15px;
  width: 100%;
}

.col:first-child {
  margin-left: 0;
}

.col:last-child {
  margin-right: 0;
}

.col-2 {
  max-width: 170px;
}

.col-3 {
  max-width: 270px;
}

.col-5 {
  max-width: 470px;
}

.col-6 {
  max-width: 570px;
}

.col-half {
  width: 50%;
}

.col-pr-70 {
  padding-right: 70px;
}

.colx-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.radius {
  border-radius: 5px;
}

.faq article {
  padding: 0 20px;
  border-top: 1px solid #d8d8d8;
  -webkit-animation: none;
  animation: none;
}

.faq article:nth-child(1) {
  border-top: 0;
}

.faq article label {
  display: block;
}

.faq article input[type='checkbox'] {
  width: 0;
  height: 0;
  visibility: hidden;
  display: block;
}
.faq article input[type='checkbox'] + label + div {
  display: none;
}
.faq article input[type='checkbox']:checked + label + div {
  display: block;
}

.faq article input[type='checkbox']:checked + label h2::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.faq article * {
  -webkit-animation: none;
  animation: none;
}

.faq article > div {
  margin-bottom: 40px;
}

.faq article h2 {
  position: relative;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
}

.faq article h2::after {
  content: ' ';
  display: block;
  width: 11px;
  height: 7px;
  background-image: url('images/chevron-down.svg');
  position: absolute;
  right: 20px;
  top: 31px;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition:
    transform 0.25s,
    -webkit-transform 0.25s;
}

.welcome {
  height: 654px;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.welcome-left {
  max-width: 576px;
}

.welcome-contact {
  max-width: 480px;
}

.feature-item {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.feature-item + .feature-item {
  margin-top: 50px;
}

.feature-item img {
  margin-right: 16px;
  flex: 0 0 80px;
}

.feature {
  padding: 70px 0;
  float: left;
}

.feature-title {
  display: flex;
  align-items: center;
}

.feature-title img {
  margin-right: 40px;
  flex: 0 0 160px;
}

.feature-sublist {
  margin-left: 200px;
  max-width: 570px;
  padding: 0;
}

.feature-sublist .list-circle {
  padding-left: 0;
  margin-left: -40px;
}

.feature-sublist li {
  padding: 16px 0;
  font-size: 16px;
  line-height: 28px;
  padding-left: 40px;
}

.feature-sublist > li {
  padding-right: 50px;
}

.feature-sublist > li + li {
  border-top: 1px solid #e4e9ef;
}

.feature-sublist li:before {
  left: 5px;
}

.process {
  display: flex;
  justify-content: center;
  padding-bottom: 144px;
  padding: 0 15px;
}

.process-list {
  counter-reset: process;
  position: relative;
  padding: 0;
}

.process-list > li {
  padding-left: 72px;
  margin-bottom: 56px;
}

.process-list > li:before {
  counter-increment: process;
  content: counter(process);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #002f5e;
  text-align: center;
  line-height: 38px;
  left: 0;
  background-color: #fff;
}

.process-list:after {
  content: '';
  position: absolute;
  border-left: 1px dashed #000;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  z-index: -1;
}

.process-list ul {
  margin-top: 20px;
}

.process-list ul li {
  margin-bottom: 24px;
}

.process-step {
  font-weight: 500;
  font-size: 16px;
}

.circle {
  position: absolute;
  left: -45%;
  top: -80%;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: slide-in-3 ease-out 0.75s;
  animation: slide-in-3 ease-out 0.75s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container:after,
.container:before {
  content: '';
  display: table;
  clear: both;
}

.contacts {
  float: right;
  text-align: right;
  margin-top: -80px;
}

.card {
  position: absolute;
  right: 259px;
  bottom: 0;
  -webkit-animation: slide-in-1 ease-out 0.75s;
  animation: slide-in-1 ease-out 0.75s;
}

.app {
  position: absolute;
  right: 40px;
  bottom: 0;
  -webkit-animation: slide-in-2 ease-out 0.75s;
  animation: slide-in-2 ease-out 0.75s;
}

.get-terminal {
  position: relative;
  padding-top: 100px;
}

.get-terminal-wrapper {
  padding: 0 15px;
}

.get-terminal-img-wrap {
  background-color: #fff;
  padding: 35px 35px 0;
  display: inline-block;
  position: relative;
  margin-top: -200px;
}

.get-terminal-img-wrap img {
  position: relative;
  max-width: 100%;
  bottom: -11px;
}

.get-terminal-stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.get-terminal-stores span:nth-child(2) {
  height: 58px;
}

.get-terminal-stores img {
  height: 100%;
}

.hidden-block {
  display: none;
}

.possibility-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: -45px;
}

.usecase-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 970px;
  margin: 0 auto;
}
.usecase-item {
  width: 300px;
  height: 300px;
  margin-right: 35px;
  margin-bottom: 35px;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.usecase-item > p {
  width: 100%; /* IE fix */
}

/* MEDIA QUERIES */

@media screen and (min-width: 1024px) {
  .mobile-menu-label {
    display: none;
  }

  .mobile-menu-checkbox {
    display: none;
  }

  .mobile-only {
    display: none;
  }
  .welcome-row {
    display: flex;
    justify-content: space-between;
    padding: 60px 15px;
  }
  .feature-pull-right {
    float: right;
    width: auto;
  }
  .feature-list {
    padding-left: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .feature-list {
    margin-left: 150px;
    padding-top: 20px;
  }
  .usecase-item:nth-child(3n) {
    margin-right: 0;
  }
  nav .separator {
    position: relative;
    margin-left: 65px;
  }
  nav .separator:before {
    content: '';
    position: absolute;
    left: -32px;
    top: 0;
    width: 1px;
    height: 40px;
    background-color: #cad0d7;
  }
}

@media screen and (max-width: 1023px) {
  section {
    padding: 120px 15px;
  }

  header {
    display: block;
  }

  header * {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-menu-checkbox {
    width: 0;
    height: 0;
    padding: 0;
    display: block;
    visibility: hidden;
  }

  .mobile-menu-checkbox:checked + ul {
    display: block;
  }

  nav ul {
    display: none;
    text-align: center;
    background-color: #fff;
    margin: 15px -15px 0;
  }

  nav * {
    -webkit-animation: none;
    animation: none;
  }

  nav li {
    margin: 0;
    padding: 5px 0;
  }

  section {
    padding: 60px 15px;
  }

  footer {
    padding: 30px 15px 60px;
  }

  .heading-48 {
    font-size: 34px;
    font-weight: bold;
  }

  .heading-36 {
    font-size: 26px;
    font-weight: bold;
  }

  .heading-24 {
    font-size: 18px;
    font-weight: bold;
  }

  .p-45 {
    padding: 30px;
  }

  .hide-mobile {
    display: none;
  }

  .row {
    display: block;
  }

  .row.mobile-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
  }

  .col {
    margin: 0;
  }

  .col + .col {
    margin-top: 30px;
  }

  .mobile-flex .col {
    margin: 0 15px;
  }

  .mobile-flex .col + .col {
    margin-top: 0;
  }

  .col-pr-70 {
    padding-right: 0;
  }

  .col-2 {
    max-width: 100%;
  }

  .col-3 {
    max-width: 100%;
  }

  .col-5 {
    max-width: 100%;
  }

  .col-6 {
    max-width: 100%;
  }

  .col-half {
    width: 100%;
  }

  .colx-end {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .faq article {
    padding: 0;
  }

  figure figcaption {
    padding: 0 25px;
  }

  table {
    padding: 25px;
    border-radius: 5px;
    /* border: 0; */
  }

  table thead th {
    padding-bottom: 15px;
  }

  table thead th:nth-child(2) {
    display: none;
  }

  table.limits thead {
    display: none;
  }

  table tr {
    display: block;
    border-top: 1px solid #cad0d7;
    margin-bottom: 10px;
    padding: 10px 0 0;
  }

  table tr:first-child {
    border-top: 0;
    padding-top: 0;
  }

  table tr:last-child {
    margin-bottom: 0;
  }

  table tr td {
    display: block;
    border: none;
  }

  table tr td:nth-child(1),
  table tr td:nth-child(2) {
    width: 100%;
    padding: 0;
  }

  table.limits tr td:nth-child(1),
  table.limits tr td:nth-child(2) {
    width: 100%;
    padding: 0;
  }

  table.limits tr td:nth-child(3) {
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }

  table tr td:nth-child(1) {
    font-weight: 500;
  }

  .welcome {
    height: auto;
    padding-bottom: 40%;
    padding-top: 30px;
  }

  .welcome-row {
    padding: 70px 15px;
    background-color: #eef1f5;
  }

  .welcome-right {
    padding-top: 70px;
  }

  .circle {
    display: none;
  }

  .contacts {
    margin-top: -20px;
  }

  .app {
    width: 35%;
    right: 0px;
  }

  .card {
    width: 45%;
    right: calc(35% - 50px);
  }

  .get-terminal-img-wrap {
    padding-top: 35px;
  }

  .possibility-image-wrapper {
    bottom: -30px;
  }

  .feature-title {
    flex-direction: column;
    font-size: 24px;
    padding: 0 15px;
    text-align: center;
  }

  .feature-title img {
    margin: 0 auto 40px;
  }

  .feature-sublist {
    margin: 0 auto;
  }
}

@media screen and (min-width: 670px) and (max-width: 1199px) {
  .usecase-wrap {
    width: 635px;
  }
  .usecase-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 669px) {
  .usecase-wrap {
    width: 100%;
  }
  .usecase-item {
    margin-right: 0;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .process-list:after {
    bottom: 30px;
  }
}

/* KEYFRAMES */

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-1 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-in-1 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-in-2 {
  0% {
    -webkit-transform: translateY(750px);
    transform: translateY(750px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-in-2 {
  0% {
    -webkit-transform: translateY(750px);
    transform: translateY(750px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-in-3 {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-in-3 {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes menu-mobile {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes menu-mobile {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.language-button {
  color: #002f5e;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
  align-self: stretch;
  position: relative;
  transition: color 0.25s;
  font-family: 'basier_circle', sans-serif;
}

.language-button:hover {
  color: #ffa920;
}

.language-split {
  margin: 0 10px;
  color: #002f5e;
}

.language-button.active {
  color: #ffa920;
}

.first-lang {
  margin-left: 24px;
}
