main {
    padding-top: 100px;
    padding-left: 20%;
    padding-right: 20%;
    margin-bottom: 100px;
}

.menu {
    position: fixed;
    z-index: 999;
}

.menu.cate-show {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.title-section {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-section p:first-child {
    font-size: 25px;
    font-weight: bolder;
}

.title-section p:last-child {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.seperate {
    width: 75%;
}

.btn-more {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background-color: rgb(36, 124, 255);
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    color: white;
}

.btn-more img {
    height: 25px;
    width: 25px;
    filter: brightness(0) invert(1);
}

.btn-more:hover {
    background-color: rgb(0, 102, 255);
}

.contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: max-content;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.contact a {
    width: 100%;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact a:hover {
    transform: scale(1.1);
}

.contact a .f-icon {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.contact a .z-icon {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.contact .call-black-icon {
    background-color: #ef4444;
    border-radius: 50%;
}

.contact a .call-icon {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.contact .arrow-up {
    width: 100%;
    height: 50px;
    border: none;
    background-color: #3b82f6;
    border-radius: 50%;
    transition: transform, opacity 0.3s ease;
    opacity: 0;
}

.contact .arrow-up.show {
    opacity: 1;
}

.contact button:hover {
    transform: scale(1.1);
}

.contact .arrow-up img {
    height: 25px;
    width: 25px;
    filter: brightness(0) invert(1);
}

.nav-link {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: start;
    margin-bottom: 30px;
}

.nav-link img {
    height: 25px;
    width: 25px;
    margin-right: 3px;
}

.nav-link a {
    margin-top: 3px;
    margin-right: 3px;
    cursor: pointer;
}

.nav-link a:hover {
    color: rgb(255, 74, 61);
}

.nav-link .slash-icon {
    height: 15px;
    width: 15px;
    margin-top: 5px;
}

.filter-service {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.filter-service a {
    padding: 10px 20px 10px 20px;
    background-color: rgb(230, 230, 230);
    border-radius: 10px;
    cursor: pointer;
}

.filter-service a:hover {
    background-color: rgb(182, 182, 182);
}

.filter-brand {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.filter-brand a {
    width: 110px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.filter-brand a:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.filter-brand img {
    object-fit: cover;
    height: 50px;
    width: 100%;
    border-radius: 10px;
}

@media (min-width: 1200px) {
    main {
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media (min-width: 976px) and (max-width: 1200px) {
    main {
        padding-left: 8%;
        padding-right: 8%;
    }
}

@media (min-width: 776px) and (max-width: 976px) {
    main {
        padding-left: 2%;
        padding-right: 2%;
    }

    .contact {
        position: fixed;

        bottom: 5px;
        right: 5px;
    }
}

@media (min-width: 576px) and (max-width: 776px) {
    main {
        padding-left: 2%;
        padding-right: 2%;
    }

    .menu {
        display: none;
    }

    .menu.cate-show {
        display: none;
    }

    .contact {
        position: fixed;

        bottom: 5px;
        right: 5px;
    }
}

@media (min-width: 0) and (max-width: 576px) {
    main {
        padding-left: 2%;
        padding-right: 2%;
    }

    .menu {
        display: none;
    }

    .menu.cate-show {
        display: none;
    }

    .contact {
        position: fixed;

        bottom: 0;
        right: 0;
    }

    .nav-link {
        justify-content: center;
    }
}
