@import url('https://fonts.googleapis.com/css2?family=Fauna+One&family=Roboto:wght@200;300;400;500;600&display=swap');

@font-face {
    font-family: 'arvobold';
    src: url('../fonts/arvo-bold.woff2') format('woff2'),
         url('../fonts/arvo-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arvobold_italic';
    src: url('../fonts/arvo-bolditalic.woff2') format('woff2'),
         url('../fonts/arvo-bolditalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arvoitalic';
    src: url('../fonts/arvo-italic.woff2') format('woff2'),
         url('../fonts/arvo-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arvoregular';
    src: url('../fonts/arvo-regular.woff2') format('woff2'),
         url('../fonts/arvo-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/****ANIMATIONS***/

@keyframes rotation {
    0% {transform:rotate(0deg);}
    100% {transform:rotate(360deg);}
}

@keyframes paint{
    0%{
        -webkit-mask-size: 0% 0%;
        mask-size: 0% 0%;
    }

    100%{
        -webkit-mask-size: 250% 250%;
        mask-size: 250% 250%;
    }
}

/**** Global Color ***/

:root{
    --ligth-blue: #C6D4EE;
    --mid-blue: #8AACD1;
    --dark-blue: #4E88A8;
    --light-purple: #9B92C6;
    --mid-purple: #6E58A2;
    --dark-purple: #3E2C76;
    --body: #d0d3d9;
}

body{
    font-size: 22px;
    color: var(--dark-purple);
    margin: 0;
    padding: 0;
    background-color: var(--body);
    overflow-x: hidden;
}

h1, h2, h3, h3 small{
    font-family: 'arvoregular', serif;
    color: var(--dark-purple);
    font-weight: 400;
}

h4, h5, p, small, a, ul, li{
    font-family: 'Roboto', serif;
    color: var(--dark-purple);
    font-weight: 200;  
}

li{
    font-size: 1.2em;
    margin: 2em 0;
}

footer{
    padding: 2em;
    text-align: center;
}

footer h3, footer h4, footer p, footer a{
    color: var(--dark-blue);
    padding: 0;
    margin: 0;
}

h1{
    font-size: 3em;
    margin: 1em 0;
}

small{
    display: block;
}

h1 small{
    font-size: .7em;
}

h2{
    font-size: 4em;
    margin: 1em 0;
}

h2 small{
    font-size: .5em;
}

h3{
    font-size: 2.5em;
    margin: 1em 0;
}

h3 small{
    font-size: .7em;
    margin: 1em 0;
}

h4{
    font-size: 2em;
    font-weight: lighter;
}

p{
    font-size: 1.2em;
    margin: 2em 0;
    font-weight: lighter;
    line-height: 140%;
}

img, video{
    margin: 2em 0;
    max-width: 100%;
}

video{
    width: 100%;
}

.button{
    padding: 0.8em 1.5em;
    border-radius: 1em;
    background-color: white;
    font-size: .8em;
    margin: 10px auto;
    display: block;
    width: auto;
    max-width: 500px;
    text-align: center;
}

.button.purple{
    background-color: var(--mid-purple);
    color: white;
    transition: all .3s ease-in-out;
}

.button.purple:hover{
    background-color: var(--dark-purple);
    color: white;
    transition: all .3s ease-in-out;
}



.lock-scroll{
    overflow: hidden !important;
}

.mid-purple{
    color: var(--mid-purple);
}

.button img{
    width: 20px;
    display: inline;
    margin: 0 10px;
    vertical-align: middle;
}

.button.border.blue{
    color: var(--dark-blue);
    background-color: transparent;
    border: 2px solid var(--dark-blue);
    transition: all .3s ease-in-out;
}

.button.border.blue:hover{
    background-color: var(--dark-blue);
    color: white;
    transition: all .3s ease-in-out;
}

.button.border.white{
    color: white;
    background-color: transparent;
    border: 2px solid white;
    transition: all .3s ease-in-out;
}

.button.border.white:hover{
    background-color: white;
    color: var(--dark-blue);
    transition: all .3s ease-in-out;
}

.convencion{
    font-family: 'arvoregular';
    margin-bottom: 50px;
}

.convencion img{
    display: inline;
    margin: 0 10px;
    vertical-align: middle;
}

.center{
    text-align: center;
}

.wrapper{
    position: relative;
}

.background-shapes{
    position: absolute;
    max-width: 1900px;
    margin: 0 auto;
}

.background-shapes img, .timeline img{
    position: absolute;
    pointer-events: none;
}

.preloader{
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    background: var(--body);
    z-index: 2;
    transition: 1s all;
    visibility: visible;
}
.preloader.done{
    overflow: hidden;
    opacity: 0;
    transition: all 4s ease-in-out;
} 

.title-loader{
    font-weight: 800;
    color: transparent;
    font-family: 'arvoregular';
    font-size:120px;
    background: url("../images/texture-df-01.svg") repeat;
    background-position: bottom center;
    background-size: 140%;
    -webkit-background-clip: text;
    background-clip: text;
    position:relative;
    text-align:center;
    animation: textLoader 5s forwards;
    max-width: 1500px;
}

.hide{
    display: none;
}

.subtitle-loader{
    text-align: center;
    font-family: 'Fauna One', serif;
    font-size: 1.2em;
    animation: opacity 5s forwards;
}

  @keyframes textLoader {
        0% {scale: .5; background-size: 220%; opacity: 0;}
        50% {opacity: 1;}
        100% {scale: 1; background-size: 120%; opacity: 1;}
    }

    @keyframes opacity {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }



.timeline{
    width: 70vw;
    max-width: 1600px;
    height: 200vh;
    position: relative;
    margin-bottom: 50vh;
}

.timeline img:first-child{
    animation: rotation 50s infinite linear;
}

.timeline h4{
    font-family: 'Fauna One', serif;
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
    margin-left: 20px;
    margin: 20px;
    position: absolute;
    left: 100px;
    transition: all 1s .8s ease-in-out;
}

.item{
    position: absolute;
    width: 100%;
    display: flex;
}

.item .modal-container{
    width: 100px;
    height: 100px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 1s .5s ease-in-out;
}

.item.active .modal-container{
    z-index: 999;
}

.item .modal-container p{
    opacity: 0;
    color: white;
    margin: 0;
    padding: 0 15%;
    transition: all .5s ease-in-out;
}

.item .modal-container .shape-back{
    border-radius: 70% 100% 70% 100% / 100% 100% 70% 55%;
    background-color: var(--mid-blue);
    width: 100%;
    height: 100%;
    display: flex;
    justify-self: center;
    align-items: center;
    position: absolute;
    animation: rotation 10s infinite linear;
    transition: all 1s ease-in-out;
}

.item .modal-container .close-shape{
    border-radius: 100% 70% 55% 100% / 100% 55% 100% 70%;
    background-color: white;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-self: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    transition: all 1s ease-in-out;
    z-index: 1;
    
}

.item .modal-container .close-shape span{
    font-family: 'Fauna One', serif;
    color: var(--mid-blue);
    display: inline-block;
    width: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.item.open-modal .modal-container{
    width: 800px;
    height: 800px;
    transition: all 1s ease-in-out;
}

.item.open-modal h4{
    transform: translateY(-12vh);
    left: 0;
    transition: all 1s ease-in-out;
}

.item.open-modal .modal-container .close-shape{
    left: 60%;
    top: 20%;
    transition: all 1s ease-in-out;
}

.item.open-modal .modal-container .close-shape span{
    opacity: 1;
}

.item.open-modal .modal-container p{
    opacity: 1;
    z-index: 1;
    position: relative;
    font-size: .9em;
    transition: all 1s .6s ease-in-out;
}

.item.open-modal .modal-container p .subtitle{
    font-family: 'arvoregular';
    display: block;
    margin: 1em 0;
    font-size: 1.1em;
}

.item.open-modal .modal-container p cite{
    color: var(--dark-purple);
    font-weight: 800;
    position: relative;
}

.item.open-modal .modal-container p cite:before{
    content: "\201C";
    font-family: 'Times New Roman', Times, serif;
    font-size: 6em;
    position: absolute;
    left: -70px;
    top: 10px;
}


.timeline .item#one{
    top: 20vw;
    left: 20vw;
}

.timeline  .item#two{
    top: 35vw;
    left: 38vw;
}

.timeline  .item#three{
    top: 50vw;
    left: 49vw;
}


.timeline  .item.open-modal#four h4, .item.open-modal#five h4{
    left: 20vw;
}

.timeline  .item#four{
    top: 70vw;
    left: 35vw;
}

.timeline  .item#five{
    top: 82vw;
    left: 20vw;
}

