#contacts-block .block-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--white-color);
  margin-bottom: 60px;
}

#contacts-block .contact-wrapper {
  display: flex;
  justify-content: space-between;
}

#contacts-block .contact-wrapper .right-side {
  width: 100%;
  padding-right: calc((100% - 1170px) / 2);
  padding-left: 90px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--text-color2);
  border-radius: 5px 0px 0px 0px;
}

#contacts-block .phones__holder,
#contacts-block .email-holder {
  margin-bottom: 30px;
  display: flex;
  position: relative;
}

#contacts-block .left {
  margin-right: 20px;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

#contacts-block .left img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#contacts-block .right {
  width: 80%;
}

#contacts-block .subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--grey-color2);
  margin-bottom: 5px;
}

#contacts-block .phone__item {
  display: block;
  width: fit-content;
}

#contacts-block .phone__item:not(:last-child) {
  margin-bottom: 5px;
}

#contacts-block .phone__item,
#contacts-block .phone__item p,
#contacts-block .phone-name *,
#contacts-block .email-holder a {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--white-color);
  transition: 0.3s;
  margin-bottom: 0px;
}

#contacts-block .phones__holder a:hover .phone__item,
#contacts-block .email-holder a:hover {
  color: var(--main-color);
}

#contacts-block .contact-wrapper .left-side {
  width: 57%;
  padding-left: calc((100% - 1170px) / 2);
  padding-right: 140px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--white-color);
  position: relative;
}

#contacts-block .soc__holder {
  display: flex;
  position: relative;
  gap: 10px;
  flex-wrap: wrap;
}

#contacts-block .soc__holder .soc__item {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  /* margin-right: 10px; */
  /* border: 1px solid var(--grey-color2);
  border-radius: 30px;
  padding: 1px 15px 1px 1px;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #31373E; */
}

#contacts-block .soc__holder .soc__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease-in;
}

#contacts-block .soc__holder .soc__item:hover img {
  transform: scale(1.05);
  /* background: var(--grey-color2);
  border: 1px solid var(--grey-color2); */
}

/* #contacts-block .soc__holder .soc__item:first-child .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--main-color2);
  border-radius: 50%;
  margin-right: 10px;
}

#contacts-block .soc__holder .soc__item:last-child .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  /* background: #25D366; */
/* border-radius: 50%;
margin-right: 10px;
} */

#contacts-block .form-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: var(--text-color2);
  margin-bottom: 20px;
}

#contacts-block .form-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  margin-bottom: 35px;
}

.form-top {
  display: flex;
  gap: 10px;
}

#contacts-block .form-top .form__input {
  flex: 1;
}

#contacts-block .form__input input {
  padding: 15px 25px;
}

#contacts-block .form__input input:hover {
  border: 1px solid var(--main-color2);
}

#contacts-block .form__input input:hover::placeholder {
  color: var(--main-color2);
}

#contacts-block .form__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;

  color: var(--text-color);
}

#contacts-block .form__input input.error {
  border: 1px solid red !important;
}

#contacts-block .form__input input.error::placeholder {
  color: red !important;
}


.form-center {
  margin-top: 10px;
}

.form-bot {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}

.form-bot .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  width: 58%;
}

.form-bot .privacy {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-color2);
  text-decoration: underline;
}

.form-bot .privacy:hover {
  color: var(--main-color);
}

#contacts-block .form-v2 .submit_btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--white-color);
  width: max-content;
  padding: 15px 40px;
}

#contacts-block .form-v2 .submit_btn:hover {
  color: var(--main-color);
}

#contacts-block .form-wrapper {
  position: relative;
}

@media (max-width: 1200px) {
  #contacts-block .contact-wrapper .right-side {
    padding: 15px;
  }

  #contacts-block .contact-wrapper .left-side {
    padding: 15px;
  }
}

@media (max-width: 960px) {

  #contacts-block .form-title,
  #contacts-block .block-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  #contacts-block .contact-wrapper {
    flex-direction: column;
  }

  #contacts-block .contact-wrapper .right-side,
  #contacts-block .contact-wrapper .left-side {
    width: 100%;
  }
}

@media (max-width: 776px) {
  #contacts-block .contact-wrapper {
    flex-direction: column;
  }

  #contacts-block .contact-wrapper .right-side {
    width: 100%;
  }

  #contacts-block .contact-wrapper .right-side {
    width: 100%;
  }
}

@media (max-width: 498px) {
  #contacts-block .form-title {
    font-size: 24px;
  }

  #contacts-block .form-top {
    display: flex;
    flex-direction: column;
  }

  #contacts-block .form-bot span {
    width: 100%;
  }

  #contacts-block .left {
    width: 35px;
    height: 35px;
  }

  #contacts-block .left img {
    width: 15px;
    height: 15px;
  }

  #contacts-block .phone-name,
  #contacts-block .phone-name p,
  #contacts-block .email-holder a {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #contacts-block .form-bot {
    flex-direction: column-reverse;
    gap: 10px;
  }

  #contacts-block .form-bot .privacy-holder {
    width: 100%;
    text-align: center;
  }

  #contacts-block .form-bot span {
    text-align: center;
  }
}