@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Quart Outline';
    src: url('../fonts/Quart-Outline.eot');
    src: url('../fonts/Quart-Outline.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Quart-Outline.woff2') format('woff2'),
        url('../fonts/Quart-Outline.woff') format('woff'),
        url('../fonts/Quart-Outline.ttf') format('truetype'),
        url('../fonts/Quart-Outline.svg#Quart-Outline') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quart';
    src: url('../fonts/Quart-Regular.eot');
    src: url('../fonts/Quart-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Quart-Regular.woff2') format('woff2'),
        url('../fonts/Quart-Regular.woff') format('woff'),
        url('../fonts/Quart-Regular.ttf') format('truetype'),
        url('../fonts/Quart-Regular.svg#Quart-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlantinMTProLightIt';
    src: url('../fonts/PlantinMTProLightIt.eot');
    src: url('../fonts/PlantinMTProLightIt.eot') format('embedded-opentype'),
        url('../fonts/PlantinMTProLightIt.woff2') format('woff2'),
        url('../fonts/PlantinMTProLightIt.woff') format('woff'),
        url('../fonts/PlantinMTProLightIt.ttf') format('truetype'),
        url('../fonts/PlantinMTProLightIt.svg#PlantinMTProLightIt') format('svg');
}


@font-face {
    font-family: 'FontspringDEMOSofiaProSoftLight';
    src: url('../fonts/FontspringDEMOSofiaProSoftLight.eot');
    src: url('../fonts/FontspringDEMOSofiaProSoftLight.eot') format('embedded-opentype'),
        url('../fonts/FontspringDEMOSofiaProSoftLight.woff2') format('woff2'),
        url('../fonts/FontspringDEMOSofiaProSoftLight.woff') format('woff'),
        url('../fonts/FontspringDEMOSofiaProSoftLight.ttf') format('truetype'),
        url('../fonts/FontspringDEMOSofiaProSoftLight.svg#FontspringDEMOSofiaProSoftLight') format('svg');
}




* {
    box-sizing: border-box;
    user-select: none;
}

a {
    color: #7C886A;
    text-decoration: none;
}

body,
html {
    /*
overflow-x: hidden;
*/
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #3D3D3D;
    background: white;
    font-family: 'FontspringDEMOSofiaProSoftLight', 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.mainCont {
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    transition: .6s all;
    z-index: 100;
}

.barraPrincP {
    width: 100%;
    transition: .6s all;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: none;
}

.barraPrincP .container-logo {
    pointer-events: all;
}

.contenidoMenu ul li {
    border-top: 1px solid #7C886A;
    padding: 20px 0;
}

span.claimCont {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
}

.container-logo .logoAceiteraAreco {
    width: 320px;
    height: 80px;
    background: url(../images/logo.png) no-repeat center;
    background-size: contain;
    display: block;
    margin: 0 35px;
    transition: .6s all;
}

.barraPrincP .toggle-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 160px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
}

#btn-toggle-menu {
    width: 40px;
    height: 30px;
    position: relative;
    margin: 50px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    pointer-events: all;
    transform: scale(0.7);
}


#btn-toggle-menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #7C886A;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#btn-toggle-menu span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#btn-toggle-menu span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#btn-toggle-menu span:nth-child(1),
#btn-toggle-menu span:nth-child(2) {
    top: 0px;
}

#btn-toggle-menu span:nth-child(3),
#btn-toggle-menu span:nth-child(4) {
    top: 10px;
}

#btn-toggle-menu span:nth-child(5),
#btn-toggle-menu span:nth-child(6) {
    top: 20px;
}

#btn-toggle-menu.open span:nth-child(1),
#btn-toggle-menu.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#btn-toggle-menu.open span:nth-child(2),
#btn-toggle-menu.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#btn-toggle-menu.open span:nth-child(1) {
    left: 3px;
    top: 6px;
}

#btn-toggle-menu.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 6px;
}

#btn-toggle-menu.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#btn-toggle-menu.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#btn-toggle-menu.open span:nth-child(5) {
    left: 3px;
    top: 18px;
}

#btn-toggle-menu.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 18px;
}

.contenidoMenu {
    padding: 30px 15px;
    transition: .6s all;
}

.contenidoMenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

a.linkMenu {
    font-family: 'PlantinMTProLightIt';
    margin: 10px 25px;
    display: block;
    text-align: center;
    font-size: 25px;
    line-height: 1;
    transition: .6s all;
}

a.linkMenu:hover {
    color: #485535;
}

a.linkMenu span {
    font-family: 'Quart';
    display: block;
    color: #485535;
}

