@import url('fonts.css');

:root {
    --red-caa: #D71920;
    --blue-deep: #0A1B4A;
    --white: #FFFFFF;
    --gray-dark: #2B2B2B;
    --gray-light: #F3F3F3;
}

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

body{
    font-family: 'Poppins';
}

.header {
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.06);
}
.header .logo img{
    max-width: 100px;
   
}
.navbar .menu
{
    display: flex;
    gap: 10px;
    list-style: none;
}
.navbar .menu li a {
    text-decoration: none;
    color:var(--gray-dark);
    padding: 20px;
    transition: border-bottom ease-in-out 0.1s;
}
.navbar a:hover{
    border-bottom: solid 3px var(--red-caa);
}
.hero{
    height: 100vh;
    background-color: var(--gray-light);
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px;
}
.hero-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.hero-left .hero-title{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-title span span
{
    color: var(--red-caa);
    text-transform: uppercase;
}
.hero-left .hero-left-content {
    line-height: 3rem;
    border-top: solid 4px var(--red-caa);
    padding-top: 60px;
}
.hero-left-content a{
    text-decoration: none;
    margin-right: 20px;
    padding: 20px;
    border-radius: 10px;
}
.hero-buttons a:nth-child(1)
{
    background-color: var(--gray-dark);
    color: var(--white);
}
.hero-buttons a:nth-child(2)
{
    background-color: var(--blue-deep);
    color: var(--white);
}
.hero-buttons{
    margin-top: 25px;
}
.hero-left-content h1{
    font-size: 2.4rem;
}
.hero-left-content p{
    font-size: 1.1rem;
}
.hero-right img{
    max-width: 300px;
    border-radius: 20px;
    border: solid 7px rgb(255, 255, 255);
}
.services-section{
    margin-top: 20px;
}
.services-section .services-section-title{
    width: 100%;
    text-align: center;
}
.services-section .services{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,auto);
}
.services .services-1,.services-2{
    padding: 60px 20px;
}
.services-1 p,.services-2 p{
    margin-top: 30px;
}
.services-1 h4,.services-2 h4{
    text-transform: uppercase;
}
.services-1{
    background-color: var(--blue-deep);
    color: var(--white);
}
.services-2{
    background-color: var(--gray-dark);
    color: var(--white);
}
.agences-section{
    padding: 20px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,auto);
}
.agences-section-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.agences-section-title i{
    font-size: 5rem;
    color: var(--red-caa);
}
.agences-section-title h3{
    font-size: 3rem;
}
.agences-section-content ul{
    list-style: none;
}
.agences-section-content li{
    padding: 10px;
    background-color: var(--white);
    box-shadow: 2px 1px 1px 2px rgba(0, 0, 0, 0.06);
    margin: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.display-flex{
    display: flex;
}
@media (max-width:480px)
{

    .navbar .menu{
        top: 0;
        right: 0;
        position: fixed;
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--white);
        z-index: 100;
        width: 50%;
        margin-top: 100px;
        padding-left: 0px;
        display: none;
    }
    .navbar .menu li{
        margin-top: 20px;
    }
}
