:root {
    --primary: #000000;
    --secondary: #5A5A5A;
    --white: #ffffff;
    --grey: #8B8B8B;
    --light-grey: #ACACAC;
    scroll-behavior: smooth;
}

body {
    color: var(--primary);
    margin: 0px;
    padding-left: clamp(1rem, 5vw, 8rem);
    padding-right: clamp(1rem, 5vw, 8rem);
}

nav {
    display: flex;
    height: 10vh;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
}









#home {
    height: 90vh;
    align-items: center;
    justify-content: center;
}

#expertise {
    height: 90vh;
    align-items: center;
    justify-content: center;
}

#why-quikfix {
    height: 90vh;
    align-items: center;
    justify-content: center;
}

#about {
    height: 90vh;
    align-items: center;
    justify-content: center;
}









.flex {display: flex;}
.row {flex-direction: row;}
.col {flex-direction: column;}
.text-secondary {color: var(--secondary)}
.comfortaa {font-family: Comfortaa;}
.montserrat {font-family: Montserrat;}
.open-sans {font-family: 'Open Sans';}


.nav-link {
    font-size: 1.5rem;
    font-family: Montserrat;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.2rem;
    margin: 0px 4rem 0px 4rem;
}
.nav-link:hover { text-decoration: underline; }

.nav-logo {
    margin-right: auto;
}

.btn {
    font-size: clamp(0.8rem, 2vh, 2rem);
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-decoration: none;
    border-radius: 1rem;
    padding: 1rem;
}
.btn-primary {
    color: var(--white);
    background-color: var(--primary);
}
.btn-secondary {
    color: var(--white);
    background-color: var(--secondary);
    border: 2px var(--secondary) solid;
}

.divider {
    background-color: var(--grey);
    width: 10vw;
    height: 2px;
    border-radius: 8px;
    margin: 4rem;
}

.heading-primary {
    font-weight: 200;
    font-size: clamp(1rem, 8vh, 8rem);
    margin: 2rem
}
.heading-secondary {
    color: var(--grey);
    font-weight: 200;
    font-size: clamp(1rem, 6vh, 6rem);
    margin: 1rem;
}
.heading-tertiary {
    color: var(--light-grey);
    font-weight: 200;
    font-size: clamp(1rem, 4vh, 4rem);
    margin: 0px;
}

.image-primary {
    width: 50vw;
}

.card-product {
    height: 16vw;
    width: 12vw;
    border-radius: 36px;
    border: 0.2rem solid var(--secondary);
    justify-content: center;
    align-items: center;
    margin: 2rem;
    cursor: pointer;
}
.card-product > p {
    font-size: 2rem;
    font-family: Comfortaa;
    margin: 0px
}


#why-quikfix-cards-section {
    width: 80vw;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
}

.card-features {
    display: flex;
    align-items: center;
    width: 25vw;
    height: 10vh;
    border-radius: 64px;
    border: 4px solid var(--secondary);
    padding: 1rem;
    margin: 1rem
}

.card-features-img {
    width: 5vw;
    height: 5vw;
    object-fit: scale-down;
    margin: 0px 1rem 0px 1rem;
}

.card-features-text {
    color: var(--secondary);
    font-weight: 500;
    font-family: "Open Sans";
    font-size: clamp(1rem, 10vh, 2rem);
}

#about > p {
    font-size: 2rem;
    font-weight: 500;
    font-family: Open Sans;
    word-spacing: 1rem;
    line-height: 3rem;
    margin: 0.5rem;
}