@charset "UTF-8";
@import './../fonts/bentogaThin/stylesheet.css';
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
/*.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
} */
body {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--color-white);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

.padding-150 {
  padding: 150px 0;
}
@media (max-width: 1023.98px) {
  .padding-150 {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .padding-150 {
    padding: 60px 0;
  }
}
@media (max-width: 479.98px) {
  .padding-150 {
    padding: 40px 0;
  }
}

.padding0-150 {
  padding: 0 0 150px 0;
}
@media (max-width: 1023.98px) {
  .padding0-150 {
    padding: 0 0 100px 0;
  }
}
@media (max-width: 767.98px) {
  .padding0-150 {
    padding: 0 0 60px 0;
  }
}
@media (max-width: 479.98px) {
  .padding0-150 {
    padding: 0 0 40px 0;
  }
}

.padding150-0 {
  padding: 150px 0 0 0;
}
@media (max-width: 1023.98px) {
  .padding150-0 {
    padding: 100px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .padding150-0 {
    padding: 60px 0 0 0;
  }
}
@media (max-width: 479.98px) {
  .padding150-0 {
    padding: 40px 0 0 0;
  }
}

.padding150-75 {
  padding: 150px 0 75px 0;
}
@media (max-width: 1023.98px) {
  .padding150-75 {
    padding: 100px 0 50px 0;
  }
}
@media (max-width: 767.98px) {
  .padding150-75 {
    padding: 60px 0 30px 0;
  }
}
@media (max-width: 479.98px) {
  .padding150-75 {
    padding: 40px 0 20px 0;
  }
}

.utility-bar {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--color-white);
}

.socials {
  display: flex;
  gap: 0 10px;
}
.socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.15);
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(60px, auto) minmax(114px, auto) minmax(60px, auto);
  gap: 30px;
}
@media (max-width: 767.98px) {
  .form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.form__input, .form__textarea {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 15px;
  background-color: var(--input-bg);
  padding: 15px;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: var(--input-text-color);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: var(--input-text-color);
}
.form__input:focus::-moz-placeholder, .form__textarea:focus::-moz-placeholder {
  color: var(--input-text-active-color);
}
.form__input:focus::placeholder, .form__textarea:focus::placeholder {
  color: var(--input-text-active-color);
}
.form__textarea {
  grid-column: 1/-1;
  resize: none;
  min-height: 114px;
  overflow-y: auto;
  overflow-x: hidden;
}
.form__btn {
  max-width: 194px;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .form__btn {
    max-width: 100%;
    width: 100%;
  }
}

.accent-section {
  background-color: var(--accent-section-bg);
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  margin: 0 0 10px 0;
  color: var(--accent-color);
  font-size: 18px;
}
@media (max-width: 479.98px) {
  .section-title {
    font-size: 14px;
  }
}

.title {
  margin: 0 0 30px 0;
  letter-spacing: 0.02em;
  font-family: var(--font-secondary);
  font-weight: 100;
  font-size: 54px;
  line-height: 1.15;
  color: var(--title-color);
  -webkit-text-stroke: 2px var(--title-color);
  text-shadow: 0.4px 0.4px 0 #402D18, -0.4px -0.4px 0 #402D18, 0.4px -0.4px 0 #402D18, -0.4px 0.4px 0 #402D18;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1024px) {
  .title {
    font-size: 44px;
    -webkit-text-stroke: 1px var(--title-color);
    text-shadow: 0.2px 0.2px 0 #402D18, -0.2px -0.2px 0 #402D18, 0.2px -0.2px 0 #402D18, -0.2px 0.2px 0 #402D18;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (max-width: 767.98px) {
  .title {
    font-size: 36px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 479.98px) {
  .title {
    font-size: 28px;
    margin: 0 0 15px 0;
  }
}

.subtitle {
  line-height: 1.44;
  color: var(--text-color);
}
@media (max-width: 479.98px) {
  .subtitle {
    font-size: 15px;
  }
}

.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  border-radius: 15px;
  color: var(--color-white);
  background-color: var(--accent-color);
  padding: 15px 30px;
  transition: all 200ms;
  -webkit-user-select: none; /* Safari */ /* IE 10+ */
  -moz-user-select: none;
       user-select: none; /* Стандарт */
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.btn:hover {
  transform: scale(1.05);
  background-color: #feac31;
  transition: all 200ms;
}
@media (max-width: 479.98px) {
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.items {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 370px));
  gap: 30px;
  justify-content: center;
}
.items__item {
  border-radius: 35px;
}
@media (max-width: 479.98px) {
  .items__item {
    border-radius: 25px;
  }
}
@media (max-width: 1024px) {
  .items {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479.98px) {
  .items {
    gap: 20px;
  }
}

:root {
  --text-color: #424242;
  --title-color: #402D18;
  --accent-color: #FF9900;
  --color-white: #FFFFFF;
  --color-hover: #feac31;
  --accent-section-bg: #FFF9F1;
  --input-bg: #F6F6F6;
  --input-text-color: #B1B1B1;
  --input-text-active-color: #D1D1D1;
  --footer-bg: #232323;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: 'Bentoga', sans-serif;
  --animation-duration: 0.8s;
  --animation-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --animation-stagger-delay: 0.15s;
  --tablet: 1024px;
  --mobile: 768px;
}

body {
  color: var(--text-color);
}

/* 1. Box-sizing: Border-box for all elements */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Prevent font size inflation on mobile */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* 3. Remove default margins (except dialog for centering) */
:not(dialog) {
  margin: 0;
}

/* 4. Enable smooth size interpolations for animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* 5. Core body typography */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
}

/* 6. Shorter line heights for headings and forms */
h1, h2, h3, h4, h5, h6,
button, input, label, select, textarea {
  line-height: 1.1;
}

/* 7. Balanced text wrapping */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* 8. Media elements: Responsive and block-level */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 9. Links: Remove default underline and hover styles  */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 10. Ensure textareas have usable height */
textarea:not([rows]) {
  min-height: 10em;
}

/* 11. Remove list styles only for semantic lists */
ul[role=list], ol[role=list], li, ul {
  list-style: none;
  padding-inline-start: 0;
}

/* 12. Links: Skip ink on underlines */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 13. Anchored elements: Extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* 14. Isolation for root (e.g., React/Vue apps) */
#root, #__next {
  isolation: isolate;
}

/* 15. Overflow wrapping for long words */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 16. Form elements */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("../img/hero/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: -webkit-image-set(url("../img/hero/hero.webp") 1x, url("../img/hero/hero@2x.webp") 2x);
  background-image: image-set(url("../img/hero/hero.webp") 1x, url("../img/hero/hero@2x.webp") 2x);
}
@media (max-width: 479.98px) {
  .header {
    background-image: url("../img/hero/hero-mobile.webp");
  }
}
.header .utility-bar {
  flex: 0 0 auto;
}
.header > .container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header .utility-bar {
  opacity: 0;
}
.header .utility-bar.animate-in {
  animation: slideInFromTop var(--animation-duration) var(--animation-easing) forwards;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}
@media (max-width: 479.98px) {
  .utility-bar .container {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 15px;
  }
}
.utility-bar__phone a {
  display: flex;
  gap: 0 10px;
  line-height: 1.56;
}
@media (max-width: 479.98px) {
  .utility-bar__phone a {
    font-size: 14px;
    gap: 0 6px;
  }
  .utility-bar__phone a img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 319.98px) {
  .utility-bar__socials {
    display: none;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 767.98px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle__bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .header_nav {
    margin-top: 15px;
  }
}
.header_nav .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1023.98px) {
  .header_nav .menu {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .header_nav .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(35, 35, 35, 0.98);
    padding: 80px 30px 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .header_nav .menu.is-active {
    transform: translateX(0);
  }
}
.header_nav .menu__item {
  opacity: 0;
}
.header_nav .menu__item.animate-in {
  animation: slideInFromRight var(--animation-duration) var(--animation-easing) forwards;
}
@media (max-width: 767.98px) {
  .header_nav .menu__item.animate-in {
    animation: fadeInUp var(--animation-duration) var(--animation-easing) forwards;
  }
}
.header_nav .menu__link {
  color: var(--color-white);
  transition: 0.8s ease;
}
.header_nav .menu__link:hover {
  color: #FFB340;
  transition: 0.8s ease;
}
@media (max-width: 767.98px) {
  .header_nav .menu__link {
    font-size: 18px;
  }
}
.header_nav .menu__search {
  outline: none;
  border: none;
  background-color: var(--accent-color);
  border-radius: 22px;
  padding: 12px;
  transition: background-color 0.3s ease;
}
@media (max-width: 479.98px) {
  .header_nav .menu__search {
    padding: 10px;
  }
}
.header_nav .menu__search:hover {
  transition: background-color 0.3s ease;
  background-color: #feac31;
}

.header__logo {
  opacity: 0;
}
.header__logo.animate-in {
  animation: fadeInScale var(--animation-duration) var(--animation-easing) forwards;
}

.header__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 75px;
  color: var(--color-white);
}
@media (max-width: 767.98px) {
  .header__content {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.header__content > * {
  opacity: 0;
}
.header__content > *.animate-in {
  animation: fadeInUp var(--animation-duration) var(--animation-easing) forwards;
}
.header__content .section-title--big {
  margin: 0 0 15px 0;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .header__content .section-title--big {
    font-size: 18px;
  }
}
@media (max-width: 479.98px) {
  .header__content .section-title--big {
    font-size: 14px;
  }
}
.header__content .hero__title {
  font-size: 80px;
  color: var(--color-white);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 30px;
  -webkit-text-stroke: 0.5px var(--color-white);
  text-shadow: 0.5px 0.5px 0 var(--color-white), -0.5px -0.5px 0 var(--color-white), 0.5px -0.5px 0 var(--color-white), -0.5px 0.5px 0 var(--color-white);
}
@media (max-width: 1023.98px) {
  .header__content .hero__title {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .header__content .hero__title {
    font-size: 44px;
  }
}
@media (max-width: 479.98px) {
  .header__content .hero__title {
    font-size: 32px;
    -webkit-text-stroke: 0.3px var(--color-white);
  }
}
.header__content .btn {
  margin-top: 10px;
}

.about {
  padding: 150px 0;
}
@media (max-width: 1023.98px) {
  .about {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 479.98px) {
  .about {
    padding: 40px 0;
  }
}
.about .about__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 60px;
  justify-items: center;
  align-items: center;
}
.about .about__inner img {
  border-radius: 40px;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
@media (max-width: 767.98px) {
  .about .about__inner img {
    border-radius: 25px;
  }
}
@media (max-width: 479.98px) {
  .about .about__inner img {
    border-radius: 20px;
  }
}
.about .about__inner img.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about .about__content .about__section-title {
  margin: 0 0 15px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.about .about__content .about__section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about .about__content .about__title {
  margin: 0 0 15px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
  transition-delay: calc(var(--animation-stagger-delay) * 1);
}
.about .about__content .about__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about .about__content .about__subtitle {
  margin: 0 0 30px 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
  transition-delay: calc(var(--animation-stagger-delay) * 2);
}
@media (max-width: 479.98px) {
  .about .about__content .about__subtitle {
    margin: 0 0 20px 0;
  }
}
.about .about__content .about__subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about .about__content .about__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 479.98px) {
  .about .about__content .about__list {
    gap: 20px;
  }
}
.about .about__content .about__list .about__item {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
@media (max-width: 479.98px) {
  .about .about__content .about__list .about__item {
    gap: 12px;
  }
}
.about .about__content .about__list .about__item:nth-child(1) {
  transition-delay: calc(var(--animation-stagger-delay) * 3);
}
.about .about__content .about__list .about__item:nth-child(2) {
  transition-delay: calc(var(--animation-stagger-delay) * 4);
}
.about .about__content .about__list .about__item:nth-child(3) {
  transition-delay: calc(var(--animation-stagger-delay) * 5);
}
.about .about__content .about__list .about__item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about .about__content .about__list .about__item span {
  font-size: 20px;
  font-weight: 500;
  color: #232323;
}
@media (max-width: 479.98px) {
  .about .about__content .about__list .about__item span {
    font-size: 16px;
  }
}
.about .about__content .about__list .about-item__img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border-radius: 10px;
  min-width: 45px;
  min-height: 45px;
}
@media (max-width: 479.98px) {
  .about .about__content .about__list .about-item__img {
    min-width: 38px;
    min-height: 38px;
    border-radius: 8px;
  }
  .about .about__content .about__list .about-item__img svg {
    width: 20px;
    height: 15px;
  }
}

.experience {
  padding: 75px 0;
}
@media (max-width: 767.98px) {
  .experience {
    padding: 50px 0;
  }
}
@media (max-width: 479.98px) {
  .experience {
    padding: 35px 0;
  }
}
.experience__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 60px;
  align-items: center;
}
.experience__content {
  opacity: 1;
}
.experience__section-title {
  margin: 0 0 28px 0;
}
.experience__subtitle {
  margin: 0 0 30px 0;
}
@media (max-width: 479.98px) {
  .experience__subtitle {
    margin: 0 0 20px 0;
  }
}
.experience__subtitle:last-of-type {
  margin: 0px;
}
.experience__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
@media (max-width: 479.98px) {
  .experience__stats {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 25px 0;
  }
}
.experience .stats {
  font-family: var(--font-secondary);
  font-weight: 100;
  letter-spacing: 0.1em;
}
.experience .stats__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
}
.experience .stats__number {
  font-size: 54px;
  line-height: 1.15;
  color: var(--accent-color);
  display: inline-block;
  transition: transform 0.3s ease;
  -webkit-text-stroke: 2px var(--accent-color);
  text-shadow: 0.4px 0.4px 0 var(--accent-color), -0.4px -0.4px 0 var(--accent-color), 0.4px -0.4px 0 var(--accent-color), -0.4px 0.4px 0 var(--accent-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767.98px) {
  .experience .stats__number {
    font-size: 44px;
    text-shadow: none;
  }
}
@media (max-width: 479.98px) {
  .experience .stats__number {
    font-size: 36px;
  }
}
.experience .stats__number.counting {
  animation: statsPulse 0.5s ease-in-out;
}
.experience .stats__number[data-suffix]::after {
  content: attr(data-suffix);
  display: inline-block;
  transition: transform 0.3s ease;
}
.experience .stats__number.counting[data-suffix]::after {
  animation: bouncePlus 0.3s ease-in-out;
}
.experience .stats__text {
  font-size: 24px;
  color: var(--title-color);
  line-height: 1.33;
  -webkit-text-stroke: 1px var(--title-color);
  text-shadow: 0.2px 0.2px 0 var(--title-color), -0.2px -0.2px 0 var(--title-color), 0.2px -0.2px 0 var(--title-color), -0.2px 0.2px 0 var(--title-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767.98px) {
  .experience .stats__text {
    font-size: 20px;
    -webkit-text-stroke: none;
    text-shadow: none;
  }
}
@media (max-width: 479.98px) {
  .experience .stats__text {
    font-size: 16px;
  }
}
.experience__images {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  position: relative;
}
@media (max-width: 767.98px) {
  .experience__images {
    grid-template-columns: 1fr;
  }
}
.experience__images .experience__img1 {
  grid-column: 3/11;
  z-index: 1;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767.98px) {
  .experience__images .experience__img1 {
    grid-column: 1/-1;
    border-radius: 25px;
  }
}
@media (max-width: 479.98px) {
  .experience__images .experience__img1 {
    border-radius: 20px;
  }
}
.experience__images .experience__img1.animate-in {
  opacity: 1;
  animation: slideInRightMove 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.experience__images .experience__img1:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px) scale(1.02);
}
.experience__images .experience__img2 {
  grid-column: 1/7;
  z-index: 2;
  border: 10px solid var(--accent-section-bg);
  border-radius: 40px;
  align-self: flex-end;
  margin-top: -220px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
@media (max-width: 767.98px) {
  .experience__images .experience__img2 {
    display: none;
  }
}
.experience__images .experience__img2.animate-in {
  opacity: 1;
  animation: slideInLeftRotateMove 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.experience__images .experience__img2:hover {
  box-shadow: 0 30px 90px rgba(255, 153, 0, 0.15);
  transform: translateY(-10px) rotate(2deg) scale(1.03);
}

@keyframes slideInRightMove {
  from {
    transform: translateX(80px) scale(0.9);
  }
  to {
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInLeftRotateMove {
  from {
    transform: translateX(-80px) translateY(40px) rotate(-5deg) scale(0.85);
  }
  to {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}
@keyframes statsPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bouncePlus {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services__content {
  text-align: center;
  max-width: 670px;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.services__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .services__content {
    max-width: 100%;
    margin: 0 0 30px 0;
  }
}
.services__content__services__section-title {
  margin: 0 0 15px 0;
}
.services__content__services__title {
  margin: 0 0 15px 0;
}
.services__content__services__subtitle {
  margin: 0;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 390px));
  gap: 35px;
  margin: 10px 0 10px 0;
  justify-content: center;
}
@media (max-width: 1024px) {
  .services__cards {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .services__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479.98px) {
  .services__cards {
    gap: 25px;
  }
}
.services__cards .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--color-white);
  border-radius: 35px;
  padding: 30px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing), box-shadow 0.3s ease;
}
.services__cards .card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.services__cards .card:nth-child(1).animate-in {
  transition-delay: 0s;
}
.services__cards .card:nth-child(2).animate-in {
  transition-delay: var(--animation-stagger-delay);
}
.services__cards .card:nth-child(3).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) * 2);
}
.services__cards .card:hover {
  box-shadow: 0 8px 40px 0 rgba(255, 153, 0, 0.2);
  transform: translateY(-5px) scale(1);
}
.services__cards .card.animate-in:hover {
  transform: translateY(-5px) scale(1.02);
}
@media (max-width: 479.98px) {
  .services__cards .card {
    padding: 20px;
    border-radius: 25px;
  }
}
.services__cards .card__placeholder {
  border-radius: 100%;
  background-color: var(--accent-section-bg);
  padding: 30px 25px;
  margin: 0 0 30px 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.services__cards .card__placeholder svg {
  transition: transform 0.3s ease;
}
@media (max-width: 479.98px) {
  .services__cards .card__placeholder {
    padding: 20px 18px;
    margin: 0 0 20px 0;
  }
  .services__cards .card__placeholder svg {
    width: 30px;
    height: 22px;
  }
}
.services__cards .card:hover .services__cards .card__placeholder {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--accent-color);
}
.services__cards .card:hover .services__cards .card__placeholder svg {
  transform: scale(1.1);
}
.services__cards .card:hover .services__cards .card__placeholder svg path {
  fill: var(--color-white);
}
.services__cards .card__title {
  margin: 0 0 15px 0;
  font-size: 30px;
  line-height: 1.07;
  -webkit-text-stroke: 1px var(--title-color);
  text-shadow: 0.4px 0.4px 0 #402D18, -0.4px -0.4px 0 #402D18, 0.4px -0.4px 0 #402D18, -0.4px 0.4px 0 #402D18;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767.98px) {
  .services__cards .card__title {
    font-size: 24px;
    text-shadow: none;
  }
}
@media (max-width: 479.98px) {
  .services__cards .card__title {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
}
.services__cards .card__subtitle {
  margin: 0 0 30px 0;
}
@media (max-width: 479.98px) {
  .services__cards .card__subtitle {
    margin: 0 0 20px 0;
  }
}
.services__cards .card__link {
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.56;
}

.products__images {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  position: relative;
}
@media (max-width: 767.98px) {
  .products__images {
    grid-template-columns: 1fr;
  }
}
.products__images .products__img1 {
  grid-column: 1/11;
  z-index: 1;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767.98px) {
  .products__images .products__img1 {
    grid-column: 1/-1;
    border-radius: 25px;
  }
}
@media (max-width: 479.98px) {
  .products__images .products__img1 {
    border-radius: 20px;
  }
}
.products__images .products__img1.animate-in {
  opacity: 1;
  animation: slideInRightMove 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.products__images .products__img1:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px) scale(1.02);
}
.products__images .products__img2 {
  grid-column: 11/5;
  z-index: 2;
  border: 10px solid var(--accent-section-bg);
  border-radius: 40px;
  align-self: flex-end;
  margin-top: -270px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-3%) translateY(0) rotate(0deg) scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
@media (max-width: 767.98px) {
  .products__images .products__img2 {
    display: none;
  }
}
.products__images .products__img2.animate-in {
  opacity: 1;
  animation: slideInLeftRotateMove 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.products__images .products__img2:hover {
  box-shadow: 0 30px 90px rgba(255, 153, 0, 0.15);
  transform: translateX(-3%) translateY(-10px) rotate(2deg) scale(1.03);
}
.products__content {
  max-width: 570px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.products__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .products__content {
    max-width: 100%;
  }
}
.products__section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--animation-easing), transform 0.6s var(--animation-easing);
}
.products__content.animate-in .products__section-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.products__title {
  margin: 0 0 15px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--animation-easing), transform 0.7s var(--animation-easing);
}
.products__content.animate-in .products__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.products__subtitle {
  margin: 0 0 45px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--animation-easing), transform 0.8s var(--animation-easing);
}
.products__content.animate-in .products__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
@media (max-width: 479.98px) {
  .products__subtitle {
    margin: 0 0 30px 0;
  }
}

