*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --text: #252b42;
  --active: #44d3b7;
  --light-active: #b3e9e4;
  --light-bg: #ecfeff;
  --link: #2da890;
  --pastel-1: #ffeedc;
  --pastel-2: #dcfff7;
  --pastel-3: #eaedff;
  --pastel-4: #dcf4ff;
  --pastel-5: #ffe4e6;
  --bright-1: #ff9811;
  --bright-2: #25458f;
  --bright-3: #41a4ff;
  --white: #ffffff;
  --gray: #b9b9b9;
  --light-gray: #cbcbcb;
  --lightest-gray: #ececec;
  --shadow-color: rgba(52, 161, 140, 0.05);
  --bg-grad: linear-gradient(#eaedff, #dcf4ff);
  --card-brd: #fcd7a7;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.min {
  font-size: 0.9rem;
}
a {
  text-decoration: none;
  color: var(--link);
  transition: color 600ms ease;
  -webkit-transition: color 600ms ease;
  -moz-transition: color 600ms ease;
  -ms-transition: color 600ms ease;
  -o-transition: color 600ms ease;
}
.unaccent a {
  color: var(--text);
}
a:hover, .unaccent a:hover {
  color: var(--active);
}
b {
  font-weight: 600;
}
button,
button:focus,
button:active,
button:hover {
  outline: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  cursor: pointer;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn__arrow {
  color: var(--link);
  display: block;
  text-wrap: nowrap;
  transition: opacity 800ms ease;
  -webkit-transition: opacity 800ms ease;
  -moz-transition: opacity 800ms ease;
  -ms-transition: opacity 800ms ease;
  -o-transition: opacity 800ms ease;
}
.btn__arrow::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-image: url(../img/arrow-right-green.svg);
  background-size: cover;
  margin: 0 0 1px 8px;
  flex-shrink: 0;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.btn__arrow:hover {
  opacity: 0.8;
}
.btn__arrow:hover::after {
  transform: translateX(12px);
  -webkit-transform: translateX(12px);
  -moz-transform: translateX(12px);
  -ms-transform: translateX(12px);
  -o-transform: translateX(12px);
}
.btn__arrow--bl {
  color: var(--text);
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--text);
  padding: 10px 22px;
  border-radius: 22px;
  text-wrap: nowrap;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

.btn__arrow--bl::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-image: url(../img/arrow-right-black.svg);
  background-size: cover;
  margin: 0 0 1px 8px;
  flex-shrink: 0;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}
