* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

/* banner section */

.banner-section {
    background-image: url('https://www.thedetailingmafia.com/assets/images/our-specials/locate-our-outlets/locate-our-outlets.jpg');
    height: 350px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    align-content: center;
}

.banner-section h2 {
    color: white;
    font-size: 50px;
    font-weight: 800;
}

.banner-section h2 span {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    color: transparent;
    display: block;
}
@media(max-width:768px){
    .banner-section h2 span {
        margin-top: 25px;
}
}

@media(max-width:500px) {
    .banner-section {
        background: url('https://www.thedetailingmafia.com/assets/images/our-specials/locate-our-outlets/locate-our-outlets.jpg'), rgba(0, 0, 0, 0.564);
        background-blend-mode: multiply;
        background-position-x: -653px !important;
    }

    .banner-section h2 {
        text-align: center;
    }
}

/* banner section close */


/* outles design */


.wrapper {
    padding: 50px 10px;
}

.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
}

.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    box-shadow: none !important;
}

.tab-link {
    margin: 0 1%;
    list-style: none;
    padding: 10px 10px;
    color: #aaa;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0.0);
    letter-spacing: 1px;
    font-size: 22px;
}

.tab-link:hover {
    color: #999;
    border-color: #999;
}

.tab-link.active {
    color: #333;
    border-color: #333;
}

.tab-link.active {
    color: #ff0000;
    border-color: #ff0000;
}


.content-wrapper {
    padding: 40px 40px;
}

.tab-content {
    display: none;
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
      box-shadow: none !important;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}



.project {
    position: relative;
        padding: 0px !important;
    
}

.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #f6f6f6;
    background: rgb(41 41 41 / 47%);
    opacity: 1;
    transition: all 350ms ease-in;
    outline-offset: -4px;
    transition: transform 0.2s;
      border-radius: 10px;

}

.project-info .project-info-title {
    font-size: 25px;
    margin: 0 0 0.5em;
    text-align: center;
    text-transform: uppercase;
    color:white;
}

.project-info-button {
    padding: 0.5em 1em;
    color: inherit;
    text-decoration: none;
    border: 1px solid #f6f6f6;
    border-radius: 3px;
    transition: all 350ms;
}

.project-info-button:hover {
    color: #595959;
    background: #f6f6f6;
    border-color: #f6f6f6;
}

.project-image img {
    display: block;
    width: 100%;
    height: 200px;
    transition: all 350ms ease-in;
    outline-offset: -4px;
    border: 3px solid #ff0000;
    transition: transform 0.2s;
        border-radius: 10px;
}
@media(max-width:600px){
    .tabs {
    display: block;
    }
    .content-wrapper {
    padding: 40px 20px;
}
}
/* outles design close */