@import url("variables.d1e778e79b5e.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: var(--footer-dark-blue);
    padding: 56px 0 16px;
    color: var(--very-light-gray);
    font-size: 1rem;
}

footer img {
    margin-bottom: 32px;
}

.block1, .block2, .block3 {
    margin-bottom: 10px;
}

.block1 h2, .block2 h2, .block3 h2, .block4 h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--very-light-gray);
}

.company-decs p {
    text-align: justify;
}

.company-contact {
    list-style: none;
    padding: 0;
}

.company-contact li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.company-contact li p {
    margin-bottom: 0;
}

.company-contact li:last-child {
    gap: 23px;
}

.company-contact li:last-child i {
    align-self: flex-start;
    padding-top: 5px;
}

.quick-links {
    padding-left: 18px;
}

.quick-links li {
    margin-bottom: 1.2rem;
}

.block4 p {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.copy-right {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 30px !important;
}

.copy-right a {
    text-decoration: none;
}

.footer-btn {
    padding: 10px 50px;
    background-color: var(--primary-orange);
    border-radius: 50px;
    color: var(--very-light-gray);
    border: 2px solid var(--primary-orange);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.footer-tagline {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline p {
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-hours {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-hours-title {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.footer-hours-closed {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

.quick-links a, .company-contact a {
    text-decoration: none;
    color: var(--very-light-gray);
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--primary-orange);
}

.name-sec-1, .name-sec-2, .name-sec-3 {
    font-weight: bold;
}

.name-sec-1 {
    color: var(--primary-orange);
}

.name-sec-2 {
    color: var(--primary-blue);
}

.name-sec-3 {
    color: var(--primary-green);
}


/* Media Query */

@media screen and (min-width:992px) {
    .block2,.block3 {
        padding-left: 3rem !important;
    }
}

@media screen and (min-width:1200px) {
    
    .block2 {
        padding-left: 2rem !important;
    }

    .block3 {
        padding-left: 0 !important;
    }
}