@charset "UTF-8";
:root {
  --bg-color: #fff;
  --text-color-black: #222222;
  --text-color-white: #fff;
  --green-light: #F0F6F5;
  --accent: #222222;
  --orange: #fb8830;
  --gray: #D8D8D8;
  --light: #F2F2F2;
}

/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-size: 100%;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

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

blockquote,
q {
  quotes: none;
}

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

html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-color-white);
}
@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  line-height: 100%;
  font-weight: 700;
  color: var(--text-color-black);
}
h2 span {
  color: var(--orange);
}
@media (max-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

.text {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
}
.text p:not(:last-child) {
  margin-bottom: 15px;
}
.text ul {
  margin-bottom: 20px;
}
.text ul li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  line-height: 1.4;
}
.text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.text ul li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-white);
  background-color: var(--orange);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text table {
  border-collapse: collapse;
  margin: 15px 0 40px;
  width: 100%;
}
@media (max-width: 480px) {
  .text table {
    border: 3px solid var(--orange);
  }
}
.text table:not(:last-child) {
  margin-bottom: 40px;
}
.text table tr, .text table th, .text table td {
  padding: 15px;
  font-size: 16px;
  border: none;
}
@media (max-width: 480px) {
  .text table tr, .text table th, .text table td {
    padding: 10px 4px;
  }
}
@media (max-width: 480px) {
  .text table tr {
    display: block;
  }
}
@media (max-width: 480px) {
  .text table td {
    text-align: right;
    display: block;
  }
}
@media (max-width: 480px) {
  .text table td:before {
    content: attr(data-title) ": ";
    float: left;
  }
}
.text thead tr {
  text-align: left;
}
@media (max-width: 480px) {
  .text thead tr {
    display: none;
  }
}
.text tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  font-size: 16px;
  height: 48px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #FB8830, #F76500);
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.btn-link:hover {
  background: linear-gradient(135deg, #F76500, #FB8830);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Pagination styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  margin: 0 4px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange, #fb8830);
}

/* Custom Swiper styles для testimonials */
.testimonials__testimonial-swiper {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.testimonials__testimonial-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials__testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background-color: var(--accent);
}
.header.black .header__menu-item a {
  color: var(--text-color-black);
}
.header.black .header__logo-dark {
  display: block;
}
.header.black .header__logo-white {
  display: none;
}
.header__container {
  width: 100%;
  max-width: 1392px;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.header__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  backdrop-filter: none;
  z-index: -1;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}
.header__logo img {
  width: 100%;
  height: 100px;
  transition: height 0.3s ease;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 80px;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  padding: 15px 24px;
}
@media (max-width: 480px) {
  .header__wrapper {
    padding: 10px 14px;
  }
}
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 24px;
}
@media (max-width: 768px) {
  .header__nav {
    flex-direction: row-reverse;
  }
  .header__nav.active {
    justify-content: space-between;
    flex-direction: column;
  }
}
.header__menu {
  margin-left: auto;
}
@media (max-width: 768px) {
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    transition: right 0.3s ease-in-out;
    padding: 56px 22px 37px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header__nav.active .header__menu {
    right: 0;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 5px;
}
@media (max-width: 992px) {
  .header__menu-list {
    column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__menu-list {
    flex-direction: column;
    margin-top: auto;
  }
}
.header__menu-item {
  position: relative;
}
@media (max-width: 768px) {
  .header__menu-item {
    text-align: center;
  }
}
.header__menu-item.has-submenu > .header__menu-link {
  position: relative;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .header__menu-item.has-submenu > .header__menu-link {
    padding-right: 25px;
  }
}
.header__menu-item.has-submenu > .header__menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .header__menu-item.has-submenu > .header__menu-link::after {
    border-top-color: var(--text-color-black);
    right: 10px;
  }
}
@media (min-width: 769px) {
  .header__menu-item.has-submenu:hover > .header__menu-link::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (max-width: 768px) {
  .header__menu-item.has-submenu.submenu-open > .header__menu-link::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.header__menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .header__menu-item .sub-menu {
    position: static;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
.header__menu-item .sub-menu li {
  list-style: none;
}
.header__menu-item .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color-black);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
@media (max-width: 768px) {
  .header__menu-item .sub-menu li a {
    color: var(--text-color-black);
    font-size: 18px;
    padding: 5px 20px;
  }
}
.header__menu-item .sub-menu li a:hover {
  background-color: var(--light);
  color: var(--orange);
}
@media (max-width: 768px) {
  .header__menu-item .sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media (min-width: 769px) {
  .header__menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .header__menu-item.submenu-open .sub-menu {
    max-height: 300px;
  }
}
.header__menu-link {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: normal;
  color: var(--text-color-white);
  position: relative;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__menu-link {
    font-size: 27px;
    line-height: 45px;
    color: var(--text-color-black);
  }
}
.header__menu-link:not(.has-submenu .header__menu-link)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__menu-link:not(.has-submenu .header__menu-link)::before {
    display: none;
  }
}
.header__menu-link:not(.has-submenu .header__menu-link):hover::before {
  opacity: 1;
}
.header__burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: var(--text-color-white);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header__burger.active {
  position: fixed;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-color-black);
}
.header__burger.active span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-color);
}
@media (max-width: 768px) {
  .header__burger.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 768px) {
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .header__burger.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header__btn-link {
  height: 44px;
  padding: 0 5px;
  font-size: 12px;
}
.header__btn--mobile {
  display: none;
}
@media (max-width: 768px) {
  .header__btn--mobile {
    display: block;
    margin-top: auto;
  }
  .header__btn--mobile .btn-link {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header__btn--desktop {
    display: none;
  }
}
.header.active .header__logo img {
  height: 60px;
}
.header__lang-dropdown {
  position: relative;
  display: inline-block;
}
.header__lang-dropdown:hover .header__lang-menu {
  display: block;
}
.header__lang-toggle {
  background-color: var(--bg-color);
  border: 1px solid var(--gray);
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.header__lang-toggle:hover {
  background-color: var(--gray);
}
.header__lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  border: 1px solid var(--gray);
  z-index: 1000;
  display: none;
  min-width: 100%;
}
.header__lang-menu li {
  padding: 5px 10px;
}
.header__lang-menu li:hover {
  background-color: var(--gray);
}
.header__lang-menu li a {
  color: #333;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}

.home__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.home__hero-content {
  max-width: 787px;
  text-align: center;
}
.home__hero-title {
  margin-bottom: 42px;
}
.home__hero-title span {
  color: var(--orange);
}
.home__hero-btn {
  margin-top: 30px;
}

.image-left-text-right-without-bg {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .image-left-text-right-without-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.image-left-text-right-without-bg__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .image-left-text-right-without-bg__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.image-left-text-right-without-bg__image {
  flex: 0 1 50%;
  position: relative;
  height: 319px;
  background-color: #fff;
}
@media (min-width: 769px) {
  .image-left-text-right-without-bg__image {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}
.image-left-text-right-without-bg__image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fb8830 100%);
  z-index: 0;
}
.image-left-text-right-without-bg__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}
.image-left-text-right-without-bg__content {
  flex: 0 1 50%;
}
.image-left-text-right-without-bg__title {
  margin-bottom: 31px;
}
@media (max-width: 768px) {
  .image-left-text-right-without-bg__title {
    margin-bottom: 20px;
  }
}
.image-left-text-right-without-bg__sub-title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 45px;
}
.image-left-text-right-without-bg__sub-title span {
  position: relative;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}
.image-left-text-right-without-bg__sub-title span::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: var(--gray);
}
.image-left-text-right-without-bg__btn {
  margin-top: 25px;
}
.image-left-text-right-without-bg__text p:not(:last-child),
.image-left-text-right-with-bg__text p:not(:last-child) {
  margin-bottom: 15px;
}
.image-left-text-right-without-bg__text ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.image-left-text-right-without-bg__text li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  line-height: 1.4;
}
.image-left-text-right-without-bg__text li:not(:last-child) {
  margin-bottom: 10px;
}
.image-left-text-right-without-bg__text li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-white);
  background-color: var(--orange);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-left-text-right-without-bg table ul {
  margin-bottom: 20px;
}
.image-left-text-right-without-bg table ul li {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.2;
}
.image-left-text-right-without-bg table ul li:not(:last-child) {
  margin-bottom: 8px;
}
.image-left-text-right-without-bg table ul li::before {
  content: none;
}
.image-left-text-right-without-bg table {
  border-collapse: collapse;
  margin: 15px 0 40px;
  width: 100%;
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table {
    border: 3px solid var(--orange);
  }
}
.image-left-text-right-without-bg table:not(:last-child) {
  margin-bottom: 40px;
}
.image-left-text-right-without-bg table tr,
.image-left-text-right-without-bg table th,
.image-left-text-right-without-bg table td {
  padding: 15px;
  font-size: 16px;
  border: none;
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table tr,
  .image-left-text-right-without-bg table th,
  .image-left-text-right-without-bg table td {
    padding: 10px 4px;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table tr {
    display: block;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table td {
    text-align: right;
    display: block;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table td:before {
    content: attr(data-title) ": ";
    float: left;
  }
}
.image-left-text-right-without-bg table thead tr {
  text-align: left;
}
@media (max-width: 480px) {
  .image-left-text-right-without-bg table thead tr {
    display: none;
  }
}
.image-left-text-right-without-bg table tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.my-services {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .my-services {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.my-services__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .my-services__wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.my-services__content {
  flex: 0 1 50%;
}
.my-services__title {
  margin-bottom: 31px;
  color: var(--text-color-white);
}
@media (max-width: 768px) {
  .my-services__title {
    margin-bottom: 20px;
  }
}
.my-services__sub-title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 45px;
  color: var(--text-color-white);
}
.my-services__sub-title span {
  position: relative;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}
.my-services__sub-title span::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: var(--gray);
}
.my-services__btn {
  margin-top: 25px;
}
.my-services__text {
  color: var(--text-color-white);
}
.my-services__title-item {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 15px;
}
.my-services__item-text {
  font-size: 14px;
  line-height: 1.5;
}
.my-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 60px;
}
@media (max-width: 560px) {
  .my-services__list {
    grid-template-columns: 1fr;
  }
}
.my-services__item {
  background-color: var(--bg-color);
  border-radius: 5px;
  padding: 40px 15px 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.my-services__icon {
  background-color: var(--orange);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  top: -41px;
  left: 50%;
  transform: translateX(-50%);
}
.my-services__icon img {
  max-width: 100%;
  height: auto;
}
.my-services__all-services {
  flex: 0 1 50%;
}
.my-services__link-item:hover {
  color: var(--orange);
}

.image-left-text-right-with-bg {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .image-left-text-right-with-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.image-left-text-right-with-bg__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .image-left-text-right-with-bg__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.image-left-text-right-with-bg__image {
  flex: 0 1 50%;
  position: relative;
  height: 319px;
  background-color: #fff;
}
@media (min-width: 769px) {
  .image-left-text-right-with-bg__image {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}
.image-left-text-right-with-bg__image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fb8830 100%);
  z-index: 0;
}
.image-left-text-right-with-bg__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}
.image-left-text-right-with-bg__content {
  flex: 0 1 50%;
}
.image-left-text-right-with-bg__title {
  margin-bottom: 31px;
  color: var(--text-color-white);
}
@media (max-width: 768px) {
  .image-left-text-right-with-bg__title {
    margin-bottom: 20px;
  }
}
.image-left-text-right-with-bg__sub-title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 45px;
  color: var(--text-color-white);
}
.image-left-text-right-with-bg__sub-title span {
  position: relative;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}
.image-left-text-right-with-bg__sub-title span::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: var(--gray);
}
.image-left-text-right-with-bg__btn {
  margin-top: 25px;
}
.image-left-text-right-with-bg__text {
  color: var(--text-color-white);
}
.image-left-text-right-with-bg__text ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.image-left-text-right-with-bg__text ul li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  line-height: 1.4;
}
.image-left-text-right-with-bg__text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.image-left-text-right-with-bg__text ul li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-white);
  background-color: var(--orange);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-left-text-right-with-bg__text table ul {
  margin-bottom: 20px;
}
.image-left-text-right-with-bg__text table ul li {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.2;
}
.image-left-text-right-with-bg__text table ul li:not(:last-child) {
  margin-bottom: 8px;
}
.image-left-text-right-with-bg__text table ul li::before {
  content: none;
}
.image-left-text-right-with-bg__text table {
  border-collapse: collapse;
  margin: 15px 0 40px;
  width: 100%;
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table {
    border: 3px solid var(--orange);
  }
}
.image-left-text-right-with-bg__text table:not(:last-child) {
  margin-bottom: 40px;
}
.image-left-text-right-with-bg__text table tr,
.image-left-text-right-with-bg__text table th,
.image-left-text-right-with-bg__text table td {
  padding: 10px;
  font-size: 15px;
  border: none;
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table tr,
  .image-left-text-right-with-bg__text table th,
  .image-left-text-right-with-bg__text table td {
    padding: 10px 4px;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table tr {
    display: block;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table td {
    text-align: right;
    display: block;
  }
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table td:before {
    content: attr(data-title) ": ";
    float: left;
  }
}
.image-left-text-right-with-bg__text table thead tr {
  text-align: left;
}
@media (max-width: 480px) {
  .image-left-text-right-with-bg__text table thead tr {
    display: none;
  }
}
.image-left-text-right-with-bg__text table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.4);
}

