@import url('https://fonts.googleapis.com/css?family=Oswald:300,400');
html *{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
header {
    position: fixed;
    width: 100%;
    height: 45px;
    z-index: 999;
    background-image: url(../images/gradient.png);
}

body {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Heebo', sans-serif;
    text-align: left;
    color: #fff;
    cursor: default;
    height: 100vh;
    background-color: #000;
    padding: 0px;
    margin: 0px;
}
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    font-family: 'Oswald', sans-serif;
    background: #000;
    color: #fff;
    border: 1px solid #d8d8d8;
    text-align: left;
    margin-left: 25px !important;
    margin-top: 60px !important;
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
    font-size: 12px;
    font-weight: lighter;
    line-height: 16px;
    padding: 10px;
    overflow: hidden;
    font-weight: 400;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
/* border-color: ... !important; */
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 0px;
}
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}
.tooltipster-base .tooltipster-content {
    overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
    right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-left: 9px solid;
    margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-right: 9px solid;
    margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade-show {
    opacity: 1;
}
.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}
.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}
.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.LND_VOL_display_Web {
    display: block;
}
.LND_VOL_ln {
    position: absolute;
    left: 14px;
}
.LND_VOL_ln a {
    width: 160px;
    height: 30px;
    left: 15px;
    margin: 8px 0 0 5px;
    background: url(../svg/logo_ln-desktop.svg) no-repeat center center;
    background-size: contain;
    float: left;
}
.LND_VOL_ln span {
    margin-left: 15px;
    line-height: 48px;
    letter-spacing: -0.3px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.LND_VOL_ln_Mob {
    width: 70px;
    height: 30px;
    left: 45px;
    margin: 8px 0 0 5px;
    background: url(http://www.nacion.com/gnfactory/investigacion/2017/escuelas-unidocentes/svg/logo_ln-phone.svg) no-repeat center right;
    background-size: contain;
    float: left;
}
.LND_VOL_display_Mob {
    display: none !important;
}
#LND_VOL_menuMobile {
    font-size: 3em;
    color: #fff;
    font-weight: 900;
    padding-left: 4px;
    line-height: 34px;
}
#LND_VOL_menu {
    position: absolute;
    top: 14px;
    left: 42.5%;
    width: 25%;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
}
#LND_VOL_menu li {
    display: inline-block;
}
#LND_menuExtra {
    position: absolute;
    right: 120px;
    top: 14px;
}
#LND_menuExtra a, #LND_menuExtra a:hover, #LND_menuExtra a:visited {
    margin-right: 12px;
    color: #FFF;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    float: left;
}

#LND_VOL_social {
    position: absolute;
    right: 20px;
    top: 10px;
}
#LND_VOL_social li a {
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 5px;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url(../svg/share_facebook.svg);
}

#LND_VOL_facebook {
    background-position: 2px 0px;
}
#LND_VOL_twitter {
    background-position: -20px 0px;
}
#LND_VOL_google {
    background-position: -40px 0px;
}

#LND_VOL_social li {
    display: inline-block;
}
#LND_VOL_ficha_tecnica, #LND_VOL_notas_relacionadas {
    display: none;
    position: absolute;
    color: #fff;
    z-index: 9999;
    width: 18%;
    right: 10px;
    background-color: #000;
    top: 45px;
    padding: 2%;
    border: 1px solid;
    font-family: 'arial', sans-serif;
    font-size: 11px;
    font-weight: lighter;
    line-height: 14px;
}

