:root {
    --primary-color: #ff8c00;
    --black-color: #1D1d1d;
}
html {
    -webkit-text-size-adjust: 100%
}
body {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'regular', Arial, sans-serif;
}

footer {
    background-color: var(--black-color);
    color: white;
}

section {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.cursor-pointer {
    cursor: pointer;
}
.border-box {
    box-sizing: border-box;
}

.main-content-size {
    width: 70%;
}

.main-banner {
    position: relative;
    min-height: 85vh;
    height: fit-content;
    background: url("../images/img-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.menu {
    font-size: 1.5rem;
}

.menu li:hover {
    background-color: var(--primary-color);
}

ul.menu {
    list-style: none;
}

ul.menu a {
    display: block;
    color: white;
    text-decoration: none;
}

.section-black {
    background-color: var(--black-color);
    color: white;
}

.section-orange {
    background-color: var(--primary-color);
    color: white;
}
.icon-black-to-white {
    filter: invert(1);
}
.hr-title {
    height: 0px;
    width: 50px;
    border-top: 4px solid var(--primary-color)
}
.title1 {
    font-size: 3rem;
}
.title2 {
    font-size: 2rem;
}
.list-without-style {
    list-style: none;
    margin-block-start: 0;
    padding-inline-start: 0;
}

.primary-color {
    color: var(--primary-color);
}

#contact a {
    display: block;
    color: white;
    text-decoration: none;
}

.image-realisation {
    width: auto;
    max-height: 512px;
    max-width: 100%;
    height: auto;
}
