@import "./utils/colors.css";
@import "./utils/sizes.css";
@import "./swiper.css";

@font-face {
  font-family: "Calibri";
  src: url(../fonts/calibri.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Calibri", sans-serif;
  font-size: 16px;
  line-height: 110%;
  color: inherit;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

h1 {
  font-size: 42px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-c);
}

h1 sup {
  font-size: x-large;
}

h2 {
  font-size: 38px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-c);
}

h3 {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--grey-c);
}

h4 {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--grey-c);
}

h5 {
  font-size: 24px;
  color: #787c7f;
}

h2 sup,
h2 sub,
h3 sup,
h3 sub {
  font-size: x-large;
}

h2 a,
h2 a,
h3 a,
h3 a {
  color: inherit;
  font-size: inherit;
}

@media (max-width: 819px) {
  h1 {
    font-size: 32px;
  }

  h1 sup {
    font-size: large;
  }

  h2 {
    font-size: 28px;
  }

  h2 sup {
    font-size: small;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }
}

i,
b,
span,
em,
strong,
sub,
sup {
  font-size: inherit;
  line-height: inherit;
}

sup,
sub {
  font-size: smaller;
  white-space: nowrap;
}

ul li {
  list-style: none;
}

nav ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease-in-out;
  overflow-x: hidden;
}

nav ul li a::after {
  content: "";
  padding: 2px;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid;
  transform: translateX(-200%);
  transition: transform 0.25s ease-in-out;
}

nav ul li a:hover::after {
  transform: translateX(0);
}

label {
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--grey-c);
  text-transform: uppercase;
}

.code-site {
  width: 100%;
  text-align: right;
  margin: 30px 0;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6vw 11.2vw;
  font-size: 2vw;
  line-height: 2.2vw;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px #000;
  z-index: 10;
}

.uppercase {
  text-transform: uppercase;
}

.content {
  padding: 0 20px;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.green-text {
  color: var(--green-c);
}

.colored-label {
  width: max-content;
  padding: 8px 32px;
  background-color: var(--white-c);
}

.colored-label h2 {
  line-height: normal;
  color: var(--white-c);
}

.colored-label.red {
  background-color: var(--red-c);
}

.colored-label.green {
  background-color: var(--green-c);
}

@media (max-width: 819px) {
  .colored-label {
    padding: 8px 24px;
    width: auto;
    max-width: 100%;
  }
}

.swiper {
  margin: 32px 0;
  padding: 50px 0;
}

section {
  padding-top: 48px;
}

.btn-container {
  display: flex;
  gap: 12px;
}

.btn {
  margin-top: 12px;
  display: block;
  width: max-content;
  padding: 16px;
  background-color: var(--green-c);
  font-size: 20px;
  text-align: center;
  color: var(--white-c);
  text-transform: uppercase;
  transition: background-color 0.25s ease-in;
}

.btn:hover {
  background-color: var(--green-secondary-c);
}

.btn.yellow {
  color: var(--green-c);
  background-color: var(--orange-c);
}

.btn.yellow:hover {
  background-color: var(--yellow-c);
}

.btn.grey {
  background-color: #efefef;
  color: var(--green-c);
}

.btn.grey:hover {
  background-color: var(--green-c);
  color: var(--white-c);
}

@media (max-width: 819px) {
  .btn {
    font-size: 14px;
    padding: 12px;
  }
}

main {
  position: relative;
}

.scrollable-container {
  position: absolute;
  height: 100%;
  right: 12px;
  z-index: 10;
  pointer-events: none;
}

.scrollable-container .btn-container {
  position: sticky;
  top: calc(90% - 60px);
  bottom: 0;
  right: 0;
  flex-direction: column;
}

.scrollable-container .btn {
  margin-top: 0;
  width: 100%;
  pointer-events: all;
}

/* #region header */
header {
  padding: 20px 0;
  background-color: var(--white-secondary-c);
  z-index: 11;
}

header nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 12;
}

header nav img {
  width: 120px;
  height: 33px;
  z-index: 12;
}

header nav ul {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

header nav ul li {
  height: 100%;
}

header nav ul li a {
  padding: 0 14px;
  align-items: center;
  height: 100%;
  color: var(--grey-c);
}

header nav ul li a:hover {
  color: var(--black-secondary-c);
}

header .mobile-menu {
  display: none;
  z-index: 12;
}

.toggler {
  display: flex;
  justify-content: space-between;
  background: var(--green-c);
  border-radius: 30px;
  padding: 10px;
  text-transform: uppercase;
}

.toggler a {
  font-size: 20px;
  color: var(--white-c);
  padding: 5px 10px;
}

.toggler a.active {
  color: var(--green-c);
  background: var(--white-c);
  border-radius: 30px;
}

@media (max-width: 1180px) {
  header nav img {
    width: 90px;
  }

  header nav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 819px) {
  header {
    width: 100%;
  }

  header nav ul,
  header nav .toggler {
    display: none;
  }

  header .mobile-menu {
    display: block;
  }

  header .mobile-menu img {
    padding: 5px;
    width: 40px;
    height: 30px;
  }

  header .mobile-menu nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-150%);
    right: 0;
    top: 40px;
    height: 100vh;
    width: 100vw;
    background-color: var(--white-secondary-c);
    z-index: 10;
    transition: all 0.25s ease-in;
  }

  header .mobile-menu.open nav {
    transform: translateX(-50%);
  }

  header .mobile-menu nav ul {
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  header .mobile-menu ul li a {
    font-size: 18px;
  }

  header .mobile-menu .toggler {
    margin: 12px auto;
    display: block;
    width: max-content;
  }
}
/* #endregion header */

/* #region footer */
footer {
  padding: 20px 0;
  background-color: var(--black-secondary-c);
  color: var(--blue-grey-c);
}

footer nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer nav img {
  width: 120px;
}

footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer nav ul li a {
  padding: 6px 0;
  display: flex;
  width: max-content;
  text-transform: uppercase;
}

footer nav ul li a:hover {
  color: var(--white-c);
}

footer nav div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .footer-info {
  display: flex;
  flex-direction: column;
}

.footer-info p {
  margin: 20px 0;
}

.footer-info p,
.footer-info span {
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  footer nav img {
    width: 90px;
  }

  footer li a,
  footer div span,
  footer p {
    font-size: 14px;
  }
}

@media (max-width: 819px) {
  footer nav {
    flex-direction: column;
    gap: 12px;
  }

  footer nav a {
    width: 100%;
  }
}

/* #endregion footer */

/* #region banner */
#banner-section {
  padding-top: 0;
}

#banner-section a {
  margin-top: 32px;
  padding-left: 24px;
  padding-right: 24px;
  width: 45%;
}
 
#banner-section .banner-slide-1 a {
  margin-left: auto;
  margin-right: auto;
}

#banner {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

#banner .swiper-slide {
  position: relative;
}

#banner .swiper-slide img {
  width: 100%;
  height: auto;
}

#banner .banner-text {
  width: 50%;
  position: absolute;
}

#banner .banner-text .btn {
  font-weight: bold;
}

#banner .banner-slide-1 .banner-text {
  top: 20%;
  right: 5%;
}

#banner .banner-text > p {
  color: var(--white-c);
  font-size: 52px;
  line-height: 130%;
  letter-spacing: 0.06em;
}

#banner .banner-text > p span {
  font-size: 54px;
}

#banner .banner-slide-1 .banner-text > p span {
  text-transform: uppercase;
  color: var(--green-c);
}

#banner .banner-slide-1 .banner-text > span {
  padding: 16px;
  margin-top: 32px;
  display: inline-block;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: var(--white-c);
  border-left: 1px solid var(--white-c);
}

#banner .banner-slide-2 .banner-text {
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  text-transform: uppercase;
}

#banner .banner-slide-2 .banner-text > p span {
  color: var(--yellow-c);
}

@media (max-width: 819px) {
  #banner .swiper-slide .banner-text {
    position: absolute;
    width: calc(100% - 4px * 2);
    top: auto;
    left: 4px;
    right: 4px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    transform: none;
    border: 1px solid var(--grey-secondary-c);
    background-color: rgba(255, 255, 255, 0.6);
  }

  #banner .swiper-slide .banner-text p,
  #banner .swiper-slide .banner-text span,
  #banner .swiper-slide .banner-text h1  {
    padding: 0;
    font-size: 16px !important;
    color: var(--black-secondary-c) !important;
  }

  #banner .banner-slide-1 .banner-text p br {
    display: none;
  }

  #banner .banner-slide-1 .banner-text span {
    margin-top: 8px;
  }

  #banner a {
    margin: 12px auto 0;
    width: 65%;
  }
}

/* #endregion banner */

/* #region about */
#about {
  height: 400px;
}

#about .swiper-button-prev {
  top: 10%;
  bottom: auto;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#about .swiper-button-next {
  top: auto;
  bottom: -5%;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#about .swiper-button-prev,
#about .swiper-button-next {
  color: var(--grey-c);
}

#about .swiper-wrapper {
  align-items: center;
}

#about .swiper-slide {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 50%;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 40px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity, width 0.25s ease-in;
}

#about .swiper-slide.swiper-slide-active {
  width: 60%;
}

#about .swiper-slide.swiper-slide-prev,
#about .swiper-slide.swiper-slide-next {
  opacity: 0.6;
}

#about .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#about .swiper-slide span {
  margin-left: 18px;
  font-size: 44px;
  text-transform: uppercase;
  color: var(--green-c);
}

#about .swiper-slide p {
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--grey-secondary-c);
}

#about .swiper-slide.swiper-slide-active span {
  font-size: 52px;
}

#about .swiper-slide.swiper-slide-active p {
  font-size: 20px;
}

#about .swiper-slide.swiper-slide-active span,
#about .swiper-slide.swiper-slide-active p {
  transition: font-size 0.25s ease-in;
}

#about .swiper-slide img {
  margin-right: 18px;
  height: calc(100% + 20px);
}

@media (max-width: 1180px) {
  #about .swiper-slide {
    width: 60%;
  }

  #about .swiper-slide.swiper-slide-active {
    width: 70%;
  }
}

@media (max-width: 819px) {
  #about {
    height: max-content;
    padding: 24px 0;
  }

  #about .swiper-slide,
  #about .swiper-slide.swiper-slide-active,
  #about .swiper-slide.swiper-slide-next,
  #about .swiper-slide.swiper-slide-prev {
    width: 95%;
    height: 60px !important;
    opacity: 1;
    box-shadow: 0 0 0 2px rgb(255, 255, 255),
      0.01em 0.1em 1em rgba(0, 0, 0, 0.3);
  }

  #about .swiper-slide span,
  #about .swiper-slide.swiper-slide-active span,
  #about .swiper-slide.swiper-slide-next span,
  #about .swiper-slide.swiper-slide-prev span {
    margin: 0;
    font-size: 32px;
  }

  #about .swiper-slide p,
  #about .swiper-slide.swiper-slide-active p,
  #about .swiper-slide.swiper-slide-next p,
  #about .swiper-slide.swiper-slide-prev p {
    text-align: center;
    font-size: 14px;
  }

  #about .swiper-slide img,
  #about .swiper-slide.swiper-slide-active img,
  #about .swiper-slide.swiper-slide-next img,
  #about .swiper-slide.swiper-slide-prev img {
    margin-right: 0;
    width: 30px;
    height: auto;
  }

  #about .swiper-button-prev,
  #about .swiper-button-next {
    display: none;
  }
}

/* #endregion about */

/* #region functions */
#functions {
  height: 400px;
}

#functions .swiper-button-prev {
  top: 10%;
  bottom: auto;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#functions .swiper-button-next {
  top: auto;
  bottom: -5%;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#functions .swiper-button-prev,
#functions .swiper-button-next {
  color: var(--grey-c);
}

#functions .swiper-wrapper {
  align-items: center;
}

#functions .swiper-slide {
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: 40%;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 40px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity, width 0.25s ease-in;
}

#functions .swiper-slide.swiper-slide-active {
  width: 50%;
}

#functions .swiper-slide.swiper-slide-prev,
#functions .swiper-slide.swiper-slide-next {
  opacity: 0.6;
}

#functions .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#functions .swiper-slide p,
#functions .swiper-slide h4 {
  line-height: normal;
  text-transform: uppercase;
  color: var(--grey-secondary-c);
}

#functions .swiper-slide p {
  font-size: 14px;
}

#functions .swiper-slide h4 {
  font-size: 22px;
}

#functions .swiper-slide.swiper-slide-active p {
  font-size: 20px;
}

#functions .swiper-slide.swiper-slide-active h4 {
  font-size: 28px;
}

#functions .swiper-slide .img-bg {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-c);
  transform: translateX(-20px);
  border-radius: 50%;
  transition: background-color 0.25s ease-in;
  box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

#functions .swiper-slide img {
  max-width: 75%;
  max-height: 85%;
  filter: invert(57%) sepia(58%) saturate(3823%) hue-rotate(110deg)
    brightness(91%) contrast(86%);
  transition: filter 0.25s ease-in;
}

#functions .swiper-slide.swiper-slide-active .img-bg {
  scale: 1.1;
  background-color: var(--green-c);
}

#functions .swiper-slide.swiper-slide-active img {
  filter: none;
}

@media (max-width: 1180px) {
  #functions .swiper-slide {
    width: 60%;
  }

  #functions .swiper-slide.swiper-slide-active {
    width: 70%;
  }
}

@media (max-width: 819px) {
  #functions {
    height: max-content;
    padding: 24px 0;
  }

  #functions .swiper-slide,
  #functions .swiper-slide.swiper-slide-active,
  #functions .swiper-slide.swiper-slide-next,
  #functions .swiper-slide.swiper-slide-prev {
    width: 95%;
    height: 60px !important;
    opacity: 1;
    box-shadow: 0 0 0 2px rgb(255, 255, 255),
      0.01em 0.1em 1em rgba(0, 0, 0, 0.3);
  }

  #functions .swiper-slide span,
  #functions .swiper-slide.swiper-slide-active span,
  #functions .swiper-slide.swiper-slide-next span,
  #functions .swiper-slide.swiper-slide-prev span {
    margin: 0;
    font-size: 32px;
  }

  #functions .swiper-slide h4,
  #functions .swiper-slide.swiper-slide-active h4 {
    font-size: 20px;
  }

  #functions .swiper-slide p,
  #functions .swiper-slide.swiper-slide-active p,
  #functions .swiper-slide.swiper-slide-next p,
  #functions .swiper-slide.swiper-slide-prev p {
    font-size: 16px;
  }

  #functions .swiper-slide img,
  #functions .swiper-slide.swiper-slide-active img,
  #functions .swiper-slide.swiper-slide-next img,
  #functions .swiper-slide.swiper-slide-prev img {
    margin-right: 0;
    width: 40px;
  }

  #functions .swiper-slide .img-bg,
  #functions .swiper-slide.swiper-slide-active .img-bg,
  #functions .swiper-slide.swiper-slide-next .img-bg,
  #functions .swiper-slide.swiper-slide-prev .img-bg {
    margin-right: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transform: translateX(-25%) scale(1);
  }

  #functions .swiper-button-prev,
  #functions .swiper-button-next {
    display: none;
  }
}

@media (max-width: 500px) {

  #functions .swiper-slide h4,
  #functions .swiper-slide.swiper-slide-active h4 {
    font-size: 16px;
  }

  #functions .swiper-slide p,
  #functions .swiper-slide.swiper-slide-active p,
  #functions .swiper-slide.swiper-slide-next p,
  #functions .swiper-slide.swiper-slide-prev p {
    font-size: 14px;
  }
}

/* #endregion functions */

/* #region negatives */
#negatives-section .rhcp-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 360px;
  z-index: -1;
}

#negatives-section .fries-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  z-index: -1;
}

#negatives-section .chips-img {
  position: absolute;
  left: 60%;
  bottom: 0;
  width: 280px;
  z-index: -1;
}

#negatives {
  height: 400px;
}

#negatives .swiper-button-prev {
  top: 10%;
  bottom: auto;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#negatives .swiper-button-next {
  top: auto;
  bottom: -5%;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#negatives .swiper-button-prev,
#negatives .swiper-button-next {
  color: var(--red-c);
}

#negatives .swiper-wrapper {
  align-items: center;
}

#negatives .swiper-slide {
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: 40%;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 40px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity, width 0.25s ease-in;
}

#negatives .swiper-slide.swiper-slide-active {
  width: 50%;
}

#negatives .swiper-slide.swiper-slide-prev,
#negatives .swiper-slide.swiper-slide-next {
  opacity: 0.6;
}

#negatives .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#negatives .swiper-slide h4 {
  font-size: 22px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--red-c);
}

#negatives .swiper-slide.swiper-slide-active h4 {
  font-size: 28px;
}

#negatives .swiper-slide .img-bg {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-c);
  transform: translateX(-20px);
  border-radius: 50%;
  box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

#negatives .swiper-slide img {
  max-width: 75%;
  max-height: 85%;
}

#negatives .swiper-slide.swiper-slide-active .img-bg {
  scale: 1.1;
}

@media (max-width: 1180px) {
  #negatives .swiper-slide {
    width: 60%;
  }

  #negatives .swiper-slide.swiper-slide-active {
    width: 70%;
  }
}

@media (max-width: 819px) {
  #negatives {
    height: max-content;
    padding: 24px 0;
  }

  #negatives .swiper-slide,
  #negatives .swiper-slide.swiper-slide-active,
  #negatives .swiper-slide.swiper-slide-next,
  #negatives .swiper-slide.swiper-slide-prev {
    width: 95%;
    height: 60px !important;
    opacity: 1;
    box-shadow: 0 0 0 2px rgb(255, 255, 255),
      0.01em 0.1em 1em rgba(0, 0, 0, 0.3);
  }

  #negatives .swiper-slide span,
  #negatives .swiper-slide.swiper-slide-active span,
  #negatives .swiper-slide.swiper-slide-next span,
  #negatives .swiper-slide.swiper-slide-prev span {
    margin: 0;
    font-size: 32px;
  }

  #negatives .swiper-slide h4,
  #negatives .swiper-slide.swiper-slide-active h4 {
    font-size: 20px;
  }

  #negatives .swiper-slide p,
  #negatives .swiper-slide.swiper-slide-active p,
  #negatives .swiper-slide.swiper-slide-next p,
  #negatives .swiper-slide.swiper-slide-prev p {
    font-size: 16px;
  }

  #negatives .swiper-slide img,
  #negatives .swiper-slide.swiper-slide-active img,
  #negatives .swiper-slide.swiper-slide-next img,
  #negatives .swiper-slide.swiper-slide-prev img {
    margin-right: 0;
    width: 30px;
  }

  #negatives .swiper-slide .img-bg,
  #negatives .swiper-slide.swiper-slide-active .img-bg,
  #negatives .swiper-slide.swiper-slide-next .img-bg,
  #negatives .swiper-slide.swiper-slide-prev .img-bg {
    margin-right: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transform: translateX(-25%) scale(1);
  }

  #negatives .swiper-button-prev,
  #negatives .swiper-button-next {
    display: none;
  }

  #negatives-section .rhcp-img {
    width: 200px;
  }

  #negatives-section .fries-img {
    right: 0;
    transform: none;
    width: 200px;
  }

  #negatives-section .chips-img {
    left: auto;
    right: 0;
    width: 180px;
  }
}

@media (max-width: 500px) {

  #negatives .swiper-slide h4,
  #negatives .swiper-slide.swiper-slide-active h4 {
    font-size: 16px;
  }

  #negatives .swiper-slide p,
  #negatives .swiper-slide.swiper-slide-active p,
  #negatives .swiper-slide.swiper-slide-next p,
  #negatives .swiper-slide.swiper-slide-prev p {
    font-size: 14px;
  }
}

/* #endregion negatives */

/* #region positives */
#positives-section {
  position: relative;
}

#positives-section .tomato-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  z-index: -1;
}

#positives-section .broccoli-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  z-index: -1;
}

#positives-section .broccoli-min-img {
  position: absolute;
  left: 60%;
  bottom: 0;
  width: 320px;
  z-index: -1;
}

#positives {
  height: 400px;
}

#positives .swiper-button-prev {
  top: 10%;
  bottom: auto;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#positives .swiper-button-next {
  top: auto;
  bottom: -5%;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}

#positives .swiper-button-prev,
#positives .swiper-button-next {
  color: var(--green-c);
}

#positives .swiper-wrapper {
  align-items: center;
}

#positives .swiper-slide {
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: 40%;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 40px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity, width 0.25s ease-in;
}

#positives .swiper-slide.swiper-slide-active {
  width: 50%;
}

#positives .swiper-slide.swiper-slide-prev,
#positives .swiper-slide.swiper-slide-next {
  opacity: 0.6;
}

#positives .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#positives .swiper-slide h4 {
  font-size: 22px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--green-c);
}

#positives .swiper-slide p {
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--grey-c);
}

#positives .swiper-slide.swiper-slide-active h4 {
  font-size: 28px;
}

#positives .swiper-slide.swiper-slide-active p {
  font-size: 20px;
}

#positives .swiper-slide .img-bg {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-c);
  transform: translateX(-20px);
  border-radius: 50%;
  box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

#positives .swiper-slide img {
  max-width: 70%;
  max-height: 80%;
}

#positives .swiper-slide.swiper-slide-active .img-bg {
  scale: 1.1;
}

@media (max-width: 1180px) {
  #positives .swiper-slide {
    width: 60%;
  }

  #positives .swiper-slide.swiper-slide-active {
    width: 70%;
  }
}

@media (max-width: 819px) {
  #positives {
    height: max-content;
    padding: 24px 0;
  }

  #positives .swiper-slide,
  #positives .swiper-slide.swiper-slide-active,
  #positives .swiper-slide.swiper-slide-next,
  #positives .swiper-slide.swiper-slide-prev {
    width: 95%;
    height: 60px !important;
    opacity: 1;
    box-shadow: 0 0 0 2px rgb(255, 255, 255),
      0.01em 0.1em 1em rgba(0, 0, 0, 0.3);
  }

  #positives .swiper-slide span,
  #positives .swiper-slide.swiper-slide-active span,
  #positives .swiper-slide.swiper-slide-next span,
  #positives .swiper-slide.swiper-slide-prev span {
    margin: 0;
    font-size: 32px;
  }

  #positives .swiper-slide h4,
  #positives .swiper-slide.swiper-slide-active h4 {
    font-size: 16px;
  }

  #positives .swiper-slide p,
  #positives .swiper-slide.swiper-slide-active p,
  #positives .swiper-slide.swiper-slide-next p,
  #positives .swiper-slide.swiper-slide-prev p {
    font-size: 14px;
  }

  #positives .swiper-slide img,
  #positives .swiper-slide.swiper-slide-active img,
  #positives .swiper-slide.swiper-slide-next img,
  #positives .swiper-slide.swiper-slide-prev img {
    margin-right: 0;
    width: 40px;
  }

  #positives .swiper-slide .img-bg,
  #positives .swiper-slide.swiper-slide-active .img-bg,
  #positives .swiper-slide.swiper-slide-next .img-bg,
  #positives .swiper-slide.swiper-slide-prev .img-bg {
    margin-right: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transform: translateX(-25%) scale(1);
  }

  #positives .swiper-button-prev,
  #positives .swiper-button-next {
    display: none;
  }

  #positives-section .broccoli-min-img {
    left: 30%;
  }

  #positives-section .tomato-img {
    width: 180px;
  }

  #positives-section .broccoli-img {
    width: 200px;
  }

  #positives-section .broccoli-min-img {
    transform: none;
    right: 0;
    left: auto;
    width: 150px;
  }
}

/* #endregion positives */

/* #region articles */
#articles {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}

#articles .swiper-button-prev {
  top: 15%;
}

#articles .swiper-button-next {
  top: 15%;
  left: 70%;
}

#articles .swiper-button-prev,
#articles .swiper-button-next {
  color: var(--grey-c);
}

#articles h3 {
  width: 70%;
  text-align: center;
}

#articles h3 sup {
  font-size: medium;
}

#articles .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.25s ease-in;
}

#articles .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#articles .swiper-slide p {
  padding-left: 24px;
  font-size: 24px;
  border-left: 1px solid var(--grey-c);
  color: var(--grey-c);
}

@media (max-width: 819px) {
  #articles {
    width: 90%;
    padding: 0 24px;
  }

  #articles .swiper-slide h3 {
    font-size: 24px;
    width: 100%;
  }

  #articles .swiper-slide p {
    font-size: 16px;
    width: 100%;
  }

  #articles .swiper-button-prev {
    top: 8%;
  }

  #articles .swiper-button-next {
    top: 8%;
    right: 0;
    left: auto;
  }
}

/* #endregion articles */

