.contacts-mail .program input {
  border: 1px solid var(--grey-2);
  background-color: transparent;
  pointer-events: unset;
}
/* main content */
.contacts {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: var(--white);
  transition: padding 0.3s ease;
}
.contacts.container {
  width: 100%;
  padding: 86px 100px 100px;
  margin-bottom: 50px;
  color: var(--white);
  position: relative;
  transition: padding 0.3s ease;
}
.contacts.container::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #15151f;
  background-image: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(0,87,255,0.35) 50%, rgba(21,21,31,1) 100%);
  background-blend-mode: saturation;
  z-index: -1;
}
/* structure */
.contacts-breads .breads .current {
  color: var(--white);
}
.contacts-title {
  padding-bottom: 30px;
}
.contacts-top {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 50px;
  transition: grid-template-columns 0.3s ease, gap 0.3s ease;
  transition: grid-template-columns 0.3s ease, gap 0.3s ease,
    -ms-grid-columns 0.3s ease;
}
/* left side */
.contacts-l > .body-2 {
  padding-bottom: 32px;
}
.contacts-all {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 50px;
  transition: grid-template-columns 0.3s ease, gap 0.3s ease;
}
.contacts-all .caption-2 {
  color: var(--blue-2);
}
.map iframe {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  transition: height 0.3s ease, width 0.3s ease;
}
.all-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contacts-info {
  display: flex;
  min-width: 10px;
  flex-direction: column;
  gap: 6px;
}
.contacts-img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 4px;
}

/* right side */
.contacts-r .contacts-mail {
  background: var(--white);
  color: var(--dark-blue-1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contacts-r .contacts-mail > .form-logo-img {
  position: absolute;
  right: -40px;
  z-index: -1;
}

.news-msg-padding {
  margin-top: -9px;
}

/* circle */
.contacts-wrapper-cont {
  position: absolute;
  top: 30%;
  right: calc(-10vw);
  z-index: -1;
  transform: rotate();
  max-width: 550px;
  width: 100%;
  max-height: 550px;
  height: auto;
  transition: max-width 0.3s ease, max-height 0.3s ease,
    right 0.3s ease top 0.3s ease;
}

/* Breadcrumbs */
.breads img[alt="arrow"] {
  content: url(../../icons/bread-arrow-white.svg);
  height: 16px;
  width: 16px;
  transition: transform 0.3s ease;
}
.breads img[alt="home"] {
  content: url(../../icons/home-white.svg);
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
/* form */
.contacts-r .contacts-mail .body-3 {
  max-width: 390px;
}
@media (max-width: 1440px) {
  .contacts {
    overflow: hidden;
  }
}
@media (max-width: 1350px) {
  .contacts-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1150px) {
  .contacts-top {
    grid-template-columns: 1fr;
  }
  .contacts-wrapper-cont {
    top: 20%;
  }
}
@media (max-width: 767px) {
  .contacts.container {
    padding: 64px 20px 50px;
    margin-bottom: 0;
  }
  .contacts-title {
    padding-bottom: 24px;
  }
  .contacts-l > .body-2 {
    padding-bottom: 24px;
  }
  .contacts-all {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }
  .contacts-img {
    width: 40px;
    height: 40px;
  }
  .contacts-info {
    gap: 4px;
  }
  .map iframe {
    height: 155px;
  }
  .contacts-top {
    gap: 32px;
  }
  .contacts-wrapper-cont {
    top: 17%;
    right: clamp(-200px, -45vw, -50px);
    max-width: 350px;
    max-height: 350px;
  }
}
