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

body{
    background:#000;
    font-family:Arial, Helvetica, sans-serif;
}

.banner{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 40px;
    width:100%;
    background:#000;
    color:#fff;
}

/*------------------*/
/* LEFT */
/*------------------*/

.logo-area{

    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:300px;

}

.logo-area img{

    width:230px;
}

.website{

    margin-top:15px;
    font-size:32px;
    font-weight:bold;
}

/*------------------*/
/* CONTACT AREA */
/*------------------*/

.contacts{

    display:flex;
    align-items:center;
    gap:70px;
	margin-top: 200PX;
    flex:1;
    justify-content:center;

}

.country{

    display:flex;
    align-items:center;
    gap:20px;
}

.flag{

    width:65px;
    height:65px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.flag img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.numbers{

    position:relative;
}

.number{

    font-size:28px;
    font-weight:bold;
    line-height:46px;
}

/* WhatsApp */

.whatsapp{

    position:absolute;
    right:-45px;
    top:-38px;       /* Points at second phone number */

    font-size:48px;
    color:#b28a36;

}

/*------------------*/
/* SOCIAL */
/*------------------*/

.social{

    display:flex;
    gap:18px;
    margin-left:60px;
	margin-top: 200px;
}

.social a{

    width:56px;
    height:56px;

    border-radius:12px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.social a:hover{

    transform:translateY(-5px);
}

.facebook{background:#1877f2;}
.instagram{background:#E4405F;}
.youtube{background:#ff0000;}
.tiktok{background:#111;}
.twitter{background:#1DA1F2;}
.linkedin{background:#0A66C2;}
.telegram{background:#2AABEE;}

@media(max-width:1200px){

.banner{

flex-direction:column;
gap:40px;

}

.contacts{

flex-direction:column;
gap:30px;

}

.social{

margin:0;

}

.website{

font-size:26px;

}

.number{

font-size:22px;

}

}
