/* custom style */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  font-family: "Montserrat", sans-serif;
}

/* modal */
.modal-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(40, 92, 7, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -3;
  /* display: none; */
  opacity: 0;
}

.modal-wrapper.show {
  opacity: 1;
  z-index: 110;
}

.modal-content {
  width: 100%;
  max-width: 79.8125rem;
  padding: 2rem 3.75rem;
  border-radius: 1.25rem;
  background: #fafafc;
}

.modal-title {
  font-size: 2.25rem !important;
}

.modal-description {
  margin-bottom: 2rem !important;
}
/* modal */
.header__language-box a {
  display: flex;
  align-items: center;
  gap: 0.31rem;
  cursor: pointer;
}
.header__language-options {
  width: unset !important;
}

/* loader */

.wrapper {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 80.625rem;
  margin: 0 auto;
}

.button {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: #9a430e;
  /* text */
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  outline: none;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #bd5c21 !important;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

/* header */

/* header__contact-info */

.header__contact-info {
  height: 3.75rem;
  background: var(--Dark-Green, #2f4135);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__contact-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__contact-social,
.header__contact-details,
.header__contact-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.header__contact-social svg:hover path {
  fill: #f99900;
}

.header__phone,
.header__email,
.header__contact-social p {
  color: var(--black-white, #fff);
  /* font-family: "Poppins", sans-serif; */
  font-size: 1rem;
  font-weight: 500;
}

.header__separator {
  width: 3.5625rem;
  height: 0.125rem;
  background: var(--black-white, #fff);
}

.header__email a,
.header__phone a {
  color: var(--black-white, #fff);
  font-weight: 600;
}
/* header__contact-info */

/* header__bottom */

.header__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.header__bottom {
  transition: all 0.5s ease-in-out;
}

.header__bottom.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffffcf;
  z-index: 100;
  backdrop-filter: blur(1rem);
  transition: all 0.5s ease-in-out;
}

.header__nav .header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header__nav-link {
  color: var(--Black, #272a2f);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
}

.header__nav-link:hover {
  color: #9a430e;
}

/* language switcher nav*/
.nav-language-switcher {
  display: none;
}

/* language switcher */
.header__language-switcher {
  border-radius: 3.125rem;
  border: 1px solid #e0e3e6;
  background: var(--black-whit, #fff);
  display: flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.6875rem;
  cursor: pointer;
  position: relative;
  width: 8.5rem;
}

.header__language-button {
  background-color: transparent;
  outline: none;
  border: none;
  color: var(--gray-2 #1c232c);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.header__language-box {
  display: flex;
  align-items: center;
  gap: 0.31rem;
  cursor: pointer;
}

.header__language-box a {
  color: #1c232c;
}

.header__language-flag {
  margin-right: 0.2rem;
}

.header__language-options {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  border-radius: 3.125rem;
  border: 1px solid #e0e3e6;
  background: var(--black-whit, #fff);
  padding: 0.5rem 1rem;
  width: 100%;
  z-index: 10;
}

.header__language-option::after {
  position: absolute;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background-color: var(--black-whit, #fff);
  border-top: 1px solid #e0e3e6;
  border-left: 1px solid #e0e3e6;
  top: -0.15rem;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}

.header__language-option {
  background-color: transparent;
  border: none;
  width: 100%;
  color: var(--gray-2 #1c232c);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.header__language-switcher.active .header__arrow-icon {
  transform: rotate(180deg);
}

.header__arrow-icon {
  width: 1rem;
  height: auto;
  margin-left: 0.5rem;
}

.header__language-switcher.active .header__language-options {
  display: block;
}

.header__language-option.selected {
  background-color: #f0f0f0;
}

/* header menu icon */
.header__mobile-icon {
  display: none;
}

/* intro section */
.intro {
  width: 100%;
  position: relative;
  height: 48.1875rem;
}

/* .intro::before {
  content: url(https://ik.imagekit.io/testcloud/SultanSeeds/photo/Vector.svg?updatedAt=1726294484338);
  position: absolute;
  top: -20px;
  left: 0;
  object-fit: cover;
  width: 100%;
}
.intro::after {
  content: url(https://ik.imagekit.io/testcloud/SultanSeeds/photo/Vector.svg?updatedAt=1726294484338);
  position: absolute;
  bottom: -22px;
  left: 0;
  object-fit: cover;
  width: 100%;
} */

.video-back {
  height: 48.1875rem;
  overflow: hidden;
}

.intro .video-back video {
  width: 100%;
}

.intro-edge {
  position: absolute;
  width: 100%;
  top: -22px;
  left: 0;
}

.intro-edge-bottom {
  width: 100%;
  position: absolute;
  bottom: -23px;
}

.intro-edge img,
.intro-edge-bottom img {
  width: 100%;
}

.intro .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.intro-content {
  width: 100%;
  margin-top: 9.37rem;
}

.intro-content__title {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  max-width: 51rem;
}

.intro-content__description {
  margin: 2rem 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.intro-content__button {
  border-radius: 0.75rem;
  background: #9a430e;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 8.75rem;
}

.intro-picture {
  position: absolute;
}

.intro-picture__top {
  top: 0;
}

.intro-picture__bottom {
  bottom: 0;
}

/* about */
.about {
  /* background: url("/photo/sunflower-texture.webp"); */
  position: relative;
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 8.8rem 0 12.5rem 0;
}

.about__photo {
  position: relative;
  top: -19px;
}

.about__photo-video {
  max-width: 32rem;
  max-height: 32rem;
  overflow: hidden;
}

.about__photo-video video {
  transform: scale(2);
}

.about__content {
  max-width: 39.62rem;
}

.about__title {
  color: var(--Black, #272a2f);
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.about__description,
.about__export-info-title {
  color: var(--Black, #272a2f);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.about__description {
  margin: 2rem 0;
  width: 100%;
  max-width: 39.6rem;
}

.about__export-info-item:not(:last-child) {
  margin-bottom: 2rem;
}

.about__export-info-details {
  color: var(--Black, #272a2f);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.about__export-info-title {
  margin-bottom: 0.62rem;
}

.about__photo-image:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 13.69rem;
  top: 18.75rem;
}

.about__sub-photo {
  position: absolute;
  top: -7rem;
  right: 0;
}

/* features section*/
.features {
  background: #fafafc;
}
.features__container {
  padding: 6.25rem 0 0 0;
}

.features__title {
  color: var(--Black, #272a2f);
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.features__description {
  color: #2f3641;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-top: 1.25rem;
}

.features__items {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.features__item {
  display: flex;
  height: auto;
  min-width: 21.4375rem;
  max-width: 25.3125rem;
  min-height: 15rem;
  max-height: 15rem;
  padding: 2rem;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 1.9rem;
  align-items: flex-start;
  flex: 1 0 0;
  background-color: #fafafc;
  position: relative;
  z-index: 3;
}

.features__item::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fafafc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  /* opacity: 0; */
}

.features__item::after {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(to bottom right, #ffa46c, #0994cf);
  opacity: 0;
  left: 50%;
  top: 50%;
  transition: opacity 0.5s ease;
  z-index: -2;
  transform: translate(-50%, -50%);
}

.features__item:hover::after {
  opacity: 1;
}
.features__item:hover::before {
  opacity: 1;
}

.features__item:nth-child(3) {
  gap: 1rem;
}

.features__item-text {
  color: #272a2f;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.features__item-link {
  color: #9a430e;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  text-decoration-line: underline;
}

.features__sub-photo {
  position: relative;
}

.features__sub-photo-image {
  width: 100%;
  position: relative;
  bottom: 0;
  background-size: cover;
  background-position: top;
}

.features__sub-photo-1144-leaf {
  display: none;
  position: absolute;
  top: -5rem;
  left: 0;
}

.back__cover {
  position: absolute;
  width: 100%;
  height: 5rem;
  left: 0;
  bottom: 0;
  background-color: #fff;
}

.features__sub-photo-leaf {
  position: absolute;
  top: -5rem;
  left: 0;
  z-index: 3;
}

/* Sunflower section */
.sunflower {
  margin: 0rem 0 6.6rem 0;
}

.sunflower__title {
  color: #272a2f;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.sunflower__descr {
  color: #2f3641;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-top: 1.25rem;
}

.sunflower__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
}

.sunflower__item {
  display: flex;
  width: 25.3125rem;
  min-width: 25.3125rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  text-align: center;
}

.sunflower__item-content {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.sunflower__item-title {
  color: #272a2f;
  font-size: 1.5rem;
  font-weight: 700;
}

.sunflower__item-descr {
  color: #2f3641;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

/* quality */
.quality {
  padding-top: 13rem;
  background: url("https://ik.imagekit.io/testcloud/SultanSeeds/photo/quality.webp?updatedAt=1725041165532");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  min-height: 34rem;
}

.quality__container {
  position: relative;
}

.quality__title {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.quality__descr {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

/* working */
.working {
  margin-top: 6.75rem;
  margin-bottom: 6.25rem;
  position: relative;
}

.working__description {
  margin-bottom: 3.75rem;
}

.working__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25.3rem, 1fr));
  gap: 2rem;
}

.working__title {
  color: #272a2f;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.working__description {
  color: #2f3641;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 3.75rem;
}

.working__item-title {
  color: #272a2f;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.working__item-description {
  color: #2f3641;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.working__item-photo-icon {
  margin-bottom: 1.5rem;
}

.working__sub-photo {
  position: absolute;
  top: -15rem;
  right: -12px;
}

.working__image--top-right-1144 {
  display: none;
  position: absolute;
  top: -15rem;
  right: -12px;
}

.working__image--top-right-380 {
  display: none;
  position: absolute;
}

/* order */
.order {
  background: #fafafc;
  padding: 6.25rem 0 2rem 0;
  position: relative;
}

.order__sub-photo {
  position: absolute;
  top: -9rem;
  left: 0;
}

.order__sub-photo-leaf-1144 {
  position: absolute;
  top: 3rem;
  display: none;
}

.order__title,
.modal-title {
  color: #272a2f;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.modal-content a {
  color: #9a430e;
}

.order__description,
.modal-description {
  color: #2f3641;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 5rem;
}

.order-form {
  width: 100%;
}

.order-form a {
  color: #9a430e;
}

.order .form-control:not(:last-child),
.modal-content .form-control:not(:last-child) {
  margin-bottom: 2rem;
}

.order .form-control input,
.modal-content .form-control input,
.order-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid #e0e3e6;
  background: #fff;
  outline: none;
}

.order-form textarea {
  max-height: 8.4rem;
  resize: none;
}

.order-form input,
.order-form textarea,
.order-form textarea::placeholder,
.order-form input::placeholder {
  color: #99a0a8;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
}

.terms-checkbox .checkbox-control {
  display: inline-flex;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
}

.terms-checkbox .checkbox-control:not(:last-child) {
  margin-bottom: 2rem;
}

.terms-checkbox input {
  width: unset !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
}

.form-actions button {
  border-radius: 0.75rem;
  background: #9a430e;
  padding: 1rem 1.5rem;
  /* text */
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 8.75rem;
}

/* Basic styling for the form */
.select-menu {
  width: 100%;
  position: relative; /* Ensuring the position of options is relative to this container */
}

.select-menu__button {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid #e0e3e6;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  color: #99a0a8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.select-menu__arrow {
  /* font-size: 25px; */
  transition: 0.3s;
  width: 1.25rem;
  height: 1.25rem;
}

.select-menu__options {
  display: none;
  position: absolute;
  width: 100%;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}

.select-menu__option {
  display: flex;
  min-height: 55px;
  cursor: pointer;
  padding: 0 16px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e0e3e6;
}

.select-menu__option:hover {
  background: #f2f2f2;
}

.select-menu__option i {
  font-size: 25px;
  margin-right: 12px;
}

.select-menu__option-text {
  font-size: 18px;
  color: #333;
}

.select-menu--active .select-menu__arrow {
  transform: rotate(-180deg);
}

.select-menu--active .select-menu__options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.order__form-control:nth-child(5) {
  text-align: center;
}

/* newsletter */
.newsletter {
  background-color: #fafafc;
  background-image: url("https://ik.imagekit.io/testcloud/SultanSeeds/photo/newsletter.webp?updatedAt=1725041165527");
  background-size: cover;
  /* background-position: ; */
  padding-top: 11.6rem;
  height: 34.25rem;
}

.newsletter__title {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.newsletter__description {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.newsletter__form {
  margin-top: 2.69rem;
}

.newsletter__form-control:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.newsletter__form-control:first-child input {
  width: 100%;
  max-width: 27.8125rem;
  height: 3.125rem;
  padding: 0.75rem 1rem;
}

.newsletter__form-control:first-child input::placeholder {
  color: #fff;
}

.newsletter__input {
  border-radius: 0.5rem;
  border: 1px solid #78714c;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  width: 100%;
  max-width: 27.8125rem;
  height: 3.125rem;
  padding: 0.75rem 1rem;
  outline: none;
  /* text */
  color: #fff;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.newsletter__button {
  width: 100%;
  max-width: 8.75rem;
  padding: 1rem 1.5rem;
}

.newsletter__terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  margin-top: 0.69rem;
}

.newsletter__terms-boox {
  width: 100%;
  max-width: 37.6rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.newsletter__terms-label {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

/* footer */
.footer {
  min-height: 30.9375rem;
  background: #272a2f;
  background-image: url(../photo/texture.png);
  padding-top: 5rem;
}

.footer_top {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 4.19rem;
  gap: 9.5rem;
}

.footer__logo {
  margin-bottom: 0.6rem;
}

.footer__description {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  max-width: 25rem;
  width: 100%;
  margin-bottom: 2.38rem;
}

.footer__top-item-social ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.25rem;
}

.footer__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 3.5rem;
}

.footer__menu-link,
.footer__contact-link a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.footer__contact-link {
  color: #fff;
}

.about-link a {
  white-space: nowrap;
}

.footer__menu-item:not(:last-child),
.footer__contact-item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.footer__social-item svg:hover path {
  fill: #f99900;
}

.footer__contact-link {
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.62rem;
  border-bottom: 1px solid #2e3540;
}

.footer__contact-link svg {
  min-width: 24px;
  min-height: 24px;
}

/* footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p,
.footer__bottom a {
  color: #636c79;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}

.footer__top-items {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22.5rem;
}

/* social fixid icon */
.social-list {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
}

.social-menu {
  background-color: #00000073;
  backdrop-filter: blur(3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 0;
  border-radius: 3rem;
  margin-bottom: 1rem;
  gap: 1rem;
  transform: translateX(5rem);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.social-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.button-menu {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9a430e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.open-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s linear;
  opacity: 1;
}

.close-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
  opacity: 0;
  transition: all 0.5s linear;
}

.button-menu.disabled .close-menu {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.button-menu.disabled .open-menu {
  left: 100%;
  transform: translateX(0%);
  opacity: 0;
}

/* media */
@media screen and (min-width: 2200px) {
  .intro-edge {
    top: -26px;
  }
  .intro-edge-bottom {
    bottom: -28px;
  }
}
@media screen and (min-width: 2600px) {
  .intro-edge {
    top: -30px;
  }
  .intro-edge-bottom {
    bottom: -30px;
  }
}
@media screen and (min-width: 2680px) {
  .intro-edge {
    top: -40px;
  }
  .intro-edge-bottom {
    bottom: -40px;
  }
}
/* 1400px  */
@media screen and (max-width: 1400px) {
  .container {
    max-width: calc(100% - 4rem);
  }

  .intro,
  .video-back {
    height: unset;
  }
  /* about */
  .about__container {
    padding: 4.76rem 0 7.98rem 0;
    align-items: start;
    gap: 6.26rem;
  }

  .about__photo {
    top: 0;
  }

  .about__title {
    font-size: 2rem;
  }

  .about__photo-video {
    width: 22.48988rem;
    height: 22.48988rem;
    flex-shrink: 0;
  }

  .about__photo-image:nth-child(2) {
    width: 17.68625rem;
    height: 11.92181rem;
    left: 9.56rem;
    top: 13.1rem;
  }

  .about__photo-image--top-right {
    display: none;
  }

  .about__description,
  .about__export-info-title {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 1rem 0;
  }

  .about__export-info-title {
    margin: 0;
  }

  .about__export-info-details {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.75rem;
  }

  .about__export-info-item:not(:last-child) {
    margin-bottom: 1rem;
  }

  /* modal */
  .modal-wrapper {
    overflow: scroll;
  }
  .modal-content {
    max-width: 90%;
    height: 90vh;
    overflow: scroll;
    margin-bottom: 20px;
  }

  .intro-edge img,
  .intro-edge-bottom img {
    width: unset;
  }

  .features__sub-photo-leaf {
    display: none;
  }

  .features__sub-photo-1144-leaf {
    display: inline-block;
    top: -2rem;
    z-index: 3;
  }
  .working__image--top-right-1144 {
    display: none;
    top: 3rem;
    right: 12px;
  }
}
/* 1200 */
@media screen and (max-width: 1200px) {
  /* core medai */
  .title {
    font-size: 2.25rem;
    font-weight: 700;
  }
  /* intro */
  .intro,
  .video-back {
    height: 34.85656rem;
  }

  .intro .container {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .intro-content {
    margin-top: 0;
  }

  .swiper-container {
    width: 100%;
    /* height: 22rem; */
  }

  .swiper-slide {
    padding: 2.69rem 0 2.69rem 0;
  }
  .swiper-title {
    font-size: 3rem;
    font-weight: 700;
    max-width: 51rem;
  }

  .swiper-pagination {
    top: 3.2rem !important;
    left: 0.3rem !important;
  }

  .swiper-fraction {
    bottom: 8.2rem;
  }

  .swiper-description {
    font-size: 1rem;
  }

  /* intro */

  /* features media */
  .features {
    min-height: 33.75rem;
  }
  .features__container {
    padding-top: 3.75rem;
  }

  .features__description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
  }

  .features__items {
    margin-top: 3rem;
  }

  .features__item,
  .features__item:nth-child(3) {
    gap: 0;
  }

  .features__item:nth-child(3) .features__item-text {
    margin-top: 1rem;
  }

  .features__item:nth-child(3) {
    padding: 1.2rem 1.1rem;
  }

  .features__sub-photo-leaf {
    display: none;
  }

  .features__sub-photo-1144-leaf {
    display: inline-block;
    top: -2rem;
  }

  .back__cover {
    height: 3rem;
  }

  /* sunflower media */
  .sunflower {
    margin-bottom: 8rem;
  }

  .sunflower__container {
    padding-top: 5rem;
  }

  .sunflower__descr {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75rem;
  }

  .sunflower__items {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .sunflower__item {
    width: 100%;
    flex-direction: row;
    justify-content: start;
    gap: 1.5rem;
  }

  .sunflower__item-content {
    align-items: start;
    text-align: start;
    gap: 2rem;
    width: 100%;
    max-width: 44.5rem;
  }

  .sunflower__item-descr {
    text-align: start;
    font-size: 0.875rem;
  }

  /* quality media */
  .quality {
    min-height: 20.41106rem;
    padding-top: 6rem;
  }
  .quality__descr {
    font-size: 0.875rem;
  }
  /* working media */
  .working {
    margin-top: 5.75em;
  }
  .working__image--top-right-1144 {
    display: none;
    top: 3rem;
    right: 12px;
  }

  .working__image--top-right {
    display: none;
  }

  .working__description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75rem;
  }

  .working__items {
    column-gap: 1rem;
    row-gap: 3.5rem;
  }

  /* order media */
  .order {
    padding-top: 7.25rem;
  }
  .order__sub-photo-leaf {
    display: none;
  }

  .order__sub-photo-leaf-1144 {
    display: inline-block;
  }

  .order__description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 5.2rem;
  }

  .order__form-element {
    max-width: 42.5rem;
  }

  .order__input,
  .order__select-display,
  .order__select,
  .select-menu__button {
    margin-top: 0.3rem;
  }

  /* newsletter media*/
  .newsletter {
    height: 29.27863rem;
    padding-top: 8.6rem;
    background-image: url("https://ik.imagekit.io/testcloud/SultanSeeds/photo/union-1144.webp?updatedAt=1725041168949");
  }

  /* footer media */
  .footer {
    padding-top: 6rem;
    height: 30.9375rem;
  }

  .footer__top {
    gap: 7.44rem;
  }

  .footer__top-items {
    gap: 4.25rem;
  }

  .footer__top-item--menu {
    width: 100%;
    min-width: 15.4375rem;
  }

  .footer__top-item--contact {
    width: 100%;
    min-width: 18.75rem;
  }

  .footer__description {
    margin-bottom: 1.38rem;
  }
}
/* 1024 */
@media screen and (max-width: 1024px) {
  /* status liner */
  .status-liner {
    display: inline-block;
  }
  /* loader */
  .loader-text {
    font-size: 1rem;
    text-align: center;
  }
  /* header */
  .header__contact-info {
    display: none;
  }

  .header__mobile {
    display: inline-block;
  }

  .header__nav,
  .header__language-switcher {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .active {
    position: relative;
  }

  .active .header__nav {
    display: inline-block;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .active .header__language-switcher {
    display: none;
  }

  .active .header__nav {
    width: 100%;
    height: 100vh;
    background-color: #1c232c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
  }

  .active .header__nav-list {
    flex-direction: column;
  }

  .active .header__nav-link {
    color: #fff;
  }

  /* language wtiche nav */
  .nav-language-switcher {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    gap: 2rem;
    background-color: #fafafc;
    border-radius: 0.5rem;
    position: relative;
  }

  .nav-language-switcher a {
    color: #000;
    position: relative;
    z-index: 1;
  }

  .nav-language-switcher a.selected {
    color: #ff5733;
  }

  /* hamburger icon */
  .header__mobile-icon {
    display: flex;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background: #f7f7f8;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }

  .hamburger {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger__line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 10px;
  }

  .hamburger .hamburger__line:nth-child(2) {
    width: 70%;
  }

  .hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* intro */
  .intro-content__title {
    font-size: 3rem;
  }

  .intro .video-back video {
    width: unset;
  }
  /* footer */
  .footer {
    min-height: unset;
    height: auto;
  }

  .footer_top,
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer__bottom {
    text-align: center;
    padding-bottom: 0.7rem;
  }

  .footer__bottom p:nth-child(2) {
    margin-top: 1rem;
  }

  .footer__top-item,
  .footer__contact-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer__contact-item {
    width: 100%;
    text-align: center;
  }

  .footer__contact-link {
    justify-content: center;
  }
}
/* 972 */
@media screen and (max-width: 972px) {
  /* intro */

  /* about */
  .about__container {
    flex-direction: column-reverse;
    width: 100%;
    padding-top: 2.5rem;
    gap: 1.44rem;
  }

  .about__title {
    font-size: 1.5rem;
  }

  .about__photo-video {
    width: 16.86744rem;
    height: 16.86744rem;
  }

  .about__photo-image:nth-child(2) {
    width: 13.26469rem;
    height: 8.94138rem;
    top: 9.83rem;
    left: 7.17rem;
  }

  /* features */
  .features {
    padding: 3.75rem 0;
    padding-top: 0;
  }
  .features__items {
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .features__title {
    font-size: 1.5rem;
  }

  .features__description {
    margin-top: 1rem;
  }

  .features__item {
    gap: 1rem;
  }

  .back__cover,
  .features__sub-photo-image {
    display: none;
  }
}
/* 805 */
@media screen and (max-width: 768px) {
  /* custom */
  .container {
    max-width: calc(100% - 3rem);
  }

  .title {
    font-size: 1.5rem;
  }
  /* header */

  .header__logo img {
    width: 9.49075rem;
    height: 2.08138rem;
  }

  /* intro */
  .intro,
  .video-back {
    height: 31.46206rem;
  }

  .intro-content {
    text-align: center;
  }

  .intro-content__title {
    font-size: 2rem;
  }

  .intro-content__description {
    font-size: 0.87rem;
  }
  /* features */
  .features__sub-photo-1144-leaf {
    top: -63rem;
  }

  .features__item:nth-child(3) {
    padding: 2rem;
  }
  /* sunflower */
  .sunflower__container {
    padding-top: 3.75rem;
  }

  .sunflower__item {
    flex-direction: column;
  }

  .sunflower__item-content {
    justify-content: center;
    align-items: center;
  }

  .sunflower__item-descr {
    text-align: center;
  }

  .sunflower__item {
    min-width: unset;
  }

  .sunflower__item img {
    width: 15rem;
  }

  /* quality */
  .quality {
    height: 15.3rem;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* working */
  .working {
    margin: 3.75rem 0 2.91rem 0;
  }
  .working__image--top-right-1144 {
    display: none;
  }
  .working__image--top-right-380 {
    display: inline-block;
    top: -11rem;
    right: 12px;
  }

  .working__item-title {
    font-size: 1.25rem;
  }

  .working__items {
    gap: 2rem;
  }

  .working__description {
    margin-bottom: 2rem;
  }

  .working__item-description {
    font-size: 0.875rem;
  }
  /* order */
  .order__sub-photo-leaf-1144 {
    display: none;
  }

  /* footer */
  .footer__top-items {
    flex-direction: column;
  }

  .modal-content {
    padding: 1rem 1.25rem;
  }

  .select-menu__button {
    height: auto;
  }

  .from-message textarea {
    height: auto;
  }
}

/* 540 */
@media screen and (max-width: 540px) {
  /* working */
  .working__items {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }

  /* loader */
  .loader-text {
    width: 20rem;
  }
  /* order */
  .order {
    padding-top: 3.75rem;
  }

  .order__description {
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }

  .order__form-element {
    gap: 2rem;
  }

  .order-form input,
  .order-form input::placeholder,
  .order-form textarea,
  .order-form textarea::placeholder,
  .checkbox-control label,
  .select-menu__button-text {
    font-size: 0.875rem;
  }

  /* newsletter */
  .newsletter {
    height: auto;
    padding-top: 5.2rem;
    padding-bottom: 4.9rem;
  }

  .newsletter__form-control:first-child {
    flex-direction: column;
  }

  .newsletter__description,
  .newsletter__form-control input,
  .newsletter__form-control input::placeholder {
    font-size: 0.875rem;
  }

  .features__item-text,
  .features__item-link {
    font-size: 1rem;
  }

  .features__sub-photo-1144-leaf {
    top: -59rem;
  }

  .features__items {
    gap: 0 !important;
  }
  .features__item {
    min-width: 17.5rem;
  }

  /* footer */
  .footer {
    min-height: unset;
    height: auto;
  }

  .footer_top,
  .footer__top-items,
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__top-item,
  .footer__contact-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer__contact-item {
    width: 100%;
    text-align: center;
  }

  .footer__contact-link {
    justify-content: center;
  }

  .footer__logo img {
    width: 14.73213rem;
    height: 3.22763rem;
  }

  /* footer */
  .footer {
    padding-top: 5.19rem;
  }

  .footer__logo {
    margin-bottom: 0;
  }

  .footer__description {
    margin: 2rem 0;
  }

  .footer_top {
    gap: 3rem;
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }
  /* modal */
  .modal-title {
    font-size: 1.5rem !important;
  }

  .modal-description {
    font-size: 1rem;
  }
}

/* 380 */
@media screen and (max-width: 380px) {
  .about__photo-image:nth-child(2) {
    left: 5.17rem;
  }

  .features__sub-photo-1144-leaf {
    top: -61rem;
  }
}

@media screen and (max-width: 320px) {
  .features__sub-photo-1144-leaf {
    top: -61rem;
  }
}

/* modal */
.success__card,
.error__card {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  width: 474px;
  padding: 24px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  transform: translateX(120%);
}
.error__card::after,
.success__card::after {
  position: absolute;
  width: 8px;
  height: 100%;
  content: "";
  background-color: #f97066;
  bottom: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: width 5s linear;
}
.success__card--active {
  transform: translateX(0);
  animation: alert-enter 1s linear forwards;
}
.success__title,
.error__title {
  margin-bottom: 12px;
}
.success__card::after {
  background-color: #47cd89;
}
.success__card--hide {
  animation: alert-leave 1s linear;
  transform: translateX(120%);
}
.error__card {
  transform: translateX(120%);
}
.error__card--hide {
  animation: alert-leave 1s linear;
}
.error__card--active {
  animation: alert-enter 1s linear;
  transform: translateX(0);
}
@keyframes alert-enter {
  0% {
    transform: translateX(120%);
  }
  40% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes alert-leave {
  0% {
    transform: translateX(0%);
  }
  40% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(120%);
  }
}
