/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
    color:#333;
}

a{
    text-decoration:none;
}

.container{
    width:1100px;
    max-width:95%;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

header{
    background:#fff;
    height:90px;
    display:flex;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.header-content{
    display:flex;
    justify-content:flex-start;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:55px;
    margin-right:15px;
}

.logo h2{
    color:#d4146e;
    font-size:34px;
    line-height:30px;
    font-weight:700;
}

.logo p{
    font-size:13px;
    color:#777;
}

/* ===========================
   HERO
=========================== */

.hero{
    background:#c2186b;
    color:#fff;
    padding:60px 0;
}

.hero h1{
    font-size:60px;
    margin-bottom:10px;
}

.hero p{
    font-size:28px;
    font-weight:300;
}

/* ===========================
   COUNTRY CARD
=========================== */

.countries{
    margin:50px auto;
}

.country-card{

    width:900px;
    max-width:95%;
    margin:auto;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.country{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px solid #ececec;
    color:#d4146e;
    transition:.3s;

}

.country:last-child{
    border-bottom:none;
}

.country:hover{
    background:#fafafa;
    padding-left:40px;
}

.left{
    display:flex;
    align-items:center;
}

.flag{
    font-size:34px;
    margin-right:25px;
}

.country span:last-child{
    font-size:22px;
    letter-spacing:1px;
}

.country i{
    font-size:20px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    margin-top:70px;
}

.footer-top{

    background:#fff;
    padding:50px 0;
    border-top:1px solid #eee;

}

.footer-flex{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;

}

.footer-logo{
    display:flex;
    align-items:center;
}

.footer-logo img{
    width:55px;
    margin-right:15px;
}

.footer-logo h2{
    color:#d4146e;
    font-size:34px;
}

.footer-logo p{
    color:#777;
    font-size:13px;
}

.footer-text{

    flex:1;
    color:#666;
    line-height:30px;
    font-size:16px;

}

.footer-middle{

    background:#fff;
    padding:40px 0;

}

.footer-middle h3{

    margin-bottom:15px;
    font-size:24px;

}

.footer-middle p{

    color:#666;
    margin-bottom:25px;

}

.footer-middle select{

    width:420px;
    max-width:100%;
    height:55px;
    border-radius:30px;
    border:1px solid #ccc;
    padding:0 20px;
    font-size:16px;
    outline:none;
    cursor:pointer;

}

.footer-bottom{

    background:#333;
    color:#fff;
    text-align:center;
    padding:20px;

}

.footer-bottom p{
    font-size:15px;
}

/* ===========================
   BACK TO TOP
=========================== */

#topBtn{

    position:fixed;
    bottom:25px;
    right:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:#fff;
    color:#d4146e;

    font-size:20px;
    cursor:pointer;

    box-shadow:0 5px 20px rgba(0,0,0,.2);

    display:none;

    transition:.3s;

}

#topBtn:hover{

    background:#d4146e;
    color:#fff;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:20px;
}

.country{
    padding:18px;
}

.country span:last-child{
    font-size:18px;
}

.flag{
    font-size:28px;
    margin-right:15px;
}

.footer-flex{
    flex-direction:column;
}

}

@media(max-width:600px){

.hero{
    padding:40px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.country{

    padding:15px;

}

.country span:last-child{

    font-size:16px;

}

.flag{

    font-size:24px;

}

.logo h2{

    font-size:28px;

}

.footer-logo h2{

    font-size:28px;

}

}