:root {
  --c-grey: #838382;
  --c-grey-2: #AEAEB2;
  --c-grey-light: #F5F5F5;
  --c-purple: #965EEB;
  --c-green: #04E061;
  --c-red: #FF4053;
}
html {
  font-size: 0.833333vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.c-grey {
  color: var(--c-grey);
}
body {
  -webkit-font-smoothing: subpixel-antialiased !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  text-decoration-skip-ink: none;
  position: relative;
  margin: 0;
  color: #000;
  font-weight: 400;
  font-family: "Aeroport", Arial, sans-serif;
  line-height: 1.2;
  background: #fff;
}
main {
  position: relative;
  width: 100%;
}
section {
  position: relative;
}
a:hover {
  color: inherit;
  text-decoration: underline;
}
s {
  font-weight: 600;
  text-decoration: none;
}
b {
  font-weight: 700;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ol {
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}
h2 {
  font-size: 3rem;
  line-height: 1.1;
}
h3 {
  font-size: 2rem;
  line-height: 1.1;
}
h4 {
  font-size: 1.5rem;
  line-height: 1.1;
}
p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}
li {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}
small {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
p span {
  color: var(--c-grey);
  text-transform: lowercase;
}
a {
  color: inherit;
  text-decoration: none;
}
p a {
  font-size: inherit;
}
picture {
  display: block;
}
picture img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.container {
  padding: 0 1.25rem;
  max-width: 75rem;
}
.row {
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}
.row > * {
  padding: 0 1.25rem;
}
.hidden {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  poMontserrat-events: none;
  z-index: -9999;
}
.mob {
  display: none !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.125rem 1.875rem;
  width: auto;
  height: auto;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
  border: .125rem solid rgba(0,0,0,0);
  border-radius: 10rem;
  outline: 0;
  z-index: 1;
}
.btn-center {
  justify-content: center;
}
.btn-full {
  width: 100%;
}
.btn:hover {
  text-decoration: none;
}
.btn-white {
  color: #000;
  background: #fff;
  border-color: #fff;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:not(:disabled):not(.disabled):active {
  color: #fff;
  background: #AA72FF;
  border-color: #AA72FF;
}
.btn-purple-tr {
  color: var(--c-purple);
  background: #fff;
  border-color: var(--c-purple);
}
.btn-purple-tr:hover,
.btn-purple-tr:focus,
.btn-purple-tr:not(:disabled):not(.disabled):active {
  color: #fff;
  background: var(--c-purple);
  border-color: var(--c-purple);
}
.btn-purple {
  color: #fff;
  background: var(--c-purple);
  border-color: var(--c-purple);
}
.btn-purple:hover,
.btn-purple:focus,
.btn-purple:not(:disabled):not(.disabled):active {
  color: #fff;
  background: #AA72FF;
  border-color: #AA72FF;
}
.btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.btns-end {
  justify-content: flex-end;
}
.btns-center {
  justify-content: center;
}
.btns-between {
  justify-content: space-between;
}
.btns-vertical {
  flex-direction: column;
}
.ico {
  flex-shrink: 0;
  display: block;
  position: relative;
  margin-left: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
.ico::before,
.ico::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: 0.3s;
}
.ico::before {
  opacity: 1;
}
.ico::after {
  opacity: 0;
}
.btn:hover .ico::before {
  opacity: 0;
}
.btn:hover .ico::after {
  opacity: 1;
}
.ico-arrow-r-w::before {
  background-image: url('../img/svg/arrow-right-w.svg');
}
.ico-arrow-r-w::after {
  background-image: url('../img/svg/arrow-right-g.svg');
}
@media (max-width: 1200px) {
  html {
    font-size: 1.25vw;
  }
}
@media (max-width: 991px) {
  html {
    height: 100%;
    font-size: 5vw;
  }
  body {
    position: relative;
    background-size: contain;
    overflow-y: auto;
  }
  .scroll-lock {
    overflow: hidden !important;
  }
  body::-webkit-scrollbar {
    width: 0;
  }
  main {
    position: relative;
    height: auto;
  }
  section {
    margin-bottom: 3.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.875rem;
  }
  li {
    font-size: 1rem;
  }
  small {
    font-size: 1rem;
    line-height: 1.5;
  }
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  .row {
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .row > * {
    padding: 0 1rem;
  }
  .link {
    font-size: .8125rem;
  }
  .desk {
    display: none !important;
  }
  .mob {
    display: block !important;
  }
  .btn {
    padding: 1.1875rem 1.9375rem;
    font-size: 1.25rem;
    border-width: 0.0625rem;
  }

  .btn-white:hover,
  .btn-white:focus,
  .btn-white:not(:disabled):not(.disabled):active {
    color: #000;
    background: #fff;
    border-color: #fff;
  }
  .btn-purple-tr:hover,
  .btn-purple-tr:focus,
  .btn-purple-tr:not(:disabled):not(.disabled):active {
    color: var(--c-purple);
    background: #fff;
    border-color: #fff;
  }
  .btn-purple:hover,
  .btn-purple:focus,
  .btn-purple:not(:disabled):not(.disabled):active {
    color: #fff;
    background: var(--c-purple);
    border-color: var(--c-purple);
  }
}