#LND_VOL_menu_mobile {
    position: absolute;
    height: 100%;
    background-color: rgba(0,0,0,1);
    z-index: 9999;
    top: 45px;
    color: #fff;
    display: none;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    width: 100%;
    height: 100vh;
}
.LND_VOL_section{
    position: relative;
}
.LND_VOL_pasos{
    display: none;
}
#LND_VOL_section_1{
    background-image: url("../images/background.jpg");
    height: 100%;
    background-size: 100% 245%;
    background-position-y: 24%;
    overflow: hidden;
}
#LND_VOL_section_rt{
    position: absolute;
    left: 0;
    width: 30%;
    top: 14%;
    padding: 5%;
    z-index: 10;
}
.LND_VOL_bajada{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #B4A89A;
    letter-spacing: 1.6px;
}
.LND_VOL_title{
    font-size: 3.8rem;
    font-family: Georgia, Times, "Times New Roman", serif;
    line-height: 3.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
.LND_VOL_creditos{
    font-size: 0.8rem;
}
.LND_VOL_descripcion{
    line-height: 20px;
    font-size: 16px;
    padding-right: 8%;
}
.LND_VOL_indicacion{
    font-size: 12px;
    letter-spacing: 2px;
}
.LND_VOL_boton{
    width: 25%;
    border: 1px solid;
    padding: 10px 15px 10px 15px;
    text-align: center;
    border-radius: 25px;
    cursor: pointer;
}
#LND_VOL_nav{
    display: none;
}
#LND_VOL_nav ul{
    padding-left: 0px;
}
#LND_VOL_nav_mob{
    position: absolute;
    bottom: 6%;
    left: 5%;
    right: 5%;
}
#LND_VOL_nav ul li, #LND_VOL_nav_mob ul li{
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    background-image: url(../svg/button-nav.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.6;
}
#LND_VOL_nav ul li img, #LND_VOL_nav_mob ul li img{
    opacity: 0.6;
}
#LND_VOL_nav ul li img:hover, #LND_VOL_nav_mob ul li img:hover, .LND_VOL_buttom_select{
    opacity: 1 !important;
}
.LND_VOL_buttom_select_1{
    background-image: url(../svg/point-1.svg) !important;
    opacity: 1 !important;
}
.LND_VOL_buttom_select_2{
    background-image: url(../svg/point-2.svg) !important;
    opacity: 1 !important;
}
.LND_VOL_buttom_select_3{
    background-image: url(../svg/point-3.svg) !important;
    opacity: 1 !important;
}
.LND_VOL_buttom_select_4{
    background-image: url(../svg/point-4.svg) !important;
    opacity: 1 !important;
}
.LND_VOL_buttom_select_5{
    background-image: url(../svg/point-5.svg) !important;
    opacity: 1 !important;
}
.LND_VOL_buttom_select_6{
    background-image: url(../svg/point-6.svg) !important;
    opacity: 1 !important;
}

.LND_VOL_fadeIn {
  animation: play .6s;
  -webkit-animation: play .6s;
  -moz-animation: play .6s;

  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}
@keyframes play {
    100% { 
        background-size: 160% 430%;
        background-position: 68% 30%;
    }
}
canvas {
    position: absolute;
}
.canvas_1{
    top: 38%;
    right: 31%;
}
.canvas_2{
    top: 44%;
    right: 23%;
}
.canvas_3{
    top: 30%;
    right: 25%;
}
#LND_VOL_img_canvas, #LND_VOL_canvas_info{display:none;}
#LND_VOL_canvas_info{
    width: 185px;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    top: 61%;
    right: 30%;
}
#LND_VOL_canvas_info h1, .LND_VOL_point_text h1{
     font-size: 14px;
    line-height: 18px;
}
.LND_VOL_point_text p{
    font-size: 12px;
    line-height: 16px;
}
#LND_VOL_info_data_2{
    display: none;
    width: 50%;
    position: absolute;
    height: 50%;
    top: 40%;
    right: 0;
}
#LND_VOL_point_1 .LND_VOL_line_h{
    width: 60px;
    border-top: 1px solid #fff;
    position: absolute;
    right: -25%;
    margin-top: 19%;
}
#LND_VOL_point_1_b {
   
}
.LND_VOL_point_1_b_c_text{
    display: none;
}
#LND_VOL_point_1_b .LND_VOL_line_h{ 
    width: 230px;
    border-top: 1px solid #fff;
    position: absolute;
    margin-top: 19%;
    left: -178%;
    top: 33%;
}
#LND_VOL_point_1_b img{
    width: 7px;
    position: absolute;
    left: -180%;
    top: 52%;
}
#LND_VOL_point_1{
    position: relative;
    margin-left: -60px;
}
#LND_VOL_point_1 img{
    width: 7px;
    position: absolute;
    right: -26%;
    margin-top: 17.5%;
}
#LND_VOL_point_1_text{
    margin-top: -14px;
    text-align: left;
    margin-right: 10px;
}
#LND_VOL_point_1_b_text{
    position: absolute;
    right: 6%;
    width: 150px;
    top: 28%;
    font-size: 12px;
    line-height: 16px;
    display: none;
}
#LND_VOL_point_1_b_text h1, #LND_VOL_canvas_info h1{
    font-size: 14px;
    line-height: 18px;
}
#LND_VOL_point_1_c_text{
    width: 36%;
    position: absolute;
    right: 1%;
    bottom: 1%;
}
#LND_VOL_point_1_d_text{
    position: absolute;
    right: 32%;
    bottom: 38%;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}

#LND_VOL_point_2{
    position: absolute;
    left: 28%;
    top: 47%;
}
#LND_VOL_point_2 img{
   width: 7px;
    position: absolute;
    top: -3px; 
    margin-left: 24px;
}
#LND_VOL_point_2_text{
    margin-top: -18px;
}
#LND_VOL_point_2 .LND_VOL_line_h{
    width: 30px;
    border-bottom: 1px solid;
}
#LND_VOL_north{
    width: 15px;
    position: absolute;
    top: 50%;
    right: 1%;
    display: none;
}
.LND_VOL_fadeIn_2 {
    
  animation: play_two .6s;
  -webkit-animation: play_two .6s;
  -moz-animation: play_two .6s;

  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}
@keyframes play_two {
    100% { 
        background-size: 100% 150%;
    }
}
#LND_VOL_info_data_2_img{
    width: 18%;
    position: absolute;
    bottom: 37%;
    right: 71.5%;
}
#LND_VOL_info_data_2_img:hover, 
#LND_VOL_info_data_5_d_img:hover,
#LND_VOL_info_data_4_img:hover, 
#LND_VOL_info_data_5_e_img:hover,
#LND_VOL_info_data_6_f_img:hover,
#LND_VOL_info_data_6_h_img:hover,
#LND_VOL_info_data_6_c_img:hover{
    opacity: 0.6;
}
#LND_VOL_river{
    position: absolute;
    width: 12%;
    left: 34%;
    top: 18%;
    display: none;
}
#LND_VOL_point_2_a_text{
    position: absolute;
    left: 48%;
    top: 15%;
    width: 20%;
    display: none;
}
#LND_VOL_point_2_b_text{
    width: 26%;
    position: absolute;
    right: 38%;
    bottom: 22%;
}
#LND_VOL_info_data_3{
    display: none;
}

#fire, #smoke {
    position: absolute;
    width: 42%;
    height: 66%;
    left: 52%;
    top: -16%;
}

.flame {
  width:80%;
  height:100%;
  overflow:hidden;
  background: url("../images/smoke02.png") no-repeat;
  background-size: 100% 100%;
  display: none;
  /*background: rgba(255,255,255,1); border-radius: 50%;*/
}
.flame_in{
    /*
    -webkit-transition: all 10s ease-in;
    -webkit-transform: scale(1.2) translate(10%, 20%);
    -ms-transition: all 10s ease-in;
    -ms-transform: scale(1.2) translate(10%, 20%);   
    -moz-transition: all 10s ease-in;
    -moz-transform: scale(1.2) translate(10%, 20%);
    transition: all 10s ease-in;
    transform: scale(1.2) translate(10%, 20%);
    */
}
#LND_VOL_info_data_0{
    position: absolute;
    right: 2%;
    bottom: 20px;
    text-align: right;
}
#LND_VOL_info_data_0 img{
    width: 50%;
}

.LND_VOL_info_data_0_inline{
    float: left;
    height: 80px;
    width: 95px;
    padding-right: 10px;
    font-family: 'Oswald', sans-serif;
}
.LND_VOL_info_data_0_inline p{
    font-size: 10px;
    line-height: 14px;
}
.LND_VOL_info_data_0_inline h1{
    font-size: 22px;
    line-height: 22px;
    font-weight: normal;
}

