@charset "UTF-8";
:root {
  --transition: 0.25s ease-out;
  --border-radius: 14px;
  --border-radius-2: 8px;
  --font-family: 'Geologica', sans-serif;
  --font-family-2: 'Unbounded', sans-serif;
  --accent: #E10032;
  --accent-hover: #C1012B;
  --accent-active: #8C0120;
  --bg-white: #fff;
  --bg-black: #333333;
  --bg-light-gray: #F9F8F6;
  --bg-light-pink: #FFF0F0;
  --bg-light-red: #FFCCCC;
  --text-black: #333333;
  --text-gray: #666666;
  --text-gray-2: #7A7A7A;
  --text-gray-3: #999999;
  --text-gray-4: #888888;
  --text-gray-5: #AAAAAA;
  --text-light-gray: #DDDDDD;
  --text-white: #fff;
  --bd-gray: #EFEFEF;
  --bd-gray-2: #DDDDDD;
  --bd-gray-3: #E0E0E0;
  --bd-gray-4: #F0F0F0;
  --shadow: 0px 4.15px 22.15px 0px rgba(0, 0, 0, 0.071);
}

/* Fonts */
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Globals */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.3;
  padding-top: 57px;
  background: var(--bg-light-gray);
  color: var(--text-black);
}
@media (min-width: 992px) {
  body {
    padding-top: 88px;
  }
}

#wpadminbar {
  position: fixed !important;
  z-index: 101;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}
@media (hover: hover) {
  a {
    transition: color var(--transition);
  }
  a:hover {
    color: var(--accent-hover);
  }
}

button, input[type=submit] {
  cursor: pointer;
}

iframe {
  border: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h5,
.title-h6 {
  margin: 0;
  font-family: var(--font-family-2);
  font-weight: bold;
  text-wrap: balance;
  line-height: 1.1;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .title-h1,
  .title-h2,
  .title-h3,
  .title-h4,
  .title-h5,
  .title-h6 {
    letter-spacing: -1.66px;
  }
}

h1, .title-h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1, .title-h1 {
    font-size: 3.75rem;
  }
}

h2, .title-h2 {
  font-size: 1.625rem;
}
@media (min-width: 768px) {
  h2, .title-h2 {
    font-size: 3.125rem;
  }
}

h3, .title-h3 {
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  h3, .title-h3 {
    font-size: 2.625rem;
  }
}

h4, .title-h4 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h4, .title-h4 {
    font-size: 2.1875rem;
  }
}

h5, .title-h5 {
  font-size: 1.0625rem;
}
@media (min-width: 768px) {
  h5, .title-h5 {
    font-size: 1.8125rem;
  }
}

h6, .title-h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6, .title-h6 {
    font-size: 1.5rem;
  }
}

/* Inputs */
*::-webkit-input-placeholder {
  color: var(--text-light-gray);
  opacity: 1 !important;
}

*:-moz-placeholder {
  color: var(--text-light-gray);
  opacity: 1 !important;
}

*::-moz-placeholder {
  color: var(--text-light-gray);
  opacity: 1 !important;
}

*:-ms-input-placeholder {
  color: var(--text-light-gray);
  opacity: 1 !important;
}

/* Clears the 'X' in searchbar from Internet Explorer/Edge */
/* Clears the 'X' in searchbar from Chrome/Safari/WebKit */
/* Layout */
.container {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-suptitle {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.14;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 767.98px) {
  .section-suptitle {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .section-suptitle {
    margin-bottom: 24px;
    font-size: 1.0625rem;
  }
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

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

.section-title {
  margin: 0 0 32px;
}
@media (max-width: 767.98px) {
  .section-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .section-title {
    margin: 0 0 50px;
    max-width: 900px;
  }
}

.section-subtitle {
  margin-top: -20px;
  margin-bottom: 32px;
  color: var(--text-gray);
}
@media (max-width: 767.98px) {
  .section-subtitle {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .section-subtitle {
    max-width: 684px;
    margin-top: -34px;
    margin-bottom: 50px;
    font-size: 1.25rem;
  }
}

.section-suptitle--bold {
  font-weight: 700;
}

.page:not(body) {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .page:not(body) {
    padding: 0 0 80px;
  }
}

@media (max-width: 767.98px) {
  .page--blog {
    padding-bottom: 0;
  }
}

.page-head {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .page-head {
    max-width: 780px;
    padding: 80px 0 50px;
  }
}

@media (max-width: 767.98px) {
  .page-head--sm-border {
    padding: 60px 24px 27px;
    margin-left: -24px;
    margin-right: -24px;
    border-top: 3px solid #444444;
    border-bottom: 3px solid #444444;
  }
}

@media (max-width: 767.98px) {
  .page-head--404 {
    padding-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .page-404-btns {
    display: flex;
    justify-content: center;
  }
}

.page-title {
  margin-bottom: 16px;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .page-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3.125rem;
  }
}

.page-subtitle {
  color: var(--text-gray);
}
@media (max-width: 767.98px) {
  .page-subtitle {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-subtitle {
    font-size: 1.25rem;
  }
}

/* Logo */
.logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

/* Buttons */
.btn, input[type=submit] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-white);
  text-decoration: none;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
@media (min-width: 768px) {
  .btn, input[type=submit] {
    padding: 20px 50px;
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .btn:focus, .btn:hover, input[type=submit]:focus, input[type=submit]:hover {
    background: var(--accent-hover);
    color: var(--text-white);
  }
  .btn:active, input[type=submit]:active {
    background: var(--accent-active);
    color: var(--text-white);
  }
}
.btn:disabled, input[type=submit]:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
@media (hover: hover) {
  .btn--outline:focus, .btn--outline:hover {
    background: var(--accent);
    color: var(--text-white);
  }
  .btn--outline:active {
    background: var(--accent-active);
    color: var(--text-white);
    box-shadow: inset 0 0 0 2px var(--accent-active);
  }
}

input[type=submit] {
  padding-top: 14px;
  padding-bottom: 14px;
}

.arrow-link {
  color: var(--accent);
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .arrow-link {
    font-size: 1.0625rem;
  }
}
.arrow-link::after {
  content: " →";
}

/* Custom lists */
.custom-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.14;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .custom-list {
    gap: 20px;
    font-size: 1.0625rem;
  }
}
.custom-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 35px;
  min-height: 27px;
}
@media (min-width: 768px) {
  .custom-list li {
    padding-left: 42px;
  }
}
.custom-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 27px;
  height: 27px;
  background: var(--accent);
  background-image: url("../img/icons/check.svg");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.custom-list-sm {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .custom-list-sm {
    font-size: 1.0625rem;
  }
}
.custom-list-sm > li {
  position: relative;
  padding-left: 32px;
}
.custom-list-sm > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/check-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-list-sm--cross > li::before {
  background-image: url("../img/icons/cross.svg");
}

.custom-list-sm--minus > li::before {
  background-image: url("../img/icons/minus.svg");
}

/* Header */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  transition: background var(--transition), backdrop-filter var(--transition);
  backdrop-filter: blur(5px);
}
.overlay.active {
  background: rgba(136, 136, 136, 0.2);
}

.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bd-gray);
}
body.admin-bar .header {
  top: 46px;
}
@media (min-width: 782px) {
  body.admin-bar .header {
    top: 32px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  height: 57px;
}
@media (min-width: 992px) {
  .header__inner {
    padding: 20px 0;
    height: 88px;
  }
}

.header__logo {
  height: 20px;
}

.header__nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .header__nav > ul {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .header__nav > ul {
    font-size: 1.0625rem;
    font-weight: normal;
    gap: 28px;
  }
}
@media (min-width: 992px) {
  .header__nav > ul > li {
    padding: 12px 0;
  }
}
.header__nav > ul > li > a {
  text-decoration: none;
  color: var(--text-gray);
}
@media (hover: hover) {
  .header__nav > ul > li > a:hover {
    color: var(--accent);
  }
}
.header__nav > ul > li.current-menu-item > a {
  color: var(--accent);
}
@media (max-width: 991.98px) {
  .header__nav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: -110%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 238px;
    max-width: 320px;
    padding: 8px 24px 30px 20px;
    background: var(--bg-white);
    transition: right var(--transition);
  }
}
@media (max-width: 991.98px) and (max-width: 781.98px) {
  body.admin-bar .header__nav {
    top: 46px;
  }
}
@media (max-width: 991.98px) {
  .header__nav.active {
    right: 0%;
  }
}
@media (max-width: 991.98px) {
  .header__nav .sub-menu {
    margin: 15px 0 0;
    padding: 0 0 0 8px;
    list-style: none;
    font-size: 1rem;
    line-height: 1.14;
  }
  .header__nav .sub-menu > li:not(:last-child) {
    margin-bottom: 8px;
  }
  .header__nav .sub-menu > li > a {
    color: var(--text-gray);
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  .header__nav .menu-item-has-children {
    position: relative;
  }
  .header__nav .menu-item-has-children:hover > .sub-menu, .header__nav .menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }
  .header__nav .menu-item-has-children > a {
    position: relative;
    padding-right: 22px;
  }
  .header__nav .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    margin-top: -2px;
    width: 11px;
    height: 11px;
    border-right: 2px solid;
    border-bottom: 2px solid;
  }
  .header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 100%;
    max-width: 300px;
    margin: 0;
    padding: 14px 22px;
    list-style: none;
    font-size: 1.0625rem;
    line-height: 1.14;
    background: var(--bg-white);
    border: 1px solid var(--bd-gray-2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  .header__nav .sub-menu > li:not(:last-child) {
    margin-bottom: 8px;
  }
  .header__nav .sub-menu > li > a {
    color: var(--text-gray);
    text-decoration: none;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .header__nav .sub-menu > li > a:hover {
    color: var(--accent);
  }
}

@media (min-width: 992px) {
  .header__nav-close {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .header__nav-close {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-bottom: 67px;
    padding: 0;
    background: transparent;
    border: none;
  }
  .header__nav-close:before, .header__nav-close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--accent);
  }
  .header__nav-close:before {
    transform: rotate(-135deg);
  }
  .header__nav-close:after {
    transform: rotate(-45deg);
  }
}

