* {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eeeeee;
}

a{
    text-decoration: none;
}


h1{
    margin: 0px;
}
.navbar{
    background-color: #1E2832;
    display: flex;
    justify-content: space-between;
    padding: 20px ;
    align-items: center;
    height: 130px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-link{
    font-size: 17px;
    padding-left: 15px;
    padding-right: 15px;
    color: #bec1c9;
    text-decoration: none;
}

.header-button {
    font-size: 20px;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid white;
    display: inline-block;
}

.home-title {
    display: flex;
    font-size: 40px;
    height: 700px;
    align-items: center;
    justify-content: space-between;
    padding-top: 130px;
}

.service-section {
    margin-top: 50px;
}

.home-title h1{
    padding-left: 50px;
}

.title-imm{
    width: 45%;
    height: 100%;
    overflow: hidden;
    background-image: url("images/interno-camera.jpg");
    background-size: cover;
    background-position: center center;
}

.chi-siamo-title{
    padding: 200px 0 60px 0;
    text-align: center;
    font-size: 50px;
}

h2{
    text-align: center;
    font-size: 35px;
}

.grid{
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.box{
    border: 1px solid #bec1c9;
    height: 400px;
    width: 350px;
    border-radius: 10px;
    box-shadow: -2px 4px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.box h4{
    font-size: 20px;
}

.big-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    border: 1.5px solid #1E2832;
    width: 80%;
    margin: 30px auto;
    border-radius: 20px;
}

.imm-condo{
    background-image: url("images/condominio-rosa.jpg");
    width: 50%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 30%;
    border-radius: 20px 0px 0px 20px;
}

.imm-stairs{
    background-image: url("images/stairs-village.jpg");
    width: 50%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 80%;
    border-radius: 0px 20px 20px 0px;
}

.big-box > div {
  width: 50%;
}

.text-big-box-d h2{
    text-align: end;
}

.text-big-box-d{
    text-align: end;
    padding: 50px;

}

.text-big-box-s h2{
    text-align: left;
}

.text-big-box-s{
    text-align: left;
    padding: 50px;
}

footer{
    text-align: center;
}