body {
    font-family: 'roman', Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
}
ul {
    padding: 0;
    list-style: none;}
a {text-decoration: none;}

/*** SECTIONS(PANELS) ***/
.panel {
    width: 100%;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 4rem;
}
/*.panel h1 {*/
/*    font-weight: 700;*/
/*    font-size: 80px;*/
/*}*/
.panel h1, .panel h2 {
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: 700;
}
.panel p, .panel li {
    font-size: 20px;
    font-weight: 700;
}
.panel-content {width: 55%;}

/*** VIDEO BG ***/
.video, .video::after, .video-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video {
    position: fixed;
    z-index: -1;
}
.video::after {
    content: "";
    position: absolute;
    display: block;
     background-color: rgba(0, 0, 0, 0.4); 
    /*background: rgba(0, 0, 0, 0.3) url(./assets/screen.png);*/
}
.video-bg {object-fit: cover;}

/*** MENU ***/
.menu {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    bottom: 0;
}
.menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
    padding: 0;
}
.menu-list a {
    color: white;
    font-weight: 900;
}
.menu .logo {width:125px;}
.menu-list a.active {color:#285367;}

.side-pagination {
    position: fixed;
    right: 10px;
    top: 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.side-pagination a {
	display:block;
	width:15px;
	height:15px;
    border:1px solid;
	border-radius:50%;
	color:white;
	position:relative;
}
.side-pagination a .hover-text {
	position:absolute;
	opacity:0;
    right: 100%;
    width: max-content;
    padding-right:10px;
    text-transform: uppercase;
    font-size: 14px;
	transition: opacity 0.5s ease;
    line-height: 0.7;
}
.side-pagination a:hover,
.side-pagination a.active {
    transition: 700ms;
    background-color: white;
}
.side-pagination a:hover .hover-text,
.side-pagination a.active .hover-text {opacity: 1;}

#btn-menu {
    background-color: transparent;
    border: none;
    height: 25px;
    width: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    float: right;
    display: none;
}
.btn-menu-line {
    width: 100%;
    height:3px;
    background-color: white;
    transition: 200ms linear;
}
.menu-open {
    min-height: 100%;
    transition: 500ms linear;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-list :not(:first-child){color: black;}
.menu-open #btn-menu{
    position: absolute;
    top:0;
    right: 0;
    margin: 15px 30px;
}
.menu-open #btn-menu .btn-menu-line:nth-child(2) {display: none;}
.menu-open #btn-menu .btn-menu-line {background-color: black;}

/*** CONTACT ***/
#section-contact a {color: white;}
#section-contact ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
    margin: 0;
}

/*** COOKIE ***/
/*.cookie-bar {*/
/*    position: fixed;*/
/*    width: 100%;*/
/*    height: 60px;*/
/*    background: #ffc456;*/
/*    color: black;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    -webkit-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*    font-weight: 500;*/
/*}*/
/*.cookie-bar button, .cookie-bar button {*/
/*    padding: 5px 15px;*/
/*    margin: 0;*/
/*    border: none;*/
/*    background-color: white;*/
/*    color: black;*/
/*    font-size: 14px;*/
/*    margin-left: 10px;*/
/*}*/
/*.close-cookie {margin-top: -60px;}*/

/*** OPTIMIZATION ***/
@media (max-width: 1500px) {
    .contact-tab {width: 65%;}
}
@media (max-width: 1200px) {
    .panel h1 {font-size: 65px;}
    .home-title p {font-size: 25px;}
}
@media (max-width: 1000px) {
    .menu {
        top: 0;
        bottom: unset;
        display: flex;
        justify-content: space-between;
        align-items:center;
    }
    .menu-open {justify-content: center;}
    .menu-open .menu-list {flex-direction: column;}
    .menu-list li:not(:first-child){display: none;}
    .menu-open .menu-list li:not(:first-child){display: block;}
    .menu-open .menu-list a {color: black;}
    #btn-menu {display: flex;}
    .menu-open #btn-menu .btn-menu-line {
        top: 11px;
        left: 4px;
        position: absolute;
    }
    .menu-open #btn-menu .btn-menu-line:first-child {transform: rotate(45deg);}
    .menu-open #btn-menu .btn-menu-line:last-child {transform: rotate(-45deg);}
    /*.cookie-bar {*/
    /*    padding: 0 30px;*/
    /*    z-index: 99;*/
    /*    height: 100px;*/
    /*}*/
    /*.close-cookie {margin-top: -110px;}*/
    /*#cookie-understand {margin: 0;}*/

}
@media (max-width: 800px) {
    .panel h1, .panel h2 {font-size: 2.5rem;}
    .panel p, .panel li {font-size: 1rem;}
}
@media (max-width: 600px){
    .panel {padding: 20px;}
    .panel h1 {font-size: 45px;}
    .panel-content {width: 100%;}
    ul.menu-list-mobile {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 450px){
    .menu .logo {width: 125px;}
    .panel {padding: 85px 20px;}
    /*.cookie-bar {height: 110px;}*/
}