@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;1,300;1,400&display=swap');

html{
    font-family: "Source Sans Pro", "sans-serif";
    font-weight: 300;
    font-size: 17px;
    box-sizing: border-box;
}
*, ::before, ::after{
    box-sizing: inherit;
    font-size:1.2rem;
}
html, body{
    padding:0;
    margin:0;
    width:100%;
}
body{
    min-height:100vh;
    
}
h1{
    font-family: "Playfair Display", "Times New Roman", serif;
    text-transform: capitalize;
    font-weight:900;
    font-size:2.4rem;
    margin:0;
}
h2{
    font-size:1.8rem;
    font-weight: 300;
    margin:1rem 0 0;
    padding:0;
}
h3{
    font-size:1.2rem;
    font-weight: 400;
    margin:0;
    padding:0;
}
p{
    font-size:1.2rem;
    margin:0.4rem 0;
}

b{
    font-weight: 400;
}
.content{
    padding:2rem 20%;
}
.poster{
    border-right:1px dashed #454;
    color:#E4E4E4;
}
.poster h1{
    font-size: 6rem;
    line-height:90%;
    padding:0;
    margin:0 0 2rem 0;
    color:#ebebeb;
}

.page{
    min-height:100vh;
}
.vertical-menu{
    list-style: none;
    padding:0;
    margin:0;
}
.vertical-menu li{
    padding:0.4rem 0;
}
.vertical-menu a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight:400;
    /*color:#BD223D;*/
    color:#ebebeb;
}
.hidden-el{
    position:absolute;
    top:-1000px;
    left:-1000px;
    clip:rect(0, 0, 0, 0);
}




.black-page{
    color:#ebebeb;
    background-color: #000; 
}
.black-page .vertical-menu a{
    color:#E0EFFD;
}
.split-page{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.split-page div{
    display:grid;
    place-content:center;
    padding:10%;
}


header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    z-index:888888;
    top:24px;
    left:0;
    right:0;
    height:60px;
    border-right: solid 32px #BD223D;
}

#logo{
    display:block;
    width:188px;
    height:inherit;
    background-color:#BD223D;
    background-image: url("../images/my-logo.svg");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}
.main-nav,
.main-nav .nav-item{
    height:inherit;
    display:flex;
    justify-content:flex-end;
    padding-right:24px;
}
.main-nav{
    width:50%;
    flex-direction:column;
    background-color:rgba(255,255,255,0.9);
    position:relative;
}
#home .main-nav{
    background-color:rgba(255,255,255,0);
}
.main-nav .nav-item,
.mobile-menu-title{
    padding:0;
    align-items:center;
    color: #BD223D;
    font-weight: 600;
    text-transform: uppercase;
    cursor:pointer;
}
.mobile-menu-title{
    color:#fefefe;
}

.main-nav .sub-menu,
.mobile-menu{
    visibility:hidden;
    position:absolute;
    left:0;
    right:0;
    top:60px;
    z-index:999999;
    padding:24px;
    background-color:#BD223D;
}
.main-nav .sub-menu{
    box-shadow: 0 0 24000px 24000px rgba(0,0,0,0.15);
}
.submenu-trigger:hover + .sub-menu,
.sub-menu:hover{
    visibility: visible;
}

a.active{
    color:#FFAEB0;
    position:relative;
    padding-left: 1rem;
    display:block;
}
a.active::before{
    content:'';
    position:absolute;
    top:0;
    left:-1.4rem;
    bottom:0;
    width:1.4rem;
    background-color:#fff;
    
}

footer{
    margin-top:4rem;
    padding:2rem 2rem 4rem 2rem;
    background-color:#ebebeb;
}

.prev-next-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.prev,
.next{
    display:inline-block;
    text-decoration: none;
    text-transform: capitalize;
    color:#BD223D;
    font-weight:300;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-repeat: no-repeat;
    background-size: contain;
    width:45%;
}
.prev{
    padding-left:2rem;
    background-image: url("../images/arrow-left.svg");
    background-position: left center;
}
.next{
    text-align:right;
    padding-right: 2rem;
    background-image: url("../images/arrow-right.svg");
    background-position: right center;
}

/* ARTICLE */
.article-container{
    display:grid;
    grid-template-columns: minmax(320px, 680px);
    place-content:center; 
    padding:1.4rem;
}

.article-title{
    font-size:4rem;
    font-weight: 100;
    text-align: center;
    margin:7rem 0 3rem 0;
}
.article-container ul{
    padding:0;
    list-style:none;
}



.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed black;
    cursor:pointer;
}

/* Tooltip text */
.tooltip::after {
    content: attr(text);
    font-size: 1rem;
    font-weight: 400;
    visibility: hidden;
    display:inline-block;
    width:120%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 0.4rem;
    border-radius: 0.4rem;
    position: absolute;
    top:0;
    left:50%;
    transform: translate(-50%, -100%);
}
.tooltip::before {
    content: " ";
    visibility: hidden;
    position: absolute;
    top:0px;
    left:50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover::before,
.tooltip:hover::after {
  visibility: visible;
}







.x-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height: 60px;
}

.x-icon{
    display:inline-block;
    width:32px;
    height:32px;
    background-image: url("../images/x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain;
}

.mobile-menu{
    display:none;
    position:fixed;
    top:0;
    bottom:0;
    z-index:99999999;
    overflow-y:scroll;
}
@media screen and (max-width: 1056px){
    .poster h1{
        margin-top:6rem;
        font-size: 4rem;
    }
}
@media screen and (max-width: 720px){
    .poster{
        border-right:0 none;
        border-bottom:1px dashed #454;
        text-align:center;
    }
}
@media screen and (max-width: 480px){
    .article-title{
        font-size:3rem;
    }
}
@media (hover: none) {
    .main-nav .sub-menu{
        touch-action: auto;
        display:none;
    }
    .submenu-trigger{
        touch-action: auto;
    }

    .menu-trigger:checked + .mobile-menu{
        display:block;
        visibility: visible;
    }
}


