@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap-reboot.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap-grid.min.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  /* font-family: "Roboto", sans-serif;*/
}

p {
  font-size: 16px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

a, button {
  transition: all 0.5s ease-in-out;
}

/*mobile*/
.mobile-menu {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 82, 33, 0.3);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 25;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu__container {
  width: 72%;
  height: 100%;
  padding: 25px 15px;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
}
.mobile-menu__container.is-active {
  transform: translateX(0);
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .button-class {
  width: 100%;
}

.mobile-logo {
  display: block;
  margin: 15px auto;
}

.mobile-button {
  background-color: #005221;
  border: none;
  outline: none;
  padding: 10px;
  display: none;
}
.mobile-button svg {
  width: 28px;
  color: #fff;
}

.close-mobile {
  background-color: transparent;
  border: none;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 10px;
}
.close-mobile svg {
  height: 25px;
}

.mobile-nav li {
  margin-bottom: 10px;
}
.mobile-nav li a {
  display: block;
  color: #333;
  font-size: 18px;
}

.vertical-style {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.contact-element {
  display: block;
  color: #333;
  margin-bottom: 15px;
}

.contact-list {
  display: flex;
  margin-bottom: 15px;
}
.contact-list li {
  margin-left: 10px;
}
.contact-list li:first-child {
  margin-left: 0;
}
.contact-list li a {
  display: block;
}
.contact-list li a svg {
  height: 30px;
  fill: #005221;
}

/*mobile end*/
.wrapper-hidden {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.right-image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  opacity: 0.8;
}

.left-bg {
  width: 520px;
  height: 525px;
  background-color: #fdfbec;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.z-index-10 {
  position: relative;
  z-index: 10;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu {
  display: flex;
}
.menu li {
  margin-left: 60px;
}
.menu li:first-child {
  margin-left: 0;
}
.menu li a {
  color: #000;
  font-size: 16px;
}
.menu li a:hover {
  color: #005221;
}
.menu-right {
  width: 360px;
  justify-content: flex-end;
}

.logo {
  height: 68px;
}

@media screen and (max-width: 992px) {
  .mobile-button {
    display: block;
  }
  .menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .right-image {
    width: 50%;
    height: 50%;
    right: 0;
    top: 50%;
    z-index: 2;
  }
  .left-bg {
    width: 50%;
    height: 50%;
    left: 0;
    top: 0;
    z-index: 3;
  }
}
.main-title {
  line-height: 81px;
  font-size: 58px;
  color: #005221;
  margin-top: 33vh;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.main-title span {
  font-size: 24px;
  font-weight: 300;
  line-height: 39px;
  color: #000;
  position: absolute;
  right: 33px;
  top: -36px;
}

.second-title {
  font-size: 26px;
  margin-bottom: 13px;
}
.second-title strong {
  color: #005221;
}

.button-block {
  display: flex;
  margin-top: 30px;
}

.button-class {
  display: inline-block;
  background-color: #fbb900;
  color: #fff;
  font-size: 18px;
  padding: 11px 43px;
}
.button-class:hover {
  background-color: #c89300;
}

.button-class-transparent {
  background-color: transparent;
  color: #000;
  font-size: 18px;
  padding: 11px 43px;
  margin-left: 20px;
}
.button-class-transparent:hover {
  color: #005221;
}

.numbers-block {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}

.number-element {
  width: 50%;
  margin-bottom: 40px;
}
.number-element__caption {
  color: #005221;
  font-size: 27px;
  font-weight: 600;
}
.number-element__desc {
  font-size: 14px;
}

.display-lg {
  display: block;
}

@media screen and (max-width: 992px) {
  .display-lg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 42px;
    line-height: 50px;
    margin-top: 65px;
  }
  .main-title span {
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .main-title {
    font-size: 28px;
    line-height: 35px;
  }
  .main-title span {
    font-size: 16px;
  }
  .second-title {
    font-size: 16px;
  }
  .button-class {
    width: 50%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }
  .button-class-transparent {
    width: 50%;
    margin-left: 0;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }
  .numbers-block {
    width: 100%;
  }
}
.purpose-screen {
  background-color: #fdfbec;
  padding: 105px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.purpose-screen__bg {
  width: 1000px;
  height: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
  z-index: 1;
  animation: 5s ease-in 0s infinite slidein;
}

.purpose-item-left {
  color: #005221;
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 133px;
  position: relative;
  z-index: 2;
}
.purpose-item-left__img {
  position: absolute;
  left: -21px;
  top: -54px;
  z-index: -1;
  pointer-events: none;
}

.purpose-item-right {
  font-size: 21px;
  font-weight: 300;
  margin-top: 85px;
  position: relative;
  z-index: 2;
}

.author-block {
  background-color: #fff;
  padding: 30px 75px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.author-block__left {
  width: 200px;
}
.author-block__left img {
  display: block;
  margin: 0 auto;
}
.author-block__left h3 {
  color: #005221;
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  margin-top: 15px;
}
.author-block__left p {
  font-size: 18px;
  color: #333;
  text-align: center;
}
.author-block__right {
  width: calc(100% - 400px);
  font-size: 20px;
}

@keyframes slidein {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 1200px) {
  .author-block__right {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 768px) {
  .purpose-item-left {
    font-size: 22px;
    margin-bottom: 0;
  }
  .purpose-item-right {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 70px;
  }
  .author-block {
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
  }
  .author-block__right, .author-block__left {
    width: 100%;
  }
}
.second-main-title {
  color: #005221;
  font-size: 29px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.second-main-title img {
  position: absolute;
  left: -26px;
  top: -43px;
  z-index: -1;
  pointer-events: none;
}

.margin-y-4 {
  padding-top: 80px;
}

.elements-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 120px;
}

.list-element {
  width: 25%;
  border-left: 3px solid #fbb900;
  padding-left: 20px;
  position: relative;
  padding-right: 40px;
}
.list-element__img {
  width: 23px;
  height: 55px;
  position: absolute;
  left: -13px;
  top: -60px;
}
.list-element__caption {
  color: #005221;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.list-element__text {
  font-size: 18px;
  font-weight: 300;
}

@media screen and (max-width: 992px) {
  .list-element {
    width: 50%;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .list-element {
    width: 100%;
    padding-right: 10px;
  }
}
.advantages {
  margin: 80px 0 0 0;
}
.advantages__bg {
  background-color: #fdfbec;
  padding: 80px 0;
}

.advantages-item {
  display: flex;
  align-items: flex-start;
  margin: 30px 0;
}
.advantages-item__img {
  width: 60px;
  margin-right: 35px;
}
.advantages-item__title {
  color: #005221;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bg-block {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .bg-block {
    height: 150px;
  }
}
.achievements {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.achievements__bg {
  width: 139px;
  position: absolute;
  right: -600px;
  top: 200px;
  left: 0;
  z-index: -1;
  margin: auto;
}

.sub-title-h4 {
  margin-top: 60px;
  line-height: 32px;
  font-size: 21px;
  font-weight: 600;
  color: #005221;
}

.help-block {
  margin-top: 40px;
}
.help-block__title {
  font-size: 21px;
  font-weight: 600;
  color: #005221;
  margin-bottom: 10px;
}
.help-block__list {
  padding-right: 45px;
}
.help-block__list li {
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}
.help-block__list li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background-color: #fbb800;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 768px) {
  .achievements__bg {
    left: unset;
    right: 45px;
  }
}
.join-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.join-element {
  width: 175px;
  height: 118px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.join-element__img {
  height: 60px;
  margin-bottom: 10px;
}
.join-element__hide {
  width: 280px;
  font-size: 13px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 138px;
  margin: auto;
  z-index: 3;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.join-element:hover .join-element__hide {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .join-element {
    width: 100%;
    text-align: center;
  }
}
.progress {
  background-color: #fdfbec;
  padding: 80px 0;
}

.progress-desc {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 300;
}

.progress-list {
  border-left: 1px solid #ddd;
}
.progress-list li {
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
  padding-left: 50px;
}
.progress-list li::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fbb800;
  border-radius: 50%;
  position: absolute;
  left: -12px;
}

.img-style-default {
  display: block;
  max-width: 100%;
}

.progress-img {
  margin-bottom: 25px;
}

.partners {
  margin: 80px 0;
}

.partners-list {
  margin: 80px 0;
}

.style-partners-list .slick-arrow {
  background-color: #fbb900;
  width: 35px;
  height: 35px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}
.style-partners-list .slick-arrow svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.style-partners-list .slick-right {
  right: -25px;
}
.style-partners-list .slick-left {
  left: -25px;
}

@media screen and (max-width: 992px) {
  .partners-list {
    margin: 20px 0;
  }
}
@media screen and (max-width: 580px) {
  .style-partners-list .slick-right {
    right: 10px;
  }
  .style-partners-list .slick-left {
    left: 10px;
  }
}
.reviews__bg {
  background-color: #fdfbec;
  padding: 80px 0;
}

.reviews-video {
  width: 100%;
  height: 276px;
  display: block;
}

.row-border {
  margin-top: 65px;
  border-top: 3px solid #fbb900;
  border-bottom: 3px solid #fbb900;
}

.contact-block {
  margin: 80px 0;
}

.registration-page {
  min-height: 75vh;
}

.feedback-form {
  position: relative;
}
.feedback-form__img {
  height: 451px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.feedback-form input {
  width: 70%;
  height: 50px;
  background-color: rgb(253, 251, 236);
  padding: 0 25px;
  border: none;
  outline: none;
  margin-bottom: 20px;
}
.feedback-form button {
  margin-top: 15px;
  background-color: #fbb900;
  color: #fff;
  font-size: 18px;
  padding: 11px 43px;
  border: none;
  outline: none;
}
.feedback-form button:hover {
  background-color: #c89300;
}
.feedback-form small {
  font-size: 11px;
  line-height: 11px;
}
.feedback-form small a {
  display: block;
}

.space-from-form {
  margin-top: 80px;
}

.relative {
  position: relative;
  z-index: 1;
}

.text-line {
  font-size: 21px;
  font-weight: 300;
}
.text-line strong {
  color: #005221;
}

.ended-block__bg {
  padding: 80px 0;
  background-color: #fdfbec;
}

.ended-info {
  margin-top: 60px;
  padding-left: 55px;
  border-left: 2px solid #fbb900;
}

.network-ended {
  width: 30px;
  display: block;
}

li.contact-list__left {
  margin-left: 30px;
}
li.contact-list__left:first-child {
  margin-left: 0;
}

.ended-caption h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 110px;
  color: #fff;
  text-align: center;
  background-color: rgba(84, 129, 26, 0.5);
  height: 170px;
  margin-top: 35px;
}

@media screen and (max-width: 1850px) {
  .ended-caption h2 {
    font-size: 85px;
  }
}
@media screen and (max-width: 1300px) {
  .ended-caption h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .feedback-form input {
    width: 100%;
  }
  .ended-info {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 480px) {
  .ended-caption h2 {
    font-size: 22px;
  }
}
footer {
  height: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fdfbec;
  font-size: 11px;
}
footer a {
  color: #333;
}

.up-button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}

.privacy {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  footer {
    height: auto;
    flex-direction: column;
  }
  footer div {
    margin-top: 15px;
    padding-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */