/* COMMON START */
:root {
  --c-primary: #3C83DE;
  --c-secondary: #D82F8B;
  --c-dark: #323232;
  --c-blue: #799ECE;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 0.8333333vw;
}

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: var(--c-dark);
  font-weight: 400;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  background: #fff;
}

.ff_tt {
  font-family: "TT-Bluescreens-Pro", Arial, sans-serif;
}

main {
  position: relative;
}

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

a {
  color: var(--c-primary);
}

a:hover {
  text-decoration: none;
}

.container {
  padding: 0;
  max-width: 90rem;
}

.mob {
  display: none !important;
}

.hidden {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  z-index: -9999999999999;
}

.ico {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.ico-eye-open {
  background-image: url("../img/svg/eye-open.svg");
}

.ico-eye-close {
  background-image: url("../img/svg/eye-close.svg");
}

.btns {
  display: flex;
}

.btns-full {
  width: 100%;
}
.btns-full .btn {
  width: 100%;
}

.btns-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: 4.0625rem;
  font: 500 0.875rem/1 "Unbounded", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  border: 0.0625rem solid #000;
  border-radius: 10rem;
  box-shadow: none !important;
  outline: 0;
}

.btn-primary {
  color: #fff;
  background: var(--c-secondary);
  border-color: var(--c-secondary);
}
.btn-primary:hover, .btn-primary.btn-primary:first-child:active, .btn-primary.btn-primary.active, .btn-primary.btn-primary:first-child:active {
  color: #fff;
  background: #FF68BA;
  border-color: #FF68BA;
}

.btn-secondary {
  color: #fff;
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-secondary:hover, .btn-secondary.btn-secondary:first-child:active, .btn-secondary.btn-secondary.active, .btn-secondary.btn-secondary:first-child:active {
  color: #fff;
  background: #72B0FF;
  border-color: #72B0FF;
}

.btn-secondary-tr {
  color: var(--c-primary);
  background: rgba(0, 0, 0, 0);
  border-color: var(--c-primary);
}
.btn-secondary-tr:hover, .btn-secondary-tr.btn-secondary-tr:first-child:active, .btn-secondary-tr.btn-secondary-tr.active, .btn-secondary-tr.btn-secondary-tr:first-child:active {
  color: #fff;
  background: #72B0FF;
  border-color: #72B0FF;
}

.btn-white {
  color: #202020;
  background: #fff;
  border-color: #fff;
}
.btn-white:hover, .btn-white.btn-white:first-child:active, .btn-white.btn-white.active, .btn-white.btn-white:first-child:active {
  color: #fff;
  background: var(--c-secondary);
  border-color: var(--c-secondary);
}

.btn img {
  flex-shrink: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.btn .img-left {
  margin-right: 0.75rem;
}

.btn .img-right {
  margin-left: 0.75rem;
}

.btn-ico {
  position: relative;
  padding: 0 2.625rem;
  height: 4.375rem;
  font-size: 1rem;
}
.btn-ico i {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4.375rem;
  height: 4.375rem;
  background: var(--c-secondary) url("../img/svg/arrow-r-w.svg") no-repeat 50%/contain;
  border-radius: 50%;
  transform: translateX(100%);
  transition: 0.3s;
}

.title {
  display: block;
  margin: 0 auto;
}

.title img {
  display: block;
  width: 100%;
}

/* COMMON END */
@media (max-width: 991px) {
  html {
    font-size: 4.266666vw;
  }
  body {
    background: #FEFFFF;
  }
  .mob {
    display: block !important;
  }
  .desk {
    display: none !important;
  }
  .container {
    padding: 0 0.75rem;
  }
  .btn-ico {
    padding: 0 2.625rem;
    height: 2.75rem;
    font-size: 0.75rem;
  }
  .btn-ico i {
    width: 2.75rem;
    height: 2.75rem;
  }
}