@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');

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;
    --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(--alt-color);
    font-size: 1.3rem;
    color: var(--alt-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(255,255,255,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(--alt-color);
    letter-spacing: 1px;
    transition: color .7s ease-in-out;
    /* font-family: 'FilsonPro-Book'; */
    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%;
    /* 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;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    background: transparent;
}

.hero .container .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-left: 10%;
    max-width: 1600px;
    height: 100%;
    margin: auto;
    background: transparent;
    opacity: 0;
    animation: home-hero-fade 2s forwards;
    animation-delay: 3s;
}

.hero .container .content h1 {
    display: none;
}

.hero .container .content h2 {
    position: absolute;
    display: inline-block;
    color: var(--alt-color);
    font-size: 2.2rem;
    top: 50%;
    transform: translateY(50px);
    text-shadow: 3px 1px 5px rgb(133, 120, 104);
    background: transparent;
    letter-spacing: -1px;
    font-family: var(--secondary-font);
}

.hero .container .content h3 {
    color: var(--alt-color);
    font-size: 5rem;
    font-weight: 400;
    text-shadow: 3px 1px 5px rgb(133, 120, 104);
    background: transparent;
    letter-spacing: -5px;
    line-height: 3.8rem;
}


/* BOX TEXT CONTAINER */

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

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

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

.box-side p span {
    font-weight: 400;
}

.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;
}


/* SLIDESHOW CONTAINER */

.slideshow {
    width: 100vw;
    height: 70vh;
    margin: auto;
    padding: 0;
}

.slideshow .container {
    padding: 0;
}

.slider-container{
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 70vh;
}

.left-slide{
    height: 100%;
    width: 35%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

.left-slide > div {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--alt-color);
}

.left-slide h1{
    font-size: 2.4rem;
    margin-bottom: 10px;
    margin-top: -30px;
    background: transparent;
}

.left-slide h2 {
    font-size: 0.9rem;
    color: var(--alt-color);
    background: transparent;
    margin-bottom: 40px;
    margin-top: 0px;
    font-weight: 400;
}

.left-slide p {
    color: var(--alt-color);
    background: transparent;
    padding: 0 60px;
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 20px;
}

.right-slide{
    height: 100%;
    position: absolute;
    top: 0;
    left: 35%;
    width: 65%;
    transition: transform 0.5s ease-in-out;
}

.right-slide > div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
}

button{
    background-color: #fff;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px;
    transition: color .4s ease-in-out;
}

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

button:focus{
    outline: none;
}

.action-buttons button{
    position: absolute;
    left: 35%;
    top: 50%;
    z-index: 100;
}

