
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    display: flex;
    justify-content: center;
}
.container{
    width: 100%;
    max-width: 1366px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
/* .........   Header  ............... */
header{
    width: 100%;
    padding-left: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 1000;
}
header nav ul li{
    display: inline-block;
}
header nav a{
    color: #fff;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 16px;
    transition: 0.2s;
    border-radius: 2px;
    font-weight: bold;
}
a.active{
    background-color: #14ff72cb;
    color: #000000;
}
a:hover{
    background-color: #14ff72cb;
    color: #000000;
}
header .logo h1{
    color: #14ff72cb;
    text-transform: uppercase;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    padding: 0 10px;
}

/* Corousel / Slider */
.banner{
    width: 100%;
    height: 643px;
    margin-top: -50px;
    background-image: url(../SlideShow/images/1stImage.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.corousel{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.corousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    left: 70%;
    transform: translateY(-70%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 20px;
    z-index: 100;
    transition: 1s;
}
.corousel .list .item:nth-child(1),
.corousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 643px;
    border-radius: 0;
    background-color: red;
}
.corousel .list .item:nth-child(3){
    left: 67%;
}
.corousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}
.corousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}
.corousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}
.corousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}

.corousel .item .corousel-content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}
.corousel .item:nth-child(2) .corousel-content{
    display: block;
}
.corousel .corousel-content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}
.corousel .corousel-content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}
.corousel .corousel-content .describe{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}
.corousel .corousel-content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    background-color: #fff;
    border-radius: 2px solid #fff;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}
.corousel .corousel-content .btn button:nth-child(1){
    margin-right: 15px;
}
.corousel .corousel-content .btn button:nth-child(2){
    background-color: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
}
.corousel .corousel-content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}
@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Next Previous */
.corousel .arrows{
    position: absolute;
    top: 80%;
    left: 52%;
    width: 300px;
    max-width: 30%;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
}
.corousel .arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14ff72cb;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    font-family: monospace;
    transform: .5s;
    cursor: pointer;
    box-shadow: 0 0 5px red;
    transition: .3s;
}
.corousel .arrows button:hover{
    background-color: #fff;
    color: #000000;
}
/* Time Running */
.corousel .timeRunning{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0%;
    background-color: #14ff72cb;
    height: 4px;
    animation: runningTime 7s linear 1 forwards;
}
@keyframes runningTime {
    from{width: 0%;}
    to{width: 100%;}
}

@media screen and (max-width: 999px) {
    header{
        padding-left: 50px;
    }
    .corousel .item .corousel-content{
        left: 50px;
    }
    .corousel .corousel-content .name{
        font-size: 70px;
    }
    .corousel .corousel-content .describe{
        font-size: 16px;
    }
    .corousel .arrows{
        left: 40%;
    }
    header .logo h1{
        font-size: 20px;
    }
}
@media screen and (max-width: 690px) {
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }
    .corousel .item .corousel-content{
        top: 40%;
        width: 365px;
    }
    .corousel .corousel-content .name{
        font-size: 45px;
    }
    .corousel .corousel-content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
    .corousel .arrows{
        left: 20%;
    }
    header .logo{
        display: none;
    }
    header .logo h1{
        font-size: 16px;
    }
    .banner{
        height: 100vh;
    }
}
@media screen and (max-width: 500px){
    .corousel .item .corousel-content{
        top: 32%;
    }
    .corousel .item .corousel-content{
        left: 20px;
    }
}
@media screen and (max-width: 399px){
    header{
        padding: 10px 10px;
    }
    .corousel .corousel-content .title{
        font-size: 80px;
    }
    .corousel .arrows{
        left: 5%;
        max-width: fit-content;
    }
    .corousel .corousel-content .btn button{
        padding: 6px 8px;
    }
}
/* 9 Minutes remaining */