/*
 * Theme Name: Start-Site 2.5
 * Description: Ultra-minimal WordPress starter theme. Optimized for converting html-layouts to websites. Also is a good start for SPA, creating unique projects.
 * Theme URI:   https://start-site.by
 * Author:      ULADZIMIR KONOVALOVE
 * Author URI:  https://start-site.by
*/

.tariffs {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.tariff {
    cursor: pointer;
}

.tariff input {
    display: none;
}

.tariff input:checked + span {
color: #ffffff;
    background: #34b6fb;
    padding: 17px 25px;
    border: 1px solid #efefef;
    border-radius: 10px;
}
label.tariff span {
    padding: 17px 25px;
    border: 1px solid #c5c5c5;
    border-radius: 10px;
}
.tariff input:checked + span::before {
    background: #000;
}

#wpforo #wpforo-wrap form[data-textareaid] {
    position: relative;
}
#wpforo #wpforo-wrap form[data-textareaid] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.wpforo-member-joined {
    display: none;
}

.wpfp-box.wpfp-joined {
    display: none;
}
/* Контейнер страницы аккаунта */

.block img {
    cursor: pointer;
    border-radius: 12px;
}
.account-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: 'FuturaPT', Arial, sans-serif;
}

.account-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

/* Карточка с информацией пользователя */
.account-box {
    background: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-box p {
    font-size: 18px;
    line-height: 1.5;
}

.account-box strong {
    display: inline-block;
    width: 160px;
    color: #333;
}

/* Статус подписки */
.status {
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 10px;
    width: fit-content;
    margin-top: 10px;
}

.status.ok {
    background-color: #d4edda;
    color: #155724;
}

.status.no {
    background-color: #f8d7da;
    color: #721c24;
}

/* Кнопки действий */
.account-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.account-actions a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    background: #FFCC02;
    transition: background 0.3s ease, transform 0.2s ease;
}

.account-actions a:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
    .account-box {
        padding: 20px;
    }

    .account-box strong {
        width: 120px;
    }

    .account-page h1 {
        font-size: 28px;
    }

    .account-actions a {
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 12px;
    }
}



/* Вход */
/* Общие стили для форм */
.oplata-form,
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px; font-family: 'FuturaPT', Arial, sans-serif;
    max-width: 500px;
    margin: 0 auto 0px;
    padding: 0 10px;
    font-family: 'FuturaPT', Arial, sans-serif;
}

/* Стили для input */
.oplata-form input,
.login-form input {
    width: 100%; font-family: 'FuturaPT', Arial, sans-serif;
    padding: 20px 22px;
    font-size: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.oplata-form input:focus,
.login-form input:focus {
    border-color: #ffcc02;
    box-shadow: 0 0 8px rgba(255, 204, 2, 0.5);
}

/* Радио кнопки */
.pay-test {
    display: flex;
    gap: 20px; font-family: 'FuturaPT', Arial, sans-serif;
    flex-wrap: wrap;
}

.pay-test label {
    display: flex;
    align-items: center;
    font-size: 16px; font-family: 'FuturaPT', Arial, sans-serif;
    cursor: pointer;
}

.pay-test input[type="radio"] {
    margin-right: 8px;
}

/* Кнопки */
.oplata-form button,
.login-form button {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    margin-bottom: 0px;
    font-family: 'FuturaPT', Arial, sans-serif;
    padding: 12px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    height: 65px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.oplata-form button:hover,
.login-form button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Сообщения */
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

/* Адаптив */
@media (max-width: 600px) {
    .oplata-form,
    .login-form {
        gap: 15px;
    }

    .oplata-form button,
    .login-form button {
        font-size: 22px;
        padding: 18px;
    }
}



/* регистрация, */

/* Контейнер формы */
.oplata-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* расстояние между полями */
    max-width: 500px;
    margin: 0 auto;
}

/* Стили для всех input */
.oplata-form input[type="text"],
.oplata-form input[type="tel"],
.oplata-form input[type="email"],
.oplata-form input[type="password"] {
    width: 100%;
    padding: 20px 22px;
    font-size: 18px;
    font-family: 'FuturaPT', Arial, sans-serif;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.oplata-form input[type="text"]:focus,
.oplata-form input[type="tel"]:focus,
.oplata-form input[type="email"]:focus,
.oplata-form input[type="password"]:focus {
    border-color: #ffcc02;
    box-shadow: 0 0 8px rgba(255, 204, 2, 0.5);
}

/* Стили для радио кнопок */
.pay-test {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pay-test label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-family: 'FuturaPT', Arial, sans-serif;
    cursor: pointer;
}

.pay-test input[type="radio"] {
    margin-right: 8px;
}

/* Кнопка зарегистрироваться */
.oplata-form button[type="submit"] {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    margin-bottom: 0px;
    padding: 0px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
}

.oplata-form button[type="submit"]:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Сообщение после регистрации */
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'FuturaPT', Arial, sans-serif;
    text-align: center;
}

/* Адаптив */
@media (max-width: 600px) {
    .oplata-form {
        gap: 15px;
        padding: 0 10px;
    }

    .oplata-form button[type="submit"] {
        font-size: 22px;
        padding: 18px;
    }
}








.container.company-single {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: 'FuturaPT', Arial, sans-serif;
}

/* ===== HEADER ===== */
.company-single .company-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.company-single .company-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.company-single .company-thumbnail {
    flex-shrink: 0;
    max-width: 700px;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
}

.company-single .company-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== CONTENT (если появится текст) ===== */
.company-single .company-content {
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
}

/* ===== META GRID ===== */
.company-single .company-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== BLOCK ===== */
.company-single .company-block {
  background: #FFCC02;
  border-radius: 20px;
  padding: 28px 28px 30px;
}

.company-single .company-block h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
}

