p,
a {
  font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
}

/* первая секция  */

a {
  text-decoration: none !important;
}


.btn_hero {
  border: none;
  width: 12em;
  height: 4em;
  border-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #4042E2;
  cursor: pointer;
  transition: all 450ms ease-in-out;
}

.text {
  font-weight: 600;
  color: white;
  font-size: 20px;
}

.btn_hero:hover {
  background: linear-gradient(0deg, #606EEB, #6E70FF);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
    inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 4px rgba(255, 255, 255, 0.2),
    0px 0px 180px 0px #6E70FF;
  transform: translateY(-2px);
}


.btn_hero:hover .text {
  color: white;
}

/* конец первой секции */

/* вторая секция */
.section-2 {
  padding: 30px;
  background-color: #C9DBFF !important;
  border-radius: 1.5rem !important;

}



.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;

}

.card {
  border: 0 !important;
}

.bg-soft-danger {
  background-color: #feeff8 !important;
}



/* tabs */
.dvizh-style {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dvizh-tab {
  color: #6c757d;
  font-weight: 500;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
}

.dvizh-tab:hover {
  color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.1);
}

.dvizh-tab.active {
  color: #0d6efd;
  background-color: white;
  border-bottom: 3px solid #0d6efd;
  font-weight: 600;
}

.dvizh-content {
  background-color: white;
  border-radius: 0 8px 8px 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dvizh-title {
  color: #212529;
  font-size: 1.5rem;
}

.dvizh-text {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dvizh-features li {
  padding: 0.5rem 0;
  color: #495057;
  font-size: 1.1rem;
}

.dvizh-image {
  max-height: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dvizh-image:hover {
  transform: scale(1.03);
}

/* контакты */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.3) !important;
  /* усиленная тень */
  z-index: 10;
}

.form-section {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.social-icons a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #333;
}

.contact-wrapper {
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
}
.contacts-icon a{
  font-size: 18px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* Добавим аккуратную вертикальную линию-разделитель */
@media (min-width: 768px) {
  .border-end {
    border-right: 1px solid #e0e0e0 !important;
  }
  

}