.portfolio {
  padding-top: 100px;
  padding-bottom: 100px;
}
.portfolio__filter {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (max-width: 768px) {
  .portfolio__filter {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}
.portfolio__filter::-webkit-scrollbar {
  height: 6px;
}
.portfolio__filter::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 3px;
}
.portfolio__filter-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: var(--light);
  cursor: pointer;
}
.portfolio__filter-btn.active {
  background-color: var(--orange);
  color: var(--text-color-white);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .portfolio__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portfolio__item {
  height: 300px;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio__item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.portfolio__item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fb8830 100%);
  z-index: 0;
}
.portfolio__item-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px;
}
.portfolio__heading {
  text-align: center;
  margin-bottom: 47px;
  max-width: 356px;
  margin: 0 auto 47px auto;
}
.portfolio__sub-title {
  margin-bottom: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
}
.portfolio__sub-title span {
  background-color: var(--bg-color);
  position: relative;
  padding: 0 8px;
}
.portfolio__sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--gray);
}

.testimonials {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.testimonials__rating img {
  width: 22px;
  height: 22px;
}
.testimonials__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 15px;
}
.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.testimonials__item {
  padding: 22px 25px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.testimonials__icon {
  width: 60px;
  height: 60px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}
.testimonials__icon img {
  width: 30px;
  height: 30px;
}
.testimonials__title {
  margin-bottom: 31px;
  color: var(--text-color-white);
}
@media (max-width: 768px) {
  .testimonials__title {
    margin-bottom: 20px;
  }
}
.testimonials__sub-title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 45px;
  color: var(--text-color-white);
}
.testimonials__sub-title span {
  position: relative;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}
