/*
Theme Name: camstTheme
Text Domain: camstTheme
Version: 0.19
Author: Ugo Cavalcanti
*/

/*-----	HIDDEN ELEMENTS------*/
.hide{
	display:none !important;
}

a[href=''] {
    display: none !important;
}

/*.topnav .language, .lang-select {
    visibility: hidden !important;
}
/*---------------------------*/

/**** CAMST ****/
@font-face {
    font-family: circularSrd;
    src: url(assets/fonts/lineto-circular-pro-medium.woff2);
}
@font-face {
    font-family: circularSrd;
    src: url(assets/fonts/lineto-circular-pro-bold.woff2);
    font-weight: bold;
}
@font-face {
    font-family: circularSrdBook;
    src: url(assets/fonts/lineto-circular-pro-book.woff2);
}
@font-face {
    font-family: circularSrdBlack;
    src: url(assets/fonts/lineto-circular-pro-book.woff2);
}

.red {
    color: #E64242;
}

.blockDisplay {
    display: block!important;
}



body {
    margin: 0;
    font-family: circularSrd;
}

.sideP {
    font-size: 16px;
    color: #E64242;
    font-family: circularSrdBook;
}

.preIntroP {
    font-size: 16px;
    color: black;
    font-family: circularSrd;
    margin-top: 50px;
}

.introP {
    color: #E64242;
    font-size: 28px;
    font-family: circularSrd;
}

.postIntroP {
    color: #6F6F6F;
    font-size: 28px;
    font-family: circularSrdBook;
}

.bookP {
    color: black;
    font-size: 20px;
    font-family: circularSrdBook;
}

.bookP a {
    color: #E64242;
}

.bookP a:visited {
    color: #6F6F6F;
}

h5.datepost {
    margin: 0;
    line-height: 0;
    opacity: .5;
	color:black;
}

.data-single-post:after {
    content: "";
    height: 1px;
    width: 50px;
    background: black;
    display: inline-block;
    margin: 5px;
}

.data-single-post {
    opacity: .5;
    margin: 20px 0;
}

/*** NAVBAR ***/

/* Style the navigation menu */
.topnav {
    position: relative;
    height: 100px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

/* Style navigation menu links */
.topnav a {
    padding: 0;
    color: black;
    text-decoration: none;
}

/* Style navigation menu logo */
.topnav a img {
    margin-left: 6vw;
    margin-right: 100px;
    flex: 1;
}

/* Style navigation menu title */
.titleLink {
    font-size: 24px!important;
    font-weight: 400;
    line-height: 1.5;
    flex: 2;
}

/* Style navigation menu language selector */
.language {
    font-weight: 400;
    line-height: 1.5;
    margin-right: 3vw;
}

/* Style the hamburger menu */
.topnav a.icon {
    color: #E64242;
    margin-right: 6vw;
}

@media (max-width: 510px) {
    .topnav {
        height: 120px;
    }

    .topnav a img {
        order: 0;
        width: 35vw;
        padding: 0;
        margin: 0;
    }
    
    .titleLink {
       order: 3;
       width: 80%;
       margin-left: 7vw;
        padding-left: 12px !important;
    }
    .language {
        margin-left: 10vw;
        order: 1;
    }
    .topnav a.icon {
        order: 2;
    }
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed!important;
    z-index: 22;
    top: 0;
    width: 100%;
}


/***** MENU *****/

/* Style the menu container */
/** WP MENU **/
.menuBox {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100vw;
    height: 50px;
    background-color: white;
}

.menuBox .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    display: flex;
    justify-content: space-around;
    /*overflow: hidden;*/
}

.menuBox .menu li {
    position: relative;
}

.menuBox .menu li a {
    /*padding: 1rem 1rem 25rem 1rem;*/
    color: #000;
}

.menuBox .menu li:first-child a {
    padding-left: 0;
}

.menuBox .menu li:last-child a {
    padding-right: 0;
}

/* Elementi menu secondo livello */
.menuBox .menu li .sub-menu {
    display: none;
    position: absolute;
    
    left: 2%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 200px;
    z-index: 9999;
}

/*.menu-item-has-children .sub-menu{
    display: none;
    position: absolute;
}*/

.subMenuContainer {
    position: absolute;
    top: 100%;
    height: 500px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.851);
    display: none;
}


.menuBox .menu .menu-item-has-children:hover .sub-menu{
    display: block;
}


.menu-menuprincipale-container:hover ~ .subMenuContainer,
.menu-main-menu-container:hover ~ .subMenuContainer {
    display: block;
}



