* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

body {
    font-family: 'Arimo', sans-serif;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.big-logo {
    width: 20%;
}

img {
    width: 70%;
}

.sm-icon-square {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid white;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: 0.2s ease-in;
}
.sm-banner{
    background-color: #ea5b0c !important;
}
.sm-icon-square:hover {
    color: #ea5b0c;
    background-color: white;
    transition: 0.2s ease-in;
}

.link-text {
    color: black;
}

.site-link {
    text-decoration: none;
}

.logo {
    width: 200px;
}

.contact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #ea5b0c;
    font-size: 30px;
    color: #ea5b0c;
    text-decoration: none;
    transition: 0.2s ease-in;
}

.contact:hover {
    color: white;
    background-color: #ea5b0c;
    transition: 0.2s ease-in;
}

.contact-hover {
    color: white;
    background-color: #ea5b0c;
    transition: 0.2s ease-in;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #ea5b0c;
    font-size: 30px;
    text-decoration: none;
    transition: 0.2s ease-in;
}

.contact-link {
    text-decoration: none;
}

.contact-link-text {
    text-decoration: none;
    color: var(--bs-body-color);
}
.contact-links{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.sm-links{
    margin-top: 5rem;
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.footer-empty-container{
    height: 40px;
}
@media only screen and (max-width: 900px) {
    .logo-div {
        margin-top: 25px;
        padding: 15px;
    }
    .contact-links{
        justify-content: center;
        flex-direction: column;
        gap: 0;
    }
    .sm-links{
        margin-top: 3rem;
        flex-direction: column;
    }
}

