.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

input,
textarea {
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    color: #1a2e45;
    display: flex;
    font-size: 18px;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #1a2e45;
    opacity: 0.9;
}

button {
    border: none;
    padding: 14px;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: #1a2e45;
    margin-top: 30px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgb(46, 71, 99);
}

/* helpers*/
.btn {
    padding: 14px;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: #1a2e45;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn i {
    margin-right: 5px;
}

.btn:hover {
    background-color: rgb(46, 71, 99);
}

.col4 {
    width: 24%;
}

.col12 {
    width: 100%;
}

.formRow {
    display: flex;
    justify-content: space-between;
}

.formTitle {
    margin-bottom: 30px;
    text-align: center;
}

.formTitle h2 {
    display: block !important;
}

/* header */
header {
/*    height: 100vh;
    width: 100%;*/

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    position: relative;
}


header video{
    position: fixed;
    z-index: -1;

    width: 100%;
    height: auto;
}

@media (min-aspect-ratio: 16/9) {
    header video{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    header video{
        width: auto;
        height: 100vh;
    }
}

header .caption {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: end;
    height: 94vh;
    width: 89%;
}

.caption img {
    width: 58vh;
}

.caption h1 {
    color: #fff;
}

.caption h1 span {
    display: block;
    text-align: center;
}

.caption h1 span:first-child {
    font-weight: 600;
    font-size: 4rem;
    margin-bottom: 1.5%;
}

.caption h1 span:last-child {
    color: #e68f1a;
    font-size: 2.7rem;
    margin-bottom: 1%;
}

/* Section*/
.section-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;

    background: #e68f1a;
    overflow: hidden;
}

.section-full div.bloc,
.section div.bloc {
    width: 40%;
}

.section-full .content-container,
.section .content-container {
    padding: 0 50px;
}

.section-full img,
.section img {
    border: 10px solid #fff;
}

.section-full img {
    width: 90%;
}

.section-full .content,
.section .content {
    padding-left: 94px;
}

.section-full .content p,
.section-full .title h2,
.formTitle h2 {
    color: #fff;
}

.section-full .title,
.section .title {
    margin-bottom: 30px;
}

.section-full .title h2,
.section .title h2,
.formTitle h2 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 8px;

    display: flex;
    align-items: center;
    font-weight: 400;
}

.section-full .title h2 span,
.section .title h2 span {
    padding: 10px;
    border-right: 1px solid #fff;
    margin-right: 20px;
}

.section-full .content p,
.section .content p {
    line-height: 1.7em;
    font-size: 20px;
    font-weight: 100;
    text-align: justify;
}

.section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Parallax */
    background-image: url("../img/parallax.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}

.section .container {
    width: 80%;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(26, 46, 69, 0.9);
}

.section .title h2 span {
    border-color: #e68f1a;
}

.section img {
    width: 100%;
}

.section .content p,
.section .title h2 {
    color: #e68f1a;
}

.section .content ul li {
    color: #e68f1a;
    padding: 10px 0;
    font-size: 20px;
}

.section .content ul li i {
    margin-right: 5px;
}

.section .content .btn {
    background-color: #e68f1a;
}

.section .content .btn:hover {
    background-color: #bd7619;
}

#copyright {
    color: #fff;
    margin-top: 30px;
}

#imgOver {
    width: 90%;
    height: 49vh;
}

#renovation .content-container{
    width: 50%;
    padding: 0;
}
/* Nav */
.active {
    background-color: #1a2e45 !important;
    color: #fff !important;
}

nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

nav ul {
    display: flex;
    margin-right: 30px;
    justify-content: flex-end;
}

nav ul li {
    display: flex;
    font-size: 34px;
    font-weight: lighter;
    transition: 0.7s all;
}

nav ul li a {
    text-decoration: none;
    padding: 30px 40px;
    transition: 0.7s all;
    width: 100%;
}

/* Transparent */
.nav-transparent {
    background: none;
}

.nav-transparent ul li {
    border-right: 5px solid #fff;
}

.nav-transparent ul li:hover {
    background: #fff;
}

.nav-transparent ul li a {
    color: #fff;
}

.nav-transparent ul li a:hover {
    color: #e68f1a !important;
}

