:root {
  --color-primary: #101010;
  --color-secondary: #005376;
  --color-accent: #4BE88D;
  --color-gray: #F5F5F5;
  --color-dark-gray: #E3E3E3;
  --color-white: #fff;
  --font-main: "Inter", Arial, sans-serif;
  --font-accent: "Karantina", system-ui;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
form,
dl,
dt,
dd,
bdi,
ins,
del {
  margin: 0;
}

dl,
ul,
ol {
  padding: 0;
  list-style: none;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

fieldset,
button,
input,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  background: none;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  color: var(--color-primary);
  background-color: var(--color-gray);
  font-size: 18px;
  line-height: 1.1;
}

body.lock {
  overflow: hidden;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease 0s;
  position: relative;
}

.main {
  flex: 1 1 auto;
  overflow-x: hidden;
  position: relative;
}

.container {
  padding-inline: min(6.771%, 130px);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.container .container {
  padding: 0;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}

.heading.is-center {
  align-items: center;
  text-align: center;
}

.heading__title {
  font-size: 100px;
}

.heading__text {
  font-size: 18px;
  max-width: 534px;
}

section {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--font-accent);
  line-height: 0.9em;
}

textarea,
input {
  width: 100%;
  text-align: right;
  padding-inline: 24px;
  font-size: 16px;
  background-color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  color: var(--color-white);
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  opacity: 0.5;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  opacity: 0.5;
}

textarea::placeholder,
input::placeholder {
  opacity: 0.5;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  height: 70px;
}

textarea {
  height: calc(2rem + 3lh);
  padding-block: 1rem;
  resize: none;
  field-sizing: content;
}

.logo {
  display: block;
}

.logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bgi {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-cover {
  overflow: hidden;
}

.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.effect-zoom {
  overflow: hidden;
}

.effect-zoom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.8s ease 0s;
}

.effect-zoom img:hover {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.sr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.accordion {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1215686275);
  gap: 0;
}

.accordion__item {
  position: relative;
  border: none;
  cursor: pointer;
  min-height: 112px;
  border-top: 1px solid rgba(16, 16, 16, 0.1215686275);
}

.accordion__item.open .accordion__trigger::after {
  rotate: 45deg;
  background-color: var(--color-accent);
}

.accordion__item.open .accordion__panel {
  opacity: 1;
  transition: height 0.3s ease, opacity 0.4s ease 0.1s;
}

.accordion__trigger {
  cursor: pointer;
  background: none;
  text-align: right;
  width: 100%;
  font-size: 28px;
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 140px;
}

.accordion__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  transition: all 0.4s ease 0s;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23101010'/%3E%3C/svg%3E%0A") center/24px no-repeat;
}

.accordion__panel {
  overflow: hidden;
  height: 0;
  min-height: auto;
  transition: height 0.3s ease, opacity 0.4s ease 0s;
  padding-left: 86px;
  will-change: height, opacity;
  position: relative;
}

.accordion__content {
  padding-bottom: 20px;
  max-width: 500px;
}

.author {
  display: flex;
  align-items: center;
  gap: 22px;
}

.author__img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  background-color: var(--color-gray);
  border-radius: 50%;
}

.author__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author__name {
  font-size: 40px;
}

.author__post {
  font-size: 18px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 40px;
}

