* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
ul {
  list-style: none;
}

li {
  list-style: none;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 7px 17px;
  overflow: visible;
}

.header-container {
  background-color: transparent;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 17px;
  overflow: visible;
}

.header-container.active {
  background-color: #084902f2;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.header-logo {
  height: 52px;
  transition: height 0.3s ease;
}

.header-nav,
.header-btn {
  display: none;
}

.header-nav {
  overflow: visible;
}

.header-li {
  position: relative;
  overflow: visible;
  height: 100%;
  display: flex;
  justify-content: center;
}

.header-ul-menu {
  position: absolute;
  display: flex;
  gap: 3px;
  flex-direction: column;
  top: 140%;
  background-color: white;
  z-index: 10;
  padding: 6px 5px;
  border-radius: 12px;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  max-height: 900px;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}

.header-ul-menu.open {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-svg {
  transition: transform 0.3s;
}

.header-li-menu {
  color: #22780b;
  font-size: 9px;
  display: flex;
  font-weight: 600;
  align-items: center;
}

.header-li-menu a {
  display: flex;
  align-items: center;
}

.header-li-menu a:hover {
  text-decoration: underline;
}

.nav-menu-svg {
  width: 6px;
  height: 6px;
  margin-right: 5px;
}

.header-openburger rect {
  fill: rgb(255, 255, 255);
}

.hero-section {
  overflow: hidden;
  display: flex;
}

.hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.4)),
    url(../imgs/bg-main.png);
  background-size: cover;
  background-position: 80% center;
  height: 431px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px 34px;
  width: 100%;
}

.hero-h2 {
  color: white;
  font-size: 25px;
  font-weight: 600;
  text-align: left;
}

.hero-btn {
  position: relative;
  width: 121px;
  height: 34px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 1000px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-top: 25px;
  z-index: 3;
  transition: color 0.3s ease;
  cursor: pointer;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px 34px 37px 32px;
  width: 100%;
}

.main-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-big-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.main-imgs-list {
  display: flex;
  gap: 26px;
  width: 100%;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
  opacity: 1;
  cursor: pointer;
}

.fade-out {
  opacity: 0;
}

.main-h2 {
  margin-top: 18px;
  font-size: 32px;
  font-weight: 600;
}

.main-h4 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.main-p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.footer-container {
  background-color: #084902;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #084902;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
  z-index: 1000;
}

.menu-btn {
  position: absolute;
  top: 36px;
  right: 34px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.menu-container.active {
  right: 0;
}

.footer-logo {
  height: 157px;
  margin-bottom: 24px;
}

.footer-list-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-li-contacts {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}

.footer-li-contacts::after {
  content: "";
  display: block;
  height: 1px;
  background: #fff;
  width: 100%;
  margin-top: 8px;
}

.footer-li-contacts:not(:first-child) {
  margin-top: 12px;
}

.contacts-a {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.footer-line {
  height: 1px;
  background-color: white;
  margin-top: 12px;
  align-self: center;
}

.footer-list-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 24px;
}

.list-corporate,
.list-fruits,
.list-vegetables {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}

.footer-a-contacts {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.list-contacts {
  display: none;
}

.corporate-h2,
.fruits-h2,
.vegetables-h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}

.corporate-a,
.fruits-a,
.vegetables-a {
  font-size: 8px;
  font-weight: 600;
}

.footer-svg {
  display: none;
}

.corporate-a:not(:last-child),
.fruits-a:not(:last-child),
.vegetables-a:not(:last-child) {
  margin-bottom: 5px;
}

.link-text {
  position: relative;
  display: inline-block;
}

.link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: white;
  transition: width 0.3s ease;
  visibility: hidden;
}

.link-text:hover::after {
  width: 100%;
}

.contacts-svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 550px) {
  .hero-container {
    padding: 34px 44px;
  }
  .hero-h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 34px 37px 32px;
  }

  .main-h2 {
    margin-top: 18px;
    font-size: 38px;
  }

  .main-h4 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 22px;
  }
  .main-p {
    margin-top: 6px;
    font-size: 14px;
  }
  .contacts-a {
    font-size: 14px;
  }
  .contacts-svg {
    width: 18px;
    height: 18px;
  }
  .footer-a-contacts {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }
  .corporate-a,
  .fruits-a,
  .vegetables-a {
    font-size: 10px;
    font-weight: 600;
  }
}

