.contacts {
  color: white;
  background: linear-gradient(to bottom,#2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.contacts-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/contacts_1.png.webp);
  background-position: left;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.contacts-wrapper {
  max-width: 960px;
  width: 100%;
}

.contacts-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  text-align: center;
}

.contacts-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  >img {
    width: 44px;
  }
}

.contacts-text1 {
  font-size: 20px;
  font-weight: 400;
}

.contacts-text2 {
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  color: white;
}

.contacts-sm {
  display: flex;
  flex-direction: column;
  >div {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    >a {
      >img {
        margin: 15px;
        width: 50px;
      }
    }
  }
}



@media (max-width: 960px) {
  .contacts-title {
    font-size: 40px;
    background-size: contain;
    background-position: top;
  }

  .contacts-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contacts-phone,.contacts-sm {
    margin: 25px 20px;
  }
}