html {
    height: 100%;
}

body {
    font-size: 13px;
    color: #665F50;
    font-family: 'Roboto', sans-serif;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    font-weight: 300;
}

strong {
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
}

a,
a:hover {
    color: #81381c;
}

textarea {
    resize: vertical;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: uppercase;

    font-family: 'Roboto Condensed', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 span {
    font-size: 38px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-transform: uppercase;

    font-family: 'Roboto Condensed', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

    display: block;
    margin-top: 20px;
}

.block_title {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.block_text,
.form-view {
    padding: 0 60px;
}

h2 {
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
}

.animated-zone {
    opacity: 0;
}

/* Alert cookie */
#cookie_alert {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    min-height: 10px;
    padding: 20px;
    width: 100%;
    background: #000000;
    color: #ffffff;
    display: none;
    z-index: 30000;
    font-size: 11px;
    text-align: center;
}

#cookie_close {
    position: absolute;
    right: 25px;
    top: 5px;
    font-weight: 700;
    padding: 2px;
    cursor: pointer;
    width: 20px;
    font-size: 16px;
}

/* Go top */
@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-15px);
    }
}

#go-top {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 105px;
    cursor: pointer;
    z-index: 20;
    width: 50px;
    height: 50px;
}

#go-top:hover {
    animation: bounce 0.4s ease infinite alternate;
}

#go-top-content {
    background: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;

    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
}

#go-top span {
    color: #81381c;
    margin: auto;
}

.center {
    max-width: 1170px;
    margin: 0 auto;
}

.title_one {
    padding-bottom: 25px;
}

.title {
    padding-bottom: 15px;
}

.introduction {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 15px;
}

/* Bouton En Savoir Plus */
.bt-learn-more,
.bt-learn-more:visited {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
	display: inline-block;
    margin-top: 20px;
	padding: 8px 35px;
	background: #e2cfc8;
	color: #FFFFFF;
    border: 2px #e2cfc8 solid;
	text-align:center;
    font-weight: 600;
    font-size: 14px;
	border-radius: 25px;
    position: relative;
    z-index: 1;

    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.bt-learn-more:hover,
.bt-learn-more:focus,
.bt-learn-more:active {
    color: rgb(102, 95, 80);
    text-decoration: none;
}

.zone {
    position: relative;
    margin-top: 45px;
    margin-bottom: 45px;
}

.zone .full .col {
    padding-left: 0;
    padding-right: 0;
}

.summary {
    display: flex;
    flex-wrap: wrap;
}

.block_entete {
    position: relative;
    background-color: rgb(35, 12, 3);

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 460px;
    padding: 25px 20px;
}

.block_entete::before {
    content: ' ';
    width: 18%;
    height: 3px;
    background-color: #F9EEE8;
    position: absolute;
    left: 0;
    bottom: 15px;
    border-radius: 0 2px 2px 0;
    z-index: 1;
}

.block_entete::after {
    content: ' ';
    width: 18%;
    height: 3px;
    background-color: #F9EEE8;
    position: absolute;
    right: 0;
    top: 15px;
    border-radius: 2px 0 2px 0;
    z-index: 1;
}

.block_entete_background {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;

    background-size: cover;
    background-position: center center;
    opacity: 0.7;
}

.block_entete_content {
    z-index: 1;
    color: #FFFFFF;

    text-align: center;
}

.block_entete_content .title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 26px;
    font-weight: 400;
}

.block_entete_content .title span {
    display: block;
    margin-top: 20px;
    font-size: 38px;
    font-weight: 600;
}

.block_entete_content .introduction {
    font-size: 22px;
    font-weight: 300;
    margin-top: 40px;
}

.block_entete_content .bt-learn-more,
.block_entete_content .bt-learn-more:visited {
    font-size: 18px;
    font-weight: 400;

    background: #FFFFFF;
    color: rgb(102, 95, 80);
    border: 2px #FFFFFF solid;
}

.block_entete_content .bt-learn-more:hover {
    color: #FFFFFF;
}