@keyframes slideInRightMove {
  from {
    transform: translateX(80px) scale(0.9);
  }
  to {
    transform: translateX(0) scale(1);
  }
}
@keyframes slideInLeftRotateMove {
  from {
    transform: translateX(-80px) translateY(40px) rotate(-5deg) scale(0.85);
  }
  to {
    transform: translateX(-3%) translateY(0) rotate(0deg) scale(1);
  }
}
.processes {
  padding: 75px 0;
}
@media (max-width: 767.98px) {
  .processes {
    padding: 50px 0;
  }
}
@media (max-width: 479.98px) {
  .processes {
    padding: 35px 0;
  }
}
.processes__inner {
  text-align: center;
}
.processes__content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.processes__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.processes__section-title {
  margin: 0 0 15px 0;
}
.processes__title {
  margin: 0 0 20px 0;
}
.processes__subtitle {
  margin: 0 0 45px 0;
}
@media (max-width: 479.98px) {
  .processes__subtitle {
    margin: 0 0 30px 0;
  }
}
.processes .steps {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .processes .steps {
    justify-content: center;
    gap: 50px 150px;
  }
}
@media (max-width: 479.98px) {
  .processes .steps {
    gap: 30px 60px;
  }
}
.processes .steps__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.processes .steps__step.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.processes .steps__step:nth-child(1).animate-in {
  transition-delay: 0s;
}
.processes .steps__step:nth-child(2).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) * 1);
}
.processes .steps__step:nth-child(3).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) * 2);
}
.processes .steps__step:nth-child(4).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) * 3);
}
.processes .steps__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 150px;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin: 0 0 30px 0;
  transform: scale(0);
  transition: transform calc(var(--animation-duration) * 1.2) var(--animation-easing);
}
@media (max-width: 767.98px) {
  .processes .steps__circle {
    width: 120px;
    min-height: 120px;
  }
}
@media (max-width: 479.98px) {
  .processes .steps__circle {
    width: 90px;
    min-height: 90px;
    margin: 0 0 20px 0;
  }
}
.processes .steps__step.animate-in .steps__circle {
  transform: scale(1);
}
.processes .steps__step:nth-child(1).animate-in .steps__circle {
  transition-delay: 0.1s;
}
.processes .steps__step:nth-child(2).animate-in .steps__circle {
  transition-delay: calc(var(--animation-stagger-delay) * 1 + 0.1s);
}
.processes .steps__step:nth-child(3).animate-in .steps__circle {
  transition-delay: calc(var(--animation-stagger-delay) * 2 + 0.1s);
}
.processes .steps__step:nth-child(4).animate-in .steps__circle {
  transition-delay: calc(var(--animation-stagger-delay) * 3 + 0.1s);
}
.processes .steps__title {
  font-size: 30px;
  line-height: 1.07;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
  -webkit-text-stroke: 1px var(--title-color);
  text-shadow: 0.2px 0.2px 0 #402D18, -0.2px -0.2px 0 #402D18, 0.2px -0.2px 0 #402D18, -0.2px 0.2px 0 #402D18;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767.98px) {
  .processes .steps__title {
    font-size: 24px;
    text-shadow: none;
  }
}
@media (max-width: 479.98px) {
  .processes .steps__title {
    font-size: 18px;
  }
}
.processes .steps__step.animate-in .steps__title {
  opacity: 1;
  transform: translateY(0);
}
.processes .steps__step:nth-child(1).animate-in .steps__title {
  transition-delay: 0.3s;
}
.processes .steps__step:nth-child(2).animate-in .steps__title {
  transition-delay: calc(var(--animation-stagger-delay) * 1 + 0.3s);
}
.processes .steps__step:nth-child(3).animate-in .steps__title {
  transition-delay: calc(var(--animation-stagger-delay) * 2 + 0.3s);
}
.processes .steps__step:nth-child(4).animate-in .steps__title {
  transition-delay: calc(var(--animation-stagger-delay) * 3 + 0.3s);
}

