/* loader styles из HTML */
.loader {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  z-index: 999;
  transition: opacity 2s;
}
.box {
  position: relative;
  width: 8.5rem; height: 8.5rem;
  border-radius: 30%;
  overflow: hidden;
}
.box .content {
  background: #fff;
  position: absolute;
  top: .125rem; bottom: .125rem; left: .125rem; right: .125rem;
  margin: auto; border-radius: 30%;
  display: flex; align-items: center; justify-content: center;
  z-index: 6;
}
.box .black-underlay {
  position: absolute; top:0; bottom:0; left:0; right:0;
  margin:auto; background:#000; border-radius:30%; overflow:hidden; z-index:4;
}
.box .black-underlay .rotatable-unit {
  position:absolute; top:0; right:0; bottom:0; left:0; margin:auto; border-radius:50%;
  animation: rotation 2s linear infinite; will-change: transform;
}
.box .black-underlay .rotatable-unit:after {
  content: ""; position:absolute; width:4.6875rem; height:4.6875rem; top:-1.75rem; left:0; right:0; margin:auto; border-radius:50%;
  background: linear-gradient(90deg, #8edacb 0, #7abace 100%); z-index:5;
}
.hidden { opacity: 0; transform: translateY(1.25rem); transition: all 0.6s ease-out; }
@keyframes rotation { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

/* базовые контейнеры и типографика (упрощено) */
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#111; margin:0; background:#fff; }
.container { width:90%; max-width:75rem; margin:0 auto; }
.header_fixed { 
  background: #fff; 
  border-bottom: .0625rem solid #eee;
}
.header_fixed-inner { 
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:1.25rem;
  padding:1rem 0;
}
.header_logo img { height:2.75rem; }

/* hero */
.header_bg { padding: 2.5rem 0; background: linear-gradient(180deg,#fff,#f8f8f8); }
.header_title { font-size:2rem; margin:0 0 .5rem; }
.header_content p { margin:0 0 1rem; }

/* news slider basic */
.services_section { padding: 1.875rem 0; }
.swiper_services-title { font-size:1.375rem; margin:0 0 .625rem; }
.swiper_services-wrapper { display:flex; gap:1.25rem; }
.swiper_services-slide { width: 20rem; border:.0625rem solid #e6e6e6; padding:.75rem; background:#fff; border-radius:.375rem; }
.swiper_services-slide-image img { width:100%; height:auto; display:block; border-radius:.25rem; }

/* simple footer */
.site-footer { background:#222; color:#fff; padding:1.5rem 0; text-align:center; margin-top:2.5rem; }

.wpcf7-form {
  max-width: 31.25rem;
  margin: 0 auto;
  padding: 1.875rem;
  background-color: rgba(255,255,255,0.9); /* светлый фон */
  box-shadow: 0 .25rem .9375rem rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: .9375rem .75rem;
  margin-bottom: .9375rem;
  border: .0625rem solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7-form-control:focus {
  border-color: #6bbd4b;
  box-shadow: 0 0 .3125rem rgba(107,189,75,0.5);
  outline: none;
}

.wpcf7-submit {
  width: 100%;
  padding: .9375rem;
  background-color: #2e7d32; /* зелёный */
  color: white;
  font-weight: bold;
  border: none;
  border-radius: .375rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.wpcf7-submit:hover {
  background-color: #1b5e20;
}

.wpcf7-response-output {
  margin-top: .9375rem;
  font-weight: bold;
  font-size: .875rem;
}

.wpcf7-form p span.required {
  color: #e53935;
  font-weight: bold;
}

.news-grid {
  margin: 0 -0.9375rem;
}

.news-card {
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 .375rem 1.25rem rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 1rem 1.6875rem rgba(0,0,0,0.18);
}

.news-card-img {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-title {
  font-size: 20px;
  margin-bottom: .625rem;
  font-weight: 600;
}

.news-card-text {
  flex-grow: 1;
  font-size: 15.2px;
  color: #555;
  margin-bottom: .9375rem;
}

.btn-news {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: .375rem;
  text-align: center;
  transition: background-color 0.3s;
}

.news-pagination {
    text-align: center;
    margin: 2.5rem 0;
}

.news-pagination ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: .5rem;
}

.news-pagination li {
    display: inline;
}

.news-pagination a,
.news-pagination span {
    display: block;
    padding: .5rem .875rem;
    border-radius: .375rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    min-width: 2.25rem;
    text-align: center;
    font-weight: 500;
}

.news-pagination a:hover {
    background: #00a91c;
    color: #fff;
}

.news-pagination .current {
    background: #00a91c;
    color: #fff;
    font-weight: 600;
}

.zoom-social-icons-list {
  display: flex;
}
.zoom-social-icons-list .social-icon {
  transition: color 0.5s ease-in-out !important;
}
nav.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #808080eb;
  z-index: 100;
  padding-top: 10rem;
  padding-left: 5rem;
}

nav.mobile-menu .d-relative {
  display: relative;
}

nav.mobile-menu .d-relative .js-header_toggle-icon {
  position: absolute;
  top: 6.1rem;
  right: 1rem;
}
