@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5.3333333333px;
  background: #7ab933;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(95.6355932203, 145.0211864407, 39.9788135593);
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #EEEEEE;
  background: white;
  border-radius: 16px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #7ab933;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #7ab933;
  background: rgba(122, 185, 51, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #7ab933;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 16px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #EEEEEE;
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  line-height: 1.5;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}

.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #EEEEEE;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #7ab933;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #7ab933;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #7ab933;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 1200px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #7ab933;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #EEEEEE;
  color: #7ab933;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #7ab933;
  background: rgba(122, 185, 51, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #7ab933;
  background: rgba(122, 185, 51, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.cms-img-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-img-content {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-img-content__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__container {
    width: 100%;
  }
}
.cms-img-content__item {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item {
    flex-direction: column !important;
  }
}
.cms-img-content__item:hover .cms-img-content__item-text {
  background: #7ab933;
  color: white;
}
.cms-img-content__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cms-img-content__item-img {
  width: calc(50% - 5px);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cms-img-content__item-img {
    width: 100%;
  }
}
.cms-img-content__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
}
.cms-img-content__item-text {
  width: calc(50% - 5px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  font-size: 18px;
  background: rgba(122, 185, 51, 0.03);
  border-radius: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cms-img-content__item-text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.cms-img-content__item-text h1,
.cms-img-content__item-text h2,
.cms-img-content__item-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item-text h1,
  .cms-img-content__item-text h2,
  .cms-img-content__item-text h3 {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #1f1f1f;
  background: #f7f7f7;
}

a {
  color: #1f1f1f;
  transition: color 0.3s ease;
}
a:hover {
  color: #7ab933;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.title-main {
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media (max-width: 480px) {
  .title-main {
    gap: 5px;
  }
}
.title-main h3 {
  font-size: 46px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .title-main h3 {
    font-size: 32px;
  }
}
.title-main span {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .title-main span {
    font-size: 16px;
  }
}

.title-mini {
  max-width: 700px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: auto;
}
@media (max-width: 480px) {
  .title-mini {
    font-size: 24px;
  }
}
.title-mini span {
  color: #7ab933;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  top: -15px;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(122, 185, 51, 0.062745098), transparent);
}
@media (max-width: 480px) {
  .header {
    top: 0;
    padding: 10px;
  }
}
.header__container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 480px) {
  .header__container {
    align-items: center;
    gap: 10px;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  max-width: 245px;
  max-height: 140px;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 60px;
  }
}
.header__nav {
  width: 100%;
  height: 60px;
  display: flex;
  border-radius: 60px;
  background: #4e5d73;
  border: 1px solid #5f799f;
  align-items: center;
}
@media (max-width: 480px) {
  .header__nav {
    height: auto;
    padding: 5px;
    width: max-content;
  }
}
.header__menu {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
@media (max-width: 480px) {
  .header__menu {
    position: absolute;
    top: 75px;
    left: 10px;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    width: calc(100% - 20px);
    background: white;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    max-height: 0;
    transform: translateY(-20px);
  }
  .header__menu.active {
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
    transform: translateY(0);
  }
}
.header__menu li {
  display: flex;
}
.header__menu a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.header__menu a:hover {
  color: #7ab933;
}
@media (max-width: 480px) {
  .header__menu a {
    width: 100%;
    padding: 10px 0;
  }
}
.header__lang {
  display: flex;
  height: 45px;
  border-radius: 45px;
  align-items: center;
  background: #7ab933;
  margin-right: 5px;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .header__lang {
    height: 35px;
    padding: 0 10px;
  }
}
.header__lang li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__lang li::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #090D16;
  margin-right: 5px;
}
.header__lang li:last-child::after {
  display: none;
}
.header__lang a {
  display: flex;
  color: #090D16;
  font-weight: 300;
  text-transform: uppercase;
}
.header__lang a.active {
  font-weight: 700;
}
.header__search {
  display: flex;
  position: relative;
}
.header__search-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-right: 5px;
  font-size: 18px;
}
.header__search-button:hover {
  background: #7ab933;
  color: #090D16;
}
@media (max-width: 480px) {
  .header__search-button {
    width: 35px;
    height: 35px;
  }
}
.header__search-form {
  position: absolute;
  right: 0;
  top: 45px;
  width: 300px;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .header__search-form {
    width: calc(100vw - 20px);
    right: -40px;
  }
}
.header__search-form.active {
  top: 65px;
  visibility: visible;
  opacity: 1;
  max-height: 100vh;
}
@media (max-width: 480px) {
  .header__search-form.active {
    top: 55px;
  }
}
.header__search-form input {
  width: 100%;
  outline: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #EEEEEE;
}
.header__search-form button {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 18px;
  position: absolute;
  color: #7ab933;
}
.header__mobile {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #090D16;
  color: white;
  font-size: 18px;
}
@media (max-width: 480px) {
  .header__mobile {
    display: flex;
  }
}

.hero {
  width: 100%;
  margin-top: -200px;
  margin-bottom: 100px;
  background: #0D0404;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .hero {
    margin-top: -80px;
    margin-bottom: 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    margin-top: -80px;
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    margin-top: -80px;
    margin-bottom: 50px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 9;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 250px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__slider-item {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .hero__slider-item {
    aspect-ratio: 1/1;
  }
}
.hero__slider-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  pointer-events: none;
}
.hero__slider-item video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  pointer-events: none;
  object-fit: cover;
}
.hero__slider-item .button--location {
  position: absolute;
  bottom: 30px;
  left: 30px;
  pointer-events: none;
}
.hero__arrow {
  position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.hero__arrow:hover {
  opacity: 1;
}
.hero__arrow--left {
  left: 30px;
}
.hero__arrow--right {
  right: 30px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 300;
  z-index: 99;
}
@media (max-width: 480px) {
  .hero__scroll {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll img {
  animation: animateDown 1s infinite;
}
@keyframes animateDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}
.hero__social {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  bottom: 40px;
  left: 40px;
  z-index: 99;
}
@media (max-width: 480px) {
  .hero__social {
    display: none;
  }
}
.hero__social li {
  display: flex;
}
.hero__social a {
  display: flex;
  color: white;
}

._hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  ._hero {
    margin-bottom: 50px;
    width: 100%;
    overflow: hidden;
  }
}
._hero::before {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background: #78A2FF;
  left: -300px;
  top: -300px;
  z-index: 1;
  filter: blur(200px);
  opacity: 0.2;
}
@media (max-width: 480px) {
  ._hero::before {
    display: none;
  }
}
._hero__container {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 480px) {
  ._hero__container {
    height: auto;
    flex-direction: column;
  }
}
._hero__text {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  ._hero__text {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
    padding: 20px 10px;
    order: 2;
  }
}
._hero__text--ghost {
  z-index: 3;
}
@media (max-width: 480px) {
  ._hero__text--ghost {
    display: none;
  }
}
._hero__text--ghost .hero__text-title {
  color: transparent;
  -webkit-text-stroke: 1px white;
}
._hero__text--ghost .hero__text-description {
  opacity: 0;
}
._hero__text-title {
  display: flex;
  flex-direction: column;
  font-size: 140px;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
}
@media (max-width: 480px) {
  ._hero__text-title {
    font-size: 60px;
  }
}
._hero__text-title span {
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(45deg, #7fb83b, #f17e2b, #f7b229);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
._hero__text-title span:first-child {
  margin-left: 40px;
}
@media (max-width: 480px) {
  ._hero__text-title span:first-child {
    margin: 0;
  }
}
._hero__text-title span:last-child {
  margin-top: -20px;
}
@media (max-width: 480px) {
  ._hero__text-title span:last-child {
    margin: 0;
  }
}
._hero__text-description {
  width: 615px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  ._hero__text-description {
    width: 100%;
  }
}
._hero__products {
  width: 585px;
  height: 100%;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
}
@media (max-width: 480px) {
  ._hero__products {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    order: 1;
  }
}
._hero__products::before {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background: #7ab933;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(200px);
  opacity: 0.2;
}
@media (max-width: 480px) {
  ._hero__products::before {
    display: none;
  }
}
._hero__products-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transform: translateY(-100%) rotate(0deg);
}
._hero__products-img--1 {
  width: 80%;
  transform: rotate(15deg);
  left: 0%;
  bottom: 5%;
  z-index: 3;
  animation: drop_1 1s ease-out forwards, float_1 10s ease-in-out infinite 1s;
}
@keyframes drop_1 {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) rotate(15deg);
    opacity: 1;
  }
}
@keyframes float_1 {
  0% {
    transform: translateY(0%) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
  100% {
    transform: translateY(0%) rotate(15deg);
  }
}
._hero__products-img--2 {
  width: 50%;
  transform: rotate(-15deg);
  right: 0%;
  bottom: 50%;
  z-index: 2;
  filter: blur(2.5px);
  animation: drop_and_float_2 1s ease-out forwards, float_2 15s ease-in-out infinite 1s;
}
@keyframes drop_and_float_2 {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) rotate(-15deg);
    opacity: 1;
  }
}
@keyframes float_2 {
  0% {
    transform: translateY(0%) rotate(-15deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
  100% {
    transform: translateY(0%) rotate(-15deg);
  }
}
._hero__products-img--3 {
  width: 25%;
  transform: rotate(-24deg);
  left: 10%;
  bottom: 65%;
  z-index: 1;
  filter: blur(5px);
  animation: drop_and_float_3 1s ease-out forwards, float_3 20s ease-in-out infinite 1s;
}
@keyframes drop_and_float_3 {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) rotate(-24deg);
    opacity: 1;
  }
}
@keyframes float_3 {
  0% {
    transform: translateY(0%) rotate(-24deg);
  }
  50% {
    transform: translateY(-15px) rotate(-20deg);
  }
  100% {
    transform: translateY(0%) rotate(-24deg);
  }
}

