



.two-column-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.two-column-banner-content,
.two-column-banner-img {
  min-height: 730px;
}



.two-column-banner-content button{
  max-width: 459px;
}

.two-column-banner-content{
  display: flex;
  align-items: center;
  padding: 80px 120px;
}

.banner-content{
  display: flex;
  flex-direction: column;
}


.two-column-banner-content p{
  max-width: 550px;
}

.two-column-banner-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.two-column-banner-img.banner-img1 {
  background-image: url('/skin/assets/img/promo/pbanner1.jpg');
}
.two-column-banner-img.banner-img2 {
  background-image: url('/skin/assets/img/promo/pbanner2.jpg');
}
.two-column-banner-img.banner-img3 {
  background-image: url('/skin/assets/img/promo/pbanner3.jpg');
}


.promo2-form{
  padding: 180px 0px 80px 0px;
}



.promo2-form__top{
  margin-bottom: 180px;

}

.promo2-form__title{
font-weight: 900;
font-size: 84px;
line-height: 120%;
text-align: center;
text-transform: uppercase;
color: #F0F0F0;
}

.promo2-form__detail{
font-weight: 400;
font-size: 34px;
line-height: 46px;
text-align: center;
text-transform: uppercase;
}


.promo2-form__sub-title{
font-weight: 900;
font-size: 56px;
line-height: 120%;
text-align: center;
text-transform: uppercase;
color: #F0F0F0;
}

.promo2-form__inner__detail{
font-weight: 600;
font-size: 18px;
line-height: 26px;
text-align: center;
text-transform: uppercase;
color: #A2A2A2;
}



/* Form */


.promo2-form__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0px;
}

.promo2-form__sub-title {
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  font-family: Mulish, sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.21;
  text-transform: uppercase;
}

.promo2-form__inner__detail {
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: Mulish, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

.promo2-form__form {
  max-width: 1200px;
  margin: 0 auto;
}

.promo2-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.promo2-form__field {
  width: 100%;
}

.promo2-form__field input,
.promo2-form__fake-select {
  width: 100%;
  height: 78px;
  padding: 0 22px;
  border: none;
  outline: none;
  background: #363636;
  color: #fff;
  font-family: Mulish, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  box-sizing: border-box;
}

.promo2-form__field input::placeholder {
  color: #fff;
  opacity: 0.75;
  font-family: Mulish, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

.promo2-form__fake-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.promo2-form__fake-select span {
  color: #fff;
  opacity: 0.75;
}

.promo2-form__fake-select-arrow {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-left: 16px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #fff;
  opacity: 0.9;
}

.b-btn.promo2-form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
}




.promo2-form__field {
  width: 100%;
}

.promo2-form__field input,
.promo2-dropdown__input {
  width: 100%;
  height: 78px;
  padding: 0 22px;
  border: none;
  outline: none;
  background: #363636;
  color: #fff;
  font-family: Mulish, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  box-sizing: border-box;
}

.promo2-form__field input::placeholder,
.promo2-dropdown__input::placeholder {
  color: #fff;
  opacity: 0.75;
}

.promo2-dropdown {
  position: relative;
  width: 100%;
}

.promo2-dropdown__input {
  padding: 0 60px 0 22px;
  cursor: pointer;
}

.promo2-dropdown__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #fff;
  pointer-events: none;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.promo2-dropdown.active .promo2-dropdown__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.promo2-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #363636;
  z-index: 20;
  max-height: 320px;
  overflow-y: auto;
}

.promo2-dropdown.active .promo2-dropdown__list {
  display: block;
}

.promo2-dropdown__list li {
  position: relative;
  padding: 24px 22px;
  cursor: pointer;
  color: #fff;
  font-family: Mulish, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.promo2-dropdown__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.promo2-dropdown__list li:hover {
  background: #4a4a4a;
}

.promo2-dropdown__list::-webkit-scrollbar {
  width: 6px;
}

.promo2-dropdown__list::-webkit-scrollbar-track {
  background: transparent;
}

.promo2-dropdown__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.promo2-dropdown__list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.promo2-faq {
  padding-top: 120px;
}

.promo2-faq__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.promo2-faq__title {
  font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo2-faq__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  max-width: 418px;
  width: 100%;
  padding: 0 24px;
  border: 0;
  background-color: #080808;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9f76e;
  cursor: pointer;
}

.promo2-faq .faq__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-top: 2px solid #151515;
  border-bottom: 2px solid #151515;
  position: relative;
  padding: 60px 120px 60px 48px;
}

.promo2-faq .faq__item:first-child {
  border-top: 0;
}

.promo2-faq .faq__item__title {
  width: 520px;
  flex-shrink: 0;
}

.promo2-faq .faq__item__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo2-faq .plus-btn {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0;
  background-color: #c9f76e;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo2-faq .plus-btn span {
  position: absolute;
  width: 32px;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
}

