@charset "UTF-8";

@font-face {
  font-family: Satoshi;
  font-display: swap;
  src: url("../fonts/Satoshi-Light.woff2") format("woff2"), url("../fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Satoshi;
  font-display: swap;
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Satoshi;
  font-display: swap;
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Satoshi;
  font-display: swap;
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Satoshi;
  font-display: swap;
  src: url("../fonts/Satoshi-Black.woff2") format("woff2"), url("../fonts/Satoshi-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

/**
 * ==========================================================================
 * *										1. Variables
 * ==========================================================================
 */

:root {
  --body-bg: #ffffff;
  --color-primary: #173852;
  --color-accent: #F18432;
  --color-secondary: #F6F6F6;
  --color-text-dark: #173852;
  --color-text-light: #ffffff;
  --color-gray: #ACADAE;
  --color-border: #DDE4E9;
  --font-main: Satoshi, sans-serif;
  --border-radius: 16px;
  --border-radius--sm: 12px;
  --border-radius--lg: 24px;
}

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

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

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

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

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

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

button {
  background: none;
}

/**
 * =========================================================================================
 * --																 layout
 * =========================================================================================
 */

html {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  background-color: var(--body-bg);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body p {
  line-height: 120%;
}

body.lock {
  overflow: hidden;
}

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

.page-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease 0s;
  pointer-events: none;
}

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

.container {
  max-width: 1430px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}

section {
  margin-bottom: 130px;
}

/**
 * =========================================================================================
 * --																 tags
 * =========================================================================================
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

textarea,
input {
  border: 1px solid var(--color-border);
  background: transparent;
  text-align: right;
  padding-inline: 16px;
  border-radius: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: #8D8B8B;
  opacity: 1;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  color: #8D8B8B;
  opacity: 1;
}

textarea::placeholder,
input::placeholder {
  color: #8D8B8B;
  opacity: 1;
}

textarea:focus,
input:focus {
  outline-color: orange;
}

input {
  height: 56px;
}

/**
 * =========================================================================================
 * --																 classes
 * =========================================================================================
 */

.logo img {
  width: 100%;
}

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

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

.img-cover {
  overflow: hidden;
}

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

.effect-zoom {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.effect-zoom__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 1.3s ease 0s;
  will-change: transform;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.effect-zoom__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.effect-zoom--v2:hover .effect-zoom__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.effect-zoom--v2 .effect-zoom__img {
  transition: all 0.8s ease 0s;
}

.sc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 32px;
}

.sc-head--column {
  flex-direction: column;
  align-items: flex-start;
}

.sc-title {
  font-size: 56px;
}

.breadcrumbs {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.breadcrumbs__wrap {
  padding: 22px 0 26px;
}

.ui-chip {
  display: inline-flex;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(16.2000007629px);
          backdrop-filter: blur(16.2000007629px);
  background: rgba(255, 255, 255, 0.3215686275);
}

.ui-chip a,
.ui-chip span {
  color: var(--color-text-light);
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  font-size: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.pagination__item.active a,
.pagination__item:hover a,
.pagination__btn.active a,
.pagination__btn:hover a {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-light);
}

.pagination__item a,
.pagination__btn a {
  border-radius: 50%;
  transition: all 0.4s ease 0s;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
}

.pagination__btn {
  cursor: pointer;
  position: relative;
}

.pagination__btn:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.pagination__btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4L6 8L10 12' stroke='%23173852' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  pointer-events: none;
}

.pagination__btn--prev {
  margin-left: 28px;
  rotate: 180deg;
}

.pagination__btn--next {
  margin-right: 28px;
}

.pagination__btn--next mm2 {
  margin-right: 8px;
}

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

.accordion__item {
  position: relative;
  border-top: 1px solid #E9E9E9;
  min-height: 96px;
}

.accordion__item.open .accordion__trigger::after {
  rotate: 0deg;
}

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

.accordion__trigger {
  cursor: pointer;
  background: none;
  padding-top: 32px;
  padding-bottom: 16px;
  padding-left: 90px;
  font-size: 24px;
  text-align: right;
  font-weight: 700;
  width: 100%;
}

.accordion__trigger::before,
.accordion__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease 0s;
  background: transparent url("../img/icons/minus.svg") center/contain no-repeat;
}

.accordion__trigger::after {
  rotate: 90deg;
}

.accordion__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.4s ease 0s;
  padding-left: 90px;
  will-change: height, opacity;
}

.accordion__content {
  padding-bottom: 32px;
}

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

.socials a {
  transition: all 0.4s ease 0s;
  display: block;
  will-change: transform;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials a img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.socials a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.stats {
  display: flex;
  justify-content: center;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-inline: 4.5vw;
  flex: 0 0 20vw;
}

.stats__value {
  font-weight: 200;
  font-size: 7.8vw;
  color: var(--color-accent);
  direction: ltr;
  line-height: 1.2;
  display: flex;
}

.stats__label {
  font-size: 16px;
  max-width: 300px;
}

.stats__icon {
  width: 24px;
  height: 24px;
}

/**
 * =========================================================================================
 * --																 swiper custom styles
 * =========================================================================================
 */

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

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin: 0;
  color: inherit;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrow-left.svg") center/contain no-repeat;
}

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

.swiper-pagination {
  position: static;
  align-self: center;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: #ACADAE;
  margin: 0 3px;
  opacity: 1;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
}

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

.swiper-pagination--primary .swiper-pagination-bullet {
  background: #D9D9D9;
}

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

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

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person__photo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  position: relative;
}

.person__photo::after {
  position: absolute;
  right: 5px;
  bottom: 1px;
  width: 15px;
  height: 15px;
  background-color: #50D894;
  border: 3px solid #F8F8F8;
  border-radius: 50%;
}

