@font-face {
    font-family: Regular;
    src: url('../font/ArgentumSans-Light.ttf');
}

@font-face {
    font-family: Headline;
    src: url('../font/ArgentumSans-SemiBold.ttf');
}

@font-face {
    font-family: SubHeadline;
    src: url('../font/ArgentumSans-Medium.ttf');
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Regular;
    margin: auto;
    overflow-x: hidden;
}

h1 {
    font-family: Headline;
    font-size: 46px;
}

h5 {
    font-family: SubHeadline;
}

.navbar-desktop {
    padding: 0px;
    display: flex;
    position: fixed;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    align-content: center;
    justify-content: center;
}

.navbar-desktop .active .menu {
    color: #FF9D0E;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: white;
}

.navbar-desktop img {
    width: auto;
    height: 75px;
}

a:hover {
    text-decoration: none;
}

.navbar-desktop .menu {
    cursor: pointer;
    font-weight: bold;
    color: #263C86;
    margin: 0px 15px;
    font-size: 18px;
}

.navbar-desktop .menu:hover {
    color: #FF9D0E;
}

.btn-primary {
    margin-top: 25px;
    border: 1px solid #FF9D0E;
    background-color: transparent;
    color: #FF9D0E;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #FF9D0E;
}

b {
    color: #FF9D0E;
}

#mobile-navbar {
    display: none;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    .navbar-desktop img {
        height: 50px;
    }

    .navbar-desktop .menu {
        font-size: 1rem;
    }

    .navbar-desktop a {
        font-size: 1rem;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    .navbar-desktop {
        display: none;
    }

    #mobile-navbar {
        display: block;
    }
}