/* #region search */
.search {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

.search .request {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 30%;
}

.search h3 {
  color: #787c7f;
}

.search h5 {
  margin-top: 18px;
}

.checkbox-input {
  padding-left: 32px;
  display: flex;
  height: 24px;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-input span {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #eee;
}

.checkbox-input input:checked ~ span {
  background-color: var(--green-c);
}

.checkbox-input span::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-input input:checked ~ span::after {
  display: block;
}

.search-input {
  position: relative;
  display: flex;
  flex-direction: column;
}

.search-input input {
  margin-top: 12px;
  padding: 12px 40px 12px 20px;
  font-size: 18px;
  outline: none;
  border: none;
  background-color: var(--light-grey-c);
}

.search-input img {
  position: absolute;
  height: 28px;
  bottom: 8px;
  right: 10px;
}

.lined-text {
  position: relative;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--grey-c);
}

.lined-text::before,
.lined-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.lined-text::before {
  left: 0;
}

.lined-text::after {
  right: 0;
}

.search .map {
  width: 68%;
}

@media (max-width: 819px) {
  .search {
    flex-direction: column;
    justify-content: baseline;
  }

  .search .request,
  .search .map {
    width: 100%;
  }
}

/* #endregion search */

/* #region articles page */
.articles-list {
  margin: 0 auto;
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.articles-list li {
  position: relative;
  flex-basis: 45%;
  list-style-type: none;
}

.articles-list li.big {
  flex-basis: 55%;
}

.articles-list li a {
  display: block;
  transition: scale 0.15s ease-in;
}

.articles-list li a:hover {
  scale: 1.02;
}

.articles-list li img {
  border-radius: 20px;
  width: 100%;
}

.articles-list li p {
  max-width: 95%;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 12px 24px;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 40px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  color: var(--black-secondary-c);
  text-transform: uppercase;
  font-weight: 700;
}

.articles-list li p sup {
  font-size: x-small;
}

@media (max-width: 1180px) {
  .articles-list li p {
    font-size: 14px;
  }
}

@media (max-width: 819px) {
  .articles-list {
    width: 85%;
    flex-direction: column;
  }
}

/* #endregion articles page */

/* #region article */
.article {
  margin: 48px auto;
  width: 75%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article h2 {
  color: var(--green-c);
}

.article p {
  text-align: justify;
}

.article p,
.article ul li {
  font-size: 20px;
  color: var(--grey-secondary-c);
}

.article p sup,
.article ul li sup {
  font-size: x-small;
  line-height: normal;
}

.article .warn,
.article .highlight {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.article .warn {
  color: var(--orange-c);
}

.article .highlight {
  color: var(--green-c);
}

.article ul li {
  line-height: 120%;
  list-style-position: inside;
  list-style-type: disc;
}

.article ul li::marker {
  color: var(--orange-c);
}

.article ul.green li::marker {
  color: var(--green-c);
}

.source-code {
  margin: 12px 0;
  text-align: end;
  font-size: 16px;
  color: var(--grey-secondary-c);
}

.sources {
  margin-top: 12px;
}

.sources div {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.sources div p {
  font-size: 24px;
  line-height: 100%;
}

.sources div img {
  height: 20px;
  transition: transform 0.25s ease-in;
}

.sources.show div img {
  transform: rotate(90deg);
}

.sources ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  height: 0;
}

.sources.show ul {
  opacity: 1;
  height: auto;
}

.sources ul li {
  font-size: 18px;
  line-height: 110%;
  list-style: none;
  list-style-position: inside;
  height: 0;
  transition: all 0.25s ease-in;
}

.sources.show ul li {
  height: auto;
}

.sources ul li a {
  font-size: inherit;
  transition: all 0.25s ease-in;
}

.sources ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 819px) {
  .article {
    width: 85%;
  }
}

/* #endregion article */

/* #region test page */
.questionnaire {
  margin: 24px auto;
  width: 75%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--grey-c);
}

.questionnaire h1 {
  color: var(--green-c);
}

.questionnaire p {
  font-size: 20px;
  text-align: justify;
}

.questionnaire .questions.hide {
  display: none;
}

.questionnaire .title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.questionnaire .title div {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: linear-gradient(to right top, #048e3f, #37d880);
  text-align: center;
  font-size: 60px;
  line-height: 200%;
  font-weight: bold;
  color: var(--white-c);
}

.questionnaire .title span {
  font-size: 48px;
  line-height: 100%;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--green-c);
}

.questionnaire .answers {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.questionnaire .answers label {
  width: 40%;
  padding: 12px 24px;
  font-size: 30px;
  color: var(--green-c);
  text-align: center;
  background-color: #effaf4;
  border: 0.2vw solid #e7f7ee;
  border-radius: 18px;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.questionnaire .answers label:hover {
  background-color: #bff8d8;
}

.questionnaire .answers label:has(input:checked) {
  background-color: #22a65a;
  color: #effaf4;
}

.questionnaire .answers label input {
  display: none;
}

.questionnaire .next {
  display: block;
  margin: 40px auto 18px;
  width: 40%;
  padding: 12px 12px;
  font-size: 30px;
  color: var(--black-c);
  text-align: center;
  background-color: #FCC52C;
  border: 0.2vw solid #FCC52C;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
 
.questionnaire .next[disabled] {
  pointer-events: none;
  background-color: transparent;
  color: var(--grey-c);
}
 
.questionnaire .next:hover {
  background-color: #ffbd07;
}

.questionnaire .progress {
  text-align: center;
}

.questionnaire .result {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.questionnaire .result div,
.questionnaire .result a {
  display: none;
  opacity: 0;
}

.questionnaire .result a {
  width: max-content;
  padding-bottom: 4px;
  font-size: 22px;
  color: var(--grey-c);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease-in;
}

.questionnaire .result a:hover {
  border-color: var(--grey-c);
}

.questionnaire .result div {
  width: 80%;
  padding: 12px 24px;
  font-size: 32px;
  color: var(--white-c);
  text-align: center;
}

.questionnaire .result.good div,
.questionnaire .result.middle div,
.questionnaire .result.bad div {
  display: block;
  opacity: 0.5;
}

.questionnaire .result.good a,
.questionnaire .result.middle a,
.questionnaire .result.bad a {
  display: inline;
  opacity: 1;
}

.questionnaire .result.good div {
  background-color: var(--green-c);
}

.questionnaire .result.middle div {
  background-color: var(--orange-c);
}

.questionnaire .result.bad div {
  background-color: var(--red-c);
}

@media (max-width: 819px) {
  .questionnaire {
    width: 100%;
    padding: 0 24px;
    gap: 12px;
  }

  .questionnaire p {
    font-size: 16px;
  }

  .questionnaire .title {
    gap: 12px;
  }

  .questionnaire .title div {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .questionnaire .title span {
    font-size: 24px;
  }

  .questionnaire .answers {
    margin-top: 14px;
    gap: 12px;
  }

  .questionnaire .answers label {
    width: 75%;
    font-size: 20px;
  }

  .questionnaire .next {
    width: 80%;
    font-size: 20px;
  }

  .questionnaire .result div {
    width: 100%;
    font-size: 28px;
  }
}

/* #endregion test page */
.swiper,
.swiper .swiper-wrapper,
.swiper .swiper-slide {
  touch-action: pan-y !important;
  -ms-touch-action: pan-y !important;
}

/* Widget */

#cmpWidget {
  margin-bottom: 50px;
}

#cmpWidget .cmp-container {
  padding: 0 20px;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.cmp-tab-links {
  display: none;
}

#gwSearchType,
#gwSearch {
  width: 30%;
}

#gwSearchType h1 {
  font-size: 32px;
  color: #787c7f;
}

#gwSearchType button {
  margin-top: 20px;
  margin-right: 20px;
  width: max-content;
  padding: 16px;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s ease-in;
  border: none;
  cursor: pointer;
}

#gwSearchType button.gw-bg-green {
  background-color: var(--green-c);
  color: var(--white-c);
}

#gwSearchType button.gw-bg-green-outline {
  background-color: #efefef;
  color: var(--green-c);
}

#gwSearchType button.gw-bg-green-outline:hover {
  background-color: var(--green-c);
  color: var(--white-c);
}

