@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* ================== WEB BUTTONS ====================*/

.primary-button {
    padding: 15px 40px;
    text-decoration: none !important;
    position: relative;
    background-color: var(--main-bg-color);
    color: var(--blue-one-color);
    text-align: center;
    text-indent: 2px;
    font-weight: 700; 
    transition: .2s;
    text-transform: uppercase;
}

.primary-button:hover {
    transition: .2s;
    padding: 15px 40px;
    text-decoration: none !important;
    position: relative;
    background-color: var(--blue-tree-color);
    color: var(--main-bg-color);
    text-align: center;
    text-indent: 2px;
    font-weight: 700;
}

.second-button{
    font-size: 18px;
    color: var(--text-color);
    font-weight: 700;
}

/* ================== CATEGORIES FRONT-PAGES  ====================*/

.catagory_area {

    width: 100%;
}

.card-categories {
    max-width: 70%;
    margin: 0 auto;
}

.catagory_area .single_catagory {

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 186px 0;
    background-size: 100% 100%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.overlay2 {
    position: relative;
    z-index: 0;
}

.overlay2::before {
    position: absolute;
    content: "";
    background-color: var(--black-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}
.catagory_area .single_catagory {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 700px;
    padding: 186px 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .catagory_area .single_catagory {
        padding: 136px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .catagory_area .single_catagory {
        padding: 136px 20px;
    }
}

.catagory_area .single_catagory h3 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.catagory_area .single_catagory p {
    font-size: 16px;
    line-height: 28px;
    color: #fff;

}

.brand-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    padding: 40px 0;
    width: 100%;
}

.brand-name h3 {
    padding: 20px 0;
    text-align: center;
    font-size: 200px;
    font-weight: 700;
    -webkit-text-stroke: 2px var(--main-bg-color); /* width and color */
    color: transparent;
    opacity: .4;
}

@media (max-width:1000px){

    .brand-name {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 20vh;
        padding: 40px 0;
        width: 100%;
    }

    .brand-name h3 {
        text-align: center;
        font-size: 400%;
        font-weight: 700;
        /* 1 pixel black shadow to left, top, right and bottom */
        -webkit-text-stroke: .5px var(--main-bg-color); /* width and color */
        color: transparent;
        opacity: .7;
    }
}



.header__cart .float-cart{
    
}


