body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100vh;
}
.contacts{
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.contacts .container-inside{
    padding-top: 60px;
}
.contacts-block{
    display: flex;
    margin-bottom: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    background-color: #ffffff;
}
.contacts-block-data{
    width: 40%;
    padding: 37px 60px;
}
.contacts-block-data_name{
    font-size: 20px;
    opacity: .7;
    line-height: 1.1;
    margin-bottom: 14px;
}
.contacts-block-data_address{
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.1;
    color: #380a4d;
}
.contacts-block-data_address::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 68px;
    background-color: #380a4d;
}
.contacts-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.contacts-block-data_item{
    font-size: 18px;
    line-height: 1.5;
}
.map{
    width: 60%;
    height: 100%;
    min-height: 400px;
}

/* адаптирование под экраны */
@media screen and (max-width: 1155px) {
  .contacts-block-data{
    width: 55%;
  }
  .map{
    width: 45%;
  }
}
@media screen and (max-width: 850px) {
  .contacts-block-data,
  .map{
    width: 100%;
  }
  .contacts-block{
    display: block;
  }
}
@media screen and (max-width: 500px) {
    .contacts-block-data{
        padding: 30px 10px;
    }
}
