@charset "UTF-8";
/*Скидання стилів*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input {
  background: transparent;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
input[type='submit'] {
  cursor: pointer;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
::placeholder {
  opacity: 1;
  font-style: normal;
  font-weight: 400;
  color: inherit;
}
/* Скролбар */
::-webkit-scrollbar {
  scrollbar-width: thin;
  width: 4px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--с-green);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--с-green);
}
::-webkit-scrollbar-track {
  background: transparent;
}
*/
/* Стрілки */
::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}
::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}
::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}
/* -------------------------------- */
[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: flex;
}

[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: transparent;
}
[type='radio']:not(:checked) + label:before {
  border: 1px solid rgba(0, 162, 230, 0.3);
}
.bg-blue [type='radio']:not(:checked) + label:before {
  border: 1px solid rgba(251, 251, 251, 0.2);
}
[type='radio']:checked + label:before {
  border: 1px solid rgba(0, 162, 230, 1);
}
[type='radio']:checked + label:after,
[type='radio']:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--c-green);
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
}
[type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}
/*--------------------*/
* {
  --c-white: #fff;
  --c-black: #000000;
  --c-dark: #4d5061;
  --c-gray: #808080;
  --c-green: #48bf84;
  --c-light-green: #d7f0e3;
  --c-light-bg: #f3f6f3;
  --c-yellow: #fdb600;
  --c-blue: #749dd3;
  --gray-gradient: linear-gradient(270deg, #000000 18.72%, rgba(234, 234, 234, 0) 70.94%);
  --container: 1170px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-green) transparent;
}
a.c-white,
.c-white {
  color: var(--c-white);
}
.bg-white {
  background: var(--c-white);
}
a.c-black,
.c-black {
  color: var(--c-black);
}
.bg-black {
  background: var(--c-black);
}
a.c-dark,
.c-dark {
  color: var(--c-dark);
}
.bg-dark {
  background: var(--c-dark);
}
a.c-green,
.c-green {
  color: var(--c-green);
}
.bg-green {
  background: var(--c-green);
}
a.c-yellow,
.c-yellow {
  color: var(--c-yellow);
}
.bg-yellow {
  background: var(--c-yellow);
}
a.c-gray,
.c-gray {
  color: var(--c-gray);
}
.bg-gray {
  background: var(--c-gray);
}
a.c-blue,
.c-blue {
  color: var(--c-blue);
}
.bg-blue {
  background: var(--c-blue);
}
a.c-light-bg,
.c-light-bg {
  color: var(--c-light-bg);
}
.bg-light-bg {
  background: var(--c-light-bg);
}
a.c-light-green,
.c-light-green {
  color: var(--c-light-green);
}
.bg-light-green {
  background: var(--c-light-green);
}
.c-red{
  color: #f00;
}
.text-up {
  text-transform: uppercase;
}
.text-low{
  text-transform: lowercase;
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.f-light {
  font-weight: 300;
}
.f-regular {
  font-weight: 400;
}
.f-semibold {
  font-weight: 600;
}
.f-bold {
  font-weight: 700;
}
.f-extrabold {
  font-weight: 900;
}
body {
  font-family: 'Gilroy';
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--c-dark);
  background: var(--c-white);
  max-width: 100vw;
  overflow: hidden;
  overflow-y: visible;
}
body.overflow {
  height: 100vh;
  overflow: hidden;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.small-btn {
  width: max-content;
  min-width: 171px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 20px;
  padding: 0 16px;
  /* transition: all 0.3s ease; */
  border: 1px solid var(--c-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.small-btn::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: scale(0) translate(-50%, -50%);
  background: var(--c-dark);
  transition: all 0.4s ease;
  z-index: -100;
  opacity: 1;
}
.small-btn:hover {
  color: white;
  font-weight: 900;
}
.small-btn:hover::before {
  opacity: 1;
  transform: scale(70) translate(0, 0);
}
/* -------------btn-------------- */
.btn {
  width: max-content;
  min-width: 270px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  padding: 0 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: scale(0) translate(-50%, -50%);
  background: var(--c-dark);
  transition: 0.4s all ease;
  z-index: -100;
  opacity: 1;
}
.btn:hover {
  color: white;
}
.btn:hover::before {
  opacity: 1;
  transform: scale(80) translate(0, 0);
}
/* ----------play-btn---------- */
.play-btn__green {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: url(../img/play2.svg) no-repeat center;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
}
.play-btn__white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: url(../img/play.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
  overflow: hidden;
}
/* ---------------title--------------- */
.title {
  font-size: 36px;
  line-height: 67%;
}
.subtitle {
  font-size: 16px;
  margin-top: 30px;
}
/* --------------------------------header---------------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  background: transparent;
  transition: all 0.3s ease-in-out;
  padding: 25px 0;
  z-index: 10;
}
.header.fixed {
  background: var(--c-white);
  box-shadow: 0 0 3px rgba(77, 80, 97, 0.2);
}
.header__container-mob {
  display: none;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 50px;
  width: max-content;
}
.header__logo img {
  object-fit: contain;
  object-position: left;
}
.header__menu {
  display: flex;
}
.header__menu li {
  margin: 0 15px;
}
.header__menu li a {
  font-size: 18px;
}
.header__menu li a:hover {
  border-bottom: 2px solid var(--c-green);
}
.page-active {
  font-weight: bold;
  border-bottom: 2px solid var(--c-green);
}
.header__burger-menu{
  display: none;
}
.header__menu-close_btn{
  display: none;
}
/* --------------------------------wrapper------------------------------------ */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* -----------------------------first-screen---------------------------------- */
.first-screen__container {
  padding: 101px 0 40px;
  display: flex;
  align-items: center;
  margin: 0 -15px;
  position: relative;
  z-index: 1;
}
.first-screen__left {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
}
.first-screen__title {
  font-size: 50px;
  line-height: 112%;
  margin-bottom: 40px;
}
.first-screen__subtitle {
  font-size: 24px;
  line-height: 133%;
  margin-bottom: 49px;
}
.first-screen__right {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
  height: 620px;
  position: relative;
}
.fs-banner {
  width: 50vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 200px 0px 0px 0px;
  overflow: hidden;
}
.fs-banner img {
  object-position: left bottom;
}
.fs-banner__advantages {
  position: absolute;
  left: 70px;
  bottom: -40px;
  display: flex;
  padding: 20px 30px;
  box-shadow: 0px 40px 30px -30px rgba(77, 80, 97, 0.2);
  border-radius: 20px;
  z-index: 2;
  width: 100%;
}
.fs-banner__advantages li {
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.fs-banner__advantages li:not(:last-child) {
  padding-right: 22px;
  border-right: 1px solid #d1d1d1;
}
.fs-banner__advantages li:not(:first-child) {
  padding-left: 22px;
}
.fs-banner__advantages-icon,
.number {
  font-size: 20px;
}
.fs__advantages-text {
  margin-left: 6px;
}
.fs-img__bg1 {
  width: 261px;
  height: 297px;
  background: url(../img/icons/index_banner/2_circles.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 326px;
  top: -157px;
  z-index: -1;
}
.fs-img__bg2 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -247px;
  top: 65px;
  z-index: -1;
}
.fs-img__bg3 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 264px;
  top: 275px;
  z-index: -1;
}
.fs-img__bg4 {
  width: 261px;
  height: 261px;
  background: url(../img/icons/gray_elips_50pt_261x261.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -303px;
  bottom: -130px;
  z-index: -1;
}
/* -------------------------------logos------------------------------ */
.logos {
  padding: 61px 0;
}
.logos__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  width: 170px;
  height: max-content;
}
.logo-img img {
  object-fit: contain;
  object-position: center;
}
/* -------------------------------courses------------------------------ */
.courses {
  padding: 60px 0 75px;
}
.courses__container {
  position: relative;
}
.courses-img__bg1 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -343px;
  top: -79px;
  z-index: -1;
}
.courses__subtitle {
  margin-bottom: 38px;
}
.courses__cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.courses__card {
  width: calc((100% - 4 * 30px) / 4);
  margin: 15px;
  display: flex;
  flex-direction: column;
}
.courses__card-img {
  display: flex;
  width: 100%;
  height: 152px;
  margin-bottom: 10px;
}
.courses__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courses__card-title {
  margin-bottom: 5px;
}
.courses__card-author {
  margin-bottom: 5px;
  font-size: 14px;
  margin-top: auto;
}
.courses__card-rating {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.rating__stars {
  display: flex;
  margin-right: 6px;
}
.rating__stars li {
  font-size: 12px;
  margin: 0;
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 12px;
}
:root {
  --star-size: 60px;
  --star-color: #fff;
  --star-background: var(--c-yellow);
}
.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  font-size: 12px;
  line-height: 12px;
}
.Stars::before {
  content: "\e91e\e91e\e91e\e91e\e91e";
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating {
  margin-right: 5px;
}
.courses__card-text {
  margin-bottom: 23px;
  font-size: 14px;
}
.courses__btn {
  margin: 45px auto 0;
}
/* -------------------------------events------------------------------ */
.events {
  padding: 120px 0;
}
.events__subtitle {
  margin-bottom: 38px;
}
.events__cards {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.events__card {
  width: calc((100% - 4 * 30px) / 4);
  margin: 15px;
  display: flex;
  flex-direction: column;
  padding: 6px 7px 25px;
  border-radius: 10px;
}
.events__card-img {
  display: flex;
  width: 100%;
  height: 170px;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 14px;
  overflow: hidden;
}
.events__card-img img {
  object-position: center;
}
.events__card-info {
  padding: 0 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 170px - 14px);
}
.events__card-title {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 14px;
}
.events__card-type {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.events__card-icon {
  font-size: 20px;
  margin-right: 9px;
  line-height: 20px;
}
.events__card-icon.c-yellow {
  font-size: 16px;
}
.events-type {
  line-height: 162%;
  display: flex;
}
.events__price {
  line-height: 162%;
  margin-left: auto;
}
.events__card-time {
  display: flex;
  justify-content: space-between;
}
.events-time {
  font-size: 14px;
  display: flex;
  width: max-content;
}
.events-time span:first-child {
  margin-right: 9px;
}
.events__card-btn {
  margin: 17px auto 0;
}
.events__card-bottom {
  margin-top: auto;
}
.events__btn {
  margin: 45px auto 0;
}
/* -------------------------------why------------------------------ */
.why {
  padding: 120px 0 165px;
  overflow: hidden;
}
.why__container {
  position: relative;
}
.why__title {
  margin-bottom: 56px;
}
.why__blocks {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}
.why__block-info {
  width: calc(100% - 670px - 2 * 30px);
  margin: 0 15px;
}
.why__block-info-li {
  display: flex;
  flex-direction: column;
}
.why__block-info-li:not(:last-child) {
  margin-bottom: 40px;
}
.why__block-title {
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 20px;
}
.why__block-text {
  max-width: 371px;
}
.why__block-video {
  width: 670px;
  height: 400px;
  margin: 0 15px;
  position: relative;
}
.why__block-video img {
  border-radius: 20px;
  overflow: hidden;
}
.why__block-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video__info-box {
  position: absolute;
  left: 50%;
  bottom: -39px;
  transform: translateX(-50%);
  box-shadow: 0px 40px 30px -30px rgba(77, 80, 97, 0.2);
  border-radius: 20px;
  padding: 15px 40px;
  display: flex;
  align-items: center;
}
.video__info-box li {
  display: flex;
  align-items: center;
}
.video__info-box li:first-child {
  padding-right: 55px;
}
.video__info-box li:last-child {
  padding-left: 51px;
  border-left: 1px solid var(--c-white);
}
.video__info-box-number {
  font-size: 36px;
  margin-right: 20px;
}
.video__info-box-text {
  font-size: 18px;
  line-height: 144%;
}
.why-img__bg1 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/gray_dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -154px;
  top: -321px;
  z-index: -1;
}
.why-img__bg2 {
  width: 261px;
  height: 261px;
  background: url(../img/icons/gray_elips_50pt_261x261.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 52px;
  top: -250px;
  z-index: -1;
}
.why-img__bg3 {
  width: 261px;
  height: 261px;
  background: url(../img/icons/gray_elips_50pt_261x261.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -295px;
  bottom: -119px;
  z-index: -1;
}
.why-img__bg4 {
  width: 130px;
  height: 130px;
  background: url(../img/icons/gree_circle_lines.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -56px;
  bottom: -231px;
  z-index: -1;
}
.why-img__bg5 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -221px;
  bottom: -154px;
  z-index: -1;
}
/* -------------------------------footer------------------------------ */
.steps {
  padding: 133px 0 132px;
}
.steps__title {
  margin-bottom: 109px;
}
.steps__cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.step__card {
  width: calc((100% - 4 * 30px) / 4);
  margin: 0 15px;
  padding: 82px 25px 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  position: relative;
}
.step__card-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: -48px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 5px solid var(--c-green);
  box-shadow: 0px 30px 30px -20px rgba(77, 80, 97, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.step__card:not(:last-child) .step__card-icon::after {
  content: '';
  width: 176px;
  height: 11px;
  position: absolute;
  right: -191px;
  top: 11px;
  background: url(../img/Arrow-step.svg) no-repeat center center;
  background-size: contain;
}
.step__card-icon img {
  object-fit: contain;
  height: 50px;
  width: 50px;
}
.step__card__number {
  margin-bottom: 34px;
}
.step__card-text {
  font-size: 18px;
  line-height: 133%;
}
.boost__btn {
  margin: 60px auto 0;
}
/* -------------------------------reviews------------------------------ */
.reviews {
  padding: 118px 0 100px;
  background: rgba(234, 234, 234, 0.6) url(../img/review.png) no-repeat center right;
  background-size: auto 100%;
}
.reviews__slider .slick-track {
  display: flex;
  align-items: center;
}
.reviews__img {
  border-radius: 20px;
  background: var(--c-white);
  padding: 6px;
}
.reviews__img img {
  border-radius: 14px;
}
.reviews__img.slick-slide {
  transform: scale(1.1) translate(50px);
  z-index: 1;
}
.reviews__img.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.15);
  z-index: 2;
}
.reviews__img.slick-slide.slick-center + .slick-slide {
  transform: scale(1.1) translate(-50px);
  z-index: 1;
}
.reviews__img.slick-slide:not(.slick-center) {
  filter: blur(1.5px);
  z-index: 1;
}
.reviews__img.slick-slide:not(.slick-active) {
  opacity: 0;
}
.reviews__img.slick-slide.slick-active {
  box-shadow: 0px 40px 30px -30px rgba(77, 80, 97, 0.25);
}
.reviews__slider .slick-track {
  padding: 100px 0;
}
.reviews__slider .slick-slide {
  transition: all 0.2s ease-in-out;
}
.reviews__slider-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  font-size: 10px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  z-index: 3;
}
.reviews__slider-arrow.prev-arrow {
  left: 119px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.reviews__slider-arrow.next-arrow {
  right: 119px;
  top: 50%;
  transform: translateY(-50%);
}
/* -------------------------------blog------------------------------ */
.blog {
  padding: 120px 0;
  overflow: hidden;
}
.blog__container {
  position: relative;
  z-index: 1;
}
.blog__subtitle {
  margin-bottom: 43px;
}
.blog__cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.blog__card {
  width: calc((100% - 3 * 30px) / 3);
  margin: 15px;
  padding: 7px 7px 30px;
  border-radius: 20px;
}
.blog__card-top {
  position: relative;
}
.blog__card-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  border-radius: 20px 20px 0px 0px;
}
.blog__card-img {
  height: 177px;
  width: 100%;
}
.blog__card-img img {
  border-radius: 20px 20px 0px 0px;
}
.blog__card-title {
  font-size: 20px;
  line-height: 117%;
  position: absolute;
  left: 22px;
  bottom: 21px;
  max-width: calc(100% - 2 * 22px);
  z-index: 1;
}
.blog__card-bottom {
  height: calc(100% - 177px);
  padding: 21px 22px 0;
}
.blog__card-info {
  display: flex;
  justify-content: space-between;
  line-height: 175%;
  margin-bottom: 12px;
}
.blog__card-info_left {
  display: flex;
  align-items: center;
}
.news__devider {
  display: flex;
  margin: 0 8px;
}
.blog__card-info_right {
  display: flex;
  align-items: center;
}
.blog__card-info_right i {
  margin-right: 7px;
  font-size: 20px;
}
.blog__card-text {
  margin-bottom: 17px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog__card-btn {
  margin: auto auto 0;
}
.blog__btn {
  margin: 60px auto 0;
}
.blog-img__bg1 {
  width: 300px;
  height: 120px;
  background: url(../img/icons/light_green_elips_50pt_300x300.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 19px;
  top: -120px;
  z-index: -1;
}
.blog-img__bg2 {
  width: 611px;
  height: 611px;
  background: url(../img/icons/gray_dots_600x600_for_pragramm.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -347px;
  top: -131px;
  z-index: -1;
}
.blog-img__bg3 {
  width: 495px;
  height: 495px;
  background: url(../img/icons/light_green_elips_50pt_495x495.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -305px;
  bottom: -435px;
  z-index: -1;
}
.blog-img__bg4 {
  width: 611px;
  height: 611px;
  background: url(../img/icons/light_green_dots_600x600_for_pragramm.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -298px;
  top: 110px;
  z-index: -1;
}
/* -------------------------------checkbox-container------------------------------ */
.checkbox-container {
  display: flex;
  align-items: center;
}
.checkbox-container label {
  cursor: pointer;
}
.checkbox-container a:hover {
  text-decoration: underline;
}
.checkbox-custom {
  opacity: 0;
  position: absolute;
}
.checkbox-custom,
.checkbox-custom-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  line-height: 150%;
}
#popup-chekbox {
  position: absolute;
}
.checkbox-custom-label {
  padding-left: 33px;
}
.checkbox-custom-label:before,
.checkbox-custom + .checkbox-custom-label:before {
  content: '';
  background: var(--c-white);
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 2px;
  /*! transform: translateY(-50%); */
}
.checkbox-custom-label.checked:after,
.checkbox-custom:checked + .checkbox-custom-label:after {
  content: '';
  display: flex;
  width: 14px;
  height: 14px;
  /*! transform: translateY(-50%); */
  border-radius: 0px;
  position: absolute;
  z-index: 2;
  top: 5px;
  border-top: none;
  border-left: none;
  left: 3px;
  background: var(--c-green);
  border-radius: 3px;
}
.checkbox-container .wpcf7-form-control {
  display: none;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 0 !important;
  border: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: var(--c-green);
}
/* -------------------------------subscribe------------------------------ */
.subscribe {
  padding: 139px 0 61px;
  position: relative;
}
.subscribe:before {
  content: ' ';
  width: calc((100vw - var(--container)) / 2);
  height: 100%;
  background: var(--c-light-green);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.subscribe:after {
  content: ' ';
  width: 100vw;
  height: 100%;
  background: url(../img/icons/bg_subscribe.svg) no-repeat left top;
  background-size: contain;
  position: absolute;
  left: calc(50vw + 78px);
  top: 0;
  z-index: 0;
}
.subscribe__container {
  display: flex;
  align-items: center;
  margin: 0 -15px;
  position: relative;
  z-index: 1;
}
.subscribe__left {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
  padding-bottom: 78px;
}
.subscribe__subtitle {
  margin-bottom: 60px;
}
.subscribe__form {
  display: flex;
  position: relative;
  margin-bottom: 31px;
  border-radius: 30px;
}
.form-input {
  height: 60px;
  width: 100%;
  font-size: 16px;
  padding: 0 180px 0 33px;
  border: 1px solid #d1d1d1;
  border-radius: 30px;
  color: var(--c-dark);
}
.form-btn {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 170px;
  width: 170px;
  padding: 0;
}
.form-btn input {
  font-size: 18px;
  width: 100%;
  height: 100%;
}
.novalid_code,
.novalid_name,
.novalid_email,
.novalid_textarea,
.novalid_field {
  border: 1px solid #f00 !important;
}
.text-underline {
  text-decoration: underline;
}
.checkbox-container a:hover {
  color: var(--c-green);
}
.subscribe__right {
  width: calc((100% - 2 * 30px) / 2);
  margin: 0 15px;
  height: 569px;
  position: relative;
}
.subscribe__right-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 702px;
  z-index: 1;
}
.subscribe__right-img img {
  object-fit: contain;
}
.plant-img {
  position: absolute;
  width: 242px;
  height: 313px;
  left: 16px;
  top: 202px;
  background: url(../img/Plant.svg) no-repeat center;
  background-size: contain;
  z-index: -0;
}
.subscribe-img__bg1 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 27px;
  z-index: 0;
}
.subscribe-img__bg2 {
  width: 462px;
  height: 462px;
  background: url(../img/icons/dots_460x460.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -351px;
  top: -139px;
  z-index: -1;
}
.subscribe-img__bg3{
  display: none;
}
/* -------------------------------footer------------------------------ */
.footer {
  padding: 30px 0;
  margin-top: auto;
}
.footer__top {
  display: flex;
  align-items: center;
  padding: 30px 0;
  margin: 0 -15px;
}
.footer__top-left {
  height: 50px;
  width: 200px;
  margin: 0 15px;
  display: flex;
  justify-content: flex-start;
}
.footer__logo {
  object-fit: contain;
  object-position: left;
}
.footer__logo img {
  object-fit: contain;
  object-position: left;
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 2 * 200px - 3 * 30px));
}
.footer__menu li {
  padding: 0 15px;
}
.footer__menu li a {
  font-size: 18px;
  line-height: 100%;
  display: flex;
}
.footer__menu li:not(:last-child) {
  border-right: 1px solid var(--c-white);
}
.footer__socials {
  width: 200px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__socials li:not(:last-child) {
  margin-right: 20px;
}
.footer__socials a {
  font-size: 35px;
  line-height: 35px;
  width: 35px;
  height: 35px;
  display: flex;
}
.footer__socials a:hover {
  color: var(--c-green);
}
.footer__bottom {
  width: 100%;
  padding: 15px 0;
  line-height: 288%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-white);
}
.design-link:hover {
  color: var(--c-green);
}
/* --------------------scroll-top__btn------------------ */
.scroll-top__btn {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  right: 16px;
  bottom: -100px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px rgba(77, 80, 97, 0.2);
  transform: rotate(-90deg);
}
.scroll-top__btn.up {
  bottom: 16px;
}
/* -------------------------------nav-links--------------------------- */
.nav-links {
  margin: 45px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prev.page-numbers,
.next.page-numbers {
  background: var(--c-white);
  color: var(--c-green);
  border: 1px solid var(--c-green);
  border-radius: 50%;
  font-size: 12px;
}
.page-numbers {
  margin: 0 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.prev.page-numbers.not-active,
.next.page-numbers.not-active {
  color: #d1d1d1;
  border: 1px solid #d1d1d1;
}
.page-numbers.current {
  color: var(--c-green);
}
/* -------------------thanks__popup------------------ */
.thanks__popup {
  position: fixed;
  left: 0;
  top: -100vh;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4d5061a3;
  transition: all 0.2s ease;
}
.thanks__popup.show {
  top: 0;
}
.thanks__popup-inner {
  width: 570px;
  height: 300px;
  padding: 58px 20px 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  position: relative;
}
.thanks__popup-img {
  width: 60px;
  height: 50px;
  margin-bottom: 30px;
}
.thanks__popup-title {
  font-size: 24px;
  line-height: 1;
}
.thanks__popup-subtitle p {
  font-size: 16px;
  line-height: 24px;
}
.thanks__popup-subtitle p:nth-child(1) {
  margin-bottom: 5px;
}
.thanks__popup-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.thanks__popup-close span {
  width: 26px;
  height: 2px;
  background: rgba(209, 209, 209, 1);
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
}
.thanks__popup-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.thanks__popup-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.thanks__popup-img img {
  object-fit: contain;
}
/* ----------------------------------- */
.submit_again_code{
  margin: 30px auto 0;
}