@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

html {
  scroll-behavior: smooth;
}
:root {
  --white: #ffffff;
  --light: #f8fafb;
  --true-black: #000000;
  --dark-black: #1f1e21;
  --green: #18ca9a;
  --gray: #515151;

  /* ===== Font Weight ===== */
  --font-extra-light: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /* Font Famaly */
  --font-condensed: "Roboto Condensed", sans-serif;
  --font-flex: "Roboto Flex", sans-serif;
}
a,
a:hover,
a:target,
input,
input:hover,
input:target,
button,
button:hover,
button:target,
select,
select:hover,
select:target,
textarea,
textarea:hover,
textarea:target {
  outline: none !important;
}
* {
  box-sizing: border-box;
}
a,
a:hover,
a:target {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
body {
  position: relative;
  background-color: var(--light);
  font-family: var(--font-flex);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--dark-black);
  overflow-x: hidden;
}
sup {
    vertical-align: super;
    font-size: small;    
}
body.noscroll {
  overflow: hidden;
  padding-right: 15px;
}
.container {
  position: relative;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}
.animate::after {
  content: "";
  background: var(--green);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: right;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.animate:hover::after,
.animate:focus::after {
  transform: translateX(-50%) scaleX(1);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}
.hamb {
  display: none;
}
.main {
  position: relative;
  display: block;
}
.main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1049px;
  height: 1010px;
  background-image: url(../img/main-blur.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.logo-header {
  position: relative;
  display: block;
  font-weight: var(--font-semi-bold);
  font-size: 25px;
  font-family: var(--font-flex);
  color: var(--dark-black);
}
nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  z-index: 1;
}
nav ul li a {
  position: relative;
  font-family: var(--font-flex);
  font-size: 16px;
  color: var(--dark-black);
  font-weight: var(--font-medium);
  transition: 0.1s;
}
nav ul li a:hover {
  color: var(--dark-black);
}
.header__contact {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.btn-wa {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  padding: 13px 21px 13px 17px;
  border-radius: 50px;
  background-color: #30d44d;
  border: 2px solid #30d44d;
  color: var(--white);
  width: fit-content;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
  overflow: hidden;
}
.btn-wa svg path {
  transition: 0.5s;
}
.btn-wa-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.btn-wa span {
  font-size: 12px;
  font-weight: var(--font-regular);
}
.btn-wa:hover {
  color: var(--dark-black);
  background-color: var(--light);
}
.btn-wa:hover > svg path {
  fill: #30d44d;
}
.btn-tg {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  padding: 13px 21px 13px 17px;
  border-radius: 50px;
  background-color: #27a2e0;
  border: 2px solid #27a2e0;
  color: var(--white);
  width: fit-content;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
  overflow: hidden;
}
.btn-tg svg path {
  transition: 0.5s;
}
.btn-tg-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.btn-tg span {
  font-size: 12px;
  font-weight: var(--font-regular);
}
.btn-tg:hover {
  color: var(--dark-black);
  background-color: var(--light);
}
.btn-tg:hover > svg path {
  fill: #27a2e0;
}
.main__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 135px 0;
}
.main__left {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.main__left h1 {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 48px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
  margin-bottom: 20px;
  max-width: 510px;
}
.main__left p {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 20px;
  line-height: 26px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  margin-bottom: 45px;
  max-width: 500px;
}
.main__wrap-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 45px;
}
.btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  padding: 24px 40px;
  border-radius: 15px;
  width: fit-content;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
  overflow: hidden;
  z-index: 4;
}
.btn-green {
  background-color: var(--green);
  color: var(--white);
}
.btn:hover {
  background-color: #26b38c;
  color: var(--white);
}
.btn-main-photo {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  color: var(--dark-black);
  padding: 24px 40px;
  width: fit-content;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-main-photo::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 69%;
  background-color: var(--green);
  height: 2px;
}
.main__img-sm {
  display: none;
}
.main__items {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.main__right {
  position: relative;
  flex: 1;
}
.main__items-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 21px 24px;
}
.main__items-block span {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
}
.main__items-block span b {
  font-weight: var(--font-semi-bold);
}
.main__items-block .raiting {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: var(--font-extra-bold);
  font-size: 70px;
  letter-spacing: -7px;
  color: var(--dark-black);
}
.main__items-block .raiting span {
  font-family: var(--font-flex);
  font-size: 14px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  line-height: 16px;
  letter-spacing: normal;
}
.main-img {
  position: absolute;
  object-fit: contain;
}
.main-img-1 {
  left: 0;
  top: -50px;
  transform: rotate(-8.54deg);
}
.main-img-2 {
  right: 35px;
  bottom: -50px;
  transform: rotate(8.08deg);
}
.mb {
  margin-bottom: 100px;
}
.section {
  position: relative;
  display: block;
}
.section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 45px;
}
.section-title-left {
  align-items: flex-start;
  text-align: left;
}
.section-title-center {
  align-items: center;
  text-align: center;
}
.title {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 35px;
  line-height: 39px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
  max-width: 700px;
}
.title span {
  font-weight: var(--font-regular);
}
.subtitle {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  max-width: 700px;
}
.subtitle span {
  color: var(--gray);
}
.subtitle b {
  font-weight: var(--font-semi-bold);
}
.second__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 35px;
}
.second__item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 15px;
  background-color: var(--white);
  overflow: hidden;
}
.second-heading {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 25px 30px;
}
.second-heading h5 {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 25px;
  line-height: 28px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
}
.second__item ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 30px 25px 30px;
}
.second__item ul li {
  font-family: var(--font-flex);
  font-size: 16px;
  line-height: 18px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
}
.second__item ul li::before {
  content: attr(data-icon);
  font-size: 16px;
  position: relative;
  color: var(--green);
  padding-right: 5px;
}
.second__item .second-img {
  width: 100%;
  object-fit: contain;
  margin-top: auto;
}
.second__item .second-img-2 {
  object-fit: cover;
  margin: auto 30px 30px 30px;
}
.second__item p {
  font-family: var(--font-flex);
  font-size: 21px;
  line-height: 27px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  margin: 0 30px 20px 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 15px;
  background-color: var(--white);
  background-position: center;
  background-size: 144%;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 30px;
  height: 400px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.service:hover {
  background-size: 150%;
}
.service::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(#ffffff00, 45%, #202020);
  z-index: 1;
}
.service-img-1 {
  background-image: url(../img/service-11.jpg);
}
.service-img-2 {
  background-image: url(../img/service-2.jpg);
}
.service-img-3 {
  background-image: url(../img/service-3.jpg);
}
.service-img-4 {
  background-image: url(../img/service-4.jpg);
}
.service-img-5 {
  background-image: url(../img/service-5.jpg);
}
.large {
  grid-column: span 2;
}
.service h3 {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 40px;
  font-weight: var(--font-semi-bold);
  color: var(--white);
  text-shadow: 0px 0px 49px #000;
  z-index: 2;
}
.service p {
  position: relative;
  display: block;
  font-family: var(--font-flex);
  font-size: 18px;
  line-height: 22px;
  font-weight: var(--font-regular);
  color: var(--white);
  max-width: 337px;
  z-index: 2;
}
.service button {
  z-index: 2;
}
.calc::after {
  content: "";
  position: absolute;
  top: -228px;
  right: 0;
  width: 1898px;
  height: 1101px;
  background-image: url(../img/calc-blur.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.price-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 61px 86px;
  border-radius: 15px;
  background-color: var(--white);
  background-image: url(../img/send-photo-img.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
.take-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f2f7ff;
  padding: 24px 30px;
  border-radius: 15px;
  max-width: 480px;
  margin-top: 26px;
}
.take-photo h6 {
  font-family: var(--font-flex);
  font-size: 18px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
  margin-bottom: 16px;
}
.take-photo p {
  font-family: var(--font-flex);
  font-size: 16px;
  line-height: 20px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
}
.price-photo img {
  position: absolute;
  right: 122px;
  top: -50px;
  width: 465px;
  transform: rotate(-7.14deg);
}
.sale__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  background-color: var(--white);
  background-image: url(../img/sale-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 45px;
  border-radius: 15px;
  overflow: hidden;
}
.sale__left {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sale__items {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.sale__variation {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 15px;
  padding: 15px 20px;
}
.sale__variation h5 {
  font-family: var(--font-flex);
  font-size: 24px;
  line-height: 28px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  margin-bottom: 10px;
}
.sale__variation span {
  font-family: var(--font-flex);
  font-size: 16px;
  line-height: 20px;
  font-weight: var(--font-regular);
  color: var(--gray);
  margin-bottom: 10px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7d7d7;
}
.sale__variation p {
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 28px;
  font-weight: var(--font-semi-bold);
  color: #ff6a00;
}
.sale__variation img {
  position: absolute;
  top: 15px;
  right: 15px;
}
.sale__right {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 31px 34px;
  border-radius: 15px;
  flex: 0.4;
}
.sale__right h4 {
  font-family: var(--font-flex);
  font-size: 30px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
  margin-bottom: 40px;
}
.sale__right ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 20px;
}
.sale__right li {
  font-family: var(--font-flex);
  font-size: 20px;
  line-height: 24px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
}
.sale__right button {
  margin-top: auto;
}
.result__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.result__item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 20px 30px;
}
.result__item p {
  font-family: var(--font-flex);
  font-size: 18px;
  line-height: 22px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  margin-top: auto;
}
.result__item span {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-bold);
  color: var(--dark-black);
}
.result__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  background-image: url(../img/result-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 53px 62px;
  border-radius: 15px;
  gap: 45px;
  margin-top: 40px;
}
.result__banner h4 {
  font-family: var(--font-flex);
  font-size: 35px;
  line-height: 39px;
  font-weight: var(--font-regular);
  color: var(--dark-black);
  max-width: 810px;
}
.result__banner h4 b {
  font-weight: var(--font-semi-bold);
}
.review__wrap {
  position: relative;
  display: flex;
  width: 100%;
}
.mySwiper {
  padding-bottom: 50px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.swiper-slide img {
  border-radius: 15px;
}
.swiper {
  width: 100%;
  margin: 0 100px;
}
.swiper-button-prev,
.swiper-button-next {
  transform-origin: center;
  will-change: transform;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(0.95);
  opacity: 0.91;
}
.about__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
}
.about__left {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 15px;
  padding: 53px 62px;
  width: 50%;
}
.about__right {
  position: relative;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  width: 50%;
}
.about__right .about-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 15px;
}
.about__info {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 15px;
  bottom: 15px;
  right: 15px;
}
.about__team {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.about__team-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
}
.team-img {
    object-fit: cover;
    width: 100%;
}
.about__team-title {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.about__team-title h5 {
    position: relative;
    display: block;
    font-family: var(--font-flex);
    font-size: 20px;
    font-weight: var(--font-semi-bold);
    color: var(--dark-black);
}
.about__team-title span {
    position: relative;
    display: block;
    font-family: var(--font-flex);
    font-size: 16px;
    font-weight: var(--font-medium);
    padding: 10px 14px;
    background-color: #0250d6;
    border-radius: 50px;
    color: #ffffff;
}
.map {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.map__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  border-radius: 50px;
  padding: 15px 26px;
  font-family: var(--font-flex);
  font-size: 20px;
  font-weight: var(--font-semi-bold);
  color: var(--dark-black);
  transform-origin: center;
  will-change: transform;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.map__item:hover {
  transform: scale(1.1);
  cursor: default;
}
.map__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  background-image: url(../img/map-img.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 53px 62px;
  border-radius: 15px;
  margin-top: 40px;
}
.map__banner .subtitle {
  max-width: 370px;
}
.buisnes__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  background-image: url(../img/buisnes-bg.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 53px 62px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid #1bbcff;
}
.buisnes__office {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
}
.buisnes__office-item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--dark-black);
  border-radius: 50px;
  padding: 15px 26px;
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-semi-bold);
  color: var(--white);
}
.buisnes__offer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 35px;
  border: 2px solid #1bbcff;
}
.buisnes__offer h4 {
  font-family: var(--font-flex);
  font-size: 26px;
  line-height: 33px;
  font-weight: var(--font-medium);
  color: var(--dark-black);
  max-width: 680px;
}
.buisnes__offer h4 span {
  font-weight: var(--font-regular);
}
.accardion__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto;
  width: 80%;
}
.accordion {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px 35px;
  border-radius: 50px;
  background-color: var(--white);
}
.accordion:last-child {
  border: none;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
}
.accordion__header svg {
  transition: 0.5s ease;
  position: relative;
  display: block;
}
.accordion__header svg.active {
  transform: rotate(180deg) translateY(2px);
}
.accordion__question {
  line-height: 26px;
  font-size: 20px;
  font-weight: var(--font-medium);
  flex: 1;
}
.accordion__answer {
  position: relative;
  display: block;
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 22px;
  color: var(--gray);
  max-width: 70%;
  z-index: 10;
}
.accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;
}
footer {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.footer {
  position: relative;
  display: block;
  background-color: var(--dark-black);
  border-radius: 15px;
  padding: 46px 66px;
}
.footer__wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 25px;
  border-bottom: 1px solid #4e4e4e;
  padding-bottom: 30px;
}
.footer__col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.footer__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__item span {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  color: #797979;
}
.footer__item p {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  color: var(--white);
  margin-bottom: 8px;
}
.footer__item a {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  color: var(--white);
  text-decoration: underline;
  margin-bottom: 8px;
}
.footer__item a:last-child {
  margin-bottom: 0;
}
.footer__item p:last-child {
  margin-bottom: 0;
}
.footer__soc {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.btn-wa-footer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 50px;
  background-color: #30d44d;
  border: 2px solid #30d44d;
  width: fit-content;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
  overflow: hidden;
}
.btn-wa-footer:hover {
  background-color: transparent;
}
.btn-wa-footer:hover > svg path {
  fill: #30d44d;
}
.btn-tg-footer {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 50px;
  background-color: #27a2e0;
  border: 2px solid #27a2e0;
  width: fit-content;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: 0.2s;
  overflow: hidden;
}
.btn-tg-footer:hover {
  background-color: transparent;
}
.btn-tg-footer:hover > svg path {
  fill: #27a2e0;
}
.footer__down {
  position: relative;
  display: flex;
  padding: 30px 0 0 0;
}
.footer__down p {
  font-family: var(--font-flex);
  font-size: 16px;
  font-weight: var(--font-medium);
  color: var(--gray);
}
.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    height: auto;
}
.blog-card h3 {
    position: relative;
    display: block;
    font-family: var(--font-flex);
    font-size: 26px;
    font-weight: var(--font-semi-bold);
    color: #000000;
    z-index: 2;
}
.blog-card p {
    position: relative;
    display: block;
    font-family: var(--font-flex);
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--font-regular);
    color: #000000;
    z-index: 2;
}
.blog-card a {
    margin-top: auto;
}
.breadcrumb-page {
    position: relative;
    display: block;
    padding: 20px 0;
}
.breadcrumb li::after {
    content: "";
    position: absolute;
    top: 4px;
    width: 6px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../img/icons/chevron-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumb li:last-child::after {
  content: "";
  display: none;
}
.breadcrumb {
    position: relative;
    display: flex;
    column-gap: 20px;
}
.breadcrumb li {
    color: var(--gray);
}
.breadcrumb a {
    text-decoration: underline;
    color: var(--primary-black);
}
.breadcrumb span {
    font-size: 14px;
    font-weight: var(--font-regular);
}
/* Стиль для страницы статьи */
.article {
  padding: 30px 0;
  font-family: var(--font-flex);
  color: var(--dark-black);
}

.article h1 {
  font-size: 28px;
  line-height: 1.3;
  color: var(--dark-black);
  font-weight: var(--font-semi-bold);
  margin-bottom: 20px;
}

.article h2 {
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark-black);
  font-weight: var(--font-semi-bold);
  margin: 20px 0 10px;
}