.btn__arrow--bl:hover {
  color: var(--white);
  border-color: var(--active);
  background-color: var(--active);
}
.btn__arrow--bl:hover::after {
  background-image: url(../img/arrow-right-white.svg);
}
.section {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 80px;
}
.container {
  max-width: 1500px;
  width: 100%;
  padding: 0 30px;
}
.header {
  z-index: 2;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  z-index: 1;
}
.logo {
  font-weight: 600;
  color: var(--link);
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.88rem;
  line-height: 1.25;
  max-width: 240px;
  transition: opacity 800ms ease;
  -webkit-transition: opacity 800ms ease;
  -moz-transition: opacity 800ms ease;
  -ms-transition: opacity 800ms ease;
  -o-transition: opacity 800ms ease;
  flex-shrink: 0;
}
.logo img {
  width: 42px;
  height: 36px;
  margin-right: 6px;
  /* margin-top: -2px;*/
  flex-shrink: 0;
}
.logo span {
  display: block;
  margin-bottom: -2px;
}
.logo:hover {
  opacity: 0.8;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 0 20px;
}
.header__nav__link {
  display: inline-block;
  font-size: 0.88rem;
  margin: 0 8px;
  text-wrap: nowrap;
  color: var(--text);
}
.header__btn {
  padding: 8px 24px 10px 22px;
  color: var(--white);
  background-color: var(--active);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-wrap: nowrap;
  border: 1px solid var(--active);
  transition: background-color 600ms ease, color 600ms ease;
  -webkit-transition: background-color 600ms ease, color 600ms ease;
  -moz-transition: background-color 600ms ease, color 600ms ease;
  -ms-transition: background-color 600ms ease, color 600ms ease;
  -o-transition: background-color 600ms ease, color 600ms ease;
}
.header__btn img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  flex-shrink: 0;
}
.header__btn:hover {
  background-color: transparent;
  color: var(--link);
}
.header__brg__btn {
  display: none;
  width: 24px;
  height: 24px;
  margin-left: 28px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 500ms ease;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  flex-shrink: 0;
  position: relative;
  padding: 1px;
}
.header__brg__btn::before,
.header__brg__btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--link);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  -webkit-border-radius: 2px;
  position: absolute;
  left: 2px;
  transition: transform 500ms ease;
  -webkit-transition: transform 500ms ease;
  -moz-transition: transform 500ms ease;
  -ms-transition: transform 500ms ease;
  -o-transition: transform 500ms ease;
  flex-shrink: 0;
}
.header__brg__btn::before {
  top: 7px;
}
.header__brg__btn::after {
  top: 14px;
}
.header__brg__btn:hover {
  opacity: 1;
}
.main {
  padding-bottom: 80px;
  position: relative;
  background-color: var(--pastel-4);
}
.main::after {
  content: "";
  display: block;
  width: 100%;
  height: 307px;
  position: absolute;
  background-image: url(../img/bg-main.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.main__container {
  display: flex;
  justify-content: space-between;
  position: static;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 30px;
}
.main__wrap__text {
  width: calc(100% - 670px);
  max-width: 670px;
  margin-right: 15px;
}
.main__title {
  margin-bottom: 70px;
}
.main__wrap__btns {
  margin-right: -15px;
}
.visit__btns {
  display: flex;
  flex-wrap: wrap;
  padding-top: 36px;
  height: 100%;
  max-width: 720px;
  width: 100%;
}
.visit__btn {
  width: calc(33.3% - 60px);
  min-width: 170px;

  flex-grow: 1;
  height: 145px;
  font-weight: 500;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: var(--white);
  margin: 0 15px 30px 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.visit__btn:hover {
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
}
.visit__btn img {
  width: 24px;
  height: 24px;
  margin-bottom: auto;
  flex-shrink: 0;
}
.visit__btn p {
  font-size: 1.125rem;
  display: block;
  line-height: 1.2;
  max-width: 165px;
  margin-bottom: 4px;
  color: var(--white);
}
.visit__btn p::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-image: url(../img/arrow-right-white.svg);
  background-size: cover;
  margin: 0 0 2px 8px;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.visit__btn:hover p::after {
  transform: translateX(12px);
  -webkit-transform: translateX(12px);
  -moz-transform: translateX(12px);
  -ms-transform: translateX(12px);
  -o-transform: translateX(12px);
}
.visit__btn p img {
  display: inline-block;
  width: 25px;
  height: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}
.visit__btn span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: -2px;
  color: var(--white);
}
.visit__btn-1,
.visit__btn-5 {
  background-color: var(--active);
}
.visit__btn-2,
.visit__btn-6 {
  background-color: var(--bright-3);
}
.visit__btn-3 {
  background-color: var(--bright-2);
}
.visit__btn-4 {
  background-color: var(--bright-1);
}
.visit__btn-4 span {
  max-width: 145px;
}
.advantages__container {
  display: flex;
  justify-content: space-between;
}
.advantages__item {
  width: calc(22% - 30px);
  padding-left: 20px;
  border-left: 1px solid var(--light-active);
  margin-left: 30px;
}
.advantages__item__title {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
.advantages__item h3 {
  display: block;
  margin-bottom: 12px;
}
.advantages__item span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.4;
}
.advantages__item img {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.direct__link a,
.serv__link a,
.serv__subtitle a,
.footer a {
  color: var(--text);
  transition: color 600ms ease;
  -webkit-transition: color 600ms ease;
  -moz-transition: color 600ms ease;
  -ms-transition: color 600ms ease;
  -o-transition: color 600ms ease;
}

.direct__link a:hover,
.serv__link a:hover,
.serv__subtitle a:hover,
.footer a:hover {
  color: var(--active);
}
.direct__title,
.serv__title {
  display: block;
  margin-bottom: 28px;
}
.direct__accordion {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  overflow: hidden;
  min-height: 760px;
}
.direct__item {
  display: flex;
  height: auto;
  width: auto;
  margin-right: 2px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.direct__heading {
  padding: 24px 32px;
  width: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.direct__heading h3 {
  display: block;
  position: absolute;
  bottom: 24px;
  transform: rotate(-90deg) translateX(50%);
  -webkit-transform: rotate(-90deg) translateX(50%);
  -moz-transform: rotate(-90deg) translateX(50%);
  -ms-transform: rotate(-90deg) translateX(50%);
  -o-transform: rotate(-90deg) translateX(50%);
  text-wrap: nowrap;
}
.direct__number {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  user-select: none;
}
.direct__box {
  padding: 80px 30px 36px;
  display: none;
  width: 100%;
}
.direct__article {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.direct__text,
.serv__text {
  margin-bottom: 20px;
}
.direct__list__wrap,
.serv__list__wrap {
  display: flex;
  margin-bottom: auto;
  margin-bottom: 14px;
}
.direct__list,
.serv__list {
  max-width: calc(50% - 15px);
  margin-right: 30px;
}
.direct__list:last-child,
.serv__list:last-child {
  margin-right: 0;
}
.direct__link,
.serv__link {
  font-size: 1rem;
  padding-left: 22px;
  margin-bottom: 12px;
  list-style-type: none;
  position: relative;

}
.direct__link a::before,
.serv__link a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: -3px;
  background-image: url(../img/ico-check-black.svg);
  background-size: cover;
  flex-shrink: 0;
  transition: background-image 600px ease;
  -webkit-transition: background-image 600px ease;
  -moz-transition: background-image 600px ease;
  -ms-transition: background-image 600px ease;
  -o-transition: background-image 600px ease;
  position: absolute;
  left: 0;
  top: 3px;
}
.direct__link a:hover::before,
.serv__link a:hover::before {
  background-image: url(../img/ico-check-greeen.svg);
}
.direct__item.active {
  width: 100%;
}
.direct__item.active .direct__heading {
  cursor: auto;
}
.direct__item.active .direct__box {
  display: flex;
}
.direct__item-1 {
  background-color: var(--pastel-1);
}
.direct__item-2 {
  background-color: var(--pastel-2);
}
.direct__item-3 {
  background-color: var(--pastel-3);
}
.direct__img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  height: auto;
  width: 100%;
  object-fit: cover;
}
.serv__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.serv__item {
  background-color: var(--pastel-4);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 32px 32px 36px;
  margin-bottom: 30px;
}
.serv__subtitle {
  margin-bottom: 14px;
}
.serv__subtitle a:hover {
  color: var(--active);
}
.serv__item-1 {
  width: calc(58% - 15px);
}
.serv__item-2 {
  width: calc(42% - 15px);
}
.serv__item-3,
.serv__item-4 {
  width: calc(50% - 15px);
}
a.serv__btn:hover {
  color: var(--white);
}

.question {
  background-color: var(--pastel-2);
  padding-top: 80px;
  padding-bottom: 50px;
}
.question__wrap {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.question__item,
.question__heading {
  width: calc(33.3% - 30px);
  margin: 0 15px 30px;
}
.question__heading h2 {
  display: block;
  margin-bottom: 12px;
}
.question__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
.question__title {
  background-color: var(--white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 26px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: border-color 600ms ease;
  -webkit-transition: border-color 600ms ease;
  -moz-transition: border-color 600ms ease;
  -ms-transition: border-color 600ms ease;
  -o-transition: border-color 600ms ease;
}
.question__item.visible .question__title {
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  border-color: var(--light-active);
  border-bottom: 0;
  cursor: auto;
}
.question__title span {
  line-height: 1.3;
  max-width: calc(100% - 32px);
  margin-left: 30px;
  display: block;
  position: relative;
}
.question__title h2 {
  display: block;
  margin-bottom: 20px;
}
.question__title span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/ico-question-green.svg);
  background-size: cover;
  position: absolute;
  left: -30px;
  top: 0;
  flex-shrink: 0;
}
.question__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  margin-top: -2px;
  background-image: url(../img/ico-chevron-down-green.svg);
  background-size: cover;
  flex-shrink: 0;
}
.question__title:hover {
  border: 1px solid var(--active);
}
.question__text {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  background-color: var(--white);
  border-radius: 0 0 20px 20px;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
  padding: 20px 20px 14px;
  z-index: 1;
  border: 1px solid var(--light-active);
  border-top: 0;

  box-shadow: 0px 40px 80px var(--shadow-color);

  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
}
.question__item.visible .question__text {
  display: block;
}
.question__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--light-active);
  top: -20px;
  position: relative;
}
.question__item.visible .question__title::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.contacts__container {
  display: flex;
  justify-content: space-between;
}
.contacts__text {
  max-width: 336px;
  margin-right: 30px;
}
.contacts__title {
  margin-bottom: 28px;
}
.contacts__text__item {
  padding-top: 12px;
}
.contacts__text__item p {
  margin-bottom: 16px;
}
.contacts__text__item a {
  color: var(--text);
}
.contacts__text__item img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-bottom: -5px;
  flex-shrink: 0;
}
.contacts__map iframe {
  max-width: 100%;
  width: 1100px;
  height: 400px;
  left: 0;
  border: 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.footer {
  background: var(--bg-grad);
  padding-top: 60px;
  padding-bottom: 32px;
  margin-bottom: 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
.footer__col {
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.footer__col:last-child {
  margin-right: 0;
}
.footer__col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__list {
  list-style-type: none;
}
.footer__list li {
  margin-bottom: 12px;
  font-weight: 400;
}
.footer__item__contact {
  padding-left: 28px;
  position: relative;
}
.footer__item__contact img {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-bottom: -5px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 2px;
}
.footer__support {
  margin-top: 20px;
  font-size: 0.88rem;
}
.footer__support a {
  color: var(--link);
  text-wrap: nowrap;
}

/*-------- PAGES ---------*/

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page__section {
  flex-grow: 1;
}
.page__container {
  padding-top: 120px;
}
.page__row {
  display: flex;
  justify-content: space-between;
}
.page__img {
  margin-left: 30px;
  padding-top: 6px;
  width: fit-content;
  height: fit-content;
  margin-bottom: 32px;
}
.page__img__brd {
  margin-left: 30px;
  padding: 6px 10px 10px 0;
  width: fit-content;
  height: fit-content;
  margin-bottom: 32px;
  position: relative;
}
.page__img img,
.page__img__brd img {
  width: 330px;
  height: auto;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.page__img__brd::after {
  content: "";
  display: block;
  background-color: var(--light-active);
  width: calc(100% - 10px);
  height: calc(100% - 16px);
  flex-shrink: 0;
  position: absolute;
  top: 16px;
  left: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: -1;
}
.page h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: none;
}
.page h2 {
  margin: 20px 0 12px;
}
.page h3 {
  font-size: 1.125rem;
}
.page__subtitle {
  display: block;
  max-width: 940px;
  margin-bottom: 40px;
}

.page__col {
  width: calc(50% - 20px);
}
.breadcrumbs {
  padding: 0 0 6px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--light-active);
  width: fit-content;
  flex-wrap: wrap;
}
.breadcrumbs a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 500ms ease;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
}
.breadcrumbs a:hover {
  opacity: 1;
}
.breadcrumbs span {
  display: block;
  opacity: 0.7;
}
.breadcrumbs a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/chevron-right-black.svg);
  background-size: cover;
  flex-shrink: 0;
  opacity: 0.5;
  margin: 0 2px;
}
.btn__arrow__lnk {
  color: var(--link);
  text-wrap: nowrap;
  padding: 10px 20px;
  border-radius: 22px;
  display: flex;
  width: fit-content;
  border: 1px solid var(--active);
  transition: background-color 800ms ease, color 600ms ease;
  -webkit-transition: background-color 800ms ease, color 600ms ease;
  -moz-transition: background-color 800ms ease, color 600ms ease;
  -ms-transition: background-color 800ms ease, color 600ms ease;
  -o-transition: background-color 800ms ease, color 600ms ease;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  margin-top: 32px;
}
.btn__arrow__lnk::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-size: cover;
  flex-shrink: 0;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.btn__arrow__lnk::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-image: url(../img/arrow-right-green.svg);
  background-size: cover;
  margin: 0 0 1px 8px;
  flex-shrink: 0;
  transition: background-image 800ms ease;
  -webkit-transition: background-image 800ms ease;
  -moz-transition: background-image 800ms ease;
  -ms-transition: background-image 800ms ease;
  -o-transition: background-image 800ms ease;
}
.btn__arrow__lnk:hover {
  opacity: 1;
  background-color: var(--active);
  color: var(--white);
  border: 1px solid var(--active);
}
.btn__arrow__lnk:hover::after {
  background-image: url(../img/arrow-right-white.svg);
}
.list {
  padding-left: 4px;
}
.list li {
  position: relative;
  padding-left: 16px;
  list-style-type: none;
  margin-bottom: 6px;
}
.list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--active);
  margin-right: 8px;
  margin-bottom: -3px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
