.footer-row{
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 2fr;
  line-height: 0.5rem;
  align-items: end;
  justify-items: start;
  padding-bottom: var(--spacing-lg);
  background-color: var(--color-white);
  padding-top: 30px;
}

.footer-row .footer-logo {
	 justify-self: end;
}

.footer-row .footer-logo img{
	width: 80px;
}
.footer-titl{
	font-weight: 500;
    line-height: normal;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
	color: #2e72ae;
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .footer-row .footer-logo {
        justify-self: center;
    }
	
	.footer-bottom{
		flex-direction: column;
		gap: 10px;
	}
	
	.footer-bottom p{
		font-size: 0.8em;
		text-align: center;
}