.projects {
  position: relative;
}
.projects::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 260px;
  background-color: var(--accent-section-bg);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .projects::after {
    min-height: 180px;
  }
}
@media (max-width: 479.98px) {
  .projects::after {
    min-height: 120px;
  }
}
.projects__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.projects__content {
  text-align: center;
  max-width: 970px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.projects__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .projects__content {
    max-width: 100%;
    padding: 0 15px;
  }
}
.projects__section-title {
  margin: 0 0 10px 0;
}
.projects__title {
  margin: 0 0 15px 0;
}
.projects__subtitle {
  margin: 0 0 45px 0;
}
@media (max-width: 479.98px) {
  .projects__subtitle {
    margin: 0 0 30px 0;
  }
}
.projects__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .projects__items {
    gap: 20px;
  }
}
.projects__items > img {
  width: 100%;
  max-width: 370px;
  min-height: 370px;
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: opacity calc(var(--animation-duration) * 1.1) var(--animation-easing), transform calc(var(--animation-duration) * 1.1) var(--animation-easing);
}
.projects__items > img.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.projects__items > img:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.projects__items > img:nth-child(2).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) + 0.1s);
}
.projects__items > img:nth-child(3).animate-in {
  transition-delay: calc(var(--animation-stagger-delay) * 2 + 0.1s);
}

