/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Poppins",sans-serif;
    background:#f7f7f7;
    color:#222;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

.container{
    max-width:1320px;
}

/* =========================
   TOP BAR
========================= */

.top-bar{

    background:#8d1434;
    color:#fff;

    font-size:14px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

}

/* =========================
HEADER
========================= */

.main-header{

    background:#fff;

    box-shadow:0 3px 15px rgba(0,0,0,.06);

}

.main-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    font-size:36px;

    color:#8d1434;

    font-weight:bold;

}

.menu{

    display:flex;

    gap:35px;

}

.menu a{

    color:#333;

    font-weight:600;

}

.menu a:hover{

    color:#8d1434;

}

.header-right{

    display:flex;

    gap:20px;

    font-size:22px;

}