ol {
  padding-left: 22px;
}
ol li {
  margin-bottom: 6px;
}

ol li::marker {
  color: var(--link);
}

/*-------- SPECIALISTS PAGE ---------*/

.page.fixed {
  height: 100vh;
  overflow: hidden;
}
.specialists__wrap {
  display: flex;
  /*justify-content: space-between;
  margin: 0 -15px;*/
  justify-content: center;
  flex-wrap: wrap;
  gap: 8%;
}
.specialist__card {
  min-width: 290px;
  width: 28%;
  max-width: 404px;
  min-width: 340px;
  background-color: var(--pastel-1);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  /*margin: 0 15px 30px;*/
  margin-bottom: 44px;
  position: relative;
  border: 1px solid var(--pastel-1);
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
  user-select: none;
}
.specialist__content {
  width: 100%;
  height: 100%;
  padding: 40px 15px 82px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.specialist__card:hover {
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}
.specialist__photo {
  margin: 17px auto;
  position: relative;
  width: 160px;
  height: 160px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  flex-shrink: 0;
}
.specialist__photo img {
  width: 160px;
  height: auto;
  position: absolute;
  z-index: 1;
  bottom: 0;
}
.specialist__position {
  display: flex;
  text-align: center;
  font-size: 0.88rem;
  padding-bottom: 12px;
  position: relative;
  width: max-content;
  margin: 0 auto 10px;
}
.specialist__position::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--light-gray);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.specialist__name {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.specialist__name span {
  display: block;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.specialist__btn {
  background-color: var(--white);
  padding: 10px 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  color: var(--text);
  display: block;
  text-wrap: nowrap;
  border: 1px solid var(--card-brd);
  transition: background-color 800ms ease, border-color 800ms ease;
  -webkit-transition: background-color 800ms ease, border-color 800ms ease;
  -moz-transition: background-color 800ms ease, border-color 800ms ease;
  -ms-transition: background-color 800ms ease, border-color 800ms ease;
  -o-transition: background-color 800ms ease, border-color 800ms ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.specialist__btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background-image: url(../img/arrow-right-black.svg);
  background-size: cover;
  margin: 0 0 1px 8px;
  flex-shrink: 0;
}
.specialist__btn:hover {
  opacity: 1;
  background-color: transparent;
  border-color: var(--text);
  color: var(--text);
  border: 1px solid var(--text);
}
.specialist__btn:hover::after {
  background-image: url(../img/arrow-right-black.svg);
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.specialist-modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 2;
  padding-top: 92px;
  width: 100%;
  height: 100vh;
  /*backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.75);*/
  -ms-overflow-style: none; /* IE и Edge */
  scrollbar-width: none; /* Firefox */
}
.specialist-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background-color: rgba(255, 255, 255, 0.75);*/
  background-color: var(--white);
  z-index: 1;
  cursor: pointer;
}
.specialist-modal__container {
  width: calc(100% - 60px);
  padding: 48px 120px;
  max-width: 1440px;
  border: 1px solid var(--light-active);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 2;
}
.specialist-modal::-webkit-scrollbar {
  display: none;
}
.specialist-modal.visible {
  display: block;
  overflow: auto;
}
.specialist-modal__close {
  display: block;
  width: 44px;
  height: 44px;
  background-image: url(../img/ico-close-green.svg);
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 10px;
  position: absolute;
  top: 24px;
  right: 24px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 800ms ease;
  -webkit-transition: opacity 800ms ease;
  -moz-transition: opacity 800ms ease;
  -ms-transition: opacity 800ms ease;
  -o-transition: opacity 800ms ease;
}
.specialist-modal__close:hover {
  opacity: 1;
}
.specialist-modal__header {
  display: flex;
  margin-bottom: 44px;
}
.specialist-modal__photo {
  position: relative;
  z-index: 1;
  width: 25%;
  height: 100%;
  min-width: 280px;
  margin-right: 30px;
  flex-shrink: 0;
}
.specialist-modal__photo img {
  width: 180px;
  height: auto;
}
.specialist-modal__photo::after {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  background-color: var(--light-bg);
  position: absolute;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.specialist-modal__descr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}
.specialist-modal__title {
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 500;
}
.specialist-modal__position,
.specialist-modal__experience {
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.specialist-modal__row {
  width: 100%;
  display: flex;
  padding-top: 32px;
  padding-bottom: 20px;
  border-top: 1px solid var(--light-active);
}
.specialist-modal__subtitle {
  width: 25%;
  min-width: 280px;
  margin-right: 30px;
}
.specialist-modal__subtitle h3 {
  font-weight: 500;
}
.specialist-modal__text {
  width: calc(75% - 30px);
}
.specialist-modal__text p {
  margin-bottom: 12px;
  line-height: 1.4;
}



.appointment-modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 2;
  padding-top: 92px;
  width: 100%;
  height: 100vh;
}
.appointment-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 1;
  cursor: pointer;
}
.appointment-modal__container {
  width: calc(100% - 60px);
  padding: 60px 64px;
  max-width: 800px;
  border: 1px solid var(--light-active);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 2;
}
.appointment-modal::-webkit-scrollbar {
  display: none;
}
.appointment-modal.visible {
  display: block;
  overflow: auto;
}


.appointment-modal h2 {
  margin-top: 0;
}
.appointment-modal__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.appointment-modal__close {
  display: block;
  width: 44px;
  height: 44px;
  background-image: url(../img/ico-close-green.svg);
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -6px;
  margin-right: -12px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 800ms ease;
  -webkit-transition: opacity 800ms ease;
  -moz-transition: opacity 800ms ease;
  -ms-transition: opacity 800ms ease;
  -o-transition: opacity 800ms ease;
}
.appointment-modal__close:hover {
  opacity: 1;
}
.appointment-modal__fields{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Инпуты */
.appointment-modal__input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--light-active);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 800ms ease;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: border-color 800ms ease;
  -moz-transition: border-color 800ms ease;
  -ms-transition: border-color 800ms ease;
  -o-transition: border-color 800ms ease;
}
.appointment-modal__input:focus {
  border-color: var(--active);
  outline: none;
}
.appointment-modal__actions{
  display:flex;
  justify-content:space-between;
  gap: 12px;
}
.appointment-modal__input.two-cols {
  width: calc(50% - 8px);
}

/* checkbox */
.appointment-modal__consent{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 36px;
}
.appointment-modal__checkbox{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.appointment-modal__consent label{
  position: relative;
  cursor: pointer;
  padding-left: 32px;
  display: block;
}
.appointment-modal__consent label::before{
  content:"";
  position:absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--light-active);
  border-radius: 4px;
  background: transparent;
  transition: border-color 800ms ease;
  -webkit-transition: border-color 800ms ease;
  -moz-transition: border-color 800ms ease;
  -ms-transition: border-color 800ms ease;
  -o-transition: border-color 800ms ease;
}
.appointment-modal__consent label::after{
  content:"";
  position: absolute;
  left: 0px;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico-check.svg);
  opacity: 0;
  transition: opacity 600ms ease;
  -webkit-transition: opacity 600ms ease;
  -moz-transition: opacity 600ms ease;
  -ms-transition: opacity 600ms ease;
  -o-transition: opacity 600ms ease;
}
.appointment-modal__checkbox:checked + label::after{
  opacity: 1;
}


.appointment-modal__btn {
  background-color: var(--active);
  padding: 10px 20px;
  border-radius: 22px;
  width: 160px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--active);
  transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
  -webkit-transition: color 800ms ease, background-color 800ms ease, border-color 800ms ease;
  -moz-transition: color 800ms ease, background-color 800ms ease, border-color 800ms ease;
  -ms-transition: color 800ms ease, background-color 800ms ease, border-color 800ms ease;
  -o-transition: color 800ms ease, background-color 800ms ease, border-color 800ms ease;
}
.appointment-modal__btn:hover {
  opacity: 1;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.appointment-modal__btn-close {
  background-color: var(--lightest-gray);
  padding: 10px 20px;
  width: 160px;
  text-align: center;
  color: var(--gray);
  border: 1px solid var(--lightest-gray);
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
  -webkit-transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
  -moz-transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
  -ms-transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
  -o-transition: background-color 800ms ease, border-color 800ms ease, color 800ms ease;
}
.appointment-modal__btn-close:hover {
  opacity: 1;
  background-color: transparent;
  border-color: var(--text);
  color: var(--text);
  border: 1px solid var(--gray);
}
















/*-------- QUESTIONS PAGE ---------*/

.questions__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.questions__card {
  width: calc(50% - 15px);
  background-color: var(--light-bg);
  padding: 24px 24px 20px;
  margin-bottom: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.questions__heading {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--light-active);
  padding-bottom: 16px;
  margin-bottom: 14px;
}
.questions__heading::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../img/ico-question-green.svg);
  background-size: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

