@font-face {
    font-family: "Avenir";
    src: url("assets/fonts/Avenir-Roman-12.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Avenir";
    src: url("assets/fonts/Avenir-Medium-09.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Avenir";
    src: url("assets/fonts/Avenir-Heavy-05.ttf");
    font-weight: 600;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Avenir', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

a {
    color: #000000;
    text-decoration: none;
}

.construction {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
    position: relative;
}

.construction .dash1 {
    position: absolute;
    top: 0;
    right: 8%;
    height: 100%;
    width: 1px;
    background-color: #D9D9D9;
}

.construction .picture {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction .picture img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.construction .text {
    width: 50%;
    padding: 0 5rem;
    text-align: center;
}

.construction .text .logo {
    margin-bottom: 5rem;
    width: 300px;
}

.construction .text h1 {
    color: #000000;
    font-weight: 400;
    font-size: 3rem;
    margin: 0 0 3rem;
}

.construction .text .trait {
    height: 1px;
    width: 250%;
    transform: translateX(-650px);
    background-color: #D9D9D9;
    margin: 3.5rem;
}

.construction .text .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
}

.construction .text .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0.3rem;
}

.construction .text .info.address .mobile {
    display: none;
}

.construction .text .info span {
    font-weight: 400;
}

@media screen and (max-width: 992px) {
    body {
        height: auto;
        overflow: unset;
    }
    .construction {
        align-items: unset;
    }
    .construction .dash1 {
        display: none;
    }
    .construction .picture {
        width: 100%;
    }
    .construction .text {
        width: 100%;
        padding: 1rem;
    }
    .construction .text h1 {
        font-size: 2rem;
    }
    .construction .text .info.address .desktop {
        display: none;
    }
    .construction .text .info.address .mobile {
        display: block;
    }
}