.company-single .company-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-single .company-block ul li {
  font-size: 18px;
  line-height: 1.45;
}

.company-single .company-block ul li + li {
  margin-top: 10px;
}

/* ===== LINKS ===== */
.company-single .company-block a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease;
}

.company-single .company-block a:hover {
  border-color: rgba(0, 0, 0, 0.6);
}

/* ===== SOCIALS ===== */
.company-single .company-socials ul li {
  text-transform: capitalize;
}

/* ===== RATING ===== */
.company-single .company-rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-single .rating-value {
  font-size: 36px;
  font-weight: 500;
  margin-top: 6px;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .company-single .company-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-single .company-title {
    font-size: 40px;
  }

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

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .container.company-single {
    padding: 56px 20px;
  }

  .company-single .company-title {
    font-size: 32px;
  }

  .company-single .company-thumbnail {
    width: 100%;
  }

  .company-single .company-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-single .rating-value {
    font-size: 30px;
  }
}




















.text_poisk {
    font-size: 22px;
    margin: 20px 0px;
}


.container.poiski {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: 'FuturaPT', Arial, sans-serif;
}

.container.poiski h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.container.poiski form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.container.poiski input[type="text"] {
  width: 100%;
  padding: 20px 22px;
  font-size: 18px;
  font-family: 'FuturaPT', Arial, sans-serif;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.container.poiski input[type="text"]::placeholder {
  color: #9a9a9a;
}

.container.poiski input[type="text"]:focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.container.poiski button {
    align-self: flex-start;
    font-weight: 500;
    padding: 14px 50px;
    cursor: pointer;
    background: #a5e0ff;
    text-decoration: none;
    color: #000;
    font-size: 19px;
    margin-bottom: 30px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
    transition: background 0.3s ease;
	transition: 0.3s;
}

.container.poiski button:hover {
  background: #ffd737;
  transform: translateY(-1px);
	transition: 0.3s;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.container.poiski button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* 📱 адаптив */
@media (max-width: 600px) {
  .container.poiski {
    padding: 56px 20px;
  }

  .container.poiski h1 {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .container.poiski button {
    width: 100%;
    text-align: center;
  }
}






































.videos-section {
  padding: 40px 0;
}

.videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.video-item {
  width: calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.4;
}

/* 📱 планшет */
@media (max-width: 1024px) {
  .video-item {
    width: calc(50% - 12px);
  }
}

/* 📱 телефон */
@media (max-width: 600px) {
  .video-item {
    width: 100%;
  }
}























.page-template-front-page .container-fluid.footer-extra {
    display: none;
}

a.button {
   text-decoration: none;
    color: #000;
    font-size: 25px;
    margin-bottom: 30px;
    padding: 20px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 390px;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Light.woff2') format('woff2'),
       url('fonts/FuturaPT-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Book.woff2') format('woff2'),
       url('fonts/FuturaPT-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Medium.woff2') format('woff2'),
       url('fonts/FuturaPT-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Demi.woff2') format('woff2'),
       url('fonts/FuturaPT-Demi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
/* Вакансия */

.single-vakansii {

  margin: 0 auto;
  font-family: 'FuturaPT', Arial, sans-serif;
  color: #1E2C37;
}

.vakansii-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 20px;
}

.vakansii-thumb {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

.vakansii-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vakansii-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1E2C37;
  text-align: center;
}

.vakansii-content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .vakansii-thumb {
    height: 250px;
  }

  .vakansii-title {
    font-size: 24px;
  }

  .vakansii-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .single-vakansii {
    padding: 20px 10px;
  }

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

  .vakansii-content {
    font-size: 15px;
  }
}


/* вакансии */

.news_archive {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'FuturaPT', Arial, sans-serif;
}

.news_archive .page_title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #1E2C37;
}

.news_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news_item {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform .2s ease;
}

.news_item:hover {
  transform: translateY(-5px);
}
.news_upper_text {
    position: absolute;
    background: #0000009e;
    color: #fff;
    top: 36%;
    left: 34px;
    padding: 10px 20px;
    font-size: 25px;
}
.news_thumb {
  flex: 0 0 300px;
  max-width: 300px;
  height: 200px;
  overflow: hidden;
position:relative;
}

.news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news_info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news_info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1E2C37;
}

.news_info h2 a {
  text-decoration: none;
  color: inherit;
}

.news_info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: 6px;
  text-decoration: none;
  color: #1E2C37;
  background: #f5f5f5;
}

