.c-contact__bottom {
  display: flex;
  padding: 32px 0 0 0;
  gap: 16px;
}
.c-contact__bottom-right {
  width: 32%;
}
.c-contact__panel{
  background: #fff;
  border-radius: 43px;
  padding: 40px;
}
.c-contact__heading{
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
}
.c-contact__sub{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
}
.c-contact__input{
  height: 64px;
  border: 0;
  border-radius: 20px;
  background: #f3f5f8;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 600;
  color: black;
}
.c-contact__input::placeholder{
  color: #181616;
  opacity: 0.32;
}
.c-contact__input:focus{
  box-shadow: 0 0 0 .2rem rgba(235,69,34,.15);
  outline: none;
}
.c-contact__check{
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange-accent);
}
.c-contact__check:checked{
  background-color: var(--orange-accent);
  border-color: var(--orange-accent);
}
.c-contact__agree{
  font-size: 14px;
  line-height: 18px;
  color: #515151;
  max-width: 620px;
  padding-top: 3px;
}
.c-contact__btn{
  background: #181616;
  color: #fff;
  border-radius: 999px;
  padding: 17px 24px;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-contact__btn:hover{
  background: #0f0f0f;
  color: #fff;
}
.c-contact__btn:disabled{
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}
.c-contact__card{
  border-radius: 40px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(180deg, #318741, #316d87);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-contact__photo{
  width: 157px;
  height: 164px;
  border-radius: 26px;
  background: url("../assets/manager.webp") center/cover no-repeat;
}
.c-contact__name{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.c-contact__role{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  opacity: .8;
  max-width: 280px;
}
.c-contact__tg{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.c-contact__tg:hover{
  text-decoration: underline;
  color: #fff;
}
.c-contact__tg-icon{
  width: 17px;
  height: 17px;
  background: url("../assets/custom-icons/icon-telegram.svg") center/cover no-repeat;
}
.c-contact__max-icon{
  width: 17px;
  height: 17px;
  background: url("../assets/custom-icons/icon-max.svg") center/cover no-repeat;
}
.c-contact__details{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-contact__link{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.c-contact__link:hover{
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .c-contact__bottom {
    flex-direction: column;
  }
  .c-contact__bottom-right {
    width: 100%;
  }
  .c-contact__card {
    flex-direction: row;
  }
  .c-contact__person {
    display: flex;
    width: 60%;
    gap: 20px;
    flex-direction: row;
  }
  .c-contact__details {
    width: auto;
  }
  .c-contact__panel{
    padding: 28px; border-radius: 32px;
  }
  .c-contact__heading{
    font-size: 32px;
  }
  .c-contact__title{
    font-size: 32px;
  }
}
@media (max-width: 768px){
  .c-contact__panel {
    padding: 20px;
  }
  .c-contact__input{
    height: 56px; 
    font-size: 16px;
  }
  .c-contact__link{
    font-size: 20px;
  }
  .c-contact__card {
    flex-direction: column;
  }
  .c-contact__person {
    flex-direction: column;
    width: 100%;
  }
}