@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@100;200;300;400;500;600;700&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Mr+De+Haviland&family=Open+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,300;1,400;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap');

html {
    background: white;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif;
}

body {
    font-family: 'Filson Pro',  sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-size: 1rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.4;
    background: #f0f0f0;
    display: block;
}

:root {
    --primary-color: #333;
    --secondary-color: #d1aa0f;
    --third-color: #3c3c3c;
    --alt-color: #fff;
    --overlay: rgba(0,0,0,0.4);
    --border: 2px solid red;
    --secondary-font: 'Mrs Saint Delafield', cursive;
}

::-webkit-scrollbar {
    display: none;
}

*,*:before,*:after {
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

svg,
img {
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

ul {
	margin: 0;
	list-style: none;
	padding: 0;
}

img {
	width: 100%;
	height: auto;
}

section {
    position: relative;
    display: block;
}

.container {
    position: relative;
    width: 100%;
    height: auto;
    /* background: white; */
    /* border: var(--border); */
}

a {
    outline: none;
    background: transparent;
    color: var(--alt-color);
    text-decoration: none;
    transition: all .5s;
}

hr {
    height: 1px;
    color: var(--primary-color);
}

#wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}


/* HEADER STYLE */

.header {
    width: 100vw;
    position: fixed;
    z-index: 1000;
    background: transparent;
    transition: .6s;
    /* border: var(--border); */
}

.header .container {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: .5s;
    /* border: var(--border); */
}

.header .logo {
    position: relative;
    width: 52px;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 0;
    z-index: 988;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    transition: .5s;
}

.header .logo a {
    border: 1px solid var(--primary-color);
    font-size: 1.3rem;
    color: var(--primary-color);
    background: transparent;
    padding: 10px;
}   

.header .content {
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    position: relative;
    background: transparent;
}

nav {
    background: transparent;
}

.content .container__nav {
    position: relative;
    background: transparent;
    border-top: solid 1px rgba(51,51,51,0.50);
    padding: 20px;
    /* border: var(--border); */
}

nav .navUl {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    /* border: var(--border); */
}

nav ul li {
    /* border: var(--border); */
    list-style: none;
    background: transparent;
    display: list-item;
}

nav ul li a {
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    transition: color .7s ease-in-out;
    font-weight: 400;
    background: transparent;
    padding: 10px 0;
    /* border: var(--border); */
}

nav ul li a:hover {
    color: var(--secondary-color);
    background: transparent;
}

nav ul li .ita,
nav ul li .esp {
    font-size: 0.7rem;
    /* border: var(--border); */
    padding: 10px 0;
}

nav ul li .ita {
    color: var(--secondary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
}

.active {
    color: var(--secondary-color);
    /* border: var(--border); */
    background-color: white;
    border-radius: 30px;
    padding: 10px;
    transition: all .7s ease-in-out;
}

.active:hover {
    color: var(--alt-color);
    background: var(--secondary-color);
}

.socialIcons {
    display: none;
}

header.scrolled .container {
    background: var(--alt-color);
    border-bottom: 1px solid var(--secondary-color);
}

header.scrolled .container .logo {
    height: 0;
    padding: 0;
    opacity: 0;
    color: var(--primary-color);
}

header.scrolled .container * {
    color: var(--primary-color);
}

.mobile-logo {
    width: 120px;
    height: auto;
    position: fixed;
    left: 20px;
    transition: .5s;
    z-index: 988;
    opacity: 0;
}

.mobile-logo img {
    width: 100%;
    height: auto;
}

header.scrolled .active {
    color: var(--secondary-color);
}

header.scrolled .active:hover {
    color: var(--alt-color);
}

header.scrolled .ita {
    color: var(--secondary-color);
}

/* MAIN */

main {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: relative;
    display: block;
    background: var(--alt-color);
    overflow: hidden;
}


/* HERO STYLE */

.hero {
    position: relative;
    width: 100%;
    padding-top: 180px;
    /* border: var(--border); */
}

.hero .image {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: home-hero-fade 2s forwards;
    animation-delay: 1s;
}

.hero .image img {
    width: 100%;
    height: auto;
}


/* BOX TEXT CONTAINER */

.box-text {
    width: 100vw;
    margin: auto;
    max-width: 1400px;
    padding: 0 20px;
    /* border: var(--border); */
}

.box-text .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* border: var(--border); */
}

.box-text .content {
    width: 50%;
    /* border: var(--border); */
}

.box-side {
    margin-top: -100px;
    background: var(--alt-color);
    padding: 20px 40px;
    /* border: var(--border); */
}

.box {
    position: absolute;
    top: -30px;
    left: auto;
    right: 80px;
    width: 400px;
    height: 60px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    /* border: var(--border); */
}

.box h1 {
    background-color: var(--secondary-color);
    font-size: 1.2rem;
    color: var(--alt-color);
    font-weight: 400;
}

.box-side h1 {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.box-side p {
    font-family: 'La Belle Aurore', cursive;
    font-weight: 500;
    font-size: 3rem;
    margin-top: 0;
}


/* RECIPES BOX */

.recipeBox {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 80px;
    /* border: 2px solid red; */
}

.recipeBox .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    /* border: var(--border); */
}

.recipeBox .content .column-left {
    width: 33.33%;
    padding: 0 40px;
}

.recipeBox .content .column-right {
    width: 66.66%;
    padding: 0px 30px;
}

.recipeBox .content .column-left h1,
.recipeBox .content .column-right h1 {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 30px;
    text-transform: uppercase;
}

.recipeBox .content .column-left h2 {
    font-size: 0.8rem;
    color: var(--third-color);
    font-weight: 300;
    margin-top: 20px;
}

.recipeBox .content .column-left .line-txt {
    width: 40%;
    background-color: var(--third-color);
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: .2;
}

.recipeBox .content .column-left p,
.recipeBox .content .column-right p {
    line-height: 1.2rem;
    color: var(--primary-color);
}

.button {
    float: right;
    margin-top: 50px;
}

.button a {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-left: 10px;
    transition: .6s;
}

.button i {
    top: auto;
    bottom: auto;
    margin: 0;
    font-size: 0.8rem;
    transform: rotate(-180deg);
    transition: .6s;
}

.button:hover a {
    color: var(--secondary-color);
}

.button:hover i {
    animation: right 1.5s linear infinite;
    color: var(--secondary-color);
}



/* FOOTER */

.footer {
    width: 100%;
    background: #333;
    margin: auto;
    height: auto;
    display: block;
    border-top: 1px solid var(--alt-color);
    max-width: 1920px;
    /* border: var(--border); */
}

.footer .container .content {
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.footer .footer-box {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    /* border: var(--border); */
}

.footer .footer-box:nth-child(1) {
    text-align: left;
    padding: 40px;
    order: 1;
    margin-top: 20px;
}

.footer .footer-box:nth-child(2) {
    order: 2;
}

.footer .footer-box:nth-child(3) {
    text-align: right;
    padding: 40px;
    order: 3;
}

.footer .footer-slogan h3 {
    color: var(--alt-color);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer .footer-logo a {
    font-size: 1.2rem;
    color: var(--alt-color);
    border: 1px solid var(--alt-color);
    padding: 5px;
    font-weight: 400;
}

.footer .footer-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .footer-text .item-box {
    padding: 10px 0;
}

.footer .footer-social {
    width: 150px;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    /* border: var(--border); */
}

.footer .footer-social a {
    color: var(--alt-color);
    transition: color 1s ease;
}

.footer .footer-social a:hover {
    color:#d1aa0f;
}

.footer .footer-social i {
    font-size: 1.2rem;
}

.footer-copyrights {
    color: var(--alt-color);
    font-size: 0.8rem;
    /* border: var(--border); */
}

.footer-text a {
    color: var(--alt-color);
    transition: color 1s ease;
    font-size: 0.8rem;
}

.footer-text a:hover {
    color:#d1aa0f;
}

.footer-credits {
    color: var(--alt-color);
    margin-bottom: 20px;
    font-size: 0.8rem;
}









@keyframes home-hero-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes right {
    0% {
        margin-right: 10px;
    }

    50% {
        margin-right: 40px;
    }

    100% {
        margin-right: 10px;
    }
}






/* HEADER MEDIA QUERY */

@media screen and (min-width: 1400px) {

    .content .container__nav {
        padding: 20px 100px 20px 100px;
        /* border: var(--border); */
    }

    nav ul li a {
        font-size: 0.8rem;
    }

}

@media screen and (min-width:769px) and (max-width: 1024px) {

    .content .container__nav {
        padding: 20px;
        /* border: var(--border); */
    }

    nav ul li a {
        font-size: 0.6rem;
    }

    nav ul li .ita,
    nav ul li .esp {
        font-size: 0.6rem;
}

}

@media screen and (min-width:482px) and (max-width: 768px) {

    .header .container {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }

    .content .container__nav {
        clear: none;
        height: 100vh;
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(161, 129, 32, .99);
        transition: top 1s ease;
        margin: 0;
        padding: 0;
    }

    nav .navUl {
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: none;
        /* border: var(--border); */
    }

    nav ul li {
        margin-bottom: 30px;
    }

    .change .container__nav  {
        top: 0;
    }

    .header .container .logo {
        left: 0;
        padding: 40px 0;
        margin-left: 30px;
    }

    .header .container .logo a {
        font-size: 0.8rem;
        font-weight: 400;
        padding: 5px;
    }

    nav ul li a {
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
        letter-spacing: 2px;
        color: var(--alt-color);
    }

    nav ul li .ita,
    nav ul li .esp {
        font-size: 0.6rem;
        font-weight: 400;
    }

    .active {
        color: var(--secondary-color);
        /* border: var(--border); */
        background-color: white;
        border-radius: 30px;
        padding: 10px;
        transition: color .7s ease-in-out;
    }

    .socialIcons {
        display: block;
        margin-left: -5px;
        margin-top: 10px;
        background: transparent;
    }

    .socialIcons a {
        color: var(--alt-color);
        transition: color .6s ease-in-out;
        padding: 0px 30px;
        background: transparent;
        /* border: var(--border); */
    }

    .socialIcons i {
        background: transparent;
    }

    .socialIcons a:hover {
        color: var(--secondary-color);
        background: transparent;
    }

    .header .container .openMenu {
        width: 20px;
        height: 20px;
        position: fixed;
        right: 20px;
        z-index: 1200;
        transition: .5s;
        background: transparent;
    }

    .header .container .openMenu .line {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--secondary-color);
        transition: .5s;
    }

    .header .container .openMenu .line:nth-child(1) {
        top: 0;
    }

    .header .container .openMenu .line:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    .header .container .openMenu .line:nth-child(3) {
        top: 50%;
        margin-top: -1px;
    }

    .header .container .openMenu .line:nth-child(4) {
        width: 50%;
        bottom: 0;
    }

    .change .header .container .openMenu .line {
        background: var(--alt-color);
    }

    .change .openMenu .line:nth-child(1) {
        opacity: 0;
    }

    .change .openMenu .line:nth-child(2) {
        transform: rotate(45deg);
    }

    .change .openMenu .line:nth-child(3) {
        transform: rotate(-45deg);
    }

    .change .openMenu .line:nth-child(4) {
        opacity: 0;
    }
    
    header.scrolled .container .logo {
        height: 60px;
    }

    header.scrolled .mobile-logo {
        opacity: 1;
    }

    header.scrolled .mobile-logo a {
        color: var(--primary-color);
    }

    header.scrolled .container * {
        color: var(--alt-color);
    }

    header.scrolled .container .active {
        color: var(--secondary-color);
    }

    header.scrolled .container .active:hover {
        color: var(--primary-color);
        background: var(--alt-color);
    }

}

@media screen and (max-width: 481px) {

    .header .container {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }

    .content .container__nav {
        clear: none;
        height: 100vh;
        position: fixed;
        top: -120%;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(161, 129, 32, .99);
        transition: top 1s ease;
        margin: 0;
        padding: 0;
    }

    nav .navUl {
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: none;
        /* border: var(--border); */
    }

    nav ul li {
        margin-bottom: 30px;
    }

    .change .container__nav  {
        top: 0;
    }

    .header .container .logo {
        left: 0;
        padding: 40px 0;
        margin-left: 30px;
    }

    .header .container .logo a {
        font-size: 0.8rem;
        font-weight: 400;
        padding: 5px;
    }

    nav ul li a {
        font-size: 0.7rem;
        padding: 10px;
        font-weight: 400;
        letter-spacing: 2px;
        color: var(--alt-color);
    }

    nav ul li .ita,
    nav ul li .esp {
        font-size: 0.6rem;
        font-weight: 400;
    }

    .active {
        color: var(--secondary-color);
        /* border: var(--border); */
        background-color: white;
        border-radius: 30px;
        padding: 10px;
        transition: color .7s ease-in-out;
    }

    .socialIcons {
        display: block;
        margin-left: -5px;
        margin-top: 10px;
        background: transparent;
    }

    .socialIcons a {
        color: var(--alt-color);
        transition: color .6s ease-in-out;
        padding: 0px 30px;
        background: transparent;
        /* border: var(--border); */
    }

    .socialIcons i {
        background: transparent;
    }

    .socialIcons a:hover {
        color: var(--secondary-color);
        background: transparent;
    }

    .header .container .openMenu {
        width: 20px;
        height: 20px;
        position: fixed;
        right: 20px;
        z-index: 1200;
        transition: .5s;
        background: transparent;
    }

    .header .container .openMenu .line {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--secondary-color);
        transition: .5s;
    }

    .header .container .openMenu .line:nth-child(1) {
        top: 0;
    }

    .header .container .openMenu .line:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    .header .container .openMenu .line:nth-child(3) {
        top: 50%;
        margin-top: -1px;
    }

    .header .container .openMenu .line:nth-child(4) {
        width: 50%;
        bottom: 0;
    }

    .change .header .container .openMenu .line {
        background: var(--alt-color);
    }

    .change .openMenu .line:nth-child(1) {
        opacity: 0;
    }

    .change .openMenu .line:nth-child(2) {
        transform: rotate(45deg);
    }

    .change .openMenu .line:nth-child(3) {
        transform: rotate(-45deg);
    }

    .change .openMenu .line:nth-child(4) {
        opacity: 0;
    }
    
    header.scrolled .container .logo {
        height: 60px;
    }

    header.scrolled .mobile-logo {
        opacity: 1;
    }

    header.scrolled .mobile-logo a {
        color: var(--primary-color);
    }

    header.scrolled .container * {
        color: var(--alt-color);
    }

    header.scrolled .container .active {
        color: var(--secondary-color);
    }

    header.scrolled .container .active:hover {
        color: var(--primary-color);
        background: var(--alt-color);
    }

    
}


/* HERO MEDIA QUERY */

@media screen and (min-width:482px) and (max-width: 768px) {

    .hero {
        padding-top: 100px;
    }

}

@media screen and (max-width: 481px) {

    .hero {
        padding-top: 100px;
    }

}


/* BOX TEXT CONTAINER */

@media screen and (min-width: 769px) and (max-width: 1024px) {
    
    .box-text .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* border: var(--border); */
    }
    
    .box-text .content {
        width: 60%;
        padding: 0 20px;
        /* border: var(--border); */
    }
    
    .box-side {
        margin-top: -100px;
        background: var(--alt-color);
        padding: 20px 40px;
        /* border: var(--border); */
    }
    
    .box {
        position: absolute;
        top: -30px;
        left: auto;
        right: 40px;
        width: 200px;
        height: 60px;
        padding: 20px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--secondary-color);
        text-transform: uppercase;
        /* border: var(--border); */
    }
    
    .box h1 {
        background-color: var(--secondary-color);
        font-size: 0.9rem;
        color: var(--alt-color);
        font-weight: 400;
    }
    
    .box-side p {
        font-family: 'La Belle Aurore', cursive;
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 2.2rem;
        line-height: 1.8rem;
    }

}

