:root {
    --bg-primary: #181D24; 
    --bg-secondary: #509EAA;
    --text-primary: #FBA960; 
    --text-secondary:#509EAA; 
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: sans-serif;
    background-color: var(--bg-primary);
}

@font-face {
    font-family: Baskerville;
    src: url(../fonts/Baskerville/LibreBaskerville-Regular.ttf);
}
@font-face {
	font-family: futuraBook;
	src: url(../fonts/Futura/FuturaPTBook.otf);
}
img {
    width: 100%;
}

h1, h2, h3{
    color: var(--text-primary);
    font-family: 'Baskerville';
}
p{
    color: #fff;
    font-family: 'futuraBook';
}
h1{
    font-size: 4.5rem;
    text-shadow: 3px 3px 2px rgba(2, 29, 73, 1);
    z-index: 10;
}
h2{
    font-size: 4rem;
    text-shadow: 3px 3px 2px rgba(2, 29, 73, 1);
    z-index: 10;
}
h5{
    font-size: 32px;
}
.fs__32px{
    font-size: 32px;
}

.subtitle{
    font-size: 2.3rem;
    text-transform: uppercase;
    font-size: 'futuraBook';
}

.h100vh{
    height: 100vh;
}
.w-24px{
    width: 24px;
}
.w-32px{
    width: 32px;
}
.w-40px{
    width: 40px;
}
.w-48px{
    width: 48px;
}
.w-56px{
    width: 56px;
}

.ms__70px{
    margin-left: 70px;
}
.bg__secondary{
    background-color: var(--bg-secondary);
}
.bg-porttoblanco{
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/content/portto-blanco.png');
    margin-left: -200px;
    z-index: -10;
}
.bg-cimatario{
    background-image: url('../img/content/cimatario.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}
.contenedor{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.section{
    min-height: 100vh;
    min-width: 100%;

}

.img-vr{
    width: 300px;
    height: 200;
    object-fit: contain;
}

::-webkit-scrollbar{
    display: none;
}