
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.main-container{
    width: 100%;
    height: 200vh;
    display: flex;
    margin-top: 100px;
    margin-bottom: 50px;
}
.main-container .carte{
    width: 40%;
    height: 50%;
    background: url('../images/hlc-representation.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
  
}

.main-container .container{
    width: 50%;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.main-container .container .title{
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: roboto;
    color: #494949;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.main-container .container .contact-ico{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-container .container .contacts-container{
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: roboto;
}
.container .contacts-container h3{
    color: #abcf47;
    font-size: 1.3rem;
}
.contacts-container div{
    width: 80%;
    height: 5%;
    border: 2px solid #494949;
    margin-bottom: 10px;
    display: flex;
}
.contacts-container div p{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #494949;
    margin-top: 0;    
    border: 1px solid black;
}
.contacts-container div p:nth-child(1){
    border-right: 2px solid #494949;
}
.contacts-container div p span{
    margin: 10px;
}
.contacts-container div p a{
    color: #494949;
}
