/* #region Global Styles */
:root {
    /*--dark-blue: #203864;*/
    --dark-blue: #324974;
    --light-blue: #F3F7FD;
    --header-height: 112px;
    --content-width: 1280px;
    --header-link-selected: #666;
    /*--footer-link-selected: #CCF;*/
    --footer-link-selected: #666;
    --site-font: 'Roboto', Sans-serif
}

body {
    margin: 0;
    border: 0;
    height: 100%;
    font-size: 16px;
    box-sizing: border-box;
    font-family: var(--site-font)
}

a {
    white-space: nowrap;
    text-decoration: none;
    color: var(--dark-blue)
}

.anchor {
    position: relative;
    visibility: hidden;
    top: calc(0px - var(--header-height));
}

h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    color: var(--dark-blue)
}

h2 {
    font-size: 32px;
    font-weight: 900
}

h3 {
    font-size: 24px;
    font-weight: 700
}

h4 {
    font-size: 18px;
    font-weight: 700
}

h5 {
    font-size: 12px;
    font-weight: 400;
}

p {
    margin: 0
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.d-flex {
    display: flex
}

.row {
    display: flex
}

.grid-container {
    display: grid;
}

.ml-48 {
    margin-left: 48px
}

.mr-24 {
    margin-right: 24px
}

.mr-48 {
    margin-right: 48px
}

.overflow-x {
    overflow: hidden
}

.layout {
    margin: auto;
    max-width: var(--content-width)
}
/* #endregion */

/* #region Responsive Styles */
@media only screen and (max-width: 920px) {
    .row {
        flex-direction: column;
    }

    .grid-container {
        grid-template-columns: none !important;
    }

    .nav-link {
        margin: 0 !important;
        border-bottom: 1px solid #66666630;
        padding: 12px 0 !important;
    }
}
/* #endregion */

/* #region Top Menu */
#header {
    top: 0;
    z-index: 4;
    padding: 20px 0;
    position: sticky;
    background-color: white;
    border-bottom: 4px solid var(--dark-blue)
}

#header-content {
    display: flex;
    padding: 0 20px;
    font-weight: 700;
    align-items: center;
    color: var(--dark-blue);
}

    #header-content img {
        margin: 4px 0;
        display: block;
    }

nav {
    margin: auto;
    flex-grow: 1;
    text-align: center;
}

.nav-menu {
    font-size: 20px;
    line-height: 20px;
    display: inline-flex;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.nav-link {
    padding: 0 20px;
    /*transition: 0.7s ease;*/
}


.header-link-active {
    color: var(--header-link-selected) !important
}

nav a:hover {
    color: var(--header-link-selected)
}

#callbox {
    display: flex;
}

    #callbox #phonebox {
        display: flex;
        align-items: center
    }

    #callbox i {
        font-size: 40px;
        margin-right: 10px;
        transform: scale(-1, 1)
    }

    #callbox #numbers {
        padding-left: 10px;
        border-left: 1px solid var(--dark-blue)
    }

    #callbox p {
        margin: 2px 0 4px 0
    }
/* #endregion */

/* #region Collapsed Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    display: block;
    margin: 5px auto;
    background-color: var(--dark-blue);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media(max-width:920px) {
    #callbox {
        display: none;
    }

    .hamburger {
        display: block;
    }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

    .nav-menu {
        gap: 0;
        left: -100%;
        width: 100%;
        position: fixed;
        transition: 0.3s;
        text-align: center;
        flex-direction: column;
        background-color: white;
        top: var(--header-height);
    }

    .nav-link {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }
}
/* #endregion */

/* #region Content */
#content {
    margin: 24px;
}
/* #endregion */

/* #region Summary */
#summary {
    margin-top: 24px;
    background-color: var(--dark-blue)
}

#summary-content {
    color: white;
    display: flex;
    padding: 24px;
    line-height: 26px;
    align-items: center;
}

    #summary-content p {
        margin-left: 32px;
    }
/* #endregion */

/* #region Footer */
#footer {
    padding: 10px 0;
    background-color: white;
    border-top: 4px solid var(--dark-blue)
}

#footer-content {
    font-size: 14px;
    font-weight: 500;
    padding-left: 24px;
    white-space: nowrap;
    color: var(--dark-blue);
    justify-content: space-between;
}

#footer p {
    padding: 8px 0;
}

#footer ul {
    padding: 8px 0;
    display: inline-flex;
}

#footer li {
    padding-right: 24px
}

#footer a {
    color: var(--dark-blue);
}

    #footer a:hover {
        color: var(--footer-link-selected) !important
    }

.footer-link-active {
    color: var(--footer-link-selected) !important
}
/* #endregion */

/* #region Whatsapp */
#whatsapp {
    z-index: 2;
    width: 50px;
    right: 24px;
    height: 50px;
    bottom: 40px;
    position: fixed;
    border-radius: 50%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: #25D366;
}

    #whatsapp a {
        font-size: 26px;
        color: white;
    }
/* #endregion */