html, body {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #000;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
}

.burger {
  display: none;
}

.main section {
  margin-top: 90px;
}

.main section:first-child {
  margin-top: 0;
}

.link {
  transition: all .3s;
}

.link:hover {
  color: #FA0402;
}

.button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #FFF;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 20px;
  background: -webkit-linear-gradient(90deg, #B90000 14.11%, #FA0402 41.44%, #B90000 73.28%, #FA0402 94.84%);
  background: -moz-linear-gradient(90deg, #B90000 14.11%, #FA0402 41.44%, #B90000 73.28%, #FA0402 94.84%);
  background: -o-linear-gradient(90deg, #B90000 14.11%, #FA0402 41.44%, #B90000 73.28%, #FA0402 94.84%);
  background: linear-gradient(90deg, #B90000 14.11%, #FA0402 41.44%, #B90000 73.28%, #FA0402 94.84%);
  padding: 16px 30px;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  transition: all .3s;
  z-index: 2;
}

.button:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(90deg, #FA0402 35.56%, #FA0402 94.84%);
  background: -moz-linear-gradient(90deg, #FA0402 35.56%, #FA0402 94.84%);
  background: -o-linear-gradient(90deg, #FA0402 35.56%, #FA0402 94.84%);
  background: linear-gradient(90deg, #FA0402 35.56%, #FA0402 94.84%);
  opacity: 0;
  transition: all .3s;
  z-index: -1;
}

.button:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(90deg, #B90000 14.11%, #B90000 73.28%);
  background: -moz-linear-gradient(90deg, #B90000 14.11%, #B90000 73.28%);
  background: -o-linear-gradient(90deg, #B90000 14.11%, #B90000 73.28%);
  background: linear-gradient(90deg, #B90000 14.11%, #B90000 73.28%);
  opacity: 0;
  transition: all .3s;
  z-index: -1;
}

.button:hover::before {
  opacity: 1;
}

.button:active::after {
  opacity: 1;
}

.button-handing {
  display: inline-flex;
  padding: 12px 16px;
  justify-content: flex-end;
  align-items: center;
  border-radius: 20px;
  border: 2px solid #FA0402;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  transition: all .3s;
}

.button-handing:hover {
  color: #FFF;
  background: #FA0402;
}

.button-handing:active {
  color: #FFF;
  background: #E70000;
}

.button-handing--big {
  padding: 14px 35px;
  font-size: 25px;
}

.input {
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: transparent;
  padding: 16px 0px 16px 22px;
  border-radius: 10px;
  border: 1px solid #7E7E7E;
  transition: all .3s;
}

.input--small {
  font-size: 12px;
}

.input::placeholder {
  color: #BCBCBC;
}

.input:focus {
  border: 1px solid #000;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
}

.logo {
  display: flex;
  height: 78px;
  justify-content: center;
}

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

.logo-text {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 220px;
}

/* ===================================MODAL-FORM=================================== */
/* ===================================MODAL-FORM=================================== */
.body--modal-opened {
  overflow: hidden;
}

.modal-form {
  border: none;
  padding: 0;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.modal-form::backdrop {
  background: #0000008c;
}

.modal-form__inner {
  position: relative;
  max-width: 510px;
  padding: 64px 40px 80px;
}

.modal-form__close-btn {
  position: absolute;
  top: 18px;
  right: 26px;
}

.modal-form__title {
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
}

.modal-form__form {
  max-width: 324px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin: 30px auto 0px;
}
.wpcf7 .modal-form__form ~ .wpcf7-response-output {
  max-width: 324px;
  margin-left: auto;
  margin-right: auto;
}

.modal-form__form-item {
  width: 100%;
}

.modal-form__form-btn {
  width: 100%;
}


.modal-form__form-btn-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.modal-form__form-btn-wrapper .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 10;
  display: block;
  box-shadow: 0px 0px 0px 1000px #535c64;
}


/* ===================================HEADER=================================== */
/* ===================================HEADER=================================== */
.header {}

.header__top {}

.header__container {
  max-width: 1410px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  column-gap: 15px;
}

.header__logo-wrapper {
/*   flex-shrink: 0; */
}

.header__logo {}

.header__logo-text {}

.header__content {}

.header__socials {
  display: flex;
  column-gap: 16px;
}

.header__socials-item {
  transition: all .3s;
}

.header__socials-item:hover {
  filter: brightness(.8);
}

.header__socials-link {}

.header__contact-wrapper {
  display: flex;
  column-gap: 9px;
  align-items: center;
}

.header__contact-icon {}

.header__contact-phone-wrapper {
  display: flex;
  flex-direction: column;
}

.header__contact-phone {
  white-space: nowrap;
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header__popup-btn {}

.header__bottom {
  background: #EBEBEB;
  margin-bottom: 19px;
}

.header__nav {
  padding: 18px 0;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 63px;
  row-gap: 18px;
  justify-content: center;
}

.header__nav-item {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all .3s;
}

.header__nav-item:hover {
  color: #FA0402;
}

.header__nav-item--active {
  color: #FA0402;
}

.header__nav-link {}


.header__bar {
  padding-top: 113px;
  padding-bottom: 36px;
  background: url(../img/header-bar-bg.svg) -364px -407px / auto no-repeat, #F3F3F3;
}

.header__bar--single {
  padding-top: 92px;
  padding-bottom: 22px;
}

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

.breadcrumbs__item {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: flex;
  column-gap: 4px;
  letter-spacing: normal;
}

.breadcrumbs__item--last {}

.breadcrumbs__link {
  font-weight: 400;
}

.breadcrumbs__item:not(.breadcrumbs__item--last)::after {
  content: "\\";
  /* position: absolute; */
  display: block;
  height: 100%;
  font-weight: 300;
}

.header__title {
  margin-top: 30px;
  color: #000;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}


/* ==================================HOME-MAIN================================== */
/* ==================================HOME-MAIN================================== */
.home-main {
  background: #F3F3F3;
  /* background: url(../img/home-main-bg.png) 50% 7% / 165% no-repeat; */
  position: relative;
}

.home-main::before {
  content: url(../img/home-main-bg.png);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  height: 200%;
  transform: translate(-48.7%);
  z-index: 0;
  /* background: url(../img/home-main-bg.png) 50% 7% / 165% no-repeat; */
}

.home-main__inner {
  max-width: 66%;
  padding: 70px 0 85px 0;
  position: relative;
  z-index: 100;
}

.home-main__title {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 60px;
}

.home-main__info {
  display: flex;
  column-gap: 45px;
  max-width: 90%;
  margin-bottom: 50px;
}

.home-main__info-item {
  font-family: Roboto;
  font-style: normal;
}

.home-main__info-title {
  color: #B90000;
  font-size: 70px;
  font-weight: 800;
  line-height: normal;
}

.home-main__info-title span {
  color: #8C8C8C;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.home-main__info-desc {
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
}

.home-main__form {}

.home-main__form-inner {
  max-width: 90%;
  display: flex;
  margin-bottom: 20px;
  gap: 32px;
}
.home-main__form .home-main__form-inner ~ .wpcf7-response-output {
  max-width: 90%;
  margin-left: 0;
  margin-right: 0;
}

.home-main__form-item-wrapper {
  width: 100%;
}

.home-main__form-item {
  width: 100%;
}

.home-main__form-btn {}

.home-main__form-btn-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
}
.home-main__form-btn-wrapper .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 10;
  display: block;
  box-shadow: 0px 0px 0px 1000px #535c64;
}

.home-main__bg-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-main__hidden-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.home-main__bg-circle-white {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  transform: translate(417px, -70px);
}

.home-main__bg-shape-1 {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  transform: translate(384px, -112px);
}

.home-main__bg-shape-2 {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  transform: translate(441px, -275px);
}

.home-main__bg-shape-3 {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  transform: translate(512px, -315px);
}

.home-main__bg-responsive-shape {
  display: none;
}

.home-main__bg-circle-image {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  height: 484px;
  border-radius: 50%;
  transform: translate(138px);
  overflow: hidden;
}

.home-main__bg-circle-image img {
  height: 100%;
}

/* ===================================INFO=================================== */
/* ===================================INFO=================================== */
.info {
  position: relative;
  margin-top: 100px;
}

.info__inner {
  z-index: 100;
}

.info__inner h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 50px;
}

.info__inner--small-title h2 {
  font-size: 35px;
}

.info__inner p {
  margin-bottom: 1.1em;
}

/* ===================================RATES=================================== */
/* ===================================RATES=================================== */
.rates {
  position: relative;
}

.rates__inner {
  z-index: 100;
}

.rates__title {
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.rates__desc {
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 50px;
}

.rates__sub-desc {
  margin-top: 14px;
  font-family: Roboto;
  margin-bottom: 50px;
}


.rates__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 28px;
  row-gap: 28px;
  align-items: start;
}

.rates__list-item {
  position: relative;
  padding: 11px 32px 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.rates__list-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 94px 300px 0 300px;
  border-color: #929292 transparent transparent transparent;
  z-index: -1;
}

.rates__list-title-wrapper {
  display: flex;
  align-items: center;
  font-size: 20px;
  height: 2.4em;
}

.rates__list-title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.rates__list-features {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.rates__list-features-item {
  list-style: disc;
}

.rates__list-btn {
  margin-top: 80px;
  padding: 16px 20px;
  font-size: 20px;
}

.rates__list-features+.rates__list-btn {
  margin-top: 50px;
}

/* ===================================REVIEWS=================================== */
/* ===================================REVIEWS=================================== */
#reviews-page {
  margin-top: 75px;
}

.reviews {}

.reviews__inner {}

.reviews__title {
  font-family: Roboto;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.reviews-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.reviews-list__item {
  display: flex;
  column-gap: 38px;
  row-gap: 42px;
  font-family: Roboto;
  font-style: normal;
  line-height: normal;
  border-radius: 10px;
  background: #F5F5F5;
  padding: 42px 32px;
}

.reviews-list__photo-wrapper {
  flex-shrink: 0;
  height: 150px;
  width: 150px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #B90000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.reviews-list__photo {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.reviews-list__content-wrapper {}

.reviews-list__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reviews-list__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 25px;
  row-gap: 8px;
}

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

.reviews-list__date {
  color: #929292;
  font-size: 14px;
  font-weight: 500;
}

.reviews-list__rating {
  padding-right: 26px;
}

.reviews-list__rating-stars {}

.reviews-list__content {
  font-size: 16px;
  font-weight: 300;
}

.reviews__read-more-wrapper {
  margin-top: 50px;
  text-align: center;
}

.reviews__read-more {}

/* ==================================CUSTOMERS================================== */
/* ==================================CUSTOMERS================================== */
.customers {}

.customers__inner {}

.customers__title {
  font-family: Roboto;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.customers__slider {
  margin-top: 50px;
}

.customers__slider .slick-list {
  margin: 0 -15px;
}

.customers__slide {
  padding: 0 15px;
}

.customers__grid {
  margin-top: 50px;
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(3, 1fr);
}

.customers__grid-item {}

.customers-item {}

.customers-item__preview {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.customers-item__link {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.customers-item__link:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/video-icon.svg) center center no-repeat;
  z-index: 5;
}

.customers-item__image {
  position: absolute;
  width: 100.5%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.customers-item__title {
  margin-top: 28px;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
}

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

.customers__slider-controls {
  margin-top: 50px;
}

.customers__slider-controls .slick-dots {
  display: flex;
  column-gap: 18px;
}

.customers__slider-controls .slick-active button {
  background: #919191;
}

.customers__slider-controls button {
  display: block;
  border: 0;
  font-size: 0;
  line-height: 0;
  height: 24px;
  width: 24px;
  background: transparent;
  border: 1px solid #9A9A9A;
  border-radius: 50%;
  transition: all .5s;
}

/* ==================================CONTACT================================== */
/* ==================================CONTACT================================== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: url(../img/form-bg.png);
  display: block;
  position: absolute;
  top: -20%;
  left: 50%;
  height: 200%;
  transform: translate(-50%);
  z-index: -1;
}

.contact__inner {
  z-index: 100;
  padding-top: 85px;
  padding-bottom: 50px;
}

.contact__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}

.contact__form .wpcf7-form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.contact__form .wpcf7-response-output {
  flex-basis: 100%;
}
.contact__form-item-wrapper {
  width: 50%;
}
.contact__form-item-wrapper .wpcf7-form-control-wrap {
  display: block;
}

.contact__form-item {
  width: 100%;
}

.contact__form-btn .wpcf7-form-control-wrap {
  display: block;
}
.contact__form-btn-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.contact__form-btn-wrapper .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 10;
  display: block;
  box-shadow: 0px 0px 0px 1000px #535c64;
}
.contact__form-btn {}


.contact__background {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #F3F3F3;
}

.contact__background::before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  top: -85px;
  border-bottom: 85px solid #F3F3F3;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
}

/* ==================================FEATURE================================== */
/* ==================================FEATURE================================== */
.feature {}

.feature__inner {}

.feature__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-list__item {
  padding: 30px 10px;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature-list__icon-wrapper {
  display: flex;
  height: 108.75px;
  align-items: end;
  justify-content: center;
  margin-bottom: 30px;
}

.feature-list__icon {}

.feature-list__text {
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* ==================================ARTICLES================================== */
/* ==================================ARTICLES================================== */
#articles-page {
  margin-top: 50px;
}

.articles {}

.articles__inner {}

.articles__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 30px;
}

.articles__item {}

.articles__item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 42px 55px 36px 55px;
  border-radius: 10px;
  border: 1px solid #BCBCBC;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.articles__item-inner--link-empty .articles__item-link-wrapper {
  height: 1em;
}

.articles__image-wrapper {
  margin: 0 auto;
  height: 123px;
  width: 222px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.articles__image {
  width: 100%;
  height: 123px;
  object-fit: cover;
}

.articles__item-content {
  margin-bottom: auto;
}

.articles__item-title-link {
  transition: all .3s;
}

.articles__item-title-link:hover {
  color: #FA0402;
}

.articles__item-title {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}

.articles__item-text {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
}

.articles__item-link-wrapper {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-top: 12px;
  margin-right: 12px;
  text-align: end;
  margin-top: 12px;
}

.articles__item-link {
  color: #B90000;
}

.articles__btn-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* ---- FITLER ----- */
.articles-filter {
  margin-bottom: 90px;
}

.articles-filter label {
  cursor: pointer;
}

.articles-filter__block:not(:first-child) {
  margin-top: 63px;
}

.articles-filter__title {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}

.articles-filter__slider {}

.articles-filter__slider .slick-list {
  overflow: visible;
  margin: 0 -9px;
}

.articles-filter__slide {
  padding: 0 9px;
}

.articles-filter__slide input {
  display: none;
}

#category-filter .articles-filter__slide label {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  transition: all .3s;
}

#category-filter .articles-filter__slide input:checked+label {
  color: #FA0402;
}

.articles-filter__list {
  display: flex;
  column-gap: 25px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.articles-filter__item label {
  display: inline-block;
  transition: all .3s;
}

#post_tag-filter .articles-filter__item input {
  display: none;
}

#post_tag-filter .articles-filter__item label {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid #BCBCBC;
}

#post_tag-filter .articles-filter__item label:not([for="post_tag_all"])::before {
  content: '#';
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

#post_tag-filter .articles-filter__item input:checked+label {
  color: #FFF;
  background: #B90000;
}

/* ---- PAGINATION ----- */

.articles__pagination {
  margin-top: 50px;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.articles__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: end;
}

.articles__pagination .page-numbers:not(:last-child) {
  margin-right: 14px;
}

.articles__pagination .page-numbers:not(.dots) {
  padding: 8px 14px;
  border: 1px solid #000;
  transition: all .3s;
}

.articles__pagination .page-numbers:not(.dots):hover, .articles__pagination .page-numbers.current {
  background: #D0D0D0;
}

/* ==================================POST-CONTENT================================== */
/* ==================================POST-CONTENT================================== */


.main .post-content:first-child {
  margin-top: 50px;
}

.post-content__inner {
  display: flex;
  column-gap: 30px;
  row-gap: 50px;
}

.post-content__sidebar {
  max-width: 23%;
  flex-shrink: 0;
}

.post-content__sidebar-menu {}

.ez-toc-v2_0_55 {}

.counter-flat {}

.ez-toc-counter {}

.post-content__sidebar .ez-toc-counter ul {
  counter-reset: item;
}

.post-content__sidebar ul li:not(:first-child) {
  margin-top: 20px;
}

.post-content__sidebar .ez-toc-counter nav ul li a::before {
  content: counters(item, ".", decimal) ". ";
  display: inline-block;
  counter-increment: item;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 0.2em;
  float: left;
  color: #F00;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.post-content__sidebar a {
  box-shadow: none;
  text-decoration: none;
  text-shadow: none;
  display: inline-flex;
  align-items: stretch;
  flex-wrap: nowrap;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  transition: all .3s;
}

.post-content__sidebar a:hover {
  color: #F00;
}

.ez-toc-grey {}

.ez-toc-container-direction {}

.ez-toc-title-container {}

.post-content__sidebar .ez-toc-title {
  font-family: Roboto;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 18px;
}

.ez-toc-title-toggle {}

.ez-toc-list {}

.ez-toc-list-level-1 {}

.ez-toc-page-1 {}

.ez-toc-link {}


.post-content__main {
  font-family: Montserrat;
  overflow: hidden;
}

.post-content__main blockquote {
  margin-top: 20px;
  padding-left: 36px;
  border-left: 2px solid #000;
}

.post-content__main .wp-block-image {
  margin: 30px 0;
}

.post-content__main .wp-block-image img {
  height: auto;
  max-width: 100%;
}

.post-content__main .wp-block-post-title {
  font-family: Montserrat;
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}

.post-content__main .is-style-rounded.is-style-rounded.wp-block-image img, .post-content__main .is-style-rounded.is-style-rounded.wp-block-image .wp-block-image__crop-area, .post-content__main .is-style-rounded.is-style-rounded.wp-block-image .components-placeholder {
  border-radius: 20px;
}

.post-content__main h2.wp-block-heading {
  font-size: 37px;
  font-weight: 600;
  line-height: normal;
  margin-top: 90px;
  margin-bottom: 50px;
}
.post-content__main h3.wp-block-heading {
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  margin-top: 90px;
  margin-bottom: 50px;
}

.post-content__main p {
  margin-top: 20px;
}

.post-content__main ul, .post-content__main ol {
  list-style: none;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
}

.post-content__main ul li:not(:last-child), .post-content__main ol li:not(:last-child) {
  margin-bottom: 20px;
}

.post-content__main ul li, .post-content__main ol li {
  position: relative;
}

.post-content__main ul>li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translate(0, -50%);
  display: inline-block;
  height: 10px;
  width: 10px;
  background: #B90000;
  border-radius: 50%;
}

.post-content__main ol>li::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  width: 24px;
  content: counter(list-item) ".";
  counter-increment: list-item 0;
  color: #B90000;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

/* ==================================POST-AUTHOR================================== */
/* ==================================POST-AUTHOR================================== */

.post-author {
  background: url(../img/post-author-bg.svg) center -268px / auto no-repeat, #F3F3F3;
}

.post-author__inner {
  display: flex;
  max-width: 960px;
  column-gap: 40px;
  row-gap: 20px;
  padding: 40px 0;
  margin: 0 auto;
}

.post-author__photo-wrapper {
  flex-shrink: 0;
  height: 150px;
  width: 150px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #FFF;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 25%);
}

.post-author__photo {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.post-author__content {
  font-family: Roboto;
}

.post-author__name {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.post-author__about {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
}

/* ==================================RELATED-ARTICLES================================== */
/* ==================================RELATED-ARTICLES================================== */

.related-articles {}

.related-articles__inner {}

.related-articles__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.related-articles__title {
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
}

.related-articles__slider-arrows {
  height: 52px;
}

.related-articles__slider-arrow {
  border: 1px solid #000;
  display: inline-block;
  height: 52px;
  border-radius: 50%;
  transition: all .3s;
}

.related-articles__slider-arrow:hover {
  background: #FA0402;
  border-color: #FA0402;
}

.related-articles__slider-arrow svg path {
  transition: all .3s;
}

.related-articles__slider-arrow:hover svg path {
  stroke: white;
}

.related-articles__slider-arrow:not(:last-child) {
  margin-right: 24px;
}

.related-articles__slider-prev {}

.related-articles__slider-next {}

.related-articles__slider {}

.related-articles__slider .slick-track {
  display: flex;
}

.related-articles__slider .slick-list {
  margin: 0 -15px;
}

.related-articles__slide {
  padding: 0 15px 10px;
  height: inherit;
}

.related-articles__bottom-bar {
  display: none;
}

.related-articles__slider-bar {}

/* ================================OUR-CONTACTS================================ */
/* ================================OUR-CONTACTS================================ */
.our-contacts__inner {}

.our-contacts__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 90px;
}

.our-contacts__get-consultation {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.our-contacts__title {
  color: #616161;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 300;
  padding-bottom: 20px;
}

.our-contacts__get-consultation_sub-title {
  font-family: Roboto;
  font-size: 30px;
  font-weight: 500;
}

.our-contacts__our-office_sub-title {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 8px;
}

.our-contacts__our-office_second-sub-title {
  font-size: 22px;
  font-weight: 700;
}

.our-contacts__button {}

.our-contacts__our-office {}

.our-contacts__our-socials {}

.our-contacts__our-socials_img {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.our-contacts__map {
  border-radius: 20px;
  border: 1px solid #000;
  overflow: hidden;
  height: 558px;
}

.our-contacts__map iframe {
  width: 100%;
  height: 660px;
}

.our-contacts__our-socials-icons {
  display: flex;
  column-gap: 16px;
}

.our-contacts__our-socials-item {
  transition: all .3s;
}

.our-contacts__our-socials-item:hover {
  filter: brightness(.8);
}

.our-contacts__get-consultation-button {
  margin-top: 20px;
}

/* ===================================FOOTER=================================== */
/* ===================================FOOTER=================================== */
.footer {
  color: #FFF;
  background: #000;
  padding: 64px 0;
}

.footer__top {}

.footer__container {
  padding: 0 50px;
}

.footer__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px 15px;
}

.footer__top-col {}

.footer__logo-wrapper {}

.footer__logo {}

.footer__logo-text {}

.footer__top-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__top-item {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  transition: all .3s;
}

.footer__top-item:hover {
  color: #FA0402;
}

.footer__item-link {}

.footer__socials {
  display: flex;
  column-gap: 16px;
}

.footer__socials-item {}

.footer__socials-item {
  filter: brightness(0) invert(1);
  transition: all .3s;
}

.footer__socials-item:hover {
  filter: brightness(0) invert(.7);
}

.footer__socials-link {}

.footer__contact-wrapper {
  display: flex;
  column-gap: 9px;
  align-items: center;
}

.footer__contact-icon {
  filter: brightness(0) invert(1);
}

.footer__contact-phone-wrapper {
  display: flex;
  flex-direction: column;
}

.footer__contact-phone {
  white-space: nowrap;
  font-family: Roboto;
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}

.footer_bottom {
  margin-top: 44px;
}

.footer_copyright {
  color: #9E9E9E;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* ================================= MEDIA ================================== */
/* ================================= MEDIA ================================== */

/* =============================== 1300 ============================ */
@media (max-width: 1300px) {

  /* -------------------------- HOME-MAIN --------------------------- */
  .home-main__title {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .home-main__info-desc {
    font-size: 20px;
  }

  .home-main__info-title {
    font-size: 50px;
  }

  .home-main__bg-circle-white {
    position: absolute;
    z-index: 0;
    top: 11%;
    left: unset;
    right: 0px;
    transform: translate(50px, -70px) scale(.7);
  }

  .home-main__bg-shape-1 {
    position: absolute;
    z-index: 0;
    top: 11%;
    left: unset;
    right: 0px;
    transform: translate(100px, -112px) scale(.7);
  }

  .home-main__bg-shape-2 {
    position: absolute;
    z-index: 0;
    top: 11%;
    left: unset;
    right: 0px;
    transform: translate(130px, -275px) scale(.7);
  }

  .home-main__bg-shape-3 {
    position: absolute;
    z-index: 0;
    top: 11%;
    left: unset;
    right: 0px;
    transform: translate(180px, -296px) scale(.7);
  }

  .home-main__bg-circle-image {
    top: 11%;
    left: unset;
    right: 0;
    transform: translate(40px) scale(.7);
  }

  .home-main__inner {
    max-width: 100%;
    padding-right: 330px;
  }

  /* -------------------------- FOOTER --------------------------- */
  .footer__contact-phone {
    font-size: 20px;
  }
}

/* =============================== 1100 ============================ */
@media (max-width: 1100px) {
  .header__logo-text {
    display: none;
  }

  .header__contact-phone {
    font-size: 24px;
  }

  /* -------------------------- HOME-MAIN --------------------------- */
  .home-main__title {
    font-size: 30px;
  }

  .home-main__info-title {
    font-size: 40px;
  }

  .home-main__info-desc {
    font-size: 18px;
  }

  /* -------------------------- RATES --------------------------- */
  .rates__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .rates__list-item::before {
    top: 0;
  }

  /* -------------------------- CONTACT --------------------------- */
  .contact__title {
    font-size: 35px;
  }

  .contact__inner {
    padding-top: 85px;
  }

  .contact__background {
    top: 65px;
  }

  .contact__background::before {
    top: -65px;
    border-bottom: 65px solid #F3F3F3;
  }

  /* -------------------------- FEATURE --------------------------- */
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  /* ------------------------ POST-CONTENT ----------------------- */
  .post-content__inner {
    flex-direction: column;
  }

  .post-content__sidebar {
    max-width: none;
  }

  .post-content__main .wp-block-post-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .post-content__main h2.wp-block-heading {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .post-content__main h3.wp-block-heading,  {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  /* -------------------------- FOOTER --------------------------- */
  .footer__container {
    display: flex;
    justify-content: center;
  }

  .footer__top-inner {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__top-list {
    flex-direction: row;
  }

  .footer__top-col:first-child {
    flex-basis: 100%;
  }

  .footer__top-col:nth-child(4) {
    flex-basis: 100%;
  }

  .footer__contact-phone {
    font-size: 22px;
  }

  .footer_copyright {
    text-align: center;
  }
}


/* ====================================== 900 =========================================== */

@media (max-width: 900px) {
  .main section {
    margin-top: 70px;
  }

  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 150;
    background: #0000008c;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
  }

  .overlay--show {
    visibility: visible;
    opacity: 1;
  }

  .burger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: block;
    transition: all .3s;
    border-radius: 50%;
    z-index: 1050;
  }

  .burger span {
    display: block;
    height: 1px;
    width: 24.5px;
    background: #000;
    margin: 6px 0;
    transition: all .3s;
  }

  .burger::before,
  .burger::after {
    content: "";
    display: block;
    height: 1px;
    width: 24.5px;
    background: #000;
    transition: all .3s;
  }

  .burger--active span {
    transform: rotate(-45deg);
  }

  .burger--active::before {
    transform: translateY(7px) rotate(45deg);
    opacity: 0;
  }

  .burger--active::after {
    transform: translateY(-7px) rotate(45deg);
  }

  .body--menu-opened {
    overflow: hidden;
  }

  .header__bottom {
    margin-bottom: 0px;
  }

  .header__logo-wrapper {
    margin-right: auto;
  }

  .header__top-inner {
    justify-content: start;
    padding: 20px 56.5px 20px 0;
    column-gap: 32px;
    position: relative;
  }

  .header__socials {
    display: none;
  }

  .header__bottom {
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: all .3s;
  }

  .header__bottom--open {
    transform: translateX(0%);
  }

  .header__nav {
    height: 100%;
    padding: 0 60px;
  }

  .header__nav-list {
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .header__bar {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .header__title {
    margin-top: 20px;
    font-size: 40px;
  }


  /* -------------------------- HOME-MAIN --------------------------- */
  .home-main__inner {
    padding-right: 0;
  }

  .home-main__info {
    max-width: 100%;
    padding-right: 270px;
    column-gap: 25px;
  }

  .home-main__form-inner {
    max-width: 100%;
    padding-right: 300px;
  }
  .home-main__form .home-main__form-inner ~ .wpcf7-response-output {
    max-width: 100%;
    margin-right: 300px;
  }

  .home-main__bg-circle-white {
    position: absolute;
    z-index: 0;
    top: 20%;
    left: unset;
    right: 0px;
    transform: translate(55px, -70px) scale(.5);
  }

  .home-main__bg-shape-1 {
    position: absolute;
    z-index: 0;
    top: 20%;
    left: unset;
    right: 0px;
    transform: translate(100px, -112px) scale(.5);
  }

  .home-main__bg-shape-2 {
    display: none;
  }

  .home-main__bg-shape-3 {
    display: none;
  }

  .home-main__bg-circle-image {
    top: 20%;
    left: unset;
    right: 0;
    transform: translate(75px) scale(.5);
  }

  .home-main__info-title-responsive {
    display: none;
  }

  /* -------------------------- INFO --------------------------- */
  .info__inner h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  /* -------------------------- RATES --------------------------- */

  .rates__sub-desc {
    margin-top: 25px;
  }

  /* -------------------------- CUSTOMERS --------------------------- */

  .customers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* -------------------------- CONTACT --------------------------- */
  .contact__title {
    font-size: 30px;
  }

  .contact__form-btn-wrapper {
    margin-right: 0;
    margin-left: 0;
  }

  /* -------------------------- ARTICLES --------------------------- */
  .articles__grid {
    gap: 20px;
  }

  .articles__item-inner {
    padding: 36px 20px 36px 20px;
  }

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

  .articles__pagination {
    margin-top: 40px;
  }

  .articles__pagination .page-numbers:not(:last-child) {
    margin-right: 10px;
  }

  .articles__pagination .page-numbers:not(.dots) {
    padding: 6px 12px;
  }

  .articles-filter {
    margin-bottom: 70px;
  }

  .articles-filter__title {
    margin-bottom: 40px;
  }

  .articles-filter__list {
    column-gap: 20px;
    row-gap: 15px;
  }

  #post_tag-filter .articles-filter__item label:not([for="post_tag_all"])::before {
    font-size: 17px;
  }

  #post_tag-filter .articles-filter__item label {
    font-size: 17px;
  }

  /* ------------------------ POST-CONTENT ----------------------- */
  .post-content__inner {
    flex-direction: column;
  }

  .post-content__sidebar {
    max-width: none;
  }

  .post-content__main .wp-block-post-title {
    font-size: 35px;
  }

  .post-content__main h2.wp-block-heading {
    font-size: 32px;
  }

  .post-content__main h3.wp-block-heading {
    font-size: 30px;
  }

  /* ------------------------ POST-AUTHOR ----------------------- */

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

  .post-author__about {
    font-size: 18px;
  }


  /* ------------------------ RELATED-ARTICLES ----------------------- */

  .related-articles__title {
    font-size: 30px;
  }

  /* ------------------------ OUR-CONTACTS ----------------------- */

  .our-contacts__map {
    height: 450px;
  }

  .our-contacts__map iframe {
    height: 550px;
  }
}

/* ====================================== 850 =========================================== */
@media (max-width: 850px) {

  /* ------------------------ RELATED-ARTICLES ----------------------- */
  .related-articles__slider-arrows {
    display: none;
  }

  .related-articles__bottom-bar {
    display: block;
  }

  .related-articles__slider-bar {
    position: relative;
    margin-top: 30px;
  }

  .related-articles__slider-bar::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -1px);
    background: #C8C8C8;
    z-index: -1;
  }

  .related-articles__slider-bar .slick-dots {
    display: flex;
  }

  .related-articles__slider-bar .slick-dots>li {
    width: 100%;
  }

  .related-articles__slider-bar .slick-active button {
    background: #B90000;
    opacity: 1;
  }

  .related-articles__slider-bar button {
    display: block;
    border: 0;
    font-size: 0;
    line-height: 0;
    height: 4px;
    width: 100%;
    background: transparent;
    border-radius: 2px;
    transition: all .5s;
    opacity: 0;
  }

  /* ------------------------ OUR-CONTACTS ----------------------- */
  .our-contacts__contacts {
    row-gap: 10%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}


/* ====================================== 700 =========================================== */
@media (max-width: 700px) {
  .main section {
    margin-top: 50px;
  }

  .header__contact-phone {
    font-size: 16px;
  }

  .header__popup-btn {
    padding: 10px 16px;
  }

  .header__logo {
	height: 48px;
  }

  .header__bar {
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .breadcrumbs__item {
    font-size: 17px;
  }

  .header__title {
    margin-top: 25px;
    font-size: 35px;
  }


  /* -------------------------- HOME-MAIN --------------------------- */
  .home-main__title {
    font-size: 25px;
  }

  .home-main__info {
    padding-right: 0;
    justify-content: space-between;
  }

  .home-main__form-inner {
    padding-right: 0;
  }
  .home-main__form .home-main__form-inner ~ .wpcf7-response-output {
    margin-right: 0;
  }

  .home-main__background {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .home-main__inner {
    padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 140px;
  }

  .home-main__bg-group {
    display: none;
  }

  .home-main__bg-circle-image {
    position: static;
    height: 193px;
    margin-bottom: 110px;
    transform: none;
    display: inline-block;
    transform: translate(-30px);
  }

  .home-main__bg-responsive-shape {
    display: block;
  }

  .home-main__bg-responsive-shape-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-28.5px, -10px);
  }

  .home-main__bg-responsive-shape-2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-17.6px, -66px);
  }

  .home-main__bg-responsive-shape-3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(6px, -80px);
  }

  .home-main__info-title-responsive {
    display: inline;
  }

  .home-main__form-btn-wrapper {
    display: block;
  }
  .home-main__form-btn {
    width: 100%;
  }


  /* -------------------------- INFO --------------------------- */
  .info__inner h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .info__inner--small-title h2 {
    font-size: 30px;
  }

  /* -------------------------- RATES --------------------------- */

  .rates__sub-desc {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .rates__list-item::before {
    top: -10px;
  }

  .rates__title {
    font-size: 30px;
    text-align: center;
  }

  .rates__desc {
    text-align: center;
  }

  /* -------------------------- REVIEWS --------------------------- */
  .reviews__title {
    font-size: 30px;
    text-align: center;
  }

  .reviews-list {
    margin-top: 40px;
  }

  .reviews-list__item {
    flex-direction: column;
    align-items: center;
  }

  .reviews-list__top {
    flex-direction: column;
    text-align: center;
  }

  .reviews-list__group {
    flex-direction: column;
  }

  .reviews-list__rating {
    padding-right: 0;
  }

  /* -------------------------- CUSTOMERS --------------------------- */

  .customers__slider {
    margin-top: 40px;
  }

  .customers__grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .customers__title {
    font-size: 30px;
    text-align: center;
  }

  .customers__slider-controls {
    margin-top: 30px;
  }

  .customers__slider-controls button {
    height: 18px;
    width: 18px;
  }

  /* -------------------------- CONTACT --------------------------- */
  .contact__form .wpcf7-form {
    flex-direction: column;
  }

  .contact__form-item-wrapper {
    width: 100%;
  }
  .contact__form-btn {
    width: 100%;
  }

  .contact__title {
    font-size: 25px;
  }

  .contact__inner {
    padding-top: 65px;
  }

  .contact__background {
    top: 45px;
  }

  .contact__background::before {
    top: -45px;
    border-bottom: 45px solid #F3F3F3;
  }

  /* -------------------------- FEATURE --------------------------- */
  .feature-list {
    gap: 20px;
  }

  .feature__title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  /* -------------------------- ARTICLES --------------------------- */
  .articles__title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .articles__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: auto;
    gap: 30px;
  }

  .articles__item-inner {
    padding: 20px 40px 30px 40px;
  }

  .articles__btn-wrapper {
    margin-top: 30px;
  }


  .articles__pagination {
    margin-top: 30px;
  }

  .articles__pagination .page-numbers:not(.dots) {
    padding: 4px 10px;
  }

  .articles-filter {
    margin-bottom: 50px;
  }

  .articles-filter__title {
    margin-bottom: 30px;
  }

  .articles-filter__list {
    column-gap: 14px;
    row-gap: 10px;
  }

  #post_tag-filter .articles-filter__item label:not([for="post_tag_all"])::before {
    font-size: 16px;
  }

  #post_tag-filter .articles-filter__item label {
    font-size: 16px;
  }


  /* ------------------------ POST-CONTENT ----------------------- */
  .post-content__main .wp-block-post-title {
    font-size: 30px;
  }

  /* ------------------------ POST-AUTHOR ----------------------- */
  .post-author__inner {
    flex-direction: column;
    align-items: center;
    max-width: 550px;
  }

  .post-author__content {
    text-align: center;
  }

  .post-author__about {
    margin-top: 15px;
  }

  /* ------------------------ RELATED-ARTICLES ----------------------- */
  .related-articles__title {
    font-size: 25px;
  }
}

/* ====================================== 600 =========================================== */
@media (max-width: 600px) {
  .header__popup-btn {
    display: none;
  }

  /* -------------------------- CONTACT --------------------------- */
  .contact__inner {
    padding-top: 70px;
  }

  .contact__background {
    top: 36px;
  }

  .contact__background::before {
    top: -36px;
    border-bottom: 36px solid #F3F3F3;
  }

  /* ------------------------ OUR-CONTACTS ----------------------- */
  .our-contacts__contacts {
    row-gap: 32px;
    grid-template-columns: 270px;
    grid-template-rows: repeat(3, auto);
  }
}

/* ====================================== 500 =========================================== */
@media (max-width: 500px) {
  .header__popup-btn {
    display: none;
  }

  .header__bar {
    padding-top: 32px;
    padding-bottom: 12px;
  }

  .breadcrumbs__item {
    font-size: 16px;
  }

  .header__title {
    margin-top: 20px;
    font-size: 30px;
  }

  /* -------------------------- MODAL-FORM --------------------------- */
  .modal-form__inner {
    padding: 64px 28px;
  }

  .modal-form__title {
    font-size: 20px;
  }

  .modal-form__form-btn {
    font-size: 18px;
    padding: 18px 20px;
  }

  /* -------------------------- HOME-MAIN --------------------------- */
  .home-main__info-title-responsive {
    display: none;
  }

  .home-main__info {
    column-gap: 20px;
  }

  .home-main__form-inner {
    flex-direction: column;
  }

  /* -------------------------- RATES --------------------------- */
  .rates__list {
    gap: 18px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
  }

  .rates__list-item::before {
    top: 0;
  }

  /* -------------------------- FEATURE --------------------------- */
  .feature-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 40px;
  }

  /* -------------------------- ARTICLES --------------------------- */
  .articles__item-inner {
    padding: 18px 20px;
  }

  .articles__item-link-wrapper {
    display: none;
  }

  .articles__pagination .page-numbers:not(:last-child) {
    margin-right: 5px;
  }

  .articles__pagination .page-numbers:not(.dots) {
    padding: 3px 9px;
  }

  /* ------------------------ OUR-CONTACTS ----------------------- */
  .our-contacts__map {
    height: 300px;
  }

  .our-contacts__map iframe {
    height: 410px;
  }

  /* -------------------------- FOOTER --------------------------- */
  .footer__logo {
    height: 100px;
  }

  .footer__logo-wrapper {
    row-gap: 17px;
    flex-direction: column;
  }
}

/* ====================================== 500 =========================================== */
@media (max-width: 500px) {}

/* ====================================== 400 =========================================== */
@media (max-width: 400px) {

  /* -------------------------- RATES --------------------------- */
  .rates__list {
    gap: 30px;
  }

  .rates__list-item::before {
    top: -10px;
  }
}