@font-face {
    font-family: 'ProximaNova';
    src: url('/fonts/ProximaNova-Regular.otf');
}
@font-face {
    font-family: 'ProximaNova';
    src: url('/fonts/ProximaNova-Bold.otf');
    font-weight: bold;
}

body {
    margin: 0;
    background-color: #f9f9f9;
    font-family: ProximaNova, sans-serif;
}

.navigation {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 200;
}

.logo {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #ed1c24;
    width: auto;
}
#logo-svg {
    height: 60px;
}

/* Desktop navigation ------------------------------ */
#desktop-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.desktop-nav-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.desktop-nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 20px;
    height: 100%;
}

.desktop-nav-link {
    color: #0f202e;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.desktop-nav-link:hover {
    border-bottom: 6px solid #ed1c24;
    box-sizing: border-box;
}

/* Mobile navigation ------------------------------ */
#mobile-menu {
    display: none;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    z-index: 100;
}
.mobile-menu-show {
    display: flex!important;
}

.mobile-nav-list {
    margin-top: 150px;
    list-style: none;
    padding: 0;
}

.mobile-nav-item {
    margin: 30px 0;
}

.mobile-nav-link {
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 10px;
}

.mobile-nav-link:hover {
    border-bottom: 4px solid #ed1c24;
}

#menu-toggler-container {
    display: none;
    width: 100px;
    justify-content: center;
    align-items: center;
}

#menu-button {
    cursor: pointer;
}

#bar1, #bar2, #bar3 {
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: #0f202e;
    transition: 0.4s;
}

@media only screen and (max-width: 900px) {
    .navigation {
        justify-content: space-between;
    }

    #desktop-menu {
        display: none;
    }

    /*body {*/
    /*    overflow: hidden;*/
    /*}*/

    #menu-toggler-container {
        display: flex;
    }
}


/* Main banner ------------------------------ */
.banner {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('../images/rentokil-banner.webp');
    background-position: 50% 50%;
    background-size: cover;
}

.banner-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,rgba(0,10,21,.9),rgba(0,10,20,.25) 75%);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.welcome-title {
    position: relative;
    color: white;
    padding: 30px;
    border-top: #ed1c24 6px solid;
    backdrop-filter: blur(10px);
}

#title-1 {
    font-size: 50px;
}

#title-2 {
    font-size: 40px;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10vw;
    color: #4b5862;
    border-top: #ed1c24 6px solid;
    padding: 30px;
}

.copyright {
    max-width: 400px;
}

.inline-link {
    color: #4b5862;
    font-weight: bold;
}
.inline-link:hover {
    color: #7d9aaa;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
}

.footer-button-list {
    list-style: none;
    padding: 0;
}

.footer-button-list a {
    color: #4b5862;
    font-weight: bold;
    text-decoration: none;
}
.footer-button-list a:hover {
    color: #7d9aaa;
}