.person__info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.person__name {
  font-size: 20px;
  font-weight: 700;
}

.person__details {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 500;
}

.person.is-online .person__photo::after {
  content: "";
}

.person--lg {
  gap: 16px;
}

.person--lg .person__photo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.person--lg .person__info {
  gap: 2px;
}

.person--lg .person__name {
  font-size: 24px;
}

.ui-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.ui-chips li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  white-space: nowrap;
  padding: 6px 24px;
  background-color: #f4f4f4;
  border-radius: 50px;
  font-weight: 500;
}

.share {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 400;
}

.share__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share__list li {
  border-radius: 50%;
  border: 1px solid #E9E9E9;
  transition: all 0.3s ease 0s;
}

.share__list li:hover {
  background: var(--color-accent);
}

.share__list li:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.share__list li a {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease 0s;
  will-change: scale;
}

.share__list li img {
  max-width: 24px;
  aspect-ratio: 1;
}

.icon-block {
  display: flex;
  align-items: center;
  gap: 28px;
}

.icon-block__img img {
  transition: all 0.3s ease 0s;
}

.icon-block__text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.icon-block__text p {
  font-size: 16px;
}

.icon-accent {
  background-color: var(--color-accent);
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
}

.icon-accent img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.icon-accent.size-64-24 {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.icon-accent.size-64-24 img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.icon-accent.size-100-22 {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
}

.icon-accent.size-100-22 img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.icon-accent.size-48-24 {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

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

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

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

.video-popup__content {
  position: relative;
  width: 100%;
  max-width: 80vw;
  /* Максимальна ширина відео */
  aspect-ratio: 16/9;
  background: #000;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease 0s;
  border: 1px solid transparent;
  border-radius: 0;
  line-height: 1em;
  border-radius: 8px;
  min-width: 168px;
  height: 56px;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
}

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

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

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

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

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

.btn--secondary:hover,
.btn--secondary:focus {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.btn--white {
  background-color: var(--color-text-light);
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn--white:hover,
.btn--white:focus {
  background-color: var(--color-secondary);
}

.btn--outline-light {
  background-color: transparent;
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
}

.btn--outline {
  background-color: var(--color-text-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn--sm {
  height: 48px;
  padding: 0 24px;
  border-radius: 6px;
}

@-webkit-keyframes arrow-swipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  45% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }

  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes arrow-swipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  45% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }

  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid var(--color-secondary);
  padding: 32px 0;
  transition: all 0.3s ease 0s;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: all 0.4s ease 0s;
}

.header__btn-account {
  height: 42px;
  margin-left: 90px;
  border-radius: 8px;
}

.header__logo {
  flex: 0 0 144px;
  transition: all 0.4s ease 0s;
}

.header__btn-menu {
  cursor: pointer;
  position: relative;
  z-index: 103;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: none;
}

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

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

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

.menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.menu__item {
  font-weight: 500;
  line-height: 42px;
}

.menu__item--has-children {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.menu__item--has-children::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/icons/chevron-down.svg") center/contain no-repeat;
  transition: all 0.4s ease 0s;
}

.menu__item--has-children.open::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.menu__panel {
  position: absolute;
  top: 100%;
  right: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease 0.2s;
  background: #fff;
}

.menu__panel-wrap {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.menu__sub-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px 24px;
  max-width: 920px;
}

.menu__sub-item {
  flex: 0 0 200px;
}

.menu__sub-link {
  font-size: 14px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 80px;
  height: calc(100svh - 80px);
  background: #e69494;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  transition: -webkit-transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  overflow-y: auto;
  padding: 16px;
  font-size: 18px;
  border-top: 1px solid #E9E9E9;
}

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

.mobile-menu .main-header-menu__nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.mobile-menu .cats-menu__list {
  flex-direction: column;
  height: auto;
  gap: 22px;
}

.mobile-menu .cats-menu__item {
  width: 100%;
  align-items: flex-start;
}

.mobile-menu .cats-menu__item--has-children {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}

.mobile-menu .cats-menu__item--has-children::after {
  position: absolute;
  left: 0;
  top: 2px;
}

.mobile-menu .cats-menu__panel {
  position: static;
  padding: 0;
  border: none;
}

.mobile-menu .cats-menu__panel-wrap {
  padding: 15px 10px;
}

.mobile-menu .cats-menu__sub-item {
  flex: 0 0 100%;
}

.mobile-menu .cats-menu__sub-link {
  font-size: 15px;
}

.footer {
  background: var(--color-secondary);
  font-size: 14px;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  padding: 110px 0 100px;
  gap: 90px;
}

.footer__nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer__menu-col {
  padding-left: 24px;
}

.footer__menu-title {
  font-size: 24px;
  margin-bottom: 1em;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  font-size: 14px;
  border-top: 1px solid rgba(92, 92, 92, 0.3215686275);
  padding-top: 36px;
}

.footer__copyright {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.specialist__wrap {
  display: grid;
  grid-template-areas: "cover cover" "main aside";
  grid-template-columns: 1fr 440px;
  gap: 0 20px;
}

.specialist__bg-cover {
  height: 310px;
  width: calc(100% + 140px);
  margin-right: -70px;
  grid-area: cover;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  border-radius: 16px;
}

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

.specialist__main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-left: 48px;
}

.specialist__main section {
  margin-bottom: 0;
}

.specialist__sc-title {
  margin-bottom: 32px;
  font-size: 24px;
}

.specialist__widget {
  grid-area: aside;
  margin-top: 100px;
  background-color: #F8F8F8;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  padding: 32px;
  align-self: start;
}

.specialist__widget-header {
  margin-bottom: 22px;
}

.intro {
  margin-top: -95px;
}

.intro__photo {
  width: 216px;
  height: 216px;
  flex: 0 0 216px;
  border: 5px solid #F8F8F8;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
}

.intro__name {
  font-size: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.intro__name .verified {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-top: 10px;
}

.intro__tags {
  margin-bottom: 36px;
}

.intro__tags li {
  background: #F5F5F5;
}

.intro__details {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.intro__details-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.intro__details-item::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-size: contain;
}

.intro__location::before {
  background-image: url("../img/icons/pin.svg");
}

.intro__lang::before {
  background-image: url("../img/icons/lang.svg");
}

.intro__text {
  max-width: 800px;
}

.purchase-block--mobile {
  display: none;
  width: 100%;
}

.purchase-contacts__schedule {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-contacts__schedule-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  text-align: center;
  background: #fff;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

.purchase-contacts__button {
  margin-bottom: 16px;
  width: 100%;
}

.purchase-contacts__footer-note {
  font-size: 14px;
  color: var(--color-gray);
}

.purchase-contacts__contacts {
  margin-top: 32px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
}

.purchase-contacts__phone {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
}

.purchase-contacts__phone img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.purchase-contacts__email {
  margin-bottom: 6px;
}

.education__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.education__item {
  flex: 0 0 calc(25% - 18px);
}

.education__item-certificate {
  margin-bottom: 6px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 10px;
  aspect-ratio: 210/175;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.education__item-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px;
}

.education__item-date {
  font-size: 12px;
  color: var(--color-gray);
}

.services__table {
  border: 1px solid var(--color-border);
  border-spacing: 0;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  width: 100%;
}

.services__table thead {
  text-align: right;
}

.services__table thead th {
  padding: 30px 32px 10px;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-gray);
}

.services__table tbody tr {
  padding: 0 32px;
}

.services__table tbody tr:nth-child(odd) {
  background-color: #F5F5F5;
}

.services__table tbody td {
  padding: 21px 32px;
  font-weight: 500;
  font-size: 16px;
}

.services__table tbody td:nth-child(1) {
  font-weight: 700;
  grid-area: name;
}

.services__table tbody td:nth-child(2) {
  font-size: 14px;
  grid-area: desc;
}

.services__table tbody td:nth-child(3) {
  grid-area: price;
}

.rating-summary {
  display: flex;
  gap: 42px;
  margin-bottom: 62px;
}

.rating-summary__item {
  flex: 0 0 calc(33.3% - 28px);
}

.rating-summary__head {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rating-summary__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
}

.rating-summary__value {
  font-weight: 700;
  color: var(--color-primary);
}

.rating-summary__progress-wrap {
  height: 5px;
  border-radius: 50px;
  background-color: #eee;
  overflow: hidden;
}

.rating-summary__progress-bar {
  height: 100%;
  background-color: var(--color-accent);
}

.rating-total {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 35px;
  font-weight: 500;
}

.rating-total__icon {
  margin-left: 4px;
}

.rating-total__count {
  color: #656565;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius--lg);
  padding: 32px;
}

.reviews-item__header {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviews-item__rate {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-item__rate span {
  display: inline-block;
  margin-top: 1px;
}

.reviews-item__stars {
  width: 100px;
  height: 15px;
  position: relative;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='-2 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.62075 0.231931C7.65581 0.162296 7.70996 0.10368 7.7771 0.0626981C7.84424 0.0217163 7.92169 0 8.00072 0C8.07974 0 8.1572 0.0217163 8.22434 0.0626981C8.29148 0.10368 8.34563 0.162296 8.38068 0.231931L10.2285 3.91192C10.3502 4.15413 10.5299 4.36369 10.7522 4.52259C10.9744 4.6815 11.2325 4.78501 11.5044 4.82425L15.6368 5.41884C15.7151 5.42999 15.7887 5.46246 15.8492 5.51258C15.9097 5.56271 15.9547 5.62847 15.9792 5.70245C16.0037 5.77642 16.0066 5.85566 15.9877 5.93118C15.9687 6.00671 15.9287 6.07552 15.872 6.12982L12.8835 8.99108C12.6864 9.17991 12.5389 9.41301 12.4538 9.67031C12.3686 9.92761 12.3484 10.2014 12.3947 10.4681L13.1003 14.5107C13.1141 14.5876 13.1056 14.6668 13.0759 14.7393C13.0461 14.8117 12.9962 14.8745 12.9319 14.9204C12.8676 14.9663 12.7915 14.9936 12.7122 14.999C12.6329 15.0044 12.5537 14.9878 12.4835 14.9511L8.78945 13.0415C8.54604 12.9158 8.27524 12.8502 8.00032 12.8502C7.7254 12.8502 7.45459 12.9158 7.21119 13.0415L3.51792 14.9511C3.44779 14.9876 3.36865 15.004 3.2895 14.9985C3.21035 14.993 3.13437 14.9657 3.0702 14.9198C3.00603 14.8739 2.95624 14.8113 2.9265 14.7389C2.89676 14.6666 2.88827 14.5875 2.90198 14.5107L3.60671 10.4689C3.65327 10.2021 3.6331 9.9281 3.54795 9.67064C3.4628 9.41318 3.31523 9.17995 3.11796 8.99108L0.129428 6.13061C0.0723083 6.07637 0.0318315 6.00744 0.0126086 5.93169C-0.00661431 5.85593 -0.00381035 5.77639 0.0207009 5.70212C0.0452122 5.62786 0.0904452 5.56185 0.151248 5.51163C0.21205 5.4614 0.285977 5.42898 0.364607 5.41805L4.49623 4.82425C4.76841 4.78532 5.0269 4.68194 5.24943 4.52301C5.47197 4.36409 5.65189 4.15437 5.77372 3.91192L7.62075 0.231931Z' fill='%23A0A7AC'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 15px;
}

.reviews-item__stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--rating, 0%);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='-2 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.62075 0.231931C7.65581 0.162296 7.70996 0.10368 7.7771 0.0626981C7.84424 0.0217163 7.92169 0 8.00072 0C8.07974 0 8.1572 0.0217163 8.22434 0.0626981C8.29148 0.10368 8.34563 0.162296 8.38068 0.231931L10.2285 3.91192C10.3502 4.15413 10.5299 4.36369 10.7522 4.52259C10.9744 4.6815 11.2325 4.78501 11.5044 4.82425L15.6368 5.41884C15.7151 5.42999 15.7887 5.46246 15.8492 5.51258C15.9097 5.56271 15.9547 5.62847 15.9792 5.70245C16.0037 5.77642 16.0066 5.85566 15.9877 5.93118C15.9687 6.00671 15.9287 6.07552 15.872 6.12982L12.8835 8.99108C12.6864 9.17991 12.5389 9.41301 12.4538 9.67031C12.3686 9.92761 12.3484 10.2014 12.3947 10.4681L13.1003 14.5107C13.1141 14.5876 13.1056 14.6668 13.0759 14.7393C13.0461 14.8117 12.9962 14.8745 12.9319 14.9204C12.8676 14.9663 12.7915 14.9936 12.7122 14.999C12.6329 15.0044 12.5537 14.9878 12.4835 14.9511L8.78945 13.0415C8.54604 12.9158 8.27524 12.8502 8.00032 12.8502C7.7254 12.8502 7.45459 12.9158 7.21119 13.0415L3.51792 14.9511C3.44779 14.9876 3.36865 15.004 3.2895 14.9985C3.21035 14.993 3.13437 14.9657 3.0702 14.9198C3.00603 14.8739 2.95624 14.8113 2.9265 14.7389C2.89676 14.6666 2.88827 14.5875 2.90198 14.5107L3.60671 10.4689C3.65327 10.2021 3.6331 9.9281 3.54795 9.67064C3.4628 9.41318 3.31523 9.17995 3.11796 8.99108L0.129428 6.13061C0.0723083 6.07637 0.0318315 6.00744 0.0126086 5.93169C-0.00661431 5.85593 -0.00381035 5.77639 0.0207009 5.70212C0.0452122 5.62786 0.0904452 5.56185 0.151248 5.51163C0.21205 5.4614 0.285977 5.42898 0.364607 5.41805L4.49623 4.82425C4.76841 4.78532 5.0269 4.68194 5.24943 4.52301C5.47197 4.36409 5.65189 4.15437 5.77372 3.91192L7.62075 0.231931Z' fill='%23173852'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 15px;
}

.reviews-item__text {
  margin-bottom: 12px;
}

.reviews-item__date {
  font-size: 14px;
  color: var(--color-gray);
}

.rating__btn {
  min-width: 220px;
  margin-top: 32px;
}

/**
 * =========================================================================================
 * --																 Blog & post-item
 * =========================================================================================
 */

.blog {
  margin-bottom: 150px;
}

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

.blog__head {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.blog__title {
  font-size: 48px;
}

.blog__filter {
  margin-bottom: 32px;
}

.blog__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog__filter-item {
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

.blog__filter-item.active,
.blog__filter-item:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-text-light);
}

.blog__filter-item a {
  padding-inline: 20px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.blog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 20px;
  margin-bottom: 104px;
  width: 100%;
}

.blog__list .post-item {
  flex: 0 0 calc(25% - 15px);
}

.blog__pagination {
  justify-content: center;
}

.post-item {
  height: auto;
  display: flex;
  flex-direction: column;
}

.post-item__img {
  aspect-ratio: 32/19;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}

.post-item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.post-item__title {
  margin-bottom: 12px;
  padding-left: 15%;
  transition: color 0.3s ease 0s;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  max-width: 300px;
}

.post-item__details {
  font-size: 14px;
  color: var(--color-gray);
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.post-item__date {
  display: flex;
  align-items: center;
  gap: 9px;
}

.post-item__date::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../img/icons/time.svg") 0 0/contain no-repeat;
}

/**
 * =========================================================================================
 * --																 Article
 * =========================================================================================
 */

.post-head {
  margin-bottom: 0;
}

.post-head__wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-head__title {
  font-size: 48px;
  max-width: 630px;
  margin-bottom: 20px;
}

.post-head__date {
  margin-bottom: 36px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  line-height: 16px;
}

.post-head__date::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../img/icons/time.svg") 0 0/contain no-repeat;
}

.post-head__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 137/53;
}

.article__wrap {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  width: 100%;
  margin: 0 auto 142px;
}

.article__share {
  margin-top: 60px;
}

#article h2 {
  font-size: 32px;
  margin: 80px 0 20px;
}

#article h3 {
  font-size: 28px;
  margin: 48px 0 18px;
}