@media (min-width: 992px) {
  .header__nav-bottom {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .header__nav-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

.header__nav-btn {
  padding: 14px 6px;
  font-size: 0.875rem;
}

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

.header__tel {
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-black);
}
@media (min-width: 992px) {
  .header__tel {
    font-size: 1.0625rem;
    line-height: 1.14;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .header__tel:hover {
    color: var(--accent);
  }
}

.header__btn {
  padding: 14px 30px;
  font-size: 1.0625rem;
  font-weight: normal;
}
@media (max-width: 991.98px) {
  .header__btn {
    display: none;
  }
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .header__burger {
    width: 57px;
    height: 29px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0;
    background: none;
    border: none;
  }
  .header__burger > span {
    width: 100%;
    height: 7px;
    background: var(--accent);
  }
  .header__burger > span:nth-child(2) {
    width: 72%;
  }
}

/* Hero */
.hero {
  padding: 60px 0;
  background: var(--bg-white);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 88px 0;
  }
}

.hero__inner {
  position: relative;
  min-height: 500px;
}

.hero__content {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__content {
    max-width: 585px;
  }
}

.hero__subtitle {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.0625rem;
    padding-left: 22px;
  }
}
.hero__subtitle span {
  color: var(--text-black);
}
.hero__subtitle::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .hero__subtitle::before {
    width: 12px;
    height: 12px;
  }
}

.hero__title {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .hero__title {
    text-align: center;
  }
}

.hero__list {
  line-height: 1.3;
  font-size: 1rem;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero__list {
    font-size: 1.25rem;
  }
}
.hero__list li::before {
  top: -2px;
  transform: none;
}
@media (min-width: 768px) {
  .hero__list li::before {
    top: 0;
  }
}

.hero__btn-wrap {
  display: flex;
  gap: 8px;
  margin-top: 240px;
}
@media (min-width: 360px) {
  .hero__btn-wrap {
    margin-top: 280px;
  }
}
@media (min-width: 375px) {
  .hero__btn-wrap {
    margin-top: 297px;
  }
}
@media (max-width: 767.98px) {
  .hero__btn-wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .hero__btn-wrap {
    align-items: center;
    gap: 27px;
    margin-top: 36px;
  }
}

@media (max-width: 767.98px) {
  .hero__btn {
    width: 100%;
  }
}

.hero__btn-hint {
  font-size: 0.9375rem;
  color: var(--text-gray);
  text-align: center;
}
@media (min-width: 768px) {
  .hero__btn-hint {
    font-size: 1.0625rem;
  }
}

.hero__img {
  position: absolute;
}
.hero__img img {
  display: block;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .hero__img img {
    max-height: 680px;
  }
}
@media (max-width: 767.98px) {
  .hero__img {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 377px;
  }
}
@media (min-width: 768px) {
  .hero__img {
    right: -320px;
    bottom: -88px;
  }
}
@media (min-width: 890px) {
  .hero__img {
    right: -280px;
  }
}
@media (min-width: 992px) {
  .hero__img {
    right: -200px;
  }
}
@media (min-width: 1100px) {
  .hero__img {
    right: -80px;
  }
}
@media (min-width: 1180px) {
  .hero__img {
    right: -20px;
  }
}
@media (min-width: 1246px) {
  .hero__img {
    right: 0;
  }
}

.hero__img-hint-1,
.hero__img-hint-2 {
  display: none;
}
@media (min-width: 1180px) {
  .hero__img-hint-1,
  .hero__img-hint-2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 22px;
    border: 1px solid var(--bd-gray-2);
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
  }
  .hero__img-hint-1 > span:nth-child(1),
  .hero__img-hint-2 > span:nth-child(1) {
    font-family: var(--font-family-2);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -1.66px;
  }
  .hero__img-hint-1 > span:nth-child(2),
  .hero__img-hint-2 > span:nth-child(2) {
    font-size: 1.0625rem;
    color: var(--text-gray);
  }
}

@media (min-width: 1180px) {
  .hero__img-hint-1 {
    position: absolute;
    top: 46px;
    left: 0;
  }
}

@media (min-width: 1180px) {
  .hero__img-hint-2 {
    position: absolute;
    bottom: 55px;
    right: 20px;
  }
}

/* About */
.about {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about {
    padding-bottom: 0;
  }
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .about__inner {
    position: relative;
  }
}
@media (min-width: 992px) {
  .about__inner {
    min-height: 428px;
  }
}

@media (min-width: 992px) {
  .about__content {
    max-width: 593px;
  }
}