.action-buttons .down-button {
    transform: translateX(-100%);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.action-buttons .up-button {
    transform: translateY(-100%);
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}


/* SLIDESHOW MOBILE CONTAINER */

.slideshow-mobile {
    display: none;
}


/* SLOGAN CONTAINER */

.slogan {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    padding: 40px 20px;
    /* border: var(--border); */
}

.slogan .container {
    padding: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* border: var(--border); */
}

.slogan .content {
    width: 66.66%;
    /* border: var(--border); */
}

.slogan .content h1 {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 40px;
}


/* BIOGRAPHY CONTAINER */

.biography {
    width: 100%;
    height: auto;
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
    /* border: var(--border); */
}

.biography .container {
    margin: 0 auto;
    /* border: var(--border); */
}

.biography .item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.biography .item .image,
.biography .item .content {
    width: calc(50% - 2.5px);
    /* border: var(--border); */
}

.biography .item .image img {
    width: 100%;
    height: 100%;
    line-height: 0;
}

.biography .item .content {
    padding: 40px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.item .content h1 {
    font-weight: 300;
    font-size: 2.4rem;
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 20px;
}

.item .content i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.item .content p {
    line-height: 25px;
}


/* 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;
}

.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;
    }
}




/* 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:769px) and (max-width: 1024px) {

    .hero .container .content h1 {
        font-size: 3.2rem;
        margin-top: 0px;
    }
    
    .hero .container .content .subtitle {
        position: relative;
        display: block;
        top: 0;
        margin-top: -35px;
        transform: translateY(0);
        margin-left: 5px;
    }

    .subtitle::before {
        margin-top: 25px;
    }

}

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

    .hero .container {
        display: block;
        position: relative;
        background: var(--primary-color);
    }

    .hero .container .content {
        align-items: center;
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .hero .container .content h1 {
        display: block;
        color: var(--alt-color);
        font-size: 2.4rem;
        font-weight: 400;
        text-shadow: 3px 1px 5px rgb(133, 120, 104);
        background: transparent;
        letter-spacing: -5px;
        line-height: 3.6rem;
        margin-top: 0px;
    }
    
    .hero .container .content h2 {
        position: relative;
        display: block;
        top: 0;
        margin-top: -50px;
        transform: translateY(0);
        margin-left: 0;
        margin-bottom: 0;
        font-weight: 300;
    }

    .hero .container .content h3 {
        display: none;
    }

}

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

    .hero .container {
        display: block;
        position: relative;
        background: var(--primary-color);
    }

    .hero .container .content {
        align-items: center;
        justify-content: flex-start;
        padding-left: 0;
    }

    .hero .container .content h1 {
        display: block;
        color: var(--alt-color);
        font-size: 2.4rem;
        font-weight: 400;
        text-shadow: 3px 1px 5px rgb(133, 120, 104);
        background: transparent;
        letter-spacing: -5px;
        line-height: 3.6rem;
        margin-top: 0px;
    }
    
    .hero .container .content h2 {
        position: relative;
        display: block;
        top: 0;
        margin-top: -40px;
        transform: translateY(0);
        margin-left: 0;
        margin-bottom: 0;
        font-weight: 300;
        font-size: 1.8rem;
    }

    .hero .container .content h3 {
        display: none;
    }
}


/* BOX TEXT MEDIA QUERY */

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

    .box-text {
        padding: 40px;
    }
    
    .box {
        top: -20px;
        width: 200px;
        padding: 10px;
    }
    
    .box h1 {
        font-size: 1.1rem;
        font-weight: 300;
    }

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

}

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

    .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-side p {
        font-size: 0.8rem;
    }

    .box-text {
        width: 100vw;
        margin: auto;
        padding: 40px 20px;
        /* border: var(--border); */
    }
    
    .box-text .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        /* border: var(--border); */
    }
    
    .box-text .content {
        width: 100%;
        /* border: var(--border); */
    }
    
}

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

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

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

    .box-text {
        width: 100vw;
        margin: auto;
        padding: 40px 20px;
        /* border: var(--border); */
    }
    
    .box-text .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        /* border: var(--border); */
    }
    
    .box-text .content {
        width: 100%;
        /* border: var(--border); */
    }

    .box-text p {
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: justify;
        /* border: var(--border); */
    }

}


/* SLIDESHOW MEDIA QUERY */

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

    .left-slide h1{
        font-size: 1.8rem;
    }
    
    .left-slide h2 {
        font-size: 0.8rem;
    }
    
    .left-slide p {
        padding: 0 40px;
        font-size: 0.8rem;
        line-height: 15px;
    }

}

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

    .left-slide h1{
        font-size: 1.2rem;
    }
    
    .left-slide h2 {
        font-size: 0.7rem;
    }
    
    .left-slide p {
        padding: 0 40px;
        font-size: 0.7rem;
        line-height: 15px;
        font-weight: 300;
    }

    button{
        background-color: #fff;
        border: none;
        color: #aaa;
        cursor: pointer;
        font-size: 0.7rem;
        padding: 8px;
        transition: color .4s ease-in-out;
        /* border: var(--border); */
    }

    .action-buttons button i {
        font-size: 0.7rem;
    }
    
    button:hover{
        color: var(--secondary-color);
    }
    
    button:focus{
        outline: none;
    }
    
    .action-buttons button{
        position: absolute;
        left: 35%;
        top: 50%;
        z-index: 100;
        /* border: var(--border); */
    }
    
    .action-buttons .down-button {
        transform: translateX(-100%);
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
    }
    
    .action-buttons .up-button {
        transform: translateY(-100%);
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
    }

}

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

    .slideshow {
        display: none;
    }

    /* SLIDESHOW MOBILE MEDIA QUERY */

    .slideshow-mobile {
        display: block;
        width: 100vw;
        height: 80vh;
        margin: 0 auto;
        padding: 0;
        /* border: var(--border); */
    }

    .slideshow-mobile .container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        flex-direction: column;
        padding: 0;
        height: 100%;
        /* border: var(--border); */
    }

    .timeline {
        width: 100%;
        height: 100%;
        /* border: var(--border); */
    }
      
    .timeline .swiper-container {
        height: 100%;
        width: 100%;
        position: relative;
        /* border: var(--border); */
    }

    .timeline .swiper-wrapper {
        transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
    }

    .timeline .swiper-slide {
        width: 100%;
        position: relative;
        overflow: hidden;
        background-size: 70vh;
        background-repeat: no-repeat;
        background-position: top center;
        /* border: var(--border); */
    }

    .timeline .swiper-slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        text-align: center;
        justify-content: center;
        width: 100%;
        height: 35vh;
        max-width: 100%;
        left: 0;
        bottom: 0;
        font-size: 0.8rem;
        background: var(--secondary-color);
        z-index: 2;
        padding: 10px;
        /* border: var(--border); */
    }

    .timeline .swiper-slide .timeline-year {
        display: block;  
        font-size: 0.7rem !important;
        margin-bottom: 10px;
        margin-top: 10px;
        color: var(--alt-color);
        font-style: italic;
        font-weight: 300;
        opacity: 0;
        transition: 0.2s ease 0.4s;
        background: transparent;
    }

    .timeline .swiper-slide .timeline-title {
        font-weight: 400;
        font-size: 1.6rem !important;
        margin: 0;
        opacity: 0;
        transition: 0.2s ease 0.5s;
        background: transparent;
        color: var(--alt-color);
    }

    .timeline .swiper-slide .timeline-text {
        line-height: 1;
        opacity: 0;
        transition: 0.2s ease 0.6s;
        font-size: 0.8rem !important;
        font-weight: 400;
        color: var(--alt-color);
        background: transparent;
        padding: 10px 20px;
    }

    .timeline .swiper-slide-active .timeline-year {
        opacity: 1;
        transition: opacity 2s ease;  
    }

    .timeline .swiper-slide-active .timeline-title {
        opacity: 1;
        transition: opacity 3s ease;
    }

    .timeline .swiper-slide-active .timeline-text {
        opacity: 1;
        transition: opacity 4s ease;
    }
      
    .timeline .swiper-button-next, .timeline .swiper-button-prev {
        background-size: 10px 10px;
        top: 15%;
        width: 20px;
        height: 20px;
        margin-top: 0;
        z-index: 2;
        transition: 0.2s;
        border-radius: 50%;
        background: var(--secondary-color);
    }
    
    .timeline .swiper-button-prev {
        top: 30%;
        transform: translateY(-50%);
        left: 8%;
        color: var(--alt-color);
    }

    .timeline .swiper-button-next {
        top: 30%;
        transform: translateY(-50%);
        right: 8%;
    }

    .timeline .swiper-button-next i {
        background: transparent;
        color: var(--alt-color);
        font-size: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .timeline .swiper-button-prev i {
        background: transparent;
        color: var(--alt-color);
        font-size: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(180deg);
    }

}


