/* utils */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
}

img {
  display: block;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

ul,
ol {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: var(--list-padding-left);
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

svg,
button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

:root {
  --list-padding-left: 20px;
}

body {
  font-family: Inter;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

html, body {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

/* Components */
.join {
  width: 100%;
  max-width: 1128px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 72px;
}
@media screen and (max-width: 1158px) {
  .join {
    width: calc(100% - 15px - 15px);
    margin-inline: 15px;
  }
}
.join .form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  max-width: 744px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .join .form {
    margin-inline: 30px;
    width: calc(100% - 30px - 30px);
  }
}
.join .form form .input-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}
@media screen and (max-width: 768px) {
  .join .form form .input-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.join .form form .input-wrapper .input p {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.join .form form .input-wrapper .input p span {
  color: #F00;
}
.join .form form .input-wrapper .input .input__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.join .form form .input-wrapper .input .input__name .error {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #F00;
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) all;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) all;
}
.join .form form .input-wrapper .input .input__name .error.visible {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .join .form form .input-wrapper .input .input__name .error {
    font-size: 10px;
  }
}
.join .form form .input-wrapper .input input {
  margin-top: 8px;
  width: 100%;
  padding: 13px 16px 15px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #CCCCF5;
  border: 1px solid #CCCCF5;
  -webkit-transition: 0.8s cubic-bezier(0.19, 0, 0, 1) all;
  transition: 0.8s cubic-bezier(0.19, 0, 0, 1) all;
}
@media screen and (max-width: 768px) {
  .join .form form .input-wrapper .input input {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9px 12px 10px;
  }
}
.join .form form .input-wrapper .input input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.join .form form .input-wrapper .input input::placeholder, .join .form form .input-wrapper .input input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.join .form form .input-wrapper .input input:focus, .join .form form .input-wrapper .input input:focus-visible, .join .form form .input-wrapper .input input:hover {
  border: 1px solid var(--Main-primary, #0000CC);
  background-color: #fff;
}
.join .form form .input-wrapper .input-big {
  grid-column: 1/3;
}
@media screen and (max-width: 768px) {
  .join .form form .input-wrapper .input-big {
    grid-column: auto;
  }
}
.join .form form .checkboxes-wrapper {
  width: 100%;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .join .form form .checkboxes-wrapper {
    gap: 10px;
  }
}
.join .form form .checkboxes-wrapper .checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox:hover {
  cursor: pointer;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox:hover .checkbox {
  color: #0000CC;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox .checkbox {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #5F6368;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox.error-checkbox .checkbox {
  color: red;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox > p {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .join .form form .checkboxes-wrapper .checkboxes .custom-checkbox > p {
    width: calc(100% - 20px - 32px);
  }
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox > p a {
  text-decoration: underline;
  color: #00C;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox > p a:hover {
  color: #FF7C7C;
}
.join .form form .checkboxes-wrapper .checkboxes .checkbox-checked {
  display: none;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox input:checked ~ .checkbox-checked {
  display: block;
}
.join .form form .checkboxes-wrapper .checkboxes .custom-checkbox input:checked ~ .checkbox-border {
  display: none;
}
.join .form form .checkboxes-wrapper > button {
  padding: 21px 48px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  text-transform: uppercase;
  background-color: var(--Main-primary);
  color: #fff;
  border-radius: 36px;
}
.join .form form .checkboxes-wrapper > button:hover {
  background-color: var(--Main-accent);
}
@media screen and (max-width: 560px) {
  .join .form form .checkboxes-wrapper > button {
    margin-left: auto;
    margin-right: auto;
  }
}
.join .form form .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 63px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .join .form form .submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 36px;
    margin-top: 36px;
  }
}
.join .form form .submit p {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .join .form form .submit p {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: center;
  }
}
.join .form form .submit p a {
  color: #00C;
  text-decoration: underline;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}
@media (hover: hover) {
  .join .form form .submit p a:hover {
    cursor: pointer;
    color: #FF7C7C;
  }
}
.join .form form .submit p a:focus-visible {
  color: #FF7C7C;
}
.join .form form .submit button {
  padding: 21px 47.5px;
  border-radius: 36px;
  background: #00C;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 150% */
  text-transform: uppercase;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}
@media (hover: hover) {
  .join .form form .submit button:hover {
    cursor: pointer;
    background-color: #FF7C7C;
  }
}
.join .form form .submit button:focus-visible {
  background-color: #FF7C7C;
}
@media screen and (max-width: 768px) {
  .join .form form .submit button {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero__grid {
  width: 100%;
  max-width: 1128px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
@media screen and (max-width: 1158px) {
  .hero__grid {
    width: calc(100% - 15px - 15px);
    margin-inline: 15px;
  }
}
@media screen and (max-width: 700px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 700px) {
  .hero__grid {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 570px) {
  .hero__grid {
    margin-inline: 15px;
  }
}
@media screen and (max-width: 350px) {
  .hero__grid {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 700px) {
  .hero .hero__grid.mobile {
    display: none;
  }
}
.hero .decor-yellow__container {
  grid-column: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  aspect-ratio: 282/141;
}
.hero .decor-yellow__container:after {
  content: "";
  width: 100%;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  height: 200%;
  left: 0;
  background-color: #FFFF00;
}
@media screen and (max-width: 700px) {
  .hero .decor-yellow__container {
    display: none;
  }
}
.hero .big__circle {
  grid-column: 1 span;
  grid-row: 2 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border-radius: 141px;
  background: #0AF477;
}
@media screen and (max-width: 920px) {
  .hero .big__circle {
    border-radius: 90px;
  }
}
@media screen and (max-width: 700px) {
  .hero .big__circle {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    grid-row: unset;
    grid-column: 1/3;
    aspect-ratio: 1/1;
  }
}
.hero .big__circle__content {
  width: 100%;
  border-radius: 100%;
  position: relative;
  background: #00C;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding-left: 2.88px;
  padding-right: 2.81px;
}
@media screen and (max-width: 700px) {
  .hero .big__circle__content {
    gap: 19px;
  }
}
.hero .big__circle__content .central-block {
  grid-column: 4 span;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 102fr 360fr 36fr 66fr;
  gap: 0px 24px;
}
@media screen and (max-width: 700px) {
  .hero .big__circle__content .central-block {
    grid-template-rows: 6511fr 22978fr 2297fr 4213fr;
  }
}
.hero .big__circle__content .central-block .logo {
  grid-column: 4 span;
  align-self: center;
  grid-row: 2/3;
}
.hero .big__circle__content .central-block .year__container {
  grid-row: 3/4;
  grid-column: 2/4;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .hero .big__circle__content .central-block .year__container {
    padding: 0;
  }
  .hero .big__circle__content .central-block .year__container img {
    max-width: 91px;
  }
}
.hero .big__circle__content .central-block img {
  width: 100%;
}
.hero .big__circle__content .pos-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero .big__circle__content .pos-block img {
  width: 100%;
  position: absolute;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: auto;
}
.hero .small__circle {
  aspect-ratio: 1/1;
  border-radius: 100%;
  padding: 48px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.hero .small__circle__1 {
  background-color: #FFFF00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__1 {
    padding: 30px 20px 30px 30px;
  }
}
.hero .small__circle__1 h4 {
  color: #00C;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 100% */
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__1 h4 {
    color: #00C;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
}
.hero .small__circle.icon {
  padding: 0;
}
.hero .small__circle.icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: auto;
}
@media screen and (max-width: 700px) {
  .hero .small__circle.icon img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.hero .small__circle__2 {
  background-color: #FF0;
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__2 {
    padding: 30px 20px 30px 30px;
  }
}
.hero .small__circle__2 h3 {
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__2 h3 {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
}
.hero .small__circle__2 p {
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__2 p {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
.hero .small__circle__2 a {
  margin-top: 12px;
  padding: 12px 10px;
  width: 100%;
  border-radius: 36px;
  background-color: #0000CC;
  color: white;
  text-align: center;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 125% */
  text-transform: uppercase;
  -webkit-transition: 0.6s ease-out all;
  transition: 0.6s ease-out all;
}
@media (hover: hover) {
  .hero .small__circle__2 a:hover {
    cursor: pointer;
    background-color: #FF7C7C;
  }
}
@media (hover: none) {
  .hero .small__circle__2 a {
    background-color: #FF7C7C;
  }
}
@media screen and (max-width: 1024px) {
  .hero .small__circle__2 a {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 8px 10px;
  }
}
@media screen and (max-width: 700px) {
  .hero .small__circle__2 a {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hero .small__circle__4 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media screen and (max-width: 700px) {
  .hero .small__circle__1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (max-width: 700px) {
  .hero .small__circle__3 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media screen and (max-width: 700px) {
  .hero .small__circle__2 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    transform: translateY(90px);
  }
}
.hero .section-for-btn {
  display: none;
}
@media screen and (max-width: 700px) {
  .hero .section-for-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column: 1/3;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    padding: 32px 0 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero .section-for-btn a {
    padding: 17px 48px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 36px;
    background-color: #0000CC;
    color: white;
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 93.75% */
    text-transform: uppercase;
  }
}
@media screen and (max-width: 700px) and (hover: hover) {
  .hero .section-for-btn a:hover {
    cursor: pointer;
    background-color: #FF7C7C;
  }
}
@media screen and (max-width: 700px) and (hover: none) {
  .hero .section-for-btn a {
    background-color: #FF7C7C;
  }
}
.hero .wrapper__for-cricle {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero .wrapper__for-cricle .circle {
  position: absolute;
  width: 282px;
  height: 282px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero .wrapper__for-cricle .circle-1 {
  top: 156px;
  left: -282px;
  border-radius: 141px;
  background: #FF7C7C;
}
@media screen and (max-width: 740px) {
  .hero .wrapper__for-cricle .circle-1 {
    display: none;
  }
}
.hero .wrapper__for-cricle .circle-2 {
  top: 0;
  right: -297px;
  border-radius: 141px;
  background: #FF7C7C;
}
@media screen and (max-width: 1024px) {
  .hero .wrapper__for-cricle .circle-2 {
    display: none;
  }
}

.info {
  width: 100%;
  max-width: 1128px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: grid;
  grid-template-columns: 565fr 567fr;
}
@media screen and (max-width: 1158px) {
  .info {
    width: calc(100% - 15px - 15px);
    margin-inline: 15px;
  }
}
@media screen and (max-width: 730px) {
  .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 540px;
    margin-inline: auto;
    gap: 0;
  }
}
@media screen and (max-width: 430px) {
  .info {
    margin-top: -32px;
    gap: 32px;
  }
}
@media screen and (max-width: 390px) {
  .info {
    gap: 0;
  }
}
.info .big-section {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 100%;
  position: relative;
  z-index: 2;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-left: 51px;
}
.info .big-section .bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  inset: 0px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .info .big-section .bg {
    top: 32px;
  }
}
.info .big-section h2 {
  color: #00C;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  max-width: 216px;
}
@media screen and (max-width: 1024px) {
  .info .big-section h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
.info .big-section .text {
  color: #00C;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 234px;
  margin-top: 29px;
}
@media screen and (max-width: 1024px) {
  .info .big-section .text {
    margin-top: 16px;
    font-size: 18px;
  }
}
.info .big-section .emoji {
  color: #00C;
  margin-top: 5px;
  font-family: "Noto Emoji";
  font-size: 144px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .info .big-section .emoji {
    font-size: 80px;
    margin-bottom: 68px;
  }
}
.info .small-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.info .small-section .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 77px 0 77px 48px;
}
.info .small-section .information:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 100%;
  background-color: #FFFF00;
  aspect-ratio: 1/1;
  height: 100%;
  width: auto;
  top: 0px;
  left: 0;
}
.info .small-section .information h3 {
  color: #000;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .info .small-section .information h3 {
    font-size: 24px;
  }
}
.info .small-section .information p {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .info .small-section .information p {
    font-size: 16px;
  }
}
.info .small-section .information p b {
  font-weight: 600;
}
.info .small-section .location {
  padding: 69px 0 69px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
  gap: 16px;
}
@media screen and (max-width: 1080px) {
  .info .small-section .location {
    padding: 66px 0;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.info .small-section .location a {
  padding: 20px 48px;
  background: #FF7C7C;
  color: #FFF;
  -webkit-transition: 0.8s cubic-bezier(0.19, 0, 0, 1) all;
  transition: 0.8s cubic-bezier(0.19, 0, 0, 1) all;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 1024px) {
  .info .small-section .location a {
    padding: 15px 24px;
  }
}
@media (hover: hover) {
  .info .small-section .location a:hover {
    cursor: pointer;
    background-color: #00C;
    border-radius: 80px;
  }
}
.info .small-section .location a:focus-visible {
  background-color: #00C;
  border-radius: 80px;
}
.info .small-section .location img {
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  max-width: 417px;
  width: 100%;
  right: 0;
  aspect-ratio: 417/282;
  height: auto;
  border-radius: 141px;
}
@media screen and (max-width: 1080px) {
  .info .small-section .location img {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
  }
}
.info .small-section .location svg {
  height: 144px;
  margin-right: 28px;
}
@media screen and (max-width: 1080px) {
  .info .small-section .location svg {
    position: absolute;
    height: 96px;
    right: 52px;
    bottom: -48px;
    margin-right: 0;
  }
}

.interesse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: 64px;
  gap: 64px;
}
@media screen and (max-width: 1293px) {
  .interesse {
    gap: 96px;
  }
}
.interesse__title {
  width: 100%;
  max-width: 1128px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1158px) {
  .interesse__title {
    width: calc(100% - 15px - 15px);
    margin-inline: 15px;
  }
}
@media screen and (max-width: 940px) {
  .interesse__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.interesse__title h1 {
  color: #00C;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  grid-column: 2/12;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 1024px) {
  .interesse__title h1 {
    color: #00C;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 700px) {
  .interesse__title h1 {
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .interesse__title h1 {
    margin-left: 0;
    margin-right: 0;
  }
}
.interesse__container {
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 1293px) {
  .interesse__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: initial;
  }
}
.interesse__container__text-container {
  width: 100%;
  max-width: 1128px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1158px) {
  .interesse__container__text-container {
    width: calc(100% - 15px - 15px);
    margin-inline: 15px;
  }
}
@media screen and (max-width: 940px) {
  .interesse__container__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.interesse__container .text-block {
  border-radius: 141px;
  border: 8px solid #0AF477;
  padding: 24px 94px;
  grid-column: 2/12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  .interesse__container .text-block {
    padding: 27px 22px;
  }
}
.interesse__container h2 {
  color: #00C;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 744px;
}
@media screen and (max-width: 700px) {
  .interesse__container h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.interesse__container .desktop {
  position: absolute;
  left: 0;
  -webkit-animation: ping 2s ease infinite alternate;
  animation: ping 2s ease infinite alternate;
}
@-webkit-keyframes ping {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
}
@keyframes ping {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
}
@media screen and (max-width: 1293px) {
  .interesse__container .desktop {
    display: none;
  }
}
.interesse__container .mobile {
  display: none;
  -webkit-animation: ping-verticla 2s ease infinite alternate;
  animation: ping-verticla 2s ease infinite alternate;
  position: absolute;
  top: -55px;
}
@media screen and (max-width: 1293px) {
  .interesse__container .mobile {
    display: block;
  }
}
@-webkit-keyframes ping-verticla {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes ping-verticla {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

.decorate__curve {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 72px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media screen and (max-width: 730px) {
  .decorate__curve {
    margin-top: 96px;
  }
}
.decorate__curve svg {
  width: 432px;
}
@media screen and (max-width: 768px) {
  .decorate__curve svg {
    width: 288px;
  }
}

.cooperation {
  max-width: 768px;
  width: 100%;
  margin-inline: auto;
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .cooperation {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 88px;
  }
}
.cooperation .line {
  width: 288px;
}
.cooperation p {
  margin-top: 36px;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .cooperation p {
    font-size: 16px;
  }
}
.cooperation svg:last-child {
  width: 240px;
  margin-top: 24px;
  justify-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .cooperation svg:last-child {
    width: 180px;
    margin-top: 18px;
  }
}

footer {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: Inter;
}
@media screen and (max-width: 1440px) {
  footer {
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 1188px) {
  footer {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
  }
}
footer .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  min-height: 80px;
}
footer .up:after {
  border-bottom: 1px solid var(--Main-primary);
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
}
footer .up:before {
  border-top: 1px solid var(--Main-primary);
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
}
footer .up .logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 264px;
  width: 100%;
  border-radius: 24px;
  border: 1px solid #00C;
}
@media screen and (max-width: 768px) {
  footer .up .logo-wrapper {
    max-width: 157.5px;
  }
}
footer .up .logo-wrapper .icon {
  width: 75.4px;
  height: 42px;
}
footer .up .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  footer .up .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 16px 0;
    margin-left: auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
}
footer .up .links a {
  padding: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  color: #00C;
}
footer .up .links a:hover {
  color: var(--Main-accent);
}
footer .up .links a:last-child {
  padding-right: 0;
}
@media screen and (max-width: 900px) {
  footer .up .links a {
    padding: 0;
    text-align: right;
  }
}
footer .down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 96px;
  width: 100%;
}
footer .down .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  footer .down .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}
footer .down .links a {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px;
}
footer .down .links a:hover {
  color: var(--Main-primary-light);
}
footer .down .links a:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  footer .down .links a {
    text-align: right;
    padding: 0;
  }
}
footer .down .links p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 0 8px 8px;
}
@media screen and (max-width: 768px) {
  footer .down .links p {
    text-align: right;
    padding: 0;
  }
}

.header {
  position: sticky;
  top: 0;
}

form .checkboxes-wrapper .checkboxes .custom-checkbox.invalid .checkbox {
  color: #F00 !important;
}

body, html {
  scroll-behavior: smooth;
}

.success-message {
  margin: 65px auto 0;
  background: #0AF477;
  padding: 30px;
  width: 100%;
  text-align: center;
  display: none;
}

.success-message h3 {
  font-size: 24px;
  color: #0000CC;
  margin-bottom: 25px;
}

.success-message p {
  margin: 0;
  font-size: 16px;
  color: #0000CC;
}

@media screen and (max-width: 768px) {
  .success-message h3 {
    font-size: 20px;
  }

  .success-message p {
    font-size: 14px;
  }
}