header {
    background-color: var(--color-white);
    #logo {
        width: 40px;
        height: 40px;
    }
    .navbar-brand {
        font-size: 36px;
        font-weight: 600;
        color: var(--color-lightblue);
    }
    .navbar-brand:hover {
        color: var(--color-lightblue);
    }
    .nav-item {
        margin-left: 8px;
    }
    .nav-link {
        font-size: 20px;
        color: var(--color-darkblue);
        padding: 8px;
        padding-left: 16px !important;
        padding-right: 16px !important;
        border-radius: 0px;
        transition: all 0.4s ease-in-out;
        position: relative;
    }
    .nav-link:after {
        content: "";
        background-color: var(--color-lightblue);
        width: calc(100% - 32px);
        position: absolute;
        left:15px;
        bottom:4px;
    }
    .nav-item:hover .nav-link {
        color: var(--color-lightblue);
    }
}

.nav-link {
    display: inline-block;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-lightblue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        flex-grow: 0;
    }
}

section#headerimage {
    overflow: hidden;
}
section#headerimage,
section#headerimage img.headerimage {
    object-fit: cover;
    height: 90vh;
    width: 100%;
    @media (min-width: 1200px) {
        object-position: center top;
        height: 70vh;
    }
}
section#headerimage:before {
    content: " ";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
}

.headerlist {
    list-style-type: none;
}

.headerlist svg {
    width: 24px;
    height: 24px;
}

.cta-button {
    text-decoration: none;
    display: inline-flex;
    background-color: var(--color-lightbluebg);
    color: var(--color-darkblue);
    border: 1px solid var(--color-darkblue);
    text-align: center;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    //box-shadow: rgba(8, 125, 91, 0.1) 0px 4px 8px;
    border-radius: 100px;
    padding: 12px 26px;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cta-button + .cta-button {
    color: var(--color-white);
    background-color: var(--color-darkblue);
    border: 1px solid var(--color-darkblue);
}



#headerimage .cta-button {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#headerimage .cta-button:hover {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.chat-wrapper {
    color: black;
    outline: 6px solid rgb(6 102 153 / 0.5);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/*
.chat-wrapper {
    z-index: 1;
    background-color: white;
    width: calc(393px + 12px);
    max-width: 100%;
    padding: 8px;
    height: calc(852px);
    height: calc(752px);
    border-radius: 28px;
    border: 6px solid black;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    transition: width 0.4s ease-in-out;
}
.chat-wrapper .chat-wrapper-inner {
    padding: 24px;
    padding-left: 48px;
    padding-top: 0px;
    margin-top: 0;
    float: right;
}
.chat-wrapper div.person, .chat-wrapper div.text img {
    display: inline-block;
    padding: 8px;
    border-radius: 12px;
    max-width: 100%;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.chat-wrapper div.person, .chat-wrapper div.text img {
    display: inline-block;
    padding: 8px;
    border-radius: 12px;
    max-width: 100%;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.chat-wrapper .person img {
    width: 42px;
    height: 42px;
    border-radius: 32px;
    left: -46px;
}

 */