.about__text {
  margin-top: -20px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .about__text {
    margin-top: -34px;
    font-size: 1.25rem;
  }
}
.about__text p {
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .about__text p {
    margin: 0 0 16px;
  }
}

.about__small-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}
@media (max-width: 767.98px) {
  .about__small-text {
    text-align: center;
    max-width: 229px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .about__small-text {
    margin-top: 24px;
  }
}

.about__img {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about__img {
    display: none;
  }
}
@media (min-width: 992px) {
  .about__img {
    position: absolute;
    top: 0;
    right: -150px;
  }
}
@media (min-width: 1060px) {
  .about__img {
    right: -90px;
  }
}
@media (min-width: 1140px) {
  .about__img {
    right: -50px;
  }
}
@media (min-width: 1246px) {
  .about__img {
    right: 0;
  }
}
.about__img img {
  display: block;
}
@media (max-width: 767.98px) {
  .about__img img {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .about__img img {
    max-height: 542px;
  }
}

/* Services */
@media (max-width: 767.98px) {
  .services__grid {
    display: flex;
    gap: 16px;
    margin: 0 -24px -20px;
    padding: 0 24px 20px;
    overflow-x: auto;
  }
}
@media (min-width: 768px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.services__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--bd-gray-2);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .services__item {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .services__item {
    min-width: 270px;
  }
}
@media (hover: hover) {
  .services__item {
    transition: box-shadow var(--transition);
  }
  .services__item:hover {
    color: inherit;
    box-shadow: none;
  }
}

.services__item-img {
  pointer-events: none;
  user-select: none;
}
.services__item-img img {
  width: auto;
  height: 98px;
}
@media (min-width: 768px) {
  .services__item-img img {
    height: 84px;
  }
}

.services__item-text {
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .services__item-text {
    font-size: 1.25rem;
  }
}

.services__btn {
  margin-top: auto;
}

/* Solutions */
@media (max-width: 767.98px) {
  .solutions__grid {
    display: flex;
    gap: 16px;
    margin: 0 -24px -20px;
    padding: 0 24px 20px;
    overflow-x: auto;
  }
}
@media (min-width: 768px) {
  .solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1180px) {
  .solutions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solutions__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .solutions__item {
    min-width: 270px;
  }
}

.solutions__item--selected .solutions__item-top {
  background: var(--accent);
  color: var(--text-white);
}
.solutions__item--selected .solutions__item-suptitle {
  color: var(--text-white);
}

.solutions__item-top {
  padding: 15px;
  background: #F4F4F4;
  border-bottom: 1px solid var(--bd-gray-2);
}
@media (min-width: 768px) {
  .solutions__item-top {
    padding: 22px 24px;
  }
}

.solutions__item-suptitle {
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--accent);
}
@media (min-width: 768px) {
  .solutions__item-suptitle {
    font-size: 1.0625rem;
    margin-bottom: 7px;
  }
}

.solutions__item-bottom {
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  padding: 20px 7px 7px;
}
@media (min-width: 768px) {
  .solutions__item-bottom {
    gap: 95px;
    padding: 18px 22px 22px;
  }
}

.solutions__item-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.14;
}
@media (min-width: 768px) {
  .solutions__item-list {
    gap: 14px;
    font-size: 1.0625rem;
  }
}
.solutions__item-list li {
  position: relative;
  padding-left: 20px;
}
.solutions__item-list li::before {
  content: "—";
  position: absolute;
  top: 0;
  left: 0;
}

.solutions__item-btn {
  margin-top: auto;
}
@media (min-width: 1246px) {
  .solutions__item-btn {
    margin-left: 16px;
    margin-right: 16px;
  }
}

/* Results */
.results {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .results {
    padding-bottom: 50px;
  }
}

.results__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 15px 30px 60px;
  background: var(--bg-light-gray);
  border-top: 1px solid var(--bd-gray-2);
  border-right: 1px solid var(--bd-gray-2);
  border-left: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius) 14px 0 0;
}
@media (min-width: 768px) {
  .results__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 16px;
    padding: 30px 30px 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--bd-gray-2);
  }
}
@media (min-width: 1246px) {
  .results__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.results__item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .results__item {
    text-align: center;
  }
}
.results__item > span:nth-child(1) {
  padding-bottom: 8px;
  font-family: var(--font-family-2);
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.1;
  color: var(--accent);
  border-bottom: 1px solid #E8E8E8;
}
@media (min-width: 768px) {
  .results__item > span:nth-child(1) {
    font-size: 2.625rem;
    letter-spacing: -1.66px;
  }
}
.results__item > span:nth-child(1) > span {
  color: var(--text-black);
}
.results__item > span:nth-child(2) {
  margin-top: 4px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .results__item > span:nth-child(2) {
    font-size: 1.25rem;
  }
}

/* Swiper */
.section-slider {
  overflow: hidden;
}

.swiper.custom-swiper {
  overflow: visible;
}
.swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 767.98px) {
  .swiper .swiper-slide {
    max-width: 270px;
  }
}
@media (min-width: 768px) {
  .swiper .swiper-slide {
    opacity: 0;
    transition: opacity var(--transition);
  }
  .swiper .swiper-slide.swiper-slide-visible {
    opacity: 1;
  }
}
.swiper.custom-swiper-lock .swiper-custom-nav {
  display: none;
}

.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 3px;
  background: var(--bd-gray-2);
  opacity: 1;
  border-radius: 50px;
  transition: width var(--transition), background var(--transition);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
}

.swiper-custom-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .swiper-custom-nav {
    margin-top: 22px;
  }
}
@media (min-width: 768px) {
  .swiper-custom-nav {
    position: absolute;
    top: -86px;
    right: 0;
  }
}

.swiper-custom-prev,
.swiper-custom-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 12px;
  border: 1px solid var(--bd-gray-2);
  transition: background var(--transition), border-color var(--transition);
}
@media (min-width: 768px) {
  .swiper-custom-prev,
  .swiper-custom-next {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-2);
  }
}
.swiper-custom-prev::after,
.swiper-custom-next::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(1);
  transition: filter var(--transition);
}
@media (min-width: 768px) {
  .swiper-custom-prev::after,
  .swiper-custom-next::after {
    width: 13px;
    height: 13px;
  }
}
.swiper-custom-prev.swiper-button-disabled,
.swiper-custom-next.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
@media (hover: hover) {
  .swiper-custom-prev:hover,
  .swiper-custom-next:hover {
    background: var(--accent);
    border-color: var(--accent);
  }
  .swiper-custom-prev:hover::after,
  .swiper-custom-next:hover::after {
    filter: brightness(10);
  }
}

.swiper-custom-next::after {
  transform: rotate(-180deg);
}

/* Reviews */
.reviews__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  background: var(--bg-white);
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.reviews__item-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.reviews__item-stars > span {
  width: 14px;
  height: 13px;
  background: url("../img/icons/star.svg") no-repeat center;
  background-size: contain;
}

.reviews__item-text {
  margin-bottom: 25px;
  font-size: 0.9375rem;
  line-height: 1.14;
}

.reviews__item-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.reviews__item-author > div:nth-child(1) {
  flex-shrink: 0;
}
.reviews__item-author > div:nth-child(1) img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews__item-author > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 1.14;
}
.reviews__item-author > div:nth-child(2) > span:nth-child(2) {
  color: var(--text-gray);
}