@media screen and (min-width:482px) and (max-width: 768px) {

    .box-text {
        width: 100vw;
        margin: auto;
        padding: 40px 20px 0px 20px;
        /* border: var(--border); */
    }

    .box {
        left: 20px;
        top: -20px;
        width: 200px;
        max-width: 200px;
        padding: 10px;
        height: 40px;
        /* border: var(--border); */
    }

    .box h1 {
        font-size: 0.9rem;
        font-weight: 400;
    }

    .box-text .content {
        width: 100%;
        /* border: var(--border); */
    }

    .box-side {
        margin-top: 0;
        background: var(--alt-color);
        padding: 0;
        /* border: var(--border); */
    }

    .box-side h1 {
        font-size: 0.7rem;
    }

    .box-side p {
        font-size: 2.4rem;
    }
    
}

@media screen and (max-width: 481px) {

    .box-text {
        width: 100vw;
        margin: auto;
        padding: 0px 20px;
        /* border: var(--border); */
    }

    .box {
        left: 20px;
        top: -20px;
        width: 200px;
        max-width: 200px;
        padding: 10px;
        height: 40px;
        /* border: var(--border); */
    }

    .box h1 {
        font-size: 0.8rem;
        font-weight: 400;
    }

    .box-text .content {
        width: 100%;
        /* border: var(--border); */
    }

    .box-side {
        margin-top: 50px;
        background: var(--alt-color);
        padding: 0;
        /* border: var(--border); */
    }

    .box-side h1 {
        font-size: 0.7rem;
    }

    .box-side p {
        font-size: 1.8rem;
    }

}


