

.customer-header {
  margin: 0 20px;
  padding: 40px;
  padding-right: 75px;
  min-height: 400px;
  width: calc(100% - 40px);

  background: #FFFFFF;
  border-radius: 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.customer-header__content {}

.customer-header__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;

  /* Gradient/green gorizontal */
  background: linear-gradient(180deg, #5AA000 0%, #9AD556 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

}

.customer-header__text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
}

.customer-header__img {
  width: 380px;
  height: 320px;
}

.customer-header__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.question {
  margin: 20px 20px 0;
  display: flex;
  gap: 20px;
}


.question-left {
  padding: 20px;
  width: calc(55% - 20px);
  flex-grow: 1;
  background: #FFFFFF;
  border-radius: 34px;
  text-align: center;
}

.question-left::before {
  opacity: 0.2;
	background: url('/assets/img/theme-bg.png') center / cover repeat;
}

.question-left__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 145%;
}

.question-left__subtitle {
  margin: 5px auto 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  max-width: 580px;
}


.question-left__list {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.question-left__li {
  padding: 20px;
  width: calc(33.33% - 20px/3);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #E8EAE6;
  border-radius: 24px;
}

.question-left__li-img {
  height: 120px;
  width: auto;
}

.question-left__li-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.question-left__li-text {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #9BD556;
}

.question-left__text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #5A5A5A;
}


.question-right {}

.question-right__head {
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #9BD556;
  border-radius: 34px;
  text-align: center;
}

.question-right__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 145%;
}

.question-right__text {
  margin: 5px auto 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  max-width: 420px;
}

.question-right__main {
  margin: 40px 0 0;
}

.question-right__subtitle {
  margin: 0 10px 0;
  max-width: 500px;
  font-weight: 500;
  font-size: 22px;
  line-height: 127%;
}

.question-right__end-text {
  margin: 5px 10px 0;
  max-width: 500px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #1D1D1D;
}

.question-right__li-bttn {
  margin: 20px 0 0;

  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #FFFFFF;
}


.customer-about {
  margin: 20px 20px 0;
}

.customer-about_manager {}

.customer-about_broker {}

.customer-about__head {
  padding: 20px 40px;
  padding-right: 170px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.customer-about_manager .customer-about__head {
  background: #1D1D1D;
}

.customer-about_broker .customer-about__head {
  background: linear-gradient(180deg, #5AA000 0%, #9AD556 100%);
}

.customer-about__head-content {}

.customer-about__head-content h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 130%;
}

.customer-about_manager .customer-about__head-content h2 {
  color: #E8EAE6;
}

.customer-about_broker .customer-about__head-content h2 {
  color: #FFFFFF;
}

.customer-about__head-content p {}

.customer-about_manager .customer-about__head-content p {
  font-weight: 400;
  max-width: 630px;
  font-size: 20px;
  line-height: 150%;
  color: #E8EAE6;
}

.customer-about_broker .customer-about__head-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}



.customer-about__head-img {
  height: 200px;
  width: auto;
}

.customer-about__head-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.customer-about__main {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto;
  align-content: start;
  grid-column-gap: 48px;
  grid-row-gap: 0px;
}

.customer-about__video {
  width: 600px;
  display: flex;
  align-items: center;
  grid-area: 1 / 1 / 3 / 2;
}

.customer-about__video video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 34px;
}

.customer-about__content-1 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: end;
}

.customer-about__content-2 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

.customer-about_broker .customer-about__video {
  grid-area: 1 / 2 / 3 / 3;
}

.customer-about_broker .customer-about__content-1 {
  grid-area: 1 / 1 / 2 / 2;
  padding-left: 40px;
}

.customer-about_broker .customer-about__content-2 {
  grid-area: 2 / 1 / 3 / 2;
  padding-left: 40px;
}

.customer-about__content-1 h3,
.customer-about__content-2 h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: #1D1D1D;
}

.customer-about__content-1 h3 span,
.customer-about__content-2 h3 span {
  font-size: 22px;
}

.customer-about__content-1 p,
.customer-about__content-2 p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1D1D1D;
}


.customer-how {
  margin: 20px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 34px;
}

.customer-how::before {
  opacity: 0.2;
	background: url('/assets/img/theme-bg.png') center / cover repeat;
}

.customer-how__title {
  margin: 0 auto;
  max-width: 900px;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
}