/* CTA */
@media (min-width: 1246px) {
  .cta__inner {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1246px) {
  .cta__col-1 {
    padding-top: 12px;
    max-width: 38%;
  }
}

@media (min-width: 1246px) {
  .cta__col-2 {
    width: 50%;
  }
}

.cta__list {
  margin-top: -12px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .cta__list {
    margin-top: -34px;
  }
}

.cta__form {
  padding: 15px;
  border: 1px solid var(--bd-gray-2);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .cta__form {
    padding: 30px;
  }
}

.cta__from-title {
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .cta__from-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cta__from-title {
    margin-bottom: 18px;
  }
}

/* Custom form */
.custom-form {
  position: relative;
}
.custom-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .custom-form form {
    gap: 14px;
  }
}
.custom-form form > label {
  font-size: 0.9375rem;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .custom-form form > label {
    font-size: 1.0625rem;
  }
}
.custom-form form > label.is-invalid-parent {
  color: var(--accent);
}
.custom-form form > label.is-invalid-parent span[hidden] {
  display: inline !important;
}
.custom-form form .wpcf7-form-control-wrap {
  margin-top: 6px;
  display: block;
}
.custom-form form .wpcf7-form-control-wrap input:not([type=checkbox]) {
  height: 46px;
}
.custom-form form .wpcf7-form-control-wrap input:not([type=checkbox]), .custom-form form .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0 14px;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-black);
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius-2);
}
.custom-form form .wpcf7-form-control-wrap textarea {
  height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
}
.custom-form form .wpcf7-acceptance {
  display: flex;
}
.custom-form form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.custom-form form .wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 4px;
  min-height: 29px;
  padding-left: 35px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-gray);
  cursor: pointer;
}
.custom-form form .wpcf7-acceptance .wpcf7-list-item-label a {
  display: contents;
}
.custom-form form .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 27px;
  height: 27px;
  border: 1px solid var(--accent);
  background-repeat: no-repeat;
  background-position: -100px;
  background-size: 14px;
  background-image: url("../img/icons/check-red.svg");
}
.custom-form form .wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-form form .wpcf7-acceptance input[type=checkbox]:focus-visible + .wpcf7-list-item-label {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}
.custom-form form .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-position: center;
}
.custom-form form .hidden-select {
  position: absolute;
  visibility: hidden;
}
.custom-form form .nice-select {
  width: 100%;
  padding-left: 14px;
  height: 46px;
  line-height: 44px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-black);
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius-2);
}
.custom-form form .nice-select:focus-visible {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}
.custom-form form .nice-select .option.selected {
  font-weight: 500;
}
.custom-form form .nice-select.is-first-selected .current {
  color: var(--text-light-gray);
}
.custom-form form .nice-select-dropdown {
  width: 100%;
  border-radius: var(--border-radius-2);
}
@media (max-width: 575.98px) {
  .custom-form form .nice-select-dropdown {
    max-height: 180px;
  }
}
.custom-form form .nice-select-dropdown .list {
  margin: 0;
}

/* Contact Form 7 */
@keyframes trambling-animation {
  0%, 50%, 100% {
    transform: translateX(0);
  }
  10%, 30% {
    transform: translateX(-5px);
  }
  20%, 40% {
    transform: translateX(5px);
  }
}
.wpcf7-not-valid {
  background: #FFF8F8;
  border-color: var(--accent) !important;
  animation: 0.75s ease-in-out trambling-animation;
}
.wpcf7-not-valid::-moz-placeholder {
  color: var(--accent);
}
.wpcf7-not-valid:-ms-input-placeholder {
  color: var(--accent);
}
.wpcf7-not-valid::placeholder {
  color: var(--accent);
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

/* Hero-2 */
.hero-2 {
  padding: 60px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-2 {
    padding: 80px 0;
  }
}

.hero-2__inner {
  position: relative;
}
@media (min-width: 768px) {
  .hero-2__inner {
    min-height: 458px;
  }
}

.hero-2__content {
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .hero-2__content {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero-2__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 626px;
  }
}

.hero-2__title {
  margin-bottom: 12px;
}

.hero-2__text {
  margin-top: 0;
}
@media (min-width: 768px) {
  .hero-2__text {
    margin-bottom: 36px;
  }
}

.hero-2__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .hero-2__btns {
    margin-top: 297px;
  }
}

.hero-2__img {
  position: absolute;
}
.hero-2__img img {
  display: block;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .hero-2__img img {
    max-height: 590px;
  }
}
@media (max-width: 767.98px) {
  .hero-2__img {
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  .hero-2__img {
    right: -280px;
    bottom: -80px;
  }
}
@media (min-width: 850px) {
  .hero-2__img {
    right: -250px;
  }
}
@media (min-width: 992px) {
  .hero-2__img {
    right: -160px;
  }
}
@media (min-width: 1100px) {
  .hero-2__img {
    right: -60px;
  }
}
@media (min-width: 1180px) {
  .hero-2__img {
    right: 0;
  }
}

/* Consist */
@media (min-width: 992px) {
  .consist__inner {
    display: flex;
    gap: 20px;
  }
}

.consist__text {
  margin-bottom: 32px;
  font-size: 0.9375rem;
  line-height: 1.14;
}
@media (max-width: 767.98px) {
  .consist__text {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .consist__text {
    font-size: 1.0625rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 991.98px) {
  .consist__items {
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .consist__items {
    padding-right: 40px;
  }
}

.consist__item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
}
.consist__item:not(:last-child) {
  border-bottom: 1px solid var(--bd-gray-4);
}
.consist__item > div:nth-child(1) {
  flex-shrink: 0;
}
.consist__item > div:nth-child(1) img {
  max-width: 72px;
}
.consist__item > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .consist__item > div:nth-child(2) {
    max-width: 375px;
  }
}
.consist__item > div:nth-child(2) > span:nth-child(2) {
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .consist__item > div:nth-child(2) > span:nth-child(2) {
    font-size: 1.25rem;
  }
}

.consist__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .consist__aside {
    flex-shrink: 0;
    max-width: 300px;
  }
}

.consist__notice-1,
.consist__notice-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--border-radius);
}
.consist__notice-1 > span,
.consist__notice-2 > span {
  line-height: 1.1;
}

.consist__notice-1 {
  padding: 30px;
  background: #F7F6F4;
  border: 1px solid var(--bd-gray-3);
}
.consist__notice-1 > span:nth-child(1) {
  font-family: var(--font-family-2);
  font-size: 0.9375rem;
  font-weight: bold;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .consist__notice-1 > span:nth-child(1) {
    font-size: 1.125rem;
  }
}
.consist__notice-1 > span:nth-child(2) {
  font-family: var(--font-family-2);
  font-weight: bold;
  color: var(--accent);
}
@media (min-width: 768px) {
  .consist__notice-1 > span:nth-child(2) {
    font-size: 1.5rem;
  }
}
.consist__notice-1 > span:nth-child(3) {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .consist__notice-1 > span:nth-child(3) {
    font-size: 0.875rem;
  }
}

.consist__notice-1-btn {
  padding: 12px 20px;
  font-size: 0.875rem;
}

.consist__notice-2 {
  padding: 31px;
  background: var(--bg-light-pink);
}
.consist__notice-2 > span:nth-child(1) {
  font-family: var(--font-family-2);
  font-size: 0.9375rem;
  font-weight: bold;
  color: var(--accent);
}
@media (min-width: 768px) {
  .consist__notice-2 > span:nth-child(1) {
    font-size: 1.125rem;
  }
}
.consist__notice-2 > span:nth-child(2) {
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .consist__notice-2 > span:nth-child(2) {
    font-size: 1.0625rem;
  }
}