.promo2-faq .plus-btn span:last-child {
  transform: rotate(90deg);
}

.promo2-faq .plus-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.promo2-faq .faq__item.active {
  flex-direction: column;
  background-color: #c9f76e;
  gap: 16px;
}

.promo2-faq .faq__item.active .plus-btn {
  background-color: #151515;
}

.promo2-faq .faq__item.active .plus-btn span {
  background-color: #c9f76e;
}

.promo2-faq .faq__item.active .plus-btn span:last-child {
  display: none;
}

.promo2-faq .faq__item.active .faq__item__text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}





@media (max-width: 1024px) {
 
}

@media (max-width: 768px) {

  .promo2-form__field input, .promo2-dropdown__input {
    height: 70px;
}

.promo2-form__grid {
    gap: 16px;
    margin-bottom: 16px;
}

.promo2-faq {
    padding-top: 96px;
}

.promo2-faq__top {
    flex-direction: column;
    align-items: stretch;
}

.promo2-faq__title {
    font-size: 64px;
    line-height: 74px;
}

.promo2-faq .faq__item {
    padding: 32px 88px 32px 24px;
}

.promo2-faq .faq__item__title {
    width: auto;
    padding-right: 12px;
}

.promo2-faq .plus-btn {
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
}

.promo2-faq .plus-btn span {
    width: 24px;
}

}

@media (max-width: 576px) {
  .promo2-form__grid {
    grid-template-columns: 1fr;
  }

  .promo2-form__field input, .promo2-dropdown__input {
    height: 70px;
}

.promo2-faq {
    padding-top: 72px;
}

.promo2-faq__title {
    font-size: 42px;
    line-height: 46px;
}

.promo2-faq__btn {
    max-width: none;
    height: 64px;
    font-size: 16px;
    line-height: 22px;
}

.promo2-faq .faq__item {
    padding: 24px 72px 24px 20px;
    gap: 16px;
}

.promo2-faq .faq__item__text {
    font-size: 14px;
    line-height: 22px;
}

.promo2-faq .plus-btn {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
}

.promo2-faq .plus-btn span {
    width: 18px;
    height: 3px;
}

}



/* Form */


.two-column-banner-img.banner-img1 {
  background: none;
}

.two-column-banner-img {
  position: relative;
  overflow: hidden;
}

.two-column-banner-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





@media (max-width: 1280px) {

  .two-column-banner-content,
.two-column-banner-img {
  min-height: 710px;
}


  .two-column-banner-content {
    display: flex;
    align-items: center;
    padding: 80px 80px;
}

.promo2-form__detail {
    font-size: 26px;
    line-height: 36px;
}

.promo2-form__sub-title {
    font-size: 44px;
    line-height: 1.21;
}

.promo2-form__top {
    margin-bottom: 160px;
}

  




}








@media (max-width: 1024px) {


  .two-column-banner-content,
.two-column-banner-img {
  min-height: 448px;
}

.two-column-banner {
  grid-template-columns: 1fr;
}

.two-column-banner-content {
        justify-content: center;
    }

    .banner-content {
    max-width: 460px;
    width: 100%;
}

.two-column-banner-img.banner-img2 {
    order: 2;
}

.promo2-form__title {
    font-size: 48px;
}

.promo2-form__top {
        margin-bottom: 100px;
    }



}

@media (max-width: 768px) {


      .two-column-banner-content, .two-column-banner-img {
        min-height: 392px;
    }

    .promo2-form__top {
        margin-bottom: 80px;
    }


    .two-column-banner-content {
        padding: 80px 0px;
    }

    .promo2-form {
    padding: 80px 0px 80px 0px;
}









}


@media (max-width: 576px) {


     .banner-content .home-title {
        font-size: 48px;
        line-height: 64px;
    }

        .banner-content {
        max-width: 328px;
    }


        .two-column-banner-content, .two-column-banner-img {
        min-height: 264px;
    }

    .two-column-banner-content {
        padding: 48px 0px;
    }

        .promo2-form__title {
        font-size: 24px;
    }

    .promo2-form__detail {
        font-size: 18px;
        line-height: 24px;
    }

    .promo2-form__top {
        margin-bottom: 48px;
    }

    .promo2-form {
    padding: 48px 0px 48px 0px;
}

.promo2-form__sub-title {
        font-size: 26px;
    }

    .promo2-form__inner {
    padding: 0px;
}

.promo2-form__inner__detail {
    margin-bottom: 48px;
    font-size: 12px;
    line-height: 16px;
}

    .promo2-form__field input, .promo2-dropdown__input {
        height: 54px;
    }

        .promo2-form__grid {
        gap: 8px;
        margin-bottom: 8px;
    }

    .promo2-dropdown__list li {
    padding: 16px 22px;
}





}


