/* ==========================================
   Mail Unlimited Screensaver v4.0
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    font-family:Arial,Helvetica,sans-serif;
    background:#000;
    color:#fff;
}

.background{
    position:relative;
    width:100vw;
    height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transition:background-image 2s ease;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.18) 100%
    );
}

.hero{
    position:absolute;
    left:80px;
    top:60px;
    width:900px;
    z-index:10;
}

.logo{
    width:360px;
    margin-bottom:40px;
    filter:brightness(0) invert(1);
}

.hero h1{
    font-size:110px;
    font-weight:800;
    line-height:.92;
}

.hero h1 span{color:#E3032D;}

.hero p{
    margin-top:30px;
    font-size:32px;
    color:#f5f5f5;
}

.clock{
    position:absolute;
    right:80px;
    top:70px;
    text-align:right;
    z-index:10;
}

.time{
    font-size:88px;
    font-weight:bold;
}

.date{
    margin-top:10px;
    font-size:28px;
}

.clients{
    position:absolute;
    right:60px;
    bottom:70px;

    width:720px;

    padding:30px;

    border-radius:24px;

    background:rgba(18,18,18,.72);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    z-index:10;
}
.clients-header{
    margin-bottom:25px;
}

.clients-header h2{
    text-align:center;
    color:#E3032D;
    font-size:22px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.carousel{

    display:grid;

    grid-template-columns:1fr 1fr;

    grid-template-rows:130px 130px;

    gap:20px;

    width:100%;

    height:280px;

}

.logo-card{

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    height:130px;

    border-radius:18px;

    padding:18px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 8px 25px rgba(0,0,0,.18);
	}

.client-logo{

    max-width:100%;

    max-height:90px;

    width:auto;

    height:auto;

    object-fit:contain;

}

.client-name{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    text-align:center;
    color:#222;
    font-size:17px;
    font-weight:700;
    line-height:1.3;
}

.footer{
    position:absolute;
    left:80px;
    bottom:60px;
    display:flex;
    gap:35px;
    font-size:24px;
    z-index:10;
}

.footer-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-item span{
    color:#E3032D;
}
