.footer {
  background-color: #6a4c72;
  color: #fff;
  margin-top: 30px;
  padding: 1.5rem 0 12rem;
  position: relative;
  letter-spacing: 1px;
  overflow: hidden;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
}

.footer__bottom > :nth-child(1),
.footer__bottom > :nth-child(3) {
    flex: 1;
}

.footer__bottom > :nth-child(2) {
    flex: 2;
}

.footer small {
  opacity: 0.8;
}

.footer h3 {  
  font-weight: 700;
}

.footer_msg a {
  font-size: 16px;
  font-weight: 400;
	color: #4877F5!important;
}
.footer .copyright_f {
  font-size: 16px
}

.footer_msg {
  width: 100%;
  margin-top: 15px;
  margin-bottom:60px;
  padding-top: 30px;
  border-top: 2px solid #ddd
}
.footer_msg p {
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1.5;
}

.footer:after {
    background-color: rgb(16, 56, 79);
    content: "";
    height: 100vh;
    left: -50vw;
    opacity: .2;
    position: absolute;
    top: 200px;
    transform: skewY(-3deg);
    width: 200vw;
    z-index: 1;
}

@media screen and (min-width: 768px) {
  .footer_msg { width: 70% }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}