﻿.new-top-fold {
    background: url(/homepage/assets/images/hero-bg-1.jpg);
    background-size: cover;
}

    .new-top-fold h1 {
        color: #151718;
        font-size: 65px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .new-top-fold .new-hp-button {
        background: #edd741;
        padding: 18px 39px;
        color: #fff;
        font-weight: 700;
        font-size: 20px;
        margin-right: 20px;
    }

    .new-top-fold .new-hp-link {
        font-weight: 700;
        font-size: 20px;
        color: #000;
    }

.new-headline {
    color: #151718;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

    .new-headline::after {
        content: "";
        display: block;
        width: 100%;
        height: 5px;
        background-color: #edd741;
        position: absolute;
        bottom: -5px;
        left: 0;
    }


/*CATEGORY SELECTION*/
#category-selection {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

    #category-selection li {
        flex-grow: 1;
        padding: 18px 0;
        text-align: center;
        cursor: pointer;
        border: 2px solid transparent;
        background-color: #5b5b5b;
        color: white;
        box-sizing: border-box;
    }

        #category-selection li.active {
            background-color: white;
            color: black;
            border: 2px solid black;
        }

    #category-selection h4 {
        margin: 0;
        font-size: 16px;
    }

    #category-selection li:hover {
        opacity: 0.8;
    }




/*GUARANTEE SECTION*/
.guarantee-sec h1 {
    color: #151718;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.guarantee-sec p {
    color: #151718;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}



.new-about-sec {
    background: url(/homepage/assets/images/about-bg.jpg);
    background-size: cover;
    padding: 60px 0;
    margin-top: 60px;
}

    .new-about-sec h2 {
        color: #151718;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .new-about-sec p {
        color: #151718;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }


.card-header:first-child {
    border-radius: 0;
}

@media screen and (max-width: 768px) {
    #category-selection {
        display: none;
    }

    .new-top-fold h1 {
        color: #151718;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .new-top-fold img {
        margin-top: 70px;
    }
}

@media screen and (min-width: 769px) {
    #mob-cat-select {
        display: none;
    }
}