.menu-menuprincipale-container,
.menu-main-menu-container {
    width: 80%;
}

.menuBox .menu li .sub-menu a {
    color: #111;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 0px;
    display: block;
    text-decoration: none;
    border-bottom: 2px solid #707070;
}

.menuBox .menu li .sub-menu li:first-of-type {
    margin-top: 20px;
}

.menuBox .menu li .sub-menu a:hover {
    color: rgb(67, 67, 67);
}

/* Style the menu links */
.menuBox a {
    text-decoration: none;
    color:black;
}

/* Hide the links inside the navigation menu (except for logo/home) */
#menuLinks {
    display: none;
    position: absolute;
    z-index: 2;
}


@media (max-width: 510px) {
    .menuBox {
        margin-left: 30vw;
        overflow: hidden;
        overflow-y: scroll;
        background-color: white;
        height: 65vh;
        width: 70vw;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-content: center;
    }
    .menuBox .menu {
        overflow-y: scroll;
    }
    .menuBox div {
        height: 100%;
        width: 100%;
    }
    .menuBox div ul{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: left;
    }
    .menuBox .menu li,
    .menuBox .menu li a,
    .menuBox a {
        width: 95%;
        margin: 0px;
        padding: 0px;
        padding-left: 10px;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .menuBox .menu li:first-child a {
        padding-left: 10px;
    }

    .menuBox .menu li {
        border-bottom: 2px solid #707070;
    }

    .menuBox .menu .menu-item-has-children:hover a{
        color: #E64242;
    }

    .menuBox .menu .menu-item-has-children:hover .sub-menu a{
        color: #111;
    }

    /* sub menu */
    .menuBox .menu li .sub-menu {
        position: relative;
        top: 100%;
        left: 2%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 100%;
    }

    .menuBox .menu li .sub-menu a {
        color: #111;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0px;
        display: block;
        text-decoration: none;
        border-bottom: none;
    }

    /*.menuBox .menu li .sub-menu {
        display: block;
    }*/
}
/***** video homepage *****/
@media (max-width: 510px) {
    #myVideo {
        display: none;
    }
}

/***** HEADER SLIDESHOW *****/

.slideContainer {
    position: relative;
    width: 100%;
}

.slideShowImgs{
    width: 100%;
}

