@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    overflow: auto;
}

.navbar {
    padding-bottom: 0;
    background-color: white;
}

.title-nav {
    font-weight: 600;
}

.btn-mutualan {
    border: 1px solid black;
    border-radius: 0px;
}

.container-nav {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 1.2rem;
    padding-top: 10px;
    padding-left: 11rem;
    padding-right: 11rem;

}

.my-nav {
    flex: 1;
}

.header {
    margin-top: 6.5rem;
}

.section-title p {
    margin: 0;
    margin: -15px 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.header #header-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.header #header-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    background: rgba(143, 143, 143, 0.1);
    margin: 0 3px 10px 3px;
    /* transition: all 0.3s ease-in-out; */
    border-radius: 4px;
}

.header #header-flters li:hover,
.header #header-flters li.filter-active {
    background: #FE481C;
    font-weight: 600;
    color: #fff;
}

.header #header-flters li:last-child {
    margin-right: 0;
}

/* .header .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
} */

/* .header .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
} */




.header .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.322);
}

.header .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.header .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.header .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.header .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.header .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.header .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.header .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.header .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

@media (max-width:1400px){
    /* body{
        overflow: auto;
    } */
    .container-nav {
        padding-left: 5rem;
        margin-left: 0rem;
        padding-right: 5rem;
    }
}

@media (max-width: 800px) {

    :root{
        font-size: 12px;
    }

    .container-nav{
        margin-top: 1rem;
        margin-left: 0rem;
        padding-right: 0rem;

        padding: 1rem;
    }
    

}

@media screen and (max-width:400px) {

    :root{
        font-size: 11px;
    }


    .container-nav{
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
    }

    
}