@import url('./style.css');

.main {
   padding: 80px 0 100px;
   position: relative;
}

.contacts-worm-l-b {
   left: 80px;
   bottom: -146px;
}

.main__inner {
   display: flex;
   gap: 60px;
   justify-content: space-between;
}

.contacts__wrap {
   max-width: 500px;
}

.contacts__title {
   font-weight: 800;
   font-size: 48px;
   line-height: 56px;
   margin-bottom: 34px;
}

.adress,
.email {
   margin-bottom: 46px;
}

.adress__subtitle {
   font-weight: 600;
   font-size: 32px;
   line-height: 46px;
   margin-bottom: 12px;
}

.adress__desc {
   margin-bottom: 8px;
}

.facebook__link,
.linkedIn__link {
   background: rgba(255, 255, 255, 0.02);
   border: 0.5px solid rgba(255, 255, 255, 0.16);
   backdrop-filter: blur(13px);
   border-radius: 16px;
   padding: 16px 18px;
}

.social__btns {
   padding-top: 12px;
}

.form__wrap {
   min-width: 727px;
}

.input {
   width: 320px;
}

.main .form__wrap .input__message {
   width: 100%;
}

.form__title {
   font-weight: 800;
   font-size: 48px;
   line-height: 56px;
}

.form__subtitle {
   margin-bottom: 14px;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
}

@media screen and (max-width: 1250px) {
   .main__inner {
      flex-direction: column;
      align-items: center;
      gap: 64px;

   }


   .contacts-worm-l-b {
      left: 30px;
      bottom: -106px;
      width: 450px;
   }

   .contacts__wrap {
      text-align: center;
   }

   .form__wrap {}

   .form__title,
   .form__subtitle {
      text-align: center;
   }

}

@media screen and (max-width: 1024px) {
   .main {
      padding: 64px 0 32px;
   }

   .form__wrap {
      min-width: 100%;
   }

   .input__wrap {
      justify-content: center;
      flex-direction: column;
   }

   .input {
      width: 100%;
   }
}


@media screen and (max-width: 650px) {
   .main {
      padding: 24px 0 42px;
   }

   .contacts__title {
      font-size: 40px;
      line-height: 56px;
   }

   .contacts-worm-l-b {
      display: none;
   }

   .adress__subtitle {
      font-size: 18px;
      line-height: 25px;
   }

   .adress__desc {
      font-size: 18px;
      line-height: 26px;
   }

   .form__title {
      font-size: 40px;
      line-height: 56px;
   }

   .form__subtitle {
      font-size: 18px;
      line-height: 25px;
   }

   .adress {
      max-width: 274px;
   }

   .form__subtitle {
      max-width: 274px;
      margin: 0 auto;
   }


}