.marq {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: white;
    padding: 10px 2rem;
    border-bottom: 1px solid #999;
    gap: var(--gap, 4rem);
    display: none;
}
.marq-item {
    display: flex;
    align-items: center;
    gap: var(--gap, 10px);
}
.marq-item > span {
    color: transparent;
    font-size: 14px;
    padding: 5px 7px;
    border: 2px solid var(--color-accent);
    /* padding: 5px; */
    /* border: 1px solid rebeccapurple; */
    border-radius: 5px;
    -webkit-text-stroke: 2px var(--color-primary);
}
.marq-item > p {
    font-family: "Inter", Sans;
    font-weight: 600;
    font-size: 14px;
    /* color: rgb(33, 31, 31); */
    color: var(--color-primary);
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.925);
    backdrop-filter: blur(2px);
    z-index: 99;
}
.openNav {
    display: none;
}
.logo {
    font-family: "Sans", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
}
header > .logo {
    z-index: 100;
}

.logo > img {
    width: 106px;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 2rem);
}
.navigation .active {
    position: relative;
    /* border: 2px solid var(--color-accent); */
    /* border-radius: 5px; */
}
.navigation .active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #111;
    position: absolute;
    bottom: -6px;
    left: 0;
}
.navigation > a, .nav-link {
    font-family: "Sans", sans-serif;
    font-weight: 550;
    text-transform: capitalize;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: all .1s ease;
    color: #111;
    display: flex;
    align-items: center;
    padding: 5px;
    gap: var(--gap, 10px);
}
#phone {
    background: transparent;
    padding: 8px 10px;
    /* color: #E3891E; */
    color: #111;
    border: 1px solid #111;
    border-radius: 2px;
    transition: all .6s ease;
}
#phone:hover {
    color: white;
}
#phone::after {
    content: '';
    width: 0;
    height: 100%;
    z-index: -99;
    /* padding: 10px; */
    border-radius: 2px;
    border: 1.5px solid #111;
    background-color: #111;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
    transition: all .6s ease;
    visibility: hidden;

}
#phone:hover::after {
    width: 100%;
    visibility: visible;
}
.card_row > button:hover {
    color: white;
}


.navigation > a::after, .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #111;
    position: absolute;
    bottom: -6px;
    right: 0;
    transition: all .6s ease;
}
.navigation > a:hover::after, .nav-link:hover::after{
    width: 100%;
    left: 0;
    right: auto;
}
.navigation > a:hover > .drop-down {
    display: block;
    visibility: visible;
}

/* Quick links style */
.quick-links {
    width: 100%;
    background: #33333307;
    padding: 2rem 2rem;
    margin-top: 5rem;
}

/* start of row (component) style */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.link-col {
    display: flex;
    flex-direction: column;
}
.link-col a {
    text-decoration: none;
    font-family: Sans;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 10px;
    transition: all .3s;
    position: relative;
    cursor: pointer;
}
.link-col a:hover {
    color: #989898;
}
.link-col > a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #111;
    position: absolute;
    bottom: -4px;
    right: 0;
    transition: all .6s ease;
}
.link-col > a:hover::after, .nav-link:hover::after{
    width: 100%;
    left: 0;
    right: auto;
}

/* Footer style */
footer {
    width: 100%;
    background: #33333307;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 2rem;
    flex-direction: column;
    gap: 2em;
}

footer > br {
    width: 90%;
    height: 1px;
    color: black;
}

.footer-cont {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 5rem;
}
.footer-row {
    width: 100%;
}
.footer-row:nth-child(2) {
    display: flex;
}
.footer-col {
    flex: 30%;
    display: grid;
    grid-template-columns: 1fr;
    height: fit-content;
}

.footer-col > h2 {
    font-family: "Inter", "Sans";
    color: #333;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.socials {
    margin-top: 20px;
}

.socials > a {
    text-decoration: none;
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 16px;
}

.footer-row > p {
    font-family: "Sans";
    color: #333;
    font-size: 14px;
    margin-top: 30px;
}

.footer-col > a {
    font-family: "Inter", Sans;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 10px;
    transition: all .5s ease;
}

.footer-col > a:hover {
    margin-left: 10px;
}

.copyright {
    font-family: "Sans";
    font-size: 14px;
    color: #333;
}

@media (max-width: 568px) {
    .marq {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 2rem;
        gap: var(--gap, 2rem);
        flex-direction: column;
    }
    .marq-item {
        display: flex;
    }
    .marq-item > p {
        text-wrap: nowrap;
    }
    header {
        width: 100%;
        position: relative;
        padding: 15px;
        /* top: 2rem; */
        background: white;
    }
    .logo > img {
        width: 120px;
    }
    .sideNav {
        position: relative;
        /* position: fixed; */
        height: 100vh;
        min-height: 100%;
        top: 0;
        left: 0;
        width: 10%;
        display: flex;
        visibility: hidden;
        align-items: flex-start;
        justify-content: flex-start;
        background: white;
        flex-direction: column;
        z-index: -99;
        padding: 4rem 2rem;
        transition: .6s ease;
    }
    #sideNav {
        position: absolute;
        height: 100vh;
        min-height: 100%;
        bottom: 0%;
    }
    .drop-down {
        position: relative;
        display: none;
    }
    #sideNav.navClose {
        display: block;
        color: #111;
        position: absolute;
    }
    .openNav#openBtn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: #111;
        font-size: 1.5rem;
    }
    .quick-links {
        padding: 1rem;
        margin-top: 2rem;
    }
    .row {
        flex-direction: column;
        gap: var(--gap, 1rem);
        align-items: flex-start;
    }
    footer {
        padding: 2rem 1rem;
    }
    .footer-cont {
        grid-template-columns: 1fr;
    }
    .footer-row:nth-child(2) {
        flex-wrap: wrap;
    }
    .footer-col {
        flex: 50%;
        width: 50%;
    }
}