﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  border: 0;
  font-size: 100%;
  font-family: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
ol,
ul {
  list-style: none;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter_18pt-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter_18pt-Medium.ttf");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter_18pt-SemiBold.ttf");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-MediumItalic.ttf");
  font-style: italic;
  font-weight: 500;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-SemiBoldItalic.ttf");
  font-style: italic;
  font-weight: 600;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Medium.ttf");
  font-style: normal;
  font-weight: 500;
}
.accordion-item {
  min-height: 83px;
  padding: 20px 32px;
  border-radius: 20px;
  border: 0.5px solid #ff511a;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(255, 81, 26, 0.2) inset;
}
.accordion__label {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 39px;
  padding-right: 40px;
}
.accordion__label h3 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 39px;
}
.accordion__icon {
  position: absolute !important;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px !important;
  height: 39px !important;
  padding: 0 !important;
  background-image: url("../img/icon_plus.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  transform-origin: center;
}
.accordion__content {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease-out;
}
.accordion-item.active .accordion__label {
  height: auto;
}
.accordion-item.active .accordion__content {
  height: auto;
  margin-top: 20px;
  animation: openItem 0.2s ease-out forwards;
}
.accordion-item.active .accordion__icon {
  background-color: #ff511a;
  background-image: url("../img/icon_minus.svg");
}
@keyframes openItem {
  0% {
    height: 0;
  }
  90% {
    height: 50px;
  }
  100% {
    height: fit-content;
  }
}
@media (max-width: 768px) {
  .accordion-item {
    min-height: 68px;
    padding: 16px;
  }
  .accordion__label {
    min-height: 36px;
  }
  .accordion__label h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .accordion__icon {
    top: calc(50% - 18px);
    width: 36px !important;
    height: 36px !important;
    background-size: 21px 21px;
  }
}
.bqtcornr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 28px;
  padding-bottom: 4px;
}
.bqtcornr-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 114px;
  background: hsla(0, 0%, 100%, 0.01);
  backdrop-filter: blur(5px);
  mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 40%,
    transparent 100%
  );
}
.bqtcornr-header .header-container {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 10px;
  justify-content: space-between;
  min-height: 58px;
  padding: 9px 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(251, 152, 105, 0.2);
}
.bqtcornr-header .header-logo {
  gap: 8px;
}
.bqtcornr-header .header-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bqtcornr-header .header-logo-text {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
.bqtcornr-header .header-nav-wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bqtcornr-header .header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
.bqtcornr-header .header-nav .nav-item {
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
}
.bqtcornr-header .header-nav .nav-item.active::after,
.bqtcornr-header .header-nav .nav-item:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: calc(50% - 2px);
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ff511a;
  border-radius: 50%;
}
.bqtcornr-header .header-tools {
  gap: 20px;
}
.bqtcornr-header .header-mobile-btns {
  display: none;
}
.bqtcornr-header .header-mobile-btns #headerMenuClose {
  display: none;
  color: #fff;
}
.bqtcornr-header .mobile-menu-form,
.bqtcornr-header .header-tools-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .bqtcornr-header {
    padding-top: 16px;
  }
  .bqtcornr-header .header-container {
    grid-template-columns: 150px 1fr;
  }
  .bqtcornr-header .header-nav-wrapp,
  .bqtcornr-header .header-tools {
    display: none;
  }
  .bqtcornr-header .header-nav-wrapp.active {
    position: fixed;
    top: 94px;
    left: 16px;
    right: 16px;
    display: block;
    height: 86vh;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 14px 0 rgba(251, 152, 105, 0.2);
    overflow: auto;
  }
  .bqtcornr-header .header-nav-wrapp.active .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 35px;
  }
  .bqtcornr-header .header-nav-wrapp.active .header-nav .nav-item {
    width: 100%;
    font-size: 20px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ff511a;
  }
  .bqtcornr-header .header-nav-wrapp.active .header-nav .nav-item.active::after,
  .bqtcornr-header .header-nav-wrapp.active .header-nav .nav-item:hover::after {
    bottom: unset;
    left: unset;
    right: 0;
    top: 8px;
  }
  .bqtcornr-header .header-logo-text {
    font-size: 22px;
  }
  .bqtcornr-header .header-mobile-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .bqtcornr-header .header-mobile-btns .btn {
    height: 32px;
  }
  .bqtcornr-header .header-tools-mobile {
    display: flex;
    gap: 20px;
  }
  .bqtcornr-header .header-tools-mobile .btn {
    min-width: calc(50% - 10px);
  }
  .bqtcornr-header .mobile-menu-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    border: 0.5px solid #ff511a;
    background: #fcfcfc;
  }
  .bqtcornr-header .mobile-menu-form__header {
    padding: 16px 16px 0;
  }
  .bqtcornr-header .mobile-menu-form__header .title.h3 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 124%;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .bqtcornr-header .mobile-menu-form__header .text-italic {
    font-style: italic;
  }
  .bqtcornr-header .mobile-menu-form__header .subtext {
    color: #444;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
  }
}
.bqtcornr-main {
  --base-space-y: 150px;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.bqtcornr-main .br-30 {
  border-radius: 30px;
}
.bqtcornr-main .title {
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
}
.bqtcornr-main .title.h1 {
  color: #fff;
  font-size: 76px;
}
.bqtcornr-main .title.h2 {
  color: #000;
  font-size: 64px;
}
.bqtcornr-main .title.h3 {
  margin-bottom: 8px;
  font-size: 32px;
}
.bqtcornr-main .subtitle {
  margin-bottom: 64px;
  color: #444;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
.bqtcornr-main .text-italic {
  font-family: "Playfair Display";
  font-style: italic;
}
.bqtcornr-main .text-italic.w500 {
  font-weight: 500;
}
.bqtcornr-main .text-italic.w600 {
  font-weight: 600;
}
.bqtcornr-main .text-white {
  color: #fff;
}
.bqtcornr-main .text-center {
  text-align: center;
}
.bqtcornr-main .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  font-size: 16px;
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
}
.bqtcornr-main .tag.b-white {
  color: #fff;
  border: 0.5px solid #fff;
  background: hsla(0, 0%, 100%, 0.1);
}
.bqtcornr-main .tag.b-orange {
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  border: 0.5px solid #ff511a;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(255, 81, 26, 0.2) inset;
}
.bqtcornr-main .card {
  padding: 32px;
  border-radius: 30px;
  color: #fff;
}
.bqtcornr-main .card.bg-white {
  color: #000;
  background: #fff;
}
.bqtcornr-main .card.c-border {
  border: 1px dashed #ff511a;
}
.bqtcornr-main .card .h3 {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
}
.bqtcornr-main .card .c-ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
.bqtcornr-main .card .c-ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}
.bqtcornr-main .card .c-ul li::before {
  content: "";
  display: flex;
  width: 26px;
  height: 26px;
  background: url("../img/icon_flower.svg") no-repeat;
  background-size: contain;
}
.bqtcornr-main .card .list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.bqtcornr-main .card .list-item::before {
  content: "";
  display: flex;
  width: 22px;
  height: 22px;
  background: url("../img/icon_flower.svg") no-repeat;
  background-size: contain;
}
.bqtcornr-main .main-top {
  padding-top: 28px;
}
.bqtcornr-main .main-top__container {
  position: relative;
  display: grid;
  grid-template-columns: 780px 1fr;
  padding: 28px 32px;
  height: 94vh;
  background: url("../img/bg-1.webp") no-repeat;
  background-size: cover;
}
.bqtcornr-main .main-top__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bqtcornr-main .main-top__left .text {
  max-width: 515px;
  margin-bottom: 20px;
}
.bqtcornr-main .main-top__right {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100%;
  margin-bottom: -28px;
  margin-top: -28px;
  margin-right: -32px;
}
.bqtcornr-main .main-brands {
  margin-bottom: var(--base-space-y);
}
.bqtcornr-main .main-brands__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px;
  width: 100%;
  max-width: 1920px;
  padding-top: 52px;
  padding-bottom: 38px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.bqtcornr-main .main-brands__container::before,
