:root {
    --primary: #d62b1f;
    --dark: #0b0b0b;
    --muted: #6c757d;
}

* {
    box-sizing: border-box
}

body {
    font-family: time new 'Times New Roman', Times, serif;
    background: #f8f9fa;
    color: #222
}

.logo-img {
    object-fit: contain;
    animation: logoFloat 5s ease-in-out infinite;
    border-radius: 8px
}


/* @keyframes logoFloat {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px) rotate(-2deg)
    }
    100% {
        transform: translateY(0)
    } */


}
.top-info-bar {
    font-size: 14px
}
.top-info-bar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--muted);
    border: 1px solid #eee;
    transition: all .25s
}
.top-info-bar .social-icon:hover {
    transform: translateY(-4px);
    color: var(--primary);
    border-color: rgba(214, 43, 31, .2)
}
.navbar {
    padding: 0.8rem 0
}
.navbar .nav-link {
    color: #333;
    padding: .5rem 1rem
}
.get-quote-btn {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 40px;
    padding: .5rem 1rem;
    color: #fff
}
.hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff
}