.socials__item {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.socials__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-fix {
  min-width: 0;
  width: 100%;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  color: rgba(0, 0, 0, 0.3215686275);
  background-color: var(--color-dark-gray);
  transition: all 0.3s ease 0s;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
  background-color: var(--color-accent);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1716 11.0009L10.8076 5.63687L12.2218 4.22266L20 12.0009L12.2218 19.779L10.8076 18.3648L16.1716 13.0009H4V11.0009H16.1716Z' fill='black'/%3E%3C/svg%3E");
  transition: all 0.3s ease 0s;
}

.swiper-button-next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-pagination {
  position: static;
  display: none;
}

.swiper-pagination--light .swiper-pagination-bullet {
  background: var(--color-white);
}

.swiper-pagination--light .swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.swiper-pagination-bullet {
  background: #E8E8E8;
  margin: 0 4.5px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Close button style */
}

.video-popup.active {
  visibility: visible;
  opacity: 1;
}

.video-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.video-popup__content {
  position: relative;
  width: 100%;
  max-width: 80vw;
  aspect-ratio: 16/9;
  background: #000;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-popup__body {
  width: 100%;
  height: 100%;
}

.video-popup__close {
  position: absolute;
  top: -70px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

.dynamic-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dynamic-popup.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.dynamic-popup.active .dynamic-popup__content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dynamic-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.dynamic-popup__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 930px;
  padding-top: 54px;
  z-index: 2;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.dynamic-popup__content::-webkit-scrollbar {
  width: 6px;
}

.dynamic-popup__content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.dynamic-popup__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: var(--color-primary);
  transition: color 0.2s;
  font-weight: 400;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  z-index: 2;
}

.dynamic-popup__close img {
  width: 100%;
  height: 100%;
}

.dynamic-popup__body {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  border: 1px solid transparent;
  line-height: 1em;
  white-space: nowrap;
  border-radius: 100px;
  height: 74px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 18px;
}

.btn--accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.btn--accent:hover,
.btn--accent:focus {
  background-color: #3FD77F;
}

.btn--outline-white {
  background-color: var(--color-primary);
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn--outline-white:hover,
.btn--outline-white:focus {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}

.header__logo {
  flex: 0 0 210px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1 1 auto;
}

.header__nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100svh;
  z-index: -1;
  background-color: #000;
  opacity: 0;
  display: none;
  pointer-events: none;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: opacity 0s ease 0s;
}

.header__menu {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: 60px;
  font-size: 18px;
}

.header__menu li {
  white-space: nowrap;
}

.header__phone {
  height: 62px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__btn-menu {
  display: none;
  cursor: pointer;
}

.header__btn-menu .icon-burger {
  display: block;
}

.header__btn-menu .icon-close {
  display: none;
}

.header__btn-menu.open .icon-burger {
  display: none;
}

.header__btn-menu.open .icon-close {
  display: block;
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer__body {
  display: flex;
  padding: 120px 0;
  gap: 70px;
  display: grid;
  grid-template-areas: "heading form" "contacts form";
  grid-template-columns: 1fr min(650px, 50%);
  grid-template-rows: auto 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}

.footer__heading {
  grid-area: heading;
}

.footer__title {
  font-size: min(7.396vw, 142px);
  margin-bottom: 32px;
  max-width: min(46.354vw, 890px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
}

.footer__title span {
  color: var(--color-accent);
  flex: 0 0 100%;
}

.footer__text {
  max-width: 520px;
}

.footer__contacts {
  grid-area: contacts;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 32px;
  font-weight: 500;
}

.footer__contacts > a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__form {
  grid-area: form;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__form label {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.footer__form [type=submit] {
  width: 100%;
  margin-top: 28px;
  height: 74px;
  font-size: 20px;
}

.footer__bottom {
  padding: 40px 0 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  font-size: 14px;
}

.footer__exit-links {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 0.5em;
}

/**
 * =========================================================================================
 * --																 HOME
 * =========================================================================================
 */

.hero {
/*   background: var(--color-primary) url('/wp-content/uploads/2026/08/bg3-1.png') 100% 100% / contain no-repeat; */
  background-color: #FBF1EA;
  color: var(--color-primary);
  position: relative;
}

.hero__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
}

.hero__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__slider {
	height: 100%;
}

.hero__pagination.swiper-pagination {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

@media (max-width: 768px) {
	.hero__pagination.swiper-pagination {
		display: none;
	}
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__wrap {
  height: 100svh;
  max-height: 55vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: min(1.563vw, 30px);
}

.hero__label {
  height: min(2.396vw, 46px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: min(1.458vw, 28px);
  background-color:  #fff;
  gap: min(0.521vw, 10px);
  font-size: min(0.938vw, 18px);
  border-radius: 100px;
}

.hero__label::before {
  content: "";
  width: min(0.365vw, 7px);
  height: min(0.365vw, 7px);
  flex: 0 0 min(0.365vw, 7px);
  background-color: var(--color-accent);
  display: block;
  position: relative;
  top: 0.1em;
}

.hero__title {
  font-size: min(7.396vw, 142px);
}

.hero__text {
  font-size: min(0.938vw, 18px);
  max-width: min(28.646vw, 550px);
}

.hero__bottom {
  display: flex;
  align-items: center;
  gap: min(0.417vw, 8px);
}

.stats {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.stats__wrap {
  padding: min(3.646vw, 70px) 0 min(5.208vw, 100px);
}

.stats__list {
  display: flex;
  justify-content: space-between;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: min(0.833vw, 16px);
}

.stats__value {
  font-size: min(7.396vw, 142px);
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 1;
}

.stats__label {
  font-size: min(1.25vw, 24px);
}

.solutions {
  padding: 200px 0 170px;
}

.solutions__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.solutions__slider .swiper-slide {
  height: auto;
}

.solutions__controls {
  margin-top: 64px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card__images {
  overflow: hidden;
}

.solution-card__main-img {
  cursor: pointer;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution-card__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 auto;
  background-color: var(--color-white);
}

.solution-card__content h3 {
  font-size: 48px;
}

.solution-card__content p {
  max-width: 410px;
  flex: 1 1 auto;
}

.solution-card__content .btn {
  margin-top: 16px;
  height: 66px;
  flex-direction: row-reverse;
  align-items: center;
  display: flex;
  gap: 10px;
}

.solution-card__content .btn::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99679 9.41421L16.6034 18.0208L18.0176 16.6066L9.41099 8H16.9968V6H5.99679V17H7.99679V9.41421Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-us {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.about-us__wrap {
  display: flex;
}

.about-us__content {
  flex: 1 1 auto;
  padding: 90px 0;
  padding-right: 40px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  gap: 60px;
}

.about-us__text {
  font-size: 32px;
  font-weight: 500;
  margin-top: 20px;
}

.about-us .heading__text {
  font-size: 20px;
}

@media (max-width: 768px) {
    .about-us .heading__text {
        font-size: 16px;
    }
}

.about-us .author {
  gap: 32px;
}

.about-us__sliders {
  flex: 0 0 936px;
  margin-right: min(-6.771%, -130px);
  display: flex;
  border-left: 1px solid rgba(255, 255, 255, 0.1215686275);
}

.about-us__slider-main-wrap {
  flex: 800px;
  position: relative;
  height: 100%;
  width: 800px;
}

.about-us__slider-main {
  height: 100%;
}

.about-us__slider-thumbs-wrap {
  flex: 0 0 136px;
}

.about-us__slider-thumbs {
  padding: 16px;
  width: 100%;
  height: calc(100% - 272px);
  flex: 1 1 auto;
}

.about-us__slider-thumbs .swiper-wrapper {
  justify-content: center;
}

.about-us__slider-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.about-us__slider-thumbs .swiper-slide.swiper-slide-thumb-active::after {
  background-color: var(--color-accent);
  height: 8px;
}

.about-us__slider-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us__slider-thumbs .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.about-us__controls {
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 20;
  gap: 0;
}

.about-us__btn-prev,
.about-us__btn-next {
  width: 136px;
  height: 136px;
  flex: 0 0 136px;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.1215686275);
  background-color: transparent;
  border-radius: 0;
}

.about-us__btn-prev::after,
.about-us__btn-next::after {
  -webkit-filter: brightness(100%) invert(1);
          filter: brightness(100%) invert(1);
}

.about-us__btn-prev:hover::after,
.about-us__btn-next:hover::after {
  -webkit-filter: initial;
          filter: initial;
}

.video-card {
  position: relative;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.video-card:hover .video-card__content {
  background-color: rgba(0, 0, 0, 0.1450980392);
  scale: 1.08;
}

.video-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.4s ease 0s;
}

.video-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-card__content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  gap: 24px;
  transition: all 0.4s ease 0s;
  will-change: scale;
}

.video-card__text {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-accent);
}

.video-card .btn-play {
  position: static;
  -webkit-transform: initial;
          transform: initial;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  color: var(--color-primary);
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

.video-card .btn-play svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.products {
  padding: 180px 0 150px;
}

.products__slider {
  margin-top: 72px;
}

.products__controls {
  margin-top: 100px;
}

.products .swiper-slide {
  height: auto;
}

.products .swiper-slide .product-card {
  height: 100%;
}

.products .swiper-slide .product-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.products .swiper-slide .product-card__label {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1 1 auto;
}

.products .swiper-slide .product-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-card {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.product-card__main-img {
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
  cursor: pointer;
}

.product-card__main-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.product-card__content {
  border-top: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding: 40px;
}

.product-card__title {
  font-size: 40px;
  margin-bottom: 12px;
}

.product-card__label {
  color: #898989;
  margin-bottom: 32px;
}

.product-card__text {
  margin-bottom: 32px;
  max-width: 390px;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-direction: row-reverse;
}

.product-card__price {
  font-size: 32px;
  font-family: var(--font-accent);
}

.product-card.btn {
  height: 64px;
  font-size: 18px;
}

.product-card__popup-row {
  display: flex;
  min-height: 560px;
}

.product-card__popup-row .product-card__content {
  flex: 0 0 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-top: none;
  position: relative;
}

.product-card__popup-row .product-card__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: calc(100% + 54px);
  background-color: rgba(0, 0, 0, 0.1215686275);
}

.product-card__popup-row .product-card__title {
  margin-bottom: 24px;
}

.product-card__popup-row .product-card__bottom {
  margin-top: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.product-card__popup-row .product-card__price {
  font-size: 48px;
}

.product-card__popup-row .btn {
  width: 100%;
  height: 64px;
}

.product-card__gallery {
  width: 50%;
  flex: 0 0 50%;
  padding: 40px;
}

.product-card .popup-thumbs-slider .swiper-wrapper {
  justify-content: center;
}

.product-card .popup-thumbs-slider .swiper-slide {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1215686275);
}

.product-card .popup-thumbs-slider .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #ECECEC;
  background-color: #ECECEC;
}

.product-card .popup-thumbs-slider .swiper-slide.swiper-slide-thumb-active::after {
  background-color: var(--color-accent);
  height: 4px;
}

.product-card .popup-thumbs-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card .popup-thumbs-slider .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.services {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.services__wrap {
  padding: 220px 0 185px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.services__list {
  display: grid;
  gap: 20px;
  grid-template-areas: "area1 area2 area4" "area1 area3 area4";
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: 1fr 1fr;
}

.services__item {
  background-color: #292929;
  padding: 32px;
  display: flex;
  justify-content: space-between;
}

.services__item--1 {
  grid-area: area1;
}

.services__item--2 {
  grid-area: area2;
}

.services__item--3 {
  grid-area: area3;
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.services__item--4 {
  grid-area: area4;
}

.services__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 314px;
  width: 100%;
}

.services__item-content img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-bottom: 16px;
}

.services__item-content h3 {
  font-size: 64px;
}

.services__item-img {
  flex: 1 1 auto;
  padding-right: 20px;
  height: 100%;
}

.recommends__wrap {
  padding: 200px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.recommends__controls {
  margin-top: 120px;
}

.recommends-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recommends-card__cover-wrap {
  position: relative;
  cursor: pointer;
}

.recommends-card__img {
  position: relative;
  aspect-ratio: 54/52;
}

.recommends-card__img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.reviews {
  background-color: var(--color-white);
  padding: 150px 0;
}

.reviews__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.reviews .heading__text {
  max-width: none;
}

.reviews__controls {
  margin-top: 100px;
}

.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.review::before {
  content: "";
  display: inline-block;
  font-size: 188px;
  height: 100px;
  width: 66px;
  vertical-align: middle;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='36' viewBox='0 0 60 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.000727634 35.8278L6.97642 -0.000813153H27.7193L20.7421 35.8278H-0.000727634ZM31.4892 35.8278L38.4664 -0.000813153H59.2092L52.2321 35.8278H31.4892Z' fill='%234BE88D'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.review__text {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 48px;
}

.review__name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-accent);
}

.review__post {
  font-weight: 500;
}

.steps {
  padding: 100px 0 240px;
}

.steps__wrap {
  display: flex;
  flex-direction: column;
  gap: 95px;
}

.steps__list {
  display: flex;
  gap: 55px;
  counter-reset: list;
  position: relative;
}

.steps__list > li::before {
  counter-increment: list;
  content: counter(list) "";
}

.steps__list::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #D9D9D9;
  height: 2px;
  width: 100vw;
  top: 44px;
  right: calc((100vw - 100%) / 2 * -1);
}

.steps__list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.steps__list li::before {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-accent);
  z-index: 5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.steps__list li::after {
  content: "";
  position: absolute;
  z-index: 3;
  background-color: var(--color-primary);
  top: 43px;
  right: 0;
  width: 0;
  height: 5px;
  transition: width 0.6s ease-in-out;
}

.steps__list li.active::before {
  background-color: var(--color-primary);
  color: var(--color-accent);
}

.steps__list li.active::after {
  width: calc(100% + 55px);
}

.steps__list li:nth-child(5)::after {
  display: none;
}

.steps__list li h3 {
  margin-bottom: 16px;
  font-size: 32px;
}

.faq {
  background-color: #ECECEC;
  position: relative;
  min-height: 1140px;
}

.faq__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(40.625vw, 780px);
}

.faq__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  width: 100%;
  height: 100%;
}

.faq__wrap {
  display: flex;
}

.faq__content {
  width: 100%;
  padding-right: 50%;
  padding-block: 120px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.btn-play {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  background-color: var(--color-accent);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: all 0.4s ease 0s;
  border: 1px solid var(--color-accent);
  pointer-events: none;
}

.btn-play svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.gprev.gbtn,
.gnext.gbtn {
  top: 50%;
}

#contact-form {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.video-popup__body > div,
.video-popup__body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-popup__body iframe[hidden] {
  display: none;
}

.video-popup__content--vertical {
  width: min(90vw, 540px);
  max-width: none;
  height: min(90vh, 960px);
  aspect-ratio: 9/16;
}

.video-popup__content--vertical #popup-youtube-player {
  display: none;
}

.video-popup__content--vertical .video-popup__close {
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  font-size: 36px;
}

@media (min-width: 577px) {
  .hero .btn {
    height: min(3.854vw, 74px);
    padding: 0 min(1.667vw, 32px);
    font-size: min(0.938vw, 18px);
    gap: min(0.521vw, 10px);
  }

  .hero .btn img {
    width: min(1.25vw, 24px);
  }
}

@media (min-width: 999px) {
  .recommends-card__cover-wrap:not(:hover) .btn-play {
    border: 1px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
  }
}

@media (min-width: 1921px) {
  .about-us__sliders {
    margin-right: 0;
  }
}

@media (min-width: 2000px) {
  .hero__bg {
    height: 100%;
/*     max-height: 80svh; */
  }

  .hero__bg img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}

@media (max-width: 1800px) {
  .header__menu {
    gap: 30px;
  }

  .header__socials {
    gap: 24px;
  }

  .header__phone span {
    display: none;
  }
}

@media (max-width: 1600px) {
  .services__item--4 {
    flex-direction: column;
  }

  .services__item-img {
    padding-right: 0;
    padding-top: 32px;
    height: 200px;
    width: 100%;
  }
}

@media (max-width: 1500px) {
  .about-us__wrap {
    flex-direction: column-reverse;
    gap: 64px;
    padding: 64px 0;
  }

  .about-us__content {
    margin-right: 0;
    gap: 32px;
    padding: 0;
  }

  .about-us__sliders {
    margin-right: 0;
    border: 1px solid rgba(255, 255, 255, 0.1215686275);
    flex: 0 0 600px;
  }

  .about-us__slider-main-wrap {
    width: calc(100% - 136px);
    flex: 0 0 calc(100% - 136px);
  }
}

@media (max-width: 1400px) {
  .header__socials {
    display: none;
  }

  .services__item-content h3 {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  }

  .header__wrap {
    padding: 0;
    border: none;
    height: 72px;
	flex-direction: row-reverse;
  }

  .header__logo {
    flex: 0 0 144px;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    top: 72px;
    height: calc(100svh - 72px);
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    transition: -webkit-transform 0.4s ease 0s;
    transition: transform 0.4s ease 0s;
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    background-color:  #fff;
    width: 100vw;
    padding: 32px min(6.771%, 130px);
    gap: 42px;
    max-width: 576px;
  }

  .header__nav::before {
    display: block;
  }

  .header__nav.open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }

  .header__nav.open::before {
    opacity: 0.6;
    transition: opacity 0.3s ease 0.4s;
  }

  .header__menu {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    font-size: 32px;
    font-family: var(--font-accent);
    justify-content: flex-start;
  }

  .header__socials {
    display: flex;
    width: 100%;
    order: 1;
    justify-content: center;
  }

  .header__phone {
    width: 100%;
  }

  .header__phone span {
    display: block;
    font-size: 16px;
  }

  .header__btn-menu {
    display: block;
	filter: grayscale(100%) brightness(0);
  }

  .footer__contacts {
    font-size: 24px;
  }

  .video-card__text {
    font-size: 32px;
  }

  .video-card .btn-play {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }

  .video-card .btn-play svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .product-card__content {
    padding: 32px;
  }

  .services__list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  #contact-form {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

@media (max-width: 998px) {
  .heading__title {
    font-size: 80px;
  }

  .heading__text {
    font-size: 16px;
  }

  input {
    height: 64px;
  }

  .footer__body {
    padding: 64px 0;
    gap: 32px;
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "form" "contacts";
  }

  .footer__title {
    font-size: 64px;
    max-width: none;
    margin-bottom: 16px;
  }

  .footer__contacts {
    font-size: 20px;
  }

  .footer__form {
    flex: 0 0 100%;
    max-width: 600px;
  }

  .footer__form label {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer__form [type=submit] {
    height: 64px;
    margin-top: 0;
  }

  .footer__bottom {
    padding: 64px 0;
    flex-wrap: wrap;
  }

  .footer__copy {
    order: 2;
  }

  .footer__exit-links {
    flex: 0 0 100%;
    order: 1;
    margin-right: 0;
  }

  .stats__wrap {
    padding: 56px 0;
  }

  .solutions {
    padding: 64px 0;
  }

  .solutions__wrap {
    gap: 32px;
  }

  .solutions__controls {
    margin-top: 32px;
  }

  .about-us__content {
    padding: 0;
  }

  .products {
    padding: 64px 0;
  }

  .products__slider {
    margin-top: 32px;
  }

  .products__controls {
    margin-top: 32px;
  }

  .services__wrap {
    padding: 64px 0;
    gap: 32px;
  }

  .services__list {
    display: flex;
    flex-direction: column;
  }

  .services__item--1 {
    order: 1;
  }

  .services__item--4 {
    order: 2;
  }

  .services__item-img {
    height: 360px;
  }

  .recommends__wrap {
    padding: 64px 0;
    gap: 32px;
  }

  .reviews {
    padding: 64px 0;
  }

  .steps {
    padding: 64px 0;
  }

  .steps__list {
    flex-direction: column;
  }

  .steps__list::after {
    width: 2px;
    height: 100%;
    top: 24px;
    right: 23px;
    left: auto;
  }

  .steps__list li {
    padding-right: 86px;
    max-width: 300px;
  }

  .steps__list li::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    font-size: 18px;
  }

  .steps__list li::after {
    width: 2px;
    height: 0;
    top: 24px;
    right: 23px;
    transition: height 0.5s ease-in-out;
  }

  .steps__list li.active::after {
    width: 2px;
    height: calc(100% + 55px);
  }

  .steps__list li:nth-child(5)::after {
    background-color: var(--color-gray);
    display: block;
    height: 100%;
  }

  .steps__list li h3 {
    font-size: 24px;
  }

  .faq {
    min-height: auto;
  }

  .faq__bg {
    width: 100%;
    height: 460px;
    top: auto;
    bottom: 0;
  }

  .faq__wrap {
    padding-bottom: 460px;
  }

  .faq__content {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .heading {
    gap: 12px;
  }

  .heading__title {
    font-size: 64px;
  }

  .heading__text {
    font-size: 14px;
  }

  input {
    font-size: 14px;
  }

  .accordion__item {
    min-height: 100px;
  }

  .accordion__trigger {
    font-size: 20px;
    padding-top: 36px;
    min-height: 2lh;
    display: flex;
    align-items: center;
    padding-left: 80px;
  }

  .accordion__trigger::after {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px;
  }

  .video-popup__content {
    max-width: 90vw;
  }

  .video-popup__close {
    font-size: 40px;
  }

  .dynamic-popup__content {
    padding: 0;
  }

  .dynamic-popup__close {
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .btn {
    height: 64px;
    font-size: 16px;
  }

  .header__nav {
    padding: 32px 16px;
  }

  .footer__form label {
    font-size: 16px;
  }

  .footer__bottom {
    font-size: 14px;
    gap: 12px;
  }

  .stats__list {
    flex-wrap: wrap;
    gap: 32px 0;
    justify-content: center;
  }

  .stats__item {
    gap: 8px;
    flex: 0 0 40%;
  }

  .stats__value {
    font-size: 64px;
  }

  .stats__label {
    font-size: 14px;
  }

  .solution-card__content {
    padding: 24px 16px;
  }

  .solution-card__content h3 {
    font-size: 32px;
  }

  .about-us__text {
    font-size: 18px;
  }

  .about-us__sliders {
    flex: 0 0 450px;
    flex-direction: column;
    border: none;
  }

  .about-us__slider-main-wrap {
    width: 100%;
    aspect-ratio: 1;
    flex: 1 1 auto;
  }

  .about-us__slider-thumbs-wrap {
    flex: 1 1 auto;
  }

  .about-us__slider-thumbs {
    height: auto;
    padding: 12px;
  }

  .about-us__slider-thumbs .swiper-slide {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .about-us__controls {
    display: none;
  }

  .video-card__content {
    gap: 12px;
  }

  .video-card__text {
    font-size: 16px;
  }

  .video-card .btn-play {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .video-card .btn-play svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  .product-card__content {
    padding: 24px;
  }

  .product-card.btn {
    gap: 48px;
    font-size: 18px;
  }

  .product-card__popup-row {
    flex-direction: column-reverse;
  }

  .product-card__popup-row .product-card__content {
    padding: 24px 16px;
  }

  .product-card__popup-row .product-card__content::after {
    height: 1px;
    left: 0;
    top: 0;
    width: 100%;
  }

  .product-card__popup-row .product-card__title {
    margin-bottom: 10px;
  }

  .product-card__popup-row .product-card__bottom {
    gap: 30px;
  }

  .product-card__gallery {
    width: 100%;
    flex: 1 1 auto;
    margin: 0 auto;
    max-width: 400px;
    padding: 32px 16px;
  }

  .product-card .popup-thumbs-slider .swiper-slide {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .recommends__controls {
    margin-top: 46px;
  }

  .reviews__wrap {
    gap: 64px;
  }

  .reviews__controls {
    margin-top: 64px;
  }

  .review::before {
    width: 40px;
    height: 24px;
    margin-bottom: 12px;
  }

  .review__text {
    font-size: 24px;
  }

  .steps__wrap {
    gap: 40px;
  }

  .faq .heading {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .author__img {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .author__name {
    font-size: 32px;
  }

  .author__post {
    font-size: 12px;
  }

  .header__socials {
    max-width: none;
  }

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

  .footer__socials {
    order: -1;
    margin-bottom: 20px;
  }

  .hero {
    padding-top: 72px;
/* 	background: var(--color-primary); */
  }

  .hero__bg {
    position: static;
/* 	background: var(--color-primary) url('/wp-content/uploads/2026/08/bg3mob.png') 0 100% / contain no-repeat; */
    width: 100%;
    display: block;
  }
	
	.hero__bg img {
		object-fit:cover;
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-position: bottom center;
	}

  .hero__wrap {
    padding: 52px 0 45px;
    height: auto;
    max-height: none;
    gap: 24px;
  }

  .hero__label {
    font-size: 14px;
    height: 32px;
    padding-inline: 20px;
    gap: 10px;
  }

  .hero__label::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
  }

  .hero__title {
    max-width: 100%;
    font-size: 58px;
  }

  .hero__title br {
    display: none;
  }

  .hero__text {
    max-width: 100%;
    font-size: 18px;
  }

  .hero__bottom {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 12px;
  }

  .hero .btn {
    width: 100%;
    gap: 10px;
  }

  .stats__list {
    flex-direction: column;
    align-items: center;
  }

  .stats__item {
    flex: 0 0 100%;
  }

  .about-us .author__name {
    font-size: 18px;
  }

  .about-us__slider-main-wrap {
    height: 450px;
    aspect-ratio: initial;
  }

  .product-card__content {
    padding: 24px 16px;
  }

  .services__item {
    padding: 16px;
  }

  .services__item-content h3 {
    font-size: 32px;
  }

  .btn-play {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .btn-play svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }
}

@media (min-width: 577px) and (max-width: 576px) {
  .hero .btn img {
    width: 24px;
  }
}

@media (max-height: 1000px) {
  .hero__bg img {
    height: 100%;
/*     max-height: 80svh; */
  }
}

/* fix style plugins */

@media (max-width: 768px) {
	
	.page-template-page-landing #pojo-a11y-toolbar {
    	z-index: 90;
	}

	/* 1. Remove top positioning and anchor the entire widget to the bottom only on landing pages */
	.page-template-page-landing #pojo-a11y-toolbar {
		top: auto !important;
		bottom: 16px !important; 
	}

	/* 2. Make sure the toggle button itself sits at the bottom of the container */
	.page-template-page-landing #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
		top: auto !important;
		bottom: -8px !important;
	}

	/* 3. Force the settings panel to open upwards instead of downwards */
	.page-template-page-landing #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay,
	.page-template-page-landing #pojo-a11y-toolbar .pojo-a11y-toolbar-inner {
		top: auto !important;
		bottom: 0 !important; 
		margin-bottom: 0px !important; 
	}


	.page-template-page-landing #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
		padding: 18px !important;
		border-radius: 50% !important;
		margin-left: 16px !important; 
	}

	.page-template-page-landing #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle svg {
		max-width: 20px !important;
	}

}

/* fix after deploy */


.gfadeIn {
    animation-duration: 0.8s !important;
}

.gfadeOut {
    animation-duration: 0.8s !important;
}

.gslide-image img {
    max-width: 80vw !important;
    max-height: 80vh !important;
    object-fit: contain !important;
}