/* Advantages */
.advantages__grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 992px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantages__item {
  padding: 15px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .advantages__item {
    padding: 28px 32px;
  }
}
.advantages__item > div {
  margin-bottom: 20px;
  font-family: var(--font-family-2);
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .advantages__item > div {
    font-size: 1.125rem;
  }
}
.advantages__item > ul {
  gap: 10px;
}
.advantages__item:nth-child(1) {
  position: relative;
}
.advantages__item:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 17px;
  background-image: url("../img/icons/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .advantages__item:nth-child(1)::after {
    left: auto;
    right: -38px;
    bottom: 50%;
    transform: translateY(50%) rotate(-90deg);
  }
}
.advantages__item:nth-child(2) > div {
  color: var(--accent);
}

/* Hero 3 */
.hero-3 {
  padding: 60px 0;
}

.hero-3__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-3__inner {
    gap: 40px;
  }
}
@media (min-width: 1246px) {
  .hero-3__inner {
    gap: 56px;
    flex-direction: row;
  }
}

.hero-3__col-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767.98px) {
  .hero-3__col-1 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero-3__col-1 {
    align-items: flex-start;
  }
}
@media (min-width: 1246px) {
  .hero-3__col-1 {
    padding-top: 27px;
  }
}

.hero-3__badge {
  margin-bottom: 16px;
  padding: 10px;
  font-size: 0.9375rem;
  line-height: 1.14;
  background: var(--bg-white);
  border: 1px solid var(--bd-gray-3);
  border-radius: var(--border-radius);
  color: var(--text-gray-4);
}
@media (min-width: 768px) {
  .hero-3__badge {
    margin-bottom: 24px;
    font-size: 1.0625rem;
  }
}

.hero-3__title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .hero-3__title {
    margin-bottom: 0;
  }
}

.hero-3__text {
  margin-bottom: 12px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .hero-3__text {
    font-size: 1.25rem;
  }
}

.hero-3__price {
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-gray-4);
}
@media (min-width: 768px) {
  .hero-3__price {
    font-size: 0.80625rem;
  }
}
.hero-3__price > span {
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--accent);
}
@media (max-width: 767.98px) {
  .hero-3__price > span {
    font-family: var(--font-family-2);
  }
}
@media (min-width: 768px) {
  .hero-3__price > span {
    font-size: 1.975rem;
    line-height: 2.8125rem;
  }
}

.hero-3__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-3__btns {
    flex-direction: row;
    max-width: 630px;
    margin-bottom: 8px;
  }
  .hero-3__btns > * {
    flex: 1;
  }
}

.hero-3__info {
  font-size: 0.875rem;
  line-height: 1.14;
  color: var(--text-gray-5);
}
@media (min-width: 768px) {
  .hero-3__info {
    font-size: 0.7125rem;
  }
}

@media (min-width: 1246px) {
  .hero-3__col-2 {
    flex-shrink: 0;
    max-width: 340px;
  }
}

.hero-3__package {
  border: 1px solid var(--bd-gray-3);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.hero-3__package > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px;
  background: var(--bg-black);
  color: var(--text-white);
}
@media (min-width: 768px) {
  .hero-3__package > div:nth-child(1) {
    padding: 30px;
  }
}
.hero-3__package > div:nth-child(1) > span:nth-child(1) {
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray-4);
}
@media (min-width: 768px) {
  .hero-3__package > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.0625rem;
  }
}
.hero-3__package > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--bg-white);
}
@media (min-width: 768px) {
  .hero-3__package > div:nth-child(2) {
    padding: 30px;
  }
}
.hero-3__package > div:nth-child(2) > ul {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bd-gray);
  margin-bottom: 8px;
}
.hero-3__package > div:nth-child(2) > span:nth-of-type(1) {
  margin-bottom: 11px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .hero-3__package > div:nth-child(2) > span:nth-of-type(1) {
    font-size: 1.0625rem;
  }
}

/* Included */
@media (max-width: 767.98px) {
  .included__grid {
    display: flex;
    gap: 16px;
    margin: 0 -24px -20px;
    padding: 0 24px 20px;
    overflow-x: auto;
  }
}
@media (min-width: 768px) {
  .included__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1246px) {
  .included__grid {
    grid-auto-rows: 1fr;
  }
}

.included__item {
  padding: 15px;
  border-radius: var(--border-radius);
  border: 1px solid var(--bd-gray-2);
}
@media (max-width: 767.98px) {
  .included__item {
    min-width: 270px;
  }
}
@media (min-width: 768px) {
  .included__item {
    padding: 30px;
  }
}

.included__item--gray {
  background: #FAFAFA;
}
.included__item--gray ul {
  color: var(--text-gray-5);
}

.included__item-title {
  margin-bottom: 16px;
}

.included__item-info {
  margin-top: 16px;
  color: var(--accent);
}
@media (min-width: 768px) {
  .included__item-info {
    font-size: 1.25rem;
  }
}

/* Fit */
.fit__list {
  gap: 14px;
  font-size: 1.0625rem;
  color: var(--text-gray);
}

/* Contacts */
.contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1246px) {
  .contacts {
    flex-direction: row;
    gap: 40px;
  }
}

.contacts__col-1 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .contacts__col-1 {
    gap: 33px;
  }
}
@media (min-width: 1246px) {
  .contacts__col-1 {
    width: 100%;
  }
}

.contacts__block-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 15px;
  color: var(--text-gray);
}
@media (max-width: 767.98px) {
  .contacts__block-title {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .contacts__block-title {
    padding-bottom: 5px;
  }
}

.contacts__block-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contacts__block-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.14;
  color: var(--text-black);
}
@media (hover: hover) {
  a.contacts__block-item:hover {
    color: var(--accent);
  }
}

.contacts__block-item > span:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--bg-light-pink);
  border-radius: var(--border-radius-2);
}
@media (min-width: 768px) {
  .contacts__block-item > span:nth-child(1) {
    width: 36px;
    height: 36px;
  }
}
.contacts__block-item > span:nth-child(1) img {
  max-width: 16px;
}
.contacts__block-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.contacts__block-item > span:nth-child(2) span:nth-child(1) {
  font-weight: 500;
}
.contacts__block-item > span:nth-child(2) span:nth-child(2) {
  color: var(--text-gray);
}

.contacts__details {
  padding: 15px;
  background: #F7F6F4;
  border: 1px solid var(--bd-gray-2);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .contacts__details {
    padding: 18px 25px 33px;
  }
}

.contacts__details-title {
  margin-bottom: 14px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .contacts__details-title {
    margin-bottom: 20px;
  }
}

.contacts__details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: var(--text-gray);
}
.contacts__details-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
}
.contacts__details-list li:not(:last-child) {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--bd-gray-2);
  margin-bottom: 9px;
}
.contacts__details-list li > span:nth-child(2) {
  text-align: right;
  font-weight: 500;
  color: var(--text-black);
}

@media (max-width: 767.98px) {
  .contacts__col-2 {
    padding-top: 8px;
  }
}
@media (max-width: 1245.98px) {
  .contacts__col-2 {
    order: -1;
  }
}
@media (min-width: 1246px) {
  .contacts__col-2 {
    flex-shrink: 0;
    min-width: 585px;
  }
}

