@font-face {
 font-family: "TradeGothic LT";
 src: url(font-family/Trade_Gothic_Font/Trade_Gothic_LT.ttf);
}

@font-face {
 font-family: "Century Gothic";
 src: url(font-family/CenturyGothic.ttf);
}

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

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
}

:root{
    --first-color: #FF0000 ;
    --second-color: #ff3232;
    --third-color: #CD1818;
    --fourth-color: #ED2B2A;
    --background-color: #1A1A1A;
    --first-font: 'Inter';
}

body{
    background: black;
}




/* ********* NavBar ******** */

nav{
    background: black;
    width: 100%;
    max-width: 100vw;
    height: 7rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    box-shadow: 0 0 3px #FF0033, 
    0 0 6px #FF0033,
    0 0 15px #FF0033;
}
.nav__container{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.nav__container .logo_container{
    flex: 0.33;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav__container .img{
    width: clamp(55% + 0.3rem, 40% + 0.1rem, 60% + 0.3rem);
    object-fit: cover;
}

.nav__menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    gap: 4rem;
    flex: 0.33;
}
nav .nav__menu a{
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}
.nav__menu li a:hover{
    color: grey;
}

.nav__container .container_infos{
    flex: 0.33;
    display: flex;
    justify-content: flex-end;
}
.nav__container .infos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.nav__container .contact_us{
    border-radius: 40px;
    border: 2px var(--fourth-color) solid;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 8px;
    background: transparent;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav__container .contact_us a{
    color: white;
}
.nav__container .contact_us:hover{
    background: var(--fourth-color);
}

nav p{
    color: white;
    font-weight: 600;
    top: 10%;
    right: 3.4%;
    font-size: 1rem;
}





/*********** *************/

.section1{
    margin: 8rem auto;
    width: 80%;
}



 .section1 h1{
    font-family: 'Bodoni Moda', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: var(--first-color);
    margin-bottom: 4rem;
    padding-top: 3rem;
}
.section1 h2{
    font-family: 'Bodoni Moda', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: var(--first-color);
    margin-bottom: 4rem;
    padding-top: 3rem;
}

.section1 h3{
    color: white;
    padding: 3rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.section1 p{
    color: white;
    padding: 1rem 0;
}














/* ********* Footer ******** */



footer{
    max-width: 100vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: black;
    box-shadow: 0 0 3px #FF0033, 
    0 0 6px #FF0033,
    0 0 15px #FF0033;
}
footer h1{
    font-size: 1.5rem;
    color: white;
    padding-bottom: 1rem;
}
footer p, footer li{
    font-size: 0.9rem;
    font-weight: 700;
    color: darkgrey;
}
footer .article2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
footer .article2 ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
}
footer .article2 ul li a i{
    font-size: 1.5rem;
    transition: 0.1s;
    color: darkgrey;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .article2 ul li a i:hover{
    transform: scale(1.15);
    color: lightgrey;
}
footer .article3 li{
    margin-bottom: 0.3rem;
}
footer .article3 li a{
    color: darkgrey;
}

footer .article3 li:hover{
    color: lightgrey;
    text-decoration: underline;
    cursor: pointer;
}






/********** Media Queries **********/


@media (max-width: 1150px){

    .nav__menu{
        gap: 2rem;
    }
    nav .nav__menu a{
        font-size: 1.2rem;
    }


    .nav__container .infos{
        gap: 0.5rem;
    }

    .nav__container .contact_us{
        width: 140px;
        height: 35px;
        border-radius: 40px;
        font-size: 1rem;
        padding: 2px;
    }
    nav p{
        font-size: 1rem;
    }






    footer{
        padding: 0.8rem 1.5rem;
    }
    footer h1{
        font-size: 1.2rem;
        padding-bottom: 0.8rem;
    }
    footer p, footer li{
        font-size: 0.8rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 2rem;
    }
    footer .article2 ul li a i{
        font-size: 1.2rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 1000px){
    .nav__menu{
        gap: 1.5rem;
    }
    nav .nav__menu a{
        font-size: 1.1rem;
    }


    .nav__container .infos{
        gap: 0.4rem;
    }

    .nav__container .contact_us{
        width: 130px;
        height: 30px;
        border-radius: 30px;
        font-size: 0.9rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.9rem;
    }

   
}



@media (max-width: 800px){
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 1rem;
    }


    .nav__container .infos{
        gap: 0.3rem;
    }

    .nav__container .contact_us{
        width: 110px;
        height: 25px;
        border-radius: 20px;
        font-size: 0.8rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.8rem;
    }


  



    footer{
        padding: 0.6rem 1rem;
    }
    footer h1{
        font-size: 1rem;
        padding-bottom: 0.7rem;
    }
    footer p, footer li{
        font-size: 0.7rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 1.1rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 700px){
    nav{
        height: 5.5rem;
    }
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 0.8rem;
    }
    




    footer{
        padding: 0.6rem 1rem;
    }
    footer h1{
        font-size: 0.9rem;
        padding-bottom: 0.6rem;
    }
    footer p, footer li{
        font-size: 0.6rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 1.1rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 600px){
    nav{
        height: 5rem;
    }
    .nav__menu{
        gap: 1rem;
    }
    nav .nav__menu a{
        font-size: 0.7rem;
    }


    .nav__container .infos{
        gap: 0.2rem;
    }

    .nav__container .contact_us{
        width: 100px;
        height: 20px;
        border-radius: 20px;
        font-size: 0.6rem;
        padding: 2px;
    }
    nav p{
        font-size: 0.6rem;
    }


}




@media (max-width: 550px){
    nav{
        height: 4rem;
    }
    .nav__menu{
        gap: 0.8rem;
    }
    nav .nav__menu a{
        font-size: 0.6rem;
    }


    .nav__container .infos{
        gap: 0.18rem;
    }

    .nav__container .contact_us{
        width: 80px;
        height: 16px;
        border-radius: 10px;
        font-size: 0.5rem;
        padding: 1.5px;
    }
    nav p{
        font-size: 0.5rem;
    }
   





    footer{
        padding: 0.6rem 0.8rem;
    }
    footer h1{
        font-size: 0.8rem;
        padding-bottom: 0.6rem;
    }
    footer p, footer li{
        font-size: 0.5rem;
    }
    footer .article2{
        gap: 1rem;
    }
    footer .article2 ul{
        gap: 1rem;
    }
    footer .article2 ul li a i{
        font-size: 0.8rem;
    }
    footer .article3 li{
        margin-bottom: 0.3rem;
    }
}



@media (max-width: 500px){

   

}

@media (max-width: 450px){
    nav{
        height: 3.5rem;
    }
    .nav__menu{
        gap: 0.25rem;
    }
    nav .nav__menu a{
        font-size: 0.4rem;
    }


    .nav__container .infos{
        gap: 0.16rem;
    }

    .nav__container .contact_us{
        width: 70px;
        height: 14px;
        border-radius: 10px;
        font-size: 0.4rem;
        padding: 1.45px;
    }
    nav p{
        font-size: 0.4rem;
    }

   




        footer{
        padding: 0.6rem 0.8rem;
        }
        footer h1{
            font-size: 0.6rem;
            padding-bottom: 0.4rem;
        }
        footer p, footer li{
            font-size: 0.4rem;
        }
        footer .article2{
            gap: 0.8rem;
        }
        footer .article2 ul{
            gap: 0.8rem;
        }
        footer .article2 ul li a i{
            font-size: 0.5rem;
        }
        footer .article3 li{
            margin-bottom: 0.3rem;
        }
}
    
@media (max-width: 350px){
    nav{
        height: 3.5rem;
    }
    .nav__menu{
        gap: 0.35rem;
    }
    nav .nav__menu a{
        font-size: 0.4rem;
    }


    .nav__container .infos{
        gap: 0.16rem;
    }

    .nav__container .contact_us{
        width: 60px;
        height: 13px;
        border-radius: 10px;
        font-size: 0.37rem;
    }
    nav p{
        font-size: 0.35rem;
    }
    .nav__container .logo_container{
        display: none;
    }




   

   


        footer{
            padding: 0.6rem 0.1rem;
        }
        footer h1{
            font-size: 0.5rem;
            padding-bottom: 0.4rem;
        }
        footer p, footer li{
            font-size: 0.35rem;
        }
        footer .article2{
            gap: 0.5rem;
        }
        footer .article2 ul{
            gap: 0.5rem;
        }
        footer .article2 ul li a i{
            font-size: 0.4rem;
        }
        footer .article3 li{
            margin-bottom: 0.3rem;
        }

}