﻿footer {
    position: relative;
    padding: 20px 0;
    background: var(--second-background-color);
}
    footer::after {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--gradient-background-color);
    }
.footer_contact_left img {
    min-width: 30px;
    margin-top: 8px;
}
.footer_top_text {
    position: relative;
    padding: 0 25px;
    margin: 0 0 0 25px;
}

.footer_top_text:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  background: #625b71;
  top: 0;
}

.footer_top_text p {
  font-size: var(--font-size-16);
  font-style: normal;
  line-height: 24px;
  color:var(--grey-800);
  font-weight: 400;
}

.border-bottom-1 {
  border-bottom: 1px solid #625b71;
}

.footer_links ul {
  padding: 0;
  list-style: none;
  margin-top: 15px;
}

.footer_links ul li {
  margin-bottom: 5px;
}

.footer_links ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  transition: 0.3s all ease;
  display: inline-block;
}

    .footer_links ul li a:hover {
        transform: translateX(5px);
        color: var(--accent-blue);
    }

.footer_links h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer_contact span {
  color:  var(--grey-800);
  font-size: var(--font-size-12);
  line-height: 16px;
  width: 100%;
  display: inline-block;
}

.footer_contact a {
  font-weight: 500;
  line-height: 20px;
  font-size: var(--font-size-14);
}

.footer_bottom {
    width: 100%;
    background: var(--gradient-background-color);
    padding: 8px 0;
}
.footer_bottom .footer_bottom_text {
  text-align: center;
  width: 85%;
}
.footer_bottom .footer_bottom_text p {
  font-weight: 300;
  color:var(--white-color)
}
.footer_logo {
    width: 30%;
    display: flex;
    color: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.footer_logo span {
    font-size: var(--font-size-28);
    font-weight:600;
}
.footer_images_links img {
    border-radius: 10px;
}