.become_a_partner_page {
  background-color: #F4F4F4;
}

.become_a_partner_page__wrapper {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .become_a_partner_page__wrapper {
    padding: 65px 0;
  }
}

.become_a_partner_page__wrapper .head {
  margin-bottom: 32px;
}

.become_a_partner_page__wrapper .head .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: 16px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .become_a_partner_page__wrapper .head .title {
    margin-bottom: 32px;
  }
}

.become_a_partner_page__wrapper .head .descr {
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  color: #686767;
  text-align: left;
}

.become_a_partner_page__wrapper .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .become_a_partner_page__wrapper .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.become_a_partner_page__wrapper .cards .item {
  padding: 24px;
  background-color: #fff;
  border-left: 1px solid #221D1D;

  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 24px;
  letter-spacing: 0;
  color: #686767;
}

@media screen and (min-width: 768px) {
  .become_a_partner_page__wrapper .cards .item {
    padding: 32px;
  }
}

.become_a_partner_page__wrapper .cards .item strong {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;

  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  .become_a_partner_page__wrapper .cards .item strong {
    margin-bottom: 32px;
  }
}








/* why_us_2_page */



.why_us_2_page {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .why_us_2_page {
    padding: 120px 0;
  }
}

.why_us_2_page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 992px) {
  .why_us_2_page__wrapper {
    flex-direction: row;
    gap: 72px;
  }
}

.why_us_2_page__wrapper .media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.why_us_2_page__wrapper .media .mobile {
  display: block;
  position: relative;
  max-width: 350px;
  min-width: 350px;
  margin: 0 auto;
}

.why_us_2_page__wrapper .media .desktop {
  display: none;
}

@media screen and (min-width: 992px) {
  .why_us_2_page__wrapper .media .mobile {
    display: none;
  }

  .why_us_2_page__wrapper .media .desktop {
    display: block;
    position: relative;
    max-width: 500px;
    min-width: 400px;
  }
}

.why_us_2_page__wrapper .info .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 120%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: clamp(16px, 3vw, 32px);
}

.why_us_2_page__wrapper .info .why_us_2_page_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media screen and (min-width: 768px) {
  .why_us_2_page__wrapper .info .why_us_2_page_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

.why_us_2_page__wrapper .info .why_us_2_page_list .item {
  position: relative;
  padding-left: 32px;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #686767;
}

.why_us_2_page__wrapper .info .why_us_2_page_list .item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #221D1D;
  border-radius: 50%;
  z-index: 1;
}



/* contact_us */

.contact_us {
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .contact_us {
    margin-bottom: 56px;
  }
}

.contact_us__wrapper {
  background: url('../images/become_a_partner/contact_us/bg.png') no-repeat center;
  background-size: cover;
  padding: 32px 24px;
  border-radius: 32px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .contact_us__wrapper {
    padding: 72px;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 72px;
  }
}

.contact_us__wrapper .info {

}

.contact_us__wrapper .info .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  text-align: left;
  margin-bottom: 24px;
}

.contact_us__wrapper .info a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.contact_us__wrapper .info a svg {
  transition: 0.3s ease-in-out;
}

.contact_us__wrapper .info a:hover svg {
  transform: translateX(4px);
}


.contact_us__wrapper .form {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact_us__wrapper .form {
    gap: 24px;
    margin: 0;
  }
}

.contact_us__wrapper .form .input {
  padding: 16px;
  background-color: #121922;
  border: 1px solid #29313B;
  color: #F4F4F4;
  border-radius: 16px;
  width: 100%;
}
.contact_us__wrapper .form .input::placeholder {
  color: #F4F4F4;
}

.contact_us__wrapper .form .input .name {}

.contact_us__wrapper .form .input .company {}

.contact_us__wrapper .form .input .email {}

.contact_us__wrapper .form .submit {
  text-align: center;
  cursor: pointer;

  padding: 20px 60px;
  background-color: #fff;
  border-radius: 32px;
  color: #221D1D;
  border: none;
}