/*-------- PRICES PAGE ---------*/

.prices__item {
  background-color: var(--light-bg);
  padding: 24px 24px 12px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.prices__item:last-child {
  margin-bottom: 0;
}
.prices__tab {
  border-collapse: collapse;
  width: 100%;
}
.prices__tab th {
  text-align: left;
  padding: 0 0 12px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 600;
}
.prices__tab td {
  text-align: right;
  padding: 12px 0;
  border-top: 1px solid var(--light-active);
  text-wrap: nowrap;
  padding-left: 20px;
}
.prices__tab td:first-child {
  text-align: left;
  text-wrap: wrap;
  padding-left: 0;
  width: 100%;
}

/*-------- ABOUT ---------*/
.about__subtitle {
  margin-bottom: 16px;
}

.about__descr {
  font-size: 0.85rem;
}
.about__btns {
  margin-right: -15px;
  margin-left: -15px;
  height: auto;
  width: calc(100% + 30px);
  padding-top: 12px;
}
.about__text__wrap {
  display: flex;
  padding-top: 16px;
  flex-wrap: wrap;
}
.about__text__item {
  margin-bottom: 8px;
}
.about__text__item:first-child {
  margin-right: 30px;
}
.about__text__item p {
  margin-bottom: 16px;
}
.about__text__item a {
  color: var(--text);
}
.about__text__item img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-bottom: -5px;
  flex-shrink: 0;
}

/*-------- DIRECTIONS PAGE ---------*/

.directions__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.directions__item {
  width: calc(50% - 15px);
  /* background-color: var(--light-bg);*/
  padding: 32px 32px 8px;
  margin-bottom: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.directions__heading {
  display: block;
  margin-bottom: 12px;
}
.directions__heading a,
.directions__serv__item a {
  color: var(--text);
  transition: color 500ms ease;
  -webkit-transition: color 500ms ease;
  -moz-transition: color 500ms ease;
  -ms-transition: color 500ms ease;
  -o-transition: color 500ms ease;
}
.directions__heading a:hover,
.directions__serv__item a:hover {
  color: var(--active);
}
.directions__box {
}
.directions__text {
  margin-bottom: 16px;
}
.directions__serv {
  padding: 0;
}
.directions__serv__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  height: 100%;
}
.directions__serv__item {
  background-color: var(--pastel-4);
  padding: 24px 32px;
  border-radius: 20px;
  height: 100%;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.directions__serv__item:last-child {
  margin-bottom: 0;
}

/*-------- SERVICES PAGE ---------*/

.services__item {
  background-color: var(--light-bg);
}

/*-------- BLOG PAGE ---------*/

.blog__topics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-topic {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-active);
  border-radius: 22px;
  padding: 8px 14px 10px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: var(--text);
  text-wrap: nowrap;
  margin: 0 8px 10px 0;
  transition: color 500ms ease, background-color 500ms ease;
  -webkit-transition: color 500ms ease, background-color 500ms ease;
  -moz-transition: color 500ms ease, background-color 500ms ease;
  -ms-transition: color 500ms ease, background-color 500ms ease;
  -o-transition: color 500ms ease, background-color 500ms ease;
}
.blog-topic span {
  display: block;
  font-size: 0.65rem;
  margin-left: 6px;
  margin-top: 2px;
  opacity: 0.6;
}
.blog-topic:hover,
.blog-topic.active {
  background-color: var(--active);
  color: var(--white);
}

.blog-topic:hover .blog-topic span,
.blog-topic.active span {
  color: var(--white);
  opacity: 1;
}
.blog__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog__card {
  width: calc(50% - 25px);
  margin-bottom: 30px;
  display: flex;
  position: relative;
  margin-right: 10px;
}
.blog__img {
  width: 40%;
  height: auto;
  max-height: 280px;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 1px solid var(--light-active);
  border-right: 0;
  background-color: var(--white);
  padding: 16px 0 12px 20px;
}
.blog__img img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.blog__box {
  padding: 24px 24px 16px 20px;
  width: 60%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid var(--light-active);
  border-left: 0;
  background-color: var(--white);
}
.blog__text {
  height: 200px;
  overflow-y: hidden;
  position: relative;
}
.blog__text::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  width: 100%;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.8;
}
.blog__heading {
  margin-bottom: 12px;
}
.blog__descr {
  color: var(--text);
}
.blog__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}
.blog__date, .post__date {
  font-size: 0.9rem;
  color: var(--gray);
}
.btn__blog {
  font-size: 0.9rem;
}
.blog__card::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--light-active);
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: -1;
}




