.modal-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .modal-container {
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    max-height: 80vh;
    height: 90%;
    overflow: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    justify-content: center;
  }
  .modal__button-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
  }
.modal__button-close {
    width: 41px;
    height: 41px;
    font-size: 25px;
    border-radius: 100%;
    color:black;
    background-color: #fff;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: 50%;
    border: 4px solid #faa500;
    right: 5px;
    top: 5px;
    z-index: 10;
}
.modal__button-close:hover,
.modal__button-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-discription {
    display: flex;
    flex-direction: column;
}
.modal-contacts{
    padding: 22px 20px;
    background-color: #fff;
    background-size: cover;
    border-radius: 0 10px 10px 0;
    z-index: 1;
    max-width: 500px;
    max-height: 400px;
    margin-bottom: 20px;
}
.modal-contacts .contacts__container {
    display: flex;
    flex-direction: column;
  }
.contacts__header{
    font-family: RoadRadio, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 31px;
}
.contacts__header span{
    color: #faa500;
}
.contacts__adress-block ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 15px;
    column-gap: 10px;
    margin-bottom: 15px;
}

.contacts__adress-block li{
    font-family: lato, sans-serif;
    font-style: normal;
    color: #333;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
}
.contacts__adress-block li:before{
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #faa500;
    background-image: url(../img/adress-icon.svg);
    background-position: 50%;
    background-size: 13px 19px;
    background-repeat: no-repeat;
    margin-right: 28px;
}

.contacts__worktime {
    display: flex;
    align-items: center;
    font-family: lato, sans-serif;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #333;
}

.contacts__worktime:before {
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-position: 50%;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 28px;
    background-color: #faa500;
    background-image: url(../img/worktime-icon.svg);
}

.header__address {
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .modal-container {
        width: 90%;
    }
}

@media screen and (max-width: 650px) {
    .contacts__header{
        font-size: 30px;
    }
}