/*
sm	640px	@media (min-width: 640px) { ... }
md	768px	@media (min-width: 768px) { ... }
lg	1024px	@media (min-width: 1024px) { ... }
xl	1280px	@media (min-width: 1280px) { ... }
2xl	1536px	@media (min-width: 1536px) { ... }

max-sm	@media not all and (min-width: 640px) { ... }
max-md	@media not all and (min-width: 768px) { ... }
max-lg	@media not all and (min-width: 1024px) { ... }
max-xl	@media not all and (min-width: 1280px) { ... }
max-2xl	@media not all and (min-width: 1536px) { ... }
*/
:root {
    --theme-primary-color-1: #014198;
}

address {
    font-style: normal;
    line-height: 1.4;
}

.link-theme-color-1,
.hover\:text-theme-color-1:hover {
    color: var(--theme-primary-color-1);
}
.bg-theme-color-1,
.hover\:bg-theme-color-1:hover {
    background-color: var(--theme-primary-color-1);
}

.hover\:text-gray:hover {
    color: #ccc;
}

.logo {
    width: 180px;
}

.home-slide-1 {
    position: relative;
    max-width: 800px;
}

.home-slide-1 .slick-list, 
.home-slide-1 .slick-slide, 
.slick-track {
    height: 100%;
}

.page .blurb {
    line-height: 1.3;
}

.page footer {
    margin-top: 50px !important;
}

.object-position-top-right {
    object-position: top right;
}

.legal-info h4{
    margin:25px 0px 15px;
    line-height: normal;
    font-weight: 600;
    font-size: 1.22rem;
}

.legal-info p {
    margin-bottom: 30px;
}

.legal-info a {
    color: var(--theme-primary-color-1);
}

.legal-info ul {
    margin: 2em 0 1em;
    list-style: disc;
}
.legal-info ul li {
    margin-bottom: 1em;
    list-style-position: outside;
    margin-left: 1em;
}

.logo-services-list {
    margin-top:7px;
    opacity:0.7;
}

.pb-\[10px\] {
    padding-bottom: 10px;
}

header.sticky-header {
    background-color: var(--theme-primary-color-1);
}

@media screen and (min-width:640px) {

}

@media screen and (min-width:768px) {

    .md\:object-position-center {
        object-position: center;
    }
}

@media screen and (min-width:1024px) {
    .logo {
        width: 210px;
    }    
    .burger-icon {
        display: none;
    }
    .nav-menu {
        width:100%;
        margin-left: 3em;
    }
    .nav-menu ul.menu-child {
        width:max-content;
    }
    .home-slide-1 {
        max-width: 600px;
    }
    .lg\:h-full {
        height: 100%;
    }
    .lg\:bottom-\[336px\] {
        bottom: 336px
    }
    .lg\:top-23 {
        top: 23rem;
    }
    .lg\:text-heading-5 {
        font-size: 20px;
        line-height: 22px;
    }
    .lg\:text-heading-4 {
        font-size: 28px;
        line-height: 32px;
    }
    .lg\:text-heading-3 {
        font-size: 35px;
        line-height: 38px;
    }
}

@media screen and (min-width:1280px) {
    .logo {
        width: 250px;
    }
    .nav-menu {
        width:unset;
        margin-left: unset;
    }
    .sticky-header .logo {
        width: 170px;
    }
    .home-slide-1 {
        max-width: 800px;
    }
}