.pagination .current {
  background: #896930;
  color: #fff;
}

.pagination a:hover {
  background: #d4c19b;
  color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
  .news_item {
    flex-direction: column;
  }
  
  .news_thumb {
    max-width: 100%;
    height: 250px;
  }
  
  .news_info {
    padding: 15px;
  }
  
  .news_info h2 {
    font-size: 20px;
  }
  
  .news_info p {
    font-size: 15px;
  }
}



/* Новость */


.single_news {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.news-featured-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.news-featured-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  padding: 30px;
  text-align: center;
}

.news-featured-overlay h1 {
  color: #fff;
  font-size: 32px;
  margin: 0;
}

.news_text {
  font-size: 18px;
  line-height: 1.7;
  color: #1e2c37;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
}
h1 {
    margin: 20px auto 0px;
    text-align: center;
}
.nav-btn {
    font-weight: 600;
    padding: 13px 26px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
}
.nav-btn:hover {
  background: #1E2C37;
  color: #fff;
}


/* Новости */
.news-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.news-archive .page-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #1E2C37;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform .2s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.news-info {
  padding: 20px;
}

.news-title {
  font-size: 20px;
  color: #1E2C37;
  margin-bottom: 10px;
}

.news-title a {
  color: inherit;
  text-decoration: none;
}

.news-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.news-more {
    font-weight: 600;
    padding: 13px 16px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
}
}

.news-more:hover {
  color: #6f5428;
}

/* Пагинация */
.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: 6px;
  text-decoration: none;
  color: #1E2C37;
  background: #f5f5f5;
}

.pagination .page-numbers.current {
  background: #896930;
  color: #fff;
}

.pagination .page-numbers:hover {
  background: #d4c19b;
  color: #fff;
}



/* форма */

.contact-form {
max-width: 515px;
    width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'FuturaPT', Arial, sans-serif;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 16px;
  color: #1E2C37;font-family: 'FuturaPT', Arial, sans-serif;
  margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;font-family: 'FuturaPT', Arial, sans-serif;
  padding: 14px 16px;
  border: 1px solid #CCC;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #896930;
  box-shadow: 0 0 0 2px rgba(137, 105, 48, 0.15);
}

.contact-form textarea {
  min-height: 130px;font-family: 'FuturaPT', Arial, sans-serif;
  resize: vertical;
}

.contact-form .file-upload input[type="file"] {
  font-size: 15px;font-family: 'FuturaPT', Arial, sans-serif;
  color: #333;
}

