@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 25% 151%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 25% 151%;
  font-style: italic;
  font-display: swap;
}

/* Base */
html {
  box-sizing: border-box;
}

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

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

button {
  border: none;
  background: transparent;
  outline: none;
  color: inherit;
  cursor: pointer;
}

input {
  border: none;
  background: transparent;
}

.page__content *,
.woocommerce-Tabs-panel--description *{
  all: revert;
}

:root {
  --container-width: 1350px;
  --container-padding: 15px;

  --primary: #222429;
  --secondary: #fff;
  --accent: #df0e0e;
  --dark: #333;
  --muted: #bfbfbf;
  --bg: #222429;

  --height: 1px;
  --header-height: 110px;

  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;

  --menu-lo: 99;

  --font-main: "Inter";
  --font-size: 16px;

  --h1-size: 40px;
  --h2-size: 32px;
  --h3-size: 28px;
  --h4-size: 24px;
  --h5-size: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--primary);
  font-family: var(--font-main);
  font-size: var(--font-size);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.text--white {
  color: var(--secondary);
}
.bingc-phone-button.bingc-language-ua.bingc-show {
  bottom: 10% !important;
}
.title {
  font-size: var(--h1-size);
  font-weight: 700;
  text-transform: uppercase;
}
.single-page {
  margin-bottom: 50px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.single-page__title {
  text-align: center;
  margin-bottom: 36px;
}
.single-page ul {
/*   list-style: inside; */
}
.single-page ol {
  list-style: decimal;
  padding-left: 25px;
}
.btn {
  color: var(--secondary);
  background: var(--accent);
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #800f0f;
  border-color: #800f0f;
}
.btn--transparent {
  background: transparent;
  border-color: var(--secondary);
  position: relative;
  overflow: hidden;
}
.btn--transparent::before {
  z-index: -1;
  content: "";
  transform: scale(0);
  transition: transform 0.3s ease;
  width: 50px;
  height: 50px;
  background: var(--accent);
  position: absolute;
  left: 40%;
  top: 0;
  border-radius: 50%;
}
.btn--transparent:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}
.btn--transparent:hover::before {
  transform: scale(8);
}
.btn--white {
  background: var(--secondary);
  color: var(--primary);
}
.btn--white:hover {
  transform: scale(1.1);
  background: var(--secondary);
  border-color: var(--secondary);
}