#pre-footer {
    margin-bottom: 0;
}
#pre-footer .block_entete {
    background-color: #81381C;
    min-height: 300px;
    padding: 30px;
}
#pre-footer .block_entete_background {
    background-color: #FFFFFF;
    background-size: inherit;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 0.4;
}
#pre-footer .block_entete::before {
    content: none;
}
#pre-footer .block_entete::after {
    content: none;
}
#pre-footer .block_entete_content .title {
    font-size: 30px;
    text-transform: inherit;
    max-width: 780px;
}
#pre-footer .block_entete_content h2::after {
    content: none;
}

.text_img {
    min-height: 400px;
}
.text_img .col:first-child {
    padding-right: 0;
}
.text_img .col:last-child {
    padding-left: 0;
}
.text_img .col:first-child .block_text {
    border-radius: 25px 0 0 25px;
}
.text_img .col:last-child .block_text {
    border-radius: 0 25px 25px 0;
}
.text_img .block_text {
    height: 100%;
    background-color: #FBF5F1;
    padding: 50px 60px;
}
.text_img .block_media,
.text_img .block_media .visual_container {
    position: relative;
    width: 100%;
    height: 100%;
}
.text_img .block_media img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.text_img .block_media::before {
    content: ' ';
    width: 70%;
    height: 3px;
    background-color: #F9EEE8;
    position: absolute;
    left: 0;
    bottom: 15px;
    border-radius: 0 2px 2px 0;
    z-index: 1;
}

.text_img .block_media::after {
    content: ' ';
    width: 70%;
    height: 3px;
    background-color: #F9EEE8;
    position: absolute;
    right: 0;
    top: 15px;
    border-radius: 2px 0 2px 0;
    z-index: 1;
}

.text_img .block_text::after {
    content: ' ';
    background: url('../images/fond-chevalet.svg') right center no-repeat;
    background-size: auto 100%;
    width: 140px;
    height: 194px;
    position: absolute;
    z-index: 0;

    right: 0;
    bottom: 8px;
    opacity: 0.6;
}

.block_text {
    position: relative;
}

.block_text .title::after {
    content: ' ';
    width: 150px;
    height: 2px;
    background-color: #E2CFC8;
    position: absolute;
    left: 0;
    bottom: 0;
}

.block_text .body {
    position: relative;
    z-index: 1;
}

.block_text .bt-learn-more {
    position: relative;
    z-index: 1;
}

ul.flexnav {
    padding: 0;
}

.block_media {
    position: relative;
}

.breadcrumb {
    background-color: inherit;
    margin-bottom: 0;
}

.btn-animation {
    position: relative;
    border: 2px #e2cfc8 solid;
    background-color: #e2cfc8;
    z-index: 1;
    cursor: pointer;
    padding: .5rem 1rem;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    color: #ffffff;

    transition:         0.08s ease-in;
    -o-transition:      0.08s ease-in;
    -ms-transition:     0.08s ease-in;
    -moz-transition:    0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
}

.btn-animation:hover {
    color: rgb(102, 95, 80);
}

.bt-learn-more:before,
.btn-animation:before {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 20px;
    bottom: 0;
    top: 0;
    left: 50%;
    right: 50%;
    z-index: -1;
    transition: right 0.1s ease-in, left 0.1s ease-in, opacity 0.1s ease-in;
    opacity: 0;
}

.bt-learn-more:before {
    border-radius: 25px;
}

.block_entete_content .bt-learn-more:before {
    background: #e2cfc8;
}

.bt-learn-more:hover:before,
.btn-animation:hover:before {
    right: 0;
    left: 0;
    opacity: 1;
}

.form-control {
    border-width: 2px;
}

.visual_zoom {
    display: block;
    position: relative;
}

.visual_zoom img {
    -webkit-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
}

.visual_zoom:hover img {
    opacity: 0.7;
}

.required:after {
    content: " *";
    color: #81381c;
    font-weight: bold;
}

/* Corps de la page */
#header {
    position: relative;
    z-index: 10;
    background: #FFFFFF;
}

#header-content {
    width: 1170px;
    margin: 0 auto;
    padding: 10px 0;
}

