body {
  font-family: "Involve", sans-serif;
  font-weight: 400;
  color: #2F2F2F;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

.btn {
  width: 100%;
  max-width: 320px;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 24px;
  background-color: #3081F7;
  color: #fff;
}

a {
  transition: all 0.2s linear;
}
a:hover {
  color: #3081f7;
}

input[type=text] {
  font-family: "Roboto", "Involve", sans-serif;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.input-item {
  width: 100%;
  max-width: 320px;
  height: 48px;
  border: 1px solid #3081F7;
  border-radius: 24px;
  padding: 14px 20px;
  background-color: #fff;
  color: #000;
}
.input-item::-moz-placeholder {
  color: #999;
}
.input-item::placeholder {
  color: #999;
}

.header {
  background-color: #E9F1FE;
  padding-top: 61.5px;
  margin-bottom: 96px;
}
.header .logo {
  margin-bottom: 90.5px;
}
.header .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url("../../img/main.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 1174px;
  margin-top: 77px;
}
.header-main__title {
  font-size: 68px;
  font-weight: 600;
  line-height: 80px;
  color: #3081f7;
  margin-bottom: 32px;
}

.logo img {
  width: 100%;
  max-width: 138px;
}

.style-element {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px 6px 6px;
  border: 1px solid rgba(0, 0, 0, 0.0784313725);
  border-radius: 100px;
}
.style-element span {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.style-element img {
  width: 100%;
  max-width: 96px;
}

.form-sign {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form-sign .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.form-sign .container > * {
  width: 50%;
  max-width: unset;
}
.form-sign__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.form-sign .container,
.form-sign label {
  max-width: 535px;
}
.form-sign label {
  margin-top: 24px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}
.checkbox-container a {
  color: #3081f7;
  text-decoration: underline;
}

.custom-checkbox {
  position: relative;
  display: flex;
}
.custom-checkbox .custom-checkbox-item {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #3081f7;
  border-radius: 6px;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  bottom: 0;
}
.custom-checkbox input[type=checkbox]:checked ~ .custom-checkbox-item::after {
  content: "";
  background-image: url("/img/mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 104px;
  margin-bottom: 72px;
}
.info-block > .left {
  width: 53%;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
.info-block > .right {
  width: 47%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 16px;
}

.number-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.number-custom__title {
  font-size: 96px;
  font-weight: 600;
  line-height: 96px;
  color: #3081F7;
}
.number-custom__desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #9C9C9C;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-bottom: 88px;
  text-align: center;
}
.content-block .grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #1FA22B;
}
.content-block .grid-items img {
  width: 100%;
  max-width: 782px;
  border-radius: 20px;
}
.content-block .grid-items:nth-child(n) > div:first-child {
  grid-area: 1/1/2/2;
}
.content-block .grid-items:nth-child(n) > div:last-child {
  grid-area: 1/2/2/4;
  margin-left: auto;
}
.content-block .grid-items:nth-child(2n) > div:first-child {
  grid-area: 1/3/2/4;
  margin-right: auto;
}
.content-block .grid-items:nth-child(2n) > div:last-child {
  grid-area: 1/1/2/3;
}

.count-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 82px;
}
.count-block__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}
.count-block > .container {
  width: 100%;
  max-width: 870px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.count-block .count-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.count-block .form-sign .container {
  margin-top: 24px;
}

.time {
  font-size: 120px;
  font-weight: 600;
  line-height: 120px;
  color: #3081f7;
}

.text {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.footer {
  width: 100%;
  padding-top: 72px;
  padding-bottom: 172px;
  background-color: #E9F1FE;
  margin-top: 88px;
  border-radius: 20px 20px 0 0;
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 40px;
}

.social-networks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-cond-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 64px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.modal-container {
  padding: 20px;
}
.modal-container p {
  font-weight: 700;
}

.hystmodal__close:focus {
  outline: none;
}

.hystmodal__window {
  border-radius: 12px;
}

.notify-cookie {
  display: none;
  position: fixed;
  left: 40px;
  right: 40px;
  bottom: 62px;
  margin: auto;
  z-index: 100;
  width: 100%;
  max-width: 717px;
  padding: 24px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
}
.notify-cookie a {
  color: #3081F7;
  text-decoration: underline;
}
.notify-cookie .notify-cookie__container {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
}
.notify-cookie p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
}
.notify-cookie button {
  padding: 12px 28px;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  margin: 0;
}