#LND_VOL_onda_3{
    background-image: url(../images/wave-s3.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 58%;
    height: 80%;
    background-size: 100%;
    right: 6%;
    display: none;
    font-family: 'Oswald', sans-serif;
}
#LND_VOL_onda_3 h1{
    width: 150px;
    font-size: 20px;
    position: absolute;
    left: 53%;
    top: 8%;
}
#LND_VOL_onda_3 img{
    width: 12%;
    position: absolute;
    left: 53%;
    top: 26%;
}
#LND_VOL_piedra_1_3{
    background-image: url(../images/arrow-s3a.png);
    background-repeat: no-repeat;
    width: 31%;
    height: 52%;
    position: absolute;
    background-size: 100% 100%;
    left: 40%;
    top: 42%;
    display: none;
}
#LND_VOL_piedra_2_3{
    background-image: url(../images/arrow-s3b.png);
    background-repeat: no-repeat;
    width: 10%;
    height: 25%;
    position: absolute;
    background-size: 100% 100%;
    left: 57%;
    top: 44%;
    display: none;
}
#LND_VOL_piedra_3_3{
    background-image: url(../images/arrow-s3c.png);
    background-repeat: no-repeat;
    width: 18%;
    height: 43%;
    position: absolute;
    background-size: 100% 100%;
    left: 66%;
    top: 43%;
    display: none;
}
.LND_VOL_background_2{
    background-image: url("../images/background2.jpg") !important;
}
.LND_VOL_background_3{
    background-image: url("../images/background3.jpg") !important;
}
#LND_VOL_info_data_4{
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}
#LND_VOL_info_data_4_down{
    background-image: url("../images/s4-steps-domo.png");
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-size: 100% 100%;
}
#LND_VOL_info_data_4_img{
    width: 10%;
    position: absolute;
    bottom: 48%;
    right: 15%;
    display: none;
}
#LND_VOL_info_data_4_b_img{
    width: 6%;
    position: absolute;
    bottom: 53%;
    right: 33%;
}
#LND_VOL_info_data_4_c_img{
    width: 9%;
    position: absolute;
    bottom: 62%;
    right: 31%;
}
#LND_VOL_point_4_a_text{
    width: 120px;
    text-align: right;
    position: absolute;
    bottom: 45%;
    right: 40%;
}
#LND_VOL_point_4_b_text{
    width: 120px;
    text-align: left;
    position: absolute;
    bottom: 79%;
    right: 30%;
}
#LND_VOL_point_4_c_text{
    width: 50px;
    text-align: left;
    position: absolute;
    bottom: 54%;
    right: 30%;
    font-weight: bold;
}
#LND_VOL_point_4_d_text{
    width: 68px;
    text-align: left;
    position: absolute;
    bottom: 53%;
    right: 9%;
}
#LND_VOL_point_3 img{
    width: 7px;
    position: absolute;
    right: 30%;
    top: 42.7%;
}
#LND_VOL_point_4 img{
    width: 7px;
    position: absolute;
    right: 34.7%;
    top: 34.5%;
}
#LND_VOL_point_4 .LND_VOL_line_h{
    border-left: 1px solid;
    width: 0px;
    height: 14%;
    position: absolute;
    right: 35%;
    top: 21%;
}
#LND_VOL_point_3 .LND_VOL_line_h{
    border-bottom: 1px solid;
    width: 5%;
    position: absolute;
    right: 24.9%;
    top: 43%;
}
.LND_VOL_display_none{
    display: none;
}
#LND_VOL_info_data_5{
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}
#LND_VOL_info_data_5_a_img{
    position: absolute;
    width: 11%;
    left: 52%;
    top: 45%;
}
#LND_VOL_info_data_5_b_img{
    width: 37%;
    position: absolute;
    left: 52%;
    bottom: 50%;
}
#LND_VOL_info_data_5_c_img{
    width: 7%;
    position: absolute;
    left: 67%;
    top: 23%;
}
#LND_VOL_info_data_5_d_img{
    width: 7%;
    position: absolute;
    right: 15%;
    top: 30%;
}
#LND_VOL_info_data_5_e_img{
    position: absolute;
    width: 7%;
    bottom: 15%;
    right: 45%;
}
#LND_VOL_info_data_5_f_img{
    width: 53%;
    position: absolute;
    right: 7%;
    top: 6%;
}
#LND_VOL_point_5_a_text{
    position: absolute;
    top: 5%;
    right: 26%;
}
#LND_VOL_point_5_a_text h1{
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
}
#LND_VOL_point_5_b_text{
    width: 10%;
    position: absolute;
    right: 4%;
    top: 32%;
}
#LND_VOL_point_5_c_text{
    width: 10%;
    position: absolute;
    right: 13%;
    top: 35%;
}
#LND_VOL_point_5_d_text{
    width: 14%;
    position: absolute;
    right: 27%;
    top: 58%;
}
#LND_VOL_point_5_e_text{
    width: 12%;
    position: absolute;
    right: 32%;
    top: 74%;
}
#LND_VOL_point_5_f_text{
    width: 6%;
    position: absolute;
    right: 55%;
    bottom: 12%;
}
#LND_VOL_point_5_g_text{
    width: 5%;
    position: absolute;
    right: 15%;
    bottom: 14%;
}
#LND_VOL_point_5 img{
    width: 7px;
    position: absolute;
    right: 27.8%;
    top: 35.6%;
}
#LND_VOL_point_5 .LND_VOL_line_h{
    border-bottom: 1px solid;
    width: 6%;
    position: absolute;
    right: 22%;
    top: 36%;
}
#LND_VOL_point_6 img{
    width: 7px;
    position: absolute;
    right: 30.8%;
    top: 39.7%;
}
#LND_VOL_point_6 .LND_VOL_line_h{
    border-bottom: 1px solid;
    width: 7%;
    position: absolute;
    right: 24%;
    top: 40%;
}

#LND_VOL_info_data_6_a_img{
    position: absolute;
    width: 8%;
    left: 57%;
    top: 39%;
}
#LND_VOL_info_data_6_b_img{
    width: 28%;
    position: absolute;
    left: 40%;
    bottom: 11%;
}
#LND_VOL_info_data_6_c_img{
    width: 17%;
    position: absolute;
    left: 75%;
    top: 38%;
    z-index: 998;
}
#LND_VOL_info_data_6_d_img{
    width: 32%;
    position: absolute;
    right: 16%;
    top: -32%;
}
#LND_VOL_info_data_6_e_img{
    position: absolute;
    width: 8%;
    top: 23%;
    right: 25%;
}
#LND_VOL_info_data_6_f_img{
    width: 12%;
    position: absolute;
    right: 12%;
    top: 29%;
    z-index: 998;
}
#LND_VOL_info_data_6_g_img{
    width: 53%;
    position: absolute;
    right: 8%;
    top: 6%;
}
#LND_VOL_info_data_6_h_img{
    position: absolute;
    width: 7%;
    bottom: 16%;
    right: 44%;
}
#LND_VOL_point_6_a_text{
    position: absolute;
    top: 7%;
    right: 27%;
}
#LND_VOL_point_6_a_text h1{
    font-size: 22px;
}
#LND_VOL_point_6_b_text{
    position: absolute;
    top: 36%;
    right: 7%;
    width: 4%;
}
#LND_VOL_point_6_c_text{
    position: absolute;
    top: 73%;
    right: 26%;
    width: 17%;
}
#LND_VOL_point_6_d_text{
    position: absolute;
    bottom: 14%;
    right: 16%;
    width: 5%;
}
#LND_VOL_point_6_e_text{
    position: absolute;
    right: 7%;
    width: 18%;
    top: 54%;
}

#LND_VOL_point_7 img{
    width: 7px;
    position: absolute;
    right: 30.8%;
    top: 39.7%;
}
#LND_VOL_point_7 .LND_VOL_line_h{
    border-bottom: 1px solid;
    width: 7%;
    position: absolute;
    right: 24%;
    top: 40%;
}
#LND_VOL_boton_ver_mas{
    position: absolute;
    bottom: 8%;
    right: 0;
    width: 100%;
    color: #000;
    font-size: 12px;
    border-radius: 0px;
    padding: 5px 15px;
    font-weight: bold;
    text-align: left;
    border: 0px;
    left: 4%;
    z-index: 11;
}
#LND_VOL_boton_ver_mas img{
    width: 300px;
}

