.contact-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  z-index: 0;
}

.contacts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.contacts-title-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts-title {
  margin-bottom: 0px;
  font-family: ITC-serif-gothic;
  font-size: 50px;
  color: rgb(239, 127, 64);
  user-select: none;
}


.socials-container, .socials-container2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.socials-container {
  margin-top: 30px;
  margin-bottom: 50px;
}

.socials-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  margin-right: 20px;
  margin-left: 20px;
  height: 270px;
  user-select: none;
}

.socials-img {
  width: 200px;
}

.socials-a:hover + .socials-name {
  color: rgb(250, 220, 196);
}

.socials-name {
  margin-bottom: 0px;
  margin-top: 20px;
  font-family: ITC-serif-gothic;
  font-size: 45px;
  color: rgb(239, 127, 64);
  user-select: none;

  transition: color .1s;
}

.contacts-line {
  width: 30%;
}


@media (width <= 1000px) {
  .contacts-container {
    padding-top: 140px;
  }

  .contacts-title {
    font-size: 65px;
  }

  .contacts-line {
    width: 45%;
  }


  .socials-img {
    width: 250px;
  }

  .socials-container {
    margin-top: 110px;
    margin-bottom: 90px;
  }

  .socials-name {
    font-size: 58px;
  }
}