.bqtcornr-main .main-brands__container::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 292px;
  height: 100%;
}
.bqtcornr-main .main-brands__container::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.bqtcornr-main .main-brands__container::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.bqtcornr-main .main-brands__ul {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: marquee 25s linear infinite running;
}
.bqtcornr-main .main-brands__ul li {
  display: flex;
  align-items: center;
}
.bqtcornr-main .main-brands__ul li img {
  height: 32px;
  object-fit: contain;
}
.bqtcornr-main .main-learn {
  margin-bottom: var(--base-space-y);
}
.bqtcornr-main .main-learn__grid {
  display: grid;
  grid-template-columns: 638px 1fr 507px;
  gap: 20px;
}
.bqtcornr-main .main-learn__grid .card {
  position: relative;
  min-height: 398px;
}
.bqtcornr-main .main-learn__grid .card .text {
  margin-bottom: 20px;
}
.bqtcornr-main .main-learn__grid .card.bg-white .text {
  color: #000;
}
.bqtcornr-main .main-learn__grid .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  width: 67%;
  height: 67%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
.bqtcornr-main .main-learn__grid .card1 {
  grid-column-end: span 2;
  padding-top: 40px;
  background: linear-gradient(
    165deg,
    #ff8a57 7.04%,
    #ff8a57 7.04%,
    rgba(255, 146, 98, 0.93) 15.58%,
    rgba(255, 154, 110, 0.86) 33.84%,
    rgba(255, 164, 125, 0.77) 44.07%,
    rgba(255, 250, 248, 0) 77.58%
  );
}
.bqtcornr-main .main-learn__grid .card1 .text {
  max-width: 47%;
}
.bqtcornr-main .main-learn__grid .card1::after {
  background-image: url("../img/image1.png");
}
.bqtcornr-main .main-learn__grid .card2 .text {
  max-width: 80%;
}
.bqtcornr-main .main-learn__grid .card2::after {
  width: 100%;
  height: 50%;
  background-image: url("../img/image2.png");
  background-position: bottom center;
}
.bqtcornr-main .main-learn__grid .card3 .text {
  max-width: 80%;
}
.bqtcornr-main .main-learn__grid .card3::after {
  background-image: url("../img/image3.png");
}
.bqtcornr-main .main-learn__grid .card4 {
  grid-column-end: span 2;
  background: linear-gradient(
    33deg,
    #ff8a57 12.49%,
    #ff8a57 12.49%,
    rgba(255, 153, 109, 0.87) 30.65%,
    rgba(255, 166, 127, 0.75) 52.68%,
    rgba(255, 250, 248, 0) 102.75%
  );
}
.bqtcornr-main .main-learn__grid .card4 .text {
  max-width: 47%;
}
.bqtcornr-main .main-learn__grid .card4::after {
  background-image: url("../img/image4.png");
}
.bqtcornr-main .main-program {
  margin-bottom: var(--base-space-y);
}
.bqtcornr-main .main-program .container {
  max-width: 1296px;
}
.bqtcornr-main .main-program__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px 20px;
}
.bqtcornr-main .main-program__grid .card {
  display: flex;
  flex-direction: column;
  width: 506px;
  min-height: 506px;
}
.bqtcornr-main .main-program__grid .card.bg-white {
  min-height: 550px;
  padding-bottom: 50px;
}
.bqtcornr-main .main-program__grid .card.bg-white .c-ul {
  margin-top: auto;
}
.bqtcornr-main .main-program__grid .card:nth-child(2n) {
  justify-self: end;
}
.bqtcornr-main .main-program__grid .card .tag .num {
  font-family: "Playfair Display";
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
}
.bqtcornr-main .main-program__grid .card .program-card-img {
  display: none;
}
.bqtcornr-main .main-program__grid .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 506px;
  align-self: center;
}
.bqtcornr-main .main-program__grid .card-img.left-gr {
  background:
    url("../img/bg-lines.svg"),
    radial-gradient(
      97.52% 96.98% at 66.6% -33.6%,
      #d53400 0%,
      #ff8a57 46.78%,
      rgba(254, 201, 178, 0) 77.83%
    ),
    linear-gradient(
      49deg,
      #ff8a57 4.38%,
      #ff8a57 24.16%,
      rgba(254, 201, 178, 0) 61.16%
    );
}
.bqtcornr-main .main-program__grid .card-img.right-gr {
  background:
    url("../img/bg-lines.svg"),
    radial-gradient(
      97.52% 96.98% at 66.6% -33.6%,
      #d53400 0%,
      #ff8a57 46.78%,
      rgba(254, 201, 178, 0) 77.83%
    ),
    linear-gradient(
      49deg,
      #ff8a57 4.38%,
      #ff8a57 24.16%,
      rgba(254, 201, 178, 0) 61.16%
    );
}
.bqtcornr-main .main-program__grid .grid-scroll {
  position: absolute;
  top: 255px;
  left: calc(50% - 10px);
  width: 20px;
  height: calc(100% - 510px);
}
.bqtcornr-main .main-program__grid .grid-scroll img {
  position: sticky;
  top: 100px;
  width: 100%;
  object-fit: contain;
}
.bqtcornr-main .main-how {
  margin-bottom: var(--base-space-y);
}
.bqtcornr-main .main-how .container {
  position: relative;
}
.bqtcornr-main .main-how__card {
  position: relative;
  min-height: 1000px;
  background-image: url("../img/bg-chart.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #000;
}
.bqtcornr-main .main-how__title {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  max-width: 504px;
}
.bqtcornr-main .main-how__title .subtitle {
  margin-bottom: 16px;
}
.bqtcornr-main .main-how__steps {
  position: absolute;
  bottom: 60px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  width: calc(100% - 64px);
}
.bqtcornr-main .main-how__steps .step-item {
  display: flex;
  color: #000;
  min-height: 191px;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.bqtcornr-main .main-how__steps .step-item::before {
  content: "";
  display: inline-flex;
  height: inherit;
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}
.bqtcornr-main .main-how__steps .step-item .content {
  width: 323px;
}
.bqtcornr-main .main-how__steps .step-item.step1::before {
  width: 111px;
  background-image: url("../img/num_1.svg");
}
.bqtcornr-main .main-how__steps .step-item.step2 {
  position: absolute;
  bottom: calc(100% + 19px);
  left: calc(50% - 220px);
}
.bqtcornr-main .main-how__steps .step-item.step2::before {
  width: 192px;
  background-image: url("../img/num-2.svg");
}
.bqtcornr-main .main-how__steps .step-item.step3 {
  position: absolute;
  bottom: calc(200% + 80px);
  right: 0;
}
.bqtcornr-main .main-how__steps .step-item.step3::before {
  width: 168px;
  background-image: url("../img/num-3.svg");
}
.bqtcornr-main .main-how__steps .step-item.init {
  opacity: 0;
}
.bqtcornr-main .main-how__chart {
  position: absolute;
  top: 100px;
  right: 32px;
  transition: top 0.3 ease-out;
}
.bqtcornr-main .main-how__chart img,
.bqtcornr-main .main-how__chart object {
  width: 100%;
  object-fit: contain;
}
.bqtcornr-main .main-how__chart.init {
  display: none;
}
.bqtcornr-main .main-how__chart .mobile {
  display: none;
}
.bqtcornr-main .main-team {
  margin-bottom: 120px;
}
.bqtcornr-main .main-team__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.bqtcornr-main .main-team__grid .grid-item {
  display: grid;
  grid-template-columns: 716px 1fr;
  gap: 64px;
  color: #444;
  background:
    url("../img/bg-slice.png") no-repeat,
    linear-gradient(
      45deg,
      #ff8a57 -1.8%,
      #ff8a57 -1.8%,
      rgba(255, 250, 248, 0) 66.83%
    );
  background-position:
    bottom left,
    center;
}
.bqtcornr-main .main-team__grid .grid-item .h3 {
  color: #000;
  margin-bottom: 16px;
}
.bqtcornr-main .main-team__grid .grid-item .text {
  margin-bottom: 16px;
}
.bqtcornr-main .main-team__grid .grid-item__left img {
  border-radius: 20px;
  width: 100%;
  object-fit: contain;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.22);
}
.bqtcornr-main .main-start {
  margin-bottom: var(--base-space-y);
  padding-top: 112px;
}
.bqtcornr-main .main-start__card {
  position: relative;
  background: url("../img/bg-lines.svg"), url("../img/bg-start-gr.svg");
  background-size: auto, cover;
}
.bqtcornr-main .main-start__left {
  max-width: 574px;
}
.bqtcornr-main .main-start__left .text {
  max-width: 449px;
  margin-bottom: 20px;
}
.bqtcornr-main .main-start__left .btn .icon {
  content: url("../img/icon_arrow-right.svg");
  margin-left: 16px;
}
.bqtcornr-main .main-start__right {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 324px;
  height: 365px;
  background-repeat: no-repeat;
  background-image: url("../img/image13.png");
  background-position: top left;
  background-size: 484px 454px;
}
.bqtcornr-main .main-feedback {
  margin-bottom: var(--base-space-y);
  overflow: hidden;
}
.bqtcornr-main .main-feedback .feedback-swiper {
  overflow: visible;
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next,
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev {
  position: absolute;
  top: -64px;
  height: 40px;
  width: 60px;
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next .icon,
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev .icon {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next {
  left: unset;
  right: 32px;
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next .icon {
  background-image: url("../img/icon_arrow-right.svg");
  filter: invert(100%);
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev {
  left: unset;
  right: 112px;
}
.bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev .icon {
  background-image: url("../img/icon_arrow-left.svg");
}
.bqtcornr-main .main-feedback .feedback-slide {
  width: 375px;
  height: fit-content;
  background-color: #fff;
}
.bqtcornr-main .main-feedback .feedback-slide__header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  margin-bottom: 14px;
}
.bqtcornr-main .main-feedback .feedback-slide .text {
  margin-bottom: 16px;
  color: #444;
}
.bqtcornr-main .main-faq {
  margin-bottom: var(--base-space-y);
}
.bqtcornr-main .main-faq .container .tag {
  margin-left: auto;
  margin-right: auto;
}
.bqtcornr-main .main-faq .container .title.h2 {
  margin-bottom: 64px;
}
.bqtcornr-main .main-faq__list-wrapp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bqtcornr-main .main-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.bqtcornr-main .main-faq__list .btn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 22px 32px;
  border-radius: 20px;
  background: #ff511a;
  box-shadow:
    0 0 8px 0 hsla(0, 0%, 100%, 0.25) inset,
    0 2px 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  transition: border-radius 0.3s ease-out;
}
.bqtcornr-main .main-faq__list .btn-item .icon {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../img/icon_arrow-right.svg");
  filter: invert(100%);
}
.bqtcornr-main .main-faq__list .btn-item:hover {
  border-radius: 50px;
}
.bqtcornr-main .main-form {
  margin-bottom: 64px;
}
.bqtcornr-main .main-form__card {
  display: grid;
  grid-template-columns: 374px 1fr;
  gap: 32px;
  max-width: 1034px;
  margin-left: auto;
  margin-right: auto;
}
.bqtcornr-main .main-form__left {
  min-height: 485px;
  padding: 32px;
  background-image: url("../img/bg-form.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  border-radius: 20px;
}
.bqtcornr-main .main-form__left .title.h3 {
  color: #000;
}
.bqtcornr-main .main-form__right {
  color: #000;
}
.bqtcornr-main .main-form__right .text {
  color: #444;
}
.bqtcornr-main .main-form__right .right-header {
  padding-left: 32px;
}
.bqtcornr-main .main-bottom {
  margin-bottom: 64px;
}
.bqtcornr-main .main-bottom .container {
  flex-direction: column;
  justify-content: center;
  max-width: 735px;
}
.bqtcornr-main .main-bottom .subtitle {
  margin-bottom: 16px;
}
.bqtcornr-main.home .main-top__right {
  background-image: url("../img/bg-phone-2.png");
}
.bqtcornr-main.about .main-top__container {
  grid-template-columns: 921px 1fr;
}
.bqtcornr-main.about .main-top__left .text {
  max-width: 780px;
}
.bqtcornr-main.about .main-top__right {
  background-image: url("../img/bg-phone-about.png");
}
.bqtcornr-main.how .main-how {
  padding-top: 28px;
}
.bqtcornr-main.how .main-how .title.h1 {
  color: #000;
}
.bqtcornr-main.how .main-how__title {
  top: 102px;
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@media (max-width: 1519px) {
  .bqtcornr .bqtcornr-main .container {
    max-width: 768px;
  }
  .bqtcornr-main {
    --base-space-y: 80px;
    font-size: 16px;
  }
  .bqtcornr-main .title {
    line-height: 100%;
  }
  .bqtcornr-main .title.h1 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .bqtcornr-main .title.h2 {
    font-size: 32px;
  }
  .bqtcornr-main .title.h3 {
    font-size: 28px;
  }
  .bqtcornr-main .subtitle {
    font-size: 16px;
    line-height: 140%;
  }
  .bqtcornr-main .tag {
    font-size: 14px;
    padding: 8px 14px;
  }
  .bqtcornr-main .card {
    padding: 16px;
  }
  .bqtcornr-main .card .c-ul {
    gap: 30px;
  }
  .bqtcornr-main .card .c-ul li {
    gap: 8px;
    font-size: 16px;
  }
  .bqtcornr-main .card .c-ul li::before {
    width: 20px;
    height: 20px;
  }
  .bqtcornr-main .card .list-item {
    gap: 8px;
    font-size: 16px;
  }
  .bqtcornr-main .main-top {
    padding-top: 94px;
  }
  .bqtcornr-main .main-top__container {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 0;
    max-height: 731px;
    height: calc(93vh - 94px);
  }
  .bqtcornr-main .main-top__left {
    position: relative;
    z-index: 1;
    order: 2;
    margin-top: auto;
  }
  .bqtcornr-main .main-top__left .text {
    margin-bottom: 16px;
  }
  .bqtcornr-main .main-top__right {
    position: absolute;
    z-index: 0;
    top: 0;
    inset: 0;
    order: 1;
    background-position: top -40px center;
    background-size: auto 100%;
    margin-bottom: 0;
    margin-top: 0;
    margin-right: 0;
    height: 70%;
  }
  .bqtcornr-main .main-learn__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bqtcornr-main .main-learn__grid .card {
    display: flex;
    flex-direction: column;
    min-height: 388px;
  }
  .bqtcornr-main .main-learn__grid .card .text {
    max-width: 326px !important;
  }
  .bqtcornr-main .main-learn__grid .card::after {
    position: static;
    width: 100%;
    background-position: bottom center;
    margin-top: 12px;
  }
  .bqtcornr-main .main-learn__grid .card1 {
    order: 1;
    grid-column-end: unset;
    padding-top: 16px;
  }
  .bqtcornr-main .main-learn__grid .card1::after {
    height: 32%;
    max-height: 124px;
    margin-top: 32px;
  }
  .bqtcornr-main .main-learn__grid .card2 {
    order: 2;
  }
  .bqtcornr-main .main-learn__grid .card2::after {
    height: 50%;
    max-height: 209px;
  }
  .bqtcornr-main .main-learn__grid .card3 {
    order: 4;
  }
  .bqtcornr-main .main-learn__grid .card3::after {
    height: 50%;
    max-height: 206px;
  }
  .bqtcornr-main .main-learn__grid .card4 {
    order: 3;
    grid-column-end: unset;
  }
  .bqtcornr-main .main-learn__grid .card4::after {
    height: 32%;
    max-height: 148px;
    margin-top: 32px;
  }
  .bqtcornr-main .main-program .container {
    max-width: 768px;
  }
  .bqtcornr-main .main-program__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bqtcornr-main .main-program__grid .card {
    position: relative;
    justify-self: center;
    min-height: 396px;
  }
  .bqtcornr-main .main-program__grid .card .c-ul {
    min-height: 162px;
  }
  .bqtcornr-main .main-program__grid .card.bg-white {
    width: 100%;
    max-width: 506px;
    min-height: 396px;
    padding-bottom: 16px;
  }
  .bqtcornr-main .main-program__grid .card:nth-child(2n) {
    justify-self: center;
  }
  .bqtcornr-main .main-program__grid .card .program-card-img {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    width: 146px;
    height: 146px;
  }
  .bqtcornr-main .main-program__grid .card .program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .bqtcornr-main .main-program__grid .card-img {
    display: none;
  }
  .bqtcornr-main .main-program__grid .grid-scroll {
    display: none;
  }
  .bqtcornr-main .main-how__title {
    top: 0;
    left: 16px;
    max-width: 252px;
  }
  .bqtcornr-main .main-how__steps {
    bottom: 16px;
    left: unset;
    right: 8px;
    flex-direction: column;
    gap: 19px;
    width: auto;
  }
  .bqtcornr-main .main-how__steps .step-item {
    min-height: 99px;
    font-size: 14px;
  }
  .bqtcornr-main .main-how__steps .step-item .content {
    width: 254px;
  }
  .bqtcornr-main .main-how__steps .step-item .title.h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .bqtcornr-main .main-how__steps .step-item::before {
    content: "";
    background-position: center left;
  }
  .bqtcornr-main .main-how__steps .step-item.step1::before {
    width: 86px;
    background-size: 48px auto;
  }
  .bqtcornr-main .main-how__steps .step-item.step2 {
    position: static;
  }
  .bqtcornr-main .main-how__steps .step-item.step2::before {
    width: 86px;
    background-size: 78px auto;
  }
  .bqtcornr-main .main-how__steps .step-item.step3 {
    position: static;
  }
  .bqtcornr-main .main-how__steps .step-item.step3::before {
    width: 86px;
    background-size: 78px auto;
  }
  .bqtcornr-main .main-how__chart {
    width: 100%;
    max-width: 600px;
    top: -10px;
    left: 0;
    right: unset;
  }
  .bqtcornr-main .main-how__chart .mobile {
    display: flex;
  }
  .bqtcornr-main .main-how__chart .desctop {
    display: none;
  }
  .bqtcornr-main .main-how__card {
    min-height: 748px;
    background-image: url("../img/bg-how-gradient-mobile.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
  }
  .bqtcornr-main .main-team {
    margin-bottom: 50px;
  }
  .bqtcornr-main .main-team .subtitle {
    margin-bottom: 32px;
  }
  .bqtcornr-main .main-team__grid {
    gap: 40px;
  }
  .bqtcornr-main .main-team__grid .grid-item {
    grid-template-columns: 1fr;
    gap: 20px;
    background:
      url("../img/bg-slice-2.png") no-repeat,
      linear-gradient(
        240deg,
        #ff8a57 0%,
        #ff8a57 0%,
        rgba(255, 250, 248, 0) 100%
      );
    background-position:
      top right,
      center;
    background-size:
      264px 264px,
      auto;
  }
  .bqtcornr-main .main-team__grid .grid-item__left img {
    height: 288px;
    object-fit: cover;
  }
  .bqtcornr-main .main-team__grid .grid-item .title.h3 {
    font-size: 22px;
  }
  .bqtcornr-main .main-start {
    padding-top: 7px;
  }
  .bqtcornr-main .main-start__card {
    position: relative;
    background:
      url("../img/bg-lines.svg"),
      radial-gradient(
        117.8% 44.57% at 33.06% 79.75%,
        rgba(213, 52, 0, 0.6) 0%,
        #ff8a57 42.55%,
        rgba(254, 201, 178, 0) 100%
      ),
      linear-gradient(
        66deg,
        #ff8a57 21.41%,
        #ff8a57 32.92%,
        rgba(254, 201, 178, 0) 74.9%
      );
    background-size: auto, auto;
    padding-top: 365px;
  }
  .bqtcornr-main .main-start__left {
    max-width: auto;
  }
  .bqtcornr-main .main-start__left .text {
    margin-bottom: 16px;
  }
  .bqtcornr-main .main-start__right {
    top: -7px;
    bottom: unset;
    width: 230px;
    height: 414px;
    background-size: 441px 414px;
  }
  .bqtcornr-main .main-feedback .subtitle {
    margin-bottom: 32px;
  }
  .bqtcornr-main .main-feedback .feedback-swiper {
    padding-bottom: 82px;
  }
  .bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next,
  .bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev {
    top: unset;
    bottom: 0;
  }
  .bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-next {
    left: unset;
    right: calc(50% - 70px);
  }
  .bqtcornr-main .main-feedback .feedback-swiper .feedback-btn-prev {
    left: calc(50% - 70px);
    right: unset;
  }
  .bqtcornr-main .main-feedback .feedback-slide {
    width: 310px;
  }
  .bqtcornr-main .main-faq .container .title.h2 {
    margin-bottom: 32px;
  }
  .bqtcornr-main .main-faq__list-wrapp {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bqtcornr-main .main-faq__list {
    gap: 16px;
    justify-content: flex-start;
  }
  .bqtcornr-main .main-faq__list .btn-item {
    height: 57px;
    padding: 16px;
    font-size: 18px;
  }
  .bqtcornr-main .main-form__card {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .bqtcornr-main .main-form__left {
    display: none;
  }
  .bqtcornr-main .main-form__right .right-header {
    padding-left: 0;
    text-align: center;
  }
  .bqtcornr-main .main-form__right .tag {
    margin-left: auto;
    margin-right: auto;
  }
  .bqtcornr-main .main-form__right .title.h3 {
    font-size: 32px;
  }
  .bqtcornr-main.home .main-top__right {
    background-image: url("../img/bg-phone.webp");
  }
  .bqtcornr-main.about .main-top__container {
    grid-template-columns: 1fr;
  }
  .bqtcornr-main.about .main-top__right {
    background-position: top -50px center;
    background-image: url("../img/bg-phone-about-2.png");
  }
  .bqtcornr-main.how .main-how {
    padding-top: 94px;
  }
  .bqtcornr-main.how .main-how__title {
    top: 16px;
  }
}
@media (max-width: 450px) {
  .bqtcornr-main .main-how__steps {
    left: 8px;
    right: unset;
  }
  .bqtcornr-main .main-how__chart {
    top: 50px;
  }
}
.bqtcornr-footer {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.bqtcornr-footer .container {
  max-width: 1086px !important;
}
.bqtcornr-footer .footer-top {
  justify-content: space-between;
  margin-bottom: 32px;
}
.bqtcornr-footer .footer-logo {
  gap: 8px;
}
.bqtcornr-footer .footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bqtcornr-footer .footer-logo-text {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
.bqtcornr-footer .footer-soclinks {
  gap: 16px;
}
.bqtcornr-footer .footer-soclinks img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.bqtcornr-footer .footer-text p:not(:last-child) {
  margin-bottom: 16px;
}
.bqtcornr-footer .footer-bottom {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 10px;
  padding-top: 32px;
  padding-bottom: 28px;
  font-size: 18px;
}
.bqtcornr-footer .footer-bottom p {
  text-align: center;
}
.footer-blur {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  backdrop-filter: blur(5px);
  mask-image: linear-gradient(to top, black 0%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to top,
    black 0%,
    black 40%,
    transparent 100%
  );
  transition: height 0.3s ease-out;
}
@media (max-width: 1519px) {
  .bqtcornr-footer {
    font-size: 12px;
  }
  .bqtcornr-footer .footer-bottom {
    gap: 8px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .bqtcornr-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bqtcornr-footer .footer-bottom p {
    order: 1;
  }
  .bqtcornr-footer .footer-bottom a {
    order: 2;
  }
  .bqtcornr-footer .footer-bottom a:first-child {
    order: 3;
  }
  .bqtcornr-footer .footer-bottom a {
    text-decoration: underline;
  }
  .bqtcornr-footer .footer-bottom a:hover {
    text-decoration: none;
  }
}
html {
  scroll-padding-top: 90px;
}
html.lock {
  overflow-y: hidden;
}
.flx {
  display: flex;
  align-items: center;
}
.bqtcornr {
  position: relative;
  font-family: Inter;
  background-color: #fff;
}
.bqtcornr .container {
  width: 100%;
  height: 100%;
  max-width: 1592px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
.bqtcornr .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 40px;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 50px;
  border: 0.5px solid rgba(0, 0, 0, 0);
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
  transition: border-radius 0.3s ease-out;
  white-space: nowrap;
}
.bqtcornr .btn:hover {
  border-radius: 8px;
}
.bqtcornr .btn--black {
  background-color: #000;
  border-color: #000;
  box-shadow:
    0 0 8px 0 hsla(0, 0%, 100%, 0.4) inset,
    0 2px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
}
.bqtcornr .btn--orange {
  background-color: #ff511a;
  border-color: #ff511a;
  box-shadow:
    0 0 8px 0 hsla(0, 0%, 100%, 0.25) inset,
    0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.bqtcornr .btn--border {
  border-color: #ff511a;
  background-color: #fff;
  box-shadow:
    0 0 8px 0 rgba(255, 81, 26, 0.2) inset,
    0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.bqtcornr .btn.dots::before,
.bqtcornr .btn.dots::after,
.bqtcornr .btn.dots .span::before,
.bqtcornr .btn.dots .span::after {
  content: "•";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  font-size: 8px;
  line-height: 3px;
}
.bqtcornr .btn.dots::before {
  top: -2px;
  left: -2px;
}
.bqtcornr .btn.dots::after {
  top: -2px;
  right: -2px;
}
.bqtcornr .btn.dots .span::before {
  bottom: -2px;
  left: -2px;
}
.bqtcornr .btn.dots .span::after {
  bottom: -2px;
  right: -2px;
}
.bqtcornr .btn.dots.dots--white::before,
.bqtcornr .btn.dots.dots--white::after,
.bqtcornr .btn.dots.dots--white span::before,
.bqtcornr .btn.dots.dots--white span::after {
  color: #fff;
}
.bqtcornr .btn.dots.dots--red::before,
.bqtcornr .btn.dots.dots--red::after,
.bqtcornr .btn.dots.dots--red span::before,
.bqtcornr .btn.dots.dots--red span::after {
  color: #ff511a;
}
.bqtcornr .custom-underline {
  position: relative;
}
.bqtcornr .custom-underline::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 0;
  right: 0;
  display: flex;
  height: 50%;
  background-image: url("../img/img-underline.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
.bqtcornr .custom-underline.white::after {
  background-image: url("../img/img-underline-white.svg");
}
.bqtcornr .custom-underline-svg {
  position: relative;
}
.bqtcornr .custom-underline-svg svg,
.bqtcornr .custom-underline-svg object {
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  display: flex;
  height: auto;
  width: 100%;
}
.bqtcornr .custom-underline-svg.init svg,
.bqtcornr .custom-underline-svg.init object {
  display: none;
}
.bqtcornr .bqtcornr-bg {
  height: 100%;
  background-image: url("../img/bg-dashed-lines.svg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 74% auto;
}
.bqtcornr .bqtcornr-bg-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.bqtcornr .bqtcornr-bg-bottom {
  height: 1155px;
  width: 100%;
  border-radius: 30px 30px 0 0;
  background-image:
    url("../img/bg-lines.svg"),
    linear-gradient(
      330deg,
      #ff8a57 -1.8%,
      #ff8a57 -1.8%,
      rgba(255, 250, 248, 0) 66.83%
    );
  background-repeat: repeat, no-repeat;
}
.bqtcornr .bqtcornr-bg-bottom-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.bqtcornr-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s all ease;
  opacity: 0;
}
.bqtcornr-popup {
  position: fixed;
  z-index: 100;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  left: -100%;
  padding: 16px;
  transition-delay: 0.3s;
}
.bqtcornr-popup.active {
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  transition-delay: 0s;
}
.bqtcornr-popup.active .bqtcornr-overlay {
  opacity: 1;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(12px);
}
.bqtcornr-popup .btn-close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.bqtcornr-popup .btn-close .icon {
  height: 14px;
  width: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bqtcornr-popup-container {
  display: none;
}
.bqtcornr-popup-container.active {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 98vh;
  text-align: left;
  margin: 0 auto;
}
.bqtcornr-popup-container.container-form {
  display: grid;
  grid-template-columns: 643px 1fr;
  gap: 32px;
  max-width: 1560px;
  height: auto;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px dashed #ff511a;
  overflow: hidden;
}
.bqtcornr-popup-container.container-form .title {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-family: "Playfair Display";
  font-weight: 500;
  line-height: 124%;
  text-transform: capitalize;
  color: #000;
}
.bqtcornr-popup-container.container-form .title.h1 {
  font-size: 64px;
  font-style: italic;
}
.bqtcornr-popup-container.container-form .title.h3 {
  font-size: 32px;
  text-align: center;
}
.bqtcornr-popup-container.container-form .subtext {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.bqtcornr-popup-container.container-form .text-italic {
  font-style: italic;
}
.bqtcornr-popup-container.container-form .container-form__left {
  min-height: 834px;
  height: 100%;
  padding: 32px;
  background-image: url("../img/bg-form.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  border-radius: 30px;
}
.bqtcornr-form-wrapp {
  position: relative;
  width: 100%;
  max-width: 532px;
  height: 100%;
  max-height: 90vh;
  padding-top: 113px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
}
.bqtcornr-form-wrapp .form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  height: 130px;
}
.bqtcornr-form-wrapp .form-logo img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1519px) {
  .bqtcornr-popup .btn-close {
    top: 22px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
  .bqtcornr-popup-container.container-form {
    grid-template-columns: 1fr;
    padding: 20px 0 0;
    max-width: 600px;
  }
  .bqtcornr-popup-container.container-form .title.h3 {
    font-size: 28px;
  }
  .bqtcornr-popup-container.container-form .subtext {
    font-size: 16px;
  }
  .bqtcornr-popup-container.container-form .container-form__left {
    display: none;
  }
  .bqtcornr-form-wrapp {
    padding-top: 80px;
  }
  .bqtcornr-form-wrapp .form-logo {
    margin-bottom: 50px;
    height: 96px;
  }
} /*# sourceMappingURL=styles.min.css.map */
