footer {
    width: 100%;

    color: #ffffff;
    background-color: #043045;

	display: flex;
    flex-direction: column;
	align-items: center;
    
    gap: 100px;

    padding: 100px;
    padding-bottom: 20px;
}

footer > div:first-child {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

footer > div:first-child  > div {
    width: 30%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer > div:first-child  > div > span {
    font-size: 18px;
    font-weight: bold;

    margin-bottom: 20px;

    text-align: center;
    text-transform: uppercase;
}

footer > div:first-child  > div > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#address {
    text-align: center;
}

#contacts {
    flex-direction: column;
}

#social-media-links {
    gap: 20px;
}

#solerup {
	display: flex;
	align-items: center;
	justify-content: center;
    
	text-align: center;
}

#solerup > span > a {
	font-weight: bold;
	
    text-decoration: none;
}

@media only screen and (max-width: 900px) {
    footer {
        gap: 50px;

        padding: 50px;
        padding-bottom: 20px;
    }

    footer > div:first-child  {
        flex-direction: column;
        gap: 50px;
    }

    footer > div:first-child  > div  {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    footer {
        gap: 20px;

        padding: 20px;
        padding-bottom: 20px;
    }

    footer > div:first-child  {
        gap: 20px;
    }

    footer > div:first-child  > div  {
        width: 100%;
    }
}