#article p {
  font-size: 18px;
  margin: 1em 0;
}

#article a {
  text-decoration: underline;
}

#article blockquote {
  margin: 80px 0;
  background: var(--color-secondary);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 24px;
  border-radius: 16px;
}

#article blockquote::before {
  content: "";
  width: 24px;
  flex: 0 0 24px;
  height: 24px;
  background: url("../img/icons/quotes.svg") 0 0/contain no-repeat;
  margin-bottom: 16px;
}

#article blockquote * {
  margin: 0 !important;
}

#article blockquote .person {
  font-size: 14px;
  font-style: normal;
}

#article blockquote .person__name {
  font-size: 16px;
}

#article blockquote .person__details {
  font-size: 12px;
}

#article ul,
#article ol {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

#article ul li {
  padding-right: 16px;
  position: relative;
}

#article ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  display: block;
}

#article ol {
  counter-reset: custom-list;
  list-style: none;
}

#article ol li {
  padding-right: 25px;
  position: relative;
  counter-increment: custom-list;
}

#article ol li::after {
  content: counter(custom-list);
  position: absolute;
  right: 0;
  top: 1px;
}

#article img {
  margin: 48px 0;
  width: 100%;
  border-radius: 12px;
}

.posts .sc-title {
  font-size: 48px;
}