#gwSearchType .select-search {
  margin-top: 20px;
  font-weight: bold;
  font-size: 24px;
  color: #787c7f;
}

#gwSearchType label {
  margin-top: 20px;
  padding-left: 32px;
  display: flex;
  height: 24px;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#gwSearchType label svg {
  display: none;
}

#gwSearchType input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#gwSearchType span {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #eee;
}

#gwSearchType input:checked ~ label span {
  background-color: var(--green-c);
}

#gwSearchType label span::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#gwSearchType input:checked ~ label span::after {
  display: block;
}

#gwSearch .form-container .select-search {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #787c7f;
  text-align: left;
  text-transform: none;
}

#gwSearch .form-container .select-search::after,
#gwSearch .form-container .select-search::before {
  display: none;
}

#gwSearch .select-search {
  margin-top: 20px;
  position: relative;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--grey-c);
  text-transform: lowercase;
}
#gwSearch .select-search::before,
#gwSearch .select-search::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}
#gwSearch .select-search::before {
  left: 0;
}
#gwSearch .select-search::after {
  right: 0;
}

#gwSearch .form-container label {
  margin-top: 20px;
  position: relative;
  width: 100%;
  display: block;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 4px;
  text-transform: uppercase;
}

#gwSearch .form-container input {
  display: block;
  margin-top: 12px;
  width: 100%;
  height: 56px;
  padding-left: 20px;
  font-size: 18px;
  background: #efefef;
  color: var(--secondary-black-c);
  border: none;
  outline: none;
}

#gwSearch .form-container label button {
  background-size: 16px;
  width: 42px;
  height: 42px;
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 2;
  background-position: 50% 50%;
  cursor: pointer;
  left: auto;
  border: none;
  outline: none;
}

#gwSearch .form-container label button svg {
  width: 100%;
  height: 100%;
}

#parentMap {
  grid-area: 1 / 3 / 5 / 6;
}

#parentMap,
#cmpList {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
}

@media (max-width: 819px) {
  #gwSearchType,
  #gwSearch,
  #parentMap,
  #cmpList {
    width: 100%;
  }
 
  #parentMap,
  #cmpList {
    position: relative;
  }
}

/* #region contacts */
.contacts {
  padding: 48px 0 64px;
}

.contacts__header {
  margin-bottom: 24px;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contacts__logo {
  width: 120px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contacts__title {
  font-size: 48px;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--grey-c);
}

.contacts__info {
  display: flex;
  justify-content: center;
}

.contacts__info-content {
  width: 100%;
  max-width: 800px;
  padding: 24px 32px;
  background-color: var(--light-grey-c);
  border: 1px solid var(--white-c);
  border-radius: 24px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.08);
}

.contacts__company-name {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-c);
  text-transform: uppercase;
}

.contacts__address,
.contacts__phone {
  font-size: 20px;
  color: var(--grey-secondary-c);
}

.contacts__address { margin-bottom: 12px; }

.contacts__phone a {
  color: var(--green-c);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in, border-color 0.2s ease-in;
}

.contacts__phone a:hover {
  color: var(--green-secondary-c);
  border-color: var(--green-secondary-c);
}

.mobile-br { display: none; }

@media (max-width: 1180px) {
  .contacts__title { font-size: 36px; }
}

@media (max-width: 819px) {
  .contacts { padding: 32px 0 48px; }

  .contacts__header {
    gap: 12px;
    justify-content: flex-start;
  }

  .contacts__logo { width: 90px; height: 28px; }
  .contacts__title { font-size: 28px; }

  .contacts__info-content {
    padding: 16px 20px;
    border-radius: 18px;
  }

  .contacts__company-name { font-size: 20px; }
  .contacts__address, .contacts__phone { font-size: 16px; }
  .mobile-br { display: inline; }
}

/* #endregion contacts */

/* #region ten-facts */
.ten-facts h1 {
  color: var(--green-c);
}