#LND_VOL_section_2, 
#LND_VOL_section_3,
#LND_VOL_section_4,
#LND_VOL_section_5,
#LND_VOL_section_6{
    text-align: center;
   /* margin-top: 5%;*/
    /* margin-bottom: 5%;*/
   /* height: 100%;*/
}
#LND_VOL_section_3{
    margin-top: 15%;
}
#LND_VOL_section_6{
    padding-left:  15%;
    padding-right: 15%;
}
#LND_VOL_section_6 img{
    width: 15%
}
#LND_VOL_section_6 p, #LND_VOL_section_6 p a, #LND_VOL_section_6 p a:hover, #LND_VOL_section_6 p a:visited{
    color: #fff;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    text-decoration: none;
    line-height: 16px;
    text-transform: uppercase;
}
#LND_VOL_section_2_text{
    width: 60%;
    margin: -12% auto;
    font-family: 'Heebo', sans-serif;
}
#LND_VOL_section_2_text h1, #LND_VOL_section_3_text h1, #LND_VOL_section_4_text h1{
    line-height: 40px;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: 300;
}
#LND_VOL_section_3_text h1, #LND_VOL_section_4_text h1{
    text-align: left;
}
#LND_VOL_section_3_text p, #LND_VOL_section_4_text p{
    text-align: left;
}
#LND_VOL_intro_mob{
    padding-top: 45px;
    text-align: center;
}
#LND_TR_menuMobile{
    display: none;
    font-size: 3em;
    color: #fff;
    font-weight: 900;
    padding-left: 4px;
    line-height: 34px;
}
.LND_VOL_nav_mob, .LND_VOL_section_mob{
    display: none;
    position: relative;
}
#LND_VOL_pasos_mob{
    height: 100vh;
    background-color: #000;
    padding-bottom: 10%;
}
.LND_VOL_pasos_mob{
    height: 100vh;
    background-position: center;
    background-size: 240%;
    background-repeat: no-repeat;
    display: none;
}
.LND_VOL_pasos_mob_select{
    display: block;
}
#LND_VOL_1_mob{
    background-image: url(../images/mob_1.png);
}
#LND_VOL_2_mob{
    background-image: url(../images/mob_2.png);
}
#LND_VOL_3_mob{
    background-image: url(../images/mob_3.png);
}
#LND_VOL_4_mob{
    background-image: url(../images/mob_4.png);
}
#LND_VOL_5_mob{
    background-image: url(../images/mob_5.png);
}
#LND_VOL_6_mob{
    background-image: url(../images/mob_6.png);
}
.LND_VOL_inline_60_40{
    display: inline-block;
    vertical-align: middle;
}
.LND_VOL_inline_60{
    width: 59%;
}
.LND_VOL_inline_40{
    width: 39%;
}
.LND_VOL_inline_50{
    width: 50%;
    margin-left: 9%;
}
    
#LND_VOL_ficha_tecnica p a, #LND_VOL_ficha_tecnica p a:hover,#LND_VOL_ficha_tecnica p a:visited{
    text-decoration: none;
    color: #fff;
}
#LND_VOL_boton_ver_mas_mobile{
    width: 100%;
    font-size: 16px;
    text-align: center;
    position: absolute;
    bottom: 0%;
    height: 30px;
    background-color: #e1bfa1;
    padding-top: 5px;
    padding-bottom: 3px;
    color: #000;
}
#LND_VOL_p_rg{
    padding-right: 25%;
}
.LND_VOL_text_lt{
    padding-left: 25%;
}
#LND_VOL_section_5, #LND_VOL_nota_relacionada{
    text-align: center;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10%;
    letter-spacing: 2px;
    width: 100%;
}
#LND_VOL_section_5 a, #LND_VOL_section_5 a:hover,#LND_VOL_section_5 a:visited{
    color: #fff;
    text-decoration: none;
}
#LND_VOL_section_5 h2{
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
}
#LND_VOL_section_5 h1{
    font-size: 22px;
    font-weight: 300;
    line-height: 26px;
    font-family: Georgia;
    letter-spacing: -0.5px;
}
#LND_VOL_section_5 img{
    width: 20%;
}
#LND_VOL_section_6{
    width: 70%;
}
#LND_VOL_nota_relacionada{
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: 'Oswald', sans-serif;
}
#LND_VOL_nota_relacionada img{
    width: 80%;
}
#LND_VOL_nota_relacionada h2{
    font-size: 12px;
    font-weight: normal;
    color: #fff;
}
#LND_VOL_nota_relacionada h1{
    font-size: 21px;
    font-weight: 300;
    line-height: 24px;
    text-transform: initial;
    font-family: Georgia, sans-serif;
    letter-spacing: -0.5px;
}
#LND_VOL_nota_relacionada a, #LND_VOL_nota_relacionada a:hover,#LND_VOL_nota_relacionada a:visited{
    color: #fff;
    text-decoration: none;
}
#LND_VOL_creditos_m{
    padding-left: 10%;
    padding-right: 10%;
    font-size: 12px;
    text-transform: uppercase;
    color: #c6c6c6;
}
#LND_VOL_creditos_m a, #LND_VOL_creditos_m a:hover,#LND_VOL_creditos_m a:visited{
    text-decoration: none;
    color: #c6c6c6;
}
#LND_VOL_section_1_mob .LND_VOL_title{
    font-size: 2.5rem;
    line-height: 2.5rem;
}