#header-top {
    padding: 15px 15px 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-contact .bt-learn-more {
    margin-top: 0;
    padding: 4px 15px;
    font-weight: 400;
    font-size: 13px;

    color: rgb(102, 95, 80);
    border: 1px #e2cfc8 solid;
}

#header-contact .bt-learn-more:hover,
#header-contact .bt-learn-more:focus,
#header-contact .bt-learn-more:active {
    color: #FFFFFF;
    text-decoration: none;
}

#header-contact .bt-learn-more::before {
    background: #fff;
    right: 0;
    left: 0;
    opacity: 1;
}

#header-contact .bt-learn-more:hover::before {
    left: 50%;
    right: 50%;
    opacity: 0;
}

#header-bottom {
    width: 100%;
    margin-top: 15px;

    display: flex;
    justify-content: center;
}

#header-menu {
    text-align: right;
    display: flex;
    justify-content: space-between;
}

#header.sticky {
    position: fixed;
    width: 100%;

    -webkit-transition: height 300ms ease-in-out;
    -moz-transition: height 300ms ease-in-out;
    -o-transition: height 300ms ease-in-out;
    transition: height 300ms ease-in-out;
}

#header.sticky.scroll {
    display: flex;
    justify-content: space-between;

    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
}

#header.sticky.scroll #logo img {
    height: 35px;
}

#header.sticky.scroll #header-logo p {
    font-size: 0.9em;
}

#header.sticky.scroll #header-content {
    margin: 0 auto;
    padding: 10px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header.sticky.scroll #header-top {
    width: 150px;
    margin: 0;
    padding: 0;
}

#header.sticky.scroll #header-bottom {
    justify-content: flex-end;
    margin-top: 0;
}

#header.sticky.scroll #header-address,
#header.sticky.scroll #header-contact {
    display: none;
}

#header-logo {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#header-logo p {
    margin-bottom: 0;
    font-size: 1.1em;
}

#logo {
    display: inline-block;
}

#logo img {
    height: 50px;

    -webkit-transition: height 200ms ease-in-out;
    -moz-transition: height 200ms ease-in-out;
    -o-transition: height 200ms ease-in-out;
    transition: height 200ms ease-in-out;
}

#navigation {
    text-transform: capitalize;

    flex-direction: column;
    justify-content: center;
    display: flex;
    text-align: right;
    height: 100%;
}

#footer {
    background: #FBF5F1;
    font-size: 16px;

    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
}

#footer-content {
    width: 1170px;
    margin: 0 auto;
    padding: 60px 15px 30px 15px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    position: relative;
}

#footer-order {
    min-width: 150px;
}

#footer-order .btn {
    color: #fff;
    background-color: #E2CFC8;
    border-color: #E2CFC8;
    margin-top: 10px;

    font-weight: 600;
    font-size: 14px;

    border-radius: 20px;
    min-width: 150px;
}

#footer-order .btn:hover {
    color: #fff;
    background-color: #f1dfdb;
    border-color: #f1dfdb;
}

#footer-order .btn i {
 margin-right: 10px;
}

#footer-opening {
    text-align: right;
    min-width: 150px;
    font-family: "Roboto", sans-serif;
}

#footer-menu {
    text-align: center;
}

#footer-logo {
    text-align: center;
    font-family: "Roboto", sans-serif;
}

#logo_footer {
    display: inline-block;
    width: 80px;
    margin-top: 10px;
}

#footer p {
    margin-top: 15px;
}

#top-footer {
    align-items: center;
    justify-content: space-between;
    display: flex;
    height: 100%;
    width: 1170px;
    margin: 0 auto;
    padding: 30px 15px;

    font-size: 14px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    color: #665F50;
}

#footer-menu #top-footer a {
    color: #665F50;
}

#footer-menu #top-footer ul {
    margin: 0;
}

#footer-menu #top-footer ul li {
    display: inline-block;
    list-style: none;
    margin: 0;
}

#footer-menu #top-footer ul li:before {
    content: '- ';
    padding: 0 5px;
}

#footer-menu #top-footer ul li:first-child:before {
    display: none;
}