.testimonials__sub-title span::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: var(--gray);
}
.testimonials__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials__heading {
    flex-direction: column;
  }
}
.testimonials__content {
  flex: 0 1 50%;
}
.testimonials__navigarion {
  flex: 0 1 50%;
  display: flex;
  justify-content: end;
}
.testimonials__nav-swiper {
  position: relative;
  display: flex;
  align-self: baseline;
}
.testimonials__nav-swiper::before {
  content: "";
  position: absolute;
  left: -132px;
  top: 50%;
  transform: translateY(-50%);
  width: 124px;
  height: 1px;
  background-color: var(--gray);
}
@media (max-width: 390px) {
  .testimonials__nav-swiper::before {
    left: -85px;
    width: 80px;
  }
}
.testimonials__nav-swiper .swiper-pagination-bullet {
  background-color: var(--light);
  width: 16px;
  height: 16px;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 1;
}
.testimonials__nav-swiper .swiper-pagination-bullet-active {
  border: 2px solid var(--orange);
  background-color: var(--accent);
}

.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px8) {
  .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.faq__container {
  max-width: 1002px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.faq__wrapper {
  margin-bottom: 50px;
}
@media (max-width: 768px8) {
  .faq__wrapper {
    margin-bottom: 43px;
  }
}
.faq__heading {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px 36px;
  cursor: pointer;
  background-color: var(--light);
}
.faq__heading.active .faq__icon {
  transform: rotate(45deg);
}
.faq__heading.active {
  background-color: var(--accent);
  color: var(--text-color-white);
}
@media (max-width: 768px) {
  .faq__heading {
    font-size: 18px;
    padding: 20px 24px;
  }
}
.faq__icon {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.695312C10.9777 0.695312 11.3652 1.08282 11.3652 1.56055V9.69531H19.5C19.9777 9.69531 20.3652 10.0828 20.3652 10.5605C20.3652 11.0383 19.9777 11.4258 19.5 11.4258H11.3652V19.5605C11.3652 20.0383 10.9777 20.4258 10.5 20.4258C10.0223 20.4258 9.63477 20.0383 9.63477 19.5605V11.4258H1.5C1.02227 11.4258 0.634766 11.0383 0.634766 10.5605C0.634766 10.0828 1.02227 9.69531 1.5 9.69531H9.63477V1.56055C9.63477 1.08282 10.0223 0.695312 10.5 0.695312Z' fill='%23A8A8A8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  transform-origin: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .faq__icon {
    width: 14px;
    height: 14px;
  }
}
.faq__text {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, margin-top 0.4s ease, margin-bottom 0.4s ease;
  padding: 0 36px;
}
.faq__text ul li {
  position: relative;
  padding-left: 10px;
}
.faq__text ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .faq__text {
    font-size: 14px;
    padding: 0 24px;
  }
}
.faq__text.active {
  opacity: 1;
  visibility: visible;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .faq__text.active {
    margin-top: 10px;
  }
}
.faq__item:not(:last-child) {
  margin-bottom: 23px;
}
.faq__btn {
  display: flex;
  justify-content: center;
}
.faq__btn-link {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.32px;
  position: relative;
  color: var(--gray);
}
.faq__btn-link::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--gray);
}
.faq__btn-link:hover {
  color: var(--text-color-black);
}
.faq__title-wrapper {
  text-align: center;
  margin-bottom: 47px;
  max-width: 453px;
  margin: 0 auto 75px auto;
}
@media (max-width: 768px) {
  .faq__title-wrapper {
    margin-bottom: 40px;
  }
}
.faq__sub-title {
  margin-bottom: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
}
.faq__sub-title span {
  background-color: var(--bg-color);
  position: relative;
  padding: 0 8px;
}
.faq__sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--gray);
}

