
@import "style.css";

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--main);
    color: var(--white);
    z-index: 2;
}

footer .main {
    padding: 150px 100px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .main h3 {
    font-size: 80px;
    width: 60%;
    font-weight: 300;
}

footer .main h3 span {
    color: var(--brown);
    font-weight: 500;
}

footer .main .links ul {
    display: inline-block !important;
}

footer .main .links ul li {
    margin-left: auto;
    padding: 7px 0;
    text-align: right;
}

footer .main .links ul li a {
    font-size: 22px;
    font-weight: 300;
}

footer .main .links ul:hover li a {
    opacity: 0.3;
}

footer .main .links ul li a:hover {
    color: var(--brown);
    opacity: 1;
}

footer .contact-info {
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--light-grey);
    font-weight: 300;
}

footer .contact-info p {
    opacity: 0.7;
}

footer .contact-info p:nth-child(1) {
    padding-bottom: 10px;
    opacity: 1;
}

footer .contact-info .address {
    text-align: center;
}

footer .contact-info .phone {
    text-align: right;
    opacity: 1;
}

footer .copyright{
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
}

footer .copyright {
    opacity: 0.6;
}

@media screen and (max-width: 768px) {
    footer .main {
        padding: 100px 30px 50px;
    }

    footer .main h3 {
        font-size: 36px;
        width: 100%;
    }

    footer .main .links {
        display: none;
    }

    footer .contact-info {
        padding: 0 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    footer .contact-info .phone,
    footer .contact-info .address {
        text-align: left;
        padding-top: 20px;
    }
}