body {
    font-family: 'Bodoni', arial;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000;
}

.container {
    width: 90%;
    max-width: 1110px;
    margin: 0 auto;
}

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}
.header.scrolled {
    background: #000;
}

.header_content {
    display: flex;
    align-items: center;
}

.logo {
    margin-top: 15px;
    margin-right: 150px;
    margin-bottom: 10px;
}

.menu {
    margin-top: 20px;
    display: flex;
    align-items: center;
    list-style: none;
}

.menu_content {
    display: flex;
    list-style: none;
    padding: 0;
}

.menu_list {
    transition: all 0.3s ease-in-out;   
}

.menu_link {
    margin-right: 40px;
    text-decoration: none;
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.menu_link:hover {
    color: #C00204;
}

.portfolio {
    background-color: #000;
    display: block;
    text-align: center;
}

.portfolio_title {
    font-family: 'Bodoni';
    font-weight: 400;
    font-size: 38px;
    line-height: 60px;
    text-transform: uppercase;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 30px;
    margin: 0;
}

.photo {
	float: left;
    width: 22.972973%;
	padding: 0px;
    margin: 10px;
	box-sizing: border-box;
}
.photo img {
    display: block;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
.photo a:hover {
    opacity: 0.5;
}
.photo a {
    display: block;
    position: relative;
}
.photo a:after {
    content: '';
    background: transparent url(../img/icons/eye-icon.png) no-repeat center;
    width: 52px;
    height: 35px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    visibility: hidden;
}
.photo:hover> a:after {
    visibility: visible;
}

#gallery {
    margin-bottom: 80px;
}

#gallery:after { 
   content: '';
   display: block; 
   height: 0; 
   clear: both;
}

.portfolio_btn {
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 700;
    padding: 10px 21px;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    border: 2px solid #AA0507;
    border-radius: 23px;
    text-align: center;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
}

.portfolio_btn:hover {
    background-color: #AA0507;
    border: 1px solid #AA0507;
    color: #fff;
    transform: translateY(-3px);
}

.portfolio_content {
    margin-bottom: 120px;
}

.footer {
    background-color: #000;
}

.footer_content {
    height: 50px;
    align-items: center;
    overflow: hidden;  
}

.copyright {
    font-family: 'Raleway';
    font-size: 14px;
    color: #565657;
    display: block;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.mobile-menu {
    border: none;
    background: none;
    padding: 4px;
    cursor: pointer;
    display: none;
}

.adapt-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 1500;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-200px);
    transition: all .5s ease-in-out;
}

.adapt-menu.is-active {
    visibility: visible;
    opacity: 100%;
    transform: translateY(0px);
}

.adapt-menu_close {
    border: none;
    background: none;
    display: block;
    margin-top: 30px;
    margin-left: 86%;
    margin-bottom: 120px;
}

.adapt-menu_item {
    display: block;
    text-decoration: none;
    font-family: 'Bodoni';
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    margin-left: 40px;
    margin-bottom: 28px;
}

.adapt-menu_item:hover {
    color: #C00204;
}

@media screen and (max-width: 1113px) {
    .container {
        max-width: 900px;
        width: 90%;
    }

    .photo {
        margin: 5px;
    }

}


@media screen and (max-width: 930px) {
    .container {
        max-width: 800px;
        width: 90%;
    }

    .logo {
        margin-right: 50px;
    }

}

@media screen and (max-width: 800px) {
    .container {
        max-width: 700px;
        width: 90%;
    }

    .logo {
        margin-right: 0 auto;
    }

    .menu {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin-right: 0;
        margin-left: auto;
    }

}

@media screen and (max-width: 550px) {
    .container {
        width: 90%;
    }

    /* .portfolio_title {
        font-size: 36px;
    } */

    .gallery_m {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .photo {
        float: left;
        width: 65%;
        padding: 0px;
        margin: 10px;
        box-sizing: border-box;
        flex: 0 0 auto;
    }

    .portfolio_title {
        font-size: 30px;
        line-height: 45px;
        padding-top: 120px;
    }

}


@media screen and (max-width: 375px) {
    .container {
        width: 90%;
    }

    .photo {
        width: 75%;
    }

    /* .portfolio_title {
        font-size: 30px;
        line-height: 45px;
        padding-top: 120px;
    } */

}