.products {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
  position: relative;
}
@media (max-width: 480px) {
  .products {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.products__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .products__container {
    gap: 20px;
  }
}
.products__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.products__slider-wrapper {
  width: 100%;
  display: flex;
}
.products__slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #7ab933;
  border: 1px solid #7ab933;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}
@media (max-width: 480px) {
  .products__slider .arrow {
    display: none;
  }
}
.products__slider .arrow:hover {
  background: #7ab933;
  color: #090D16;
}
.products__slider .arrow--left {
  left: 15px;
}
.products__slider .arrow--right {
  right: 15px;
}
.products__pagination {
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .products__pagination {
    margin-top: 0;
  }
}
.products__pagination span {
  margin: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  border: 1px solid #7ab933;
}
.products__pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #7ab933;
}

.product {
  width: 100%;
  height: initial;
  aspect-ratio: 380/335;
  overflow: hidden;
  position: relative;
  display: flex;
}
.product:hover i {
  background: #7ab933 !important;
  color: #090D16 !important;
  right: 0;
  top: 0;
}
.product:hover h2 {
  background: #7ab933;
  color: #090D16;
}
.product i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #7ab933;
  color: #7ab933;
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product h2 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  background: #7ab933;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='380' height='335' viewBox='0 0 380 335' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 315V20C0 8.95431 8.9543 0 20 0H306C317.046 0 326 8.9543 326 20V33.5C326 44.5457 334.954 53.5 346 53.5H360C371.046 53.5 380 62.4543 380 73.5V315C380 326.046 371.046 335 360 335H20C8.95431 335 0 326.046 0 315Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='380' height='335' viewBox='0 0 380 335' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 315V20C0 8.95431 8.9543 0 20 0H306C317.046 0 326 8.9543 326 20V33.5C326 44.5457 334.954 53.5 346 53.5H360C371.046 53.5 380 62.4543 380 73.5V315C380 326.046 371.046 335 360 335H20C8.95431 335 0 326.046 0 315Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: rgba(255, 255, 255, 0.1019607843);
  transition: all 0.3s ease;
}
.product img:hover {
  background: rgba(122, 185, 51, 0.1411764706);
  backdrop-filter: blur(5px);
}

