@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Actay Wide";
  src: url("fonts/Actay Family/ActayWide-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gilroy", sans-serif;
  color: #000;
  line-height: 1.6;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  color: #fff;
  font-family: "Actay Wide", sans-serif;
  font-weight: 700;
  font-size: 49px;
  line-height: 1.1;
  margin-bottom: 30px;
}

h2 {
  font-family: "Actay Wide", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin-top: 15px;
}

h3 {
  font-family: "Gilroy", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #000;
}

h4 {
  font-size: 20px;
}

p {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin-top: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 66px;
  min-width: 40px;
  background: #ffd400;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 10px;
  margin-top: 30px;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #2e2e2e;
  color: #fff;
}
.btn:active {
  background: #000;
  color: #fff;
}
.btn:disabled, .btn.btn--disabled {
  background: #fff2b3;
  color: rgba(0, 0, 0, 0.35);
  cursor: not-allowed;
}
.btn--black {
  background: #000;
  color: #fff;
}
.btn--black:hover {
  background: #fff;
  color: #000;
}
.btn--black:active {
  background: #e1e1e1;
  color: #000;
}
.btn--black:disabled, .btn--black.btn--disabled {
  background: #aeaeae;
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}
.btn--outline {
  background: transparent;
  border: 2px solid #ffd400;
  color: #ffd400;
}
.btn--outline:hover {
  background: #ffd400;
  color: #000;
}
.btn--outline:active {
  background: #ccaa00;
  color: #000;
}
.btn--outline:disabled, .btn--outline.btn--disabled {
  background: transparent;
  border-color: #fff2b3;
  color: #fff2b3;
  cursor: not-allowed;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-icon::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-color: currentColor;
  mask: url("../img/arrow-top.svg") no-repeat center/contain;
  -webkit-mask: url("../img/arrow-top.svg") no-repeat center/contain;
  transition: transform 0.2s ease;
}
.btn-icon:hover::after {
  transform: translate(2px, -2px);
}
.btn-icon:active::after {
  transform: translate(4px, -4px);
}
.btn-icon:disabled::after, .btn-icon.btn--disabled::after {
  background-color: currentColor;
}