.contact-form {
  background-color: var(--light);
  padding-top: 25px;
}
.contact-form__container {
  position: relative;
  z-index: 1;
}
.contact-form__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--contact-image);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 1024px) {
  .contact-form__container::before {
    opacity: 0.5;
  }
}
@media (max-width: 992px) {
  .contact-form__container::before {
    opacity: 0.1;
  }
}
.contact-form__title {
  margin-bottom: 31px;
  color: var(--text-color-black);
}
@media (max-width: 768px) {
  .contact-form__title {
    margin-bottom: 20px;
  }
}
.contact-form__sub-title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 45px;
}
.contact-form__sub-title span {
  position: relative;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}
.contact-form__sub-title span::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: var(--gray);
}
.contact-form__text {
  margin-bottom: 23px;
}
.contact-form__content {
  max-width: 533px;
  padding-top: 75px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .contact-form__content {
    padding-top: 15px;
    padding-bottom: 40px;
  }
}
.contact-form__form input[type=text], .contact-form__form input[type=email], .contact-form__form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  font-size: 16px;
  color: var(--text-color-black);
  margin-bottom: 15px;
}
.contact-form__form input[type=text]:focus, .contact-form__form input[type=email]:focus, .contact-form__form textarea:focus {
  border: 1px solid var(--accent);
  outline: none;
}
@media (max-width: 768px) {
  .contact-form__form input[type=submit] {
    width: 100%;
  }
}

