/*
Theme Name: UN Centro de Transparencia Theme
Theme URI: http://wordpress.org/themes/twentythirteen
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: untransparency
*/

/* #region FONTS TO LOAD */

/* Normal font */

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.woff') format('woff'), url('fonts/Gotham-Book.otf') format('otf');
    font-style: normal;
}

/* Medium font */

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff') format('woff'), url('fonts/Gotham-Medium.otf') format('otf');
    font-weight: 600;
}

/* Bold font */

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Black.woff') format('woff'), url('fonts/Gotham-Black.otf') format('otf');
    font-weight: 700;
}

/* Italic font */

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-LightItalic.woff') format('woff'), url('fonts/Gotham-LightItalic.otf') format('otf');
    font-style: italic;
}

/* #endregion */

/* #region GENERAL SETUP */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html{
    margin-top: 0 !important;
}

/* body{
    background-color: #f5f5f5;
} */

h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
p,
li {
    font-family: "Gotham"
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #00AEEF;
}

a {
    text-decoration: none;
}

h1.centered{
    font-size: 7vw;
    width: 90%;
    margin: 50px auto 20px auto;
    text-align: center;
}

h1.not-found-error{
    font-size: 5vw;
    max-width: 70%;
    text-align: center;
    margin: 100px auto;
}

.page-container {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: auto;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2)
}

.section {
    max-width: 100%;
    padding: 4vw 6vw;
    position: relative;
    overflow: hidden;
}

.section h1 {
    text-align: center;
    font-size: 9vw;
    font-weight: 600;
}

.section h2 {
    font-size: 6vw;
}

.section p,
.section li {
    font-size: 4.5vw;
}

.section li{
    line-height: 1.5;
}

.arrowhead {
    box-sizing: content-box;
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-bottom-width: 5vw;
    border-bottom-style: solid;
    border-left: solid 10vw transparent;
    border-right: solid 10vw transparent;
    z-index: 20;
    transform: rotate(180deg);
}

.arrowhead.bottom{
    transform: rotate(0deg);
    top: auto;
    bottom: 0;
}

.arrowhead.right {
    right: 10vw;
}

.arrowhead.left {
    left: 10vw;
}

.logo-footer{
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    margin: auto;
    width: 100%;
    max-width: 1400px;
    height: 150px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.logo-footer a{
    display: block;
    height: 70px;
}

.logo-footer img{
    display: block;
    height: 100%;
}

.footer {
    background-color: #333333;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 1vw;
    font-size: 2vw;
    max-width: 1400px;
    margin: auto;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2)
}

@media only screen and (min-width: 700px) {
    .section h1 {
        font-size: 2.5vw;
    }
    .section h2 {
        font-size: 1.8vw;
    }
    .section p,
    .section li {
        font-size: 1.2vw;
    }
    .arrowhead {
        border-bottom-width: 3vw;
        border-left: solid 4vw transparent;
        border-right: solid 4vw transparent;
    }
    .footer {
        font-size: 1vw;
    }

    h1.centered{
        font-size: 2.5vw;
        width: 60%;
    }

    h1.not-found-error{
        font-size: 30px;
    }   
}

@media only screen and (min-width: 900px) {
    .section h1 {
        font-size: 2.5vw;
    }
    .section p,
    .section li {
        font-size: 1.2vw;
    }
}

@media only screen and (min-width: 1296px) {
    .section h1 {
        font-size: 32.5px;
    }

    h1.centered{
        font-size: 32.5px;
    }

    .section p,
    .section li {
        font-size: 15px;
    }
    .section {
        padding: 52px 78px;
    }

    .arrowhead {
        border-bottom-width: 39px;
        border-left: solid 52px transparent;
        border-right: solid 52px transparent;
    }
    
    .arrowhead.right {
        right: 130px;
    }
    
    .arrowhead.left {
        left: 130px;
    }

    .footer {
        padding: 13px;
        font-size: 13px;
    }
}

/* #endregion */

/* #region MAIN NAVBAR */

.header-container {
    background: linear-gradient( to bottom, #00AEFF, #0098d1);
    height: 90px;
    padding: 22.5px 4vw;
    overflow: hidden;
}

.header-container .identity{
    float: left;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header-container .identity img{
    height: 25px;
    margin: 0 5px;
}

.header-container .menu-button {
    float: right;
    color: white;
    font-size: 30px;
    line-height: 45px;
    cursor: pointer;
}

.header-container #open.menu-button {
    display: block;
}

.header-container #close.menu-button {
    display: none;
}

