@font-face {
    font-family: Inter;
    font-display: swap;
    src: url(../font/Inter.ttf);
}

@font-face {
    font-family: InriaSans;
    font-display: swap;
    src: url(../font/inria-sans.ttf);
}

@font-face {
    font-family: Jost;
    font-display: swap;
    src: url(../font/Jost.ttf);
}

:root {
    --primary: #B88653;
    --secondary: #BCAD6E;
    --tertiary: #665B2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    scrollbar-width: none;
    scroll-behavior: smooth !important;
    text-decoration: none;
    font-family: Inter;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a,
button {
    transition: .20s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* classes */

.adjust {
    width: 100%;
    height: 100px;
    background: transparent;
}

.bg-white {
    background: white;
}

.color-black {
    color: black !important;
}

/* classes end */

/* navbar */

.custom-navbar {
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    /* background: black; */
    z-index: 999 !important;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

    .link {
        color: white;
        text-decoration: none;
        font-family: Inter;
        font-weight: 500;
        font-size: 12px;

        &:hover {
            color: var(--primary);
        }
    }

    .link.active {
        color: var(--primary) !important;
    }

    .navbar-toggler {
        border: none !important;
        box-shadow: none !important;
    }
}

/* navbar end */

/* footer */

.footer {
    width: 100%;
    background: black;
    padding: 10px 0 20px 0;

    .sub-header {
        color: white;
        font-size: 18px;
        font-weight: 300;
    }

    .custom-anchor {
        text-decoration: none;
        color: white;
        font-size: 14px;
        font-weight: 300;

        &:hover {
            color: var(--primary);
        }
    }

    .text {
        color: white;
        font-size: 14px;
        font-weight: 300;
    }

    .copyright {
        color: white;
        font-size: 14px;
        text-align: center;

        a {
            text-decoration: none;
            font-weight: 600;
            color: white;
        }
    }
}

/* footer end*/