@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body{
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background-color: #111827;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container{
  margin: 0 auto;
  max-width: 1408px;
  padding: 0 20px;
}
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 186, 214, 0.2);
  backdrop-filter: blur(12px);
  background-color: rgba(6, 9, 14, 0.9);
}
.header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo{
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.header__logo:hover{
  opacity: 0.8;
}
.header__logo > span{
  color: rgba(0, 186, 214, 1);
}
.header__nav{
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
@media (width <= 660px){
  .header__nav{
    display: none;
  }
}
.header__nav-link{
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.header__nav-link:hover{
  color: rgba(0, 186, 214, 1);
  opacity: 1;
}
.header__btn{
  border-radius: 6px;
  background: linear-gradient(158.09deg, rgba(0, 186, 214, 1),rgba(10, 222, 255, 1) 100%);
  padding: 10px 24px;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 600;
  color: rgba(17, 24, 39, 1);
  cursor: pointer;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.header__btn:hover{
  opacity: 0.9;
  box-shadow: 0px 0px 20px 0px rgba(0, 186, 214, 0.5);
  transform: translateY(-1px);
}

.banner{
  position: relative;
}
.banner__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.banner__bg-dot{
  position: absolute;
  background-color: rgba(0, 186, 214, 1);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.banner__bg-dot:nth-child(1){
  top: 20px;
  left: 80px;
  width: 8px;
  height: 8px;
}
.banner__bg-dot:nth-child(2){
  top: 40px;
  right: 32px;
  width: 4px;
  height: 4px;
}
.banner__bg-dot:nth-child(3){
  bottom: 40px;
  left: 46px;
  width: 6px;
  height: 6px;
}
.banner__bg-dot:nth-child(4){
  bottom: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
}
@keyframes pulse {
  50% {
      opacity: .5
  }
}
.banner__inner{
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 680px);
  justify-content: space-between;
  align-items: center;
  padding: 100px 0 65px;
}
@media (width <= 1300px){
  .banner__inner{
    grid-template-columns: minmax(0, 580px);
    gap: 30px;
  }
}
.banner__item-title{
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  margin: 0 0 32px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.banner__item-title > span{
  color: rgba(0, 186, 214, 1);
}
.banner__item-subtitle{
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(107, 114, 128, 1);
  max-width: 431px;
}
.banner__item-link{
  border: 1px solid rgba(0, 186, 214, 1);
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 186, 214, 0.3);
  background-color: rgba(6, 9, 14, 1);
  font-size: clamp(0.875rem, 1.75vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  padding: 7px 33px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
  display: inline-block;
}
.banner__item-link:hover{
  box-shadow: 0px 0px 30px 0px rgba(0, 186, 214, 0.6), 0px 0px 50px 0px rgba(0, 186, 214, 0.3);
  border-color: rgba(10, 222, 255, 1);
  transform: translateY(-2px);
  background-color: rgba(0, 186, 214, 0.1);
}
.banner__img{
  background: linear-gradient(180deg, rgba(0, 186, 214, 1) 0%, rgba(10, 222, 255, 1) 100%);
  clip-path: polygon(0 0,50% 0,100% 50%,100% 100%,50% 100%,0 50%);
  padding: 5px;
}
.banner__img > img{
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,to {
      transform: translateY(0)
  }

  50% {
      transform: translateY(-20px)
  }
}

.stats{
  padding: 80px 0;
  background-color: rgba(17, 24, 39, 0.5);
  margin: 0 0 65px;
}
.stats__inner{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
@media (width <= 1024px){
  .stats__inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.stats__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 186, 214, 0.2);
  border-radius: 12px;
  background: linear-gradient(152.02deg, rgba(22, 31, 50, 1),rgba(28, 40, 64, 1) 100%);
  padding: 37px 25px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.stats__item:hover{
  border-color: rgba(0, 186, 214, 0.5);
  box-shadow: 0px 0px 20px 0px rgba(0, 186, 214, 0.3), 0px 0px 40px 0px rgba(0, 186, 214, 0.15);
  transform: translateY(-4px);
}
.stats__icon{
  margin: 0 0 28px;
}
.stats__value{
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1;
  text-transform: uppercase;
}
.stats__label{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 500;
  color: rgba(107, 114, 128, 1);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}


.areas{
  padding: 0 0 64px;
}
.areas__title{
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  margin: 0 0 48px;
  color: #fff;
}
.areas__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.areas__item{
  padding: 13px;
  border: 1px solid rgba(0, 186, 214, 0.2);
  border-radius: 12px;
  background: linear-gradient(144.94deg, rgba(22, 31, 50, 1),rgba(28, 40, 64, 1) 100%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.areas__item:hover{
  border-color: rgba(0, 186, 214, 0.6);
  box-shadow: 0px 0px 25px 0px rgba(0, 186, 214, 0.4), 0px 0px 50px 0px rgba(0, 186, 214, 0.2);
  transform: translateY(-4px) scale(1.02);
}

.directions{
  background-color: hsl(221 39% 6%);
  padding: 80px 0;
}
.directions__inner{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
@media (width <= 1380px){
  .directions__inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 610px){
  .directions__inner{
    grid-template-columns: minmax(0, 1fr);
  }
}
.directions__item{
  border: 1px solid rgba(0, 186, 214, 0.2);
  border-radius: 12px;
  background: linear-gradient(137.89deg, rgba(22, 31, 50, 1),rgba(28, 40, 64, 1) 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.directions__item:hover{
  border-color: rgba(0, 186, 214, 0.5);
  box-shadow: 0px 0px 25px 0px rgba(0, 186, 214, 0.4), 0px 0px 50px 0px rgba(0, 186, 214, 0.2);
  transform: translateY(-4px);
}
.directions__item:hover .directions__icon{
  background-color: rgba(0, 186, 214, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 186, 214, 0.3);
}
.directions__icon{
  border-radius: 12px;
  background-color: rgba(0, 186, 214, 0.1);
  margin: 0 0 24px;
  padding: 16px 16px 12px;
  width: fit-content;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.directions__title{
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.3;
}
.directions__text{
  color: rgba(107, 114, 128, 1);
  line-height: 1.6;
}

.footer{
  padding: 48px 0;
  border-top: 1px solid rgba(0, 186, 214, 0.2);
  background-color: hsl(221 39% 6%);
}
.footer__inner{
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (width <= 630px){
  .footer__inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
}
.footer__column{
  display: flex;
  flex-direction: column;
}
.footer__title{
  font-size: clamp(0.875rem, 1.75vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.footer__contacts{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-item{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
}
.footer__links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (width <= 630px){
  .footer__links{
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
.footer__link{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(0, 186, 214, 1);
  transition: color 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
}
.footer__link:hover{
  color: rgba(10, 222, 255, 1);
  opacity: 1;
  text-shadow: 0px 0px 10px rgba(0, 186, 214, 0.5);
}

.unsubscribe{
  position: relative;
  padding: 80px 0;
  min-height: calc(100vh - 200px);
}
.unsubscribe__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.unsubscribe__bg-dot{
  position: absolute;
  background-color: rgba(0, 186, 214, 1);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.unsubscribe__bg-dot:nth-child(1){
  top: 20px;
  left: 80px;
  width: 8px;
  height: 8px;
}
.unsubscribe__bg-dot:nth-child(2){
  top: 40px;
  right: 32px;
  width: 4px;
  height: 4px;
}
.unsubscribe__bg-dot:nth-child(3){
  bottom: 40px;
  left: 46px;
  width: 6px;
  height: 6px;
}
.unsubscribe__bg-dot:nth-child(4){
  bottom: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
}
.unsubscribe__inner{
  max-width: 600px;
  margin: 0 auto;
}
.unsubscribe__back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 500;
  color: rgba(0, 186, 214, 1);
  margin-bottom: 48px;
  transition: opacity 0.2s;
}
.unsubscribe__back:hover{
  opacity: 0.8;
}
.unsubscribe__content{
  border-radius: 8px;
  border: 1px solid rgba(0, 186, 214, 0.2);
  background-color: rgba(22, 31, 50, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 48px;
  transition: box-shadow 0.3s;
}
.unsubscribe__content:hover{
  box-shadow: 0 0 20px 0 rgba(0, 186, 214, 0.3), 0 0 40px 0 rgba(0, 186, 214, 0.2);
}
.unsubscribe__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.unsubscribe__line{
  width: 48px;
  height: 4px;
  background-color: rgba(0, 186, 214, 1);
  border-radius: 9999px;
  margin: 0 0 10px;
  animation: glow-pulse 3s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes glow-pulse {
  0%,to {
      box-shadow: 0 0 20px rgba(0, 186, 214, 0.3);
      transform: scale(1)
  }

  50% {
      box-shadow: 0 0 40px rgba(0, 186, 214, 0.6);
      transform: scale(1.02)
  }
}
.unsubscribe__title{
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 900;
  letter-spacing: -0.75px;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.unsubscribe__subtitle{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
}
.unsubscribe__form-wrapper{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.unsubscribe__form{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.unsubscribe__field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.unsubscribe__label{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 500;
  color: rgba(107, 114, 128, 1);
  padding-left: 12px;
}
.unsubscribe__input{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: #fff;
  background-color: rgba(6, 9, 14, 1);
  border: 1px solid rgba(0, 186, 214, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.unsubscribe__input:focus{
  border-color: rgba(0, 186, 214, 1);
}
.unsubscribe__input::placeholder{
  color: rgba(107, 114, 128, 0.6);
}
.unsubscribe__btn{
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: rgba(17, 24, 39, 1);
  background: linear-gradient(158.09deg, rgba(0, 186, 214, 1),rgba(10, 222, 255, 1) 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.unsubscribe__btn:hover{
  opacity: 0.9;
}
.unsubscribe__note{
  text-align: center;
}
.unsubscribe__note p{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
}
.unsubscribe__success{
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  background-color: rgba(74, 222, 128, 0.1);
}
.unsubscribe__success p{
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: rgba(74, 222, 128, 1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.8);
}
.modal__content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 186, 214, 0.2);
  background-color: rgba(22, 31, 50, 0.95);
  backdrop-filter: blur(12px);
  padding: 40px;
  transform: scale(0.9) translateY(-20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
  opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px 0 rgba(0, 186, 214, 0.2);
}
.modal__content.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  box-shadow: 0 0 30px 0 rgba(0, 186, 214, 0.4), 0 0 60px 0 rgba(0, 186, 214, 0.2);
}
.modal__title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.modal__text{
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.modal__text > a {
  color: rgba(0, 186, 214, 1);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.modal__text > a:hover {
  opacity: 0.8;
}
.modal__title.left {
  align-self: flex-start;
  text-align: left;
}
.modal__subtitle {
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
  text-align: center;
  margin: 0;
}
.modal__subtitle > a {
  color: rgba(0, 186, 214, 1);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.modal__subtitle > a:hover {
  opacity: 0.8;
}
.modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.modal__wrapper > label {
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 500;
  padding: 0 0 0 12px;
  color: rgba(107, 114, 128, 1);
}
.modal__wrapper > input {
  color: #fff;
  background-color: rgba(6, 9, 14, 1);
  border: 1px solid rgba(0, 186, 214, 0.2);
  outline: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: clamp(0.75rem, 1.25vw, 0.875rem);
  font-weight: 400;
  transition: border-color 0.2s;
}
.modal__wrapper > input:focus {
  border-color: rgba(0, 186, 214, 1);
}
.modal__wrapper > input::placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.modal__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(158.09deg, rgba(0, 186, 214, 1),rgba(10, 222, 255, 1) 100%);
  color: rgba(17, 24, 39, 1);
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.modal__btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px 0 rgba(0, 186, 214, 0.4);
}
.modal__checkbox {
  display: grid;
  grid-template-columns: minmax(0, 2rem) auto;
  gap: 12px;
  align-self: start;
  font-size: clamp(0.625rem, 1vw, 0.75rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
  line-height: 1.5;
}

.modal__checkbox a {
  color: rgba(0, 186, 214, 1);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.modal__checkbox a:hover {
  opacity: 0.8;
}

.modal__checkbox > input {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(0, 186, 214, 0.3);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(6, 9, 14, 1);
  appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}
.modal__checkbox > input:hover {
  border-color: rgba(0, 186, 214, 0.6);
}
.modal__checkbox > input:checked {
  border-color: rgba(0, 186, 214, 1);
  background-color: rgba(0, 186, 214, 0.1);
}
.modal__checkbox > input::after {
  content: "";
  display: none;
  position: absolute;
  top: 0.375rem;
  width: 0.375rem;
  height: 0.75rem;
  border: solid rgba(0, 186, 214, 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.modal__checkbox > input:checked::after {
  display: block;
}
.modal__note {
  text-align: center;
  font-size: clamp(0.5625rem, 0.9vw, 0.6875rem);
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
  margin: 0;
  line-height: 1.5;
}