.article h3 {
  font-size: 18px;
  color: var(--dark-black);
  margin: 18px 0;
}

.article p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.article ul {
position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}
.article ul li {
    position: relative;
    display: block;
    font-family: var(--font-flex);
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--font-medium);
    color: var(--dark-black);
}
.article ul li::before {
    content: attr(data-icon);
    font-size: 21px;
    position: relative;
    color: #00bdf9;
    padding-right: 10px;
}
.article .cta {
  text-align: center;
  margin-top: 30px;
  background-color: #007bff;
  padding: 15px;
  border-radius: 5px;
}

.article .cta p {
  color: white;
  font-size: 18px;
}

.article .cta a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}

.article .cta a:hover {
  color: #f0f0f0;
  border-color: #f0f0f0;
}

@media (max-width: 768px) {
  .article h1 {
    font-size: 24px;
  }
  .article h2 {
    font-size: 20px;
  }
  .article h3 {
    font-size: 16px;
  }
  .article p {
    font-size: 14px;
  }
}

@media (max-width: 1320px) {
  .container {
    padding: 0 20px;
  }
  .price-photo img {
    right: 30px;
  }
}
@media (max-width: 1170px) {
  .price-photo img {
    right: 0px;
    width: 413px;
  }
}
@media (max-width: 991.98px) {
  .container {
    overflow: hidden;
  }
  .no-overflow > .container {
    overflow: visible;
  }
  body.noscroll {
    padding-right: 0;
  }
  .main__wrap {
    flex-direction: column;
    padding: 35px 0;
  }
  .main__wrap-btn {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .main__items {
    gap: 5px;
    justify-content: space-around;
    width: 100%;
  }
  .main__items-block {
    padding: 0;
    background-color: transparent;
  }
  .main__items-block span {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.5px;
  }
  .main__items-block .raiting {
    font-size: 50px;
    letter-spacing: -6px;
  }
  .main__left {
    align-items: center;
  }
  .main__left h1 {
    text-align: center;
    font-size: 32px;
    line-height: 36px;
  }
  .main__left p {
    text-align: center;
    font-size: 16px;
    line-height: 21px;
    max-width: 80%;
    margin-bottom: 25px;
  }
  .main__img-sm {
    position: relative;
    display: flex;
    justify-content: space-around;
    margin-bottom: 35px;
  }
  .main__right {
    display: none;
  }
  .main-img {
    width: 50%;
    position: relative;
  }
  .main-img-1,
  .main-img-2 {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .main::after {
    display: none;
  }
  .main__img-sm::after {
    content: "";
    position: absolute;
    top: -99px;
    width: 500px;
    height: 500px;
    background-image: url(../img/main-blur.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
  }
  .mb {
    margin-bottom: 40px;
  }
  .second__wrap {
    flex-direction: column;
    gap: 15px;
  }
  .section-title {
    margin-bottom: 25px;
  }
  .title {
    font-size: 25px;
    line-height: 29px;
  }
  .subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  .main {
    margin-bottom: 40px;
  }
  .second__item .second-img {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .large {
    grid-column: 1;
  }
  .service {
    background-size: cover;
  }
  .service:hover {
    background-size: cover;
  }
  .service h3 {
    font-size: 32px;
  }
  .price-photo {
    padding: 25px 30px;
  }
  .price-photo img {
    display: none;
  }
  .sale__wrap {
    flex-direction: column;
    padding: 25px 30px;
    gap: 15px;
  }
  .sale__items {
    flex-direction: column;
  }
  .sale__right h4 {
    margin-bottom: 15px;
  }
  .sale__right {
    padding: 25px;
  }
  .sale__right h4 {
    font-size: 24px;
  }
  .sale__right li {
    font-size: 16px;
    line-height: 18px;
  }
  .result__wrap {
    gap: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .result__item {
    padding: 15px;
  }
  .result__item p {
    font-size: 16px;
    line-height: 20px;
  }
  .result__item img {
    width: 30px;
  }
  .result__banner {
    margin-top: 20px;
    padding: 25px;
  }
  .result__banner h4 {
    font-size: 25px;
    line-height: 27px;
  }
  .swiper {
    margin: 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .about__wrap {
    flex-direction: column;
  }
  .about__left,
  .about__right {
    width: 100%;
    overflow: visible;
  }
  .about__left {
    padding: 25px;
  }
  .about__info {
    bottom: -50px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: fit-content;
    background-color: var(--white);
    border-radius: 11px;
    padding: 15px;
    gap: 40px;
  }
  .map-section {
    padding-top: 40px;
  }
  .map {
    gap: 7px;
  }
  .map__item {
    padding: 8px 12px;
    font-size: 13px;
    letter-spacing: -0.5px;
    font-weight: var(--font-medium);
    gap: 5px;
  }
  .map__item img {
    width: 16px;
  }
  .map__banner {
    margin-top: 20px;
    padding: 25px;
    background-position: center;
  }
  .buisnes__wrap {
    margin-top: 20px;
    padding: 25px;
    background-position: right;
    background-image: url(../img/buisnes-bg-sm-2.jpg);
  }
  .buisnes__offer {
    flex-direction: column;
    padding: 25px 35px;
  }
  .buisnes__offer h4 {
    font-size: 20px;
    line-height: 25px;
  }
  .accardion__wrap {
    width: 100%;
  }
  .footer {
    padding: 30px 20px;
  }
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .section-title {
    text-align: center;
    align-items: center;
  }
  .footer__down p {
    text-align: center;
  }
  .service-img-1 {
    background-image: url(../img/service-1.jpg);
  }
  footer {
    margin-bottom: 20px;
  }
  .about__team {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__team-title {
    flex-direction: column;
    gap: 10px;
  }
  .about__team-title span {
    font-size: 14px;
  }
}
@media (max-width: 630px) {
}