@media (min-width: 630px) {
  .hero-h2 {
    width: 500px;
  }
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 50px 38px 49px 36px;
  }

  .main-h2 {
    margin-top: 18px;
    font-size: 38px;
  }

  .main-h4 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 22px;
  }
  .main-p {
    margin-top: 6px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  header {
    display: flex;
    justify-content: center;
    padding: 5px 75px;
  }
  .header-container {
    padding: 0;
    border-bottom: 2px solid #fff;
    transition: padding 0.3s ease, border-width 0.3s ease;
  }
  .header-container.active {
    padding: 10px 10px;
    border: 0;
    transition: padding 0.3s ease, border-width 0.3s ease;
  }
  .header-container.active .header-logo {
    height: 30px;
  }
  .header-logo {
    height: 55px;
  }
  .header-openburger {
    display: none;
  }
  .header-nav {
    display: flex;
    gap: 25px;
  }
  .header-li {
    display: flex;
    align-items: center;
  }
  .header-a {
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
  }
  .nav-svg {
    margin-left: 3px;
    height: 4px;
  }
  .header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    width: 126px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 1000px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease,
      border-color 0.3s ease;
  }

  .header-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-container {
    flex: 1;
    padding: 0;
    background: url(../imgs/bg-main2.png);
    background-size: cover;
    background-position: center;
    height: auto;
  }
  .hero-h2 {
    display: none;
  }
  .hero-btn {
    display: none;
  }
  .main-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 48px 75px;
    height: auto;
  }

  .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: auto;
  }

  .main-imgs-list {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 9px;
  }

  .main-big-img {
    height: 180px;
    width: 180px;
    object-fit: contain;
    display: flex;
  }

  .main-img {
    width: 54px;
    height: 54px;
  }

  .main-text-list {
    display: flex;
    flex-direction: column;
  }

  .main-h2 {
    margin: 0;
    font-size: 36px;
  }

  .main-h4 {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 21px;
  }
  .main-p {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
  }

  .footer-container {
    flex-direction: row;
    padding: 13px 75px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    margin: 0;
    height: 118px;
    width: 104px;
  }
  .footer-li-contacts {
    display: none;
  }
  .list-corporate,
  .list-fruits,
  .list-vegetables {
    text-align: left;
  }
  .list-contacts {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
  }
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2,
  .contacts-h2 {
    margin-bottom: 6px;
    font-size: 18px;
  }
  .footer-svg {
    display: flex;
    height: 6px;
    margin-right: 3px;
  }
  .corporate-a,
  .fruits-a,
  .vegetables-a,
  .contacts-a {
    display: flex;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
    text-decoration: none;
  }
  .corporate-a:not(:last-child),
  .fruits-a:not(:last-child),
  .vegetables-a:not(:last-child),
  .contacts-a:not(:last-child) {
    margin-bottom: 6px;
  }
  .footer-list-nav {
    gap: 20px;
    justify-content: space-between;
    margin: 0;
  }
}