.header {
  background: #ffd400;
  height: 90px;
  display: flex;
  align-items: center;
  /* Burger */
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  font-size: 24px;
  font-weight: 700;
}
.header__logo img {
  max-width: 143px;
  width: 100%;
  display: block;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header__burger span {
  width: 28px;
  height: 3px;
  background: #000;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger span:nth-child(2) {
  width: 20px;
  margin-left: auto;
}

.header__nav{
  display: flex;
  gap: 30px;
}

.header__nav ul{
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header__nav li{
  list-style: none;
}

.header__nav li a{
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: right;
  color: #000;
  text-decoration: none;

  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.header__nav li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;
  background: #000;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.header__nav li a:hover::after{
  transform: scaleX(1);
}

.header__nav li.current_page_item a{
  font-weight: 700;
}

.header__nav li.current_page_item a::after{
  transform: scaleX(1);
}

.header__nav li a:focus-visible{
  outline: 2px solid #000;
  outline-offset: 3px;
  border-radius: 6px;
}

.header.header--open .header__burger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header.header--open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header.header--open .header__burger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  height: 770px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.hero__content {
  max-width: 685px;
  width: auto;
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: -134px;
}
.hero__content h1 {
  color: #fff;
}
.hero__content p {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}
.hero__content .btn {
  width: 297px;
}

.offer {
  height: 882px;
  display: flex;
  align-items: flex-start;
}
.offer__wrapper {
  display: flex;
  align-items: center;
  gap: 76px;
}
.offer__image {
  flex: 0 0 55%;
  height: 771px;
  background-image: url("../img/offer.png");
  background-size: contain;
  background-position: 28% 0%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.offer__image img {
  width: 100%;
  height: auto;
  margin-bottom: 39px;
}
.offer__content {
  flex: 0 0 40%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: -28px;
}
.offer__content h2 {
  margin-bottom: 44px;
}
.offer__content .btn {
  width: 223px;
  text-transform: uppercase;
}
.offer__content-inner {
  width: 100%;
}

.instant {
  background: #ffd400;
  height: 740px;
  padding: 80px 0;
}
.instant__header {
  text-align: center;
  margin: 0 auto 60px;
}
.instant__items {
  display: flex;
  justify-content: space-between;
  margin-top: 116px;
}
.instant__item {
  background: #fff;
  padding: 65px 40px 33px;
  position: relative;
  text-align: center;
  flex: 1;
  margin: 0 10px 0 10px;
  border-radius: 10px;
}
.instant__item:last-child {
  margin: 0;
}
.instant__item h3 {
  margin-top: 25px;
}
.instant__icon-wrapper {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ffda1f;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instant__icon-wrapper img {
  width: 56px;
  height: 56px;
}

.best {
  min-height: 982px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.best h2 {
  color: #fff;
}
.best__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.best__content {
  flex: 1;
  max-width: 400px;
}
.best__form-placeholder {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.best__form {
  width: 586px;
  background: #fff;
  padding: 40px 59px;
  border-radius: 10px;
  color: #000;
}
.best__form-title {
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #000;
}
.best__form-group {
  margin-bottom: 15px;
}
.best__form-group label {
  display: block;
  margin-bottom: 5px;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.best__form-group input,
.best__form-group textarea {
  width: 100%;
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}
.best__form-checkbox {
  margin: 20px auto 30px;
  text-align: center;
}
.best__form-checkbox input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 10px;
  border: 2px solid #b3b3b3;
  background: #dfdfdf;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  /* Hover (unchecked) */
  /* Active/checked */
  /* Disabled */
}

.best__form-checkbox--readmore .wpcf7-list-item {
  margin: 0;
}

.best__form-checkbox--readmore label {
  display: inline;
  cursor: pointer;
}

.best-readmore-btn {
  display: inline;
  margin-left: 6px;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.best-readmore-text {
  display: none;
  margin-left: 4px;
}

.best-readmore-text.is-open {
  display: inline;
}

.wpcf7-list-item {
	margin:0;
}

.best__form-checkbox input::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #cfcfcf;
  border-radius: 4px;
  transform: scale(0);
  transition: transform 0.2s ease, background 0.2s ease;
}
.best__form-checkbox input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.best__form-checkbox input:not(:checked):not(:disabled):hover::before {
  transform: scale(1);
}
.best__form-checkbox input:checked {
  border-color: #ffd400;
}
.best__form-checkbox input:checked::before {
  background: #ffd400;
  transform: scale(1);
}
.best__form-checkbox input:checked::after {
  transform: rotate(45deg) scale(1);
}
.best__form-checkbox input:disabled {
  cursor: not-allowed;
  border-color: #e0e0e0;
  background: #f6f6f6;
}
.best__form-checkbox input:disabled::before {
  background: #f6f6f6;
}
.best__form-checkbox input:disabled::after {
  border-color: #d0d0d0;
}
.best__form-checkbox label {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    text-align: left;
}
.best__form .btn {
  width: 223px;
  display: block;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

.steps {
  height: 786px;
  padding: 100px 0;
}
.steps__header {
  text-align: center;
  margin: 0 auto 60px;
}
.steps__items {
  display: flex;
  gap: 30px;
  margin-top: 82px;
}
.steps__item {
  background: #ffd400;
  display: flex;
  gap: 28px;
  padding: 40px;
  align-items: flex-start;
  border-radius: 10px;
}
.steps__num {
  font-family: "Inter", sans-serif;
  font-size: 150px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #000;
  margin-top: -40px;
}
.steps__text {
  margin-top: 43px;
}
.steps h4 {
  font-family: "Gilroy", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 20px;
}
.steps p {
  font-family: "Gilroy", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000;
}
.steps__item:nth-child(2) {
  background: #2e2e2e;
  color: #fff;
}
.steps__item:nth-child(2) .steps__num {
  color: #fff;
}
.steps__item:nth-child(2) h4, .steps__item:nth-child(2) p {
  color: #fff;
}

.reviews {
  background: #2e2e2e;
  color: #fff;
  min-height: 1005px;
  padding: 120px 0;
  /* Swiper bullets */
}
.reviews h2 {
  text-align: center;
  color: #fff;
}
.reviews__items {
  display: flex;
  gap: 30px;
  margin: 60px 0;
}
.reviews__item {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  height: 437px;
  position: relative;
}
.reviews__item {
  gap: 0;
}
.reviews__item-header {
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.reviews__item::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 33.32px;
  height: 27px;
  background: url("../img/apstr.svg") no-repeat center/contain;
  opacity: 0.7;
}
.reviews__name {
  font-weight: 700;
}
.reviews__location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.reviews__btn-wrapper {
  text-align: center;
}
.reviews__item p {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: rgb(197, 197, 197);
}
.reviews__slider {
  margin-top: 53px;
  padding-bottom: 116px;
}
.reviews .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1.6px solid #fff;
  background: transparent;
  opacity: 1;
}
.reviews .swiper-pagination-bullet-active {
  background: #fff;
}

.footer {
  border-top: 1px solid rgb(0, 0, 0);
}
.footer__top {
  padding: 80px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.footer__left {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer__logo {
  max-width: 150px;
  width: 100%;
}
.footer__tagline {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.footer__btn {
  width: 297px;
}
.footer__cols {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer__col-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 32px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer__col a {
  color: #000;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  transition: opacity 0.2s;
}
.footer__col a:hover {
  opacity: 0.7;
}
.footer__touch .footer__phone, .footer__touch .footer__address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.footer__social {
  display: flex;
  gap: 31px;
  margin: 20px 0;
}
.footer__social img {
  width: 20px;
  height: 20px;
}
.footer__totop {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  /* floating */
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffd400;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.footer__totop img {
  width: 16px;
  height: 16px;
}
.footer__totop--visible {
  opacity: 1;
  visibility: visible;
}
.footer__bottom {
  background: #2e2e2e;
  color: #fff;
  padding: 25px 0;
}
.footer__bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.footer__policy, .footer__credits, .footer__copy {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
}
.footer__policy {
  color: #fff;
  text-decoration: none;
}

.header__overlay {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.modal--open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__dialog {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  z-index: 1;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  /* cross */
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #000;
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}
.modal__group {
  margin-bottom: 20px;
}
.modal__group input, .modal__group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
}
.modal__subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  margin: 15px 0 25px;
  text-align: center;
}
.modal__title {
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.modal__form .btn {
  display: block;
  margin: 30px auto 0;
}
.modal .best__form-checkbox {
  text-align: center;
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .header__nav {
    gap: 20px;
  }
  /* Instant section: single column */
  .instant__items {
    flex-direction: column;
  }
  .instant__item {
    flex: 1 1 100%;
    width: 100%;
    margin: 0 0 80px 0;
  }
  .instant__icon-wrapper {
    width: 87px;
    height: 87px;
  }
  .instant__icon-wrapper img {
    width: 39px;
    height: 39px;
  }
  /* Steps keep two columns */
  .steps__items {
    flex-wrap: wrap;
  }
  .steps__item {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 40px;
  }
  .hero,
  .offer,
  .instant,
  .best,
  .steps,
  .reviews {
    height: auto;
    padding: 70px 0;
  }
  .offer {
    padding-top: 0;
  }
  .hero {
    height: 785px;
    padding: 70px 0;
  }
  /* Typography */
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .hero__content p {
    font-size: 18px;
  }
  /* Buttons */
  .btn {
    height: 54px;
    font-size: 18px;
  }
  /* Instant padding */
  .instant__item {
    padding: 25px 20px 27px;
  }
  /* Steps layout */
  .steps__items {
    flex-direction: column;
  }
  .steps__item {
    flex: 1 1 100%;
    padding: 35px;
  }
  .steps__num {
    font-size: 90px;
    margin-top: -20px;
  }
  .best h2, .best p {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .header__nav {
    display: none;
  }
  .offer__wrapper,
  .best__wrapper {
    flex-direction: column;
  }
  .offer__image {
    min-height: 415px;
  }
  .offer__image,
  .best__form {
    width: 100%;
  }
  .footer__cols {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .instant__item,
  .steps__item {
    flex: 0 0 100%;
  }
  .footer__top {
    padding: 60px 15px !important;
    flex-direction: column;
    align-items: center;
  }
  /* Footer mobile layout */
  .footer {
    /* hide all columns except touch */
    /* bottom */
  }
  .footer__left {
    align-items: center;
    text-align: center;
    flex: 1 1 auto;
  }
  .footer__tagline {
    text-align: center;
  }
  .footer__btn {
    margin: 0 auto;
  }
  .footer__col {
    display: none;
  }
  .footer__touch {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .footer__touch .footer__col-title {
    display: none;
  }
  .footer__bottom-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__bottom-wrap a, .footer__bottom-wrap p {
    font-size: 14px;
  }
  .footer__cols {
    flex: 2 1 auto;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
  .header {
    height: 70px;
  }
  .header__logo img {
    max-width: 100px;
  }
  .hero__content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
  }
  .hero {
    height: calc(100vh - 70px);
    padding: 0;
    background-position: 12% 57%;
  }
  .hero__content {
    margin-top: 0;
  }
  .hero__content .btn {
    width: 220px;
    margin: 30px auto 0;
  }
  .offer__image {
    min-height: 352px;
  }
  .offer__image img {
    margin-bottom: 64px;
  }
  .offer__content h2 {
    margin-bottom: 30px;
  }
  .offer__content .btn {
    width: 172px;
  }
  .instant__items {
    margin-top: 93px;
  }
  .instant {
    padding: 70px 0 63px;
  }
  .best__form {
    width: 100%;
    padding: 40px 35px;
  }
  .best__form-title {
    font-size: 22px;
    font-weight: 600;
  }
  .best__form-group label {
    font-size: 14px;
  }
  .best__form .btn {
    width: 172px;
  }
  .best__form-checkbox input {
    width: 18px;
    height: 18px;
  }
  .steps__items {
    margin-top: 50px;
    gap: 27px;
  }
  .steps__item {
    margin-bottom: 0;
  }
  .steps__header {
    margin: 0 auto 50px;
  }
  .steps__text {
    margin-top: 5px;
  }
  .steps__num {
    margin-top: -33px;
  }
  .steps h4 {
    font-size: 22px;
  }
  .steps p {
    font-size: 16px;
  }
  .reviews__item {
    height: 420px;
  }
  .reviews__slider {
    padding-bottom: 86px;
  }
  .footer__top {
    padding: 41px 15px !important;
    gap: 60px;
  }
  .footer__social {
    gap: 47px;
  }
  .footer__social img {
    width: 30px;
    height: 30px;
  }
  .footer__bottom-wrap {
    gap: 6px;
  }
  /* Modal mobile */
  .modal__dialog {
    padding: 40px 20px;
    width: 95%;
  }
  .modal__subtitle {
    margin: 15px 0 20px;
    font-size: 16px;
  }
  .modal__title {
    font-size: 22px;
  }
  .modal__close {
    width: 20px;
    height: 20px;
  }
  .header.header--open .header__nav {
    transform: translateY(70px) !important;
  }
}
/* Mobile styles up to 1023px */
@media (max-width: 1023px) {
  .header__burger {
    display: flex;
    z-index: 1002;
  }
  .header__nav {
    position: fixed;
    top: 0; /* header height */
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  .header__nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 20px;
    width: 100%;
  }
  .header__nav ul li {
    height: 58px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .header__nav ul li:hover {
    background: #f2f0f0;
    font-weight: 400;
  }
  .header__nav ul li.current_page_item {
    position: relative;
  }
  .header__nav ul li.current_page_item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #ffd400;
  }
  .header__nav ul li.current_page_item:hover {
    font-weight: 700;
  }
  .header__overlay {
    display: none !important;
  }
  .header.header--open .header__nav {
    transform: translateY(90px);
    display: flex;
  }
  .header__nav ul li.current_page_item:after {
    bottom: -4px;
  }
  .header__nav ul li.current_page_item:after {
    display: none;
  }
  /* Center offer button */
  .offer__content-inner {
    text-align: center;
  }
  .offer__content-inner .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .offer__image {
    height: 615px;
  }
  /* Reviews adaptive height */
  .reviews {
    min-height: 0;
    height: auto;
    padding: 70px 0;
  }
}
/* mobile height 415px */
@media (max-width: 775px) {
  .offer__image {
    height: 415px;
  }
}
@media (max-width: 1399px) {
  .best__form-placeholder {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .offer__image {
    flex: 1 1 auto;
    height: 620px;
  }
}
@media (max-width: 996px) {
  .offer__image {
    height: 415px;
    max-width: 320px;
  }
}
/* Easy Steps Section */
.easy-steps {
  padding: 120px 0;
  /* ≤767px — мобильный вид */
}
.easy-steps__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.easy-steps__header p {
  margin-top: 20px;
}
.easy-steps__items {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: stretch;
  background-image: url("../img/Road.jpg");
  background-repeat: no-repeat;
  background-position: center 30px;
  background-size: 62% 61px; /* ширина 60% контейнера, высота 61px */
}
.easy-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 150px; /* место под иконку */
}
.easy-steps__item h3 {
  margin-top: 40px;
  text-align: center;
  max-width: 331px;
}
.easy-steps__item p {
  margin-top: 15px;
  text-align: center;
  margin-bottom: 30px;
}
.easy-steps__item .btn {
  margin-top: auto;
  line-height: .9;
}
.easy-steps__icon-wrapper {
  width: 111px;
  height: 111px;
  border: 4px solid #ffd400;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.easy-steps__icon-wrapper img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .easy-steps__items {
    flex-direction: column;
    gap: 60px;
    background-image: none;
  }
  .easy-steps__item {
    padding-top: 100px;
  }
}

/* Why Choose Section */
.why {
  background: #ffd400;
  padding: 120px 0 180px;
  text-align: center;
  /* картинка */
  /* белая карточка поверх */
}
.why__header {
  margin: 0 auto 60px;
}
.why__header p {
  margin-top: 20px;
  font-size: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.why__items {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 100px;
}
.why__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why__img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.why__img img {
  width: 100%;
  height: auto;
  display: block;
}
.why__card {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 347px;
  height: 198px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.why__card h3 {
  margin-bottom: 15px;
}
.why__card p {
  font-size: 18px;
  line-height: 1.3;
}
.why__btn-wrapper {
  text-align: center;
}
.why__btn-wrapper .btn {
  max-width: 312px;
  width: 100%;
}
@media (max-width: 991px) {
  .why {
    padding: 100px 0 100px;
  }
  .why__items {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .why__card {
    position: static;
    transform: none;
    margin-top: -40px;
    width: 100%;
  }
}

.why.sellCar .why__header p {
  max-width: 100%;
}
.why.sellCar .why__card {
  height: 318px;
  bottom: -180px;
}
.why.sellCar .why__items {
  margin-bottom: 210px;
}
@media (max-width: 1023px) {
  .why.sellCar .why__items {
    margin-bottom: 300px;
  }
  .why.sellCar .why__card {
    height: 345px;
    bottom: -259px;
  }
}

/* Resources Section */
.resources {
  padding: 120px 0;
  text-align: center;
  position: relative;
  /* Навигационные стрелки */
  /* Pagination bullets hidden by default */
  /* ≤1023px: show bullets, hide arrows */
  /* responsive */
}
.resources__title {
  margin-bottom: 60px;
}
.resources__wrapper {
  position: relative;
  overflow: hidden;
}
.resources__slider {
  overflow: visible;
  position: relative;
}
.resources__slide {
  display: flex;
  justify-content: center;
  height: 540px;
}
.resources .card {
  width: 312px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.resources .card__img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.resources .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}
.resources .card__title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.resources .card__desc {
  font-size: 16px;
  text-align: left;
  flex: 1;
}
.resources .card__btn {
  width: 100%;
  margin-top: auto;
}
.resources__nav-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.resources__nav {
  pointer-events: auto;
  width: 32px;
  height: 52px;
  background: transparent url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18l-6-6 6-6' stroke='%23000' stroke-width='2' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
  border: none;
  cursor: pointer;
  background-size: contain;
}
.resources__next {
  transform: scaleX(-1);
}
.resources__pagination {
  display: none;
  margin-top: 40px;
}
.resources__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1.6px solid #000;
  background: transparent;
  opacity: 1;
}
.resources__pagination .swiper-pagination-bullet-active {
  background: #000;
}
@media (max-width: 1023px) {
  .resources__nav-wrapper {
    display: none;
  }
  .resources__pagination {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .resources__nav-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
  .resources .card {
    width: 100%;
  }
}

/* 404 Page Styles */
.hero--404 .hero__content {
  margin-top: 0;
  max-width: 100%;
}
.hero--404 .hero__content h2 {
  color: #fff;
}

.notfound__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.notfound__contacts {
  margin-top: 60px;
  color: #fff;
}

.notfound__contacts h3 {
  font-family: "Gilroy", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

.notfound__contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notfound__contacts a {
  color:#fff;
  text-decoration:none;
}

.notfound__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
}

.notfound__contacts li img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1199px) {
  .notfound__btns {
    flex-direction: column;
    align-items: center;
  }
  .hero--404 .btn {
    margin-top: 0;
  }
}
/* Contact Page Styles */
.contact {
  min-height: 900px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.contact h2 {
  color: #fff;
}
.contact h3 {
  color: #fff;
  text-align: left;
}
.contact .best__form h3 {
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}
.contact .hero__desc_contact_us {
  text-align: center;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
}
.contact__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.contact__info {
  flex: 1;
  max-width: 640px;
  margin: auto 0;
}
.contact__info h1 {
  color: #fff;
}
.contact__info p {
  color: #fff;
  font-size: 20px;
  margin: 30px 0;
}
.contact__info h3 {
  font-size: 24px;
  margin: 40px 0 25px;
}
.contact__info .btn {
  margin-top: 40px;
  width: 180px;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.2;
}
.contact__list li a {
  color: #fff;
  text-decoration: none;
}
.contact__list li img {
  width: 18px;
  height: 18px;
}
.contact__form {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact__info-services-mob {
  display: none;
}

/* Services Section */
.services {
  padding: 120px 0 0;
}
.services__header {
  text-align: center;
  margin: 0 auto 60px;
}
.services__header h2 {
  font-size: 48px;
  font-family: "Actay Wide", sans-serif;
  margin-bottom: 20px;
}
.services__header p {
  font-size: 22px;
}
.services__features {
  display: flex;
  width: 100%;
  min-height: 437px;
}
.services__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.services__feature h3 {
  font-size: 80px;
  line-height: 0.95;
  font-family: "Actay Wide", sans-serif;
  margin-bottom: 40px;
}
.services__feature p {
  font-size: 22px;
  max-width: 400px;
}
.services__feature--yellow {
  background: #ffd400;
  color: #000;
}
.services__feature--dark {
  background: #2e2e2e;
  color: #fff;
}
.services__feature--dark h3 {
  font-size: 68px;
  color: #fff;
}
.services__feature h3 {
  margin-bottom: 0;
}
.services__feature .services__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.services__feature .services__link:hover {
  transform: scale(1.08);
}

/* responsive ≤1199px */
@media (max-width: 1199px) {
  .services {
    padding: 70px 0 0;
  }
  .contact {
    padding: 50px 0;
    min-height: 100%;
  }
  .contact__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contact__form {
    width: 100%;
    margin-top: 40px;
  }
  .contact__form .best__form {
    width: 100%;
  }
  .contact h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .contact__info {
    max-width: 100%;
    text-align: center;
  }
  .contact__info-services {
    display: none;
  }
  .contact__info-services-mob {
    display: block;
    margin-top: 40px;
  }
  .contact__info-services-mob .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }
  .contact__info-services-mob-btn {
    text-align: center;
  }
  .services__header h2 {
    font-size: 28px;
  }
  .services__header p {
    font-size: 18px;
  }
}
/* responsive */
@media (max-width: 991px) {
  .services__features {
    flex-direction: column;
  }
  .services__feature {
    min-height: 360px;
  }
  .services__feature h3 {
    font-size: 48px;
  }
  .services__feature p {
    font-size: 18px;
  }
}
.reviews.about-us {
  background-color: #fff;
  color: #000;
}
.reviews.about-us h2 {
  color: #000;
}
.reviews.about-us .reviews__item p {
  color: rgb(46, 46, 46);
}
.reviews.about-us .reviews__item-header {
  border-bottom: 1px solid rgb(0, 0, 0);
}
.reviews.about-us .reviews__location {
  color: #000;
}
.reviews.about-us .reviews__item {
  border: 1px solid rgb(0, 0, 0);
}
.reviews.about-us .swiper-pagination-bullet-active {
  border: 1.6px solid #000;
  background-color: #000;
}
.reviews.about-us .swiper-pagination-bullet {
  border: 1.6px solid #000;
}
.reviews.about-us .reviews__item::after {
  background: url(../img/apstrGrey.svg) no-repeat center/contain;
}

.hero.about::before {
  background: rgba(0, 0, 0, 0.8);
}

.about-info {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.about-info h1, .about-info h2, .about-info h3, .about-info h4, .about-info h5, .about-info h6 {
  text-align: left;
  margin-bottom: 20px;
}
.about-info p {
  margin-bottom: 30px;
  text-align: left;
}
.about-info ul {
  list-style: disc;
  margin: 0 auto 40px;
  padding-left: 20px;
  text-align: left;
}
.about-info ul li {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}
.about-info__list {
  list-style: disc;
  margin: 0 auto 40px;
  padding-left: 20px;
  text-align: left;
}
.about-info__list li {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}
.about-info .btn {
  margin-top: 30px;
}

/* Responsive: Tablets */
@media (max-width: 991px) {
  .about-info {
    padding: 60px 0;
  }
  .about-info h2 {
    font-size: 32px;
    margin-top: 40px;
  }
  .about-info p, .about-info__list li {
    font-size: 18px;
  }
  .hero.about {
    background-position: 50%;
  }
}
/* Responsive: Mobile */
@media (max-width: 575px) {
  .about-info h2 {
    font-size: 28px;
  }
}
/* --------------------------------------
   Reputation Section
----------------------------------------- */
.reputation {
  padding: 80px 0;
  background: #fff;
  /* Rating block */
}
.reputation__title {
  text-align: center;
  font-family: "Actay Wide", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.reputation__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.reputation__row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.reputation__row span {
  line-height: 1;
}
.reputation__logo-main, .reputation__logo-yelp {
  max-width: 180px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.reputation__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reputation__rating-name {
  font-family: "Actay Wide", sans-serif;
  font-size: 32px;
  margin-bottom: 12px;
}
.reputation__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
}
.reputation__score {
  font-size: 18px;
  color: #2e2e2e;
}

/* Responsive for reputation */
@media (max-width: 991px) {
  .reputation__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .reputation__wrapper {
    justify-content: center;
  }
  .reputation__logo-main, .reputation__logo-yelp {
    max-width: 140px;
  }
  .reputation__rating-name {
    font-size: 28px;
  }
  .reputation__stars img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 575px) {
  .reputation {
    padding: 60px 0;
  }
  .reputation__title {
    font-size: 26px;
  }
  .reputation__logo-main, .reputation__logo-yelp {
    max-width: 120px;
  }
  .reputation__rating-name {
    font-size: 24px;
  }
}
/* Responsive: Desktop < 1024px */
@media (max-width: 1024px) {
  .reputation__wrapper {
    flex-direction: column;
    gap: 50px;
    justify-content: center;
  }
}
/* --------------------------------------
   Blog Hero Section
----------------------------------------- */
.blog-hero {
  padding: 80px 0;
  background: #fff;
}
.blog-hero__title {
  font-family: "Actay Wide", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #000;
}
.blog-hero__excerpt {
  font-size: 18px;
  max-width: 800px;
  color: #2e2e2e;
  margin-bottom: 4px;
}
.blog-hero__meta {
  font-size: 14px;
  color: #616161;
}
.blog-hero__content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
  height: 506px;
}
.blog-hero__image {
  flex: 1 1 65%;
}
.blog-hero__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.recommended {
  flex: 0 0 260px;
  width: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommended__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: left;
}
.recommended__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  justify-content: space-between;
}
.recommended__item {
  position: relative;
  height: 131px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.recommended__item:hover .recommended__overlay {
  background: rgba(0, 0, 0, 0.35);
}
.recommended__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommended__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.3s ease;
}
.recommended__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.recommended__name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.1;
  max-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommended__desc {
  font-size: 16px;
  line-height: 1.2;
  max-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-blog-content {
  padding: 0 0 120px;
}
.single-blog-content h1,
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4,
.single-blog-content h5,
.single-blog-content h6 {
  text-align: inherit;
  margin-bottom: 25px;
  margin-top: 40px;
}
.single-blog-content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-blog-content p {
  font-family: Gilroy;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgb(31, 31, 31);
}

/* Responsive */
@media (max-width: 991px) {
  .single-blog-content {
    padding: 0 0 70px;
  }
  .blog-hero__content {
    gap: 24px;
    height: auto;
  }
  .blog-hero__content__image img {
    height: auto;
  }
  .recommended {
    flex: 0 0 220px;
    width: 220px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .blog-hero__content {
    flex-direction: column;
  }
  .recommended {
    width: 100%;
    flex: none;
  }
  .recommended__list {
    flex-direction: row;
  }
  .recommended__item {
    flex: 0 0 200px;
    height: 120px;
  }
}
@media (max-width: 575px) {
  .blog-hero {
    padding: 60px 0;
  }
  .blog-hero__title {
    font-size: 32px;
  }
}
/* --------------------------------------
   Blog Listing (blogs.html)
----------------------------------------- */
.blog-content {
  padding: 120px 0;
}
.blog-content__wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.blog-content__grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

/* Post card */
.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.post-card__thumb {
  width: 100%;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card__body {
  flex: 1 1 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  max-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__desc {
  font-size: 14px;
  color: #2e2e2e;
  flex: 1 1 auto;
  max-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__btn {
  align-self: flex-start;
  height: 44px;
  font-size: 16px;
  padding: 0 18px;
}

/* Sidebar */
.sidebar {
  flex: 0 0 260px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 58px;
  padding: 0 60px 0 20px;
  border: none;
  border-radius: 8px;
  background: rgb(242, 240, 240);
  font-size: 16px;
}
.sidebar__search button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: url("../img/Shape.svg") center/22px no-repeat;
  border: none;
  cursor: pointer;
}
.sidebar__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.sidebar__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.sidebar__tag-list .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  background: rgb(242, 240, 240);
  border-radius: 40px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.sidebar__tag-list .tag:hover {
  background: #ffd400;
  color: #000;
}
.sidebar__tag-list .tag.active {
  background: #ffd400;
  color: #000;
}

/* Pagination */
.pagination {
  margin-top: 60px;
  /* current page */
  /* Arrows */
}
.pagination__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
}
.pagination__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: background 0.2s, color 0.2s;
}
.pagination__item span.current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #000;
  color: #fff;
}
.pagination .pagination__arrow {
  border: none;
  background: url("../img/arrow_right.svg") center/12px no-repeat;
  border-radius: 8px;
}
.pagination .pagination__arrow--prev {
  transform: rotate(180deg);
}
.pagination .pagination__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.page-template-contact .best__form h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .blog-content__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .blog-content__wrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 575px) {
  .blog-content__grid {
    grid-template-columns: 1fr;
  }
  .post-card__thumb {
    height: 200px;
  }
}
/* Hero for blogs */
.hero-blogs {
  height: 712px;
}

/* --- Post card updates --- */
.post-card {
  height: 508px;
  padding: 16px;
  /* добавляем разделительную линию и отступ под картинкой */
}
.post-card__thumb {
  display: block;
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.post-card__body {
  flex: 1 1 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.post-card__thumb + .post-card__body {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 16px;
  margin-top: 14px;
}
.post-card__title {
  font-size: 22px;
  text-align: left;
  margin-bottom: 8px;
}
.post-card__desc {
  font-size: 18px;
  color: #2e2e2e;
  margin-top: 0;
  margin-bottom: 15px;
}
.post-card__btn {
  margin-top: auto;
  align-self: center;
}

/* adjust thumb height on mobile bigger */
@media (max-width: 575px) {
  .post-card {
    height: auto;
  }
  .post-card__thumb {
    height: 220px;
  }
}
/* Responsive < 1024px */
@media (max-width: 1024px) {
  .hero-blogs {
    align-items: flex-end;
  }
  .hero-blogs .hero__content .btn {
    margin: 30px 0;
  }
  .blog-content__wrapper {
    flex-direction: column-reverse;
  }
  .blog-content {
    padding: 70px 0;
  }
}
/* Mobile layout for recommended list */
@media (max-width: 776px) {
  .recommended__list {
    flex-direction: column !important;
  }
}
/* Mobile ≤ 768px adjustments */
@media (max-width: 768px) {
  .blog-content {
    padding: 70px;
  }
  .recommended__item {
    flex: 0 0 130px !important;
    height: 130px;
  }
}/*# sourceMappingURL=style.css.map */

.privacy-content h1 {
	color:#000;
	margin-top: 30px;
}

.footer__credits a {
	color:#fff;
	text-decoration:none;
}

