/* MAIN */

body {
  font-family: 'Inter', sans-serif;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  height: auto;
}


/* Попап btn */

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.popup-btn img.btn-arrow {
  transition: transform 0.3s ease;
}

.popup-btn:hover img.btn-arrow {
  transform: rotate(45deg);
}

.popup-btn.blue {
  background-color: #1E3A8A;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.popup-btn.white {
  background-color: #fff;
  color: #1E3A8A;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/* Попап окно стили */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup.active {
  display: flex;
}

.popup-content {
  display: inline-block;
  background: white;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.popup-consent span {
  display: block;
  max-width: 460px;
  word-break: break-word;
  line-height: 1.4;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.popup-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.popup-form input[type="text"],
.popup-form input[type="tel"],
.popup-form input[type="email"] {
  width: 100%;
  margin-bottom: 16px;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.popup-form button {
  padding: 10px 20px;
  background: #2C4188;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.popup-consent {
  font-size: 13px;
  margin: 10px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.popup-consent input {
  margin-top: 3px;
}

/* Стили окно благодарности */

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.thank-you-modal.hidden {
  display: none;
}

.close-thank-you {
  margin-top: 20px;
  background-color: #1E3A8A;
  color: white;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 6px;
}


/* Подложка под меню */

.pre-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 93px;
  background-color: #6B7280;
}

/* Хлебные крошки */
.breadcrumbs-section {
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0 auto;
}

.breadcrumbs-container {
  max-width: 1680px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.breadcrumbs {
  font-family: 'Inter', sans-serif;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin: 130px auto 0;
  padding: 0 30px;
}

.breadcrumbs a {
  color: #1E3A8A;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #888;
}

@media (max-width: 1680px) {
.breadcrumbs-container {
  padding: 0 10px;
} 
}

@media (max-width: 1440px) {
.breadcrumbs-container {
  padding: 0 20px;
} 
}

@media (max-width: 1360px) {
.breadcrumbs-container {
  padding: 0 20px;
} 
}

@media (max-width: 1280px) {
.breadcrumbs {
  padding: 0 10px;
} 
}



/* Heder */
/* === Общие стили хедера === */
.main-header {
  font-family: 'Inter', sans-serif;
  position: fixed;
  max-width: 1920px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 93px;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s ease;
}

.main-header.scrolled {
  background: rgba(107, 114, 128, 0.7); 
}

.main-header .container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Логотип === */
.logo img {
  max-height: 50px;
  height: 100%;
  width: 100%;
}

/* === Навигация === */
.main-nav {
  font-family: 'Inter', sans-serif;
  display: flex;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 16px;
  padding: 6px 3px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu li a:hover {
  background: #0093FE;
  color: #fff;
  padding: 6px 3px;
}

/* === Действия справа === */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* === Общий блок переключателя === */
.lang-selector {
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.lang-current {
  width: 100px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid #FFF;
  padding: 6px 12px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-current img {
  width: 20px;
  height: auto;
}

.lang-dropdown {
  background: rgba(107, 114, 128, 0.7); 
  width: 100px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.lang-dropdown li {
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-dropdown a {
text-decoration: none;
color: #FFF;
}

.lang-dropdown li:hover {
  background-color: #0093FE;
  color: #fff;
}

.lang-dropdown li img {
  width: 20px;
  height: auto;
}

/* Мобильная версия */
.lang-mobile {
  height: 45px;
  display: none;
  border: 1px solid white;
  padding: 4px;
  border-radius: 50px;
  gap: 6px;
  display: none;
}

.lang-pill {
  padding: 6px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  color: white;
  cursor: pointer;
  border: 1px solid white;
}

.lang-pill.active {
  background: white;
  color: #012642;
}


.social-icons a img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.btn-contact {
  height: 42px;
  width: 180px;
  background: #fff;
  padding: 10px 20px;
  color: #012642;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: #0093FE;
  color: #fff;
}

.btn-contact img:hover {
  transform: rotate(45deg);
}

.btn-contact:hover .btn-contact-img {
  transform: rotate(45deg); 
}

/* === Бургер === */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  display: block;
}

.lang-mobile {
  order: 2;
}

.burger {
  order: 1;
}



/* === Мобильная адаптация === */

@media (max-width: 1680px) {
.nav-menu li a {
  font-size: 14px;
}
.logo img {
  width: 100%;
  height: 100%;
}
}

@media (max-width: 1440px) {
.btn-contact {
  height: 40px;
  width: 160px; 
  padding: 8px 12px;
  font-size: 12px;
}

.logo img {
  height: 45px;
  width: 240px
}

.main-header .container {
padding: 20px 30px !important;
}

}

@media (max-width: 1366px) {

.btn-contact {
  height: 38px;
  width: 150px; 
  padding: 5px 8px;
  font-size: 12px;
}
.logo img {
  height: 40px;
  width: 230px
}

.social-icons a img {
  width: 35px;
  height: 35px;
}

.main-header .container {
padding: 20px 30px !important;
}
}

@media (max-width: 1280px) {
.btn-contact {
  height: 35px;
  width: 140px; 
  padding: 5px 8px;
  font-size: 12px;
}
.logo img {
  height: 38px;
  width: 220px
}

.social-icons a img {
  width: 33px;
  height: 33px;
}

.main-header .container {
padding: 20px 20px !important;
}
}


@media (max-width: 1200px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #012642;
    padding: 10px 20px;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }
.header-button-wrapper {
  display: none;
}

.lang-mobile {
  order: 1;
}

.burger {
  order: 2;
}

.logo img {
  width: 90%;
}

  .main-nav.active {
    right: 0;
  }

  .nav-menu {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu li a {
    font-size: 14px;
    color: #fff;
  }

  .burger {
    display: flex;
    z-index: 800;
  }

  .btn-contact {
    display: none;
  }

  .social-icons a img {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }
    .lang-current,
  .lang-dropdown {
    display: none;
  }

  .lang-mobile {
    display: flex;
  }
}

@media (max-width: 768px) {
  .lang-mobile {
    height: 38px;
    padding: 3px;
    gap: 5px;
  }

  .lang-pill {
    padding: 5px 9px;
    font-size: 13px;
  }
}


@media (max-width: 480px) {
  .lang-mobile {
    height: 32px;
    padding: 2px;
    gap: 4px;
  }

  .lang-pill {
    padding: 4px 8px;
    font-size: 12px;
  }
}



/* HERO */

.hero-section {
  font-family: 'Inter', sans-serif;
  position: relative;
  padding: 0px;
  background: url('assets/img/hero-bg.jpg') center center / cover no-repeat;
  height: 960px;
  width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  overflow: hidden;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  max-height: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.hero-content h1 {
  order: 1;
  font-family: 'Inter', sans-serif;
  margin-top: 300px;
  font-size: 38px;
  font-weight: 500;

}

.hero-content p {
  font-family: 'Inter', sans-serif;
  order: 2;
  font-size: 24px;
  font-weight: 500;

}

.hero-brand {
  order: 3;
  font-family: 'Inter', sans-serif;
  margin-top: 100px;
  font-size: 237px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
}

.hero-horizontal-line {
  position: absolute;
  top: 450px;
  left: 0;
  right: 0;
  border-bottom: 1px solid #FFF;
  width: 100%;
  height: 1px;
}

/* Мобильная адаптация */

@media (max-width: 1680px) {
.hero-content h1 {
  font-size: 32px;
  text-align: left;
}
.hero-brand {
  font-size: 180px;
  text-align: left;
}

.hero-content p {
  font-size: 22px;
  text-align: left;
}
}

@media (max-width: 1440px) {

  .hero-content {
  padding: 0 30px;
  }


}

@media (max-width: 1366px) {

  .hero-content {
  padding: 0 30px;
  }


}

@media (max-width: 1280px) {
.hero-content {
  padding: 0 20px;
}
}

@media (max-width: 1200px) {

  .hero-section {
    background-position: right;
    background-size: cover;
    display: flex;
    align-items: flex-end;
  }

  .hero-horizontal-line {
    top: 500px;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .hero-content h1 {
    order: 2;
    font-size: 28px;
    text-align: left;
    margin-top: 100px;
    margin-bottom: 10px;
  }

  .hero-content p {
    order: 3;
    font-size: 18px;
    text-align: left;
    margin-bottom: 300px;
  }

  .hero-brand {
    order: 1;
    margin: 100px 0px;
    font-size: 100px;
    text-align: left;
    word-break: break-word;
    line-height: 1;
  }
}

@media (max-width: 768px) {
 .hero-section {
  height: 90%;
 }

.hero-horizontal-line {
  top: 400px;
}

  .hero-content h1 {
    font-size: 22px;
    margin-left: 20px;
  }

  .hero-content p {
    font-size: 16px;
    margin-left: 20px;
  }

  .hero-brand {
    font-size: 60px;
    margin-left: 30px;
    margin-bottom: 50px;

  }
}

@media (max-width: 480px) {
 .hero-section {
  max-height: 690px;
 }

 .hero-horizontal-line {
  top: 250px;
}
  .hero-content h1 {
    font-size: 20px;
      margin-left: 10px;
  }

  .hero-content p {
    font-size: 14px;
      margin-left: 10px;
  }

  .hero-brand {
    font-size: 36px;
      margin-left: 10px;
  }
}
@media (max-width: 320px) {
 .hero-section {
  height: 80%;
 }

    .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-brand {
    font-size: 32px;
  }
}



/* === БЛОК КОМАНДА === */

.team-section {
  font-family: 'Inter', sans-serif;
  position: relative;
  max-width: 1920px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 60px 0;
}

.team-logo-bg {
  position: absolute;
  top: 40px;
  left: 40px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.team-logo-bg img {
  height: 340px;
  width: auto;
}

.team-section .container {
  font-family: 'Inter', sans-serif !important;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}

.team-title {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.team-title span {
  color: #1E3A8A;
}

.team-content {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}

.team-text,
.team-image {
  font-family: 'Inter', sans-serif;
  flex: 1 1 50%;
  max-width: 50%;
}

.team-text {
  margin-top: 8px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-text-block.large p {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 600;
}

.team-text-block.medium ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.team-text-block.medium li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.team-text-block.medium li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #1E3A8A;
  border-radius: 0;
}

.team-text-block.medium p {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}

.team-text-block.small {
  align-items: flex-start;
  column-count: 3;
  column-width: 33%;
  margin-bottom: 30px;
}

.team-text-block.small p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.team-text-block.small span {
  color: #1E3A8A;
  font-size: 38px;
  font-weight: 700;
}

.team-btn {
  padding: 12px 24px;
  background-color: #1E3A8A;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  max-width: fit-content;
  transition: background-color 0.3s ease;
  border-radius: 12px;
}

.team-btn img {
  transition: transform 0.3s ease;
  margin-left: 8px;
  vertical-align: middle;
}

.team-btn:hover img {
  transform: rotate(45deg);
}

.team-image {
  height: 530px;
  overflow: hidden;
}

.team-image img,
.team-image video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  padding: 0;
  margin: 10px 0;
}

/* === АДАПТАЦИЯ === */
@media (max-width: 1440px) {
.team-section .container {
    padding: 0 30px !important;
  }
}

@media (max-width: 1366px) {
    .team-section .container {
    padding: 0 30px !important;
  }
}

@media (max-width: 1280px) {
.team-section .container {
  padding: 0 20px !important;
}
}

@media (max-width: 1200px) {
  .team-logo-bg img {
    height: 300px;
  }

    .team-section .container {
    padding: 0 20px !important;
  }


  .team-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .team-content {
    flex-direction: column;
  }

  .team-text,
  .team-image {
    max-width: 100%;
  }

  .team-text-block.large p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
  }

  .team-text-block.medium li::before {
    width: 10px;
    height: 10px;
    top: 6px;
  }

  .team-text-block.medium p {
    font-size: 15px;
    color: #000;
  }

  .team-text-block.small {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    text-align: center;
  }

  .team-text-block.small span {
    font-size: 28px;
  }

  .team-text-block.small p {
    font-size: 13px;
    line-height: 1.4;
    color: #000;
  }

  .team-btn {
    margin: 20px auto;
    display: block;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 14px 24px;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .team-logo-bg img {
    height: 200px;
  }


  .team-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .team-text-block.large p {
    font-size: 13px;
    color: #6B7280;
  }

  .team-text-block.medium li::before {
    width: 10px;
    height: 10px;
    top: 7px;
  }

  .team-text-block.medium p {
    font-size: 14px;
  }

  .team-text-block.small {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .team-text-block.small span {
    font-size: 24px;
  }

  .team-btn {
    font-size: 13px;
    padding: 12px 20px;
    margin: 16px auto;
  }
}

@media (max-width: 480px) {
  .team-logo-bg img {
    height: 170px;
  }

  .team-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .team-text-block.large p {
    font-size: 12px;
  }

  .team-text-block.medium p {
    font-size: 13px;
  }

  .team-text-block.medium li::before {
    width: 10px;
    height: 10px;
  }

   .team-text-block.small {
    margin-bottom: 10px;
   }

  .team-text-block.small span {
    font-size: 24px;
    font-weight: 700;
  }

  .team-text-block.small p {
    font-size: 12px;
  }

  .team-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}



/* СОтрудничаем */

.partners-section {
  font-family: 'Inter', sans-serif;
  position: relative;
  display: flex;
  max-width: 1920px;
  width: 100%;
  background-color: #fff;
  padding: 60px 0;
  margin: 0 auto;
  align-items: center;
}

.partners-container {
  max-width: 1600px;
  margin: 0px auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  align-items: center;
  padding: 0;
}

.partners-title {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto 50px;
  color: #02040B;
}

.partners-images {
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-item {
  text-align: left;
}

.partner-item img {
  max-width: 504px;
  max-height: 504px;
  object-fit: cover;
  transition: linear 0.5s;
}

.partner-item img:hover {
  transform: scale(103%);
}

.partner-caption {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #02040B;
}

.partner-item a {
text-decoration: none;
font-family: 'Inter', sans-serif;
font-size: 24px;
color: #02040B;
}

/* Адаптация */


@media (max-width: 1440px) {
.partners-container {
  padding: 0 30px;
}

.partner-item img {
  max-width: 440px;
  max-height: auto;
}

}

@media (max-width: 1366px) {

.partners-container {
  padding: 0 30px;
}

.partner-item img {
  max-width: 400px;
  max-height: auto;
}

}

@media (max-width: 1280px) {

.partner-item img {
  max-width: 380px;
  max-height: auto;
}

.partners-container {
  padding: 0 20px;
}

}


@media (max-width: 1200px) {
.partners-container {
  padding: 0 20px;
}

}

@media (max-width: 1024px) {
  .partner-item img {
    width: 320px;
    height: 320px;
  }

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

  .partner-caption {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .partners-images {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .partner-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .partner-caption {
    font-size: 18px;
  }

  .partners-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .partners-title {
    font-size: 22px;
  }

  .partner-item {
  padding: 0px;
}

  .partner-caption {
    font-size: 16px;
  }
}

/* Помощь */

.services-section a {
  text-decoration: none;
}

.services-section .link {
  text-decoration: none;
}

.services-section {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}

.services-container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  padding: 0;
  gap: 20px;
  margin: 0 auto;
}

.service-left,
.service-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-left {
  flex: 0 0 800px;
}

.service-right {
  flex: 1;
  justify-content: space-between;
}

.service-bottom {
  display: flex;
  gap: 20px;
}

.service-bottom a {
  flex: 1;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 290px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.large {
  height: 600px;
}

.service-card:hover {
  transform: translateY(-5px);
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 138, 0.6); /* #1E3A8A59 */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;

}

.content p {
  font-size: 14px;
  padding: 12px;
  margin-bottom: auto;
}

.link {
  margin-top: 12px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1440px) {
.services-container {
  padding: 0 30px;
}
.service-left {
  flex: 0 0 700px;
}
}

@media (max-width: 1360px) {
.services-container {
  padding: 0 30px;
}
.service-left {
  flex: 0 0 650px;
}
}

@media (max-width: 1280px) {
  .services-container {
  padding: 0 20px;
}

.service-left {
  flex: 0 0 600px;
}
}

@media (max-width: 1024px) {
  .services-container {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .service-left,
  .service-right,
  .service-bottom {
    flex: unset;
    width: 100%;
  }

  .service-card.large {
    height: auto;
  }

  .service-card {
    height: auto;
    min-height: 300px;
  }

  .service-bottom {
    flex-direction: column;
  }

  .service-bottom a {
    width: 100%;
  }

  .content {
    padding: 20px;
  }

  .content h3 {
    font-size: 20px;
  }

  .content p {
    font-size: 14px;
    padding: 10px 0;
  }

  .link {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 20px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    font-size: 13px;
  }

  .link {
    font-size: 13px;
    padding: 8px;
  }
}



/* === Слайдер ВНЖ === */

.residency-slider-section {
  font-family: 'Inter', sans-serif;
  max-width: 1920px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.residency-slider-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 0;
  width: 100%;
}

.residency-title {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: #02040B;
  text-align: left;
  margin: 50px auto;
  max-width: 1920px;
  width: 100%;
}

.residency-title span {
  color: #1E3A8A;
}

/* === Табы === */

.residency-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.residency-tabs .tab {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.residency-tabs .tab.active {
  background: #1c2e6d;
  color: #fff;
  border-color: #1c2e6d;
}

/* === Слайд === */

.swiper {
  position: relative;
}

.slide-content {
  display: flex;
  height: 280px;
  background: #f2f2f2;
}

.slide-content .left {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content .left .number {
  font-size: 50px;
  color: #1c2e6d;
  margin-bottom: 15px;
}

.slide-content .left h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.slide-content .left p {
  max-width: 500px;
  color: #666;
  margin-bottom: 20px;
}

.slide-content .right {
  flex: 1;
  overflow: hidden;
}

.slide-content .right img {
  max-width: 800px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* === Стрелка-ссылка === */

.number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1c2e6d;
  transition: transform 0.3s ease;
}

.arrow-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  margin-top: 0;
}

.arrow-link:hover img {
  transform: rotate(45deg);
}
/* === Навигация Swiper === */

.swiper-navigation {
  position: absolute;
  top: 30px;
  right: 50px;
  display: flex;
  width: 144px;
  height: 48px;
  align-items: center;
  z-index: 10;
}

.swiper-button-prev1,
.swiper-button-next1 {
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next1 {
  background-image: url('assets/img/arrow-slider-fw.svg');
}

.swiper-button-prev1 {
  background-image: url('assets/img/arrow-slider-back.svg');
}

.swiper-pagination1 {
  font-size: 16px;
  color: #fff;
  width: 24px;
  height: 24px;
  margin: auto !important;
}

/* === Адаптив === */

@media (max-width: 1440px) {

  .residency-slider-container {
  padding: 0 30px;
  }
  .residency-title {
    font-size: 34px;
  }
  .slide-content {
    height: 260px;
  }
  .slide-content .left {
    padding: 40px;
  }
  .slide-content .left .number {
    font-size: 46px;
  }
}

@media (max-width: 1360px) {

.residency-slider-container {
  padding: 0 30px;
  }
  .slide-content {
    height: 240px;
  }
  .slide-content .left {
    padding: 30px;
  }
  .slide-content .left .number {
    font-size: 42px;
  }
  .slide-content .left h3 {
    font-size: 20px;
  }
  .slide-content .left p {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
.residency-slider-container {
  padding: 0 20px;
}

  .residency-title {
    font-size: 32px;
  }
  .slide-content {
    height: 220px;
  }
  .slide-content .left {
    padding: 25px;
  }
  .slide-content .left .number {
    font-size: 38px;
  }
  .slide-content .right img {
    height: 220px;
  }
}

@media (max-width: 1200px) {
.slide-content .right {
  display: none;
}

  .arrow-link {
    position: static;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }

  .arrow-link img {
    align-items: end;
  }

  .swiper-navigation {
    position: static;
    justify-content: center;
    margin: 20px auto 10px;
  }

  .swiper-button-prev1,
  .swiper-button-next1 {
    width: 48px;
    height: 48px;
  }

  .swiper-pagination1 {
    font-size: 14px;
    color: #000;
    width: auto;
    margin: 0 10px;
  }
}

@media (max-width: 1024px) {
  .slide-content {
    flex-direction: column;
    height: auto;
  }

  .slide-content .left {
    padding: 20px;
  }

  .slide-content .left .number {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .slide-content .left h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .slide-content .left p {
    font-size: 14px;
    margin-bottom: 10px;
  }


  .residency-tabs {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .residency-tabs .tab {
    width: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .residency-title {
    font-size: 24px;
    margin: 20px 16px;
  }
  .residency-tabs {
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
  }
  .slide-content .left .number {
    font-size: 28px;
  }
  .slide-content .left h3 {
    font-size: 16px;
  }
  .slide-content .left p {
    font-size: 13px;
  }
  .arrow-link {
    font-size: 14px;
  }
  .arrow-link img {
    width: 20px;
    height: 20px;
  }
  .swiper-navigation {
    bottom: 5px;
    right: 10px;
    width: 100px;
  }
  .swiper-button-prev1,
  .swiper-button-next1 {
    width: 32px;
    height: 32px;
  }
}



/* Преимущества */

.advantages-section {
  max-width: 1920px;
  font-family: 'Inter', sans-serif;
  color: #012642;
  margin: 0 auto;
}

.advantages-container {
  max-width: 1600px;
  width: 100%;
  margin: 20px auto;
  padding: 0; 
}

.advantages-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.advantages-left,
.advantages-right {
  flex: 1;
  max-width: 400px;
}

.advantages-left h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.advantages-left p {
  color: #70889A;
  font-size: 16px;
}

.advantages-image {
  flex-shrink: 0;
}

.advantages-image img {
  width: 530px;
  height: 530px;
  object-fit: cover;
  border-radius: 50%;
}

.advantages-right h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.advantages-right p {
  color: #70889A;
  margin-bottom: 12px;
  font-size: 16px;
}
.bonus-text {
  color: #70889A;
  font-size: 16px;
  margin-top: 10px;
}
/* === Сетка преимуществ === */
.advantages-grid {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  gap: 0;
}
.advantage-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  padding: 40px 0;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid #1E3A8A;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #1E3A8A;
  line-height: 28px;
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantage-text {
  display: flex;
  flex-direction: column;
}
.advantage-text p {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 16px;
  color: #012642;
}
.advantage-text span {
  font-size: 16px;
  color: #70889A;
}
.adv-horizontal-line {
  height: 1px;
  background-color: #D9D9D9;
  width: 100%;
}
/* Адаптивность */
@media (max-width: 1440px) {
  .advantages-container {
    padding: 0 30px;
  }
}

@media (max-width: 1366px) {
  .advantages-container {
    padding: 0 30px;
  }
}

@media (max-width: 1280px) {
  .advantages-container {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .advantages-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advantages-left,
  .advantages-right {
    max-width: 100%;
  }

  .advantages-grid {
    flex-direction: column;
  }

  .advantage-row {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .adv-horizontal-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    margin: 0;
    padding: 40px 20px;
  }

  .advantages-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .advantages-left,
  .advantages-right {
    max-width: 100%;
  }

  .advantages-left h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .advantages-left p,
  .advantages-right p,
  .bonus-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .advantages-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
  }

  .advantages-right h3 {
    font-size: 18px;
    margin-top: 12px;
  }

  .popup-btn.blue {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
    justify-content: center;
  }

  .advantages-grid {
    gap: 24px;
  }

  .advantage-row {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .advantage-item {
    gap: 10px;
  }

  .circle {
    width: 28px;
    height: 28px;
    font-size: 13px;
    line-height: 26px;
  }

  .advantage-text p {
    font-size: 14px;
  }

  .advantage-text span {
    font-size: 13px;
    display: block;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .advantages-section {
    padding: 32px 12px;
  }

  .advantages-left h2 {
    font-size: 20px;
  }

  .advantages-image img {
    width: 240px;
    height: 240px;
  }

  .popup-btn.blue {
    font-size: 13px;
    padding: 10px 12px;
  }

  .circle {
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 22px;
  }

  .advantage-text p,
  .advantage-text span {
    font-size: 13px;
  }
}


/* Гид */

.guide-section {
  font-family: 'Inter', sans-serif;
  width: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  margin: 0 auto;
}

.guide-container {
  background-color: #1E3A8A;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  min-height: 440px;
}

.guide-content {
  max-width: 800px;
  z-index: 2;
  padding: 40px 40px;
}

.guide-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.guide-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: left;
}

.guide-btn {
  background-color: #fff;
  color: #1E3A8A;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.guide-btn:hover {
  background-color: #e6e6e6;
}

.guide-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.guide-image img {
  max-height: 540px;
  height: auto;
  width: auto;
  position: relative;
  right: 20px;
  bottom: 0;
  display: block;
}

/* Скрываем блок на планшетах и ниже, как было */

@media (max-width: 1440px) {
.guide-container {
  width: 1380px;
}

}

@media (max-width: 1366px) {
.guide-container {
  width: 1306px;
}

}

@media (max-width: 1360px) {
.guide-container {
  width: 1300px;
}

}

@media (max-width: 1280px) {
.guide-container {
  width: 1240px;
}
}


@media (max-width: 1200px) {
.guide-section {
  display: none;
}
}



/* === 6 шагов === */

.steps-section {
  font-family: 'Inter', sans-serif;
  max-width: 1920px;
  width: 100%;
  max-height: 900px;
  background: #fff;
  margin: 130px auto 0;
}

.step-container {
  max-width: 1600px;
  width: 100%;
  max-height: 900px;
  margin: 20px auto;
  padding: 0;
  background-image: url('assets/img/line-step-bg.png');
  background-position: center;
  background-repeat: no-repeat;
}

.steps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}


.steps-nav-buttons {
  display: flex;
  gap: 10px;
}

.steps-section h2 {
  font-size: 38px;
  color: #012642;
  text-align: left;
  margin-bottom: 20px;
}

.steps-section h2 span {
  color: #1E3A8A;
}

.steps-swiper {
  width: 100%;
  height: 630px;
  overflow: hidden;
}

.swiper-hidden-slide {
  display: none !important;
}


.step {
  background-color: rgba(238, 238, 238, 0.7);
  display: flex;
  flex-direction: column;
  max-height: 800px;
  margin: 20px auto;
  padding: 20px;
}

.step-number {
  font-size: 28px;
  font-weight: bold;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 20px;
  color: #012642;
  margin-bottom: 10px;
}

.step-text {
  font-size: 16px;
  color: #70889A;
  margin-bottom: 10px;
}

.step-note {
  font-size: 14px;
  color: #70889A;
  margin-bottom: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  gap: 20px;
}

.swiper-button-next {
  background-image: url('assets/img/arrow-slider-fw.svg');
}

.swiper-button-prev {
  background-image: url('assets/img/arrow-slider-back.svg');
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

@media (max-width: 1600px) {
.step-container {
  padding: 0 30px;
}
}

@media (max-width: 1440px) {
.step-container {
  padding: 0 30px;
}
.steps-swiper {
  width: 100%;
  height: 680px;
}
}

@media (max-width: 1366px) {
.step-container {
  padding: 0 30px;
}
}

@media (max-width: 1280px) {
.step-container {
  padding: 0 20px;
}
}

@media (max-width: 768px) {
.steps-section h2 {
  font-size: 28px;
}
}
@media (max-width: 400px) {
  .step-container {
    padding: 0 12px;
  }

  .steps-nav-buttons {
    gap: 8px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .step {
    margin: 10px 0;
    padding: 16px;
  }
}




/* Полезное */

.articles-section {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  max-width: 1920px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}

.articles-container {
  max-width: 1600px;
  width: 100%;
  margin: 20px auto;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}

.articles-header {
  display: flex;
  gap: 16px;
  margin: 20px 0px;
  text-align: left;
}

.articles-header h2 {
  font-size: 32px;
  color: #012642;
  text-align: left !important;
  margin-left: 0;
}

.articles-navigation {
  display: flex;
  gap: 12px;
}

.articles-section h2 {
  font-size: 38px;
  color: #012642;
  margin: 40px auto;
}

.article-card {
  max-width: 520px;
  width: 100%;
  height: 624px;
  background-color: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-date {
  color: #1E3A8A;
  font-size: 14px;
  margin-bottom: 12px;
}

.article-card h3 {
  color: #012642;
  font-size: 20px;
  margin-bottom: 10px;
}

.article-card p {
  color: #70889A;
  font-size: 16px;
  margin-bottom: auto;
}

.read-more {
  margin-top: 20px;
  color: #1E3A8A;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more span {
  font-size: 16px;
}

.articles-button {
  text-align: center;
  margin-top: 20px;
}

.all-articles-btn {
  background-color: #1E3A8A;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.all-articles-btn:hover {
  background-color: #072136;
}

/* Навигация для слайдера */
.articles-navigation {
  display: none;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.articles-button-prev,
.articles-button-next {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  cursor: pointer;
  padding: 0;
}

.articles-button-prev {
  background-image: url('assets/img/arrow-slider-back.svg');
}

.articles-button-next {
  background-image: url('assets/img/arrow-slider-fw.svg');
}

/* Мобильный */

@media (max-width: 1440px) {
.articles-container {
  padding: 20px 30px;
}

}

@media (max-width: 1366px) {
.articles-container {
  padding: 20px 30px;
}
}

@media (max-width: 1280px) {
.articles-container {
  padding: 20px 20px;
}
}

@media (max-width: 768px) {
  .articles-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
  }

  .articles-header h2 {
    font-size: 24px;
    margin: 0;
  }

  .articles-navigation {
    display: flex;
    gap: 8px;
  }

  .articles-button-prev,
  .articles-button-next {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    margin-top: 10px;
  }

  .articles-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .articles-slider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .articles-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .articles-slider,
  .articles-slider .swiper-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
}




/* Получение ВНЖ Intro */

.company-intro {
  background: url('assets/img/VFT 2.png') no-repeat left center;
  background-size: contain;
  height: 228px;
  max-width: 1920px;
  width: 100%;
  display: flex;
  margin: 50px auto 0;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.company-intro .container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-intro .intro-left {
  width: 70%;
}

.company-intro .intro-right {
  max-width: 460px;
  padding: 0 20px 20px;
  width: 30%;
}

.company-intro .intro-left h2 {
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.company-intro .intro-left .blue {
  color: #1c2e6d;
}


.company-intro .intro-right .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
  text-align: left;
}

.company-intro .intro-button {
  background-color: #1c2e6d;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.company-intro .intro-button span {
  font-size: 16px;
}

.company-intro .intro-button img.btn-contact-img {
  transition: transform 0.3s ease;
}

.company-intro .intro-button:hover img.btn-contact-img {
  transform: rotate(45deg);
}

@media (max-width: 1600px) {
  .company-intro .container {
    padding: 0 30px !important;
  }
  .company-intro {
    height: 210px;
  }

  .company-intro .intro-left h2 {
    font-size: 36px;
  }

  .company-intro .intro-right {
    max-width: 420px;
  }
}

@media (max-width: 1440px) {
  .company-intro .container {
    padding: 0 30px !important;
  }
  .company-intro {
    height: 200px;
  }

  .company-intro .intro-left h2 {
    font-size: 34px;
  }

  .company-intro .intro-right {
    max-width: 400px;
  }
}

@media (max-width: 1366px) {
.company-intro .container {
  padding: 0 30px !important;
}
}

@media (max-width: 1280px) {
  .company-intro .container {
    padding: 0 20px !important;
  }
  .company-intro {
    height: 190px;
  }

  .company-intro .intro-left h2 {
    font-size: 30px;
  }

  .company-intro .intro-right {
    max-width: 360px;
  }
}


@media (max-width: 1200px) {
  .company-intro .container {
    padding: 0 20px !important;
  }
}

@media (max-width: 1024px) {
  .company-intro .container {
    padding: 0 20px !important;
  }
  .company-intro {
    flex-direction: column;
    height: auto;
    padding: 30px 0;
    align-items: flex-start;
    background-position: 0; 
    background-size: 20%;
    gap: 20px;
  }

  .company-intro .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .company-intro .intro-left,
  .company-intro .intro-right {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .company-intro .intro-left h2 {
    font-size: 28px;
  }

  .company-intro .intro-right .subtitle {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .company-intro {
    padding: 20px 0;
    background-size: 65%;
  }

  .company-intro .intro-left h2 {
    font-size: 24px;
  }

  .company-intro .intro-right .subtitle {
    font-size: 12px;
  }

  .company-intro .intro-button {
    font-size: 13px;
    padding: 10px 16px;
  }

  .company-intro .intro-button span {
    font-size: 14px;
  }

  .company-intro .intro-button img.btn-contact-img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .company-intro .intro-left h2 {
    font-size: 20px;
  }

  .company-intro .intro-right .subtitle {
    font-size: 11px;
  }

  .company-intro .intro-button {
    font-size: 12px;
    padding: 8px 14px;
  }

  .company-intro .intro-button span {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .company-intro .intro-left h2 {
    font-size: 18px;
  }

  .company-intro .intro-right .subtitle {
    font-size: 10px;
  }

  .company-intro .intro-button {
    font-size: 11px;
    padding: 6px 12px;
  }

  .company-intro .intro-button span {
    font-size: 12px;
  }

  .company-intro .intro-button img.btn-contact-img {
    width: 14px;
    height: 14px;
  }
}


/* Услуги ВНЖ */

.top {
  font-family: 'Inter', sans-serif;
  position: relative;
  top: -100px;
  height: 0;
  margin: 0 auto;
}

.services {
  max-width: 1920px;
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.services-container1 {
  width: 100%;
  max-width: 1600px;
  padding: 0;
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
}

.services-title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
}

.services-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.services-btn {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  cursor: pointer;
}

.services-btn.active {
  background-color: #1E3A8A;
  color: white;
  border-color: #1E3A8A;
}


.service-item {
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  align-items: flex-start;
}
.service-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 
  minmax(50px, 80px) 
  minmax(200px, 420px) 
  minmax(600px, 900px) 
  minmax(50px, 100px);
  gap: 20px;
  align-items: start;
}

.service-number {
  font-size: 42px;
  font-weight: 500;
  color: #1d2b6c;
  margin-top: -10px;
}
.arrow-grid {
  display: flex;
  padding: 0;
  margin: 10px 20px;
}

.service-title {
  gap: 20px;
  font-size: 24px;
  line-height: 1;
}

.service-title span {
  color: #888;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.service-description span {
font-size: 14px;
font-weight: bold;
}
.service-description strong {
  font-size: 24px;
}

.service-description ul {
  padding-left: 24px;
  margin: 10px 0;
}

.service-description li {
  margin-bottom: 6px;
  list-style: disc;
}

.price {
  font-size: 24px;
  color: #1d2b6c;
  font-weight: 600;
  margin-top: 5px;
}

.service-arrow {
  max-width: 36px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.service-arrow img {
  width: 36px;
  height: 36px;
  padding: 0;
  margin-top: -10px;
}

/* Адаптив ВНЖ */

@media (max-width: 1600px) {
  .services-container1 {
    padding: 0 30px;
  }
  .service-grid {
    grid-template-columns: 50px 280px 1fr 50px;
    gap: 20px;
  }

  .service-number {
    font-size: 40px;
  }

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

  .service-description {
    font-size: 14px;
  }

  .price,
  .service-description strong {
    font-size: 22px;
  }
}

@media (max-width: 1440px) {
  .services-container1 {
    padding: 0 30px;
  }

  .service-grid {
    grid-template-columns: 40px 260px 1fr 40px;
  }

  .service-number {
    font-size: 36px;
  }

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

  .price,
  .service-description strong {
    font-size: 20px;
  }
}

@media (max-width: 1280px) {
    .services-container1 {
    padding: 0 20px;
  }
  .service-grid {
    grid-template-columns: 36px 220px 1fr 36px;
  }

  .service-number {
    font-size: 34px;
  }

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

  .service-description {
    font-size: 13px;
  }

  .price,
  .service-description strong {
    font-size: 18px;
  }

  .service-arrow img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 1200px) {
    .services-container1 {
    padding: 0 20px;
  }
  .service-grid {
    grid-template-columns: 36px 210px 1fr 36px;
  }
}

@media (max-width: 1024px) {
     .services {
    padding: 40px 16px;
  }
.service-number {
  font-size: 24px;
}

  .services-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 24px;
  }

  .services-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px auto;
    justify-content: center;
  }

  .services-btn {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 18px;
    white-space: nowrap;
    width: auto;
  }

  .service-grid {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    position: relative;
  }
  .service-title {
   font-size: 18px;
  }
  .service-title span {
    font-size: 14px;
    color: #888;
  }

  .service-description {
    font-size: 14px;
    position: relative;
  }

  .service-description p {
    margin-bottom: 12px;
  }

   .service-description strong {
    font-size: 18px;
   }

  .service-description ul {
    padding-left: 20px;
    margin: 12px 0;
  }

  .service-description li {
    margin-bottom: 6px;
    list-style: disc;
  }

  .price {
    font-size: 18px;
    color: #1d2b6c;
    font-weight: 600;
    margin-top: 8px;
  }

  .service-arrow {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 32px;
    height: 32px;
  }

  .service-arrow img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .services-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .services-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .service-number {
    font-size: 26px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 11px;
  }

  .price,
  .service-description strong {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 24px;
  }

  .services-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .service-number {
    font-size: 22px;
  }

  .service-title {
    font-size: 14px;
  }

  .service-description {
    font-size: 10px;
  }

  .price,
  .service-description strong {
    font-size: 14px;
  }

  .service-arrow img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 320px) {
  .services-title {
    font-size: 20px;
  }

  .services-btn {
    font-size: 10px;
    padding: 4px 10px;
  }

  .service-number {
    font-size: 20px;
  }

  .service-title {
    font-size: 13px;
  }

  .service-description {
    font-size: 9px;
  }

  .price,
  .service-description strong {
    font-size: 12px;
  }

  .service-arrow img {
    width: 16px;
    height: 16px;
  }
}


/* Форма обратной связи */

.contact-section {
  font-family: 'Inter', sans-serif;
  background: url('assets/img/form-bg.jpg') no-repeat center center / cover;
  padding: 80px 0;
  width: 100%;
  height: 650px;
  margin: 0 auto;
}

.contact-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
  align-items: stretch;
}

.contact-text {
  color: #fff;
  max-width: 612px;
  gap: 20px;
  text-align: left;
}

.contact-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: 20px;
}

.contact-text p {
  font-size: 24px;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border-radius: 0px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.iti {
  width: 100% !important; 
  margin-bottom: 20px !important;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 30px;
  color: #666;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-wrapper a {
  color: #2b4af5;
  text-decoration: underline;
}

.contact-form button {
  background: #1e2a5e;
  color: #fff;
  font-size: 16px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #122048;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 1600px) {
.contact-wrapper {
  padding: 0 30px;
}

  .contact-text h2 {
    font-size: 46px;
  }

  .contact-text p {
    font-size: 22px;
  }

  .contact-form h3 {
    font-size: 26px;
  }
}

@media (max-width: 1440px) {
  .contact-section {
    height: auto;
    padding: 60px 0;
  }
.contact-wrapper {
  padding: 0 30px;
}
  .contact-text h2 {
    font-size: 42px;
  }

  .contact-text p {
    font-size: 20px;
  }

  .contact-form {
    padding: 32px;
  }
}

@media (max-width: 1366px) {
  .contact-wrapper {
    gap: 30px;
    padding: 0 30px;
  }
}

@media (max-width: 1200px) {
  .contact-wrapper {
    gap: 30px;
    padding: 0 20px;
  }

  .contact-text h2 {
    font-size: 38px;
  }

  .contact-text p {
    font-size: 18px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .contact-form input,
  .contact-form button {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
  }

  .contact-text {
    max-width: 100%;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 36px;
  }

  .contact-text p {
    font-size: 18px;
  }

  .contact-form {
    max-width: 100%;
    width: 100%;
  }

  .contact-section {
    height: auto;
  }
}

@media (max-width: 768px) {
  .contact-text h2 {
    font-size: 30px;
  }

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

  .contact-form {
    padding: 24px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .contact-form input {
    padding: 14px 18px;
    font-size: 15px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .contact-text h2 {
    font-size: 26px;
  }

  .contact-text p {
    font-size: 15px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .contact-form input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .checkbox-wrapper {
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px 18px;
  }
}

@media (max-width: 320px) {
  .contact-text h2 {
    font-size: 24px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .contact-form h3 {
    font-size: 18px;
  }

  .contact-form input {
    font-size: 13px;
    padding: 10px 14px;
  }

  .contact-form button {
    font-size: 13px;
    padding: 10px 16px;
  }
}


/* Полезное */

.blog-section {
  font-family: 'Inter', sans-serif;
  margin: 40px auto 0;
  padding: 60px 0;
  max-width: 1920px;
  width: 100%;
}
.container{
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 30px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.blog-filters .filter {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.blog-filters .filter.active,
.blog-filters .filter:hover {
  background-color: #00358D;
  color: white;
  border-color: #00358D;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  justify-content: space-between;
}

.blog-card {
  background: white;
  max-width: 500px;
  height: 528px !important;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
}

.blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: auto;
}

.read-more {
  margin-top: 20px;
  font-size: 14px;
  color: #00358D;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more span {
  font-size: 16px;
}


.filter-button {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.filter-button.active,
.filter-button:hover {
  background-color: #00358D;
  color: white;
  border-color: #00358D;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #00358D;
  cursor: pointer;
  background: white;
}

.pagination .page.active {
  background-color: #00358D;
  color: white;
  border-color: #00358D;
}

@media (max-width: 1600px) {
.container {
  padding: 0 30px !important;
}

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 1440px) {
  .container {
  padding: 0 30px !important;
}
  .section-title {
    font-size: 34px;
  }

  .blog-card {
    max-width: 480px;
    height: 500px !important;
  }

  .blog-card img {
    height: 350px !important;
  }
}

@media (max-width: 1366px) {
.container {
  padding: 0 30px !important;
}
}

@media (max-width: 1280px) {
.container {
  padding: 0 20px !important;
}
.section-title {
    font-size: 32px;
}
.blog-card {
  height: 460px !important;
}
.blog-card img {
  height: 310px !important;
}
}

@media (max-width: 1024px) {
.container {
  padding: 0 20px !important;
}
.section-title {
    font-size: 28px;
    text-align: center;
}
.blog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}


  .blog-card {
    height: auto !important;
  }

  .blog-card img {
    height: 300px !important;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .blog-filters {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

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

  .blog-card {
    max-width: 100%;
  }

  .blog-card img {
    height: 280px !important;
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    text-align: center;
  }

  .blog-filters .filter {
    font-size: 13px;
    padding: 8px 16px;
  }

  .blog-card img {
    height: 240px !important;
  }

  .blog-title {
    font-size: 15px;
  }

  .blog-desc {
    font-size: 12px;
  }

  .read-more {
    font-size: 13px;
  }

  .read-more span {
    font-size: 14px;
  }

  .pagination .page {
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .blog-filters .filter {
    font-size: 12px;
    padding: 6px 14px;
  }

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

  .blog-title {
    font-size: 14px;
  }

  .read-more {
    font-size: 12px;
  }

  .read-more span {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .blog-card img {
    height: 200px !important;
  }

  .pagination .page {
    padding: 5px 10px;
    font-size: 12px;
  }
}


/* === О Нас === */

.about-section {
  font-family: 'Inter', sans-serif;
  max-width: 1920px;
  width: 100%;
  background-color: #fff;
  padding: 40px 0;
  margin: 0 auto 40px;
}

.about-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  box-sizing: border-box;
}

.about-title {
  max-width: 1600px;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  margin: 30px auto;
  padding: 0;
}

.about-left {
  flex: 0 0 40%;
  max-width: 100%;
}

.about-left img {
  width: 100%;
  height: 532px;
  object-fit: cover;
  display: block;
}

.about-right {
  flex: 1;
  position: relative;
  padding-bottom: 0px;
}

.about-logo {
  width: 100%;
  max-width: 500px;
  height: 184px;
  background: url('assets/img/VFT 2.png') no-repeat left center / contain;
  margin-bottom: 20px;
}

.about-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 110px;
  line-height: 1;
  color: #2C4188;
  margin: 0;
}

.about-description,
.about-mission p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  max-width: 500px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.about-description {
  margin-bottom: 0px;
}

.about-mission h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin: 20px 0;
}

.passport-image {
  position: absolute;
  bottom: -95px;
  right: 0;
  width: 250px;
  height: 250px;
  z-index: 1;
}

@media (max-width: 1680px) {
.about-container {
  padding: 0 20px;
}

  .about-title {
    font-size: 36px;
    padding: 0 20px;
  }

  .about-logo-text {
    font-size: 100px;
  }

  .passport-image {
    width: 230px;
    height: 230px;
    bottom: -80px;
  }
}

@media (max-width: 1440px) {
  .about-container {
  padding: 0 30px;
}
  .about-title {
    font-size: 34px;
    padding: 0 30px;
  }

  .about-left img {
    height: 480px;
  }

  .about-logo-text {
    font-size: 90px;
  }

  .passport-image {
    width: 210px;
    height: 210px;
    bottom: -70px;
  }
}

@media (max-width: 1280px) {
  .about-container {
  padding: 0 30px;
}
  .about-title {
    font-size: 32px;
    padding: 0 30px;
  }

  .about-container {
    gap: 30px;
  }

  .about-left img {
    height: 420px;
  }

  .about-logo-text {
    font-size: 80px;
  }

  .passport-image {
    width: 200px;
    height: 200px;
    bottom: -60px;
  }
}

@media (max-width: 1024px) {
  .about-container {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-title {
    text-align: center;
    font-size: 28px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-left img {
    height: auto;
    max-height: 400px;
  }

  .about-logo {
    margin: 0 auto 20px;
  }

  .about-logo-text {
    font-size: 70px;
  }

  .passport-image {
    position: relative;
    bottom: 0;
    margin: 30px auto 0;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 24px;
  }

  .about-logo-text {
    font-size: 56px;
  }

  .about-description,
  .about-mission p {
    font-size: 13px;
  }

  .about-mission h2 {
    font-size: 20px;
  }

  .passport-image {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 22px;
    margin: 20px auto;
  }

  .about-logo-text {
    font-size: 42px;
  }

  .about-description,
  .about-mission p {
    font-size: 12px;
  }

  .about-mission h2 {
    font-size: 18px;
  }

  .passport-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 360px) {
  .about-logo-text {
    font-size: 36px;
  }

  .about-mission h2 {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .about-logo-text {
    font-size: 32px;
  }

  .passport-image {
    width: 130px;
    height: 130px;
  }
}


/* === Мобильная адаптация ===

@media (max-width: 1280px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 0px;
  }

  .about-left,
  .about-right {
    width: 100%;
    max-width: 100%;
  }

  .about-left {
    order: 1;
    margin-bottom: 0;
  }

  .about-left img {
    height: auto;
    margin: 0;
    padding: 0;
  }

  .about-logo {
    width: 80%;
    height: auto;
  }

  .about-logo-text {
    font-size: 48px;
  }

  .passport-image {
    display: none;
  }
}
 */

/* Команда в "О нас" */

/* Блок "Команда" */


.team-section1 {
  font-family: 'Inter', sans-serif;
  padding: 0;
  max-width: 1920px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.team-container1 {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

.team-header1 {
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap;
  padding: 0;
}

.team-title1 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin: 0;
  color: #000;
  text-align: left !important;
}

.team-navigation1 {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-items: center;
}

.swiper-button-prev.team-button-prev1,
.swiper-button-next.team-button-next1 {
  background: #E8EDFB;
  color: #2C4188;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-bottom: -5px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  cursor: pointer;
}

.swiper-button-prev.team-button-prev1 {
  background-image: url('assets/img/arrow-slider-back.svg');
}

.swiper-button-next.team-button-next1 {
  background-image: url('assets/img/arrow-slider-fw.svg');
}

.team-pagination1 {
  width: 20px;
  height: 36px;
  font-size: 16px;
  font-weight: 500;
  color: #2C4188;
  margin: 0;
  padding: 0;
}

.team-swiper1 {
  position: relative;
  padding-bottom: 40px;
  justify-content: space-between;
}

.team-slide1 {
  text-align: center;
}

.team-photo1 {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.team-name1 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
}

.team-position1 {
  font-size: 14px;
  color: #2C4188;
}

@media (max-width: 1680px) {
.team-container1 {
  padding: 0 20px;
}

  .team-title1 {
    font-size: 36px;
  }

  .team-photo1 {
    max-width: 280px;
  }
}

@media (max-width: 1440px) {
  .team-container1 {
  padding: 0 30px;
}
  .team-title1 {
    font-size: 34px;
  }

  .team-photo1 {
    max-width: 260px;
  }

  .team-name1 {
    font-size: 18px;
  }

  .team-position1 {
    font-size: 13px;
  }
}

@media (max-width: 1280px) {
  .team-container1 {
  padding: 0 30px;
}
  .team-title1 {
    font-size: 32px;
  }

  .team-header1 {
    margin: 30px 0;
  }

  .swiper-button-prev.team-button-prev1,
  .swiper-button-next.team-button-next1 {
    width: 32px;
    height: 32px;
  }

  .team-photo1 {
    max-width: 240px;
  }
}

@media (max-width: 1024px) {
  .team-container1 {
  padding: 0 20px;
}
  .team-title1 {
    font-size: 30px;
  }

  .team-photo1 {
    max-width: 220px;
  }

  .team-name1 {
    font-size: 16px;
  }

  .team-position1 {
    font-size: 12px;
  }

  .team-navigation1 {
    gap: 10px;
  }

  .swiper-button-prev.team-button-prev1,
  .swiper-button-next.team-button-next1 {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .team-title1 {
    font-size: 26px;
    text-align: center !important;
    width: 100%;
  }

  .team-header1 {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }

  .team-navigation1 {
    justify-content: center;
    margin-top: 10px;
  }

  .team-photo1 {
    max-width: 200px;
  }

  .team-name1 {
    font-size: 16px;
  }

  .team-position1 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .team-title1 {
    font-size: 22px;
  }

  .team-photo1 {
    max-width: 180px;
  }

  .team-name1 {
    font-size: 14px;
  }

  .team-position1 {
    font-size: 11px;
  }

  .swiper-button-prev.team-button-prev1,
  .swiper-button-next.team-button-next1 {
    width: 26px;
    height: 26px;
    background-size: 12px 12px;
  }
}

@media (max-width: 320px) {
  .team-title1 {
    font-size: 20px;
  }

  .team-photo1 {
    max-width: 160px;
  }

  .team-name1 {
    font-size: 13px;
  }

  .team-position1 {
    font-size: 10px;
  }
}

/* Контакты */

.contacts-section {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  padding: 0;
  max-width: 1920px;
  width: 100%;
  height: auto;
  margin: 50px auto 0;
}

.contacts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1600px;
  padding: 0;
  margin: 30px auto 100px;
}

.contacts-left {
  max-width: 1600px;
  max-height: 612px;
  height: 100%;
  padding: 0;
  gap: 20px;
}

.contacts-left h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.phone-block {
  background-color: #1E3A8A;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.phone-number {
  font-size: 28px;
  font-weight: 600;
}

.phone-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 10px;
  font-size: 14px;
}

.phone-action a {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}
.phone-action img {
  width: 24px;
  height: 24px;
  margin-left: 130px;
}
  

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  height: 200px;
  background-color: #eee;
  border-radius: 4px;
  padding: 16px;
}

.contact-card .label {
  font-size: 24px;
  color: #1E3A8A;
  margin-bottom: 6px;
}

.icon-text {
  margin-top: 30px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-text img {
  width: 36px;
  height: 36px;
  fill: #0093FE;
  margin: 0 5px;
}

.icon-text a {
  color: #000;
  font-size: 24px;
  display: flex;
  text-decoration: none;
}

.contacts-map {
  max-width: 790px;
  max-height: 585px;
  height: 100%;
  margin-top: 62px;
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 1680px) {
  .contacts-container {
    gap: 30px;
    margin: 30px auto 80px;
    padding: 0;
  }

  .contacts-left h2 {
    font-size: 34px;
  }

  .phone-number {
    font-size: 26px;
  }

  .contact-card .label,
  .icon-text,
  .icon-text a {
    font-size: 22px;
  }
}

@media (max-width: 1440px) {
  .contacts-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px auto 70px;
    padding: 0 30px;
  }

  .contacts-left h2 {
    font-size: 32px;
  }

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

  .icon-text,
  .icon-text a {
    font-size: 20px;
    gap: 16px;
  }

  .phone-action img {
    margin-left: 100px;
  }
}

@media (max-width: 1280px) {
  .contacts-container {
    padding: 0 20px;  
  }
}

@media (max-width: 1200px) {
  .contacts-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 30px auto 60px;
    padding: 0 20px;
  }

  .contacts-map {
    max-width: 100%;
    height: 400px;
    margin-top: 0;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    height: auto;
  }

  .icon-text a {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .contacts-container {
    padding: 0 20px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contacts-left h2 {
    font-size: 28px;
  }

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

  .icon-text {
    flex-direction: row;
    gap: 14px;
  }

  .phone-action img {
    margin-left: 60px;
  }
}

@media (max-width: 768px) {
  .contacts-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .phone-number {
    font-size: 20px;
  }

  .contact-card .label {
    font-size: 20px;
  }

  .icon-text {
    font-size: 18px;
    gap: 12px;
  }

  .icon-text a {
    font-size: 18px;
  }

  .phone-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .phone-action img {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .contacts-container {
    padding: 0 20px;
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contacts-map {
    height: 300px;
  }

  .icon-text {
    font-size: 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .icon-text a {
    font-size: 16px;
  }

  .phone-number {
    font-size: 18px;
  }

  .phone-action a {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .contacts-container {
    padding: 0 20px;
    margin: 20px auto 40px;
    gap: 20px;
  }

  .contacts-left h2 {
    font-size: 20px;
  }

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

  .contact-card .label {
    font-size: 18px;
  }

  .icon-text,
  .icon-text a {
    font-size: 14px;
  }

  .phone-action a {
    font-size: 12px;
  }
}

/* Футер*/

/* === PRE-FOOTER === */

.pre-footer {
  font-family: 'Inter', sans-serif;
  max-width: 1920px;
  width: 100%;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  margin: 0 auto;
}

.social-contact-section {
  max-width: 1600px;
  width: 100%;
  padding: 0;
  margin: 20px auto;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.social-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.social-text {
  flex: 1;
  min-width: 280px;
  border-right: 1px solid #D9D9D9;
}

.social-title {
  font-size: 38px;
  font-weight: 500;
  color: #222;
  line-height: 1.1;
}

.social-title span {
  color: #1E3A8A;
}

.social-subtext {
  font-size: 24px;
  color: #444;
  margin-top: 10px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
}

.social-link img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-link:hover img {
  transform: scale(1.1);
}

.vertical-line {
  border-right: 1px solid #D9D9D9;
}


/* === FOOTER === */

.site-footer {
  width: 100%;
  height: auto;
  background-color: #EDEDED;
  box-sizing: border-box;
  min-height: fit-content;
  color: #02040B;
  font-size: 16px;
  padding: 60px 0 0;
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
}

.footer-row-mobile {
  display: none;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  background-color: #EDEDED;

}

.footer-main {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0;
}

.footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-bottom: 15px;
}

.footer-description {
  color: #6B7280;
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.4;
}

.site-footer h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  color: #02040B;
}

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

.site-footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer ul li a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer ul li a:hover {
  color: #003366;
  text-decoration: underline;
}

.social-icons-foot {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons-foot img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icons-foot a:hover img {
  transform: scale(1.1);
}


/* === FOOTER BOTTOM === */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 14px;
  color: #6B7280;
}

.footer-bottom a {
  color: #6B7280;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* === PIRANIA BUTTON === */

.pirania-button {
  display: flex;
  align-items: center;
  gap: 10px;
  float: right;
  background-color: #222;
  color: #fff;
  border-radius: 5px;
  padding: 9px 10px;
  font-size: 14px;
  text-decoration: none;
  max-height: 34px;
  width: fit-content;
  border: none;
  margin-right: 5px;
  margin-bottom: 5px;
}

.pirania-button:hover {
  color: #FC7419;
  transition: color 0.2s ease;
}

.pirania-logo {
  width: 46px;
  height: 16px;
  flex-shrink: 0;
}


@media (max-width: 1680px) {
  .social-contact-container,
  .footer-main,
  .footer-bottom {
    gap: 30px;
    padding: 0px;
  }

  .social-title {
    font-size: 34px;
  }

  .social-subtext,
  .social-link {
    font-size: 20px;
  }

  .footer-logo {
    max-width: 220px;
  }
}

@media (max-width: 1440px) {
  .footer-main
  .footer-bottom {
    gap: 20px;
    padding: 0 10px;
  }

  .social-contact-container {

    padding: 0 30px;
  }

  .social-title {
    font-size: 30px;
  }

  .social-subtext {
    font-size: 18px;
  }

  .social-link {
    font-size: 18px;
  }

  .social-link img {
    width: 36px;
    height: 36px;
  }

  .footer-logo {
    max-width: 200px;
  }

  .footer-description {
    font-size: 13px;
  }
}
@media (max-width: 1280px) {
  .social-contact-container {
    padding: 0 20px;
  }

  .footer-main {
    gap: 30px;
    flex-wrap: wrap;
    padding: 0;
  }

  .footer-logo {
    margin-bottom: 20px;
    padding: 0;
  }
}

@media (max-width: 1200px) {  
.social-contact-container {
  align-items: flex-start;
  flex-direction: column;
}

.social-text {
  border-right: none;
  padding-right: 0;
}

.social-buttons {
  flex-direction: row;
  gap: 20px;
}


}

@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
 .footer-row-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    margin-top: 10px;
  }

  .footer-row-mobile .footer-col {
    flex: 1;
    min-width: 120px;
  }

  .footer-col--contacts:not(.footer-row-mobile .footer-col--contacts) {
    display: none;
  }

  .footer-col--about:not(.footer-row-mobile .footer-col--about) {
    display: none;
  }

  .footer-main > .col:nth-child(2),
  .footer-main > .col:last-child {
    display: none;
  }

  .footer-logo {
  width: 100% !important;
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  }

  .footer-logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    float: none;
  }

  .footer-description {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .pirania-button {
    float: none;
    margin: 10px auto 0;
  }
}
  .vertical-line {
    display: none;
  }

@media (max-width: 768px) {
  .social-title {
    font-size: 24px;
  }


  .social-subtext,
  .social-link {
    font-size: 16px;
  }

  .social-link img {
    width: 30px;
    height: 30px;
  }

  .footer-description {
    font-size: 12px;
  }

  .site-footer h6 {
    font-size: 14px;
  }

  .site-footer ul li {
    font-size: 13px;
  }
}

  .pirania-button {
    font-size: 12px;
    padding: 10px;
    float: none;
  }

  .pirania-logo {
    width: 40px;
    height: 12px;
  }

@media (max-width: 480px) {
  .social-contact-container {
    padding: 0 20px;
  }

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

  .social-subtext,
  .social-link {
    font-size: 14px;
  }

  .social-link img {
    width: 26px;
    height: 26px;
  }

  .footer-main {
    padding: 0 20px;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 12px;
    gap: 5px;
  }
}

@media (max-width: 320px) {


  .footer-row-mobile {
  padding: 0;
  margin: 0;
  }
  .social-contact-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
  }

  .social-title {
    font-size: 18px;
  }

  .social-subtext {
    font-size: 13px;
  }

  .social-link {
    font-size: 13px;
    gap: 8px;
  }

  .social-link img {
    width: 24px;
    height: 24px;
  }

  .footer-main {
    padding: 0;
    gap: 20px;
  }

  .footer-description {
    font-size: 11px;
    line-height: 1.3;
  }

  .site-footer h6 {
    font-size: 13px;
  }

  .site-footer ul li {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px 0;
  }

  .pirania-button {
    font-size: 12px;
    padding: 8px 10px;
    margin: 10px auto 0;
    gap: 8px;
  }

  .pirania-logo {
    width: 36px;
    height: 14px;
  }

}