.posts__slider {
  margin-bottom: 216px;
}

.posts__slider-pagination {
  display: none;
}

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

.posts__slider .swiper-slide .post-item {
  height: 100%;
}

/**
 * =========================================================================================
 * --																 Hero
 * =========================================================================================
 */

.hero {
  background: var(--color-secondary) url("../img/bg/hero-bg.png") 0 0/cover no-repeat;
  min-height: 620px;
  margin-bottom: 46px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 32%;
}

.hero__wrap {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 72px;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 880px;
}

.hero__search {
  margin-bottom: 32px;
  padding: 12px;
  background-color: #fff;
  max-width: 800px;
  width: 100%;
  display: flex;
  gap: 24px;
}

.hero__search input::-webkit-input-placeholder {
  color: #616161;
}

.hero__search input::-moz-placeholder {
  color: #616161;
}

.hero__search input::placeholder {
  color: #616161;
}

.hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.search-wrapper {
  border-radius: var(--border-radius);
}

.search-wrapper__input-wr {
  flex: 1 1 auto;
}

.search-wrapper__input-wr input {
  width: 100%;
  height: 100%;
}

.search-wrapper .btn {
  font-size: 24px;
  height: 66px;
}

/**
 * =========================================================================================
 * --																 slider Categories
 * =========================================================================================
 */

