body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #83b7f7;
  color: #253973;
  font-size: 16px;
  background-image: url("./bg.jpg");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.container {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100vh;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  gap: 28px;
  margin-top: 16px;
  width: 100%;
  max-width: calc(100% - 80px);
  padding-bottom: 20px;
}
.logo {
  width: 377px;
  height: 215px;
  background-image: url("./logo.png");
  background-size: cover;
  background-position: center;
}
.title_cont {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: bold;
  margin: 0;
  display: flex;
  justify-content: center;
}

p {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
  font-weight: 600;
  text-align: start;
}

span {
  color: #6b91b8;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  text-align: start;
}

.btn_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.btn-sub_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 20px 26px;
  font-size: clamp(1rem, 4vw, 1.5rem);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  gap: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.28) 55%,
    rgba(255, 255, 255, 0.18) 100%
  );

  box-shadow:
    0 18px 35px rgba(10, 45, 90, 0.18),
    /* основная тень */ 0 2px 0 rgba(30, 70, 120, 0.12) inset,
    /* подсветка сверху внутри */ 0 -2px 0 rgba(30, 70, 120, 0.12) inset,
    -2px 0 2px rgba(30, 70, 120, 0.12) inset;
  /* затемнение снизу внутри */

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn_icon {
  width: 56px;
  height: 56px;
  border: 1px solid #253973;
  border-radius: 100%;
}

.btn_txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #415a80;
}

.btn:hover {
  background-color: rgba(32, 60, 199, 1);
  p,
  span {
    color: white;
  }
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 375px) {
  .btn_icon {
    display: none;
  }
}
@media (max-width: 625px) {
  .logo {
    width: 100%;
    height: auto;
  }
  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: space-around;
  }
  .btn_cont,
  .btn-sub_cont {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .content {
    margin-top: 66px;
    gap: 60px;
  }
  .btn {
    max-width: 415px;
  }
}
@media (min-width: 1025px) {
  .title_cont {
    display: flex;
  }
  h1 {
    font-size: 44px;
  }
}