.section-name {
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-block;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 700;
}
.section-name:not(:last-child) {
  margin-bottom: 46px;
}
.rate__swiper {
  padding-bottom: 20px;
}
.swiper .swiper-pagination {
  max-width: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.swiper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: var(--secondary);
  opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.container {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

.container-right {
  padding-left: calc(
    (100% - var(--container-width)) / 2 + var(--container-padding)
  );
}
@media (max-width: var(--laptop-size)) {
  .container-right {
    padding-left: var(--container-padding);
  }
}

.container-left {
  padding-right: calc(
    (100% - var(--container-width)) / 2 + var(--container-padding)
  );
}
@media (max-width: var(--laptop-size)) {
  .container-left {
    padding-right: var(--container-padding);
  }
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.footer {
  background-color: #e3e3e3;
}
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  text-align: center;
  font-size: 16px;
  border-color: var(--accent) !important;
  color: var(--primary);
  margin: 0 !important;
}
/* Blocks */
.about__inner {
  display: flex;
  gap: 48px;
  padding: 80px 0;
}
.about__imgs {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  gap: 11px;
  max-width: 652px;
}
.about__img--big {
  max-height: 240px;
}
.about__imgs img {
  border-radius: 30px;
  object-fit: cover;
}
.about__imgs-row {
  display: grid;
  grid-template-columns: 38% 60%;
  gap: 11px;
  max-height: 246px;
}
.about__img--small {
  max-height: 246px;
  height: 100%;
}
.about__imgs-row img:nth-child(2) {
  width: 100%;
}
.about__imgs-row img:nth-child(1) {
  height: 100%;
}
.about__imgs-row img {
  max-height: 246px;
}
.about__content {
  max-width: 530px;
  flex-shrink: 3;
  position: relative;
}

.about__title:not(:last-child) {
  margin-bottom: 24px;
}
.about__descr {
  display: flex;
  flex-direction: column;
  row-gap: 10px;

  font-size: var(--h5-size);
}
.about__descr span {
  color: var(--accent);
  font-weight: 700;
}
.about__descr:not(:last-child) {
  margin-bottom: 36px;
}
.about__actions {
	display: grid;
	gap: 16px
}
.about__link {
  display: inline-flex;
  align-items: center;
  column-gap: 18px;
  padding: 14px 30px;
}

.about__link svg{
	flex-shrink: 0
}

.burger {
  width: 20px;
  height: 14px;
  position: relative;
  display: none;
  z-index: 99;
  cursor: pointer;
}
.burger.burger--dark span {
  background: var(--bg);
}

.burger--dark.active span {
  background: var(--secondary);
}
.burger span {
  transition: transform 0.3s ease;
  height: 2px;
  background: var(--secondary);
  position: absolute;
  width: 100%;
}
.burger span:first-child {
  top: 0;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger span:last-child {
  bottom: 0;
}
.burger.active span:first-child {
  transform: rotate(45deg) translateY(-10%);
  top: 50%;
}
.burger.active span:nth-child(2) {
  transform: scale(0);
}
.burger.active span:last-child {
  transform: rotate(-45deg) translateY(-10%);
  top: 50%;
}

.contact {
  display: none;
}
.contact__overlay {
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__content {
  transition: transform 5s ease;
  transform: translateY(-50px);
  max-width: 500px;
  background: var(--secondary);
  padding: 60px 60px 20px 50px;
  border-radius: 30px;
  position: relative;
}
.contact__title {
  text-align: center;
  font-size: var(--h2-size);
  margin-bottom: 36px;
}
.contact form p {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 16px 24px;
  font-size: 16px;
}
.contact__submit {
  padding: 16px 33px;
}
.contact__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
}

.opened {
  display: block;
}
.opened .contact__content {
  transform: translateY(0);
}

.contacts {
  max-width: 240px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.contacts__list-item {
  font-size: 16px;
  padding-left: 39px;
  position: relative;
}
.contacts__list-item a {
  transition: color 0.2s ease;
}
.contacts__list-item a:hover {
  color: var(--accent);
}
.contacts #call::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../img/call.svg);
  left: 0;
  top: 0;
}
.contacts #mail::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background-image: url(../img/mail.svg);
  left: 0;
  top: 0;
}
.contacts #address::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 20px;
  background-image: url(../img/location.svg);
  left: 3px;
  top: 0;
}

.feedback {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}
.feedback__inner {
  padding: 64px 0 56px;
}
.feedback__title {
  text-align: center;
}
.feedback__title:not(:last-child) {
  margin-bottom: 70px;
}
.feedback__btn {
  padding: 17px 55px;
}
.feedback__textarea {
  font-size: 16px;
  border-radius: 30px;
  padding: 24px;
  resize: none;
  max-height: 125px;
  width: 100%;
}
.feedback__input {
  width: 100%;
  font-size: 16px;
  padding: 16px 24px;
  background: var(--secondary);
  border-radius: 30px;
}
.feedback__form {
  gap: 30px;
  display: flex;
}
.feedback__col {
  row-gap: 20px;
}
.feedback__col:first-child {
  width: 40%;
}
.feedback__col:last-child {
  width: 60%;
}
.feedback__col > p {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.feedback__col > p > span {
  width: 100%;
}

.footer {
  background: var(--bg);
  padding-top: 56px;
  z-index: 15;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer__title:not(:last-child) {
  margin-bottom: 20px;
  font-size: var(--h5-size);
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.footer__nav-list li {
  font-size: 16px;
  padding-left: 15px;
  position: relative;
  transition: color 0.2s ease;
}
.footer__nav-list li:hover {
  color: var(--accent);
}
.footer__nav-list li:hover::before {
  background-color: var(--accent);
}
.footer__nav-list li::before {
  content: "";
  transition: background-color 0.2s ease;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__info-btn {
  padding: 16px 33px;
}

.copyright {
  padding: 10px 15px;
  background: var(--accent);
  text-align: center;
  margin-top: 72px;
  font-size: 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.4s ease;
}

.header--light .menu__list li {
  color: var(--primary);
}
.header--light .active li {
  color: var(--secondary) !important;
}

.header--light.header--fixed {
  background: var(--secondary);
}
.header--fixed {
  background: var(--dark);
  -webkit-box-shadow: 0px 10px 22px -4px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 10px 22px -4px rgba(0, 0, 0, 0.49);
  box-shadow: 0px 10px 22px -4px rgba(0, 0, 0, 0.49);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  max-width: 220px;
}

.header__actions {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.header__btn {
  padding: 16px 33px;
  max-width: 227px;
}

.hero {
  margin-top: calc(-1 * var(--header-height));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 810px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
.hero__title:not(:last-child) {
  margin-bottom: 12px;
}
.hero__descr {
  display: flex;
  flex-direction: column;
  row-gap: 12px;

  font-size: var(--h5-size);
  font-weight: 500;
}
.hero__descr:not(:last-child) {
  margin-bottom: 36px;
}
.hero__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 32px;
}
.hero__link,
.hero__btn {
  padding: 16px;
  min-width: 192px;
  text-align: center;
}
.hero__swiper-arrows {
  display: flex;
  column-gap: 28px;
  justify-content: flex-end;
  position: relative;
  bottom: 100px;
  z-index: 2;
}

.hero__swiper-left svg {
  position: relative;
  left: -1px;
}
.hero__swiper-arrow {
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .swiper .swiper-pagination {
  position: relative;
  bottom: 50px;
}
.hero .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}
.hero .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.container-btns {
  height: 0;
}
.rate .container-btns {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: flex-end;
  height: unset;
}
.rate .swiper-pagination {
  position: unset;
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.menu__list li a {
  transition: color 0.2s ease;
}
.menu__list li a:hover {
  color: var(--accent);
}
.menu-item-has-children {
  position: relative;
}
.header--light .sub-menu {
  background: var(--bg);
}
.header--light .sub-menu li {
  color: var(--secondary);
}
.sub-menu {
  flex-direction: column;
  gap: 15px;
  transform: scale(0);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  padding: 20px;
  min-width: 234px;
  background: var(--secondary);
  border-radius: 0 30px 30px 30px;
}
.sub-menu li {
  color: var(--primary);
}

.menu-item-has-children {
  padding-right: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-item-has-children::after {
  content: "";
  display: block;
  background-image: url(../img/submenu-light.svg) !important;
  width: 12px;
  height: 8px;
  transition: all 0.3s ease;
}
.header--light .menu-item-has-children::after {
  background-image: url(../img/submenu.svg);
}
.menu-item-has-children:hover .sub-menu {
  transform: scale(1);
}
.menu-item-has-children:hover::after {
  transform: rotate(180deg);
}

.service {
  padding: 56px 0;
  background: var(--bg);
}
.service__inner {
  display: flex;
  justify-content: space-between;
  gap: 11px;
}
.service__content {
  max-width: 620px;
  flex-shrink: 3;
}
.service__imgs {
  display: flex;
  gap: 11px;
  max-height: 684px;
}
.service__img img {
  border-radius: 30px;
  object-fit: cover;
  height: 100%;
}
.service__img--mid {
  max-height: 436px;
}
.service__imgs-row {
  grid-template-rows: 237px auto;
  display: grid;
  row-gap: 11px;
  max-width: 320px;
}
.service__title {
  background: var(--accent);
  border-radius: 30px;
  padding: 25px 35px;
}
.service__list {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  margin-top: 11px;
}
.service__list-item {
  font-weight: 700;
  font-size: var(--h4-size);
  padding: 20px 20px 20px 72px;
  border-radius: 30px;
  border: 1px solid var(--secondary);
  position: relative;
}
.service__list-item::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.service__list-item:nth-child(1):before {
  background-image: url(../img/service/01.svg);
}
.service__list-item:nth-child(2):before {
  background-image: url(../img/service/05.svg);
}
.service__list-item:nth-child(3):before {
  background-image: url(../img/service/02.svg);
}
.service__list-item:nth-child(4):before {
  background-image: url(../img/service/03.svg);
}
.service__list-item:nth-child(5):before {
  background-image: url(../img/service/04.svg);
  top: 20px;
  transform: translateY(0);
}
.service__sub-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.service__sub-item {
  font-size: var(--h5-size);
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
.service__sub-item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
}

.network__inner {
  padding: 80px 0;
  display: flex;
  gap: 30px 15px;
  justify-content: space-between;
  align-items: center;
}

.network__content {
  max-width: 450px;
  gap: 15px;
}

.network__title:not(:last-child) {
  margin-bottom: 36px;
}
.network__address {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background: var(--accent);
  border-radius: 30px;
  padding: 24px 37px 24px 24px;
}
.network__address:not(:last-child) {
  margin-bottom: 11px;
}

.network__address-item {
  position: relative;
  padding-left: 34px;
  font-size: var(--h5-size);
}
.network__address-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 20px;
  background-image: url(../img/address.svg);
}
.network__content-img {
  flex-shrink: 0;
}
.network__content-img img {
  border-radius: 30px;
}

.payment {
  overflow: hidden;
}
.payment__inner {
  padding: 64px 0 80px;
  display: flex;
  gap: 30px;
}

.payment__content {
  max-width: 420px;
}

.payment__title:not(:last-child) {
  margin-bottom: 30px;
}
.payment__steps {
  display: flex;
  flex-direction: column;
  counter-reset: steps-numbers;
  row-gap: 50px;
  padding-left: 2px;
  position: relative;
}
.payment__steps::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  background-image: url(../img/border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 196px;
  position: absolute;
}
.payment__text {
  margin-top: 10px;
  color: var(--accent);
  font-size: 12px;
}

.payment__steps-item {
  position: relative;
  padding-left: 75px;
  font-size: var(--h5-size);
  font-weight: 500;
}
.payment__steps-item::after {
  counter-increment: steps-numbers;
  content: counter(steps-numbers);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 27px;
  width: 34px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--accent);
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment__grid {
  display: flex;
  gap: 11px;
}
.payment__col {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
.payment__info {
  padding: 25px;
  border-radius: 30px;
  background: var(--accent);
}
.payment__info-inner {
  max-width: 360px;
}
.payment__info-title {
  font-size: var(--h4-size);
  font-weight: 700;
}
.payment__info-text {
  font-size: 16px;
}
.payment__img img {
  border-radius: 30px;
}

.payment__btns {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.payment__btn {
  padding: 16px 66px;
}

.rate {
  overflow: hidden;
  background: var(--bg);
}
.rate__inner {
  padding: 56px 0 80px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.rate__left {
  max-width: 307px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.rate__title {
  background: var(--accent);
  padding: 18px 20px;
  border-radius: 30px;
}
.rate__title:not(:last-child) {
  margin-bottom: 11px;
}
.rate__left-img {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
.rate__left-img img {
  height: 100%;
  object-fit: cover;
}

.rate__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.rate__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.rate__choose {
  font-size: var(--h4-size);
  font-weight: 700;
}
.rate__categories {
  display: flex;
  border-radius: 50px;
  align-items: center;
  overflow: hidden;
}
.rate__category {
  background: var(--secondary);
  min-width: 194px;
  padding: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.rate__category--active {
  background: var(--accent);
  color: var(--secondary);
}
.rate__items {
  height: 100%;
  display: none;
  margin-top: 36px;
}
.rate__items--active {
  display: block;
}
.rate__swiper {
  max-width: 984px;
}

.rate__swiper-arrows {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.rate__swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
}
.rate__swiper-btn.swiper-button-disabled {
  background: var(--dark);
}

.rate-swiper-wrapper {
  padding-bottom: 20px;
}

.social-list {
  margin-top: 25px;
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.social-list__item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-list__link {
  height: 19px;
}
.social-list__link:hover svg {
  transition: all 0.5s ease-in-out;
}
.social-list__link:hover svg path {
  transition: all 0.5s ease;
}
.social-list__link:hover svg {
  transform: scale(1.2);
}
.social-list__link:hover svg path {
  fill: var(--accent);
}

.tariff {
  min-height: 530px;
  padding: 30px 10px 10px;
  background: var(--secondary);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariff__top {
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.tariff__top:not(:last-child) {
  margin-bottom: 20px;
}
.tariff__name {
  font-size: 16px;
  color: var(--accent);
}
.tariff__title {
  font-size: var(--h4-size);
}
.tariff__title:not(:last-child) {
  margin-bottom: 5px;
}
.tariff__features {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.tariff__features:not(:last-child) {
  margin-bottom: 20px;
}
.tariff__features-item {
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 11px;
}
.tariff__features-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.tariff__price {
  margin-top: auto;
  text-align: center;
  font-size: var(--h4-size);
}
.tariff__price:not(:last-child) {
  margin-bottom: 20px;
}
.tariff__btn {
  padding: 16px 0;
  width: 100%;
  max-width: 300px;
}

.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 18px 10px;
}
.works__item {
  height: 296px;
}
.works__item-thumb {
  object-fit: cover;
  display: block;
  height: 100%;
  border-radius: 30px;
}
.works__item-link {
  display: block;
  height: 100%;
}
.post-thumbnail img {
  max-height: 296px;
  object-fit: cover;
  border-radius: 30px;
}

.single__grid {
  padding: 40px 0 120px;

  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

.single__thumb {
  margin-bottom: 24px;
  border-radius: 30px;
}
.single__title {
  font-size: 40px;
  margin-bottom: 5px;
}
.single__title.title {
  margin-bottom: 36px;
}
.single__date {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.widget-area {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.widget-title {
  font-size: var(--h4-size);
  background: var(--accent);
  color: var(--secondary);
  padding: 17px 30px;
  border-radius: 30px;
}
.widget_categories ul {
  margin-top: 11px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.cat-item {
  padding: 15px 25px;
  font-size: var(--h5-size);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.cat-item:first-child {
  padding-top: 25px;
}
.cat-item:last-child {
  padding-bottom: 25px;
  border-bottom: none;
}
.wp-calendar-table {
  background: rgba(0, 0, 0, 0.15);
  width: 100%;
  padding: 20px;

  text-align: center;
  border-radius: 30px;
}
.wp-calendar-table caption {
  text-align: left;
  font-size: var(--h5-size);
  font-weight: 500;
  margin: 18px 0 10px;
}
.wp-calendar-table td {
  transition: all 0.2s ease;
}
.wp-calendar-table td:not(.pad):hover {
  background: var(--accent);
  color: var(--secondary);
}
.wp-calendar-table thead {
  display: none;
}

.pageSimple {
  position: relative;
  background: #222 url(../img/bg.webp) no-repeat center;
  background-size: cover;
  color: #ffffff;
  min-height: 100vh;
  padding: 30px 0;
  z-index: 1;
}
.pageSimple-logo {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.pageSimple-content {
  position: relative;
  background: rgba(2, 2, 2, 0.55);
  padding: 50px;
}
.pageSimple-content p,
.pageSimple-content ul,
.pageSimple-content ol {
  margin-bottom: 20px;
}
.pageSimple-content ul {
  list-style: circle;
  padding-left: 40px;
}
.pageSimple-content ol {
  list-style: decimal;
  padding-left: 40px;
}
.pageSimple-content p:last-child,
.pageSimple-content ul:last-child,
.pageSimple-content ol:last-child {
  margin-bottom: 0px;
}
.pageSimple-content li {
  margin-bottom: 10px;
}
.pageSimple-content li:last-child {
  margin-bottom: 0;
}
.pageSimple-content a {
  text-decoration: underline;
}

@media (max-width: 1439.99px) {
  .rate__inner {
    flex-direction: column;
  }

  .rate__left {
    max-width: 600px;
  }

  .rate__left-img {
    display: none;
  }

  .rate__swiper {
    max-width: 100%;
  }
}

@media (max-width: 1249.99px) {
  .payment__inner {
    justify-content: space-between;
    align-items: center;
  }

  .payment__content {
    max-width: unset;
  }

  .payment__steps::before {
    visibility: hidden;
  }

  .payment__img--big {
    display: none;
  }
}

@media (max-width: 1229.99px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
  }
  .header__btn {
    display: none;
  }

  .service__img--big {
    display: none;
  }
  .service__content {
    max-width: unset;
  }

  .works {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1099.99px) {
  .menu__list {
    column-gap: 10px;
  }
}

@media (max-width: 991.99px) {
  .pageSimple-content {
    padding: 30px;
  }

  .burger {
    display: block;
  }

  .menu {
    transform: translateY(-200%);
    transition: transform 0.3s linear;
    background: var(--bg);
    position: absolute;
    width: 100%;
    border-radius: 0 0 15px 15px;
    left: 0;
    top: 0;
    overflow-y: hidden;
    padding: 30px 0;
  }
  .menu__list {
    padding-top: 50px;
    flex-direction: column;
    row-gap: 30px;
  }
  .menu.active {
    transform: translateY(0);
  }

  .about__inner {
    flex-direction: column-reverse;
    align-items: center;
  }

  .about__content {
    max-width: 100%;
  }
}

@media (max-width: 767.99px) {
  :root {
    --header-height: 80px;

    --font-size: 14px;
    --h1-size: 32px;
    --h2-size: 28px;
    --h3-size: 24px;
    --h4-size: 20px;
    --h5-size: 16px;
  }

  .hero__swiper-arrows {
    display: none;
  }

  .network__inner {
    flex-direction: column;
  }
  .service__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .service__img--big {
    display: block;
  }

  .network__content {
    max-width: unset;
  }
  .network__content-wrapper {
    display: flex;
    gap: 20px 10px;
  }

  .network__address:not(:last-child) {
    margin-bottom: unset;
  }

  .network__content-img {
    max-width: 284px;
  }

  .payment__inner {
    flex-direction: column-reverse;
  }
  .payment__btns {
    justify-content: center;
  }

  .feedback__form {
    flex-direction: column;
  }
  .feedback__col {
    width: 100% !important;
  }

  .footer__inner {
    justify-content: center;
  }

  .footer__info .footer__title {
    text-align: center;
  }

  .single__grid {
    grid-template-columns: 1fr;
  }
  .rate__categories {
    flex-wrap: wrap;
  }
  .rate__category {
    width: 100%;
  }
  .widget-area {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 599.99px) {
  .about__imgs,
  .about__imgs-row {
    gap: 5px;
  }

  .service__img--big {
    display: none;
  }

  .network__content-img {
    display: none;
  }

  .works {
    grid-template-columns: 1fr;
  }

  .social-list {
    justify-content: center;
  }
}

@media (max-width: 574.99px) {
  .pageSimple-content {
    padding: 20px;
  }
}

@media (max-width: 549.99px) {
  .rate__top {
    flex-direction: column;
    align-items: unset;
  }

  .rate__category {
    width: 50%;
  }

  .tariff {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 479.99px) {
  :root {
    --h1-size: 24px;
  }
}

@media (max-width: 449.99px) {
  .payment__steps::before {
    visibility: visible;
  }
}
@media (max-width: 399.99px) {
  .payment__steps::before {
    height: 220px;
    top: 48%;
  }
}