.categories__slider__pagination {
  margin-top: 40px;
}

.category-card {
  aspect-ratio: 1;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 32px;
  transition: all 0.3s ease 0s;
  position: relative;
  color: #000;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease 0s;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17V7H17' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 17L7 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.category-card:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
}

.category-card:hover::after {
  opacity: 1;
}

.category-card__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-color: currentColor;
  -webkit-mask: var(--icon-url) no-repeat center/contain;
  mask: var(--icon-url) no-repeat center/contain;
  transition: all 0.3s ease 0s;
}

.category-card__title {
  font-size: 24px;
  transition: all 0.3s ease 0s;
}

/**
 * =========================================================================================
 * --																 slider Specialists
 * =========================================================================================
 */

.specialists__controls {
  margin-right: auto;
}

.specialists__slider-pagination {
  display: none;
  font-size: 0;
}

.pro-card__bg-image {
  aspect-ratio: 33/16;
  border-radius: 12px;
  overflow: hidden;
}

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

.pro-card__body {
  padding: 34px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #D7D7D7;
  border-radius: 0 0 16px 16px;
  margin-top: -8px;
}

.pro-card__photo {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  margin-top: -40px;
  border: 5px solid #fff;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

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

.pro-card__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.pro-card__title span {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pro-card__title img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.pro-card__role {
  color: #656565;
  margin-top: -14px;
}

.pro-card__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pro-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.pro-card__rating-val {
  font-weight: 500;
}

.pro-card__rating-count {
  color: #656565;
}

.pro-card__footer {
  display: flex;
  gap: 12px;
}

.pro-card__btn {
  flex: 0 0 calc(50% - 6px);
  min-width: auto;
  height: 40px;
  font-size: 16px;
  border-radius: 6px;
}

/**
 * =========================================================================================
 * --																 How Works
 * =========================================================================================
 */

.how-works__wrap {
  overflow: hidden;
}

.how-works__list {
  display: flex;
  gap: 22px;
}

.how-works__item {
  flex: 0 0 calc(33.33% - 14px);
  display: flex;
  flex-direction: column;
}

.how-works__img {
  aspect-ratio: 44/25;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 35px;
}

.how-works__step {
  margin-bottom: 40px;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-text-light);
  position: relative;
}

.how-works__step::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 33vw;
  height: 1px;
  background: var(--color-accent);
  z-index: -1;
}

.how-works__title {
  margin-bottom: 10px;
  font-size: 24px;
  max-width: 320px;
}

.how-works__text {
  max-width: 320px;
}

/**
 * =========================================================================================
 * --																 Why us
 * =========================================================================================
 */

.why-us__wrap {
  display: flex;
  gap: 100px;
}

.why-us__img {
  flex: 0 0 560px;
  border-radius: 24px;
  overflow: hidden;
}

.why-us__img img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-us__content {
  flex: 1 1 auto;
}

.why-us .sc-head {
  max-width: 460px;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 4px;
  max-width: 555px;
}

.why-us__item {
  display: flex;
  gap: 30px;
}

.why-us__item-img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us__item-img img {
  max-width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-us__item-desc h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

/**
 * =========================================================================================
 * --																 Access
 * =========================================================================================
 */

.access__wrap {
  display: flex;
  background: #FFF9F4;
  border-radius: 24px;
  padding: 68px 46px;
}

.access__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}

.access__title {
  max-width: 500px;
  font-size: 40px;
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.access__item {
  font-size: 20px;
  position: relative;
  padding-right: 36px;
}

.access__item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("../img/icons/aprooved--red.svg") center 0/contain no-repeat;
}

.access__img {
  flex: 0 0 50%;
}

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

/**
 * =========================================================================================
 * --																 FAQ
 * =========================================================================================
 */

.faq__wrap {
  display: flex;
}

.faq .sc-head {
  flex: 1 1 auto;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 430px;
  gap: 16px;
}

.faq .sc-head .btn {
  margin-top: 32px;
}

.faq__list {
  flex: 0 0 790px;
  margin-right: auto;
}

/**
 * =========================================================================================
 * --																 Contact us
 * =========================================================================================
 */

body:has(.contact-us) {
  background-color: #f5f5f5;
}

.contact-us {
  margin-bottom: 134px;
}

.contact-us__wrap {
  display: flex;
}