.sectoinSite {
    min-height: 100vh;
}

.sectoExportamos {
    background-color: #E9F8FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.mapaLatin {
    background: url('../images/latin.png') no-repeat center;
    background-size: contain;
    position: relative;
    width: 100vw;
    height: 70vh;
}

.mapaLatin h1 {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    color: #CFD9C8;
    font-family: 'Quart';
    font-size: 100px;
}

.textExportamos {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5vh;
}

.textExportamos p {
    margin: 0;
    font-size: 15px;
}

.sectoDondeEstamos {
    position: relative;
    display: flex;
}

.mapaDondeEstamos {
    border: 0;
    width: 50%;
    height: 100vh;
}

.imagenDondeEstamos {
    background: url('../images/imagenDondeEstamos.png') no-repeat center center;
    height: auto;
    width: 50%;
    background-size: cover;
}

.fndSiteHome .contenidoSlideTit {
    background: url(../images/fndHome.jpg) no-repeat center;
}

#Productos .contenidoSlideTit {
    background: url(../images/fndProdu.jpg) no-repeat center;
}

#Aceite .contenidoSlideTit {
    background: url(../images/fndAceite.jpg) no-repeat center;
}

#Expeller .contenidoSlideTit {
    background: url(../images/fndExpeller.jpg) no-repeat center;
}

#Sustentable .contenidoSlideTit {
    background: url(../images/fndSustentable.jpg) no-repeat center;
}


#Aceite .contenidoSlideTit::after,
#Expeller .contenidoSlideTit::after {
    content: ' ';
    height: 100vh;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.contenidoSlideTit {
    background-size: cover !important;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

h1.megaTitulo {
    color: #CFD9C8;
    font-size: 100px;
    font-family: 'Quart';
    text-align: center;
    z-index: 99;
    transition: 1s all;
    opacity: 0;
    transform: translateY(100px);
}

h1.megaTitulo.topini {
    box-shadow: 0px 0px 10px 15px rgba(0, 0, 0, .2);
    background: rgba(0, 0, 0, .2);
    text-shadow: 5px 4px 9px rgba(0, 0, 0, 1);
    z-index: 11;
    transform: translateY(300px);
}

h1#titHacemos span {
    font-size: 30px;
    max-width: 60%;
    color: #FFF;
    display: block;
    text-align: center;
    margin: 0 auto;
}

h1.megaTitulo.activo {
    opacity: 1;
    transform: translateY(0px);
}

h1.megaTitulo.activo.topini {
    transform: translateY(200px);
}

h1.megaTitulo.colace {
    color: #b29b00;
}

.contenidoSlide {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.textoSimple {
    font-family: 'FontspringDEMOSofiaProSoftLight';
    max-width: 600px;
    color: #3D3D3D;
    font-size: 18px;
    margin: 0 auto 20px;
}

.finTextoSeg {
    color: #7C886A;
    font-family: 'PlantinMTProLightIt';
    margin-top: 60px;
    font-size: 24px;
}

.botonera {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    width: 100%;
}

a.btnAceiteTr {
    display: block;
    /*
    border: 1px solid #485535;
*/
    border-radius: 10px;
    padding: 10px 25px;
    margin: 45px auto 15px;
    width: 100%;
    max-width: 40%;
    text-align: center;
    background: #485535;
    font-family: 'Quart';
    color: #FFF !important;
    transition: .6s all;
}

a.btnAceiteTr:hover {
    background: #FFF !important;
    color: #485535 !important;
}

.textoDesc {
    max-width: 640px;
    font-size: 26px;
    line-height: 1.2;
    color: #3D3D3D;
    margin: 30px auto;
    text-align: center;
    z-index: 99;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 1);
}

.textoDesc.white {
    color: #FFF;
}

.botoneraSimple a.btnAceiteTr {
    max-width: 300px;
}

.boxClientes {
    padding: 20px 60px;
    width: 100%;
    max-width: 1500px;
    text-align: center;
    margin: 0 auto;
}

img.iconCliente {
    width: 90px;
    margin: 0 40px;
}

.megaTituloDark {
    color: #3D3D3D;
    opacity: 1;
    font-size: 60px;
    font-family: 'Quart';
    text-align: center;
    transform: none;
}

.videoObj {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
	display: block;
}

.contVideo {
    margin-bottom: 50px;
}

.fsustentable {
    flex-wrap: nowrap;
}

footer {
    background: #FFF;
    text-align: center;
    padding: 60px 15px;
}

.textoFooter {
    color: #7C886A;
    font-family: 'Montserrat';
    padding: 45px 0;
}