/* Solid */
.nav-solid {
    background: #fff;
}
.nav-solid label {
    color: #e68f1a;
}
.nav-solid ul li {
    border-right: 1px solid #e68f1a;
}

.nav-solid ul li:hover {
    background: #e68f1a;
}

.nav-solid ul li a {
    color: #e68f1a;
}

.nav-solid ul li a:hover {
    color: #fff !important;
}

label, #toggle {
    display: none;
}

@media (max-width: 1600px) {
    header .caption {
        height: 100vh;
    }
    .caption img {
        margin-bottom: 20px;
    }

    .caption h1 span:first-child {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .caption h1 span:last-child {
        font-size: 2rem;
        margin-bottom: 25px;

    }

    nav ul li {
        font-size: 22px;
        font-weight: 100;
    }

    nav ul li a {
        padding: 24px 32px;
    }

    .nav-transparent ul li {
        border-right: 4px solid #fff;
    }

    .section-full .content p, .section .content p {
        line-height: 1.3em;

    }

    .section-full .title h2, .section .title h2, .formTitle h2 {
        font-size: 38px;
        letter-spacing: 4px;
    }
}

@media (max-width: 1200px) {

    #renovation .content-container{
        width: 80%;
    }
    #imgOver {
        height: 70vh;
    }
    .caption img {
        margin-bottom: 30px;
    }

    .caption h1 span:first-child {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .caption h1 span:last-child {
        font-size: 32px;
        margin-bottom: 35px;

    }

    nav ul li {
        font-size: 20px;
        font-weight: 100;
    }

    nav ul li a {
        padding: 20px 30px;
    }

    .nav-transparent ul li {
        border-right: 3px solid #fff;
    }
}

@media (min-width: 900px) {
    .nav-solid ul li a {
        padding: 10px;
    }
    .nav-solid ul li {
        font-size: 18px;
    }
}

@media (max-width: 1030px) {
    .active{
        background: none!important;
    }
    .nav-solid {
        background-color: rgba(30, 30, 30, 0.9);
    }
    .nav-solid label {
        color: white!important;
    }

    .nav-solid label {
        color: #e68f1a;
    }

    .nav-solid ul li:hover {
        background: #fff;
    }
    
    .nav-solid ul li a {
        color: #fff;
    }
    
    .nav-solid ul li a:hover {
        color: #e68f1a !important;
    }


    nav{
        right: auto;
    }
    .invisible {
        display: none;
    }
    .visible {
        display: flex;
    }
    label{
        height: 50px;
        width: 50px;
        font-size: 40px;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

    #toggle:checked + .invisible{
        display: flex;
    }

    header .caption{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #formContact{
        margin: 0px 50px;
        width: 70%;
    }
    .formRow{
        flex-direction: column;
    }
    .caption img {
        margin-bottom: 30px;
    }

    .caption h1 span:first-child {
        margin-bottom: 10px;
    }

    .bloc {
        margin-bottom: 30px;
    }

    .btn {
        font-size: 16px;
    }


    .col4 {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        margin-right: 0px;
    }

    .nav-transparent {
        background: rgba(30, 30, 30, 0.9);
    }
    .nav-transparent ul li {
        border: none;
    }

    .nav-solid ul li {
        border: none;
    }

    .section .container {
        flex-direction: column;
    }

    .section-full {
        flex-direction: column-reverse;
    }

    .section div.bloc,
    .section-full div.bloc {
        width: 80%;
    }

    .section .content,
    .section-full .content {
        padding-left: 0px;
    }

    .section-full .title h2,
    .section .title h2,
    .formTitle h2 {
        font-size: 25px;
        letter-spacing: 4px;
    }

    .section-full .content p,
    .section .content p {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .caption img {
        width: 40vh;
    }
    #imgOver {
        height: 25vh;
    }
}


#thanks {
    display: flex;
    color: #fff;
    background-color: rgba(30, 30, 30, 0.9);
    height: 25vh;
    width: 75vh;
    align-items: center;
    justify-content: center;
}
#thanks div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#thanks div h1 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12%;
}
#thanks div p {
    font-size: 20px;
    margin-bottom: 10%;
}
#thanks div a {
    font-size: 18px;
    color: #e68f1a;
}