.contact .contact__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
@media (max-width: 1024px) {
  .contact .contact__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.contact .contact__inner .contact__content {
  padding: 100px 0;
  margin: 0 0 0 60px;
  max-width: 600px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.contact .contact__inner .contact__content.animate-in {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .contact .contact__inner .contact__content {
    margin: 0px;
  }
}
@media (max-width: 767.98px) {
  .contact .contact__inner .contact__content {
    padding: 60px 15px;
    max-width: 100%;
    transform: translateY(30px);
  }
  .contact .contact__inner .contact__content.animate-in {
    transform: translateY(0);
  }
}
@media (max-width: 479.98px) {
  .contact .contact__inner .contact__content {
    padding: 40px 15px;
  }
}
.contact .contact__inner .contact__content .contact__section-title {
  margin: 0 0 15px 0;
}
.contact .contact__inner .contact__content .contact__title {
  margin: 0 0 15px 0;
}
.contact .contact__inner .contact__content .contact__subtitle {
  margin: 0 0 30px 0;
}
@media (max-width: 479.98px) {
  .contact .contact__inner .contact__content .contact__subtitle {
    margin: 0 0 20px 0;
  }
}
.contact .contact__inner .contact__content .contact__form .form__input,
.contact .contact__inner .contact__content .contact__form .form__textarea,
.contact .contact__inner .contact__content .contact__form .form__btn {
  line-height: normal;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.contact .contact__inner .contact__content .contact__form.animate-in .form__input:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.contact .contact__inner .contact__content .contact__form.animate-in .form__input:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.contact .contact__inner .contact__content .contact__form.animate-in .form__textarea {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.contact .contact__inner .contact__content .contact__form.animate-in .form__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}
.contact .contact__inner .contact__img {
  justify-self: end;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: opacity calc(var(--animation-duration) * 1.1) var(--animation-easing), transform calc(var(--animation-duration) * 1.1) var(--animation-easing);
}
.contact .contact__inner .contact__img.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
@media (max-width: 1024px) {
  .contact .contact__inner .contact__img {
    width: 100%;
    transform: translateY(30px) scale(0.95);
  }
  .contact .contact__inner .contact__img.animate-in {
    transform: translateY(0) scale(1);
  }
  .contact .contact__inner .contact__img img {
    width: 100%;
  }
}
.contact .contact__inner .contact__img img {
  height: 100%;
}

.testimonals {
  overflow: hidden;
  overflow-x: clip;
  max-width: 100vw;
}
.testimonals__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 75px 0;
}
@media (max-width: 767.98px) {
  .testimonals__inner {
    padding: 50px 0;
  }
}
@media (max-width: 479.98px) {
  .testimonals__inner {
    padding: 35px 0;
  }
}
.testimonals__content {
  text-align: center;
  max-width: 860px;
  margin: 0 0 45px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.testimonals__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .testimonals__content {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 0 30px 0;
  }
}
.testimonals__section-title.animate-in {
  animation: fadeInUp 0.6s var(--animation-easing) forwards;
}
.testimonals__title.animate-in {
  animation: fadeInUp 0.6s var(--animation-easing) 0.2s forwards;
  opacity: 0;
}
.testimonals__title {
  margin: 0 0 45px 0;
}
@media (max-width: 767.98px) {
  .testimonals__title {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 479.98px) {
  .testimonals__title {
    margin: 0 0 20px 0;
  }
}
.testimonals__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--animation-easing), transform 0.8s var(--animation-easing);
}
.testimonals__slider.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.testimonals__slider {
  --slide-width: 400px;
  --slide-gap: 30px;
}
@media (max-width: 768px) {
  .testimonals__slider {
    --slide-width: 320px;
    --slide-gap: 20px;
  }
}
@media (max-width: 480px) {
  .testimonals__slider {
    --slide-width: 280px;
    --slide-gap: 15px;
  }
}
.testimonals__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 var(--slide-gap);
  animation: testimonials-scroll 40s linear infinite;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.testimonals__slide {
  flex: 0 0 auto;
  width: var(--slide-width);
  max-width: var(--slide-width);
  padding: 40px 35px;
  background-color: var(--input-bg);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s ease;
}
.testimonals__slide:nth-child(1) {
  transition-delay: calc(1 * 0.1s);
}
.testimonals__slide:nth-child(2) {
  transition-delay: calc(2 * 0.1s);
}
.testimonals__slide:nth-child(3) {
  transition-delay: calc(3 * 0.1s);
}
.testimonals__slide:nth-child(4) {
  transition-delay: calc(4 * 0.1s);
}
.testimonals__slide:nth-child(5) {
  transition-delay: calc(5 * 0.1s);
}
.testimonals__slide:nth-child(6) {
  transition-delay: calc(6 * 0.1s);
}
.testimonals__slide:nth-child(7) {
  transition-delay: calc(7 * 0.1s);
}
.testimonals__slide:nth-child(8) {
  transition-delay: calc(8 * 0.1s);
}
.testimonals__slide.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.testimonals__slide:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .testimonals__slide {
    padding: 35px 30px;
  }
}
@media (max-width: 480px) {
  .testimonals__slide {
    padding: 30px 25px;
    border-radius: 15px;
  }
}
.testimonals__quote {
  line-height: 1.4;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .testimonals__quote {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .testimonals__quote {
    font-size: 14px;
  }
}

@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((var(--slide-width) + var(--slide-gap)) * -8));
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonals__content,
  .testimonals__slider,
  .testimonals__slide {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
.blogs .blogs__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blogs .blogs__inner .blogs__content {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing);
}
.blogs .blogs__inner .blogs__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .blogs .blogs__inner .blogs__content {
    padding: 0 15px;
  }
}
.blogs .blogs__inner .blogs__content .blogs__section-title.animate-in {
  animation: fadeInUp 0.6s var(--animation-easing) forwards;
}
.blogs .blogs__inner .blogs__content .blogs__title {
  margin: 0 0 45px 0;
}
.blogs .blogs__inner .blogs__content .blogs__title.animate-in {
  animation: fadeInUp 0.6s var(--animation-easing) 0.2s forwards;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .blogs .blogs__inner .blogs__content .blogs__title {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__content .blogs__title {
    margin: 0 0 20px 0;
  }
}
.blogs .blogs__inner .blogs__items .blogs__item {
  cursor: pointer;
  border-radius: 35px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity var(--animation-duration) var(--animation-easing), transform var(--animation-duration) var(--animation-easing), box-shadow 0.3s ease;
}
.blogs .blogs__inner .blogs__items .blogs__item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.blogs .blogs__inner .blogs__items .blogs__item:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.blogs .blogs__inner .blogs__items .blogs__item:nth-child(2).animate-in {
  transition-delay: 0.25s;
}
.blogs .blogs__inner .blogs__items .blogs__item:nth-child(3).animate-in {
  transition-delay: 0.4s;
}
.blogs .blogs__inner .blogs__items .blogs__item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item {
    border-radius: 25px;
  }
}
.blogs .blogs__inner .blogs__items .blogs__item__content {
  padding: 15px 15px 30px 15px;
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item__content {
    padding: 12px 12px 20px 12px;
  }
}
.blogs .blogs__inner .blogs__items .blogs__item > picture, .blogs .blogs__inner .blogs__items .blogs__item > img {
  width: 100%;
  height: 220px;
  display: block;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item > picture, .blogs .blogs__inner .blogs__items .blogs__item > img {
    height: 200px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
.blogs .blogs__inner .blogs__items .blogs__item > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blogs .blogs__inner .blogs__items .blogs__item .item__date {
  display: flex;
  line-height: 1.56;
}
.blogs .blogs__inner .blogs__items .blogs__item .item__date::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 7px;
  margin-right: 5px;
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item .item__date::before {
    width: 24px;
    height: 24px;
  }
}
.blogs .blogs__inner .blogs__items .blogs__item .item__title {
  margin: 0 0 15px 0;
  font-size: 24px;
  line-height: 1.33;
  -webkit-text-stroke: 1px var(--title-color);
  text-shadow: 0.2px 0.2px 0 #402D18, -0.2px -0.2px 0 #402D18, 0.2px -0.2px 0 #402D18, -0.2px 0.2px 0 #402D18;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item .item__title {
    font-size: 20px;
    text-shadow: none;
  }
}
@media (max-width: 479.98px) {
  .blogs .blogs__inner .blogs__items .blogs__item .item__title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .blogs__content,
  .blogs__item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
.footer {
  background-color: var(--footer-bg);
  padding: 50px 0 50px 0;
}
@media (max-width: 479.98px) {
  .footer {
    padding: 35px 0;
  }
}
.footer__utility-bar {
  width: 100%;
  min-height: 50px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
@media (max-width: 479.98px) {
  .footer__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__inner .info {
  margin: 0 30px 30px 0;
}
@media (max-width: 479.98px) {
  .footer__inner .info {
    margin: 0;
  }
}
.footer__inner .info__menu {
  display: flex;
  margin: 40px 0 40px 0;
  flex-direction: column;
}
@media (max-width: 479.98px) {
  .footer__inner .info__menu {
    margin: 25px 0;
  }
}
.footer__inner .info__menu__list {
  padding: 0px 0 20px 0;
}
.footer__inner .info__menu__list:last-child {
  padding: 0px 0 0px 0;
}
@media (max-width: 479.98px) {
  .footer__inner .info__menu__list {
    padding: 0px 0 15px 0;
  }
}
.footer__inner .info__menu__link {
  display: flex;
  color: var(--color-white);
}
.footer__inner .info__menu__link:first-child > svg {
  align-self: flex-start;
}
.footer__inner .info__menu__link > svg {
  margin: 0 10px 0 0;
  flex-shrink: 0;
}
@media (max-width: 479.98px) {
  .footer__inner .info__menu__link > svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 479.98px) {
  .footer__inner .info__menu__link {
    font-size: 14px;
  }
}
.footer__socials .socials__item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--color-white);
}
@media (max-width: 479.98px) {
  .footer__socials .socials__item {
    width: 32px;
    height: 32px;
  }
}
.footer--menu {
  color: var(--color-white);
}
.footer--menu-wrapper {
  max-width: 355px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 30px 30px 0;
}
@media (max-width: 479.98px) {
  .footer--menu-wrapper {
    max-width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 30px;
  }
}
.footer--menu__item {
  cursor: pointer;
  transition: all 0.5s ease;
}
.footer--menu__item:hover {
  text-decoration: underline;
  transition: all 0.5s ease;
}
.footer--menu__title {
  margin: 0 0 40px 0;
  color: var(--color-white);
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.05em;
}
@media (max-width: 479.98px) {
  .footer--menu__title {
    margin: 0 0 20px 0;
    font-size: 20px;
  }
}
.footer--menu__title {
  -webkit-text-stroke: 0px;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer--menu__menu {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 479.98px) {
  .footer--menu__menu {
    min-height: auto;
    gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 479.98px) {
  .footer__newsletter {
    width: 100%;
  }
}
.footer__newsletter__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(54px, auto));
  gap: 20px 0;
}
@media (max-width: 479.98px) {
  .footer__newsletter__form {
    grid-template-columns: 1fr;
  }
}
.footer__newsletter__form .form__input {
  width: 100%;
  max-width: 340px;
  min-width: 340px;
  grid-column: 1/3;
}
@media (max-width: 479.98px) {
  .footer__newsletter__form .form__input {
    min-width: 100%;
    max-width: 100%;
    grid-column: 1;
  }
}
.footer__newsletter__form .form__btn {
  grid-column: 1/3;
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 479.98px) {
  .footer__newsletter__form .form__btn {
    grid-column: 1;
    max-width: 100%;
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */