@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --main-font: "Inter", sans-serif;
  --green-color: rgb(21, 150, 0);
  --black-color: rgb(38, 38, 38);
  --gray-color: rgb(236, 236, 236);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

* {
  box-sizing: border-box;
}

/* always display scrollbars */
html {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #000;
  font-variant-numeric: lining-nums proportional-nums;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

strong {
  font-weight: bold;
}

input {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h6 {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 700;
  transition: all 0.3s ease;
}
h1.element-animation,
h2.element-animation,
h3.element-animation,
h4.element-animation,
h6.element-animation {
  opacity: 0;
  transform: translate(-50px, -50px);
}
h1.element-show,
h2.element-show,
h3.element-show,
h4.element-show,
h6.element-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

p {
  transition: all 0.3s ease;
}
p.element-animation {
  opacity: 0;
  transform: translate(15px, 5px);
}
p.element-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

.container {
  max-width: 1720px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.element-show,
.element-animation {
  transition: all 0.5s ease !important;
}

.element-animation {
  opacity: 0;
}

.element-show {
  opacity: 1;
}

.green-button {
  background: transparent;
  border-radius: 53px;
  padding: 2px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .green-button {
    padding: 0;
  }
}
.green-button span {
  font-family: var(--main-font);
  font-size: 22px;
  position: inherit;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-color);
  padding: 12px 22px;
  color: #fff;
  z-index: 3;
  transition: all 0.7s ease;
}
.green-button::before {
  background: var(--green-color);
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 50%;
  left: 0;
  top: 0;
  z-index: 2;
  animation: hoverBackBeforeButton 0.6s ease 1;
}
@keyframes hoverBackBeforeButton {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
  }
}
.green-button::after {
  background: var(--green-color);
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 50%;
  right: 0;
  bottom: 0;
  z-index: 2;
  animation: hoverBackAfterButton 0.6s ease 1;
}
@keyframes hoverBackAfterButton {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
    transform: translateX(0%);
  }
}
@media (hover: hover) {
  .green-button:hover span {
    background: #fff;
    color: var(--green-color);
    transition: all 0.7s ease;
  }
  .green-button:hover::before {
    width: 100%;
    animation: hoverBeforeButton 0.6s ease 1;
  }
  @keyframes hoverBeforeButton {
    0% {
      width: 0px;
    }
    100% {
      width: 100%;
    }
  }
  .green-button:hover::after {
    width: 100%;
    animation: hoverAfterButton 0.6s ease 1;
  }
  @keyframes hoverAfterButton {
    0% {
      width: 0px;
      transform: translateX(0%);
    }
    100% {
      width: 100%;
    }
  }
}

.button-main-prev,
.button-main-next {
  width: 48px;
  height: 48px;
  border-radius: 500px;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .button-main-prev,
  .button-main-next {
    width: 25px;
    height: 25px;
  }
}
.button-main-prev:hover,
.button-main-next:hover {
  transition: all 0.3s ease;
  border: 1px solid var(--green-color);
}
.button-main-prev::before,
.button-main-next::before {
  content: "";
  display: block;
  background-image: url("/images/icons/arrow-slider.svg");
  background-position: 55% 51%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: inherit;
  height: inherit;
}

.button-prev,
.button-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 500px;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.button-prev:hover,
.button-next:hover {
  transition: all 0.3s ease;
  border: 1px solid var(--green-color);
}
.button-prev::before,
.button-next::before {
  content: "";
  display: block;
  background-image: url("/images/icons/arrow-slider.svg");
  background-position: 55% 51%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: inherit;
  height: inherit;
}

.button-prev::before,
.button-main-prev::before {
  transform: rotate(180deg);
}

.notyf {
  align-items: center !important;
}

.fancybox-container {
  z-index: 997 !important;
}

.fancybox-slide--html {
  padding: 20px !important;
}

.modal {
  display: none;
  max-width: 721px !important;
  padding: 100px 80px 80px 80px !important;
  border-radius: 50px;
  background: var(--gray-color) !important;
}
@media screen and (max-width: 750px) {
  .modal {
    padding: 60px 40px 40px 40px !important;
  }
}
@media screen and (max-width: 470px) {
  .modal {
    padding: 40px 20px 20px 20px !important;
    border-radius: 30px;
  }
}
.modal .modal-close {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
}
@media screen and (max-width: 470px) {
  .modal .modal-close {
    height: 20px;
    width: 20px;
    top: 10px;
    right: 10px;
  }
}
.modal .modal-close::before {
  content: "";
  display: block;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  background-image: url("/images/icons/close-modal.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.modal .title,
.modal .subtitle {
  font-family: var(--main-font);
  text-align: center;
}
.modal .title {
  color: var(--green-color);
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .modal .title {
    font-size: 22px;
  }
}
.modal .subtitle {
  margin-top: 16px;
  color: var(--black-color);
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .modal .subtitle {
    font-size: 18px;
  }
}
.modal form {
  margin-top: 40px;
  width: 100%;
  /* для элемента input c type="checkbox" */
  /* для элемента label, связанного с .custom-checkbox */
  /* создание в label псевдоэлемента before со следующими стилями */
  /* стили при наведении курсора на checkbox */
  /* стили для активного чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в состоянии checked */
  /* стили для чекбокса, находящегося в состоянии disabled */
}
@media screen and (max-width: 700px) {
  .modal form {
    margin-top: 24px;
  }
}
.modal form .input-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal form .input-container .is-invalid {
  border: 1px solid rgb(226, 61, 61);
  color: rgb(226, 61, 61);
}
.modal form .input-container .is-invalid::placeholder, .modal form .input-container .is-invalid::-ms-input-placeholder {
  color: rgb(226, 61, 61) !important;
}
.modal form .input-container .error {
  color: rgb(226, 61, 61);
  padding-left: 24px;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .modal form .input-container .error {
    padding-left: 16px;
  }
}
.modal form input {
  all: initial;
}
.modal form .fields {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal form .fields input {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  border-radius: 53px;
  padding: 24px;
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .modal form .fields input {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.modal form .fields input::placeholder, .modal form .fields input::-ms-input-placeholder {
  font-family: var(--main-font);
  color: rgb(189, 192, 191);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .modal form .fields input::placeholder, .modal form .fields input::-ms-input-placeholder {
    font-size: 14px;
  }
}
.modal form .custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.modal form .custom-checkbox > span a,
.modal form .custom-checkbox > span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgb(155, 155, 155);
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 470px) {
  .modal form .custom-checkbox > span a,
  .modal form .custom-checkbox > span {
    font-size: 14px;
  }
}
.modal form .custom-checkbox > span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgb(155, 155, 155);
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  background: #fff;
}
@media screen and (max-width: 470px) {
  .modal form .custom-checkbox > span::before {
    height: 20px;
    width: 20px;
  }
}
.modal form .custom-checkbox > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:not(:disabled):active + span::before {
  background-image: url("/images/icons/ckeckbox.svg");
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: center;
  background-color: #fff;
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:checked + span::before {
  background-image: url("/images/icons/ckeckbox.svg");
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-color: #fff;
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:disabled + span::before {
  background-color: #e9ecef;
}
.modal form button {
  cursor: pointer;
  width: 100%;
  margin-top: 40px;
  border: none;
}
@media screen and (max-width: 700px) {
  .modal form button span {
    padding: 16px 24px;
    font-size: 18px;
  }
}
@media screen and (max-width: 470px) {
  .modal form button {
    margin-top: 32px;
  }
}

main {
  min-height: inherit;
  font-family: "Inter";
}

#signboard {
  margin-top: 144px;
  margin-bottom: clamp(56px, 4vw, 96px);
}
#signboard .link {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 51px);
  font-size: clamp(5px, 4vw, 14px);
  font-weight: 400;
  flex-wrap: wrap;
}
#signboard .link a {
  color: #03c03c;
}
#signboard .signboard {
  width: 100%;
  min-height: clamp(450px, 100vw, 850px);
  border-radius: clamp(20px, 4vw, 40px);
  background: url("/images/restoranyi/signboard.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#signboard .signboard article {
  background: url("/images/other/shadow.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  border-radius: clamp(20px, 4vw, 40px);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 4vw, 42px);
}
#signboard .signboard article h1 {
  text-align: center;
  font-size: clamp(24px, 4vw, 42px);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 23px 23px 43px #262626;
}
#signboard .signboard article .green-button span {
  font-weight: 600;
  font-size: clamp(12px, 4vw, 22px);
  padding: clamp(14px, 4vw, 24px) clamp(20px, 4vw, 65px);
}

#restaurant-benefits {
  margin-bottom: clamp(56px, 4vw, 96px);
}
#restaurant-benefits .restaurant-benefits {
  display: flex;
  flex-direction: column;
}
#restaurant-benefits .restaurant-benefits .steps {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  #restaurant-benefits .restaurant-benefits .steps {
    flex-direction: row;
    border-left: 2px solid var(--green-color);
    margin-left: 4rem;
    margin-top: 40px;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  #restaurant-benefits .restaurant-benefits .steps {
    margin-left: 2.5rem;
  }
}
#restaurant-benefits .restaurant-benefits .steps__line {
  border: 2px solid var(--green-color);
  width: 100%;
  margin: 140px 0 60px 0;
}
@media screen and (max-width: 1100px) {
  #restaurant-benefits .restaurant-benefits .steps__line {
    display: none;
  }
}
#restaurant-benefits .restaurant-benefits .steps__line.element-animation {
  transition: all 0.4s ease !important;
  transform: translateX(-100px);
}
#restaurant-benefits .restaurant-benefits .steps__line.element-show {
  transform: translateX(0px) !important;
}
#restaurant-benefits .restaurant-benefits .steps__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  #restaurant-benefits .restaurant-benefits .steps__container {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    max-width: 70%;
    margin-left: 5rem;
    gap: 46px;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding-left: 7rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1430px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element {
    gap: 16px;
  }
}
@media screen and (max-width: 650px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element {
    padding-left: 0;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation {
  transition: all 0.4s ease !important;
  transform: translateX(-100px);
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation .number, #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation .text {
  transition: all 0.4s ease !important;
  opacity: 0;
  transform: translateY(-50px);
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) {
  transition-delay: 0.5s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) {
    transition-delay: 0.1s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) .number {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) .number {
    transition-delay: 0.3s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) .text {
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(1) .text {
    transition-delay: 0.5s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) {
    transition-delay: 0.3s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) .number {
  transition-delay: 1.1s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) .number {
    transition-delay: 0.6s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) .text {
  transition-delay: 1.3s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(2) .text {
    transition-delay: 0.8s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) {
  transition-delay: 1.1s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) {
    transition-delay: 0.6s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) .number {
  transition-delay: 1.4s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) .number {
    transition-delay: 0.8s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) .text {
  transition-delay: 1.7s !important;
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element.element-animation:nth-child(3) .text {
    transition-delay: 1s !important;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-show {
  transform: translateX(0px) !important;
}
#restaurant-benefits .restaurant-benefits .steps__container .element.element-show .number, #restaurant-benefits .restaurant-benefits .steps__container .element.element-show .text {
  transform: translateY(0px);
  opacity: 1;
}
#restaurant-benefits .restaurant-benefits .steps__container .element .icon {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 32px;
  width: 100%;
  top: -80px;
}
@media screen and (max-width: 1100px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element .icon {
    top: 0;
    left: -6.6rem;
    height: 100%;
    max-width: 50px;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element .number {
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 700;
}
@media screen and (max-width: 650px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element .number {
    font-size: 32px;
  }
}
#restaurant-benefits .restaurant-benefits .steps__container .element .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
  max-width: 90%;
}
@media screen and (max-width: 650px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  #restaurant-benefits .restaurant-benefits .steps__container .element:nth-child(1) {
    margin-top: 3rem;
  }
}
#restaurant-benefits .restaurant-benefits__title {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
}
#restaurant-benefits .restaurant-benefits__title h2 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  color: #262626;
}
#restaurant-benefits .restaurant-benefits__title p {
  font-size: clamp(15px, 4vw, 24px);
  font-weight: 400;
}

#using {
  margin-bottom: clamp(56px, 4vw, 96px);
}
#using .using-title {
  margin-bottom: clamp(46px, 4vw, 56px);
}
#using .using-title h3 {
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
}
#using .using-title h3 span {
  color: #159600;
}
#using .using-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 4vw, 32px);
  align-items: stretch;
}
#using .using-cards__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 25px;
  gap: 32px;
  background: #ececec;
  border-radius: clamp(10px, 4vw, 30px);
}
#using .using-cards__item.element-animation {
  transition: all 0.4s ease !important;
  transform: translate(-100px, -100px);
  transition-delay: 0.3s !important;
}
@media screen and (max-width: 1000px) {
  #using .using-cards__item.element-animation {
    transition-delay: 0s !important;
  }
}
#using .using-cards__item.element-show {
  transform: translate(0px, 0px) !important;
}
#using .using-cards__item img {
  width: clamp(64px, 4vw, 144px);
  height: auto;
}
#using .using-cards__item article {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: clamp(16px, 4vw, 31px);
}
#using .using-cards__item article span {
  font-weight: 700;
  font-size: clamp(18px, 4vw, 24px);
}
#using .using-cards__item article p {
  font-weight: 400;
  font-size: clamp(12px, 4vw, 16px);
}

#optimized {
  margin-bottom: clamp(56px, 4vw, 96px);
}
#optimized .optimized-title h3 {
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: clamp(24px, 4vw, 56px);
}
#optimized .optimized-title h3 span {
  color: #159600;
}
#optimized .optimized-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 4vw, 33px);
}
#optimized .optimized-main p {
  font-weight: 400;
  font-size: clamp(10px, 4vw, 24px);
}
@media (max-width: 1551px) {
  #optimized .optimized-main p {
    font-size: clamp(10px, 4vw, 18px) !important;
  }
}
#optimized .optimized-main img {
  max-width: 863px;
  border-radius: clamp(15px, 4vw, 40px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#integrate {
  margin-bottom: clamp(76px, 4vw, 126px);
}
#integrate .integrate-title {
  margin-bottom: clamp(24px, 4vw, 56px);
}
#integrate .integrate-title h4 {
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 700;
}
#integrate .integrate-title h4 span {
  color: #009901;
}
#integrate .integrate .swiper-scrollbar-drag {
  background: #009901;
}
#integrate .integrate .swiper-scrollbar-drag:hover {
  background: #029102;
}
#integrate .integrate .swiper-wrapper .swiper-slide {
  display: flex;
  gap: clamp(16px, 4vw, 32px);
}
@media (max-width: 1150px) {
  #integrate .integrate .swiper-wrapper .swiper-slide {
    gap: 32px;
  }
}
#integrate .integrate .swiper-wrapper .swiper-slide__item {
  background: #ECECEC;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex: 1;
  gap: clamp(20px, 4vw, 40px);
  min-width: 530px;
  height: 390px;
  margin-bottom: clamp(25px, 4vw, 50px);
}
@media (max-width: 1600px) {
  #integrate .integrate .swiper-wrapper .swiper-slide__item {
    height: 280px;
    min-width: 100%;
    padding: 14px;
  }
}
#integrate .integrate .swiper-wrapper .swiper-slide__item article {
  display: inherit;
  flex-direction: inherit;
  gap: 16px;
}
#integrate .integrate .swiper-wrapper .swiper-slide__item article h4 {
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 600;
}
#integrate .integrate .swiper-wrapper .swiper-slide__item article p {
  font-size: clamp(14px, 4vw, 24px);
}
#integrate .integrate .swiper-wrapper .swiper-slide__item .number {
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 700;
  color: white;
  background: #159600;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
@media (max-width: 1150px) {
  #integrate .integrate .swiper-wrapper .swiper-slide__item .number {
    width: 38px;
    height: 38px;
  }
}

#questions {
  margin-bottom: clamp(56px, 4vw, 96px);
}
#questions .questions {
  border-radius: clamp(20px, 4vw, 40px);
  background: #ECECEC;
  width: 100%;
  padding: 75px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 608px) {
  #questions .questions {
    padding: 45px 35px;
  }
}
#questions .questions img {
  width: 520px;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#questions .questions-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
}
#questions .questions-text h4 {
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 700;
}
#questions .questions-text p {
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 400;
}
#questions .questions-text a {
  margin-bottom: clamp(15px, 4vw, 35px);
  margin-top: clamp(16px, 4vw, 35px);
}
#questions .questions-text a span {
  font-weight: 600;
  font-size: clamp(12px, 4vw, 22px);
  padding: clamp(14px, 4vw, 24px) clamp(20px, 4vw, 65px);
}/*# sourceMappingURL=style.css.map */