.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index:999;
}

.navbar {
    width: 100%;
}

.top-header {
    width: 100%;
    border-bottom: 1px solid #c4c4c4;
    background-color: #f5f5f5;
    padding:10px 0px 10px 0px;
    box-shadow: 0 1px 15px #00000050;
}

.header-list {
    margin: auto;
    width: max-content;
}

.header-item {
    display: inline-block;
    font-size:1.4em;
}

    .header-item a {
        text-decoration: none;
        color: black;
        transition-duration:0.1s;
    }

        .header-item a:hover {
            text-decoration: none;
            color: #FF714B;
            text-decoration:underline;
        }

.divider {
    display: inline;
    padding-left:6px;
    padding-right:6px;
    user-select:none;
}

.sub-header {
    margin: 60px 0px 5px 0px;
}
.contact-button {
    text-align: center;
    font-size: 1.6em;
    padding: 15px;
    border-radius: 10px;
    background-color: #ff5123;
    font-weight:bold;
    color:white !important;
    text-decoration:none;
    transition-duration:0.2s;
}
    .contact-button:hover {
        text-align: center;
        font-size: 1.6em;
        padding: 15px;
        color: white !important;
        background-color: #d3340a;
    }
.contact-info p {
    line-height: 3px;
    font-size: 1.6em;
    text-align:center;
}
.contact-info p:first-child{
    font-size:1.4em;
}

.header-grid {
    margin: auto;
    display: grid;
    width: 60%;
    height:100px;
    padding: 10px 0px 10px 0px;
    grid-template-columns: 25% 50% 25%;
    place-items: center;
}
    .header-grid a {
        display: inline-block;
    }
.company-logo {
    display: block;
    width: 100%;
    height: 90px;
    transition-duration: .2s;
    padding-top: 5px;
    padding-bottom: 5px;

}
    .company-logo:hover {
        width: 100%;
        height: 100px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

.footer {
    width: 100%;
    height: 200px;
    margin-top: 50px;
    margin-bottom: 100px;
    background-color: #e25530f0;
    line-height:5px;
}
.footer-container {
    margin: 0 auto;
    width:80%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    text-align:center;
    color:white !important;
}
.footer-container div{
    margin-top:30px;
}
.footer-link {
    color: white !important;
}