.main-footer {
  width: 100%;
  font-size: 10px;
  line-height: 12px;
  width: 100%;
  background-color: transparent;
  font-family: inherit;
  margin-top: 50px;
}
.to-top-container {
  width: 100%;
  text-align: end;
  padding: 15px 13px;
  font-size: 14px;
  line-height: 16px;
}

.to-top-container a:hover {
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.footer-navbar {
  width: 100%;
  padding: 10px 15px 20px;
}

.footer-navbar ul {
  width: 100%;
  padding-bottom: 7px;
  margin: 10px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
}

.footer-navbar ul li {
  width: 100%;
  padding: 10px 7px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  border-bottom: 1px solid #ffffff30;
}


.footer-navbar ul li:hover a::after{
  color: #4860F6;
}

.footer-navbar ul li a {
  position: relative;
  display: block;
  width: 100%;
  color: #ffffff;
}
.footer-navbar ul li a::after {
  content: '►';
  position: absolute;
  top: 0;
  right: 10px;
  color: #ffffff;
}

.contact-container {
  padding: 0 15px 20px;
  text-align: center;
}

.contact-container h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 25px 0;
}

.contact-container h3 {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-container p {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 20px;
}

.contact-container p a {
  text-decoration: underline;
}

.footer-icns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}

.icns-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
}


@media (min-width: 1024px) {
  .contact-container h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .contact-container h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    margin-bottom: 40px;
  }

  .footer-navbar ul {
    flex-direction: row;
    gap: 15px;
  }

  .footer-navbar ul li {
    border-bottom: none;
    width: fit-content;
    margin: 0;
  }

  .footer-navbar ul li a::after {
    content: none;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #4860F6;
    top: 20px;
    left: 0;
  }

  .footer-navbar ul li a:hover {
    color: #4860F6;
  }

  .footer-navbar ul li a:hover::after {
    content: "";
    opacity: 0.7;
  }

}