/* Revels Media v1.0 */

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#07111f;
    color:#ffffff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.logo1{
    width:300px;
    height:auto;
}

header{
    background:#081523;
    border-bottom:1px solid #1d2b3d;
    padding:20px 0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;
}

nav a:hover{
    color:#ff6a2b;
}

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    padding:70px 5%;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    color:#d7dce5;
    margin-bottom:30px;
}

.hero a{
    display:inline-block;
    background:#ff6a2b;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.hero a:hover{
    background:#ff814f;
}

.hero-image img{
    width:100%;
    border-radius:12px;
}

#partners,
#about{
    margin:60px 0;
}

#partners h2,#about h2{
    margin-bottom:25px;
    font-size:2rem;
}

.partners{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:center;
}

.partners img{
    max-width:180px;
    width:100%;
    margin:auto;
    transition:all .25s ease;
}

.partners img:hover{
    transform:translateY(-3px) scale(1.03);
    filter:brightness(1.12);
}

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid #1d2b3d;
    color:#b8c2cf;
    margin-top:60px;
}

@media (max-width:900px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.partners{
grid-template-columns:repeat(2,1fr);
}

header .container{
flex-direction:column;
gap:15px;
}

}

@media (max-width:600px){

.hero h1{
font-size:2.2rem;
}

.partners{
grid-template-columns:1fr;
}

}

/* ==========================================
   WHY REVELS MEDIA
========================================== */

#why-revels{

    padding:80px 0;
    background:#07142b;

}

#why-revels h2{

    color:#ffffff;
    font-size:2rem;
    margin-bottom:10px;
    text-align:left;

}

.why-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.why-card{
    flex:0 1 240px;
    text-align:center;
    transition:transform .25s ease;
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-card img{
    width:100%;
    max-width:240px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:12px;
}


/* Tablet */

@media (max-width:1000px){

    .why-grid{
        flex-wrap:wrap;
        justify-content:center;
    }

}

/* Mobile */

@media (max-width:700px){

    .why-grid{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .why-card img{
        max-width:170px;
    }

}