.fact .title,
.fact .details {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fact .details {
  margin-top: 18px;
}

.fact .title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: var(--white-c);
  filter: drop-shadow(0 0 18px #22a65a) drop-shadow(0 0 20px #22a65a)
    drop-shadow(0 0 26px #22a65a);
}

.fact .title p {
  font-size: 26px;
  font-weight: bold;
  color: var(--green-c);
}

.fact .details img {
  width: 70px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(86%) sepia(28%) saturate(385%)
    hue-rotate(88deg) brightness(88%) contrast(89%);
}

@media (max-width: 819px) {
  .ten-facts {
    width: 100%;
  }

  .fact .title {
    padding: 12px 0;
    position: relative;
    background-color: #e8f7ee;
  }

  .fact .title::before,
  .fact .title::after {
    content: "";
    position: absolute;

    top: 0;
    background-color: #e8f7ee;
    width: 20px;
    height: 100%;
  }

  .fact .title::before {
    left: -20px;
  }
  .fact .title::after {
    right: -20px;
  }

  .fact .title p {
    text-align: start;
  }

  .fact .details img {
    width: 50px;
  }
}
/* #endregion */

/* #region fucntions */
.functions h1 {
  color: var(--green-c);
}

.function .title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.function .title img {
  flex-shrink: 0;
  padding: 8px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  background-color: var(--green-c);
}

.function .title div p,
.function .title div span {
  color: var(--green-c);
  letter-spacing: 0.04em;
}

.function .title div p {
  font-size: 28px;
  font-weight: bold;
}

.function .title div span {
  font-size: 20px;
}

.function .title div sup {
  font-size: small;
}

.function .details {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 819px) {
  .function .title img {
    width: 50px;
    height: 50px;
  }

  .function .title div p {
    text-align: left;
  }
}
/* #endregion */

/* #region new styles for main banner */
#banner .banner-slide-2 .banner-text h1 {
  color: var(--white-c);
  font-size: 52px;
  line-height: 130%;
  letter-spacing: 0.06em;
}

#banner .banner-slide-2 .banner-text h1 span {
  color: var(--yellow-c);
}
/* #endregion */

/* #region articles page change margin style */
.articles-page h1 {
  text-align: center;
}
.articles-list {
  margin: 24px auto 0;
}
/* #endregion */

/* #region single article page style */
.article h1 {
  color: var(--green-c);
}
/* #endregion */

/* #region contacts + policy + new styles */
.info-page {
  margin-bottom: 24px;
}

.info-page .content {
  width: 75%;
  max-width: 880px;
}

.info-page .title {
  margin-bottom: 24px;
  padding: 42px 0;
  width: 100%;
  background-color: var(--green-c);
}

.info-page h1 {
  color: var(--white-c);
}

.info-page p {
  margin-top: 12px;
  font-size: 22px;
  color: var(--grey-secondary-c);
}

@media (max-width: 819px) {
  .info-page .content {
    width: 100%;
  }
}
/* #endregion */

/* #region ten-facts */
.ten-facts h1 {
  color: var(--green-c);
}

.fact .title,
.fact .details {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fact .details {
  margin-top: 18px;
}

.fact .title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: var(--white-c);
  filter: drop-shadow(0 0 18px #22a65a) drop-shadow(0 0 20px #22a65a)
    drop-shadow(0 0 26px #22a65a);
}

.fact .title p {
  font-size: 26px;
  font-weight: bold;
  color: var(--green-c);
}

.fact .details img {
  width: 70px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(86%) sepia(28%) saturate(385%)
    hue-rotate(88deg) brightness(88%) contrast(89%);
}

@media (max-width: 819px) {
  .ten-facts {
    width: 100%;
  }

  .fact .title {
    padding: 12px 0;
    position: relative;
    background-color: #e8f7ee;
  }

  .fact .title::before,
  .fact .title::after {
    content: "";
    position: absolute;

    top: 0;
    background-color: #e8f7ee;
    width: 20px;
    height: 100%;
  }

  .fact .title::before {
    left: -20px;
  }
  .fact .title::after {
    right: -20px;
  }

  .fact .title p {
    text-align: start;
  }

  .fact .details img {
    width: 50px;
  }
}
/* #endregion */

/* #region fucntions */
.functions h1 {
  color: var(--green-c);
}

.function .title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.function .title img {
  flex-shrink: 0;
  padding: 8px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  background-color: var(--green-c);
}

.function .title div p,
.function .title div span {
  color: var(--green-c);
  letter-spacing: 0.04em;
}

.function .title div p {
  font-size: 28px;
  font-weight: bold;
}

.function .title div span {
  font-size: 20px;
}

.function .title div sup {
  font-size: small;
}

.function .details {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 819px) {
  .function .title img {
    width: 50px;
    height: 50px;
  }

  .function .title div p {
    text-align: left;
  }
}
/* #endregion */

/* #region new styles for main banner */
#banner .banner-slide-2 .banner-text h1 {
  color: var(--white-c);
  font-size: 52px;
  line-height: 130%;
  letter-spacing: 0.06em;
}

#banner .banner-slide-2 .banner-text h1 span {
  color: var(--yellow-c);
}
/* #endregion */

/* #region articles page change margin style */
.articles-page h1 {
  text-align: center;
}
.articles-list {
  margin: 24px auto 0;
}
/* #endregion */

/* #region single article page style */
.article h1 {
  color: var(--green-c);
}
/* #endregion */

/* #region contacts + policy + new styles */
.info-page {
  margin-bottom: 24px;
}

.info-page .content {
  width: 75%;
  max-width: 880px;
}

.info-page .title {
  margin-bottom: 24px;
  padding: 42px 0;
  width: 100%;
  background-color: var(--green-c);
}

.info-page h1 {
  color: var(--white-c);
}

.info-page p {
  margin-top: 12px;
  font-size: 22px;
  color: var(--grey-secondary-c);
}

@media (max-width: 819px) {
  .info-page .content {
    width: 100%;
  }
}
/* #endregion */