#sub-footer {
    border-top: 1px solid #eeeeee;
    padding: 10px 0;
    text-align: center;
    font-size: 0.8em;
    color: #665F50;
}

#sub-footer a {
    color: #665F50;
}

#sub-footer span {
    color: #B99081;
}

/* Animation */
.pulse {
    text-shadow: 0 0 0 #B99081;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulse {
    to {
        text-shadow: 0 0 45px rgba(55, 175, 112, 0);
    }
}

@-moz-keyframes pulse {
    to {
        text-shadow: 0 0 45px rgba(55, 175, 112, 0);
    }
}

@-ms-keyframes pulse {
    to {
        text-shadow: 0 0 45px rgba(55, 175, 112, 0);
    }
}

@keyframes pulse {
    to {
        text-shadow: 0 0 45px rgba(55, 175, 112, 0);
    }
}

@keyframes zoomInOut{
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.2,1.2);
    }
    100% {
        transform: scale(1,1);
    }
}

@media screen and (max-width: 1199px) {
    .center {
        width: 100%;
        padding: 0;
    }

    #header-content,
    #footer-content,
    #top-footer,
    #sub-footer
    {
        width: 100%;
    }

    .text_img .block_text {
        padding: 30px 30px;
    }
}

@media screen and (max-width:991px) {
    .text_img .block_media {
        background-color: #fbf5f1;
    }

    .text_img .block_media img {
        position: absolute;
        object-fit: contain;
        width: 100%;
    }

    .text_img .block_media::before {
        content: none;
    }

    .text_img .block_media::after {
        content: none;
    }
}

@media screen and (max-width: 767px) {
    #header-top {
        flex-wrap: wrap;
    }

    #header-menu {
        flex-basis: 100%;
        flex-direction: column;
        text-align: center;
    }

    #navigation {
        text-align: center;
    }

    .block_entete {
        min-height: 300px;
    }

    #navigation .flexnav li a {
        padding: 10px;
    }

    #footer-menu {
        flex-basis: 100%;
        text-align: center;
    }

    .block_title {
        margin-bottom: 10px;
    }

    #header-bottom {
        flex-direction: column;
    }

    #header-top {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 575px) {
    .title_one {
        padding-bottom: 10px;
    }

    .zone {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        padding: 40px 15px 20px 15px;
    }

    #logo_footer {
        display: inline-block;
    }

    #footer-logo {
        margin-top: 25px;
    }

    #footer-order {
        text-align: center;
        margin-bottom: 10px;
    }

    #footer-opening {
        margin-top: 20px;
        text-align: center;
    }

    #footer-menu .footerpages ul li::before {
        padding: 0 15px;
    }

    #pre-footer .block_entete_content .title {
        font-size: 26px;
        text-transform: inherit;
        max-width: 780px;
    }

    .block_entete_content .title {
        font-size: 24px;
    }

    .block_entete_content .title span {
        font-size: 32px;
    }

    .block_entete_content .introduction {
        font-size: 18px;
        margin-top: 20px;
    }

    .block_entete {
        min-height: 250px;
    }

    .block_text {
        margin-top: 30px;
    }

    #top-footer {
        flex-direction: column;
    }

    #top-footer #copyright {
        margin-bottom: 15px;
    }

    .text_img .col:first-child {
        padding-right: 15px;
    }

    .text_img .col:last-child {
        padding-left: 15px;
    }

    .text_img .col:first-child .block_text {
        border-radius: 25px 25px 0 0;
    }

    .text_img .col:last-child .block_text {
        margin-top: 0;
        border-radius: 0 0 25px 25px;
    }

    .text_img .block_media img {
        position: relative;
    }

    .block_text, .block_action {
        padding: 0;
    }

    #header-contact {
        display: none;
    }

    #logo img {
        height: 40px;
    }
}