/* SLOGAN CONTINER */

@media screen and (min-width:769px) and (max-width: 1024px) {
    
    .slogan .content h1 {
        font-size: 1.4rem;
        font-style: italic;
        font-weight: 400;
        line-height: 30px;
    }
}

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

    .slogan .container {
        max-width: 100%;
        justify-content: center;
    }

    .slogan .content {
        width: 100%;
    }

    .slogan .content h1 {
        font-size: 1.4rem;
        font-weight: 300;
        line-height: 30px;
    }

}

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

    .slogan {
        padding: 20px;
    }

    .slogan .container {
        justify-content: center;
    }

    .slogan .content {
        width: 100%;
    }
    
    .slogan .content h1 {
        font-size: 1rem;
        font-style: italic;
        font-weight: 300;
        line-height: 20px;
    }

}


/* BIOGRAPHY MEDIA QUERY */

@media screen and (min-width:769px) and (max-width: 1024px) {
    
    .item .content h1 {
        font-weight: 300;
        font-size: 2rem;
        font-style: normal;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .item .content i {
        color: var(--secondary-color);
        margin-bottom: 10px;
    }
    
    .item .content p {
        line-height: 15px;
    }

}

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

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

    .biography .container {
        padding: 0;
    }
    
    .biography .item {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    
    .biography .item .image,
    .biography .item .content {
        width: 100%;
        /* border: var(--border); */
    }

    .biography .item .image {
        order: 1;
    }

    .biography .item .content {
        order: 2;
        padding: 0;
        padding-top: 10px;
        padding-right: 0;
    }

    .item .content h1 {
        font-weight: 300;
        font-size: 2.4rem;
        font-style: normal;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .item .content i {
        color: var(--secondary-color);
        margin-bottom: 10px;
    }
    
    .item .content p {
        line-height: 20px;
    }

}

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

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

    .biography .container {
        padding: 0;
    }
    
    .biography .item {
        flex-wrap: nowrap;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .biography .item .image,
    .biography .item .content {
        width: 100%;
        /* border: var(--border); */
    }

    .biography .item .image {
        order: 1;
    }

    .biography .item .content {
        order: 2;
        padding: 0;
        padding-top: 10px;
        padding-right: 0;
    }

    .item .content h1 {
        font-weight: 300;
        font-size: 1.4rem;
        font-style: normal;
        line-height: 1.4;
        margin-bottom: 5px;
    }
    
    .item .content i {
        margin-bottom: 5px;
        font-size: 0.8rem;
    }
    
    .item .content p {
        line-height: 15px;
        font-size: 0.8rem;
    }

}


/* 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;
    }

    .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;
    }

}