.contact-us__col-content {
  flex: 1 1 auto;
  padding-left: 32px;
}

.contact-us__head {
  margin-bottom: 76px;
}

.contact-us__head h1 {
  font-size: 72px;
  margin-bottom: 28px;
}

.contact-us__head p {
  font-size: 18px;
}

.contact-us__contacts {
  margin-bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-us__contacts-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-us__contacts-item span h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-us__contacts-item span a {
  font-size: 18px;
  font-weight: 700;
}

.contact-us__socials li a {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.contact-us__col-form {
  flex: 0 0 560px;
  background-color: #fff;
  padding: 40px;
  border-radius: 32px;
  overflow: hidden;
}

.contact-us__col-form h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.contact-us__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-us__form .form-row {
  width: 100%;
}

.contact-us__form textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
  line-height: 1.4;
}

.contact-us__form button {
  min-width: 180px;
}

.contact-us__note {
  font-size: 12px;
  margin-top: 24px;
  max-width: 385px;
  color: var(--color-gray);
}

.contact-us__note a {
  font-weight: 700;
}

/**
 * =========================================================================================
 * --																 Page: About us
 * =========================================================================================
 */

.about-us {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  margin-bottom: 200px;
}

.about-us__wrap {
  min-height: 756px;
  display: flex;
}

.about-us__col {
  flex: 0 0 50%;
}

.about-us__content {
  display: flex;
  flex-direction: column;
  padding: 160px 0;
  max-width: 600px;
  padding-left: 32px;
}

.about-us__title {
  font-size: 72px;
  margin-bottom: 32px;
}

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

.about-us__btn {
  align-self: start;
}

.about-us__img {
  max-width: 550px;
  width: 100%;
  margin-right: auto;
}

/**
 * =========================================================================================
 * --																 Concept
 * =========================================================================================
 */

.concept {
  margin-bottom: 142px;
}

.concept__wrap {
  display: flex;
}

.concept__col {
  flex: 0 0 50%;
}

.concept__img {
  max-width: 560px;
  aspect-ratio: 560/575;
  margin-left: 32px;
  border-radius: 24px;
  overflow: hidden;
}

.concept__content {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.concept__content .sc-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}

.concept__content .sc-text {
  max-width: 470px;
}

.concept__play-video .icon-block__img {
  cursor: pointer;
  padding-left: 2px;
}

.concept__play-video .icon-block__img:hover img {
  scale: 1.2;
}

/**
 * =========================================================================================
 * --																 Quality
 * =========================================================================================
 */

.quality {
  margin-bottom: 200px;
}

.quality__wrap {
  background-color: #F5F5F5;
  border-radius: 32px;
  padding: 78px 16px 148px;
}

.quality .sc-head {
  flex-direction: column;
  text-align: center;
  margin-bottom: 100px;
}

.quality .sc-text {
  max-width: 690px;
}

.quality__list {
  display: flex;
}

.quality__item {
  flex: 0 0 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 21px;
}

.quality__item strong {
  font-weight: 700;
  font-size: 64px;
}

/**
 * =========================================================================================
 * --																 How work
 * =========================================================================================
 */

.how-work {
  margin-bottom: 190px;
}

.how-work__wrap {
  display: flex;
}

.how-work__col {
  flex: 0 0 50%;
}

.how-work__img {
  max-width: 560px;
  aspect-ratio: 560/575;
  margin-right: auto;
  border-radius: 24px;
  overflow: hidden;
}

.how-work__content {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.how-work__content .sc-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
  max-width: 650px;
  margin-bottom: 106px;
}

.how-work__items {
  display: flex;
  gap: 80px;
}

.how-work__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 295px;
}

.how-work__item:first-child {
  max-width: 220px;
}

.how-work__item h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

/**
 * =========================================================================================
 * --																 Reviews
 * =========================================================================================
 */

.reviews {
  margin-bottom: 260px;
}

.reviews .sc-head {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 22px;
  margin-bottom: 64px;
}

.reviews .sc-text {
  max-width: 480px;
}

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

.reviews__controls {
  margin-top: 60px;
}

.review-card {
  background-color: #F5F5F5;
  border-radius: 32px;
  padding: 32px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.review-card::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--color-accent) url("../img/icons/quotes-white.svg") center/15px no-repeat;
}

.review-card__text {
  font-size: 20px;
  margin-bottom: 12px;
}

.review-card .person {
  margin-top: auto;
}

.review-card .person__name {
  font-size: 16px;
}

/**
 * =========================================================================================
 * --																 FAQ
 * =========================================================================================
 */

.faq {
  margin-bottom: 180px;
}

.faq__wrap {
  display: flex;
}

.faq__col-head {
  flex: 0 0 50%;
  padding-left: 48px;
}

.faq .sc-head {
  max-width: 420px;
  margin-bottom: 72px;
}

@media (min-width: 769px) {
  body:has(.contact-us) .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1215686275);
  }
}

@media (min-width: 999px) {
  .header.header--scrolled {
    padding: 20px 0;
  }

  .header__btn-menu {
    display: none;
  }

  .faq .sc-head {
    align-items: flex-start;
    text-align: right;
    margin-inline: 0;
  }
}

@media (max-width: 1600px) {
  .specialist__bg-cover {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 1200px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 64px;
  }

  .blog__list .post-item {
    flex: 0 0 calc(33% - 13px);
  }

  .post-item__title {
    font-size: 20px;
  }
}