.timelinetwo{
    width: 100vw;
    height: 200vh;
    position: relative;
}

.timelinetwo img{
    position: absolute;
    pointer-events: none;
    height: 130vh;
}

.timelinetwo h4{
    position: absolute;
    font-family: 'Fauna One', serif;
}

.timelinetwo .item.one h4{
    top: 20vh;
    left: 300px;
}

.timelinetwo .item.two h4{
    top: 40vh;
    left: 500px;
}

.timelinetwo .item.three h4{
    top: 65vh;
    left: 600px;
}


.timelinetwo .item.four h4{
    top: 86vh;
    left: 500px;
}

.timelinetwo .item.five h4{
    top: 102vh;
    left: 300px;
}

.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 5em 0;
    position: relative;
    z-index: 1;
}

.credit{
    max-width: 80%;
    margin: 0 auto;
}

.credit p{
    padding: 0;
    margin: 0;
    font-size: 1em;
}

.datos-perpetradores{
    margin: 5em 0;
}

.datos-perpetradores h2, .datos-perpetradores h3{
    margin: 0;
}

.first-section .wrapper, .first-section .container, .cronologia{
    padding: 0;
}

.graph{
    margin-top: 10em;
}

.illustration-container{
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.illustration-container img{
    opacity: 0;
    mask-image: url(../images/brush.png);
    mask-size: 0% 0%;
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-position: 0;
    -webkit-mask-image: url(../images/brush.png);
    -webkit-mask-size: 0% 0%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: all 1s ease-in-out;
}

.illustration-container img.line-illustration{
    position: absolute !important;
    width: 100%;
    left: 0;
    mask-image: url(../images/brush-02.svg);
    mask-size: 100% 100%;
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-position: 0;
    -webkit-mask-image: url(../images/brush-02.svg);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.illustration-container.is-active img{
    animation: paint 2.5s 1s ease-in-out forwards;
    opacity: 1;
    transition: all 2.5s 1s ease-in-out;
}

.illustration-container.is-active img.line-illustration{
    animation: paint 2.5s linear forwards;
    opacity: 1;
    transition: all 1s ease-in-out;
}

.introduction{
    height: 100vh;
    display: flex;
   align-items: center;
}

.align-right{
    width: 50vw;
    margin-left: 40vw;
    z-index: 1;
    position: relative;
}

.piece{
    padding: 10em 0;
}

.right{
    text-align: right;
}

.map-interactive{
    position: relative;
}

.map-interactive .background-modal{
    background-color: var(--body);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.map{
    position: absolute;
    top: 0;
    transition: all 1s ease-in-out;
}

.map .close{
    display: none;
}

.map.open-map .close{
    font-family: 'arvoregular';
    position: absolute;
    top: 0;
    border: 1px solid var(--dark-purple);
    width: 16px;
    padding: 3px;
    border-radius: 100%;
    font-size: 12px;
    display: block;
}

.map:hover{
    transform: scale(1.1);
    cursor: pointer;
    transition: all 1s ease-in-out;
}

.map img{
    margin: 0;
}

.map h3 {
    font-size: 0em;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 200%;
    max-width: 300px;
    transition: all 1s ease-in-out;
}

.map.open-map h3{
    font-size: 1.4em;
    transition: all 1s ease-in-out;
}

.map h3 small{
    margin: 0;
}

.map h3 small span{
    display: inline-block;
}

.map.antioquia {
    top: 25%;
    left: 16%;
    width: 22%;
}

.map.meta{
    top: 46%;
    left: 32%;
    width: 24%;
}

.map.valle-del-cauca {
    top: 46%;
    left: 13%;
    width: 12%;
}

.naturaleza{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    vertical-align: middle;
    margin-top: 50vh;
}

.row{
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}

.naturaleza .col{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    max-width: 50vw;
    position: relative;
}

.naturaleza .col .text{
    padding: 5vw;
}

.naturaleza .col.col-left .text{
    padding: 5vw 4vw 9vw 11vw;
}

.naturaleza .col img{
    position: absolute;
    margin: 0;
}

.naturaleza .col-left{
    max-width: 800px;
    background-image: url(../images/1_inicio.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.naturaleza .col-right-1{
    max-width: 800px;
    margin-left: 200px;
    background-image: url(../images/2_inicio.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.naturaleza .col.col-right-1 .text{
    padding: 14vw 4vw 12vw 9vw;
}

.naturaleza .col-right-2{
    max-width: 800px;
    margin-left: 200px;
    background-image: url(../images/3_inicio.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 10vh;
}

.naturaleza .col.col-right-2 .text{
    padding: 6vw 4vw 12vw 9vw;
}

.second-section .background-shapes{
    top: -14vh;
    left: -12vw;
    right: 0;
    width: 80vw;
    max-width: 1700px;
}

.second-section .title h2{
    position: absolute;
    max-width: 40vw;
    left: 10vw;
    top: 25vh;
}

.second-section .title img{
    padding-top: 15vh;
}

.third-section{
    margin-top: 30vh;
}


.third-section .background-shapes{
    top: 0;
    left: 0;
    right: 0;
    width: 82vw;
    max-width: 1600px;
} 

.third-section .victimas-directas .background-shapes{
    bottom: 0;
    width: 115vw;
}

.third-section .victimas-directas .background-shapes img{
    bottom: -30vh;
    right: -5vw;
    width: 150vw;
}

.third-section .victimas-indirectas .background-shapes{
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 2000px;
    width: 100vw;
}

.third-section .victimas-indirectas .background-shapes img{
    bottom: -56vh;
    padding: 2vw;
}

.third-section .victimas-indirectas > img{
    position: absolute;
    bottom: -20vh;
    left: 0;
    right: 0;
    width: 100vw;
    min-width: 1800px;
    max-width: 1900px;
    margin: 0 auto;
    background-image: url(../images/back_shape_6_1.svg);
    background-position: center;
}

.third-section .illustration-container:first-child{
    width: 70vw;
    max-width: 100% !important;
    margin: inherit;
}

.third-section .title{
    margin-bottom: 50vh;
    max-width: 1900px;
    margin: inherit !important;
}

.third-section .title-content{
    width: 50vw;
    position: absolute;
    top: 0;
    right: 0;
}

.third-section .title-content p{
    padding: 0 1vw 0 10vw;
}

.fourth-section h2{
    max-width: 1000px;
    margin: 0 auto;
}

.fourth-section .background-shapes{
    top: 20vh;
    left: -10vw;
    width: 120vw;
}

.fourth-section .illustration-container{
    margin-top: 20vw;
}

.fifth-section .background-shapes{
    top: 80vh;
    left: 0;
    width: 100vw;
}

.fifth-section h2{
    margin-top: 0;
}

.fifth-section .poema img{
    width: 100%;
    position: absolute;
    min-width: 1900px;
    margin: 0 auto;
    top: 0;
}

.fifth-section .poema .container:last-child{
    padding: 16vh 0 0;
}

.fifth-section .poema .background-shapes{
    top: 0;
    left: 0;
    right: 0;
    width: 90vw;
}

.seventh-section .background-shapes{
    top: 0;
    left: 10vw;
    width: 90vw;
}
.seventh-section .danos{
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.seventh-section .danos h3{
    color: white;
    font-size: 2.2em;
    position: relative;
    z-index: 1;
    text-align: center;
}

.seventh-section .danos p{
    color: white;
    position: relative;
    z-index: 1;
}

.seventh-section .danos .col{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 15vh;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.seventh-section .danos .col img{
    position: absolute;
    width: 40vw;
}

.seventh-section .danos .col:last-child img{
    position: absolute;
    width: 50vw;
    right: 2vw;
}

.seventh-section .danos .col.col-right{
    margin-top: 20vh;
}

.seventh-section .danos-causados .background-shapes {
    top: 0;
    left: 0;
    width: 100vw;
}

.seventh-section .danos-causados .title h2{
    max-width: 1300px;
    margin: 0 auto;
}

.seventh-section .intencionalidades{
    height: 100vh;
    background-image: url(../images/background_shape_13.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seventh-section .fullModals .item{
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item .background-modal{
    background-color: var(--body);
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 0;
    border-radius: 100%;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item#one{
    right: 30vw;
    width: 200px;
    height: 300px;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item#two{
    top: 50vh;
    left: 25vw;
    width: 250px;
    height: 350px;
}

.seventh-section .fullModals .item#two .modal-container .shape-back{
    animation-direction: reverse;
    left: 0;
}

.seventh-section .fullModals .item.open-modal{
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 99999;
    position: fixed;
    overflow-y: scroll;
    transition: all 1s ease-in-out !important;
}

.seventh-section .fullModals .item.open-modal .background-modal{
    opacity: 1;
    border-radius: 0%;
    transition: all 1s 1s ease-in-out;
}

.seventh-section .fullModals .item#one.open-modal{
    right: 0;
}

.seventh-section .fullModals .item#two.open-modal{
    left: 0;
}


.seventh-section .fullModals .item#two .modal-container .shape-back{
    border-radius: 100% 100% 100% 80% / 100% 100% 70% 55%;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item.open-modal h4 {
    transform: translateY(0);
    left: inherit;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item .modal-container{
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 900px;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item .modal-container p{
    font-size: 0em;
}

.seventh-section .fullModals .item.open-modal .modal-container p{
    font-size: .9em;
}

.seventh-section .fullModals .item.open-modal{
    width: 800px;
    height: 800px;
    transition: all 1s ease-in-out;
}

.seventh-section .fullModals .item .modal-container .close-shape{
    opacity: 0;
}

.seventh-section .fullModals .item.open-modal .close-shape{
    opacity: 1;
}

.seventh-section .intencionalidades .background-shapes{
    max-width: 100%;
    width: 100%;
    left: 0;
}

.seventh-section .intencionalidades h3{
    text-align: center;
}

.seventh-section .fullModals .item{
    position: absolute;
    height: 400px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seventh-section .fullModals .item h4{
    z-index: 2;
    position: relative;
    font-family: 'arvoregular';
    font-weight: 300;
    color: white;
    margin: 1em 0;
}

.seventh-section .fullModals .item ul{
    position: relative;
    max-width: 500px;
    margin: 0;
    
}

.seventh-section .fullModals .item ul li{
    color: white;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0em;
}

.seventh-section .fullModals .item.open-modal ul{
    margin: 2em auto;
}

.seventh-section .fullModals .item.open-modal ul li{
    font-size: .9em;
}




.seventh-section .modos-ejecucion{
    height: 100vh;
    background-image: url(../images/background_shape_14.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seventh-section .modos-ejecucion .background-shapes{
    max-width: 100%;
    width: 100%;
    left: 0;
}

.seventh-section .modos-ejecucion h3{
    text-align: center;
}

.seventh-section .modos-ejecucion .item{
    position: absolute;
    height: 400px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seventh-section .modos-ejecucion .item.one{
    top: 0;
    right: 0;
}

.seventh-section .modos-ejecucion .item.one img{
    transform: rotate(230deg);
}

.seventh-section .modos-ejecucion .item.two{
    top: 90vh;
    left: 10vw;
}

.seventh-section .modos-ejecucion .item.two img{
    transform: rotate(230deg);
}

.seventh-section .fullModals .inside-content{
    position: absolute;
    text-align: center;
    padding: 10vh 0;
    z-index: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.seventh-section .fullModals .main-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}


.seventh-section .fullModals.modos-ejecucion .item#one{
    width: 300px;
}

.seventh-section .fullModals.modos-ejecucion .item#two{
    width: 350px;
    height: 300px;
    left: 20vw;
    top: 60vh;
}

.seventh-section .fullModals.modos-ejecucion .item.open-modal#two{
    left: 0;
}

.seventh-section .fullModals .inside-content h4{
    left: 0 !important;
    transform: initial;
    font-size: 0em;
}

.seventh-section .fullModals .item.open-modal .inside-content h4{
    font-size: 2em;
}

.seventh-section .fullModals .item.open-modal .inside-content.left{
    top: 90vh;
    left: -20vw;
    height: 70vh;
    width: 40vw;
    justify-content: center;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: all 1s 2s ease-in-out;
}

.seventh-section .fullModals .item.open-modal .inside-content.right{
    top: 90vh;
    right: -20vw;
    height: 70vh;
    justify-content: center;
    width: 40vw;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: all 1s 2s ease-in-out;
}

.seventh-section .fullModals .inside-content .shape-back.light{
    background-color: var(--ligth-blue);
}

.seventh-section .fullModals .inside-content:first-child .shape-back{
    animation-direction: reverse;
}

.seventh-section .fullModals .inside-content:last-child .shape-back{
    animation-direction: normal;
}

.seventh-section .fullModals .inside-content p, .seventh-section .fullModals .inside-content h4{
    color: var(--dark-purple);
}

.seventh-section .fullModals .item#two .modal-container{
    max-height: 700px;
}

.seventh-section .fullModals .item#two.open-modal .inside-content.left{
    top: 65vh;
}

.seventh-section .fullModals .item#two.open-modal .inside-content.right{
    top: 75vh;
}

.eight-section{
    background-color: white;
}

.eight-section h2{
    font-size: 8em;
}

.title{
    max-width: 1900px;
    margin: 0 auto;
}

.title-graph {
    display: flex;
    justify-content: space-between;
    width: 90vw;
    margin: 0 auto;
}

.title-graph p{
    margin: 0;
    font-size: 1em;
}

.col-1-3{
    display: inline-flex;
}

.title img{
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.victimas-graph .container{
    padding-bottom: 0;
}

.victimas-graph .container:last-child{
    padding-top: 0;
}

.white-gradient{
    background: rgb(208,211,217);
    background: linear-gradient(180deg, rgba(208,211,217,1) 0%, rgba(255,255,255,1) 100%);
    height: 50vh;
    position: absolute;
    width: 100%;
}

.white p, .white h3, .white small, .white li{
 color: #fff;
}

.wrapper{
    padding: 5em 0;
}

.wrapper.blue, footer{
    background-color: var(--ligth-blue);
}

.wrapper.blue h2, .wrapper.blue h3, .wrapper.blue h4, .wrapper.blue p, .wrapper.blue small, .wrapper.blue ul, .wrapper.blue li, .wrapper.blue a{
    color: white;
}

.show-mobile{
    display: none;
}

.hide-mobile{
    display: block;
}

/****media queries****/

@media screen and (max-width: 1544px){
    h2{
        font-size: 3em;
        padding: 0 20px;
    }

    h3{
        font-size: 1.5em;
        padding: 0 20px;
    }

    h4{
        font-size: 1em;
        padding: 0 20px; 
    }

    p{
        padding: 0 20px;
    }

    p, li{
        font-size: .8em;
    }

    .button{
        font-size: .6em;
    }

    .container{
        max-width: 700px;
    }

    .second-section .background-shapes{
        top: -14vh;
        left: -12vw;
        right: 0;
        width: 90vw;
    }

    .third-section .victimas-indirectas > img{
        bottom: -20vh;
        left: -6vh;
        width: 72vw;
        min-width: 1500px;
    }

    .item.open-modal .modal-container p{
        font-size: .8em;
    }

    .timeline .item.open-modal#three{
        left: 30vw;
        transition: all 1s ease-in-out;
    }

    .timeline{
        margin-bottom: 0;
    }

    .fifth-section .poema img{
        min-width: 1460px;
    }

    .seventh-section .fullModals .item.open-modal .inside-content.left{
        left: -10vw;
    }

    .seventh-section .fullModals .item.open-modal .inside-content.right{
        right: -10vw;
    }

    .seventh-section .danos h3{
        font-size: 1.5em;
    }
}

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

    h2{
        font-size: 1.5em;
    }

    .wrapper{
        padding: 2em 0;
    }
    
    .container{
        max-width: 500px;
    }

    .second-section .title img{
        padding-top: 23vh;
    }
    .second-section .background-shapes {
        top: 9vh;
        left: -28vw;
        right: 0;
        width: 100vw;
        min-width: 1000px;
    }

    .third-section .title-content{
        width: 100vw;
        left: 0;
        max-width: 500px;
        margin: 0 auto;
        position: relative;
    }

    .third-section .title-content p{
        padding: 1vw;
    }

    .third-section .background-shapes{
        top: 10vw;
        left: -30vw;
        right: 0;
        transform-origin: center;
        width: 120vw;
        min-width: 950px;
    }

    .third-section .illustration-container:first-child{
        width: 100vw;
    }

    .third-section .illustration-container{
        height: 100vh;
    }

    .third-section .illustration-container img, .third-section .illustration-container img.line-illustration{
        height: 100vh;
        width: 100%;
    }

    .third-section .victimas-indirectas > img{
        left: -73vw;
    }

    .align-right{
        width: 100%;
        margin-left: 0;
    }

    .item .modal-container{
        width: 50px;
        height: 50px;
    }

    .item .modal-container .close-shape{
        width: 20px;
        height: 20px;
        margin-top: -10px;
    }

    .item .modal-container p{
        padding: 0;
    }

    .item.open-modal .modal-container .shape-back{
        width: 100vw;
        height: 100vw;
        transition: all 1s ease-in-out;
    }

    .timeline{
        width: 90vw;
        min-width: 500px;
        height: 120vh;
    }

    .timeline h4{
        left: 30px;
        padding: 10px;
        font-size: .8em;
        top: -4vh;
        max-width: 200px;
    }

    .timeline .item.open-modal h4{
        background-color: var(--dark-blue);
        color: white;
    }

    .timeline .item#two{
        left: 34vw;
        top: 25vh;
    }

    .timeline .item#three{
        top: 40vh;
        left: 37vw;
    }

    .timeline .item#four{
        top: 55vh;
        left: 35vw;
    }

    .timeline .item#five{
        top: 75vh;
        left: 26vw;
    }

     .timeline .item.open-modal#one{
        top: 20vw;
        left: 20vw;
    }

    .timeline .item.open-modal#two{
        left: 14vw;
        right: 0;
    }

    .timeline .item.open-modal#three{
        left: 10vw;
    }

    .timeline .item.open-modal#four{
        left: 10vw;
    }

    .timeline .item.open-modal#five{
        left: 14vw;
    }

    .timeline img {
        left: -8vw;
        top: -7vh;
    }

    .item.open-modal h4{
        transform: translateY(-24vh);
    }

    .show-mobile{
        display: block;
    }
    
    .hide-mobile{
        display: none;
    }

    .item.open-modal .modal-container{
        width: 400px;
        height: 400px;
    }

    .item.open-modal .modal-container .shape-back{
        width: 600px;
        height: 600px;
        transition: all 1s ease-in-out;
    }

    .item.open-modal .modal-container .close-shape {
        left: 80%;
        top: 0%;
    }

    .item.open-modal .modal-container p{
        font-size: .6em;
    }

    .fifth-section .poema img{
        top: -10vh;
        left: -25vh;
    }

    .seventh-section .fullModals .item.open-modal .modal-container p{
        font-size: .6em;
        padding: 40px;
    }

    .item.open-modal .modal-container p cite:before{
        left: -50px;
    }

    .seventh-section .fullModals .item.open-modal .modal-container .close-shape{
        top: 20%;
    }

    .seventh-section .fullModals .item.open-modal .inside-content{
        position: relative;
    }

    .seventh-section .fullModals .item.open-modal .inside-content.left, .seventh-section .fullModals .item.open-modal .inside-content.right{
        width: 100%;
    }

    .seventh-section .fullModals .item.open-modal .inside-content.left{
        left: 0vw;
        top: 20vh;
    }

    .seventh-section .fullModals .item.open-modal .inside-content.right{
        right: 0vw;
        top: 40vh;
    }

    .seventh-section .item.open-modal .modal-container{
        justify-content: normal;
    }
    .seventh-section .fullModals .item.open-modal ul li{
        font-size: .6em;
    }

    .seventh-section .fullModals .item.open-modal ul{
        margin: 1em auto;
    }

    .seventh-section .fullModals .item#two.open-modal .inside-content.left{
        top: 20vh;
    }

    .seventh-section .fullModals .item#two.open-modal .inside-content.right{
        top: 40vh;
    }

    .seventh-section .danos .col{
        width: 100%;
        padding: 20px;
    }

    .seventh-section .danos{
        flex-direction: column;
    }
    .seventh-section .danos .col img, .seventh-section .danos .col:last-child img{
        width: 150%;
        right: 0;
    }

    .eight-section h2{
        font-size: 4em;
    }
    .seventh-section .danos{
        margin-top: 20vh;
    }
    .title-loader{
        font-size: 50px;
    }

    .subtitle-loader{
        font-size: .8em;
    }
    .map.open-map h3{
        font-size: .8em;
    }
    .map h3{
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    .third-section .victimas-indirectas > img{
        left: -114vw;
    }

    .second-section .background-shapes{
        left: -50vw;
    }
}