a.linkFooter {
    color: #7C886A;
    font-family: 'Montserrat';
}

a.linkRedes {
    color: #7C886A;
    font-size: 24px;
    margin: 5px 15px
}

.textoTelFooter {
    padding: 0 0 45px 0;
}

.redesCont {
    padding: 35px 0;
}

header.headPrim.active .contenidoMenu {
    padding: 15px;
}

header.headPrim.active .container-logo .logoAceiteraAreco {
    width: 220px;
    height: 60px;
}

header.headPrim.active {
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
}

header.headPrim.active a.linkMenu {
    font-size: 18px;
}

img.semilla {
    position: absolute;
    transition: .1s all;
    pointer-events: none;
}

img#semilla_1 {
    right: 40%;
    top: 40%;
    z-index: 11;
}

img#semilla_2 {
    left: 20%;
    top: 55%;
    z-index: 12;
    width: 60px;
}

img#semilla_3 {
    right: 30%;
    top: 70%;
    z-index: 13;
}

img#semilla_4 {
    right: 40%;
    top: 105%;
    z-index: 14;
}

img#semilla_5 {
    right: -60%;
    top: 60%;
    z-index: 15;
}

img#semilla_6 {
    left: 10%;
    top: 100%;
    z-index: 16;
}

img#semilla_7 {
    left: 25%;
    top: 160%;
    z-index: 17;
}

img#semilla_8 {
    right: 30%;
    top: 210%;
    z-index: 18;
}

img#semilla_9 {
    left: 40%;
    top: 320%;
    z-index: 19;
}

img#semilla_10 {
    right: 20%;
    top: 330%;
    z-index: 20;
    width: 120px;
}

img#semilla_11 {
    right: 40%;
    top: 350%;
    z-index: 21;
    width: 70px;
}

img#semilla_12 {
    right: 26%;
    top: 380%;
    z-index: 22;
    width: 120px;
}

img#semilla_13 {
    right: 20%;
    top: 390%;
    z-index: 23;
    width: 70px;
}

img#semilla_14 {
    left: 40%;
    top: 370%;
    z-index: 24;
    width: 120px;
}

img#semilla_15 {
    left: -65%;
    top: 460%;
    z-index: 25;
}

img#semilla_16 {
    right: 35%;
    top: 520%;
    z-index: 26;
    width: 100px;
}

img#semilla_17 {
    left: 40%;
    top: 460%;
    z-index: 27;
    width: 60px;
}

img#semilla_18 {
    left: 10%;
    top: 550%;
    z-index: 28;
}

img#semilla_19 {
    right: 15%;
    top: 520%;
    z-index: 29;
    width: 120px;
}

img#semilla_20 {
    left: 50%;
    top: 520%;
    z-index: 30;
}

img#semilla_21 {
    right: -60%;
    top: 530%;
    z-index: 31;
}

img#semilla_22 {
    left: 15%;
    top: 760%;
    z-index: 32;
    width: 100px;
}

img#semilla_23 {
    left: 35%;
    top: 830%;
    z-index: 33;
}

img#semilla_24 {
    right: 10%;
    top: 850%;
    z-index: 34;
}

img#semilla_25 {
    left: -74%;
    top: 630%;
    z-index: 35;
}


::-webkit-scrollbar {
    width: 8px;
    /* Tamaño del scroll en vertical */
    height: 8px;
    /* Tamaño del scroll en horizontal */
}

::-webkit-scrollbar-thumb {
    background: #7C886A;
    border-radius: 4px;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
::-webkit-scrollbar-thumb:hover {
    background: #617149;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
::-webkit-scrollbar-thumb:active {
    background-color: #B3BCA6;
}

::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}

/* Cambiamos el fondo cuando esté en active o hover */
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #d4d4d4;
}

.collapse:not(.show) {
    display: block;
}

img.SerAc {
    width: 100%;
    margin: 15px auto 15px;
    max-width: 160px;
}

.titItemSerAc {
    font-size: 14px;
    font-family: 'Quart';
    color: #4c5639;
}

.descSerAc {
    color: #4c5639;
    line-height: 1.4;
}

.boxGreenQS {
    background: #4c5639;
    color: #FFF;
    text-align: center;
	padding: 15px;
	margin-top: 60px;
}

.boxGreenQSinsd {
	width: 100%;
	max-width: 780px;
    margin: 0 auto;
}

.separadorLineaSREP {
	border-top: 2px solid #4c5639;
	margin-top: 35px;
	margin-bottom: 35px;
}

.boxMarcas img {
    height: 60px;
    margin: 15px;
}
