@charset "utf-8";
/* CSS Document */



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.5;
}

a{
    color:#fff;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ---------------- HEADER ---------------- */

header{
    border-bottom:1px solid rgba(255,255,255,0.12);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0 20px 0;
}

.logo_upperside {
    width: 230px;
	margin-top: 5px;
	opacity: 0.9;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    opacity:0.7;
    transition:0.3s;
}

nav a:hover{
    opacity:1;
}

/* ================= HERO SLIDER ================= */

.hero-slider{
    position:relative;
    height:55vh;
    
    overflow:hidden;
    border-bottom:1px solid rgba(0,0,0,0.08);
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease;

}

.slide.active{
    opacity:1;
    z-index:2;
}

.hero-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(80%);	
}


.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.0);
}

.hero-content{
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
	
}

.hero-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:3px;
    color: white;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:clamp(40px, 4.9vw, 93px);
    line-height:1.01;
    letter-spacing:-0.1vw;
    margin-bottom:9vh;
    max-width:900px;
	color: white;
}

.hero-content h1 span{
    color:#666;
}

.hero-content p{
    max-width:700px;
    font-size:20px;
    color:darkgray;
    margin-bottom:10px;
}

.slider-nav{
    position:absolute;
    bottom:40px;
    right:40px;
    z-index:10;
    display:flex;
    gap:10px;
}

.nav-btn{
    width:60px;
    height:60px;
    color:white;
    background:rgba(0,0,0,0.03);
    backdrop-filter:blur(3px);
    cursor:pointer;
    font-size:20px;
    transition:0.3s;
	border: 0px;
}

.nav-btn:hover{
    background:#111;
    color:#fff;
}
.hero-buttons{
	margin-bottom: 100vh;
    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.btn{
    border:1px solid rgba(255,255,255,0.15);
    padding:18px 18px 18px 18px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    transition:0.3s;
	backdrop-filter:blur(3px);
}

.btn:hover{
    background:#eee;
    color:#000;
}

.btn-white{
    background:#fff;
    color:#000;
}

.btn-black{
    background:#fff;
    color:#fff;
}



/* ---------------- EVENTS ---------------- */

.events{
    border-top:1px solid rgba(255,255,255,0.12);
}

.event{
    display:grid;
    grid-template-columns:220px 100% 140px;
    gap:60px;
    padding:55px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
    transition:0.3s;
}

.event:hover{
    background:rgba(255,255,255,0.05);
}

.event-category{
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#999;
    margin-bottom:15px;
}

.event-date{
    color:#CCC;
    font-size:15px;
}

.event h2{
    font-size:42px;
    line-height:1;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.event p{
    color:#999;
    max-width:700px;
}

.event-link{
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:2px;
    color:#777;
}

/* ---------------- ABOUT ---------------- */

.about{
    padding:110px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:50% 50%;
    gap:0px;
}

.about-grid_spe{
    display:grid;
    grid-template-columns:30% 70%;
    gap:20px;

}


.about h3{
    font-size:60px;
    line-height:1;
    letter-spacing:-3px;
    margin-bottom:40px;
}

.about h3 span{
    color:#666;
}

.about p{
    color:#999;
    margin-bottom:20px;
    font-size:18px;
}

.about-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.about-item{
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:20px;
    font-size:24px;
    color:#ddd;
}

/* ---------------- FOOTER ---------------- */

footer{
    border-top:1px solid rgba(255,255,255,0.12);
    padding:40px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.footer-text{
    color:#eee;
    font-size:13px;
    text-transform:none;
    letter-spacing:2px;
}

.footer-links{
    display:flex;
    gap:30px;
}

.footer-links a{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#777;
}

.footer-copyright{
    font-size:11px;
    text-transform:none;;
    letter-spacing:2px;
    color:#999;
	text-align: center;
	margin-top: 50px;
}

/* ---------------- RESPONSIVE 1280 ---------------- */

@media(max-width:1280px){
	
	.none_1280 {
		display: none;
	}
	
	.logo_upperside {
    width: 210px;
	margin-top: 10px;
}
.hero-slider{
        min-height:300px;
    }
	
		.hero-buttons{
	margin-bottom: 190vh;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
	
		.btn{
    border:1px solid rgba(255,255,255,0.35);
    padding:5px;
    font-size:13px;
}
    nav{
		display: none;
        gap:20px;
    }

    .event{
        grid-template-columns:100%;
        gap:30px;
    }

    .about-grid{
        grid-template-columns:100%;
        gap:50px;
    }
	    .about-grid_spe{
        grid-template-columns:100%;
        gap:30px;
    }
	
	    .about-grid_spe h1{
        line-height: 28px;
    }

    .about h3{
        font-size:42px;
    }

    .footer-inner{
        flex-direction:column;
        align-items:center;
    }

}


/* ---------------- RESPONSIVE 480 768 ---------------- */

@media all and (min-width: 480px) and (max-width: 768px)

{
	.none_480_768 {display: none;}
}


/* ---------------- RESPONSIVE 480 ---------------- */

@media(max-width:480px){
	
	.none_480 {
		display: none;
	}
	
/* ================= HERO SLIDER ================= */
	.hero-buttons{
	margin-bottom: 120vh;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

	.hero-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(70%);	
}
	
    .hero-slider{
        min-height:380px;
    }

    .hero-content h1{
		margin-bottom: 8vh;
        letter-spacing:-1px;
		font-size:clamp(48px, 4.9vw, 93px);
    }

    .hero-content p{
        font-size:18px;
    }

    .slider-nav{
        right:20px;
        bottom:20px;
		display: none;
    }

    .nav-btn{
        width:50px;
        height:50px;
    }
	
	.btn{
    border:1px solid rgba(255,255,255,0.35);
    padding:10px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    transition:0.3s;
	backdrop-filter:blur(3px);
			width: 100%;
		text-align: center;
}
	/* ================= HERO SLIDER FIN ================= */

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:30px;
    }

    nav{
        flex-wrap:wrap;
        gap:15px;
    }

    .hero{
        padding:100px 0 80px;
    }

    .hero p{
        font-size:18px;
    }

    .event h2{
        font-size:32px;
		margin-bottom: 20px;
    }

.event{
 gap:60px;
    padding:55px 0 20px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
    transition:0.3s;
}
	.event-category{
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#999;
    margin-bottom:10px;
}

	.event-link{
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:2px;
    color:#eee;
		margin-top: -40px;
}
	
	/* ---------------- ABOUT ---------------- */

.about{
    padding:60px 0;
}
	
	.about p{
    color:#999;
		margin-top: -50px;
    margin-bottom:0px;
    font-size:18px;
}
	.footer-links{
    display:flex;
    gap:20px;
}
	
	.footer-text{
    color:#eee;
    font-size:13px;
    text-transform:none;
    letter-spacing:2px;
}
	
.footer-links a{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#777;
}
}