/* Tarteaucitron */
#tarteaucitronRoot * {
    font-family: 'Roboto', sans-serif !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
    border: 3px solid #333;
    border-left: 3px solid #333;
    border-top: 3px solid #333;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
    font-size: 14px;
    font-family: 'Roboto', sans-serif !important;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
    padding: 8px;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog {
    background: #86b86a;
    border-radius: 2px;
    font-size: 15px;
    vertical-align: middle;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog {
    margin-bottom: 0;
    background: #fff;
    font-size: 15px;
    padding: 6px 10px;
    vertical-align: middle;
}

/* Edit mode */
#editMode {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#editMode a {
    background-color: #000000;
    border-radius: 0 0 8px 0;
    display: block;
    padding: 10px 12px;
    opacity: 0.6;
    font-size: 14px;
    color: #FFFFFF;
    z-index: 1000;
    text-decoration: none;
}

#editMode a:hover {
    opacity: 0.8;
    color: #FFFFFF;
    text-decoration: none;
}

.grecaptcha-badge {
    opacity: 0;
}

.error404 {
    text-align: center !important;
    padding: 50px !important;
}

/* PortfolioBundle */

#portfolio-index {

}

.folio-item {
    margin-bottom: 30px;
    display: flex;
    transition: opacity 0.5s ease-in-out;
}
.folio-image {
    display: flex;
    flex-direction: column;
}
.folio-image .picture {
    overflow: hidden;
}
.folio-image img {
    display: block;

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.overlay {
    display: flex;
    flex-grow: 1;
    padding: 6px;
    text-align: center;
    border: 2px solid #fbf5f1;

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.overlay-caption {
    width: 100%;
}
.overlay-content {
    height: 100%;
}
.folio-info {
    height: 100%;
    padding: 10px;
    transition: all 0.6s ease-in-out;
    color: rgb(102, 95, 80);
}
.folio-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}
.folio-title {
    display: block;
    padding: 12px 10px 6px;
    margin-top: 15px;
    text-align: center;
    position: relative;
}
.folio-title::before {
    background-color: #f9eee8;
    content: "";
    height: 2px;
    width: 120px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: background-color 0.4s ease-in-out;
}
.folio-link {
    display: flex;
}
.folio-link:hover {
    text-decoration: none;
}
.folio-link:hover img {
    transform: scale(1.1);
}
.folio-link:hover .folio-info {
    background-color: #f9eee8;
}
.folio-link:hover .folio-title::before {
    background-color: #ffffff;
}

#portfolio-header {
    background: #b99081;
    padding: 40px 0 0 0;
}

#portfolio-header-left {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#portfolio-header-right {
    padding-left: 2px;
    align-self: flex-end;
}

#portfolio-header .bt-learn-more,
#portfolio-header .bt-learn-more:visited {
    font-size: 15px;
    font-weight: 400;

    background: #FFFFFF;
    color: rgb(102, 95, 80);
    border: 2px #FFFFFF solid;
}

#portfolio-header .bt-learn-more:hover {
    color: #FFFFFF;
}

#portfolio-header .bt-learn-more:before {
    background: #e2cfc8;
}

.mini-center {
    max-width: 750px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

h1#client {
    padding-bottom: 20px;
}
#client-name {
    position: relative;
    display: block;
    padding-bottom: 20px;
    margin-top: 0;
    font-weight: 300;
}
#client-name::after {
    width: 100px;
    height: 2px;
    content: '';
    background: #f9eee8;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
#project-title {
    font-size: 26px;
    font-weight: 600;
}
#project-complement {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

#project-type,
#project-date {
    font-weight: 300;
    font-size: 18px;
}
#project-media .visual_container {
    margin-bottom: 30px;
}

#portfolio-index-filter {
    display: flex;
    justify-content: center;
    margin: 15px;
    width: 100%;
}

#portfolio-index-filter .btn-filter {
    font-weight: 600;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #e2cfc8;
    color: #665F50;
    border-radius: 20px;
    margin: 15px;
}

#portfolio-index-filter .btn-filter.active,
#portfolio-index-filter .btn-filter:hover {
    color: #FFFFFF;
    background-color: #f1dfdb;
    border-color: #f1dfdb;
}

@media screen and (max-width: 1755px) {
    #portfolio-index {
        width: 100%;
        padding: 0;
    }
}

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

}

@media screen and (max-width: 767px) {
    #portfolio-header {
        padding: 20px 0;
    }
}
