.nav-links-container {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: center;
}


/* Order */

section.order {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}

section.order h3,
section.order h4 {
    font-family: 'Arial Black', Helvetica, sans-serif;
    font-family: Oswald-Regular;
}

section.order h3 {
    margin-bottom: .25em;
}

section.order h4 {
    margin-bottom: 0;
}

.order-image {
    max-width: 750px;
    width: 100%;
}

.order-button {
    text-decoration: none;
    padding: 0.5em 0;
    background: #6A1B0D;
    font-family: Oswald-SemiBold, sans-serif;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-sizing: border-box;
    color: white;
    font-size: 32px;
    margin-top: 26px;
}

@media only screen and (max-width: 1200px) {
    .social-item {
        padding: 0 14px;
    }
    .social-item img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .social-item {
        padding: 0 10px;
    }
    .social-item img {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .social-item {
        padding: 0 7px;
    }
    .social-item img {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 576px) {
    .order-button {
        font-size: 20px;
        margin-top: 16px;
    }
}


/* Info */

section.info {
    font-size: 26px;
    text-shadow: 0px 1px 1px #6A1B0Dcc;
    text-align: center;
    font-weight: 100;
}

section.info p {
    text-align: left;
}

.section-photo {
    width: 100%;
    max-width: 500px;
}

@media only screen and (max-width: 1200px) {
    section.info {
        font-size: 22px;
    }
}

@media only screen and (max-width: 992px) {
    section.info {
        font-size: 20px
    }
}

@media only screen and (max-width: 768px) {
    section.info {
        text-shadow: none;
    }
}

@supports (hyphens: auto) or (-webkit-hyphens: auto) or (-ms-hyphens: auto) {
    section.info p {
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}


/* Social */

.social-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* flex-direction: column; */
    /* align-items: center; */
}

.social-item {
    padding: 0 16px;
}

.social-item img {
    width: 90px;
    height: 90px;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .social-item {
        padding: 0 14px;
    }
    .social-item img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .social-item {
        padding: 0 10px;
    }
    .social-item img {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .social-item {
        padding: 0 7px;
    }
    .social-item img {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 576px) {
    .social-item {
        padding: 0 5px;
    }
    .social-item img {
        width: 50px;
        height: 50px;
    }
}


/* Contact */

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #CDBEAC;
}

.contact-item a {
    color: #CDBEAC;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-item a:hover {
    color: #6A1B0D;
    color: ghostwhite;
}

.contact-item svg:hover {
    fill: ghostwhite;
}

.contact-content .social {
    margin-top: 40px;
}

.contact-content .social a {
    margin: 0 10px;
}

.contact-content .social svg {
    width: 32px;
    height: 32px;
    fill: #CDBEAC;
}

.contact-content .social svg:hover {
    fill: #fff;
}

@media only screen and (max-width: 1200px) {
    .contact-content,
    .contact-item a {
        font-size: 26px;
    }
    
    .contact-content .social svg {
	    width: 28px;
	    height: 28px;
	    fill: #CDBEAC;
    }
}

@media only screen and (max-width: 576px) {
    .contact-content,
    .contact-item a {
        font-size: 20px;
    }
}