.menu-main-menu-container{
    position: absolute;
    top: 90px;
    right: -50%;
    width: 50%;
    background: linear-gradient( to bottom, #0098d1, #00AEEF);
    text-align: left;
    color: white;
    z-index: 100;
    overflow: hidden;
    transition: right 0.4s;
}

.menu-main-menu-container ul{
    list-style: none;
    padding: 0;
    margin: 4vw 2vw;
}

.menu-main-menu-container a{
    color: white;
    line-height: 1.2;
    font-size: 4.5vw;
    width: 100%;
}

.menu-main-menu-container li{
    margin-bottom: 2vw;
    border-bottom: solid 1px transparent;
}

.menu-main-menu-container li:hover{
    border-bottom: solid 1px white;
}

@media only screen and (min-width: 700px) {
    .menu-main-menu-container{
        right: -35%;
        width: 35%;
    }
    .menu-main-menu-container a{
        font-size: 2.7vw;
        font-weight: 600;
    }

    .header-container .identity img{
        height: 60px;
        margin: 0 5px;
    }
}

@media only screen and (min-width: 900px) {
    .header-container {
        padding: 0.5vw 4vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-container #open.menu-button,
    .header-container #close.menu-button {
        display: none;
    }
    .menu-main-menu-container {
        float: right;
        position: relative;
        top: 0;
        width: auto;
        right: 0;
        background: transparent;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .menu-main-menu-container{
        margin: 0;
    }
    .menu-main-menu-container li {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 0;
        padding: 0.75vw 0.75vw;
        border: solid 1px transparent;
    }
    .menu-main-menu-container .current-menu-item {
        border-color: white;
    }
    .menu-main-menu-container a {
        font-size: 1vw;
        text-transform: uppercase;
    }

    .header-container .identity img{
        height: 50px;
        margin: 0 5px;
    }
}

@media only screen and (min-width: 1296px) {
    .menu-main-menu-container a{
        font-size: 13px;
    }
    .menu-main-menu-container li {
        padding: 12px 15px;
    }
}

/* #endregion */

/* #region SUB MENU */

.sub-menu-container {
    display: none;
    max-width: 20%;
    margin: 0;
    padding-right: 2vw;
    border-right: solid 1px black;
}

.sub-menu-container ul {
    list-style: none;
    padding: 0;
}

.sub-menu-container a {
    color: #BEBEBE !important;
    font-weight: 600
}

.sub-menu-container a.selected {
    color: black !important;
}

.sub-menu-container a:hover {
    color: black !important; 
}

.sub-menu-container li {
    text-transform: uppercase;
    margin: 1.2vw 0;
    font-size: 1.2vw;
}

.sub-menu-container li:first-of-type {
    margin-top: 0;
}

@media only screen and (min-width: 900px) {
    .sub-menu-container {
        display: block;
    }
}

@media only screen and (min-width: 1296px){
    .sub-menu-container {
        max-width: 20%;
        padding-right: 26px;
    }
    
    .sub-menu-container li {
        text-transform: uppercase;
        margin: 15px 0;
        font-size: 15px;
    }
}

/* #endregion */

/* #region SLIDER */

.slider-container {
    width: 100%;
    height: 100vw;
    margin-top: 1vw;
    position: relative;
    overflow: hidden;
}

.slider-container .item-container {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center center;
    left: 100%;
}

.slider-button-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    margin-left: 1vw;
    margin-right: 1vw;
    display: inline-block;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-page-button{
    position: absolute;
    font-size: 12vw;
    z-index: 100;
    color: white;
    padding:0 1vw;
    text-align: center;
    cursor: pointer;
    top: 40vw;
}

.slider-page-button.left{
    left: 0;
    vertical-align: middle;
}

.slider-page-button.right{
    right: 0;
    vertical-align: middle;
}

.slider-button.selected {
    background-color: rgba(255, 255, 255, 1);
}

@media only screen and (min-width: 700px) {
    .slider-container {
        margin-top: 0.5vw;
        height: 55vw;
    }
    .slider-container .item-container {
        background-size: cover;
    }

    .slider-page-button{
        top: 40vw;
        font-size: 5vw;
    }

    .slider-button {
        width: 1.5vw;
        height: 1.5vw;
        margin: 0 1vw;
    }
}

@media only screen and (min-width: 900px) {
    .slider-container {
        margin-top: 0.5vw;
        height: 55vw;
    }
    .slider-container .item-container {
        background-size: cover;
    }
    .slider-button {
        width: 1vw;
        height: 1vw;
        margin: 0 1vw;
    }

    .slider-page-button{
        top: 25vw;
        font-size: 5vw;
    }
}

@media only screen and (min-width: 1296px) {
    .slider-container {
        height: 712px;
        margin-top: 5px;
    }

    .slider-page-button{
        top: 324px;
        font-size: 64px;
    }
}

/* #endregion */

/* #region HIGHLIGHT SLIDER */
.highlight-slider-container {
    width: 100%;
    height: 100vw;
    margin-top: 1vw;
    position: relative;
    overflow: hidden;
}

.highlight-slider-container h1{
    font-size: 6vw;
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 15%;
    color: white;
    text-shadow: 0.1vw 0.1vw 0.3vw rgba(0,0,0,0.4);
}

.highlight-slider-container .item-container {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center center;
    left: 0%;
}
@media only screen and (min-width: 900px) {
    .highlight-slider-container {
        margin-top: 0.5vw;
        height: 55vw;
    }
    .highlight-slider-container .item-container {
        background-size: cover;
    }
    .slider-button {
        width: 1vw;
        height: 1vw;
        margin: 0 1vw;
    }

    .highlight-slider-container h1{
        font-size: 3.5vw;
    }
}

@media only screen and (min-width: 1296px) {
    .highlight-slider-container {
        height: 712px;
        margin-top: 5px;
    }

    .highlight-slider-container h1{
        font-size: 45px;
    }
}



/* #endregion */


/* #region HEADER */

.section-header-container {
    width: 100%;
    height: 60vw;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin-top: 5px
}

.section-header-container h1{
    color: white;
    position: absolute;
    width: 50%;
    top: 30%;
    left: 65%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
}

@media only screen and (min-width: 700px) {
    .section-header-container {
        height: 40vw;
    }

    .section-header-container h1{
        width: 60%;
        top: 30%;
        left: 65%;
        transform: translate(-50%, -50%);
        font-size: 3.5vw;
    }
}

@media only screen and (min-width: 1296px) {
    .section-header-container {
        height: 518px;
    }
}

/* #endregion */

/* #region TEXT SECTIONS */

.section.text.with-menu {
    display: flex;
    align-content: stretch;
}

.section.text.with-menu .text-container-with-menu {
    width: 100%;
}

.section.text.full-size {
    padding: 0;
}

.section.text.full-size .text-container {
    padding: 4vw 6vw;
}

.section.text h1{
    text-align: left;
}

.section.text h2 {
    font-size: 5vw;
    color: #00AEEF;
    text-align: left;
}

.section.text h3,
.section.text h4,
.section.text h5,
.section.text h6 {
    font-size: 3vw;
    color: black;
    margin-bottom: 3vw;
}

.section.text a{
    color: #00AEFF;
}

.section.text .content-container.with-image {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.section.text .content-container.with-image .img-container {
    width: 100%;
    height: 50vw;
    background-size: cover;
    background-position: center center;
}

.section.text .content-container.with-image .img-container.desktop {
    display: none;
}

.section.text .content-container.with-image .text-container {
    width: 100%;
}

.section.text img {
    margin-bottom: 5vw;
    width: 100%;
    height: 100%;
    float: left;
}

.section.text p:first-of-type {
    font-size: 4.5vw;
    color: #606060;
    font-weight: 600;
    margin-bottom: 8vw;
}

@media only screen and (min-width: 700px) {
    .section.text img {
        max-width: 50%;
        padding-right: 1em;
        margin-bottom: 1em;
    }
    .section.text p:first-of-type {
        font-size: 1.3vw;
        margin-bottom: 1.5vw;
    }
    .section.text h2,
    .section.text h3,
    .section.text h4,
    .section.text h5,
    .section.text h6 {
        font-size: 1.8vw;
    }
    .section.text .content-container.with-image .img-container {
        width: 100%;
        height: inherit;
    }
    .section.text .content-container.with-image .img-container.mobile {
        display: none;
    }
    .section.text .content-container.with-image .img-container.desktop {
        display: block;
        width: 50%;
    }
    .section.text .content-container.with-image .text-container {
        width: 50%;
    }
    .section.text .content-container.with-image .text-container.left {
        padding-right: 2vw;
    }
    .section.text .content-container.with-image .text-container.right {
        padding-left: 2vw;
    }
}

@media only screen and (min-width: 900px) {
    .section.text.with-menu .text-container-with-menu {
        width: 80%;
        padding-left: 2vw;
    }
}

@media only screen and (min-width: 1296px) {
    .section.text h2,
    .section.text h3,
    .section.text h4,
    .section.text h5,
    .section.text h6 {
        font-size: 23px;
    }
    .section.text p:first-of-type {
        font-size: 17px;
        margin-bottom: 19px;
    }
    .section.text .content-container.with-image .text-container.left {
        padding-right: 26px;
    }
    .section.text .content-container.with-image .text-container.right {
        padding-left: 26px;
    }
}

/* #endregion */

/* #region DISPLAY SECTIONS */

.display-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.display-item-container {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 120vw;
    margin-bottom: 4vw;
    position: relative;
}

.display-item-container .item-overlay {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    height: 45vw;
    color: white;
    padding: 2vw 5vw;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 700px) {
    .display-item-container {
        width: 32%;
        height: 30vw;
    }
    .display-item-container .item-overlay {
        height: 10vw;
        padding: 2vw 2vw;
    }
    .display-item-container .item-overlay p {
        font-size: 1.2vw;
    }
}

@media only screen and (min-width: 1296px) {
    .display-item-container {
        width: 32%;
        height: 390px;
        margin-bottom: 52px;
    }
    .display-item-container .item-overlay {
        height: 130px;
        padding: 26px 26px;
    }
    .display-item-container .item-overlay p {
        font-size: 16px;
    }
}

/* #endregion */

/* #region PROCESS SECTION*/

.section.process {
    background-color: #00AEEF;
}

.section.process h1 {
    color: white;
}

.section.process p {
    color: white;
    font-size: 5vw;
    width: 60%;
    margin: auto;
    margin-top: 2vw;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.connector-container {
    display: none;
}

.process-item-container {
    width: 100%;
    text-align: center;
    margin: 6vw 0;
}

.process-outer-container {
    width: 40vw;
    height: 40vw;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: solid 1vw #99DEF8;
}

.process-inner-container {
    width: 101%;
    height: 101%;
    border-radius: 50%;
}

.process-item-container:nth-of-type(odd) .process-inner-container {
    border: solid 3vw #E36F3E;
    background-color: #D36A3D;
}

.process-item-container:nth-of-type(even) .process-inner-container {
    border: solid 3vw #F4FBFE;
    background-color: #E5F6FD;
}

.process-inner-container .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.process-inner-container img {
    width: 80%;
    vertical-align: middle;
}

@media only screen and (min-width: 700px) {
    .process-item-container {
        width: 20%;
    }
    .process-outer-container {
        width: 13vw;
        height: 13vw;
        border: solid 0.5vw #99DEF8;
    }
    .process-item-container:nth-of-type(odd) .process-inner-container {
        border-width: 1vw;
    }
    .process-item-container:nth-of-type(even) .process-inner-container {
        border-width: 1vw;
    }
    .section.process p {
        font-size: 2vw;
        width: 100%;
        margin-top: 1.5vw;
    }
    .connector-container {
        display: block;
        width: 6.6667%;
    }
    .connector-line {
        display: block;
        height: 13vw;
        width: 100%;
        border-bottom: dotted 2px white;
    }
}

@media only screen and (min-width: 1296px) {
    .process-item-container {
        margin: 78px 0;
    }

    .process-outer-container {
        width: 168px;
        height: 168px;
        border: solid 7px #99DEF8;
    }

    .process-item-container:nth-of-type(odd) .process-inner-container {
        border-width: 13px;
    }

    .process-item-container:nth-of-type(even) .process-inner-container {
        border-width: 13px;
    }

    .section.process p {
        font-size: 26px;
    }

    .connector-line {
        height: 168px;
    }
}


/* #endregion */

/* #region BANNER SECTION  */

.section.banner {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-blend-mode: multiply;
    padding: 12vw 16vw;
    position: relative;
}

.section.banner p {
    color: white;
    z-index: 4;
    margin: 0;
    text-align: center;
}

@media only screen and (min-width: 700px) {
    .section.banner{
        padding: 10vw 16vw;
    }
    .section.banner p {
        font-size: 2vw;
    }
}

@media only screen and (min-width: 1296px) {
    .section.banner{
        padding: 130px 207px;
    }
    .section.banner p {
        font-size: 26px;
    }
}

/* #endregion */

/* #region BOX SECTION */

.section.box {
    padding: 0;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
}

.box-item-container {
    width: 100%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    position: relative;
    height: 70vw;
}

.box-item-container .content-container {
    padding: 10vw 15vw;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.box-item-container .content-container.content {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.box-item-container .content-container.title {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.box-item-container .content-container p {
    margin: 0;
    text-align: center;
}

.box-item-container .content-container p.title {
    color: white;
}

.box-item-container .content-container .content {
    text-align: center;
}

@media only screen and (min-width: 700px) {
    .box-item-container {
        width: 50%;
        height: 30vw;
    }
    .box-item-container .content-container {
        padding: 8vw 12vw;
    }
    .box-item-container .content-container.title {
        padding: 12vw 12vw;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 1;
        cursor: pointer;
    }
    .box-item-container .content-container.content {
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        display: none;
        cursor: pointer;
    }
    .box-item-container .content-container p.title {
        font-size: 2.2vw;
        font-weight: 600;
    }
    .box-item-container .content-container.content p {
        font-size: 1.6vw;
    }
}

@media only screen and (min-width: 1296px) {
    .box-item-container {
        width: 50%;
        height: 400px;
    }
    .box-item-container .content-container {
        padding: 103px 155px;
    }
    .box-item-container .content-container.title {
        padding: 155px 155px;
        background-color: rgba(0, 0, 0, 0.4);
    }
    .box-item-container .content-container p.title {
        font-size: 28px;
        font-weight: 600;
    }
    .box-item-container .content-container.content p {
        font-size: 20px;
    }
}

/* #endregion */

/* #region ARCHIVE SECTION */

.section.archive h3 {
    color: black;
    text-align: center;
}

.archive-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.archive-item-container {
    width: 100%;
    margin-bottom: 8vw;
}

.archive-content-container {
    width: 80%;
    margin: auto;
}

.archive-image-container {
    height: 70vw;
    background-size: cover;
    background-position: center center;
}

.publications .archive-image-container{
    background-position: center top;
}

.archive-text-container {
    height: 35vw;
    background-color: #00AEEF;
    color: white;
    padding: 3vw 0;
}

.archive-date-container {
    font-size: 3vw;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 3vw;
    padding-top: 3vw;
}

.date-line {
    width: 70%;
    border-bottom: 1px solid white;
}

.archive-title-container {
    padding: 3vw 3vw;
    display: flex;
    align-items: center;
    height: 80%;
}

.archive-title-container a {
    color: white;
    transition: color 0.4s;
}

.archive-title-container p {
    font-size: 4.5vw;
    font-weight: 600;
    margin: 0;
}

.publications .archive-title-container p{
    font-size: 3.8vw;
}

.archive-title-container a:hover {
    color: rgb(255, 154, 110);
}

.archive-link{
    display: block;
    color: black;
    padding: 1vw 2vw;
    border: solid black 2px;
    text-align: center;
    width: 150px;
    margin: auto;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

@media only screen and (min-width: 700px) {
    .section.archive h3 {
        font-size: 2vw;
        margin: 1vw 0 3vw 0;
    }
    .archive-container.c1 .archive-item-container {
        width: 100%;
    }
    .archive-container.c2 .archive-item-container {
        width: 50%;
    }
    .archive-container.c3 .archive-item-container {
        width: 33%;
    }
    .archive-container.c4 .archive-item-container {
        width: 25%
    }
    .archive-item-container {
        margin-bottom: 2vw;
    }
    .archive-content-container {
        width: 90%;
    }
    .archive-container.c1 .archive-image-container {
        height: 40vw;
    }
    .archive-container.c2 .archive-image-container {
        height: 35vw;
    }
    .archive-container.c3 .archive-image-container {
        height: 25vw;
    }
    .archive-container.c4 .archive-image-container {
        height: 20vw;
    }

    .archive-container.c1 .archive-text-container {
        height: 18vw;
        padding: 0.5vw 0;
    }
    .archive-container.c2 .archive-text-container {
        height: 20vw;
        padding: 0.5vw 0;
    }
    .archive-container.c3 .archive-text-container {
        height: 20vw;
        padding: 0.5vw 0;
    }
    .archive-container.c4 .archive-text-container {
        height: 20vw;
        padding: 0.5vw 0;
    }


    .archive-container.c1 .archive-date-container {
        font-size: 1.8vw;
        padding-left: 4vw;
        padding-top: 1vw;
    }
    .archive-container.c2 .archive-date-container {
        font-size: 1.4vw;
        padding-left: 2vw;
        padding-top: 1vw;
    }
    .archive-container.c3 .archive-date-container {
        font-size: 1.1vw;
        padding-left: 2vw;
        padding-top: 1vw;
    }
    .archive-container.c4 .archive-date-container {
        font-size: 0.8vw;
        padding-left: 1vw;
        padding-top: 1vw;
    }


    .archive-container.c2 .archive-title-container {
        padding: 1vw 2vw;
    }
    .archive-container.c2 .archive-title-container {
        padding: 1vw 2vw;
    }
    .archive-container.c3 .archive-title-container {
        padding: 1vw 2vw;
    }
    .archive-container.c4 .archive-title-container {
        padding: 1vw 2vw;
    }
    
    .archive-container.c1 .archive-title-container p {
        font-size: 2.5vw;
    }
    .archive-container.c2 .archive-title-container p {
        font-size: 2.4vw;
    }
    .archive-container.c3 .archive-title-container p {
        font-size: 1.7vw;
    }
    .archive-container.c4 .archive-title-container p {
        font-size: 1.4vw;
    }
    .archive-container.c1 .date-line {
        width: 80%;
        border-bottom: 1px solid white;
    }

    .publications .archive-container.c1 .archive-title-container p {
        font-size: 2.3vw;
    }
    .publications .archive-container.c2 .archive-title-container p {
        font-size: 2.2vw;
    }
    .publications .archive-container.c3 .archive-title-container p {
        font-size: 1.5vw;
    }
    .publications .archive-container.c4 .archive-title-container p {
        font-size: 1vw;
    }
    
    .archive-link{
        padding: 9px 13px;
        width: 150px;
        margin: auto;
    }
}

@media only screen and (min-width: 1296px) {
    .section.archive h3 {
        font-size: 26px;
        margin: 26px 0 39px 0;
    }
    
    .archive-item-container {
        margin-bottom: 26px;
    }
    .archive-content-container {
        width: 90%;
    }
    .archive-container.c1 .archive-image-container {
        height: 518px;
    }
    .archive-container.c2 .archive-image-container {
        height: 453px;
    }
    .archive-container.c3 .archive-image-container {
        height: 324px;
    }
    .archive-container.c4 .archive-image-container {
        height: 260px;
    }

    .archive-container.c1 .archive-text-container {
        height: 233px;
        padding: 7px 0;
    }
    .archive-container.c2 .archive-text-container {
        height: 260px;
        padding: 7px 0;
    }
    .archive-container.c3 .archive-text-container {
        height: 260px;
        padding: 7px 0;
    }
    .archive-container.c4 .archive-text-container {
        height: 260px;
        padding: 7px 0;
    }
    .archive-container.c1 .archive-date-container {
        font-size: 23px;
        padding-left: 52px;
        padding-top: 13px;
    }
    .archive-container.c2 .archive-date-container {
        font-size: 18px;
        padding-left: 26px;
        padding-top: 13px;
    }
    .archive-container.c3 .archive-date-container {
        font-size: 14px;
        padding-left: 26px;
        padding-top: 13px;
    }
    .archive-container.c4 .archive-date-container {
        font-size: 10px;
        padding-left: 13px;
        padding-top: 13px;
    }
    .archive-container.c2 .archive-title-container {
        padding: 13px 26px;
    }
    .archive-container.c2 .archive-title-container {
        padding: 13px 26px;
    }
    .archive-container.c3 .archive-title-container {
        padding: 13px 26px;
    }
    .archive-container.c4 .archive-title-container {
        padding: 13px 26px;
    }
    .archive-container.c1 .archive-title-container p {
        font-size: 37px;
    }
    .archive-container.c2 .archive-title-container p {
        font-size: 35px;
    }
    .archive-container.c3 .archive-title-container p {
        font-size: 22px;
    }
    .archive-container.c4 .archive-title-container p {
        font-size: 18px;
    }

    .publications .archive-container.c1 .archive-title-container p {
        font-size: 32px;
    }
    .publications .archive-container.c2 .archive-title-container p {
        font-size: 31px;
    }
    .publications .archive-container.c3 .archive-title-container p {
        font-size: 23px;
    }
    .publications .archive-container.c4 .archive-title-container p {
        font-size: 13px;
    }

    .archive-link{
        padding: 9px 13px;
        width: 150px;
        margin: auto;
    }
}
/* #endregion */

/* #region NEWS SECTION */
.news-container{
    border-radius: 1vw;
    padding: 2vw 4vw;
    background-size: cover;
    background-position: center center;
    background-blend-mode: multiply;
    position:relative;
    height: 100vw;
    width: 80vw;
    margin: auto;
    overflow: hidden;
}

.news-item-container{
    width: 80vw;
    height: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: left 0.4s;
}

.news-outer-container{
    width: 45vw;
    height: 45vw;
    padding: 2.5vw;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2)
}

.news-outer-container:hover{
    background-color: rgba(41, 189, 219, 0.4)
}

.news-outer-container:hover .news-inner-container{
    background-color: rgba(41, 189, 219, 0.4);
    border-color: rgb(41,189,219);
}

.news-outer-container:hover .news-inner-container p{
    color: white;
}

.news-inner-container{
    width: 40vw;
    height: 40vw;
    border: solid 1vw white;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2vw;
}

.news-inner-container p.news-title{
    color: black;
    text-align: center;
    font-weight: 600;
    font-size: 4vw;
}

.news.section .pager-container{
    position: absolute;
    bottom: 4vw;
    text-align: center;
    width: 72vw;
}

.news.section .pager-button{
    display: inline-block;
    height: 6vw;
    width: 6vw;
    margin: 0 1.5vw;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
}

.news.section .pager-button.selected{
    background-color: rgba(255,255,255,1);
}

@media only screen and (min-width: 700px) {
    .news-container{
        border-radius: 1vw;
        padding: 2vw 4vw;
        height: 40vw;
        width: 80vw;
        margin: auto;
        overflow: hidden;
    }

    .news-item-container{
        width: 26.667vw;
        height: 35vw;
    }
    
    .news-outer-container{
        width: 20vw;
        height: 20vw;
        padding: 1.25vw;
    }
    
    .news-inner-container{
        width: 17.5vw;
        height: 17.5vw;
        border: solid 0.5vw white;
        padding: 0 1vw;
    }
    
    .news-inner-container p.news-title{
        font-size: 1.7vw;
    }
    
    .news.section .pager-container{
        bottom: 2vw;
        width: 72vw;
    }
    
    .news.section .pager-button{
        height: 1.5vw;
        width: 1.5vw;
        margin: 0 0.5vw;
    }

}

@media only screen and (min-width: 1400px) {
    .news-container{
        border-radius: 14px;
        padding: 28px 56px;
        height: 560px;
        width: 1120px;
        margin: auto;
        overflow: hidden;
    }

    .news-item-container{
        width: 373.33px;
        height: 490px;
    }
    
    .news-outer-container{
        width: 280px;
        height: 280px;
        padding: 17.5px;
    }
    
    .news-inner-container{
        width: 245px;
        height: 245px;
        border: solid 7px white;
        padding: 0 14px;
    }
    
    .news-inner-container p.news-title{
        font-size: 23px;
    }
    
    .news.section .pager-container{
        bottom: 28px;
        width: 1008px;
    }
    
    .news.section .pager-button{
        height: 21px;
        width: 21px;
        margin: 0 7px;
    }

}

/* #endregion */

/* #region INITIATIVES SECTION */

.section.initiatives {
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.section.initiatives .content-container {
    padding: 6vw 6vw;
    z-index: 5;
    transition: height 0.4s;
}

.section.initiatives h1 {
    color: white;
    z-index: inherit;
}

.initiatives-buttons-container {
    display: flex;
    flex-wrap: wrap;
}

.initiatives .button-container {
    width: 100%;
}

.initiative-button-outer {
    background-color: rgba(243, 247, 249, 0.6);
    border-radius: 50%;
    margin: auto;
    width: 45vw;
    height: 45vw;
    padding: 3vw;
    display: flex;
    align-items: center;
    margin-bottom: 8vw;
}

.initiative-button-inner {
    background-color: rgba(243, 247, 249, 0.6);
    border-color: rgba(243, 247, 249, 0.6);
    border-style: solid;
    border-width: 0.2vw;
    border-radius: 50%;
    margin: auto;
    width: 100%;
    height: 100%;
    padding: 1vw;
    display: flex;
    align-items: center;
    align-content: center;
    cursor: pointer;
}

.initiative-button-inner p {
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.initiatives .button-container:hover .initiative-button-outer {
    background-color: rgba(219, 101, 52, 0.8);
}

.initiatives .button-container:hover .initiative-button-inner {
    background-color: rgba(219, 101, 52, 0.6);
    border-color: rgba(219, 101, 52, 0.8);
    border-style: solid;
    border-width: 0.2vw;
    color: white;
}

.initiatives .button-container.has-display .initiative-button-outer {
    background-color: rgba(219, 101, 52, 0.8);
}

.initiatives .button-container.has-display .initiative-button-inner {
    background-color: rgba(219, 101, 52, 0.6);
    border-color: rgba(219, 101, 52, 0.8);
    border-style: solid;
    border-width: 0.2vw;
    color: white;
}

.initiatives .mobile-info-container{
    display: none;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    padding: 4vw 6vw;
    border-radius: 2vw;
    margin: auto;
    margin-bottom: 6vw;
}

.initiatives .mobile-info-container .close-button{
    float: right;
    font-size: 7vw;
    cursor: pointer;
    color: #808080;
}

.initiatives .mobile-info-container .logo{
    width: 90%;
    height: 15vw;
    margin: 4vw auto;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.initiatives .mobile-info-container .read-more {
    display: block;
    padding: 2vw 3vw;
    border: solid 2px black;
    color: black;
    width: 70%;
    margin: 4vw auto;
    text-align: center;
    font-size: 3vw;
    font-weight: 600;
    text-transform: uppercase;
}

.initiatives-info-container {
    display: none;
}



@media only screen and (min-width: 700px) {
    .initiatives-buttons-container {
        justify-content: space-around;
    }
    .initiatives .button-container {
        width: 15vw;
        height: 15vw;
    }
    .initiatives .button-container.selected .initiative-button-outer {
        background-color: rgba(219, 101, 52, 0.8);
    }
    .initiatives .button-container.selected .initiative-button-inner {
        background-color: rgba(219, 101, 52, 0.6);
        border-color: rgba(219, 101, 52, 0.8);
        border-style: solid;
        border-width: 0.2vw;
        color: white;
    }
    .initiative-button-outer {
        width: 100%;
        height: 100%;
        padding: 1vw;
    }
    .initiatives-info-container {
        display: block;
        background-color: rgba(255, 255, 255, 0.8);
        width: 75%;
        margin: auto;
        padding: 4vw 6vw;
        margin-top: 4vw;
        border-radius: 2vw;
    }
    .initiatives-info-container .info-container {
        display: none;
        opacity: 0
    }
    .initiatives-info-container .logo-container {
        position: relative;
        width: 25%;
    }
    .initiatives-info-container .desc-container {
        width: 75%;
        padding-left: 2vw;
    }
    .initiatives-info-container .desc-container h2 {
        margin-top: 0;
        color: black;
        font-size: 2vw;
    }
    .initiatives-info-container .desc-container p:last-of-type {
        margin-bottom: 0;
    }
    .initiatives-info-container .logo {
        height: 12vw;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .initiatives-info-container .info-container.selected {
        display: flex;
        align-items: stretch;
        opacity: 1;
    }
    .initiatives-info-container .read-more {
        display: block;
        position: absolute;
        padding: 0.75vw 1vw;
        border: solid 2px black;
        color: black;
        bottom: 0;
        margin: auto;
        font-size: 1vw;
        font-weight: 600;
        text-transform: uppercase;
    }
}

@media only screen and (min-width: 1296px) {
    .initiatives .button-container {
        width: 194px;
        height: 194px;
    }
    
    .initiatives .button-container.selected .initiative-button-inner {
        border-width: 1px;
    }
    .initiative-button-outer {
        padding: 13px;
    }
    .initiatives-info-container {
        padding: 52px 78px;
        margin-top: 52px;
        border-radius: 26px;
    }
  
    .initiatives-info-container .desc-container {
        padding-left: 26px;
    }
    .initiatives-info-container .desc-container h2 {
        font-size: 26px;
    }

    .initiatives-info-container .logo {
        height: 155px;
    }


    .initiatives-info-container .read-more {
        padding: 9px 19px;
        font-size: 14px;
    }
}

/* #endregion */

/* #region IMAGE SECTION */

.section.image img {
    width: 100%;
}

.section.image .image-container.desktop {
    display: none;
}

.section.image h2 {
    text-align: center;
}

@media only screen and (min-width: 700px) {
    .section.image .image-container.desktop {
        display: block;
    }
    .section.image .image-container.mobile {
        display: none;
    }
}

/* #endregion */

/* #region MISSION SECTION */
.section.mission{
    padding: 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.section.mission .mobile .mission{
    position: relative;
}

.section.mission .mobile .mission .title{
    height: 60vw;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.section.mission .mobile .mission .title h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 10vw;
}

.section.mission .mobile .mission .description{
    padding: 8vw 6vw;
    width: 100%;
    background-size: cover;
    position: center center;
    text-align: center;
}

.section.mission .mobile .mission .description p{
   margin: 0;
}



.section.mission .desktop{
    display: none;
}

@media only screen and (min-width: 700px){
    .section.mission .desktop{
        display: block;
    }

    .section.mission .mobile{
        display: none;
    }

    .section.mission .desktop .mission{
        display: flex;
        align-items: stretch;
        position: relative;
    }

    .section.mission .desktop .mission .title{
        width: 50%;
        background-size: cover;
        background-position: center center;
        position:relative;
    }

    .section.mission .desktop .mission .title h2{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .section.mission .desktop .mission .description{
        width: 50%;
        padding: 4vw 6vw;
        text-align: center;
    }
}

@media only screen and (min-width: 1296px) {

}


/* #endregion */

/* #region ABOUT SECTION */
.section.about{
    background-color: white;
}

.entity-list{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    overflow: hidden;
}

.entity-container{
    width: 90%;
    margin: auto;
}

.entity-container .entity-logo-container{
    border-bottom: solid 2px #B2B2B2;
    padding: 6vw 4vw;
    cursor: pointer;
    width: 80%;
    margin: auto;
}

.entity-container .entity-logo-container .logo{
    width: 100%;
    height: 50vw;
    margin: auto;
    overflow: hidden;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.entity-container .desc-container{
    display: none;
    margin-top: 4vw;
    background-color: #F2F2F2;
    color: black;
    padding: 2vw 4vw;
    text-align: left;
    opacity: 0;
}

.entity-container .desc-container .close-button{
    color: #929292;
    font-size: 5vw;
    width: 100%;
    text-align:right;
    margin-bottom: 2vw;
    cursor: pointer
}

.entity-container .desc-container p.desc-title{
    font-weight: 600;
    font-size: 5vw;
}

.entity-list .desc-container.desktop{
    display: none;
}

@media only screen and (min-width: 700px){
    .section.about{
        width: 100%;
        padding: 8vw 0 4vw;
    }

    .section.about h1{
        width: 80%;
        margin: auto;
    }

    .section.about .entity-list{
        margin-top: 4vw;
    }

    .entity-container{
        width: 33%;
    }

    .entity-container .entity-logo-container{
        border-right: solid 2px #B2B2B2;
        border-bottom: none;
        padding: 1.5vw 1vw;
        width: 100%;
        margin: auto;
    }

    .entity-container .entity-logo-container.third{
        border-right: none;
    }

    .entity-container .entity-logo-container .logo{
        height: 8vw;
    }

    .entity-list .desc-container.desktop{
        position: relative;
        display: block;
        background-color: #F2F2F2;
        opacity: 1;
        margin-top: 2vw;
    }

    .entity-list .desc-container.desktop .description-container{
        display: none;
        opacity: 0;
        padding: 4vw 4vw 2vw 4vw;
    }

    .entity-list .desc-container.desktop .description-container.first{
        display: block;
        opacity: 1;
    }

    .entity-list .desc-container.desktop .description-container p.desc-title{
        font-size: 2vw;
        font-weight: 600;
    }
}

@media only screen and (min-width: 1296px) {

}

/* #endregion */

/* #region CONTACT SECTION */
.section.contact{
    padding: 2vw 0
}

.section.contact .contact-container{
    padding: 4vw 6vw;
    overflow: hidden;
}

.section.contact .contact-container .address-container{
    width: 100%;
    float: left;
}

.section.contact .contact-container .address-container h2,
.section.contact .contact-container .address-container h3,
.section.contact .contact-container .address-container h4,
.section.contact .contact-container .address-container h5,
.section.contact .contact-container .address-container h6{
    color: black;
}

.section.contact .contact-container .form-container{
    width: 100%;
    float: left;
    margin-top: 4vw;
}

.section.contact .contact-container .form-container label{
    text-transform: uppercase;
}

.section.contact .contact-container .form-container input{
    background-color: white;
    width: 100%;
    border: solid 2px #00AEEF;
    padding: 8px 12px;
    margin-top: 8px;
}

.section.contact .contact-container .form-container textarea{
    background-color: white;
    width: 100%;
    border: solid 2px #00AEEF;
    padding: 8px 12px;
    margin-top: 8px;
}

.section.contact .contact-container .form-container input[type=submit]{
    background-color: white;
    border: solid 2px black;
    cursor: pointer;
    width: 30%;
    float: right;
    text-transform: uppercase;
    font-weight: 600;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    color: rgb(129, 5, 11);
    border: 0;
    padding: 10px;
    font-family: "Gotham";
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #4F8A10;
    font-family: "Gotham"
}

@media only screen and (min-width: 700px){
    .section.contact .contact-container .address-container{
        width: 50%;
        float: left;
    }
    
    .section.contact .contact-container .form-container{
        width: 50%;
        float: left;
        margin-top: 0;
    }
    
}

@media only screen and (min-width: 1296px) {

}

/* #endregion */

/* #region MAPS */
.map-section{
    width: 90%;
    margin: auto;
    background-color: #F0F0F0;
    padding-bottom: 3vw;
    padding-top: 3vw;
    margin-bottom: 3vw;
}

.map-container{
    width: 90%;
    margin: auto;
    height: 80vw;
    border-left: solid 1px white;
    border-right: solid 1px white;
    position: relative;
}

.map-container .zoom-buttons{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
    padding: 2vw 3vw;
    font-size: 4vw;
}

.map-container .legend{
    position: absolute;
    bottom: 0;
    left: 2vw;
    max-width: 25vw;
}

.map-container .legend-entry{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5vw;
}

.map-container .legend-color{
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    border: solid 1px white;
    margin-right: 1vw;
}

.map-container .legend-label{
    width: 20vw;
    font-size: 2vw;
}

.map-container .legend-title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3vw;
    margin: 0.5vw 0; 
}

.map-container .zoom-buttons span{
    background-color: #333333;
    color: white;
    padding: 2vw 2.3vw;
    border-radius: 50%;
    cursor: pointer;
}

.map-buttons{
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4vw 0;
}

.map-buttons p.explanation{
    width: 100%;
    text-align: center;
    font-size: 3vw;
    font-weight: 600;
    margin: 0;
    margin-bottom: 0.5vw;
    text-transform: uppercase;
}

.map-buttons select{
    min-width: 40%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(0,0,0,0);
    background-image: url("./img/ui-elements/dropdown-black.png");
    background-size: 3vw;
    background-position: 95% center;
    background-repeat: no-repeat;
    border: solid 2px black;
    border-radius: none;
    padding: 1vw 6vw 1vw 2vw;
    font-size: 3vw;
    font-family: "Gotham";
    cursor: pointer;
    margin-left: 1vw;
}

.map-container .centerdot{
    fill: #333333;
}

.map-container .radar{
    stroke: #333333;
    opacity: 0;
    stroke-width: 2px;
    fill: none;
    animation-name: radar;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.map-container .radar.r2{
    opacity: 0;
    animation-delay: 0.25s;
}

.map-container .radar.r3{
    opacity: 0;
    animation-delay: 0.5s;
}

.map-container .countryName{
    font-family: "Gotham";
    font-weight: 600;
    text-transform: uppercase;
    fill: #333333
}

.map-container .countryLabel{
    font-family: "Gotham";
    fill: #333333
}

.map-container .connectorLine{
    stroke: #333333
}

#project-cluster .legend-entry{
    opacity: 0.2;
    cursor: pointer;
    transition: opacity 0.4s;
}

#project-cluster .legend-entry.selected{
    opacity: 1;

}

@media only screen and (min-width: 700px){
    .map-section{
        padding-bottom: 2vw;
        padding-top: 2vw;
        margin-bottom: 2vw;
    }

    .map-container{
        width: 60%;
        height: 40vw;
    }

    .map-container .zoom-buttons{
        z-index: 5;
        padding: 0.5vw 1vw;
        font-size: 1.5vw;
    }

    .map-container .zoom-buttons span{
        padding: 0.5vw 0.6vw;
    }
    
    .map-container .legend{
        position: absolute;
        bottom: 0;
        left: 1vw;
        max-width: 25vw;
    }
    
    .map-container .legend-entry{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5vw;
    }
    
    .map-container .legend-color{
        width: 1.5vw;
        height: 1.5vw;
        margin-right: 1vw;
    }
    
    .map-container .legend-label{
        width: 20vw;
        font-size: 1vw;
    }
    
    .map-container .legend-title{
        font-size: 1.5vw;
        margin: 0.5vw 0; 
    }
    
    .map-buttons{
        width: 70%;
        padding: 1vw 0 2vw;
        justify-content: space-around;
    }
    
    .map-buttons p.explanation{
        width: 60%;
        text-align: left;
        font-size: 1.2vw;
    }
    .map-buttons p.explanation{
        font-size: 1.2vw;
    }
    
    .map-buttons select{
        min-width: auto;
        background-size: 1.2vw;
        padding: 0.5vw 2vw 0.5vw 1vw;
        font-size: 1.2vw;
        margin-left: 1vw;
    }
    
}

@media only screen and (min-width: 1296px){
    .map-section{
        padding-bottom: 26px;
        padding-top: 26px;
        margin-bottom: 26px;
    }

    .map-container{
        width: 60%;
        height: 520px;
    }

    .map-container .zoom-buttons{
        z-index: 5;
        padding: 7px 13px;
        font-size: 19px;
    }

    .map-container .zoom-buttons span{
        padding: 7px 8px;
    }
    
    .map-container .legend{
        position: absolute;
        bottom: 0;
        left: 13px;
        max-width: 400px;
    }
    
    .map-container .legend-entry{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 19px;
    }
    
    .map-container .legend-color{
        width: 19px;
        height: 19px;
        margin-right: 13px;
    }
    
    .map-container .legend-label{
        width: 259px;
        font-size: 13px;
    }
    
    .map-container .legend-title{
        font-size: 19px;
        margin: 7px 0; 
    }
    
    .map-buttons{
        padding: 13px 0 26px;
        justify-content: space-around;
    }
    
    .map-buttons p.explanation{
        font-size: 15px;
    }
    
    .map-buttons select{
        min-width: auto;
        background-size: 15px;
        padding: 7px 26px 7px 13px;
        font-size: 15px;
        margin-left: 13px;
    }
    
}

@keyframes radar{
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0.5;
    }

    100%{
        opacity: 0;
    }
}
/* #endregion */

/* #region TABLES */
.section.table{
    padding: 3vw 0;
    background-color: white;
}

.section.table .table-header{
    overflow: hidden;
    background-size: cover;
    background-position: center 80%;
    background-blend-mode: multiply;
    padding: 3vw 3vw;
}

.section.table .table-header h1{
    color: white;
}

.section.table .table-content{
    overflow: hidden;
    width: 98vw;
    margin: auto;
}

.section.table .cell{
    height: 24vw;
    padding: 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.section.table .cell.content.flag{
    padding-top: 10px;
    align-items: flex-start;
}

.section.table .cell .flag-container{
    width: 100%;
    overflow: hidden;    
}

.section.table .flag-container p{
    position: relative;
    font-size: 2.5vw;
    text-align: center;
    bottom: 0;
}


.section.table .cell img{
    width: 100%;
}

.section.table .row{
    height: 24vw;
    position: relative;
    overflow: hidden;
}

.section.table .table-rownames{
    width: 38vw;
    text-align: center;
    float: left;
}

.section.table .table-entryrows{
    width: 60vw;
    float: left;
}

.section.table .table-rownames p{
    font-size: 3.5vw;
}

.section.table .cell:nth-child(odd),
.section.table .row:nth-child(odd){
    background-color: #F7F7F7;
}

.section.table .cell:nth-child(even),
.section.table .row:nth-child(even){
    background-color:#EBEBEB;
}

.section.table .cell p{
    margin: 0;
}

.section.table .cell.content{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20vw;
    background-color: rgba(0,0,0,0);
    transition: left 0.4s;
    border-left: dotted 1px #B2B2B2;
}

.checkmark{
    font-size: 7vw;
}

.table-pager{
    margin: auto;
    max-width: 80%;
    text-align: center;
    margin-bottom: 3vw;
}

.table-pager .pager-button{
    height: 4vw;
    width: 4vw;
    margin-right: 2vw;
    border-radius: 50%;
    background-color: rgba(255,255,255, 0.5);
    display: inline-block;
    cursor: pointer;
}

.table-pager .pager-button.selected{
    background-color: rgba(255, 255, 255, 1);
}

@media only screen and (min-width: 700px){
    .section.table .table-header{
        padding: 6vw 5vw;
    }

    .section.table{
        padding: 1.5vw 0;
        background-color: white;
    }

    .section.table .table-rownames{
        width: 20vw;
        text-align: center;
        display: inline-block;
    }

    .section.table .table-content{
        width: 98vw;
        margin: auto;
    }

    .section.table .table-rownames p{
        font-size: 1.4vw;
    }

    .section.table .flag-container p{
        position: relative;
        font-size: 0.9vw;
        text-align: center;
        bottom: 0;
    }

    .section.table .table-entryrows{
        width: 78vw;
        display: inline-block;
    }

    .section.table .cell{
        height: 8vw;
        padding: 6px 6px;
    }

    .section.table .row{
        height: 8vw;
        width: 100%;
        /* position: relative; */
        display: flex;
        flex-wrap: no-wrap;
        align-items: stretch;
        overflow: hidden;
    }

    .section.table .cell.content{       
        left: auto !important;
        position: relative;
        width: 6.5vw;
    }

    .checkmark{
        font-size: 2vw;
    }

    .table-pager{
        display: none;
    }
}
    @media only screen and (min-width: 1400px){
        .section.table .table-header{
            padding: 84px 60px;
        }

        .section.table{
            padding: 21px 0;
            background-color: white;
        }

        .section.table .table-rownames{
            width: 280px;
        }
        .section.table .table-content{
            width: 1400px;
            margin: auto;
        }
        .section.table .table-rownames p{
            font-size: 19px;
        }

        .section.table .flag-container p{
            font-size: 12px;
        }

        .section.table .table-entryrows{
            width: 1120px;
            float: left;
        }

        .section.table .cell{
            height: 112px;
        }
        
        .section.table .row{
            height: 112px;
        }

        .checkmark{
            font-size: 28px;
        }
}

/* #endregion */

/* #region LANGUAGE SWITCHER */
.lang-item{
    list-style: none;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 4vw;
    z-index: 100;
}

.lang-item a{
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}
/* #endregion */

/* #region HOVER SECTION */
.hover-section{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: visible;
}

.hover-section .title-container{
    background-color: #17AFB9;
    position: relative;
    color: white;
    font-weight: bold;
    text-align: center;
    width: 250px;
    height: 150px;
    padding: 0.5em 2em;
    border-radius: 10px;
    line-height: 1.3;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-section .title-container .hover-info{
    background-color: #17AFB9;
    padding: 0.5em 1em;
    color: white;
    font-weight: normal;
    opacity: 0;
    position: absolute;
    bottom: 155px;
    left: -25px;
    width: 300px;
    transition: opacity 0.4s;
    border-radius: 10px;
}

@media only screen and (min-width: 768px){
    .hover-section .title-container:hover .hover-info{
        opacity: 0.95;
    }
}