.contacts__map iframe {
  width: 100%;
  height: 278px;
  border-radius: var(--border-radius);
  background: var(--bg-white);
  overflow: hidden;
}
@media (min-width: 768px) {
  .contacts__map iframe {
    height: 380px;
  }
}

/* Blog */
@media (max-width: 767.98px) {
  .blog:not(body) {
    margin-left: -24px;
    margin-right: -24px;
    padding: 60px 24px 60px;
    background: var(--bg-white);
  }
}

.blog__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .blog__links {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .blog__links {
    gap: 24px;
    margin-bottom: 30px;
  }
}
.blog__links > a {
  padding: 11px 17px;
  font-size: 0.9375rem;
  line-height: 1.14;
  border-radius: var(--border-radius);
  border: 1px solid var(--bd-gray-2);
  text-decoration: none;
  color: var(--text-gray);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
@media (min-width: 768px) {
  .blog__links > a {
    font-size: 1.0625rem;
  }
}
.blog__links > a.active {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}
@media (hover: hover) {
  .blog__links > a:hover {
    background: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
  }
}

.blog__items {
  display: grid;
  gap: 16px;
}
@media (min-width: 576px) {
  .blog__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .blog__items {
    gap: 30px;
  }
}
@media (min-width: 1060px) {
  .blog__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  background: var(--bg-white);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--bd-gray-2);
  overflow: hidden;
}
@media (hover: hover) {
  .blog-item:hover .blog-item__title {
    color: var(--accent);
  }
}

.blog-item__img {
  flex-shrink: 0;
  height: 180px;
}
.blog-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 15px 22px;
}
@media (min-width: 768px) {
  .blog-item__content {
    padding-left: 21px;
    padding-right: 21px;
  }
}

.blog-item__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-item__cat {
  padding: 5px 10px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  background: var(--bg-light-pink);
  color: var(--accent);
}

.blog-item__date {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-5);
}

.blog-item__title {
  margin-bottom: 8px;
  font-size: 0.9375rem;
  transition: color var(--transition);
}
@media (min-width: 768px) {
  .blog-item__title {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}

.blog-item__text {
  margin-bottom: 60px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .blog-item__text {
    margin-bottom: 20px;
    font-size: 1.0625rem;
  }
}

.blog-item__more {
  margin-top: auto;
  font-size: 0.9375rem;
  color: var(--accent);
}
@media (min-width: 768px) {
  .blog-item__more {
    font-size: 1.0625rem;
  }
}

/* Pagination */
.pagination {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 399.98px) {
  .pagination .nav-links {
    gap: 4px;
  }
}
@media (max-width: 374.98px) {
  .pagination .nav-links {
    gap: 0;
  }
}
.pagination .nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  text-decoration: none;
  margin: 0;
  padding: 5px 10px;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: inherit;
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius-2);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
.pagination .nav-links .page-numbers.current, .pagination .nav-links .page-numbers.active {
  background-color: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}
@media (hover: hover) {
  .pagination .nav-links a.page-numbers:hover {
    color: var(--text-white);
    background-color: var(--accent);
    border-color: var(--accent);
  }
  .pagination .nav-links a.page-numbers:hover::before {
    filter: brightness(10);
  }
}
.pagination .nav-links .prev, .pagination .nav-links .next {
  position: relative;
}
.pagination .nav-links .prev::before, .pagination .nav-links .next::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(1);
  transition: filter var(--transition);
}
.pagination .nav-links .next::before {
  transform: rotate(180deg);
}
.pagination .nav-links .dots {
  color: var(--text-light-gray);
}

/* Article */
.article-top {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .article-top {
    padding: 80px 0 0;
  }
}
@media (max-width: 767.98px) {
  .article-top {
    text-align: center;
  }
}

.article-top__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .article-top__inner {
    align-items: flex-start;
  }
}

.article-top__cat {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--accent);
}
@media (min-width: 768px) {
  .article-top__cat {
    padding: 10px 14px;
    font-family: var(--font-family-2);
    font-weight: bold;
    font-size: 1.125rem;
    background: var(--bg-light-pink);
    border-radius: var(--border-radius);
  }
}

.article-top__title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .article-top__title {
    margin-bottom: 16px;
  }
}

.article-top__text {
  margin-bottom: 27px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .article-top__text {
    margin-bottom: 16px;
  }
}

.article-top__info {
  display: flex;
}
@media (max-width: 767.98px) {
  .article-top__info {
    order: 1000;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .article-top__info {
    align-items: center;
    gap: 10px 41px;
    width: 100%;
    margin-bottom: 28px;
  }
  .article-top__info > * {
    position: relative;
  }
  .article-top__info > *:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -21px;
    width: 1px;
    height: 28px;
    border-right: 1px solid var(--bd-gray-2);
  }
}
.article-top__info > span {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (max-width: 767.98px) {
  .article-top__info > span:not(:last-child)::after {
    content: "|";
    padding-left: 4px;
    margin-right: 4px;
  }
}

@media (max-width: 767.98px) {
  .article-top__author {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bd-gray-2);
    margin-bottom: 4px;
  }
}
@media (min-width: 768px) {
  .article-top__author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.article-top__author > div:nth-child(1) img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
.article-top__author > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.article-top__author > div:nth-child(2) > span:nth-child(1) {
  font-family: var(--font-family-2);
  font-weight: bold;
  font-size: 0.9375rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .article-top__author > div:nth-child(2) > span:nth-child(1) {
    font-size: 1.125rem;
  }
}
.article-top__author > div:nth-child(2) > span:nth-child(2) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .article-top__author > div:nth-child(2) > span:nth-child(2) {
    margin-top: -1px;
  }
}

.article-top__img {
  border-radius: var(--border-radius) 14px 0 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .article-top__img {
    margin-bottom: 27px;
  }
}
.article-top__img img {
  display: block;
  width: 100%;
  max-width: none;
  height: 316px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .article-top__img img {
    height: 436px;
  }
}

.article {
  padding: 60px 0;
  counter-reset: section;
}
.article .container > *:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .article {
    padding: 80px 0;
  }
}
.article p {
  margin: 0 0 18px;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .article p {
    margin: 0 0 24px;
    font-size: 1.25rem;
  }
}
.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
  margin: 40px 0 12px;
}
@media (max-width: 767.98px) {
  .article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
    margin: 35px 0 18px;
  }
}
.article h1 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .article h1 {
    font-size: 1.625rem;
  }
}
.article h2 {
  counter-reset: subsection;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .article h2 {
    font-size: 1.5rem;
  }
}
.article h2::before {
  counter-increment: section;
  content: counter(section) ".";
  margin-right: 10px;
}
.article h3 {
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .article h3 {
    font-size: 1.375rem;
  }
}
.article h3::before {
  counter-increment: subsection;
  content: counter(section) "." counter(subsection) ".";
  margin-right: 10px;
}
.article h4 {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .article h4 {
    font-size: 1.25rem;
  }
}
.article h5 {
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .article h5 {
    font-size: 1.125rem;
  }
}
.article h6 {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .article h6 {
    font-size: 1rem;
  }
}
.article blockquote {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 18px;
  padding: 15px;
  background: var(--bg-light-pink);
  border: 1px solid var(--bg-light-red);
  border-left: 3px solid var(--accent);
  border-radius: var(--border-radius);
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .article blockquote {
    margin: 0 0 24px;
    padding: 30px;
    font-size: 1.25rem;
  }
}
.article blockquote > * {
  margin: 0;
}
.article blockquote > *:nth-child(1) {
  color: var(--accent);
}
.article .wp-block-embed iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.article__text {
  margin-bottom: 40px;
  font-size: 0.9375rem;
  line-height: 1.14;
  color: var(--text-gray);
}
@media (min-width: 768px) {
  .article__text {
    margin-bottom: 35px;
    font-size: 1.0625rem;
  }
}