.footer {
  padding-top: 82px;
  padding-bottom: 82px;
  background-color: var(--accent);
}
@media (max-width: 480px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer__logo img {
  max-width: 180px;
  height: auto;
}
@media (max-width: 560px) {
  .footer__logo img {
    margin: auto;
    max-width: 140px;
  }
}
.footer__copyright {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 25px;
  color: var(--text-color-white);
}
.footer__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 31px;
  color: var(--text-color-white);
}
@media (max-width: 560px) {
  .footer__title {
    margin-bottom: 20px;
  }
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .footer__column {
    order: 2;
  }
}
@media (max-width: 560px) {
  .footer__column:first-child {
    order: 5;
  }
}
.footer__service {
  font-size: 16px;
  line-height: 1.2;
  color: var(--text-color-white);
}
.footer__service:not(:last-child) {
  margin-bottom: 15px;
}
.footer__service:hover {
  color: var(--orange);
}
.footer__email {
  font-size: 16px;
  line-height: 1.2;
  color: var(--text-color-white);
  margin-bottom: 15px;
}
.footer__email:hover {
  color: var(--orange);
}
.footer__social-list {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (max-width: 560px) {
  .footer__social-list {
    justify-content: center;
  }
}
.footer__social-icon {
  width: 28px;
  height: 28px;
}
.footer__social-icon:hover {
  opacity: 0.8;
}

.landing-page__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-page__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.landing-page__hero-content {
  max-width: 787px;
  text-align: center;
}
.landing-page__hero-title {
  margin-bottom: 42px;
}
.landing-page__hero-title span {
  color: var(--orange);
}
.landing-page__hero-btn {
  margin-top: 30px;
}

.breadcrumbs {
  font-size: 14px;
  margin-top: 50px;
  margin-bottom: 25px;
  color: var(--light);
}
.breadcrumbs .breadcrumb_last {
  font-weight: 700;
}
.breadcrumbs a {
  color: var(--text-color-white);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs--black-color {
  color: var(--text-color-black);
}
.breadcrumbs--black-color a {
  color: var(--text-color-black);
}
.breadcrumbs--black-color a:hover {
  text-decoration: underline;
}

.corporate-site__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.corporate-site__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.corporate-site__hero-content {
  max-width: 787px;
  text-align: center;
}
.corporate-site__hero-title {
  margin-bottom: 42px;
}
.corporate-site__hero-title span {
  color: var(--orange);
}
.corporate-site__hero-btn {
  margin-top: 30px;
}

.online-shop__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.online-shop__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.online-shop__hero-content {
  max-width: 787px;
  text-align: center;
}
.online-shop__hero-title {
  margin-bottom: 42px;
}
.online-shop__hero-title span {
  color: var(--orange);
}
.online-shop__hero-btn {
  margin-top: 30px;
}

.single-post {
  padding: 128px 0;
}
@media (max-width: 768px) {
  .single-post {
    padding: 64px 0;
  }
}
.single-post__container {
  max-width: 860px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.single-post__views {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}
.single-post__views-icon {
  width: 20px;
  height: 20px;
  background-image: var(--eye-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}
.single-post__title {
  font-size: 36px;
  color: var(--text-color-black);
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .single-post__title {
    font-size: 28px;
  }
}
.single-post h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .single-post h2 {
    font-size: 24px;
  }
}
.single-post h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .single-post h3 {
    font-size: 18px;
  }
}
.single-post img {
  width: 100%;
  height: auto;
  margin: 25px auto;
}
.single-post__content table ul {
  margin-bottom: 20px;
}
.single-post__content table ul li {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.2;
}
.single-post__content table ul li:not(:last-child) {
  margin-bottom: 8px;
}
.single-post__content table ul li::before {
  content: none;
}
.single-post__content p:not(:last-child) {
  margin-bottom: 15px;
}
.single-post__content a {
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.single-post__content a:hover {
  color: var(--orange);
}
.single-post__content a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1.5px;
  background-color: var(--orange);
}
.single-post__pagination {
  margin-top: 40px;
}
.single-post__pagination-link {
  font-size: 16px;
  line-height: 1.2;
  display: block;
  font-weight: 600;
}
.single-post__pagination-link:not(:last-child) {
  margin-bottom: 8px;
}
.single-post__pagination-link:hover {
  opacity: 0.8;
}
.single-post__pagination-link span {
  color: var(--orange);
}

.blog {
  padding: 128px 0;
}
@media (max-width: 768px) {
  .blog {
    padding: 64px 0;
  }
}
.blog__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .blog__posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .blog__posts {
    grid-template-columns: 1fr;
  }
}
.blog__post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog__date {
  margin: 10px 0 5px;
}
.blog__post-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.blog__loader {
  display: none;
  text-align: center;
  margin-top: 40px;
}
.blog__post {
  display: flex;
  flex-direction: column;
}
.blog__btn {
  margin-top: auto;
  align-self: flex-start;
  width: auto;
}
.blog__title {
  font-size: 36px;
  line-height: 1.2;
  color: var(--text-color-black);
  margin-bottom: 25px;
}
.blog__views {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
}
.blog__views-icon {
  width: 20px;
  height: 20px;
  background-image: var(--eye-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.services__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.services__hero-content {
  max-width: 787px;
  text-align: center;
}
.services__hero-title {
  margin-bottom: 42px;
}
.services__hero-title span {
  color: var(--orange);
}
.services__hero-btn {
  margin-top: 30px;
}

.price__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.price__hero-content {
  max-width: 787px;
  text-align: center;
}
.price__hero-title {
  margin-bottom: 42px;
}
.price__hero-title span {
  color: var(--orange);
}
.price__hero-btn {
  margin-top: 30px;
}

.price-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .price-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.price-section__all-price {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .price-section__all-price {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .price-section__all-price {
    grid-template-columns: repeat(1, 1fr);
  }
}
.price-section__item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .price-section__item {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }
}
.price-section__title-item {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 480pxSmall) {
  .price-section__title-item {
    font-size: 22px;
  }
}
.price-section__price-item {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 480pxSmall) {
  .price-section__price-item {
    font-size: 24px;
  }
}
.price-section__item-wrapper {
  background-color: var(--light);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-section__text-item {
  margin-bottom: 25px;
}
.price-section__text-item h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 25px;
}
.price-section__text-item ul li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.2;
}
.price-section__text-item ul li:not(:last-child) {
  margin-bottom: 22px;
}
.price-section__text-item ul li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-white);
  background-color: var(--orange);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-section__item-btn {
  margin-top: auto;
}
.price-section__item-btn a {
  font-size: 12px;
  line-height: 1.2;
}

.reviews__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.reviews__hero-content {
  max-width: 787px;
  text-align: center;
}
.reviews__hero-title {
  margin-bottom: 42px;
}
.reviews__hero-title span {
  color: var(--orange);
}
.reviews__hero-btn {
  margin-top: 30px;
}

.contacts__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.contacts__hero-content {
  max-width: 787px;
  text-align: center;
}
.contacts__hero-title {
  margin-bottom: 42px;
}
.contacts__hero-title span {
  color: var(--orange);
}
.contacts__hero-btn {
  margin-top: 30px;
}

.portfolio-page__hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-page__hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color-white);
}
.portfolio-page__hero-content {
  max-width: 787px;
  text-align: center;
}
.portfolio-page__hero-title {
  margin-bottom: 42px;
}
.portfolio-page__hero-title span {
  color: var(--orange);
}
.portfolio-page__hero-btn {
  margin-top: 30px;
}

