:root {
    scroll-behavior: unset;
}

html, body, footer, .btn, button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    cursor: url('../img/circle.svg') 25 25, auto !important;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

h2 {
    margin-bottom: 45px;
    font-size: 36px;
    font-weight: 200;
}

h3 {
    color: #f66e08;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

span {
    color: #f66e08;
}

.bg-grey {
    background-color:#f2f2f0;
}

.text-oran {
    color:#f66e08;
}

.btn-oran {
    background-color: #f66e08;
    color: #fff;
    padding: 4px 70px;
    transition: 0.5s;
    font-size: 20px;
    font-weight: 700;
}

.btn-oran:hover {
    background-color: #000;
    color: #fff;
}


/* NAVBAR */
nav {
    height: 120px;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
}

.menu li:hover svg {
    transition: 0.5s;
}

.menu li {
    padding: 8px 20px;
    /* cursor: pointer; */
    transition: 0.5s;
}

.menu li:hover{
    color: #f66e08;
}

.menu li:hover svg {
    fill: #f66e08;
}

.logo {
    height: 100%;
    padding: 10px;
}

/* CAROUSEL */
.home {
    padding-top: 120px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #f66e08;
}

.carousel-indicators .active {
    background-color: #f66e08;
}

.home h2 {
    color: #f66e08;
    font-size: 38px;
    line-height: 32px;
    font-weight: 300;
    display: inline-block;
}

.home .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;

    text-align: center;
    padding-top: 200px;
}

/* HOME */
.illu-propos {
    height: 220px;
    border-radius: 5px;
    background-color: #bebebe;
    margin: 0 5px 5px 0;
}

/* ABOUT */
.about {
    padding: 125px 0;
}

.about a {
    font-weight: 700;
}

.arrow {
    transition: 0.5s;
}

a:hover .arrow {
    transform: translateX(15px);
}

.about a:hover {
    color: #f66e08;
}


/* INSPIRATION */
.inspi {
    padding: 125px 0;
}

.img-insta {
    background-color: #bebebe;
    margin: 0 1.5px 3px 1.5px;
}


/* CONTACT */
.contact {
    padding: 125px 0;
}

@media (max-width:992px) {
    .contact-wrap {
        width: 200px;
    }
}

/* FOOTER */
footer {
    height: 50px;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width:575px) {

    footer {
        height: 70px;
    }

}

 

@media (max-width:1199px) {

    /* NAV */

    nav {
        height: 80px;
    }

    .logo {
        width: 300px;
    }

    /* CAROUSEL */

    .home {
        padding-top: 80px;
    }

    .home .bg {
        height: 500px;
    }

}

@media (max-width:767px) {

    .home .bg {
        height: auto;
    }

}