/* RECIPES MEDIA QUERY */

@media screen and (min-width:482px) and (max-width: 768px) {

    .recipeBox .content {
        flex-wrap: nowrap;
        flex-direction: column;
        /* border: var(--border); */
    }
    

    .recipeBox .content .column-left {
        width: 100%;
        padding: 0px;
    }

    .recipeBox .content .column-right {
        width: 100%;
        padding: 0px;
    }

    .recipeBox .content .column-left h1,
    .recipeBox .content .column-right h1 {
        font-size: 0.7rem;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .recipeBox .content .column-left p,
    .recipeBox .content .column-right p {
        font-size: 0.9rem;
    }
    
    .button {
        margin-top: 20px;
    }
    
    .button a {
        font-size: 0.7rem;
        font-weight: 400;
    }
    
    .button i {
        font-size: 0.7rem;
    }

}

@media screen and (max-width: 481px) {

    .recipeBox .content {
        flex-wrap: nowrap;
        flex-direction: column;
        /* border: var(--border); */
    }
    

    .recipeBox .content .column-left {
        width: 100%;
        padding: 0;
    }

    .recipeBox .content .column-right {
        width: 100%;
        padding: 0;
    }

    .recipeBox .content .column-left h1,
    .recipeBox .content .column-right h1 {
        font-size: 0.7rem;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .recipeBox .content .column-left p,
    .recipeBox .content .column-right p {
        font-size: 0.9rem;
    }
    
    .button {
        margin-top: 20px;
    }
    
    .button a {
        font-size: 0.7rem;
        font-weight: 400;
    }
    
    .button i {
        font-size: 0.7rem;
    }
    
}


/* CONTENITOR FOOTER MEDIA QUERY */

@media screen and (min-width:769px) and (max-width: 1024px) {

    .footer .footer-slogan h3 {
        font-size: 0.8rem;
    }

    .footer .footer-logo a {
        font-size: 1.3rem;
        padding: 2px;
        font-weight: 300;
    }

    .footer-copyrights,
    .footer-copyrights a,
    .footer-credits a {
        font-size: 0.8rem;
    }

    .footer-credits {
        font-size: 0.8rem;
    }
}

@media screen and (min-width:482px) and (max-width: 768px) {

    .footer .container .content {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content:center;
    }

    .footer .footer-box:nth-child(1),
    .footer .footer-box:nth-child(2),
    .footer .footer-box:nth-child(3) {
        text-align: center;
        padding: 10px;
    }

    .footer .footer-box:nth-child(1) {
        order: 2;
    }
    
    .footer .footer-box:nth-child(2) {
        order: 1;
        margin-top: 20px;
    }

    .footer .footer-slogan h3 {
        font-size: 1rem;
        font-weight: 400;
    }

    .footer .footer-social {
        width: 50%;
        margin: auto;
        margin-bottom: 10px;
        /* border: var(--border); */
    }

    .footer-copyrights,
    .footer-copyrights a,
    .footer-credits,
    .footer-credits a {
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 481px) {

    .footer .container .content {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content:center;
    }

    .footer .footer-box:nth-child(1),
    .footer .footer-box:nth-child(2),
    .footer .footer-box:nth-child(3) {
        text-align: center;
        padding: 10px;
    }

    .footer .footer-box:nth-child(1) {
        order: 2;
    }
    
    .footer .footer-box:nth-child(2) {
        order: 1;
        margin-top: 20px;
    }

    .footer .footer-slogan h3 {
        font-size: 1rem;
        font-weight: 400;
    }

    .footer .footer-social {
        width: 50%;
        margin: auto;
        margin-bottom: 10px;
        /* border: var(--border); */
    }

    .footer-copyrights,
    .footer-copyrights a,
    .footer-credits,
    .footer-credits a {
        font-size: 0.8rem;
    }

}