.page-not-found {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-not-found__row-text-wrapper {
  background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(51, 51, 51, 0.4);
  padding: 40px;
}
.page-not-found__row-text-title {
  font-size: 120px;
  line-height: 100%;
  color: var(--orange);
  font-weight: 900;
  text-align: center;
  padding-bottom: 20px;
}
.page-not-found__row-text-content span {
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: var(--orange);
  display: block;
  font-weight: 700;
  padding-bottom: 25px;
}
.page-not-found__row-text-content p {
  font-size: 16px;
  line-height: 175%;
  text-align: center;
}
.page-not-found__row-text-btn {
  text-align: center;
  margin-top: 25px;
}

body {
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-color);
  color: var(--accent);
}

.container {
  max-width: 1181px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* Single blog redesign */
.single-post {
  background: radial-gradient(1200px 600px at 50% -10%, rgba(251, 136, 48, 0.12), transparent 60%), #050914;
  color: var(--text-color-white);
  padding: 0 0 120px;
}
@media (max-width: 768px) {
  .single-post {
    padding-bottom: 80px;
  }
}
.single-post__container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.single-post__hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 124px 0 48px;
}
@media (max-width: 992px) {
  .single-post__hero {
    padding-top: 108px;
  }
}
@media (max-width: 768px) {
  .single-post__hero {
    padding-top: 92px;
    padding-bottom: 36px;
  }
}
.single-post__breadcrums {
  margin-bottom: 28px;
}
.single-post__breadcrums .breadcrumbs {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.single-post__breadcrums .breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}
.single-post__breadcrums .breadcrumbs .breadcrumb_last {
  color: var(--text-color-white);
}
.single-post__hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .single-post__hero-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-post__title {
  margin: 0;
  max-width: 900px;
  color: var(--text-color-white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  text-transform: uppercase;
}
.single-post__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.single-post__back-link:hover {
  color: var(--orange);
}
.single-post__back-link-icon {
  width: 24px;
  height: 1px;
  background-color: currentColor;
  position: relative;
}
.single-post__back-link-icon::before,
.single-post__back-link-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  transform-origin: left center;
}
.single-post__back-link-icon::before {
  top: 0;
  transform: rotate(-34deg);
}
.single-post__back-link-icon::after {
  top: 0;
  transform: rotate(34deg);
}
.single-post__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  padding-top: 56px;
}
@media (max-width: 1100px) {
  .single-post__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.single-post__sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
}
@media (max-width: 1100px) {
  .single-post__sidebar {
    position: static;
  }
}
.single-post__sidebar-title {
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-color-white);
}
.single-post__toc {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 16px;
}
.single-post__toc.is-empty .single-post__toc-list {
  display: none;
}
.single-post__toc.is-empty .single-post__toc-empty {
  display: block;
}
.single-post__toc-list {
  list-style: none;
}
.single-post__toc-item:not(:last-child) {
  margin-bottom: 12px;
}
.single-post__toc-item--h3 {
  margin-left: 14px;
}
.single-post__toc-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}
.single-post__toc-link:hover,
.single-post__toc-link.is-active {
  color: var(--text-color-white);
}
.single-post__toc-link.is-active {
  text-shadow: 0 0 18px rgba(251, 136, 48, 0.4);
}
.single-post__toc-empty {
  display: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.45;
}
.single-post__article {
  min-width: 0;
}
.single-post__cover {
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 22px;
  overflow: hidden;
}
.single-post__cover-image {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: cover;
}
.single-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 540px) {
  .single-post__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.single-post__views {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: inherit;
}
.single-post__views-icon {
  width: 18px;
  height: 18px;
  background-image: var(--eye-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.single-post__content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.72;
}
.single-post__content p:not(:last-child) {
  margin-bottom: 18px;
}
.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  color: var(--text-color-white);
  line-height: 1.2;
  margin: 36px 0 16px;
  scroll-margin-top: 120px;
}
.single-post__content h2 {
  font-size: clamp(27px, 3.2vw, 42px);
  text-transform: uppercase;
}
.single-post__content h3 {
  font-size: clamp(22px, 2.4vw, 32px);
}
.single-post__content h4 {
  font-size: clamp(20px, 2.2vw, 26px);
}
.single-post__content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 28px 0;
}
.single-post__content ul,
.single-post__content ol {
  margin: 16px 0 20px;
  padding-left: 0;
  list-style: none;
}
.single-post__content li {
  position: relative;
  padding-left: 22px;
}
.single-post__content li:not(:last-child) {
  margin-bottom: 10px;
}
.single-post__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}
.single-post__content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 2px solid var(--orange);
  color: rgba(255, 255, 255, 0.86);
  background-color: rgba(255, 255, 255, 0.04);
}
.single-post__content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post__content a::before {
  content: none;
}
.single-post__content table {
  margin: 26px 0;
  border-collapse: collapse;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
}
.single-post__content table tr,
.single-post__content table td,
.single-post__content table th {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  color: rgba(255, 255, 255, 0.92);
}
.single-post__content table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}
@media (max-width: 480px) {
  .single-post__content.text table tr {
    display: table-row;
  }
  .single-post__content.text table thead tr {
    display: table-row;
  }
  .single-post__content.text table td,
  .single-post__content.text table th {
    display: table-cell;
    text-align: left;
    padding: 10px;
  }
  .single-post__content.text table td::before {
    content: none;
  }
}
.single-post__pagination {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.single-post__pagination-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 768px) {
  .single-post__pagination-inner {
    grid-template-columns: 1fr;
  }
}
.single-post__pagination-link {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.single-post__pagination-link:hover {
  border-color: var(--orange);
  background-color: rgba(251, 136, 48, 0.08);
}
.single-post__pagination-link span {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-weight: 500;
}

.single-post--portfolio {
  padding-top: 132px;
}
@media (max-width: 768px) {
  .single-post--portfolio {
    padding-top: 108px;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  will-change: transform, opacity;
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll:is(h1, h2) {
  transform: translate3d(0, 34px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.price-page-modern {
  background: radial-gradient(1200px 520px at 50% -6%, rgba(251, 136, 48, 0.1), transparent 62%), #050914;
  color: var(--text-color-white);
}
.price-page-modern__container {
  max-width: 1240px;
}
.price-page-modern__hero {
  padding: 140px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 768px) {
  .price-page-modern__hero {
    padding-top: 110px;
    padding-bottom: 26px;
  }
}
.price-page-modern__breadcrumbs {
  margin-bottom: 28px;
}
.price-page-modern__breadcrumbs .breadcrumbs {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.price-page-modern__breadcrumbs .breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
}
.price-page-modern__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .price-page-modern__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.price-page-modern__title {
  margin: 0;
  color: var(--text-color-white);
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}
.price-page-modern__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}
.price-page-modern__back-link:hover {
  color: var(--orange);
}
.price-page-modern__back-link-icon {
  width: 44px;
  height: 1px;
  background-color: currentColor;
  position: relative;
}
.price-page-modern__back-link-icon::before,
.price-page-modern__back-link-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: currentColor;
  transform-origin: left center;
}
.price-page-modern__back-link-icon::before {
  top: 0;
  transform: rotate(-35deg);
}
.price-page-modern__back-link-icon::after {
  top: 0;
  transform: rotate(35deg);
}
.price-page-modern__content {
  padding: 30px 0 0;
}
@media (max-width: 768px) {
  .price-page-modern__content {
    padding: 20px 0 0;
  }
}
.price-page-modern__accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 48px;
}
.price-page-modern__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.price-page-modern__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  color: var(--text-color-white);
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  .price-page-modern__toggle {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }
}
.price-page-modern__toggle:hover .price-page-modern__toggle-title {
  color: var(--orange);
}
.price-page-modern__toggle-icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.price-page-modern__toggle-icon::before,
.price-page-modern__toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.75);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.price-page-modern__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.price-page-modern__item.is-open .price-page-modern__toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}
.price-page-modern__toggle-title {
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 1.2;
  font-weight: 500;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .price-page-modern__toggle-title {
    font-size: clamp(22px, 6.3vw, 30px);
  }
}
.price-page-modern__toggle-price {
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 768px) {
  .price-page-modern__toggle-price {
    grid-column: 2;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: -2px;
  }
}
.price-page-modern__panel {
  padding: 0 0 24px 40px;
}
@media (max-width: 768px) {
  .price-page-modern__panel {
    padding: 0 0 18px 30px;
  }
}
.price-page-modern__panel[hidden] {
  display: none;
}
.price-page-modern__panel-inner {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 28px;
}
@media (max-width: 768px) {
  .price-page-modern__panel-inner {
    padding-left: 16px;
  }
}
.price-page-modern__text {
  color: rgba(255, 255, 255, 0.86);
}
.price-page-modern__text p,
.price-page-modern__text li {
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .price-page-modern__text p,
  .price-page-modern__text li {
    font-size: 16px;
  }
}
.price-page-modern__text h3,
.price-page-modern__text h4 {
  margin: 8px 0 14px;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text-color-white);
  line-height: 1.2;
}
.price-page-modern__text ul,
.price-page-modern__text ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-page-modern__text li {
  position: relative;
  padding: 14px 180px 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 768px) {
  .price-page-modern__text li {
    padding-right: 0;
  }
}
.price-page-modern__text li::before {
  content: none;
}
.price-page-modern__btn {
  margin-top: 24px;
}
.price-page-modern__empty {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}
.price-page-modern__cta {
  padding-top: 44px;
  display: flex;
  justify-content: center;
}
.price-page-modern__legacy {
  margin: 0 -15px;
}
.price-page-modern__legacy .container,
.price-page-modern__legacy .faq__container {
  max-width: 100%;
}
.price-page-modern .contact-form {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.price-page-modern .contact-form__title {
  color: var(--text-color-white);
}
.price-page-modern .contact-form__sub-title,
.price-page-modern .contact-form__text,
.price-page-modern .contact-form__text p {
  color: rgba(255, 255, 255, 0.82);
}
.price-page-modern .contact-form__sub-title span::before {
  background-color: rgba(255, 255, 255, 0.3);
}
.price-page-modern .contact-form__form input[type=text],
.price-page-modern .contact-form__form input[type=email],
.price-page-modern .contact-form__form input[type=tel],
.price-page-modern .contact-form__form input[type=number],
.price-page-modern .contact-form__form textarea,
.price-page-modern .contact-form__form select {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text-color-white);
}
.price-page-modern .contact-form__form input::placeholder,
.price-page-modern .contact-form__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}
.price-page-modern .contact-form__form input[type=text]:focus,
.price-page-modern .contact-form__form input[type=email]:focus,
.price-page-modern .contact-form__form input[type=tel]:focus,
.price-page-modern .contact-form__form input[type=number]:focus,
.price-page-modern .contact-form__form textarea:focus,
.price-page-modern .contact-form__form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(251, 136, 48, 0.35);
}
.price-page-modern .contact-form__form .iti__selected-country-primary,
.price-page-modern .contact-form__form .iti__country-list {
  background-color: #0c1120;
  color: var(--text-color-white);
}
.price-page-modern .contact-form__form .iti__country.iti__highlight {
  background-color: rgba(255, 255, 255, 0.08);
}
.price-page-modern .image-left-text-right-without-bg__title,
.price-page-modern .image-left-text-right-without-bg__title h2 {
  color: #fff;
}
.price-page-modern .faq__title,
.price-page-modern .faq__title h2 {
  color: #fff;
}
.price-page-modern .faq__heading {
  background-color: #151c2b;
  color: #fff;
}
.price-page-modern .faq__sub-title span {
  color: #050914;
  padding: 8px;
}
@media (max-width: 768px) {
  .price-page-modern .faq {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.blog--archive {
  background: radial-gradient(1200px 580px at 50% -10%, rgba(251, 136, 48, 0.1), transparent 64%), #050914;
  color: var(--text-color-white);
  padding: 130px 0 110px;
}
@media (max-width: 768px) {
  .blog--archive {
    padding: 104px 0 70px;
  }
}
.blog--archive .blog__container {
  max-width: 1240px;
}
.blog--archive .blog__breadcrums .breadcrumbs {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}
.blog--archive .blog__breadcrums .breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
}
.blog--archive .blog__hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 42px;
}
@media (max-width: 768px) {
  .blog--archive .blog__hero-head {
    flex-direction: column;
    align-items: flex-start;
    margin: 22px 0 28px;
  }
}
.blog--archive .blog__title {
  margin: 0;
  color: var(--text-color-white);
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
}
.blog--archive .blog__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.blog--archive .blog__back-link:hover {
  color: var(--orange);
}
.blog--archive .blog__back-link-icon {
  width: 44px;
  height: 1px;
  background-color: currentColor;
  position: relative;
}
.blog--archive .blog__back-link-icon::before,
.blog--archive .blog__back-link-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: currentColor;
  transform-origin: left center;
}
.blog--archive .blog__back-link-icon::before {
  top: 0;
  transform: rotate(-35deg);
}
.blog--archive .blog__back-link-icon::after {
  top: 0;
  transform: rotate(35deg);
}
.blog--archive .blog__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 46px;
}
@media (max-width: 768px) {
  .blog--archive .blog__divider {
    margin-bottom: 28px;
  }
}
.blog--archive .blog__posts {
  gap: 34px;
}
@media (max-width: 992px) {
  .blog--archive .blog__posts {
    gap: 22px;
  }
}
.blog--archive .blog__post {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.01);
  padding: 20px;
}
.blog--archive .blog__post-image {
  width: 100%;
  height: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: transparent;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 992px) {
  .blog--archive .blog__post-image {
    height: 280px;
  }
}
.blog--archive .blog__date {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.blog--archive .blog__views {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.blog--archive .blog__views-icon {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.blog--archive .blog__post-title {
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.2;
  color: var(--text-color-white);
  margin-bottom: 12px;
}
.blog--archive .blog__post-excerpt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.blog--archive .blog__btn {
  margin-top: auto;
  align-self: flex-start;
  color: #e8dfbf;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.blog--archive .blog__btn:hover {
  color: var(--orange);
}
.blog--archive .blog__loader {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.76);
}