.contact-form .submit-row {
  text-align: center;font-family: 'FuturaPT', Arial, sans-serif;
}

.contact-form input[type="submit"] {
    background-color: #896930;
    color: #fff;
    font-family: 'FuturaPT', Arial, sans-serif;
    padding: 14px 50px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    background: #a5e0ff;
    padding: 15px 26px;
    text-decoration: none;
    color: #000;
    font-size: 19px;
    margin-bottom: 30px;
    /* padding: 20px; */
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    /* display: block; */
    /* width: 100%; */
    /* max-width: 390px; */
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
    transition: background 0.3s ease;
}
.wpcf7-response-output {
    position: absolute;
    bottom: -30px;
    font-size: 26px;
}
.contact-form input[type="submit"]:hover {
  background-color: #ffd52f;
}
.screen-reader-response {
    display: none;
}
/* Адаптив */
@media (max-width: 600px) {
  .contact-form {
    gap: 16px;
  }
  .contact-form input[type="submit"] {
    width: 100%;
  }
}


/*вторая страница*/
.hero-text.sec_page {
    background: #000000de;
    padding: 40px;

    border-radius: 10px;
}

.hero-text.sec_page h1 {
    font-size: 50px;
    color: #fff;
}

.hero-text.sec_page p {
    font-size: 40px;
    color: #fff;
}
img.hero-image-left {
    margin: 0 auto;
    max-width: 530px;
    border-radius: 10px;
	width:100%;
}

.hr_left {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-row_second {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.title_second {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}

.hero-row-texts_second {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-text_block_second {
    flex: 1 1 0;
    background: hsl(201deg 100% 37.08%);
    padding: 20px;
    box-sizing: border-box;
    font-size: 29px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

    border-radius: 10px;
}

.hero-button_second {
    display: inline-block;
    background: #FFCC02;
    color: #000000;
    text-decoration: none;
    padding: 32px 40px;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 600;
}
.row_second {
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
}
.hero-button_second:hover {
  background: #f1cb31;
}

.row_third {
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
}
.hero-row_third {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.title_third {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
}

.description_third {

    border-radius: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 1050px;
    width: 100%;
    text-align: left;
    background: hsl(201deg 100% 37.08%);
    color: #fff;
    padding: 80px;
}
.description_third li {
    padding: 20px 0px;
}


/* Адаптив для мобильных */
@media (max-width: 768px) {
.hero-text.sec_page {
    padding: 20px;
}
.hero-text.sec_page h1 {
    font-size: 40px;
}
.hero-text.sec_page p {
    font-size: 33px;
    color: #fff;
    line-height: 1.1;
}
  .title_third {
    font-size: 1.6rem;
  }

  .description_third {
    font-size: 1rem;
  }
}


/* Адаптив для мобильных */
@media (max-width: 768px) {
  .hero-row-texts_second {
    flex-direction: column;
    gap: 15px;
  }

  .hero-text_block_second {
    width: 100%;
    flex: none;
  }

  .title_second {
    font-size: 1.6rem;
  }
}




/* поиск */
form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.company-result {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
}

.company-result h2 {
    margin-top: 0;
}

.company-result .button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.company-result .button:hover {
    background-color: #005177;
}
/* поиск */
















/* подлвал */



.container-fluid.footer-extra {
    background: #34B6FB;
    padding: 30px 0px;
}
/* подлвал */

/* меню */
.menu_reg li a {
    background: #a5e0ff;
    padding: 15px 26px;
    text-decoration: none;
    color: #000;
    font-size: 19px;
    /* padding: 20px; */
    background: #FFCC02;
    border-radius: 10px;
    text-align: center;
    display: block;
    /* width: 100%; */
    /* max-width: 390px; */
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'FuturaPT', Arial, sans-serif;
}

.next_menu {
    background: #f9f9f9;
    padding: 20px 0px;
}
/* мен. */
.icon_social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.icon_social .social-link svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, color 0.3s;
  color: #1E2C37; /* основной цвет */
}

.icon_social .social-link:hover svg {
  transform: scale(1.2);
  color: #896930; /* цвет при ховере */
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
  .icon_social {
    gap: 10px;
  }
  .icon_social .social-link svg {
    width: 28px;
    height: 28px;
  }
}

/* иконка */


/* Сброс (минимальный) */


.hero-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* пример фона */
}

.hero-row {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    background: #272727c7;
    padding: 20px 50px;
    border-radius: 20px;
}

.hero-text h1 {
font-size: 52px;
    margin: 0;
    color: #ffffff;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.hero-image {
  flex: 1 1 400px; /* занимает место справа */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
.menu_reg li a {
    padding: 5px 16px;
    font-size: 14px;
}   

  .hero-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }
}












* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
font-family: 'FuturaPT', Arial, sans-serif;
  line-height: 1.5;
  color: #1e2c37;
}