.companies {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .companies {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.companies__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .companies__container {
    gap: 20px;
  }
}
.companies__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.companies__slider-wrapper {
  width: 100%;
  display: flex;
}
.companies__slider .arrow {
  position: absolute;
  top: 65px;
  color: #7ab933;
  border: 1px solid #7ab933;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}
@media (max-width: 480px) {
  .companies__slider .arrow {
    display: none;
  }
}
.companies__slider .arrow:hover {
  background: #7ab933;
  color: #090D16;
}
.companies__slider .arrow--left {
  left: 15px;
}
.companies__slider .arrow--right {
  right: 15px;
}
.companies__pagination {
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .companies__pagination {
    margin-top: 0;
  }
}
.companies__pagination span {
  margin: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  border: 1px solid #7ab933;
}
.companies__pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #7ab933;
}

.company {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 300px;
}
.company img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 16px;
  background: white;
}
.company span {
  font-size: 18px;
  font-weight: 600;
}

.video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .video {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.video__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .video__container {
    gap: 20px;
  }
}
.video__player {
  width: 100%;
  max-width: 980px;
  border-radius: 16px;
  padding: 30px;
  background: #4e5d73;
  display: flex;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 480px) {
  .video__player {
    padding: 20px;
  }
}
.video__player:hover i {
  background: #090D16;
  color: #7ab933;
}
.video__player:hover img {
  box-shadow: 0 0 20px 5px rgba(122, 185, 51, 0.3137254902);
}
.video__player video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.video__player-slider {
  display: flex;
  overflow: hidden;
}
.video__player-slider-wrapper {
  width: 100%;
  display: flex;
}
.video__player-pagination {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 99;
}
@media (max-width: 480px) {
  .video__player-pagination {
    bottom: 20px !important;
  }
}
.video__player-pagination span {
  padding: 0 !important;
  margin: 0 3px !important;
  opacity: 1 !important;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: white;
  transition: all 0.3s ease;
}
.video__player-pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #7ab933;
}