.customer-how__list {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.customer-how__li {
  width: calc(50% - 10px);
}

.customer-how__li:not(.customer-how__li_find) {
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #E8EAE6;
  border-radius: 34px;
}

.customer-how__li_find {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customer-how__li-img {
  height: 90px;
  width: auto;
}

.customer-how__li-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-how__li-title {
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}

.customer-how__li-text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #5A5A5A;
}

.customer-how__find-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 145%;
}

.customer-how__find-text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
}

.customer-how__find-bttn {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: #FFFFFF;
}

.assets-modal__wrap {
  padding: 54px 20px 20px;
  max-width: 568px;
}

.assets-form__form {
  width: 100%;
}

.assets-modal__title2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 43px;
  text-align: center;
  color: #1D1D1D;
}

.assets-modal__subtitle2 {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #757575;
}



.customer-bg {
  position: relative;
  overflow: hidden;
}

.customer-bg > * {
	position: relative;
	z-index: 10;
}

.customer-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1440px) {
  .question {
    flex-direction: column;
  }

  .question-left,
  .question-right {
    width: 100%;
  }

  .question-right {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .question-right__main {
    margin-top: 0;
  }

  .customer-about__head {
    padding-right: 80px;
  }

  .customer-about__main {
    grid-column-gap: 30px;
  }

  .customer-about__video {
    width: auto;
  }

  .customer-about_broker .customer-about__content-1 {
    padding-left: 20px;
  }
  
  .customer-about_broker .customer-about__content-2 {
    padding-left: 20px;
  }
}

@media (max-width: 1280px) {
  .customer-about__head {
    padding-right: 40px;
  }

  .customer-about_broker .customer-about__content-1 {
    padding-left: 0;
  }
  
  .customer-about_broker .customer-about__content-2 {
    padding-left: 0;
  }
}


@media (max-width: 800px) {
  .customer-header {
    flex-direction: column;
    min-height: auto;
    gap: 30px;
  }

  .question-right {
    flex-direction: column;
  }

  .customer-about__head {
    flex-direction: column;
  }

  .customer-about__main {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .customer-about__video {
    order: 2;
  }

  .customer-about__content-1 {
    order: 1;
  }

  .customer-about__content-2 {
    order: 3;
  }

  .customer-how__li {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .customer-header {
    padding: 20px;
    align-items: flex-start;
  }

  .customer-header__title {
    font-size: 34px;
    line-height: 130%;
  }

  .customer-header__text {
    max-width: 300px;
    font-size: 16px;
    line-height: 160%;
  }

  .customer-header__img {
    margin: 0 auto;
    max-width: 210px;
    height: auto;
  }

  .question-left {
    padding: 20px 10px;
  }

  .question-left__title {
    font-size: 22px;
    line-height: 130%;
  }

  .question-left__subtitle {
    font-size: 14px;
    line-height: 140%;
  }

  .question-left__list {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .question-left__li {
    width: calc(50% - 5px);
    min-height: 160px;
    
  }

  .question-left__li:nth-of-type(2) {
    order: 5;
    width: 100%;
  }

  .question-left__li-img {
    width: 94px;
    height: 94px;
  }

  .question-left__li-text {
    font-size: 14px;
  }

  .question-left__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 140%;
  }

  .question-right__head {
    padding: 10px 20px;
  }

  .question-right__text {
    margin: 5px auto 0;
    font-size: 14px;
    line-height: 140%;
    max-width: 300px;
  }

  .customer-about__head {
    padding: 20px;
    gap: 10px;
  }

  .customer-about__head-content h2 {
    font-size: 22px;
  }

  .customer-about_manager .customer-about__head-content p,
  .customer-about_broker .customer-about__head-content p {
    font-size: 16px;
  }

  .customer-about__content-1 h3,
  .customer-about__content-2 h3 {
    font-size: 22px;
    line-height: 130%;
  }

  .customer-about__content-1 h3 span,
  .customer-about__content-2 h3 span {
    font-size: 18px;
  }

  .customer-about__content-1 p, .customer-about__content-2 p {
    font-size: 16px;
    line-height: 136%;
  }

  .customer-how {
    padding: 20px;
  }

  .customer-how__title {
    font-size: 22px;
    line-height: 130%;
  }

  .customer-how__li:not(.customer-how__li_find) {
    padding: 10px;
  }

  .customer-how__li-title {
    font-size: 16px;
  }

  .customer-how__li-text {
    font-size: 14px;
  }

  .customer-how__li_find {
    padding: 0;
  }

  .customer-how__find-text {
    font-size: 16px;
    line-height: 150%;
  }

  .assets-modal__title2 {
    font-size: 24px;
    line-height: 130%;
  }
  
  .assets-modal__subtitle2 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 20px;
  }

}