@media (min-width: 859px) {
  .main-img-btn {
    width: 32px;
    height: 32px;
  }
  .main-svg {
    height: 11px;
  }
  header {
    padding: 5px 86px;
  }
  .header-a {
    font-size: 15px;
  }
  .header-btn {
    width: 129px;
    height: 38px;
    font-size: 14px;
  }
  .header-container.active {
    padding: 12px;
  }
  .header-container.active .header-logo {
    height: 40px;
  }
  .main-container {
    padding: 56px 86px;
  }
  .main-list {
    gap: 18px;
  }
  .main-imgs-list {
    gap: 10px;
  }
  .main-big-img {
    width: 205px;
    height: 205px;
  }
  .main-img {
    width: 62px;
    height: 62px;
  }
  .main-h2 {
    font-size: 46px;
  }

  .main-h4 {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 24px;
  }
  .main-p {
    margin-top: 6px;
    font-size: 14px;
  }
  .footer-container {
    flex-direction: row;
    padding: 15px 86px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    margin: 0;
    height: 125px;
    width: 106px;
  }
  .footer-li-contacts {
    display: none;
  }
  .list-corporate,
  .list-fruits,
  .list-vegetables {
    text-align: left;
  }
  .list-contacts {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
  }
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2,
  .contacts-h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .footer-svg {
    display: flex;
    height: 7px;
    margin-right: 3px;
  }
  .corporate-a,
  .fruits-a,
  .vegetables-a,
  .contacts-a {
    display: flex;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
    text-decoration: none;
  }
  .corporate-a:not(:last-child),
  .fruits-a:not(:last-child),
  .vegetables-a:not(:last-child),
  .contacts-a:not(:last-child) {
    margin-bottom: 7px;
  }
  .footer-list-nav {
    gap: 40px;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    height: 67px;
  }
  header {
    padding: 6px 102px;
  }
  .header-a {
    font-size: 16px;
  }
  .header-btn {
    width: 140px;
    height: 40px;
    font-size: 17px;
  }
  .header-container.active {
    padding: 15px;
  }
  .header-container.active .header-logo {
    height: 40px;
  }
  .header-ul-menu {
    padding: 13px 10px;
  }
  .header-li-menu {
    font-size: 10px;
  }
  .header-nav {
    gap: 35px;
  }
  .nav-menu-svg {
    height: 7px;
    width: 7px;
  }
  .main-container {
    padding: 71px 102px;
  }

  .main-list {
    gap: 20px;
  }

  .main-imgs-list {
    gap: 10px;
  }

  .main-big-img {
    width: 230px;
    height: 230px;
  }

  .main-img {
    width: 70px;
    height: 70px;
  }

  .main-h2 {
    font-size: 52px;
  }

  .main-h4 {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 26px;
  }
  .main-p {
    margin-top: 6px;
    font-size: 14px;
    width: 500px;
  }

  .footer-container {
    flex-direction: row;
    padding: 16px 102px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    margin: 0;
    height: 132px;
    width: 116px;
  }
  .footer-li-contacts {
    display: none;
  }
  .list-corporate,
  .list-fruits,
  .list-vegetables {
    text-align: left;
  }
  .list-contacts {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
  }
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2,
  .contacts-h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .footer-svg {
    display: flex;
    height: 9px;
    margin-right: 3px;
  }
  .corporate-a,
  .fruits-a,
  .vegetables-a,
  .contacts-a {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
  }
  .corporate-a:not(:last-child),
  .fruits-a:not(:last-child),
  .vegetables-a:not(:last-child),
  .contacts-a:not(:last-child) {
    margin-bottom: 7px;
  }
  .footer-list-nav {
    gap: 40px;
    margin: 0;
  }
  .link-text::after {
    visibility: visible;
  }
}

@media (min-width: 1220px) {
  header {
    padding: 8px 112px;
  }
  .header-container.active {
    padding: 18px;
  }
  .header-container.active .header-logo {
    height: 45px;
  }
  .header-logo {
    height: 72px;
  }
  .header-a {
    font-size: 20px;
  }
  .header-li-menu {
    font-size: 12px;
  }
  .nav-menu-svg {
    height: 9px;
    width: 9px;
  }
  .nav-svg {
    margin-left: 10px;
    width: 15px;
    height: 15px;
  }
  .header-btn {
    width: 170px;
    height: 43px;
    font-size: 20px;
  }

  .main-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 81px 112px;
  }

  .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    width: auto;
    height: 300px;
  }

  .main-big-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .main-imgs-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .main-img {
    width: auto;
    height: 100%;
    max-height: 85px;
    object-fit: contain;
  }

  .main-text-list {
    display: flex;
    flex-direction: column;
  }

  .main-h2 {
    font-size: 57px;
  }

  .main-h4 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 31px;
  }
  .main-p {
    margin-top: 8px;
    font-size: 20px;
  }

  .main-svg {
    height: 16px;
  }

  .footer-container {
    padding: 16px 112px;
    justify-content: space-between;
  }
  .footer-logo {
    height: 142px;
    width: 126px;
    margin-right: 94px;
  }
  .contacts-h2,
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2 {
    font-size: 24px;
    font-weight: 600;
  }
  .contacts-a,
  .corporate-a,
  .fruits-a,
  .vegetables-a {
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  header {
    padding: 10px 120px;
  }
  .header-container.active {
    padding: 20px;
  }
  .header-container.active .header-logo {
    height: 50px;
  }
  .header-logo {
    height: 95px;
  }
  .header-a {
    font-size: 24px;
  }
  .header-ul-menu {
    padding: 13px 13px;
  }
  .header-li-menu {
    font-size: 14px;
  }
  .header-btn {
    width: 199px;
    height: 55px;
    font-size: 24px;
  }
  .header-nav {
    gap: 65px;
  }
  .nav-menu-svg {
    height: 11px;
    width: 11px;
  }
  .hero-section {
    flex: 0;
    min-height: 0;
  }
  .hero-container {
    height: 380px;
  }
  .main-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 90px 120px;
  }

  .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: auto;
    height: 340px;
  }

  .main-big-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .main-imgs-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .main-img {
    width: auto;
    height: 100%;
    max-height: 95px;
    object-fit: contain;
  }

  .main-text-list {
    display: flex;
    flex-direction: column;
  }

  .main-h2 {
    font-size: 62px;
    font-weight: 600;
  }

  .main-h4 {
    margin-top: 30px;
    margin-bottom: 22px;
    font-size: 36px;
  }
  .main-p {
    margin-top: 8px;
    font-size: 26px;
  }
  .footer-container {
    padding: 22px 120px;
    justify-content: space-between;
  }
  .footer-logo {
    height: 210px;
    width: auto;
    margin-right: 0;
  }
  .list-contacts,
  .list-corporate,
  .list-fruits,
  .list-vegetables {
    margin: 0;
  }

  .contacts-h2,
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .contacts-a,
  .corporate-a,
  .fruits-a,
  .vegetables-a {
    font-size: 16px;
  }
  .footer-svg {
    height: 11px;
    margin-right: 5px;
  }
}

