.container {
    height:98svh;
}

.grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    margin:auto;
    max-width:80%;
    height:100%;
}

@media screen and (max-width:1024px) {
    .grid {
        grid-template-columns: auto;
        max-width:95%;
    }
}

.logo {
    padding:3rem;
    margin:auto;
}

.logo img {
    width: 100%;
    max-width: 480px;
}

@media screen and (max-width:768px) {
    .logo img {
    width: 100%;
    max-width: 640px; }
}

.texte {
    padding: 6rem 3rem 3rem 3rem;
    text-align:left;
    color:#fff;
    margin:auto;
}

@media screen and (max-width:1024px) {
    .texte {
        padding: 3rem;
    }
}

.titre {
    font-size:3rem;
    text-transform:uppercase;
    font-family:'Barlow', sans-serif;
    border-bottom: 2px solid #fff;
    padding-bottom:2rem;
    margin-bottom: 2rem;
}

.tel, .mail, .pin, .user {
    display: grid;
    grid-template-columns: 30px auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.45rem;
    padding: 1rem 0;
}

.tel a, .mail a {
    text-decoration: none !important;
    color: #fff;
}

.tel img, .mail img, .pin img, .user img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pin p, .user p {
    margin: 0;
}

.tel:hover img, .pin:hover img, .mail:hover img, .user:hover img {
    transform: rotate(360deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}