@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* General styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

:root {
    --main-color: #dd0707;
    --second-color: #dd0707;
    --text-color: #444;
    --gradient: linear-gradient(#dd0707, #ffac38);
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

/* Footer Styles */
footer.h1{
    color:#fff;
    text-align: center;
    margin:3rem 0;
    font-size:3rem;
}
/* .footer *{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
} */
.footer ul{
    list-style: none;
}

.footer{
    color:#fff;
    background: #121315;
}

.footer p{
    color:#ccc;
    max-width:25em;
    font-size:0.9em;
    line-height: 23px;
}

.footer a{
    color:#fff;
    text-decoration: none;
}

.footer h4{
 margin-bottom: 1rem;
 text-decoration: uppercase;
}

.footer .footer-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap:2rem;
    align-items: center;
}



.footer .menu a:hover{
    text-decoration: underline;
}

.item_1{
    align-items: start;
}

.brand{
    display:block;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 1em;
    
}

.media-icons {
    display: flex;
    justify-content: flex-end; /* Aligns media icons to the right */
    margin: 10px; /* Remove any extra margin */
    padding: 10; /* Remove any extra padding */
}


.media-icons li,
.service-icon li{
    display: inline-block;
    margin: 0.5em 0.5em 0.5em 0;
}

.media-icons a{
    font-size: 1.1em;
    width:2em;
    height:2em;
    background: #ff2b00;
    border:none;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;

}

.media-icons a:hover{
    background: #fffdfd;
    color:#000000;

}

.service-icon a{
    font-size:1.6em;
} 

.service-icons a:hover{
    color:#dbdbdb;
}

.footer .menu{
    margin-bottom: 3em;
    align-items: right;
}
.footer .menu li{
    display: block;
    margin: 0 0.7em 0.7em 0;
    text-align: left;
}

.footer .menu a{
    transition: 0.3s;
    font-weight: 600;
}

.footer .menu a:hover{
    color:#ff2b00
}

.media-icons{
    margin: 10px 0px 0px 10px;
}