/* Контейнеры */
.container-fluid {
  width: 100%;
	background:#e4edf5;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px; /* отступы по краям */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.header-nav .nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}

.header-nav a {
  text-decoration: none;
  color: #1e2c37;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #896930;
}

/* Content */
.content {
  padding: 40px 0;
}

.section {
  margin-bottom: 40px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background: #ffffff;
}



/* Флекс-строка */
.flex-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

/* Блоки внутри флекс-строки */
.flex-row .block {
  flex: 1;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 10px;
  text-align: center;
}

/* Отдельный блок */
.another-block {
    display: flex;
    justify-content: center;
}
.container.footer-extra-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
}



.container.footer-extra-inner.main_primain {
    justify-content: center;
}

.only_second_main.eshe .only_second {
    display: flex;    flex-wrap: wrap;
}
.footer-block.footer-menu.sup_iki {
    max-width: 1070px;
    width: 100%;
}

.menu_sh {
    max-width: 280px;
    width: 100%;
    text-decoration: none;
    color: #fff;
}

li.page_item::marker {
    content: none;
}
.footer-menu ul {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.footer-block.footer-menu li.page_item {
    width: 100%;
    max-width: 240px;
}

.footer-block.footer-menu {
    width: 100%;
}




/* Контейнер меню */
.header-nav.futersklass.eshe {
    display: flex;           /* включаем флекс */
    justify-content: center; /* выравнивание по центру */
}

/* Список UL */
.header-nav.futersklass.eshe ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
}
.footer-block {
    width: 100%;
}
/* Элементы LI */
.header-nav.futersklass.eshe ul li {
    margin: 0;
}

/* Ссылки */
.header-nav.futersklass.eshe ul li a {
    text-decoration: none;
    color: #000;             /* цвет текста */
    padding: 5px 0px;
    display: block;
}

.icon-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.icon-tooltip::after {
  content: attr(data-title);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.icon-tooltip::before {
  content: '';
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111;
  opacity: 0;
  transition: 0.2s ease;
}

.icon-tooltip:hover::after,
.icon-tooltip:hover::before {
  opacity: 1;
}
.container.foot-cont {
    display: flex;
    padding: 20px 10px;
    flex-direction: row;
    justify-content: space-between;
}
.container.oplata_pg {
    margin: 0 auto;
    text-align: center;
    max-width: 540px;
}
.opisanue {

    font-size: 18px;
    padding: 10px 0px;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}
.form_login {
    /* text-align: center; */
    /* margin: 0 auto; */
    background: #34b6fb;
    padding: 30px;
    border-radius: 20px;
}
.vhod {
    margin-top: 80px;
}
.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
  user-select: none;
}

.toggle-password:hover {
  opacity: 1;
}

.form-row.submit-row.left_form .ins_form p {
    text-align: left;
    font-size: 12px;
}

span.wpcf7-list-item-label {
    font-size: 12px;
}
span.wpcf7-list-item.first.last label {
    gap: 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
}
.form-row.submit-row.left_form.oplata_form_check {
    padding: 10px 55px;
}


/* Адаптивность */
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .header-nav .nav-list {
    flex-direction: column;
    align-items: center;
  }
}

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

  .flex-row .block {
    width: 100%;
  }
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .header-logo {
    font-size: 1.2rem;
  }
 .header-nav .nav-list {
        flex-direction: row;
        align-items: center;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
.next_menu {
    padding: 0px 0px 20px 0px;
}
.container.footer-extra-inner {
    flex-wrap: wrap;
}
.container.foot-cont {
    flex-direction: column;
}
}