@media(max-width: 1100px){  
    #LND_VOL_section_1{
        display: none;
    }
    .LND_VOL_nav_mob, .LND_VOL_section_mob{
        display: block;
    }
    .LND_VOL_pasos_mob{
        background-size: cover;
        -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
    }
     #LND_VOL_nav_mob {
        width: 100%;
        left: inherit;
        right: inherit;
     }
     #LND_VOL_nav_mob ul{
        left: inherit;
        text-align: center;
        padding-left: 0;
     }

    #LND_VOL_nav_mob ul li{
        width: 50px;
        height: 50px;
    }
    .LND_VOL_descripcion{
        padding-left: 15%;
    }
    #LND_VOL_section_2, 
    #LND_VOL_section_3, 
    #LND_VOL_section_4, 
    #LND_VOL_section_5, 
    #LND_VOL_section_6{
        /* display: table; */
    }
    .LND_VOL_inline_60_40{
        display: block;
        margin: 0 auto;
    }
    .LND_VOL_inline_60{
        width: 90%;
        margin-bottom: 16%;
    }
    .LND_VOL_inline_40{
        width: 90%;
        margin-bottom: 16%;
    }
    .LND_VOL_inline_50{
        width: 90%;
        margin-left: 0%;
    }
    .LND_VOL_encabezado{
        height: 45px;
        background-color: #000;
        opacity: 0.8;
    }
    #LND_VOL_section_3_text p, #LND_VOL_section_4_text p, #LND_VOL_section_2_text{
        text-align: center !important;
    }
    #LND_VOL_section_5 img{
        width: 50%;
    }
    #LND_VOL_section_5 h1{
        font-size: 22px;
        font-weight: 300;
        line-height: 38px;
    }
    .LND_VOL_bajada{
        font-size: 1.5rem;
    }
    
}
@media(max-width: 769px){  
    #LND_VOL_section_3_text h1, #LND_VOL_section_4_text h1{
        text-align: center;
    }
    #LND_VOL_p_rg {
        padding-right: 0%;
    }
    .LND_VOL_text_lt{
        padding-left: 0%;
    }

}

@media(max-width: 720px){  
    
    #LND_menuExtra {
        display: none;
    }
    #LND_VOL_social {
        top: 12px;
    }
    #LND_VOL_menu {
        left: 0;
        top: 2px;
    }
    .LND_VOL_icon {
        background-image: url(../svg/icon_menu.svg?ht28022017v8);
    }
    .LND_VOL_ln a {
        position: absolute;
        background: url(../svg/logo-mobile.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .LND_VOL_encabezado #logo span, .LND_VOL_icon{
        display: none;
    }
    #LND_TR_menuMobile, 
    .LND_VOL_nav_mob, 
    .LND_VOL_section_mob{
        display: block;
    }
    .LND_VOL_descripcion{
        padding-right: 10%;
        padding-left: 10%;
    }
    #LND_VOL_section_2_text{
        width: 90%;
        text-align: left;
        margin-top: 8%;
        margin-bottom: 8%;
    }

    #LND_VOL_section_2_text h1, #LND_VOL_section_3_text h1, #LND_VOL_section_4_text h1{
        text-align: center;
        padding-left: 0%;
        font-size: 30px;
        line-height: 34px;
    }
    #LND_VOL_section_3_text p, #LND_VOL_section_4_text p{
        padding-left: 0;
        padding-right: 0;
    }
    .LND_VOL_display_Mob{
        display: block !important;
    }
    .LND_VOL_display_Web{
        display: none;
    }
    #LND_VOL_section_6 img{
        width: 50%;
        max-width:135px;
    }
    #LND_VOL_nav_mob ul li{
        width: 30px;
        height: 30px;
    }
     #LND_VOL_p_rg{
        padding-right: 0%;
    }
    .LND_VOL_text_lt{
        padding-left: 0%;
    }
    .LND_VOL_bajada{
        font-size: 12px;
    }
    .LND_VOL_title {
        font-size: 3rem;
        line-height: 3rem;
    }
    .LND_VOL_fix_br{
        display: none;
    }
    #LND_VOL_section_3_text p, #LND_VOL_section_4_text p, #LND_VOL_section_2_text{
        font-size: 14px;
        line-height: 20px;
    }
    #LND_VOL_menu {
        width: 35px;
    }


}