@font-face {
    font-family: Inclusive_Sans;
    src: url(../fonts/InclusiveSans-Regular.ttf);
}

* {
    font-family: Inclusive_Sans;
    scroll-behavior: smooth;
}


/* COLORS */

.text-default {
    color: #323030;
}

.bg-clair {
    background-color: #ecd9be;
}

.text-clair {
    color: #ecd9be;
}

.text-orange-custom {
    color: #F18D50;
}

.text-orange-basic {
    color: #ED6807;
}

.border-orange-basic {
    border-color: #ED6807;
}

.bg-orange-basic {
    background-color: #ED6807;
}

.bg-icon {
    background-color: #ffdaaf;
}


/* ANIMATIONS */

.hover-text-orange-basic:hover {
    color: #ED6807;
    transition: 0.2s;
}

.hover-btn-landing:hover {
    background-color: #ED6807;
    color: white;
    border: none;
    transition: 0.5s;
}

.hover-link-mail:hover {
    color: #ED6807;
    text-decoration: underline;
}

.hover-btn-contact:hover {
    color:#ED6807;
    background-color: transparent;
    border-color: #ED6807;
    border: solid 1px;
}