/*-------- LICENCES PAGE ---------*/
span.block {
  display: block;
  margin-left: 48px;
}
.licenses h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}
.licenses__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.licenses__item {
  width: 30%;
}
.licenses__item img {
  border: 1px solid var(--lightest-gray);
  margin-bottom: 8px;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.licenses__item:hover img {
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}
.licenses__item p {
  color: var(--text);
  font-size: 0.8rem;
  transition: color 600ms ease;
  -webkit-transition: color 600ms ease;
  -moz-transition: color 600ms ease;
  -ms-transition: color 600ms ease;
  -o-transition: color 600ms ease;
}

.licenses__item:hover p {
  color: var(--active);
}

/*-------- MEDIA ---------*/

@media (max-width: 1450px) {
  h1,
  .page h1 {
    font-size: 2rem;
  }
  .main::after {
    height: 280px;
  }
  .visit__btns {
    padding-top: 27px;
  }
}
@media (max-width: 1350px) {
  .main__title {
    margin-bottom: 38px;
  }

  .visit__btns {
    max-width: 640px;
  }
  .visit__btn {
    width: calc(33.3% - 48px);
    height: 130px;
    margin: 0 12px 24px 12px;
    padding: 16px;
  }
  .visit__btn img {
    width: 22px;
    height: 22px;
  }
  .visit__btn p {
    font-size: 1rem;
  }
  .main::after {
    height: 270px;
  }
  .specialists__wrap {
    gap: 5%;
  }
  .specialist__card {
    width: 30%;
  }
  .specialist-modal__container {
    padding: 48px 80px 20px;
  }
  .specialist-modal__photo,
  .specialist-modal__subtitle {
    width: 25%;
    min-width: auto;
    margin-right: 30px;
  }
  .blog__text {
    height: 180px;
  }
  .blog__img {
    max-height: 260px;
  }
}

@media (max-width: 1220px) {
  h1,
  .page h1 {
    font-size: 1.9rem;
  }
  .header__nav {
    justify-content: space-around;
    margin: 0 10px;
  }
  .header__nav__link {
    margin: 0 6px;
    font-size: 0.8rem;
  }
  .logo {
    font-size: 0.8rem;
    max-width: 214px;
  }
  .logo img {
    width: 37px;
    height: 32px;
    margin-right: 4px;
  }
  .header__btn {
    font-size: 0.94rem;
    padding: 6px 20px 8px 18px;
  }
  .header__btn img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    flex-shrink: 0;
  }
  .main__title {
    margin-bottom: 48px;
  }
  .visit__btns {
    padding-top: 18px;
    max-width: 600px;
  }
  .main::after {
    height: 244px;
  }  
  .specialists__wrap {
    gap: 23px;
  }
  .specialist__card {
    width: calc(33% - 12px);
    margin-bottom: 0;
  }

  .specialist-modal__container {
    padding: 48px 80px 20px;
  }
  .specialist-modal {
    padding-top: 88px;
  }
  .page__col {
    width: fit-content;
  }
  .page__col:first-child {
    margin-right: 30px;
  }
}
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
  }
  .header__btn {
    position: absolute;
    top: 24px;
    right: 82px;
  }
  .header__brg__btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 34px;
  }
  .visit__btn {
    width: calc(33.3% - 40px);
    height: 124px;
    margin: 0 10px 20px 10px;
    padding: 16px;
  }
  .visit__btn p {
    font-size: 0.9rem;
  }
  .main__wrap__text {
    width: calc(100% - 620px);
  }
  header {
    transition: all 800ms ease;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
  }
  header.menu {
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    transition: all 800ms ease;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
  }
  header.menu::after {
    content: "";
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    background-color: var(--light-active);
    position: absolute;
    top: 85px;
  }
  header.menu .header__btn {
    color: var(--link);
    background-color: var(--white);
    transition: color 800ms ease, background-color 800ms ease;
    -webkit-transition: color 800ms ease, background-color 800ms ease;
    -moz-transition: color 800ms ease, background-color 800ms ease;
    -ms-transition: color 800ms ease, background-color 800ms ease;
    -o-transition: color 800ms ease, background-color 800ms ease;
  }
  header.menu .header__btn:hover {
    color: var(--white);
    background-color: var(--active);
  }
  header.menu .header__brg__btn::before,
  header.menu .header__brg__btn::after {
    top: 12px;
    left: 2px;
  }
  header.menu .header__brg__btn::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  header.menu .header__brg__btn::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  header.menu .header__nav {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding-top: 100px;
    transition: all 00ms ease;
    -webkit-transition: all 00ms ease;
    -moz-transition: all 00ms ease;
    -ms-transition: all 00ms ease;
    -o-transition: all 00ms ease;
  }
  header.menu .header__nav__link {
    font-size: 1.125rem;
    margin-bottom: 24px;
    transform: translateX(-42px);
    -webkit-transform: translateX(-42px);
    -moz-transform: translateX(-42px);
    -ms-transform: translateX(-42px);
    -o-transform: translateX(-42px);
    transition: transform 800ms ease;
    -webkit-transition: transform 800ms ease;
    -moz-transition: transform 800ms ease;
    -ms-transition: transform 800ms ease;
    -o-transition: transform 800ms ease;
  }
  header.menu .header__nav__link::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 8px;
    background-image: url(../img/arrow-right-green.svg);
    background-size: cover;
    margin: 0 8px 1px 8px;
    flex-shrink: 0;
    transition: all 800ms ease;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    opacity: 0;
  }
  header.menu .header__nav__link:hover {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  header.menu .header__nav__link:hover::before {
    opacity: 1;
  }
  .specialist-modal {
    padding-top: 80px;
  }
  .specialist-modal__container {
    padding: 42px 40px 20px;
  }
  .specialist-modal__close {
    top: 12px;
    right: 12px;
  }
  .specialist-modal__photo,
  .specialist-modal__subtitle {
    margin-right: 20px;
  }
  .specialist-modal__text {
    width: calc(75% - 20px);
  }
}