@media (max-width: 998px) {
  .menu {
    position: fixed;
    right: 0;
    top: 0;
    border: 1px solid #000;
    height: 100svh;
    width: 100%;
    background-color: rgb(179, 195, 249);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }

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

  .specialist__widget {
    display: none;
  }

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

  .purchase-block--mobile {
    display: block;
    margin-bottom: 24px;
  }

  .contact-us__col-form {
    flex: 0 0 360px;
  }

  .concept__wrap {
    flex-direction: column;
    gap: 24px;
  }

  .concept__img {
    aspect-ratio: 360/245;
    width: 100%;
    max-width: none;
  }

  .concept__content {
    padding: 0;
  }

  .quality__item {
    gap: 0;
  }

  .quality__item strong {
    font-size: 48px;
    margin-top: 16px;
  }

  .how-work__wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .how-work__img {
    aspect-ratio: 360/245;
    width: 100%;
    max-width: none;
  }

  .how-work__content {
    padding-left: 0;
  }

  .how-work__content .sc-head {
    gap: 12px;
    margin-bottom: 32px;
  }

  .faq__wrap {
    flex-direction: column;
    gap: 32px;
  }
}

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

  .container {
    padding: 0 16px;
  }

  section {
    margin-bottom: 80px;
  }

  section:has(.sc-head .btn) {
    position: relative;
    padding-bottom: 80px;
  }

  textarea,
  input {
    height: 50px;
    border-radius: 6px;
  }

  .sc-head {
    margin-bottom: 32px;
  }

  .sc-head .btn {
    position: absolute;
    width: calc(100% - 32px);
    margin: 0 auto;
    max-width: 400px;
    bottom: 0;
    right: 16px;
    left: 16px;
    height: 48px;
  }

  .sc-title {
    font-size: 32px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  .breadcrumbs__wrap {
    padding: 16px 0 12px;
  }

  .ui-chip a,
  .ui-chip span {
    padding: 7px 24px;
    font-size: 14px;
  }

  .pagination__btn--prev {
    margin-left: 8px;
  }

  .accordion__item {
    min-height: auto;
  }

  .accordion__trigger {
    padding-left: 60px;
    font-size: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .accordion__panel {
    padding-left: 60px;
  }

  .accordion__content {
    padding-bottom: 24px;
  }

  .socials {
    gap: 18px;
  }

  .socials a img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
  }

  .stats__item {
    flex: 1 1 auto;
    margin: 0;
  }

  .stats__value {
    font-size: 20.5vw;
  }

  .stats__label {
    max-width: 180px;
  }

  .ui-chips li {
    font-size: 14px;
    height: 35px;
  }

  .share {
    gap: 24px;
  }

  .share__list {
    gap: 10px;
  }

  .share__list li a {
    width: 64px;
    height: 64px;
  }

  .share__list li img {
    max-width: 22px;
  }

  .icon-block__text p {
    font-size: 14px;
  }

  .icon-accent.size-100-22 {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .icon-accent.size-100-22 img {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .icon-accent.size-48-24 {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .icon-accent.size-48-24 img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

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

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

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

  .footer__wrap {
    padding: 40px 0;
    gap: 32px;
  }

  .footer__nav {
    gap: 32px;
    flex-direction: column;
  }

  .footer__menu-title {
    font-size: 20px;
  }

  .footer__menu-list {
    gap: 8px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 32px;
  }

  .footer__copyright {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__socials {
    gap: 24px;
    font-size: 12px;
  }

  .specialist__bg-cover {
    height: 154px;
  }

  .specialist__main {
    padding-left: 0;
  }

  .specialist__sc-title {
    margin-bottom: 20px;
  }

  .intro {
    margin-top: -40px;
  }

  .intro__photo {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    margin-bottom: 24px;
  }

  .intro__name {
    font-size: 32px;
    gap: 8px;
    margin-bottom: 16px;
  }

  .intro__name .verified {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 5px;
  }

  .intro__details {
    gap: 24px;
    margin-bottom: 32px;
  }

  .purchase-contacts {
    background-color: #F8F8F8;
    padding: 12px;
    border-radius: 12px;
    overflow: hidden;
  }

  .purchase-contacts__button {
    height: 48px;
  }

  .purchase-contacts__footer-note {
    font-size: 12px;
  }

  .purchase-contacts__contacts {
    margin-top: 16px;
  }

  .purchase-contacts__phone {
    font-size: 20px;
  }

  .purchase-contacts__phone img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .education__list {
    gap: 36px 8px;
  }

  .education__item {
    flex: 0 0 calc(50% - 4px);
  }

  .education__item-certificate {
    aspect-ratio: 1;
    padding: 10px;
  }

  .education__item-title {
    font-size: 12px;
  }

  .services__table {
    border-radius: 16px;
  }

  .services__table thead {
    display: none;
  }

  .services__table tbody tr {
    padding: 16px 24px;
  }

  .services__table tbody tr {
    display: grid;
    grid-template-areas: "name price" "desc price";
    grid-template-columns: 60% 1fr;
    gap: 4px 0;
    align-items: center;
  }

  .services__table tbody td {
    padding: 0;
  }

  .services__table tbody td:nth-child(2) {
    font-size: 12px;
  }

  .services__table tbody td:nth-child(3) {
    text-align: left;
    padding-right: 48px;
  }

  .rating-summary {
    flex-direction: column;
    gap: 24px;
  }

  .rating-summary__title {
    font-size: 14px;
  }

  .rating-summary__value {
    font-size: 16px;
  }

  .rating-total {
    margin-bottom: 32px;
    font-size: 16px;
  }

  .reviews-item {
    border-radius: 16px;
    padding: 16px 24px;
  }

  .reviews-item__header {
    flex-direction: column;
    align-items: start;
  }

  .reviews-item__rate {
    flex-direction: row-reverse;
    font-size: 16px;
  }

  .rating__btn {
    width: 100%;
    margin-top: 20px;
  }

  .blog {
    padding-top: 8px;
    margin-bottom: 64px;
  }

  .blog__head {
    margin-bottom: 16px;
  }

  .blog__title {
    font-size: 32px;
  }

  .blog__filter {
    margin-bottom: 40px;
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .blog__filter-list {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding-inline: 16px;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .blog__filter-list::-webkit-scrollbar {
    width: 15px;
    height: 3px;
  }

  .blog__filter-list::-webkit-scrollbar-track {
    background-color: var(--color-primary);
    border-radius: 5px;
  }

  .blog__filter-list::-webkit-scrollbar-thumb {
    background-color: #d7d7d7;
    border-radius: 5px;
  }

  .blog__list {
    gap: 32px;
    margin-bottom: 32px;
  }

  .blog__list .post-item {
    flex: 0 0 calc(50% - 16px);
  }

  .post-item__img {
    aspect-ratio: 36/19;
    margin-bottom: 16px;
  }

  .post-item__details {
    font-size: 12px;
  }

  .post-head__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .post-head__date {
    margin-bottom: 32px;
  }

  .post-head__img {
    border-radius: 16px;
    aspect-ratio: 36/14;
  }

  .article__wrap {
    margin-bottom: 100px;
  }

  .article__share {
    margin-top: 32px;
  }

  #article h2 {
    margin: 48px 0 px;
    font-size: 24px;
  }

  #article h3 {
    margin: 24px 0 18px;
    font-size: 21px;
  }

  #article p {
    font-size: 16px;
  }

  #article blockquote {
    margin: 48px 0;
    padding: 32px 16px;
    font-size: 14px;
  }

  #article ul,
  #article ol {
    font-size: 16px;
  }

  .posts .sc-title {
    font-size: 32px;
  }

  .posts__slider {
    margin-bottom: 64px;
  }

  .posts__slider-pagination {
    display: block;
    margin-top: 32px;
  }

  .hero {
    background-image: url("../img/bg/hero-bg--mob.png");
    margin-bottom: 20px;
  }

  .hero {
    min-height: 510px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero__wrap {
    padding: 0 0 32px;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 100%;
  }

  .hero__search {
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 4px;
    height: 48px;
  }

  .hero__search input {
    padding-right: 16px;
  }

  .specialists__controls {
    display: none;
  }

  .specialists__slider-pagination {
    display: block;
    margin-top: 16px;
  }

  .pro-card__bg-image {
    aspect-ratio: 36/15;
  }

  .pro-card__body {
    padding: 16px;
    gap: 20px;
    margin-top: -16px;
  }

  .pro-card__title {
    font-size: 20px;
    margin-top: -6px;
  }

  .pro-card__role {
    font-size: 12px;
    margin-top: -16px;
  }

  .pro-card__desc {
    max-width: 270px;
  }

  .pro-card__rating {
    font-size: 12px;
  }

  .pro-card__btn {
    height: 36px;
    font-size: 14px;
  }

  .contact-us {
    margin-bottom: 32px;
  }

  .contact-us__wrap {
    flex-direction: column;
    gap: 32px;
  }

  .contact-us__col-content {
    padding-left: 0;
  }

  .contact-us__head {
    margin-bottom: 32px;
  }

  .contact-us__head h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .contact-us__head p {
    font-size: 14px;
  }

  .contact-us__contacts {
    margin-bottom: 32px;
  }

  .contact-us__contacts-item span h4 {
    font-size: 12px;
  }

  .contact-us__socials {
    gap: 12px;
  }

  .contact-us__socials ul {
    gap: 12px;
  }

  .contact-us__socials li a {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .contact-us__socials li a img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .contact-us__col-form {
    border-radius: 16px;
    flex: 1 1 auto;
    padding: 24px 16px;
  }

  .contact-us__col-form h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .about-us {
    margin-bottom: 64px;
  }

  .about-us__wrap {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .about-us__content {
    padding: 0 0 64px;
    padding-left: 0;
  }

  .about-us__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .about-us__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .about-us__img {
    aspect-ratio: 36/40;
  }

  .concept {
    margin-bottom: 64px;
  }

  .concept__img {
    border-radius: 16px;
    margin-left: 0;
  }

  .concept__content .sc-head {
    gap: 12px;
  }

  .concept__play-video {
    gap: 26px;
    font-size: 12px;
  }

  .concept__play-video h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .quality {
    background-color: #F5F5F5;
    margin-bottom: 64px;
  }

  .quality__wrap {
    padding: 64px 0;
  }

  .quality .sc-head {
    margin-bottom: 32px;
    gap: 12px;
  }

  .quality__list {
    flex-direction: column;
    gap: 40px;
  }

  .how-work {
    margin-bottom: 128px;
  }

  .how-work__img {
    border-radius: 16px;
    margin-left: 0;
  }

  .how-work__items {
    flex-direction: column;
    gap: 32px;
  }

  .how-work__item {
    flex-direction: row;
    max-width: none;
    align-items: center;
  }

  .how-work__item:first-child {
    max-width: none;
  }

  .how-work__item h3 {
    font-size: 18px;
  }

  .reviews {
    margin-bottom: 96px;
  }

  .reviews .sc-head {
    gap: 12px;
    margin-bottom: 32px;
  }

  .reviews__controls {
    margin-top: 24px;
  }

  .reviews__btn-prev {
    display: none;
  }

  .reviews__btn-next {
    display: none;
  }

  .review-card {
    padding: 24px 16px;
    min-height: 290px;
  }

  .review-card__text {
    font-size: 18px;
  }

  .review-card .person__photo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .review-card .person__name {
    font-size: 14px;
  }

  .faq {
    margin-bottom: 80px;
  }

  .faq__col-head {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .faq .sc-head {
    margin-bottom: 32px;
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .blog__list .post-item {
    flex: 0 0 100%;
  }

  .contact-us__form button {
    width: 100%;
    height: 48px;
  }

  .about-us__btn {
    width: 100%;
  }

  .faq__btn {
    width: 100%;
  }
}