/* Altair Footer Module Styles */

.footer-module {
  background-color: #121212;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: "Gilroy", Arial, sans-serif;
}

/* Column styles */
.footer-module .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-module [class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-module .col-md-1 {
  width: 8.333333%;
}
.footer-module .col-md-2 {
  width: 16.666667%;
}
.footer-module .col-md-3 {
  width: 25%;
}
.footer-module .col-md-4 {
  width: 33.333333%;
}
.footer-module .col-md-5 {
  width: 41.666667%;
}
.footer-module .col-md-6 {
  width: 50%;
}
.footer-module .col-md-7 {
  width: 58.333333%;
}
.footer-module .col-md-8 {
  width: 66.666667%;
}
.footer-module .col-md-9 {
  width: 75%;
}
.footer-module .col-md-10 {
  width: 83.333333%;
}
.footer-module .col-md-11 {
  width: 91.666667%;
}
.footer-module .col-md-12 {
  width: 100%;
}

/* Footer title styles */
.footer-title {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

/* Убираем подчеркивание */
.footer-title:after {
  display: none;
}

/* Footer logo styles */
.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
}

/* Contact info styles */
.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 5px 0;
  line-height: 1.5;
}

.footer-contact .email,
.footer-contact .phone {
  display: block;
  margin: 10px 0;
  font-weight: 500;
}

/* Footer menu styles */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-menu li {
  padding: 5px 0;
}

.footer-menu a {
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-menu a:hover {
  opacity: 0.8;
}

.footer-menu li.active a {
  font-weight: bold;
}

/* Footer bottom section */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-company {
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal {
  margin-bottom: 15px;
  font-size: 12px;
  opacity: 0.7;
  max-width: 600px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  margin-right: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  margin-top: 20px;
  opacity: 0.7;
  font-size: 12px;
  text-align: right;
}

/* Partners section */
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.footer-partners img {
  max-height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-partners img:hover {
  opacity: 1;
}

/* Custom content styles */
.custom-content p:last-child {
  margin-bottom: 0;
}

/* Links color */
.footer-module a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-module a:hover {
  opacity: 0.8;
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 991px) {
  .footer-module [class*="col-"] {
    width: 100%;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-copyright {
    margin-top: 20px;
    text-align: left;
  }
}