@media (max-width: 510px) {
    /*.slideShowImgs{
        margin-top: 14vh;
    }*/
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContainer:hover .overlay {
    opacity: 0.6;
}

@media (max-width: 600px) {
    .overlay {
        display: none;
    }
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/***** Section 1 - Text *****/

.section1 {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.section1 .col1 {
    margin-right: 4vw;
    margin-left: 6vw;
    flex: 2;
}

.section1 .col2 {
    flex: 4;
}

.section1 .col3,
.socialCol {
    align-self: flex-start;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 4vw;
    margin-left: 6vw;
    margin-top: 16px;
}

.section1 .col3 a {
    margin-bottom: 15px;
}

@media (max-width: 510px) {
    .section1 {
        margin-top: 1x5px;
    }

    .section1 .col1 {
        display: none;
    }

    .section1 .col2 {
        margin-left: 7vw;
        flex: 8;
    }
}


/***** Section 2 *****/

.imageGrid{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.sliderGalleryContainer {
    overflow-y: scroll;
    overflow-x: auto;
    width: 88%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.sliderGalleryContainer::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
.sliderGalleryContainer {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

@media (max-width: 510px) {
    .imageGrid{
        margin-top: 50px;
    }

    .sliderGalleryContainer {
        overflow-y: scroll;
        width: 86vw;
        height: 40vw;
        justify-content: flex-start;
    }
}

.sliderGalleryContainer .col1,
.sliderGalleryContainer .col2,
.sliderGalleryContainer .col3,
.sliderGalleryContainer .col4 {
    /*width: 20vw;*/
    flex: 0 0 30vw;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 8px;
}

@media (max-width: 510px) {
    .sliderGalleryContainer .col1,
    .sliderGalleryContainer .col4 {
        flex: 0 0 40vw;
        margin-right: 2vw;
        max-width: 84vw;
    }

    .sliderGalleryContainer .col2,
    .sliderGalleryContainer .col3 {
        flex: 0 0 84vw;
        display: flex;
        flex-direction: row;
        margin-right: 2vw;
        max-width: 84vw;
    }

    .singleImgContainer.large,
    .col2 a {
        width: 84vw;
    }

    .double {
        margin-right: 2vw;
    }
}

.singleImgContainer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.singleImgContainer img{
   width: 100%;
   height: 100%;
   transition: all 0.3s;
   transform: scale(1);
}

@media (max-width: 510px) {
    .singleImgContainer,
    .col1 a,
    .col2 a,
    .col3 a,
    .col4 a {
        position: relative;
        height: 100%!important;
        overflow: hidden;
    }

    .singleImgContainer img{
        width: 100%;
        height: auto;
        transition: all 0.3s;
        transform: scale(1);
     }
}

.singleImgContainer:hover img{
    transform: scale(1.1);
}

.extraText {
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 19vw;
    max-width: 290px;
    padding: 10px;
    opacity: 1;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.extraText .introP {
    color: white;
    font-size: 22px;
}

.overlayGrid .introP {
    font-size: 22px;
}

.singleImgContainer:hover .extraText {
    opacity: 0;
}


.overlayGrid {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 290px;
    padding: 10px;
    opacity: 0;
    transition: .5s ease;
    background-color: #e64242af;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 510px) {
    .overlayGrid {
        height: 36vw;
        width: 37vw;
        /*overflow: auto;*/
        opacity: 1;
    }
    .overlayGrid .introP {
        font-size: 16px;
    }
    .overlayGrid .bookP {
        font-size: 14px;
    }
    .extraText .introP {
        color: white;
        font-size: 18px;
    }

    .singleImgContainer .extraText {
        opacity: 0;
    }
}

.singleImgContainer:hover .overlayGrid {
    opacity: 1;
}


/***** Section 3 - testo 2 *****/

.section3 {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.section3 .innerCol {
    max-width: 600px;
}

@media (max-width: 510px) {
    .section3 {
        margin-top: 25px;
    }

    .section3 .innerCol {
        max-width: 80%;
    }
}


/***** Section 4 *****/

.section4 {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.infograficaContainer {
    width: 88%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.section4 .col1 {
    margin-right: 4vw;
    margin-left: 4vw;
    flex: 1;
}

.section4 .col1 .introP{
    color: black;
    font-size: 18px;
}

.section4 .col2 {
    flex: 2;
}

.section4 .col3 {
    flex: 1;
    margin-right: 4vw;
}

.section4 .col2 img,
.section4 .col3 img {
    max-width: 100%;
}

@media (max-width: 510px) {
    .section4,
    .infograficaContainer {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
    }

    .section4 .col1 .introP{
        font-size: 20px;
    }

    .section4 .col1,
    .section4 .col2,
    .section4 .col3 {
        margin-right: 0;
        margin-left: 0;
        /*max-width: 80%;*/
        margin-bottom: 20px;
    }
}


/***** Section 5 - Video 2020 *****/

.section5 {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

@media (max-width: 510px) {
    .section5 {
        margin-top: 25px;
    }
}

.section5 video {
    width: 100vw;
    height: auto;
}



/***** Section 6 - Stakehlder stories *****/

.section6 {
    margin-top: 50px;
}

@media (max-width: 510px) {
    .section5 {
        margin-top: 25px;
    }
}

.stakeholderContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.stakeholderFrame {
    width: 86vw;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.stakeholder {
    flex: 0 0 30vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

@media (max-width: 510px) {
    .stakeholder {
        flex: 0 0 72.5vw;
    }
}

.infoRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.imgRow {
    width: 100%;
}

.infoAperma {
    color: #E64242; 
    float: right; 
    margin-right: 20%;
}

@media (max-width: 800px) {
    .infoRow {
        display: flex;
        flex-direction: column;
        align-items: flex-end
    }
    .infoRow div {
        width: 80%!important;
    }
    .infoAperma {
        color: #E64242; 
        float: none; 
        margin-right: 0px;
    }
}


/** STAKEHOLDER CUSTOM SLIDER **/
.customSliderStakeholder {
    -webkit-appearance: none;
    width: 30vw;
    height: 12px;
    background: white;
    outline: none;
    border-top: 2px solid #707070;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.customSliderStakeholder:hover {
    opacity: 1;
}

.customSliderStakeholder::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10vw;
    height: 12px;
    background: #E64242;
    cursor: pointer;
}

.customSliderStakeholder::-moz-range-thumb {
    width: 10vw;
    height: 12px;
    background: #E64242;
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.stakeholderFrame::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
.stakeholderFrame {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}



/***** SECTION 7 - testo + personas2 ******/
.section7 {
    margin-top: 100px;
    background-color: #f5f5f5;
    padding-bottom: 25px;
}

.primoTesto {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.primoTesto .innerCol {
    margin-top: 50px;
    max-width: 600px;
}


@media (max-width: 510px) {
    .primoTesto {
        margin-top: 25px;
    }

    .primoTesto .innerCol {
        max-width: 86%;
    }

    .section7 {
        margin-top: 50px;
    }
}

/** PERSONAS **/
.personasContainer {
    margin-top: 25px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.personaSlider {
    width: 70vw;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    align-items: flex-start;
}

.persona {
    flex: 0 0 70vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 510px) {
    .persona {
        flex-direction: column;
        margin-right: 25px;
    }
}


.persona img {
    width: 100%;
    margin-right: 1vw;
}

.personaInfo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.personaSecondLine {
    color: #6F6F6F;
}

.persona a {
    color: #E64242;
}

/** PERSONAS CUSTOM SLIDER **/
.customSlider {
    -webkit-appearance: none;
    width: 30vw;
    height: 12px;
    background: #f5f5f5;
    outline: none;
    border-top: 2px solid #707070;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.customSlider:hover {
    opacity: 1;
}

.customSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10vw;
    height: 12px;
    background: #E64242;
    cursor: pointer;
}

.customSlider::-moz-range-thumb {
    width: 10vw;
    height: 12px;
    background: #E64242;
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.personaSlider::-webkit-scrollbar {
    display: none;
  }
  
/* Hide scrollbar for IE, Edge and Firefox */
.personaSlider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


/** Podcast Call to Action **/
.callToActionPodcastContainer{
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}

.callToActionPodcastContainer a {
    text-decoration: none;
    color: #E64242;
    background-color: white;
    border: 2px solid #E64242;
    border-radius: 50px;
    padding: 10px;
    margin: 10px;
}

.callToActionPodcastContainer a:hover {
    background-color: #E64242;
    color: white;
}


/***** Final Call to Action *****/

.callToActionContainer{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center
}


/***** Footer *****/

footer {
    margin-top: 50px;
}

/* FIRST LINE */
.footerFirstLine {
    height: 100px;
    background-color: #E64242;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    align-content: space-around;
}

.footerFirstLine a {
    text-decoration: none;
    color: white;
}

@media (max-width: 510px) {
    .footerFirstLine a {
        text-align: center;
        font-size: 14px;
        margin-right: 10px;
    }
}

/* SECOND LINE */
.footerSecondLine {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-around;
    align-content: space-around;
}

.linkCol1,
.linkCol2,
.linkCol3 {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: space-around;
}

.linkCol1 a,
.linkCol2 a,
.linkCol3 span {
    font-size: 14px;
}

.linkCol1 a,
.linkCol2 a {
    text-decoration: none;
    color: black;
}

.foterBR {
    display: none;
}

@media (max-width: 510px) {
    .footerSecondLine {
        height: 300px;
        background-color: #f5f5f5;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-around;
        align-content: space-around;
    }

    .linkCol1,
    .linkCol2 {
        margin-top: 10px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .linkCol1 a,
    .linkCol2 a {
        margin-left: 15px;
    }

    .linkCol3 {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
    }

    .foterBR {
        display: block;
    }

    .footerSecondLine a,
    .footerSecondLine span {
        font-size: 16px;
    }
}


/* THIRD LINE */
.footerThirdLine {
    height: 50px;
    background-color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    align-content: space-around;
}

.footerThirdLine .col1 a{
    text-decoration: none;
    color: black;
    margin-right: 10px;
}

.footerThirdLine .col2 a{
    margin-right: 20px;
}

.footerThirdLine .col3 {
    /*width: 13vw;*/
    height: 10px;
}

@media (max-width: 510px) {
    .footerThirdLine {
        height: 75px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        align-content: space-around;
    }

    .footerThirdLine .col1{
        height: 30px;
    }

}


/***** CONTATTACI *****/
.contattaci{
    text-decoration: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff;
    height: 60px;
    border-radius: 30px;
    padding: 0 86px 0 40px;
    box-shadow: 0 0 60px -22px rgb(0 0 0 / 75%);
    transition: 0.4s;
}

.contattaci .text {
    font-weight: bold;
    color: #E64242;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 60px;
}

.contattaci .icon {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 54px;
    height: 54px;
    border-radius: 27px;
    display: block;
    text-align: center;
    background: #e64242;
}

.contattaci .icon svg {
    width: 30px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
}

@media (max-width: 510px) {
    .contattaci {
        padding: 0 0 0 0px;
    }

    .contattaci .text {
        display: none;
    }
}


/** Archives **/
.section-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.archiveRow {
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #707070;
}

@media (max-width: 800px) {
    .archiveRow {
        flex-direction: column;
    }
}

.archiveCol {
    padding-bottom: 25px;
    padding-top: 25px;
    flex: 1;
}

.archiveCol img {
    margin-left: 8vh;
}

.archiveCol a {
    color: #E64242;
}

/** Slider Archives **/
.section-container-slider {
    background-color: #f5f5f5;
    margin-bottom: -50px;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.archive-slider-Frame {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 20px;
    gap: 50px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.archive-slider-Frame::-webkit-scrollbar {
    display: none;
  }
  
/* Hide scrollbar for IE, Edge and Firefox */
.archive-slider-Frame {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.archive-slider-card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: #ffffff;
    flex: 0 0 50vw;
    height: 25vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.archive-slider-card-subCol {
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.archive-slider-innerColContainer {
    width: 20vw;
    height: 20vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.archive-slider-innerColContainer a {
    color: #E64242;
}

.archive-slider-card-subCol img {
    width: 100%;
    height: 100%;
}

.callToActionArchiveSliderContainer {
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .section-container-slider {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .archive-slider-card {
        flex: 0 0 80vw;
        height: 40vw;
    }
    .archive-slider-innerColContainer {
        width: 35vw;
        height: 35vw;
    }
}

@media (max-width: 650px) {
    .section-container-slider {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .archive-slider-card {
        flex: 0 0 80vw;
        height: 160vw;
        flex-direction: column;
    }
    .archive-slider-innerColContainer {
        width: 70vw;
        height: 70vw;
    }
	.callToActionArchiveSliderContainer {
        display: none;
    }
}

/** cover sotries **/
.coverStory-header {
    height: 85vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 510px) {
    .coverStory-header {
        margin-top: 15vh;
        height: 35vh;
    }
}

.coverStory_gallery {
    margin-top: 50px;
    height: 50vh;
    width: 100%;
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
}

.coverStory-imageContainer {
    min-width: 45vw;
    height: 100%;
    margin-right: 10vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.coverStory-imageContainer:last-of-type {
    margin-right: 0vw;
}

@media (max-width: 510px) {
    .coverStory-imageContainer {
        min-width: 90vw;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.coverStory_gallery::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
.coverStory_gallery {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

.coverStory-imageContainer img {
    width: 100%;
}

.single-thumbnailImage {
    width: 100%;
}


/*** BASIC PAGE ***/

.basicPageImageCon {
    width: 100%;
    text-align: center;
    margin-top: 0px;
}

.basicPageImageCon img {
    width: 75%;
}



/****/
.socialIcons-txtExtnd {
    transform: scale(0.7);
}


@media (max-width: 800px) {
    .mobilePageImage {
        width: 100%!important;
    }
}


.infoGrRowContainer {
    width: 100%;
    border-bottom: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.infoGrRowGrid {
    flex: 4;
    padding: 10px;
    /*border: 1px solid red;*/
    display: flex;
    justify-content: space-around
}

.infoGrQuadratino {
    width: 120px;
    height: 120px;
    margin: 10px;
    color: #fff;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.infoGrQuadratino:hover {
    cursor: pointer;
    background-color: #E64242;
}

.infoGrQuadSubRow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    /*border: 1px solid red;*/
}

.infoGrQuadSubRow_numero {
    font-size: 38px;
    flex: 2;
}

.infoGrQuadSubRow_testo {
    margin-left: 5px;
    font-size: 50%;
    flex: 2;
}
.infoGrSection {
    align-items: flex-start
}

@media (max-width: 900px) {
    .infoGrSection {
        flex-direction: column;
    }
    .infoGrCol1 {
        align-self: flex-start;
        margin-left: 3vw!important;
    }
}


@media (max-width: 800px) {
    .infoGrCol1 {
        display: block!important;
    }

    .infoGrCol2 {
        width: 95%;
        margin-left: 0!important;
    }

    .infoGrRowContainer {
        flex-direction: column;
    }

    .infoGrRowGrid {
        padding: 0;
    }

    .infoGrQuadratino {
        margin: 5px;
        width: 90px;
        height: 90px;
    }

    .infoGrRowContainer p {
        margin-left: 2vw; 
    }
    
    .infoGrQuadSubRow_testo {
        font-size: 5px;
    }
}

.flexBraker {
    display: none;
    flex-basis: 100%;
    height: 0;
}

@media (max-width: 500px) {
    .flexBraker {
        display: block;
    }

    .infoGrRowGrid {
        flex-wrap: wrap;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 18vw;
    top: 30%;
    width: 60vw;
    overflow: auto;
    background-color: #E64242;
}
.modal .bookP {
    padding: 30px;
    color: #fff!important;
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}
.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}