.main-banner {
  width: 100%;
  height: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}
.main-banner__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media (max-width: 1024px) {
  .main-banner__content {
    max-width: 620px;
    gap: 72px;
  }
}
@media (max-width: 768px) {
  .main-banner__content {
    gap: 52px;
  }
}
.main-banner__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.main-banner__top h1 {
  font-family: "schabo";
  font-size: 58px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: 1.16px;
}
@media (max-width: 1024px) {
  .main-banner__top h1 {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .main-banner__top h1 {
    font-size: 44px;
    letter-spacing: 0.88px;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 290px;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .main-banner__top h1 svg {
    height: 40px;
    width: auto;
  }
}
.main-banner__top p {
  width: 100%;
  max-width: 464px;
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
  .main-banner__top p {
    max-width: 418px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .main-banner__top p {
    font-size: 16px;
    max-width: 351px;
  }
}
.main-banner__top-input {
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px;
  margin-top: 16px;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background: linear-gradient(113.4deg, rgba(172, 172, 172, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.main-banner__top-input input {
  width: 100%;
  height: 100%;
  padding: 17px 24px;
  padding-right: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
}
.main-banner__top-input input::-moz-placeholder {
  color: #ffffff;
}
.main-banner__top-input input::placeholder {
  color: #ffffff;
}
@media (max-width: 768px) {
  .main-banner__top-input input {
    height: 56px;
    padding: 17px 20px;
    text-align: center;
  }
}
.main-banner__top-input button {
  width: 200px;
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 60px;
  background-color: #eb4e12;
  transition: 0.3s all ease;
}
.main-banner__top-input button span {
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}
.main-banner__top-input button svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.main-banner__top-input button.loading svg {
  animation: spin 1.2s linear infinite;
}
.main-banner__top-input button:hover {
  background-color: #161616;
}
.main-banner__top-input button:disabled {
  background-color: #161616 !important;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .main-banner__top-input button {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .main-banner__top-input {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .main-banner__top-input {
    margin-top: 8px;
    flex-direction: column;
    justify-content: unset;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
}
.main-banner__bottom {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.main-banner__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 44px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background: linear-gradient(113.4deg, rgba(172, 172, 172, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.main-banner__bottom-item .title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-banner__bottom-item .title-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  background-color: #161616;
}
@media (max-width: 768px) {
  .main-banner__bottom-item .title-img {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 7px;
  }
}
.main-banner__bottom-item .title span {
  font-family: "schabo";
  font-size: 28px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.56px;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .main-banner__bottom-item .title span {
    font-size: 26px;
    letter-spacing: 0.52px;
  }
}
@media (max-width: 768px) {
  .main-banner__bottom-item .title span {
    font-size: 24px;
    letter-spacing: 0.48px;
  }
}
@media (max-width: 768px) {
  .main-banner__bottom-item .title {
    gap: 12px;
  }
}
.main-banner__bottom-item .desc {
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media (max-width: 768px) {
  .main-banner__bottom-item .desc {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main-banner__bottom-item {
    gap: 12px;
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .main-banner__bottom-item {
    gap: 8px;
    padding: 24px;
  }
}
@media (max-width: 1024px) {
  .main-banner__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.main-banner .glow {
  width: 100%;
  max-width: 1168px;
  height: auto;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .main-banner .glow {
    max-width: unset;
    width: auto;
    height: 952px;
  }
}
@media (max-width: 768px) {
  .main-banner .glow {
    height: 100%;
  }
}
.main-banner .grid {
  width: 100%;
  max-width: 1310px;
  height: auto;
  position: absolute;
  z-index: -1;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .main-banner .grid {
    max-width: unset;
    height: 584px;
    bottom: unset;
    top: 117px;
  }
}
@media (max-width: 768px) {
  .main-banner .grid {
    display: none;
  }
}
@media (max-width: 1024px) {
  .main-banner {
    height: 1051px;
    justify-content: unset;
    padding: 0 20px;
    padding-top: 161px;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .main-banner {
    height: unset;
    padding: 0 12px;
    padding-top: 121px;
    padding-bottom: 72px;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.works {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  padding-bottom: 140px;
  position: relative;
}
.works-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
@media (max-width: 1024px) {
  .works-content {
    max-width: 650px;
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .works-content {
    gap: 44px;
  }
}
.works-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.works-text__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.works-text__top span {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #EB4E12;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .works-text__top span {
    font-size: 12px;
  }
}
.works-text__top h2 {
  font-family: "schabo";
  font-weight: 400;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: 1.16px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .works-text__top h2 {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .works-text__top h2 {
    font-size: 44px;
    letter-spacing: 0.88px;
  }
}
@media (max-width: 1024px) {
  .works-text__top {
    gap: 16px;
  }
}
.works-text__line {
  height: 160px;
  width: auto;
}
@media (max-width: 1024px) {
  .works-text__line {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .works-text__line {
    height: 100px;
  }
}
.works-text__text {
  max-width: 820px;
  font-size: 50px;
  line-height: 1.3;
  text-align: center;
  color: #FFFFFF;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.works-text__text .works-text__text .char {
  display: inline-block;
  will-change: opacity, transform;
}
@media (max-width: 1024px) {
  .works-text__text {
    max-width: 655px;
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .works-text__text {
    max-width: 427px;
    font-size: 26px;
  }
}
@media (max-width: 460px) {
  .works-text__text {
    max-width: 328px;
    font-size: 20px;
  }
}
.works-cards {
  width: 100%;
  display: flex;
  gap: 40px;
}
.works-cards__col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.works-cards__col.col2 {
  margin-top: 60px;
}
.works-cards__col.col2 .item {
  align-items: flex-end;
  transform: translateX(200px) translateY(60px) rotate(45deg);
}
.works-cards__col.col2 .item h3 {
  text-align: right;
}
.works-cards__col.col2 .item p {
  text-align: right;
}
.works-cards__col .item {
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 77px;
  padding: 52px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: linear-gradient(113.4deg, rgba(70, 70, 70, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  opacity: 0;
  transform: translateX(-200px) translateY(60px) rotate(-45deg);
  will-change: transform, opacity;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}
.works-cards__col .item h3 {
  font-family: "schabo";
  font-size: 74px;
  line-height: 1.1;
  letter-spacing: 0.74px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.works-cards__col .item p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media (max-width: 1024px) {
  .works-cards__col {
    display: none;
  }
}
.works-cards__mob {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.works-cards__mob .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 56px 44px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: linear-gradient(113.4deg, rgba(70, 70, 70, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
}
.works-cards__mob .item h3 {
  font-family: "schabo";
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .works-cards__mob .item h3 {
    font-size: 44px;
    letter-spacing: 0.44px;
  }
}
.works-cards__mob .item p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media (max-width: 768px) {
  .works-cards__mob .item p {
    font-size: 14px;
  }
  .works-cards__mob .item p br {
    display: none;
  }
}
.works-cards__mob .item.rev {
  align-items: flex-end;
}
.works-cards__mob .item.rev h3, .works-cards__mob .item.rev p {
  text-align: right;
}
@media (max-width: 768px) {
  .works-cards__mob .item {
    padding: 40px 24px;
  }
}
@media (min-width: 1025px) {
  .works-cards__mob {
    display: none;
  }
}
@media (max-width: 768px) {
  .works-cards__mob {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .works-cards {
    justify-content: center;
  }
}
.works .glow {
  height: calc(100% - 140px);
  width: auto;
  position: absolute;
  z-index: -1;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .works .glow {
    width: 100%;
    height: auto;
    bottom: unset;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .works {
    padding: 0 20px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .works {
    padding: 0 12px;
    padding-bottom: 72px;
  }
}

.pricing {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  padding-bottom: 100px;
}
.pricing-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
@media (max-width: 768px) {
  .pricing-content {
    gap: 32px;
  }
}
.pricing-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pricing-title span {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #EB4E12;
}
@media (max-width: 768px) {
  .pricing-title span {
    font-size: 12px;
  }
}
.pricing-title h2 {
  font-family: "schabo";
  font-size: 58px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.16px;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .pricing-title h2 {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .pricing-title h2 {
    font-size: 42px;
    letter-spacing: 0.84px;
  }
}
@media (max-width: 1024px) {
  .pricing-title {
    gap: 16px;
  }
}
.pricing-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.0509803922);
  background: linear-gradient(115.95deg, rgba(242, 242, 242, 0.02) 10.92%, rgba(255, 255, 255, 0.004) 96.4%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.pricing-wrapper .card {
  min-height: 759px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background: linear-gradient(113.4deg, rgba(70, 70, 70, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
}
.pricing-wrapper .card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.pricing-wrapper .card-top p {
  font-size: 16px;
  text-align: right;
  color: #D1D1D1;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-top p {
    font-size: 14px;
  }
}
.pricing-wrapper .card-top__tarif {
  padding: 10px 16px;
  padding-bottom: 3px;
  border-radius: 8px;
  border: 1px solid rgba(182, 202, 203, 0.4);
}
.pricing-wrapper .card-top__tarif span {
  font-family: "schabo";
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #B6CACB;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-top__tarif span {
    font-size: 24px;
    letter-spacing: 0.48px;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper .card-top {
    padding-bottom: 20px;
  }
}
.pricing-wrapper .card-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-wrapper .card-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-wrapper .card-list__item svg {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}
.pricing-wrapper .card-list__item p {
  font-size: 18px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-list__item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper .card-list__item {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper .card-list {
    gap: 20px;
  }
}
.pricing-wrapper .card-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.pricing-wrapper .card-bottom button {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 60px;
  background-color: #EB4E12;
  transition: 0.3s all ease;
}
.pricing-wrapper .card-bottom button svg {
  transition: 0.3s all ease;
}
.pricing-wrapper .card-bottom button span {
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
}
.pricing-wrapper .card-bottom button:hover {
  background-color: #161616;
}
.pricing-wrapper .card-bottom button:hover svg {
  rotate: 45deg;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-bottom button {
    width: 100%;
    min-width: unset;
    height: 49px;
  }
}
.pricing-wrapper .card-bottom__price {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.pricing-wrapper .card-bottom__price p {
  font-family: "schabo";
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: -7px;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-bottom__price p {
    font-size: 34px;
    letter-spacing: 0.68px;
  }
}
.pricing-wrapper .card-bottom__price .discount {
  font-family: "schabo";
  font-size: 32px !important;
  line-height: 1.1;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #D1D1D1;
  text-decoration: line-through;
}
@media (max-width: 768px) {
  .pricing-wrapper .card-bottom__price .discount {
    font-size: 24px !important;
    letter-spacing: 0.48px;
  }
}
.pricing-wrapper .card-bottom__price .text {
  font-size: 16px;
  color: #D1D1D1;
}
.pricing-wrapper .card-bottom__price .desc {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .pricing-wrapper .card-bottom {
    margin-top: 28px;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper .card-bottom {
    margin-top: 0;
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 16px;
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .pricing-wrapper .card {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper .card {
    padding: 24px 16px;
  }
}
@media (max-width: 1024px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pricing-wrapper {
    padding: 0;
    border-radius: 0;
    border: none;
    background: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
}
@media (max-width: 1024px) {
  .pricing {
    padding: 0 20px;
    padding-bottom: 72px;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding: 0 12px;
    padding-bottom: 72px;
  }
}

.option {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  position: relative;
}
.option-content {
  width: 100%;
  max-width: 1280px;
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr 550px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  overflow: hidden;
  background: linear-gradient(113.4deg, rgba(70, 70, 70, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 1100px) {
  .option-content {
    grid-template-columns: 1fr 450px;
  }
}
@media (max-width: 1024px) {
  .option-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .option-content {
    gap: 40px;
  }
}
.option-text {
  width: 100%;
  max-width: 682px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 60px;
  padding-right: 0;
}
.option-text h2 {
  font-family: "schabo";
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .option-text h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .option-text h2 {
    font-size: 36px;
    letter-spacing: 0.72px;
  }
}
.option-text .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option-text .text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media (max-width: 1024px) {
  .option-text .text p {
    text-align: center;
  }
}
.option-text .bottom {
  display: flex;
  align-items: center;
  gap: 24px;
}
.option-text .bottom a {
  width: 230px;
  min-width: 230px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 60px;
  background-color: #FFFFFF;
  transition: 0.3s all ease;
}
.option-text .bottom a span {
  transition: 0.3s all ease;
  font-size: 16px;
  line-height: 1;
  color: #161616;
}
.option-text .bottom a svg path {
  transition: 0.3s all ease;
}
.option-text .bottom a:hover {
  background-color: #EB4E12;
}
.option-text .bottom a:hover span {
  color: #FFFFFF;
}
.option-text .bottom a:hover svg path {
  fill: #FFFFFF;
}
@media (max-width: 768px) {
  .option-text .bottom a {
    width: 100%;
    min-width: unset;
  }
}
.option-text .bottom p {
  font-family: "schabo";
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .option-text .bottom p {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .option-text .bottom {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .option-text .bottom {
    flex-direction: column;
    gap: 20px;
    justify-content: unset;
  }
}
@media (max-width: 1320px) {
  .option-text {
    padding: 0;
    padding-left: 40px;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .option-text {
    max-width: unset;
    padding: 60px 48px;
    padding-bottom: 0;
    justify-content: unset;
  }
}
@media (max-width: 768px) {
  .option-text {
    gap: 16px;
    padding: 40px 24px;
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .option-image .desc {
    display: none;
  }
}
@media (min-width: 1025px) {
  .option-image .mob {
    display: none;
  }
}
.option .glow {
  position: absolute;
  z-index: -1;
  left: 0;
  height: 100%;
  width: auto;
}
@media (max-width: 1024px) {
  .option .glow {
    width: 100%;
    height: auto;
    top: 73px;
  }
}
@media (max-width: 768px) {
  .option .glow {
    top: 124px;
  }
}
@media (max-width: 1024px) {
  .option {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .option {
    padding: 0 12px;
  }
}

.bottom-banner {
  width: 100%;
  height: 686px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
  overflow-x: hidden;
}
.bottom-banner__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
}
.bottom-banner__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bottom-banner__top h2 {
  font-family: "schabo";
  font-size: 58px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: 1.16px;
}
@media (max-width: 1024px) {
  .bottom-banner__top h2 {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .bottom-banner__top h2 {
    font-size: 42px;
    letter-spacing: 0.84px;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
  }
  .bottom-banner__top h2 svg {
    height: 40px;
    width: auto;
  }
}
.bottom-banner__top p {
  width: 100%;
  max-width: 600px;
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
  .bottom-banner__top p {
    max-width: 540px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bottom-banner__top p {
    font-size: 16px;
    max-width: 271px;
  }
}
.bottom-banner__top-input {
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px;
  margin-top: 16px;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background: linear-gradient(113.4deg, rgba(172, 172, 172, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.bottom-banner__top-input input {
  width: 100%;
  height: 100%;
  padding: 17px 24px;
  padding-right: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
.bottom-banner__top-input input::-moz-placeholder {
  color: #FFFFFF;
}
.bottom-banner__top-input input::placeholder {
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .bottom-banner__top-input input {
    height: 56px;
    padding: 17px 20px;
    text-align: center;
  }
}
.bottom-banner__top-input button {
  width: 200px;
  min-width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 60px;
  background-color: #EB4E12;
  transition: 0.3s all ease;
}
.bottom-banner__top-input button span {
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
}
.bottom-banner__top-input button svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.bottom-banner__top-input button.loading svg {
  animation: spin 1.2s linear infinite;
}
.bottom-banner__top-input button:hover {
  background-color: #161616;
}
.bottom-banner__top-input button:disabled {
  background-color: #161616 !important;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .bottom-banner__top-input button {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .bottom-banner__top-input {
    max-width: 620px;
  }
}
@media (max-width: 768px) {
  .bottom-banner__top-input {
    margin-top: 8px;
    flex-direction: column;
    justify-content: unset;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
}
.bottom-banner__top .subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .bottom-banner__top .subtitle {
    display: none;
  }
}
.bottom-banner .glow {
  height: 100%;
  width: auto;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bottom-banner .grid {
  width: 100%;
  max-width: 1310px;
  height: auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .bottom-banner .grid {
    display: none;
  }
}
@media (max-width: 1024px) {
  .bottom-banner {
    height: 534px;
    justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .bottom-banner {
    height: unset;
    padding: 0 12px;
    padding-top: 91px;
    padding-bottom: 86px;
  }
}/*# sourceMappingURL=blocks.css.map */