@import 'form-elements.css';
@import 'ui-kit.css';
@import 'ui-blocks.css';
@import 'hovers.css';

/* Homepage | hero section */

main > *:first-child {
  padding-top: 96px;
}

.hero {
  min-height: calc(100svh - 96px);
}

.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 40px 0 84px 0;
}

.hero .content {
  max-width: 640px;
}

.hero .content .subtitle {
  max-width: 480px;
  margin-top: 32px;
  color: var(--white-80, rgba(255, 255, 255, 0.80));
}

.hero .content .button {
  margin-top: 56px;
  width: fit-content;
}

.hero.gradient-section .gradient {
	top: 0;
	right: 0;
	width: 100%;
  max-width: 1440px;
}

.hero.gradient-section .gradient img,
.hero.gradient-section .gradient picture {
	display: block;
	width: 100%;
}

.hero.gradient-section .gradient:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -1307px;
  top: -32px;
  width: 2480px;
  height: 1600px;
  border-radius: 2480px;
  background: #006C32;
  -webkit-filter: blur(250px);
  filter: blur(250px);
}

.hero.gradient-section .gradient:after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -240px;
  top: 426px;
  width: 800px;
  height: 520px;
  border-radius: 800px;
  background: var(--Green-main, #68F426);
  -webkit-filter: blur(150px);
  filter: blur(150px);
}

.hero__wrapper .media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 580px;
  width: 100%;
}

.hero__wrapper .media img {
  position: relative;
  display: block;
  width: 100%;
}

.hero__wrapper .absolut-images {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__wrapper .absolut-images .img {
  position: absolute;
  left: auto !important;
  top: auto !important;
  transition: transform 0.2s;
}

.hero__wrapper .absolut-images .blur {
  z-index: 1;
  overflow: hidden;
  width: 11%;
  border-radius: 32%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.20);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.hero__wrapper .absolut-images .img:first-child {
  margin: -56.9% 0 0 -68.2%;
  width: 20.6%;
}

.hero__wrapper .absolut-images .img:nth-child(2) {
  margin: -77.7% 0 0 -45.2%;
}

.hero__wrapper .absolut-images .img:nth-child(3) {
  margin: -86.1% 0 0 26.4%;
  width: 13.8%;
}

.hero__wrapper .absolut-images .img:nth-child(4) {
  margin: -49.1% 0 0 65.4%;
}

.hero__wrapper .absolut-images .img:nth-child(5) {
  margin: 44.5% 0 0 -80.6%;
  width: 16.5%;
}


.hero__wrapper .absolut-images .img:nth-child(6) {
  margin: 51.7% 0 0 -34%;
}


.hero__wrapper .absolut-images .img:nth-child(7) {
  margin: 86.3% 0 0 6.3%;
  width: 13.8%;
}


.hero__wrapper .absolut-images .img:nth-child(8) {
  margin: 51.7% 0 0 76.5%;
  width: 20.6%;
}


/* methods-section */

.methods-section {
  padding: 120px 0 80px 0;
  position: relative;
}

.methods-section .tag + .title {
  margin-top: 16px;
} 

.methods-section .title + .text {
  margin-top: 32px;
}

.methods-section .title,
.methods-section .text {
  text-align: center;
}

.methods-section .text {
  color: var(--white-80, rgba(255, 255, 255, 0.80));
}

.methods-section .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 768px;
  margin: 0 auto;
}

.methods-section__wrapper {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 64px 32px;
}

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(25% - 34px);
}

.method-item .img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.20));
  background: var(--white-10, rgba(255, 255, 255, 0.10));
}

.method-item .img img {
  display: block;
  width: 100%;
  aspect-ratio: 143/80;
}

.method-item  .text {
  margin-top: 24px;
  color: var(--white-100);
  text-align: center;
}

/* benefits-section */

.benefits-section {
  padding: 120px 0;
}

.benefits-section .tag + .title {
  margin-top: 16px;
}

.benefits__wrapper {
  margin-top: 64px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(6, 1fr);
}

.benefits__wrapper.mobile-version {
  display: none;
}

.benefits__col {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.20));
  background: var(--white-10, rgba(255, 255, 255, 0.10));
  height: 100%;
}

.benefit-card .img {
  width: 100%;
  margin-bottom: 32px;
}

.benefit-card .img img {
  display: block;
  width: 100%;
}

.benefit-card .description {
  margin-top: auto;
}

.benefit-card .text {
  margin-top: 16px;
  color: var(--white-80, rgba(255, 255, 255, 0.80));
}

.benefit-card.-higher {
  min-height: 680px;
}


.benefits-section.gradient-section .gradient {
  top: 0;
}

.benefits-section.gradient-section .gradient img,
.benefits-section.gradient-section .gradient picture {
	display: block;
	width: 100%;
}

.benefits-section.gradient-section .gradient:before {
  content: '';
  position: absolute;
  top: -32px;
  left: -885px;
  width: 2480px;
  height: 1600px;
  border-radius: 2480px;
  background: #006C32;
  filter: blur(250px);
}

.benefits-section.gradient-section .gradient:after {
  content: '';
  position: absolute;
  top: 426px;
  left: -272px;
  width: 520px;
  height: 360px;
  border-radius: 520px;
  background: var(--Green-main, #68F426);
  filter: blur(250px);
}

/* contacts section */

.contacts-section {
  position: relative;
  padding: 80px 0 85px 0;
}

.contacts-section .text-content {
  max-width: 730px;
}

.contacts-section .text-content .tag + .title {
  margin-top: 16px;
}

.contacts-section .text-content .title + .text {
  margin-top: 32px;
}

.contacts-section .text-content .text {
  color: var(--white-80, rgba(255, 255, 255, 0.80));
}

.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  margin-top: 80px;
}

.contacts__wrapper-left .icon {
  width: 24px;
}

.contacts__wrapper-left .icon img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1
}

.contacts__wrapper-left .title {
  margin-top: 16px;
}

.contacts__wrapper-left .text {
  color:  rgba(255, 255, 255, 0.70);
  margin-top: 8px;
}

.contacts__wrapper-left .default-link {
  margin-top: 16px;
  color: var(--Green-main, #68F426);
  transition: opacity 0.4s;
  text-transform: none;
  display: block;
  width: fit-content;
}

.contacts__wrapper-left {
width: 357px;
min-width: 357px;
}

.contacts__wrapper-right {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.20));
  background: var(--white-10, rgba(255, 255, 255, 0.10));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 40px 32px;
}

.contacts__wrapper-right .form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.7s;
}

.contacts__wrapper-right .form-wrapper .form {
  width: 100%;
}

.contacts__wrapper-right .form-wrapper.-valid .form {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.contacts__wrapper-right .form-wrapper.-valid .thanks-container {
opacity: 1;
pointer-events: auto;
}

.contacts__wrapper-right .button {
  margin-top: 32px;
}

.thanks-container {
  position: absolute;
  opacity: 0;
  bottom: 0;
  pointer-events: none;
  max-width: 424px;
  height: 100%;
  transition: opacity 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thanks-container .img {
  width: 96px;
}

.thanks-container .img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

.thanks-container .title {
  margin-top: 48px;
  text-align: center;
}

.thanks-container .text {
  margin-top: 24px;
  color: var(--white-80, rgba(255, 255, 255, 0.80));
  text-align: center;
}