.home-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .home-menu {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.home-menu__container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .home-menu__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.home-menu__item {
  width: 100%;
  height: auto;
  aspect-ratio: 585/260;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .home-menu__item {
    aspect-ratio: initial;
    padding: 20px;
  }
}
.home-menu__item:hover i {
  right: 0;
  top: 0;
  border: 1px solid #7ab933 !important;
  background: #7ab933 !important;
  color: #090D16 !important;
}
.home-menu__item--career {
  color: #090D16;
}
@media (max-width: 480px) {
  .home-menu__item--career {
    background: white;
    border-radius: 16px;
  }
}
.home-menu__item--career:hover {
  color: #090D16;
}
.home-menu__item--career:hover .home-menu__item-img {
  height: 300px;
}
.home-menu__item--career .home-menu__item-img {
  left: -10px;
  height: 285px;
}
@media (max-width: 480px) {
  .home-menu__item--catalog {
    border: 1px solid #7ab933;
    border-radius: 16px;
  }
}
.home-menu__item--catalog:hover {
  color: #1f1f1f;
}
.home-menu__item--catalog:hover .home-menu__item-img img {
  transform: rotate(-15deg);
}
.home-menu__item--catalog .home-menu__item-img {
  width: 190px;
  height: 280px;
  overflow: hidden;
  display: flex;
  left: 3px;
}
.home-menu__item--catalog .home-menu__item-img img {
  width: 155px;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  transform: rotate(-20deg);
  position: absolute;
  top: 20px;
  transition: all 0.3s ease;
}
.home-menu__item-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  transition: all 0.3s ease;
}
.home-menu__item-img img {
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .home-menu__item-img {
    display: none !important;
  }
}
.home-menu__item-text {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 330px;
}
@media (max-width: 480px) {
  .home-menu__item-text {
    width: 100%;
    max-width: 100%;
    position: relative;
    transform: initial;
    top: initial;
    right: initial;
  }
}
.home-menu__item-text h3 {
  font-size: 32px;
  font-weight: 600;
}
.home-menu__item-text span {
  font-weight: 300;
  opacity: 0.6;
}
.home-menu__item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #7ab933;
  color: #7ab933;
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .home-menu__item i {
    display: none;
  }
}
.home-menu__item svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
  .home-menu__item svg {
    display: none;
  }
}
.home-menu__item svg path {
  transition: all 0.3s ease;
}

.journey {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .journey {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.journey__container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .journey__container {
    gap: 20px;
  }
}
.journey__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.journey__item {
  width: 100%;
  position: relative;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .journey__item {
    flex-direction: column;
  }
}
.journey__item:hover::after {
  border-color: #7ab933;
}
.journey__item:hover .journey__item-date {
  font-size: 36px;
}
.journey__item:hover .journey__item-text {
  font-size: 22px;
}
.journey__item:first-child {
  padding-top: 0;
}
.journey__item:first-child::before {
  top: 10px;
}
.journey__item:first-child::after {
  top: 15px;
}
.journey__item:last-child {
  padding-bottom: 0;
}
.journey__item:last-child::before {
  height: 30px;
}
.journey__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 480px) {
  .journey__item:nth-child(even) {
    flex-direction: column;
  }
}
.journey__item:nth-child(even) .journey__item-date {
  text-align: left;
}
.journey__item:nth-child(even) .journey__item-text {
  text-align: right;
}
@media (max-width: 480px) {
  .journey__item:nth-child(even) .journey__item-text {
    text-align: left;
  }
}
.journey__item::before {
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, white 5px, transparent 5px);
  background-size: 100% 10px;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  opacity: 0.1;
  border-radius: 1px;
}
@media (max-width: 480px) {
  .journey__item::before {
    left: 10px;
  }
}
.journey__item::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 5px solid white;
  content: "";
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item::after {
    left: 0px;
    transform: translate(0, -50%);
  }
}
.journey__item-date {
  width: 50%;
  padding: 0 40px;
  text-align: right;
  font-size: 26px;
  font-weight: 700;
  color: #7ab933;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item-date {
    width: 100%;
    text-align: left;
    padding: 0 0 0 40px;
    font-size: 26px !important;
  }
}
.journey__item-text {
  width: 50%;
  padding: 0 40px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item-text {
    width: 100%;
    padding: 0 0 0 40px;
  }
}

.numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .numbers {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.numbers__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .numbers__container {
    gap: 20px;
  }
}
.numbers__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .numbers__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.number {
  width: 100%;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}
.number:hover {
  border-color: #7ab933;
}
.number i {
  font-size: 55px;
}
.number__text {
  display: flex;
  flex-direction: column;
}
.number__text h5 {
  font-size: 36px;
  color: #7ab933;
  font-weight: 700;
}
.number__text h6 {
  font-size: 22px;
  font-weight: 600;
}
.number__text > span {
  font-weight: 300;
  opacity: 0.6;
}

.blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}
@media (max-width: 480px) {
  .blogs {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.blogs__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .blogs__container {
    gap: 20px;
  }
}
.blogs__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.blogs__slider-wrapper {
  width: 100%;
  display: flex;
}
.blogs__slider .arrow {
  position: absolute;
  top: 130px;
  color: #7ab933;
  border: 1px solid #7ab933;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}
@media (max-width: 480px) {
  .blogs__slider .arrow {
    display: none;
  }
}
.blogs__slider .arrow:hover {
  background: #7ab933;
  color: #090D16;
}
.blogs__slider .arrow--left {
  left: 15px;
}
.blogs__slider .arrow--right {
  right: 15px;
}
.blogs__pagination {
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .blogs__pagination {
    margin-top: 0;
  }
}
.blogs__pagination span {
  margin: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  border: 1px solid #7ab933;
}
.blogs__pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #7ab933;
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog:hover i {
  background: #7ab933;
  color: #090D16;
  right: 0;
  top: 0;
}
.blog__img {
  width: 100%;
  height: auto;
  aspect-ratio: 380/285;
  overflow: hidden;
  position: relative;
}
.blog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='380' height='285' viewBox='0 0 380 285' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 265V20C0 8.95431 8.9543 0 20 0H306C317.046 0 326 8.9543 326 20V33.5C326 44.5457 334.954 53.5 346 53.5H360C371.046 53.5 380 62.4543 380 73.5V265C380 276.046 371.046 285 360 285H20C8.95431 285 0 276.046 0 265Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='380' height='285' viewBox='0 0 380 285' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 265V20C0 8.95431 8.9543 0 20 0H306C317.046 0 326 8.9543 326 20V33.5C326 44.5457 334.954 53.5 346 53.5H360C371.046 53.5 380 62.4543 380 73.5V265C380 276.046 371.046 285 360 285H20C8.95431 285 0 276.046 0 265Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.blog__img i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #7ab933;
  color: #7ab933;
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
.blog__text-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog__text-info a {
  color: #7ab933;
  font-weight: 600;
}
.blog__text-info span {
  font-weight: 300;
  opacity: 0.6;
}
.blog__text h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog__text span {
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.6;
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  color: white;
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
}
@media (max-width: 480px) {
  .footer__top {
    padding: 40px 10px;
    gap: 20px;
    flex-direction: column;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu h6 {
  font-size: 18px;
  font-weight: 600;
  color: #7ab933;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  display: flex;
  font-weight: 300;
  color: white;
}
.footer__contact {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
}
@media (max-width: 480px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact a {
  color: white;
}
.footer__middle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
}
@media (max-width: 480px) {
  .footer__middle {
    padding: 30px 10px;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
  }
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  max-height: 80px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #7ab933;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background: #8fd049;
  color: #090D16;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .footer__bottom {
    padding: 30px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.footer__copyright {
  max-width: 580px;
  line-height: 1.6;
}
.footer__oyos a {
  color: #7ab933;
  text-decoration: underline;
}
.footer__oyos a:hover {
  text-decoration: none;
}

.cursor {
  width: 400px;
  height: 400px;
  background: #7ab933;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.1;
  filter: blur(100px);
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .cursor {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