.article__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--bd-gray);
}
@media (min-width: 768px) {
  .article__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
  }
}
.article__bottom > span:nth-child(1) {
  margin-bottom: 4px;
  font-size: 0.9375rem;
  line-height: 1.14;
}
@media (min-width: 768px) {
  .article__bottom > span:nth-child(1) {
    margin-bottom: 0;
    font-size: 1.0625rem;
  }
}

.article__share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article__share > * {
  padding: 8px 16px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.14;
  background: none;
  color: var(--text-gray);
  text-decoration: none;
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius-2);
  transition: color var(--transition), border-color var(--transition);
}
@media (min-width: 768px) {
  .article__share > * {
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .article__share > *:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
}

/* LuckyWP Table of Contents */
div.lwptoc {
  margin: 0 0 12px !important;
}
@media (min-width: 768px) {
  div.lwptoc {
    margin-bottom: 18px !important;
  }
}
div.lwptoc .lwptoc_i {
  padding: 15px;
  background: #F7F6F4;
  border: 1px solid var(--bd-gray-3);
  border-left: 3px solid var(--accent);
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  div.lwptoc .lwptoc_i {
    padding: 30px;
  }
}
div.lwptoc .lwptoc_i .lwptoc_title {
  margin-bottom: 10px;
  font-family: var(--font-family-2);
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.14;
  color: var(--text-gray-4);
}
@media (min-width: 768px) {
  div.lwptoc .lwptoc_i .lwptoc_title {
    font-size: 1.125rem;
  }
}
div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_itemWrap {
  margin: 8px 0 0 0;
}
div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_item {
  font-size: 0.9375rem;
  line-height: 1.14;
}
@media (min-width: 768px) {
  div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_item {
    font-size: 1.0625rem;
  }
}
div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_item:not(:first-child) {
  margin-top: 8px;
}
div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_item a {
  text-decoration: none;
  color: #555;
}
@media (hover: hover) {
  div.lwptoc .lwptoc_i .lwptoc_itemWrap .lwptoc_item a:hover {
    color: var(--accent);
  }
}

/* Related */
.related__top {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .related__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }
}
@media (max-width: 767.98px) {
  .related__top .section-suptitle, .related__top .section-title {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .related__top .section-title {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .related__top .section-title {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .related__items {
    display: flex;
    gap: 16px;
    margin: 0 -24px -20px;
    padding: 0 24px 20px;
    overflow-x: auto;
  }
}
@media (min-width: 768px) {
  .related__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1180px) {
  .related__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .related__items .blog-item {
    min-width: 270px;
  }
}
@media (max-width: 767.98px) {
  .related__items .blog-item__text {
    margin-bottom: 17px;
  }
}

.related__more {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.14;
  text-decoration: none;
}
@media (min-width: 768px) {
  .related__more {
    font-size: 1.5rem;
  }
}

/* Popups */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 100;
  background: rgba(51, 51, 51, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 250ms, opacity 250ms;
}
@media (max-width: 575.98px) {
  .popup {
    overflow-y: auto;
  }
}
.popup.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.popup--centered .popup__body {
  padding: 40px 32px;
  text-align: center;
}
.popup--centered .popup__title {
  margin-bottom: 19px;
}
.popup--centered .popup__text {
  margin-bottom: 15px;
  color: var(--text-gray-4);
}

.popup__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 2%;
}

.popup__body {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto 0;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
}
@media (min-width: 576px) {
  .popup__body {
    max-width: 416px;
  }
}

.popup__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: var(--bg-light-pink);
  border-radius: var(--border-radius);
}
.popup__icon img {
  max-width: 16px;
}

.popup__icon--big {
  width: 72px;
  height: 72px;
  margin-bottom: 19px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
}
.popup__icon--big img {
  max-width: 21px;
}

.popup__title {
  margin-bottom: 13px;
}

.popup__text {
  margin-bottom: 14px;
  font-size: 1.0625rem;
  line-height: 1.14;
  color: var(--text-gray);
}

.popup__notice {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: var(--text-gray);
  text-align: center;
  text-wrap: balance;
}

.popup__form form {
  gap: 12px;
}
.popup__form form > label {
  font-size: 0.875rem;
  line-height: 1.14;
}
.popup__form form .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.popup__form form .wpcf7-form-control-wrap input:not([type=checkbox]) {
  border-radius: var(--border-radius);
}
.popup__form form .nice-select {
  border-radius: var(--border-radius);
}
.popup__form form .nice-select-dropdown {
  border-radius: var(--border-radius);
}
.popup__form form input[type=submit] {
  font-size: 1.25rem;
  font-weight: normal;
  border-radius: var(--border-radius);
}

.popup__close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: 1px solid var(--bd-gray-3);
  border-radius: 50%;
  transition: border-color var(--transition);
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  width: 56%;
  height: 1px;
  background: #999999;
  transition: background var(--transition);
}
.popup__close::before {
  transform: rotate(45deg);
}
.popup__close::after {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .popup__close:hover {
    border-color: var(--accent);
  }
  .popup__close:hover::before, .popup__close:hover::after {
    background: var(--accent);
  }
}

.popup__close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.popup__messengers {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 13px;
}
.popup__messengers > span {
  font-size: 0.875rem;
  line-height: 1.14;
  font-weight: 500;
  color: var(--text-gray-5);
}
.popup__messengers > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.popup__messengers > div > a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius);
  transition: color var(--transition);
}
@media (hover: hover) {
  .popup__messengers > div > a:hover {
    color: var(--accent);
  }
}

.popup__contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.popup__contact {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 13px;
  border: 1px solid var(--bd-gray-2);
  border-radius: var(--border-radius);
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .popup__contact:hover {
    color: var(--accent);
  }
}
.popup__contact > div:nth-child(1) {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: var(--bg-light-pink);
  border-radius: var(--border-radius-2);
}
.popup__contact > div:nth-child(1) img {
  max-width: 12px;
}
.popup__contact > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.popup__contact > div:nth-child(2) > span {
  font-size: 0.875rem;
  line-height: 1.14;
}
.popup__contact > div:nth-child(2) > span:nth-child(1) {
  font-weight: 500;
}
.popup__contact > div:nth-child(2) > span:nth-child(2) {
  color: var(--text-gray-5);
}

.popup__contacts,
.popup__btn-group {
  padding: 0 8px;
}

.popup__btn-group {
  display: flex;
  gap: 9px;
}
.popup__btn-group > * {
  flex: 1;
}

.popup__btn {
  padding: 14px 27px;
  min-width: 240px;
  font-size: 1.25rem;
}

.popup__btn-sm {
  padding: 17px;
  font-size: 0.875rem;
  border-radius: var(--border-radius);
}

.popup__btn-md {
  padding: 17px;
  min-width: 240px;
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Footer */
.footer {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  background: var(--bg-black);
  color: var(--text-white);
}

.footer__logo {
  display: inline-flex;
  height: 15px;
  margin-bottom: 9px;
}
@media (min-width: 1246px) {
  .footer__logo {
    height: 21px;
    margin-bottom: 17px;
  }
}

.footer__inner {
  padding: 60px 0;
}
@media (min-width: 1246px) {
  .footer__inner {
    padding: 80px 0;
  }
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 1246px) {
  .footer__top {
    position: relative;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 40px;
  }
  .footer__top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.071);
  }
}
@media (min-width: 1400px) {
  .footer__top::after {
    left: -75px;
    right: -75px;
  }
}

.footer__col-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}
@media (min-width: 768px) {
  .footer__col-group {
    width: 33.3333%;
  }
}
@media (min-width: 1246px) {
  .footer__col-group {
    flex-direction: row;
    justify-content: space-between;
    width: 38.9%;
  }
}
@media (max-width: 1245.98px) {
  .footer__col-group {
    margin-bottom: 28px;
    order: -2;
    padding-right: 8px;
  }
}

.footer__col-1 {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__col-1 {
    width: 33.3333%;
  }
}
@media (min-width: 1246px) {
  .footer__col-1 {
    width: 32.6%;
  }
}

.footer__col-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (min-width: 768px) {
  .footer__col-2 {
    width: 33.3333%;
  }
}
@media (min-width: 1246px) {
  .footer__col-2 {
    width: 16.3%;
  }
}
@media (max-width: 1245.98px) {
  .footer__col-2 {
    order: -1;
    margin-bottom: 28px;
    padding-left: 8px;
  }
}
.footer__col-2 .footer__socials {
  margin-top: auto;
}

@media (min-width: 1246px) {
  .footer__col-3 {
    width: 41.85%;
  }
}

@media (max-width: 1245.98px) {
  .footer__col-4 {
    order: -1;
    margin-bottom: 28px;
  }
}
@media (min-width: 1246px) {
  .footer__col-4 {
    width: 41.85%;
  }
}

.footer__title {
  margin-bottom: 8px;
  color: var(--text-gray-2);
}
@media (min-width: 1246px) {
  .footer__title {
    margin-bottom: 17px;
  }
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1246px) {
  .footer__list {
    gap: 12px;
  }
}
.footer__list li a {
  color: var(--text-white);
  text-decoration: none;
}
@media (hover: hover) {
  .footer__list li a:hover {
    color: var(--accent);
  }
}
.footer__list .sub-menu {
  margin: 10px 0 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.75rem;
}
.footer__list .sub-menu > li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__list .sub-menu > li > a {
  color: var(--text-gray-2);
  text-decoration: none;
}
@media (hover: hover) {
  .footer__list .sub-menu > li > a:hover {
    color: var(--accent);
  }
}

.footer__schedule {
  margin-top: 25px;
  color: var(--text-gray-2);
}
.footer__schedule span {
  display: block;
}
.footer__schedule span:not(:last-child) {
  margin-bottom: 6px;
}
@media (min-width: 1246px) {
  .footer__schedule span:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 1246px) {
  .footer__schedule {
    margin-top: 50px;
  }
}
@media (max-width: 1245.98px) {
  .footer__schedule {
    margin-bottom: 25px;
  }
}

.footer__socials {
  display: flex;
  gap: 22px;
}
@media (min-width: 1246px) {
  .footer__socials {
    gap: 12px;
  }
}
.footer__socials a {
  max-width: 36px;
}
.footer__socials a img {
  display: block;
}
@media (hover: hover) {
  .footer__socials a {
    transition: opacity var(--transition);
  }
  .footer__socials a:hover {
    opacity: 0.8;
  }
}

.footer__text {
  max-width: 280px;
  margin-bottom: 25px;
  color: var(--text-gray-2);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
@media (min-width: 1246px) {
  .footer__contacts {
    margin-bottom: 25px;
  }
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-white);
  text-decoration: none;
}
@media (hover: hover) {
  a.footer__contact:hover {
    color: var(--accent);
  }
}

.footer__contact > span:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.071);
  border-radius: 7px;
}
.footer__contact > span:nth-child(1) img {
  max-width: 20px;
}
.footer__contact > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.footer__contact > span:nth-child(2) span:nth-child(2) {
  color: var(--text-gray-2);
}

.footer__bottom {
  color: var(--text-gray-2);
}
@media (max-width: 1245.98px) {
  .footer__bottom {
    text-align: center;
  }
}
.footer__bottom p {
  margin: 0 0 25px;
}
.footer__bottom p span {
  color: var(--text-gray-3);
}
.footer__bottom a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .footer__bottom a:hover {
    color: var(--accent);
  }
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .faq {
    gap: 30px;
  }
}

.faq__item {
  padding: 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--bd-gray-2);
  background-color: #fff;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .faq__item {
    padding: 30px;
  }
}

.faq__header {
  display: grid;
  align-items: center;
  gap: 15px;
  grid-template-columns: 1fr 45px;
}
@media (min-width: 768px) {
  .faq__header {
    gap: 30px;
    grid-template-columns: 1fr 60px;
  }
}

.faq__answer {
  display: grid;
  grid-template-columns: 1fr 60px;
  grid-template-rows: 0fr;
  color: var(--text-gray);
  font-size: 1rem;
  transition: grid-template-rows 0.3s;
}
@media (min-width: 768px) {
  .faq__answer {
    font-size: 1.25rem;
  }
}
.faq__answer > div {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq__answer p {
  margin: 15px 0 0 0;
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item.active .faq__answer > div {
  max-height: 1000px;
}

.faq__control {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--text-gray-5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .faq__control {
    width: 60px;
    height: 60px;
  }
}
.faq__control::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--bg-black);
}
@media (min-width: 768px) {
  .faq__control::before {
    width: 20px;
    height: 3px;
  }
}
.faq__control::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 15px;
  background-color: var(--bg-black);
}
@media (min-width: 768px) {
  .faq__control::after {
    width: 3px;
    height: 20px;
  }
}

.faq__item.active .faq__control {
  background-color: var(--accent);
}
.faq__item.active .faq__control::before {
  background-color: #fff;
}
.faq__item.active .faq__control::after {
  display: none;
}

/* Utilities */
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-60 {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .mt-60 {
    margin-top: 60px;
  }
}

.mb-60 {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.mt-90 {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .mt-90 {
    margin-top: 90px;
  }
}

.mb-90 {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .mb-90 {
    margin-bottom: 90px;
  }
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.align-center {
  display: flex;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

/* Text */
.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.text-bold {
  font-weight: bold;
}

/* Show, hide */
.hidden {
  display: none !important;
}

@media (max-width: 374.98px) {
  .hidden-to-xs {
    display: none !important;
  }
}

@media (min-width: 375px) {
  .hidden-from-xs {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .hidden-to-sm {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .hidden-from-sm {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hidden-to-md {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-from-md {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hidden-to-lg {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-from-lg {
    display: none !important;
  }
}

@media (max-width: 1245.98px) {
  .hidden-to-xl {
    display: none !important;
  }
}

@media (min-width: 1246px) {
  .hidden-from-xl {
    display: none !important;
  }
}

[hidden] {
  display: none !important;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
  overflow: clip;
}

/* Colors */
.text-accent {
  color: var(--accent);
}

.text-gradient {
  padding-top: 0.2em;
  margin-top: -0.2em;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Border */
/* Position */
/*# sourceMappingURL=style.css.map */