@media (max-width: 991px) {
   .main {
    padding-bottom: 40px;
  }
  .main__container {
    flex-direction: column;
    padding-top: 130px;
  }
  .main__title {
    margin-bottom: 24px;
  }
  .main__wrap__text {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .visit__btns {
    max-width: none;
    margin: 0 -15px;
  }
  .visit__btn p {
    font-size: 1.125rem;
  }
  .visit__btn {
    width: calc(33.3% - 60px);
    height: 145px;
    margin: 0 15px 30px 15px;
    padding: 20px;
  }
  .visit__btn img {
    width: 24px;
    height: 24px;
  }
  .main::after {
    height: 660px;
  }
  .advantages__container {
    flex-wrap: wrap;
  }
  .advantages__item {
    width: calc(50% - 30px);
    padding-left: 20px;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .advantages__item__title {
    padding-left: 0;
  }
  .advantages__item span {
    max-width: 273px;
  }
  .direct__accordion {
    min-height: 720px;
  }
  .direct__heading {
    padding: 24px 30px;
    width: 62px;
  }
  .direct__box {
    padding: 40px 20px 32px;
  }
  .serv__item {
    padding: 24px 24px 32px;
  }
  .serv__item-1 {
    width: calc(64% - 15px);
  }
  .serv__item-2 {
    width: calc(36% - 15px);
  }
  .question__item,
  .question__heading {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
  .question__heading h2 {
    max-width: 360px;
  }
  .contacts__container {
    flex-direction: column;
  }
  .contacts__text {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .contacts__title {
    width: 100%;
    margin-bottom: 24px;
  }
  .contacts__text__item {
    padding-top: 0;
  }
  .contacts__text__item:last-child {
    margin-left: 10%;
  }
  .footer {
    padding-bottom: 0;
  }
  .footer__container {
    flex-wrap: wrap;
  }
  .footer__col {
    width: calc(50% - 20px);
    margin-right: 0;
    margin-bottom: 24px;
  }
  .page__row {
    flex-direction: column;
  }
  .page__row__reverse {
    flex-direction: column-reverse;
  }
  .page__img {
    margin-left: 0;
  }
  .page__img__brd {
    margin-left: 0;
    padding: 0 10px 10px 0;
  }
  .page__img__brd img {
    width: 480px;
  }
  .page__img__brd::after {
    height: calc(100% - 10px);
    top: 10px;
  }
  .specialist__card {
    width: calc(47% - 30px);
  }
  .specialist-modal__header {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .specialist-modal__position,
  .specialist-modal__experience {
    margin-bottom: 6px;
  }
  .specialist-modal__btn {
    margin-top: 12px;
  }
  .specialist-modal__photo {
    width: 100%;
    margin-bottom: 8px;
    margin-right: 0;
  }
  .specialist-modal__row {
    flex-direction: column;
  }
  .specialist-modal__subtitle {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .specialist-modal__text {
    width: 100%;
  }
  .about__text__item:first-child {
    margin-right: 10%;
  }
  .page__col:first-child {
    margin-right: 0;
  }
  .directions__wrap {
    flex-direction: column;
  }
  .directions__item {
    width: 100%;
    padding: 24px 24px 0;
  }
  .directions__item:last-child {
    padding: 0;
  }
  .directions__serv__item {
    padding: 18px 24px;
  }
  .blog__cards {
    flex-direction: column;
  }
  .blog__card {
    width: calc(100% - 10px);
  }
  .blog__text {
    height: 200px;
  }
  .blog__img {
    max-height: 280px;
  }
}
@media (max-width: 840px) {
  h1,
  .page h1 {
    font-size: 1.8rem;
  }
  .appointment-modal__container {
    width: calc(100% - 48px);
    padding: 40px 36px;
  }
  .appointment-modal__fields {
    margin-bottom: 16px;
}
.appointment-modal__consent {
  margin-bottom: 24px;
}
.appointment-modal__input {
  padding: 12px;
}
  .visit__btn p {
    font-size: 1rem;
  }
  .visit__btn {
    width: calc(33.3% - 48px);
    height: 130px;
    margin: 0 12px 24px 12px;
    padding: 16px;
  }
  .visit__btn img {
    width: 22px;
    height: 22px;
  }
  .main::after {
    height: 640px;
  }
  .serv__item {
    margin-bottom: 24px;
  }
  .serv__subtitle {
    margin-bottom: 10px;
  }
  .serv__item-1 {
    width: calc(60% - 12px);
  }
  .serv__item-2 {
    width: calc(40% - 12px);
  }
  .serv__item-3,
  .serv__item-4 {
    width: calc(50% - 12px);
  }
  .question__heading h2 {
    display: block;
    margin-bottom: 16px;
  }
  .question__item,
  .question__heading {
    width: calc(50% - 24px);
    margin: 0 12px 24px;
  }
  .question__wrap {
    margin-right: -12px;
    margin-left: -12px;
  }
  .question__title,
  .question__text {
    padding: 16px;
  }
  .question__title span::before {
    width: 22px;
    height: 22px;
  }
  .specialist__card {
    width: calc(50% - 30px);
  }
  .questions__cards {
    flex-direction: column;
  }
  .questions__card {
    width: 100%;
  }
}
@media (max-width: 767px) { 
/*
 .specialists__wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
  .specialist__card {
    width: auto;
  }
  */
  .main__container {
    padding-top: 110px;
  }
  .direct__accordion {
    flex-direction: column;
  }
  .direct__item {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 2px;
  }
  .direct__heading {
    flex-direction: row;
    justify-content: flex-start;
    height: 60px;
    width: 100%;
    padding: 24px 20px;
  }
  .direct__number {
    margin-right: 10px;
  }
  .direct__heading h3 {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    position: static;
  }
  .direct__list__wrap {
    margin-bottom: 28px;
  }
  .direct__img {
    margin-bottom: 20px;
  }
  .direct__box {
    padding: 8px 20px 20px;
  }
  .question__item,
  .question__heading {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .question__wrap {
    margin-right: -10px;
    margin-left: -10px;
  }
  .serv__item-1,
  .serv__item-2,
  .serv__item-3,
  .serv__item-4 {
    width: 100%;
  }
  .prices__tab td {
    padding-left: 12px;
  }
  .blog__text {
    height: 180px;
  }
  .blog__img {
    max-height: 260px;
  }
  .blog__topics {
    margin-bottom: 24px;
  }
  .licenses__wrap {
    flex-wrap: wrap;
  }
  .licenses__item {
    width: calc(50% - 16px);
    margin-bottom: 16px;
  }
}
@media (max-width: 680px) {

}
@media (max-width: 620px) {
   .visit__btn {
    width: calc(50% - 24px);
    height: 120px;
  }
  .direct__img {
    height: 300px;
  }
  .direct__list__wrap,
  .serv__list__wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .direct__list,
  .serv__list {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  h1,
  .page h1 {
    font-size: 1.7rem;
  }
  h2,
  .page h2 {
    font-size: 1.38rem;
  }
  h3,
  .page h3,
  .prices__tab th {
    font-size: 1.15rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-container {
    padding-top: 19px;
    padding-bottom: 12px;
  }
  .logo {
    font-size: 0.75rem;
    max-width: 200px;
  }
  .logo img {
    width: 30px;
    height: 26px;
  }
  .logo span {
    margin-bottom: 0;
  }
  .header__btn {
    padding: 10px;
    background-color: transparent;
    border: 0;
    top: 13px;
    right: 56px;
  }
  .header__btn img {
    margin-right: 0;
  }
  .header__btn span {
    display: none;
  }
  .header__brg__btn {
    top: 22px;
    right: 16px;
  }
  header.menu .header-container {
    padding-top: 18px;
  }
  header.menu::after {
    top: 66px;
  }
  header.menu::after {
    width: calc(100% - 40px);
  }
  header.menu .header__nav__link {
    font-size: 1.1rem;
  }
  .main__container {
    padding-top: 90px;
    margin-bottom: 20px;
  }
  .advantages__container {
    flex-direction: column;
  }
  .advantages__item {
    width: 100%;
    border: 0;
    padding-left: 0;
  }
  .advantages__item span {
    max-width: none;
  }
  .question__item,
  .question__heading {
    width: 100%;
    margin-bottom: 30px;
  }
  .question__wrap {
    margin-right: 0;
    margin-left: 0;
  }
  .question__heading h2 {
    max-width: 100%;
  }
  .question__title {
    min-height: auto;
  }
  .contacts__text__item {
    width: 100%;
    margin-bottom: 12px;
  }
  .contacts__text__item:last-child {
    margin-left: 0;
    max-width: none;
  }
  .contacts__map iframe {
    height: 320px;
  }
  .footer__container {
    flex-direction: column;
  }
  .footer__col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer__support {
    margin-top: 20px;
  }
  .page__img,
  .page__img__brd {
    margin-bottom: 20px;
  }
  .page__img,
  .page__img__brd img {
    width: 100%;
  }
  .specialist-modal {
    padding-top: 62px;
  }
  .specialist-modal__container {
    width: calc(100% - 40px);
  }
  .specialist-modal__header {
    margin-bottom: 16px;
  }
  .specialist-modal__row {
    padding-top: 20px;
    padding-bottom: 8px;
  }
  .specialist-modal__subtitle {
    margin-bottom: 10px;
  }
  .specialist-modal__text p {
    margin-bottom: 8px;
  }
  .blog__box {
    padding: 16px 16px 4px 12px;
  }
  .blog__img {
    padding: 8px 0 8px 8px;
  }
  .licenses__item {
    width: calc(100%);
  }
}
@media (max-width: 440px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  h1,
  .page h1 {
    font-size: 1.6rem;
  } 
  .page h1 {
    margin-bottom: 32px;
  }
  .header__btn {
    right: 52px;
  }
  .header__brg__btn {
    right: 12px;
  }
  header.menu::after {
    width: calc(100% - 32px);
  }
  .visit__btn {
    width: calc(50% - 20px);
    margin: 0 10px 20px 10px;
    height: 120px;
  }
  .main::after {
    height: 620px;
  }
  .direct__heading {
    padding: 16px 20px;
  }
  .direct__number {
    font-size: 21px;
    margin-right: 8px;
  }
  .direct__heading h3 {
    font-size: 1.125rem;
  }
 
  .page h3,
  .prices__tab th {
    font-size: 1.05rem;
  }
  .specialist-modal__container {
    width: calc(100% - 32px);
  }
  .prices__item {
    padding: 20px 20px 10px;
    margin-bottom: 24px;
  }
  .prices__tab td {
    padding-left: 8px;
    font-size: 0.9rem;
  }
  .about__text__item:first-child {
    margin-right: 10%;
  }
  .blog__card {
    flex-direction: column;
  }
  .blog__img {
    width: auto;
    height: 300px;
    padding: 12px;
    max-height: none;
    display: flex;
    align-items: center;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border: 1px solid var(--light-active);
    border-bottom: 0;
  }
  .blog__box {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border: 1px solid var(--light-active);
    border-top: 0;
    padding: 0 20px 12px;
  }
  .blog__text {
    height: 190px;
  }
  .blog-topic {
    padding: 8px 12px;
    font-size: 0.8rem;
    margin: 0 6px 8px 0;
  }
}
@media (max-width: 385px) {

  .section {
    margin-bottom: 60px;
  }
  header.menu .header__nav__link {
    font-size: 1rem;
  }
  .visit__btn p {
    font-size: 0.9rem;
  }
  .main__title {
    margin-bottom: 18px;
  }
  .direct__number {
    display: none;
  }
  .btn__arrow--bl {
    width: 100%;
    justify-content: center;
    text-align: center;
    
  }
  .btn__arrow--bl::after {
    display: none;
  } 
  .specialist__btn {
    width: calc(100% - 60px);
    min-width: 220px;
  }
  .specialist__card {
    width: 100%;
  }

  .questions__cards {
   
  }

  .prices__tab td {
    font-size: 0.87rem;
  }
  .blog-topic {
    padding: 6px 10px;
    font-size: 0.75rem;
    margin: 0 4px 6px 0;
  }
  .blog__box {
    padding: 0 12px 8px;
  }
  .blog__heading {
    margin-bottom: 8px;
  }
  .blog__img {
    height: 250px;
  }
}
@media (max-width: 370px) {
  .visit__btns {
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .visit__btn {
    width: 100%;
    margin: 0 0 10px 0;
    height: 48px;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
  }
  .visit__btn img {
    display: none;
  }
  .visit__btn p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
  .visit__btn p br {
    display: none;
  }
  .visit__btn-1 p::after,
  .visit__btn-2 p::after {
    margin-bottom: -14px;
  }
  .advantages__item {
    display: flex;
    margin-bottom: 24px;
  }
  .advantages__item__title {
    display: block;
  }
  .advantages__item img {
    width: 24px;
    height: 24px;
    margin: 4px 8px 0 0;
    margin-right: 8px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .page__img__brd {
    padding: 0 8px 8px 0;
  }
  .page__img__brd::after {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 8px;
    left: 8px;
  }
  .questions__heading {
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .questions__heading::before {
    display: none;
  }
  .questions__card {
    padding: 20px 20px 16px;
    margin-bottom: 20px;
  }

  .prices__tab tr {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--light-active);
  }
  .prices__tab thead tr {
    border-top: 0;
  }
  .prices__tab td {
    width: 50%;
    text-align: center;
    padding: 0 0 8px;
    border: 0;
  }
  .prices__tab td:first-child {
    width: 100%;
    padding: 8px 0 8px;
  }
  .prices__tab .thead tr {
    border: 0;
  }

}
@media (max-width: 360px) {
  .section {
    margin-bottom: 50px;
  }
  .direct__heading {
    padding: 14px 16px;
    height: 56px;
  }
  .direct__heading h3 {
    font-size: 1rem;
  }
  .serv__item {
    padding: 24px 22px 28px;
  }
  .btn__arrow--bl {
    font-size: 15px;
  }
  .question__title span {
    margin-left: 0;
  }
  .question__title span::before {
    display: none;
  }
  .contacts__text {
    margin-bottom: 12px;
  }
  .contacts__text__item:nth-child(2) img,
  .about__text__item:nth-child(1) img {
    display: none;
  }
  .contacts__text__item p {
    margin-bottom: 12px;
  }
  .footer {
    padding-top: 50px;
  }
  .footer__item__contact {
    padding-left: 24px;
  }
  .footer__item__contact img {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
  .page h1 {
    margin-bottom: 20px;
  }  
  .specialist__content {
    padding-bottom: 0;
  }
  .specialist__card {
    min-width: auto;
    padding: 24px 15px 80px;
  }
  .specialist__btn {
    bottom: 36px;
  }
  .specialist__btn::after {
    display: none;
  }
}
@media (max-height: 440px) {
  header.menu {
    justify-content: space-between;
  }
  header.menu .header__nav {
    padding-top: 40px;
    height: 80%;
  }
  header.menu .header__nav__link {
    font-size: 1rem;
    margin-bottom: 4px;
  }
}