@media (min-width: 1785px) {
  header {
    padding: 12px 140px;
  }
  .header-container.active {
    padding: 26px;
  }
  .header-container.active .header-logo {
    height: 60px;
  }
  .header-logo {
    height: 105px;
  }
  .header-a {
    font-size: 27px;
    font-weight: 500;
  }
  .header-ul-menu {
    padding: 21px 18px;
  }
  .header-li-menu {
    font-size: 15px;
  }
  .header-nav {
    gap: 44px;
  }
  .nav-menu-svg {
    height: 13px;
    width: 13px;
  }
  .nav-svg {
    margin-left: 16px;
    width: 21px;
    height: 21px;
  }
  .header-btn {
    width: 210px;
    height: 56px;
    font-size: 25px;
  }
  .hero-container {
    height: 420px;
  }
  .main-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 106px 140px;
  }

  .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: auto;
    height: 380px;
  }

  .main-big-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .main-imgs-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .main-img {
    width: auto;
    height: 100%;
    max-height: 110px;
    object-fit: contain;
  }

  .main-text-list {
    display: flex;
    flex-direction: column;
  }

  .main-h2 {
    font-size: 86px;
  }

  .main-h4 {
    margin-top: 32px;
    margin-bottom: 22px;
    font-size: 44px;
  }
  .main-p {
    margin-top: 8px;
    font-size: 24px;
  }
  .footer-container {
    padding: 42px 142px;
  }
  .footer-logo {
    height: 245px;
    width: auto;
    margin-right: 125px;
  }
  .contacts-h2,
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2 {
    font-size: 36px;
  }
  .contacts-a,
  .corporate-a,
  .fruits-a,
  .vegetables-a {
    font-size: 18px;
  }
  .footer-svg {
    height: 15px;
    margin-right: 7px;
  }
}

@media (min-width: 1920px) {
  header {
    padding: 12px 144px;
  }
  .header-logo {
    height: 121px;
  }
  .header-container.active .header-logo {
    height: 80px;
  }
  .header-a {
    font-size: 30px;
  }
  .header-ul-menu {
    padding: 23px 20px;
  }
  .header-li-menu {
    font-size: 18px;
  }
  .header-nav {
    gap: 48px;
  }
  .nav-svg {
    width: 19px;
    height: 25px;
  }
  .header-btn {
    width: 221px;
    height: 64px;
    font-size: 26px;
  }
  .hero-container {
    height: 458px;
  }
  .main-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 113px 144px;
  }

  .main-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: auto;
    height: 420px;
  }

  .main-big-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .main-imgs-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .main-img {
    width: auto;
    height: 100%;
    max-height: 120px;
    object-fit: contain;
  }

  .main-text-list {
    display: flex;
    flex-direction: column;
  }

  .main-h2 {
    font-size: 96px;
  }

  .main-h4 {
    margin-top: 35px;
    margin-bottom: 27px;
    font-size: 48px;
  }
  .main-p {
    margin-top: 8px;
    font-size: 26px;
  }
  .footer-container {
    padding: 38px 145px;
  }
  .footer-logo {
    height: 259px;
    width: 228px;
    margin: 0;
  }
  .footer-list-nav {
    gap: 100px;
  }
  .contacts-h2,
  .corporate-h2,
  .fruits-h2,
  .vegetables-h2 {
    font-size: 40px;
    margin-bottom: 22px;
  }
  .contacts-a,
  .corporate-a,
  .fruits-a,
  .vegetables-a {
    font-size: 20px;
  }
  .footer-svg {
    height: 16px;
    margin-right: 8px;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible {
  opacity: 1;
}
