@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Regular.otf");
}

@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-SemiBold.otf");
  font-weight: 700;
}

@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-ExtraBold.otf");
  font-weight: 900;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 100vw;
  min-height: 100vh;
  overflow-y: auto !important;
  text-align: center;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

svg {
  overflow: visible;
}

.hidden-ve-fonts,
.ve-video-container {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 68px;
  line-height: 84px;
  font-weight: 900;
  color: #262626;
}

@media only screen and (max-width: 1367px) {
  h1 {
    font-size: 56px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 1023px) {
  h1 {
    font-size: 40px;
    line-height: 52px;
  }
}

@media only screen and (max-width: 481px) {
  h1 {
    font-size: 30px;
    line-height: 44px;
  }
}

h2 {
  font-size: 58px;
  line-height: 70px;
  font-weight: 900;
  color: #262626;
}

@media only screen and (max-width: 1367px) {
  h2 {
    font-size: 50px;
    line-height: 64px;
  }
}

@media only screen and (max-width: 821px) {
  h2 {
    font-size: 40px;
    line-height: 52px;
  }
}

@media only screen and (max-width: 481px) {
  h2 {
    font-size: 32px;
    line-height: 44px;
  }
}

h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
  color: #262626;
}

@media only screen and (max-width: 1367px) {
  h3 {
    font-size: 18px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 481px) {
  h3 {
    font-size: 16px;
    line-height: 30px;
  }
}

p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #262626;
  opacity: 0.85;
}

@media only screen and (max-width: 1367px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 481px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

input::-webkit-input-placeholder {
  /* Edge */
  color: #d9d9d9;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d9d9d9;
}

input::-ms-input-placeholder {
  color: #d9d9d9;
}

input::placeholder {
  color: #d9d9d9;
}

input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  margin: 0;
  border: none;
  border-bottom: 1px solid #262626;
  background-color: transparent;
  border-radius: 0;
  -webkit-touch-callout: auto !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  outline: none;
  color: #262626;
}

@media only screen and (max-width: 821px) {
  input {
    font-size: 16px;
    padding: 8px 8px 8px 4px;
  }
}

.bva--input {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 821px) {
  .bva--input input {
    font-size: 16px;
  }
}

.bva--input input:focus ~ .input-label,
.bva--input input:valid ~ .input-label {
  -webkit-transform: translate(0, -150%);
  transform: translate(0, -150%);
  font-size: 14px;
  opacity: 0.5;
}

@media only screen and (max-width: 821px) {
  .bva--input input:focus ~ .input-label,
  .bva--input input:valid ~ .input-label {
    font-size: 12px;
  }
}

.bva--input input:focus ~ .input-bar .inner_line {
  width: 100%;
}

.bva--input input[type='search'] {
  -webkit-appearance: none;
}

.bva--input .input-label {
  width: 100%;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  position: absolute;
  pointer-events: none;
  text-align: left;
  left: 0px;
  top: 10px;
  color: #262626;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

@media only screen and (max-width: 821px) {
  .bva--input .input-label {
    font-size: 16px;
    line-height: 20px;
    top: 12px;
  }
}

@media only screen and (max-width: 540px) {
  .bva--input .input-label {
    font-size: 14px;
    line-height: 18px;
    top: 14px;
  }
}

.bva--input .input-label span {
  font-weight: 400;
}

.bva--input .input-bar {
  position: relative;
  display: block;
  width: 100%;
}

.bva--input .input-bar .inner_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px;
  width: 0;
  background-color: #000;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bva--input .input-error {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  text-align: right;
  color: #df3020 !important;
  visibility: hidden;
}

@media only screen and (max-width: 821px) {
  .bva--input .input-error {
    font-size: 12px;
    text-align: center;
  }
}

.bva--input.bva--input_error input {
  color: #df3020 !important;
  border-bottom: 1px solid #df3020 !important;
}

.bva--input.bva--input_error .input-error {
  visibility: visible;
}

.bva--input.bva--input_error .input-bar .inner_line {
  background-color: #df3020 !important;
}

.bva--button {
  display: inline-block;
  border-radius: 25px;
  position: relative;
  min-width: 180px;
  padding: 0 40px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: background-color 0.25s linear;
  -webkit-transition: background-color 0.25s linear;
  -moz-transition: background-color 0.25s linear;
  -ms-transition: background-color 0.25s linear;
  -o-transition: background-color 0.25s linear;
}

.bva--button .button-text {
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.25s linear;
  -webkit-transition: color 0.25s linear;
  -moz-transition: color 0.25s linear;
  -ms-transition: color 0.25s linear;
  -o-transition: color 0.25s linear;
}

@media only screen and (max-width: 1279px) {
  .bva--button .button-text {
    font-size: 16px;
    line-height: 40px;
  }
}

.bva--button .profile-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-appearance: default-button;
  height: 50px !important;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

@media only screen and (max-width: 1279px) {
  .bva--button .profile-button {
    height: 40px !important;
  }
}

.bva--button.bva--button_primary {
  background-color: #3ce17d;
}

.bva--button.bva--button_primary .button-text {
  color: #ffffff;
}

.bva--button.bva--button_primary:hover {
  background-color: #1ec25e;
}

.bva--button.bva--button_primary:active {
  background-color: #189f4d;
}

.bva--button.bva--button_secondary {
  background-color: #ffdc6e;
}

.bva--button.bva--button_secondary .button-text {
  color: #262626;
}

.bva--button.bva--button_secondary:hover {
  background-color: #ffcd31;
}

.bva--button.bva--button_secondary:active {
  background-color: #ffc308;
}

@media only screen and (max-width: 1279px) {
  .bva--button {
    font-size: 16px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
  }
}

.link__blue {
  display: inline-block;
  color: #3264ff;
  text-decoration: underline;
  cursor: pointer;
}

.link__blue:hover {
  color: #003efe;
}

.link__black {
  display: inline-block;
  color: #262626;
  text-decoration: underline;
}

.link__black:hover {
  color: #0d0d0d;
}

.link__green {
  display: inline-block;
  color: #3ce17d;
  text-decoration: none;
}

.link__green:hover {
  color: #1fcb63;
}

.bva--toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bva--toggle .toggle--btn {
  position: relative;
  width: 30px;
  height: 16px;
  border-radius: 8px;
  background-color: #bfbfbf;
  cursor: pointer;
}

.bva--toggle .toggle--btn:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}

.bva--toggle .toggle--label {
  font-size: 18px;
  color: #262626;
  margin-left: 8px;
  opacity: 0.5;
}

.bva--toggle.bva--toggle_active .toggle--btn {
  background-color: #3ce17d;
}

.bva--toggle.bva--toggle_active .toggle--btn:after {
  left: 16px;
}

.bva--toggle.bva--toggle_active .toggle--label {
  opacity: 1;
}

.bva--checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.bva--checkbox .checkbox--btn {
  width: 16px;
  height: 16px;
  padding: 2px;
  border-radius: 50%;
  border: 1px solid #999;
}

.bva--checkbox .checkbox--btn div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.bva--checkbox .checkbox--label {
  font-size: 18px;
  color: #262626;
  margin-left: 8px;
}

.bva--checkbox.bva--checkbox_active .checkbox--btn div {
  background-color: #3ce17d;
}

.bva--checkbox.bva--checkbox_active .checkbox--label {
  opacity: 1;
}

#bva--footer {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
}

@media only screen and (max-width: 481px) {
  #bva--footer img {
    width: 46px;
  }
}

#bva--footer .footer--powered {
  font-size: 14px;
  line-height: 28px;
  margin-top: 10px;
  color: #262626;
}

#bva--footer .footer--dynamic {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 18px;
  color: #262626;
}

@media only screen and (max-width: 481px) {
  #bva--footer .footer--dynamic {
    margin-top: 10px;
    font-size: 16px;
  }
}

#bva--footer .link__green {
  display: inline-block;
  margin-top: 15px;
}

#bva--footer .footer--terms a {
  display: inline-block;
  color: #bbbbbb;
  font-size: 12px;
  text-decoration: none;
  margin: 15px 4px;
}

@media only screen and (max-width: 481px) {
  #bva--footer {
    margin-bottom: 0;
  }
}

#bva--hero {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../assets/image/hero_desktop_bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 1;
}

#bva--hero .hero--creative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

#bva--hero .hero--creative .hero--creative-video {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 310px;
  width: 100%;
}

#bva--hero .hero--creative .hero--creative-video img {
  position: relative;
  max-width: 100%;
  z-index: 2;
}

#bva--hero .hero--creative .hero--creative-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1023px) {
  #bva--hero .hero--creative .hero--creative-video {
    max-width: 220px;
    margin: 20px auto;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--creative .hero--creative-video {
    max-width: 150px;
    margin: 40px auto 20px auto;
  }
}

#bva--hero .hero--creative .hero--creative-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
}

#bva--hero .hero--creative .hero--creative-products .products_desktop {
  height: 650%;
  min-height: 650%;
  width: 100%;
  margin-left: 60px;
}

#bva--hero .hero--creative .hero--creative-products .products_desktop img {
  display: block;
  height: 33.33%;
}

@media only screen and (max-width: 1367px) {
  #bva--hero .hero--creative .hero--creative-products .products_desktop {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--hero .hero--creative .hero--creative-products .products_desktop {
    display: none;
  }
}

#bva--hero .hero--creative .hero--creative-products .products_mobile {
  display: none;
  min-width: 650%;
}

#bva--hero .hero--creative .hero--creative-products .products_mobile img {
  display: block;
  width: 33.33%;
}

@media only screen and (max-width: 1023px) {
  #bva--hero .hero--creative .hero--creative-products {
    display: none;
  }
}

@media only screen and (max-width: 481px) {
  #bva--hero .hero--creative .hero--creative-products {
    display: block;
    height: auto;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--creative {
    display: none;
  }
}

@media only screen and (max-width: 481px) {
  #bva--hero .hero--creative {
    position: static;
    display: block;
    width: 100%;
    text-align: center;
  }
}

#bva--hero .hero--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
  padding-left: 8%;
}

#bva--hero .hero--content .hero--content-inner {
  max-width: 741px;
  text-align: left;
}

#bva--hero .hero--content .hero--content-inner h1 {
  position: relative;
  display: block;
  text-align: left;
}

#bva--hero .hero--content .hero--content-inner h1 span {
  position: relative;
}

#bva--hero .hero--content .hero--content-inner h1 span:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: -5%;
  width: 110%;
  height: 40px;
  background-color: #ffdc6e;
  border-radius: 20px;
  z-index: -1;
}

@media only screen and (max-width: 1681px) {
  #bva--hero .hero--content .hero--content-inner h1 span:after {
    height: 36px;
    border-radius: 18px;
  }
}

@media only screen and (max-width: 1279px) {
  #bva--hero .hero--content .hero--content-inner h1 span:after {
    height: 30px;
    border-radius: 15px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--hero .hero--content .hero--content-inner h1 span:after {
    height: 26px;
    border-radius: 13px;
  }
}

#bva--hero .hero--content .hero--content-inner > div {
  padding-right: 140px;
}

#bva--hero .hero--content .hero--content-inner > div p {
  text-align: left;
  margin-top: 40px;
}

@media only screen and (max-width: 1279px) {
  #bva--hero .hero--content .hero--content-inner > div p {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content .hero--content-inner > div p {
    margin-top: 20px;
  }
}

#bva--hero .hero--content .hero--content-inner > div .bva--input {
  max-width: 640px;
  margin-top: 80px;
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content .hero--content-inner > div .bva--input {
    margin-top: 40px;
  }
}

#bva--hero .hero--content .hero--content-inner > div .bva--button {
  margin-top: 12px;
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content .hero--content-inner > div .bva--button {
    margin: 10px auto;
  }
}

@media only screen and (max-width: 1279px) {
  #bva--hero .hero--content .hero--content-inner > div {
    padding-right: 100px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content .hero--content-inner > div {
    text-align: center;
  }
}

@media only screen and (max-width: 481px) {
  #bva--hero .hero--content .hero--content-inner > div {
    padding: 0;
  }
}

@media only screen and (max-width: 1681px) {
  #bva--hero .hero--content .hero--content-inner {
    max-width: 600px;
  }
}

@media only screen and (max-width: 1279px) {
  #bva--hero .hero--content .hero--content-inner {
    max-width: 500px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content .hero--content-inner {
    max-width: 600px;
  }
}

@media only screen and (max-width: 1681px) {
  #bva--hero .hero--content {
    padding-left: 6%;
  }
}

@media only screen and (max-width: 1279px) {
  #bva--hero .hero--content {
    padding: 0 3%;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--hero .hero--content {
    margin: 0;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero .hero--content {
    width: 100%;
    padding: 40px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--hero .hero--content {
    width: 100%;
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--hero {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-aspect-ratio: 10 / 14) {
  #bva--hero {
    background-image: url("../assets/image/hero_mobile_bg.svg");
  }
}

.loading--screen {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: #ffdc6e;
  z-index: 2;
  display: none;
}

.loading--screen .loading--screen-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.loading--screen .loading--screen-content .loading--screen-animation {
  width: 100%;
  height: 40%;
  max-width: 100%;
  max-height: 40%;
  position: relative;
  z-index: 2;
}

.service--down-sreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #222;
  color: #a3a3a3;
  z-index: 1000;
  display: none;
}

.service--down-sreen > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  padding: 0 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service--down-sreen > div {
    padding: 0 30px;
  }
}

@media screen and (max-width: 480px) {
  .service--down-sreen > div {
    padding: 0 15px;
  }
}

.service--down-sreen > div .text {
  color: #f2f2f2;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .service--down-sreen > div .text {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 480px) {
  .service--down-sreen > div .text {
    font-size: 20px;
    line-height: 24px;
  }
}

.service--down-sreen > div .gears {
  position: relative;
  width: 100%;
  height: 150px;
}

.service--down-sreen > div .gears .gear-1 {
  width: 70px;
  margin-top: 40px;
  -webkit-animation: tool-one 4s infinite linear;
  animation: tool-one 4s infinite linear;
}

@media screen and (max-width: 768px) {
  .service--down-sreen > div .gears .gear-1 {
    margin-top: 20px;
  }
}

.service--down-sreen > div .gears .gear-2 {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: 12px;
  width: 45px;
  -webkit-animation: tool-two 3s infinite linear;
  animation: tool-two 3s infinite linear;
}

@media screen and (max-width: 768px) {
  .service--down-sreen > div .gears .gear-2 {
    top: 80px;
  }
}

.service--down-sreen > div .gears .gear-3 {
  position: absolute;
  top: 102px;
  right: 50%;
  margin-right: 15px;
  width: 30px;
  -webkit-animation: tool-two 2s infinite linear;
  animation: tool-two 2s infinite linear;
}

@media screen and (max-width: 768px) {
  .service--down-sreen > div .gears .gear-3 {
    top: 82px;
  }
}

@-webkit-keyframes tool-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tool-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tool-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes tool-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

#bva--gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  overflow: visible;
  z-index: 3;
  display: none;
}

#bva--gallery .gallery--close {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  left: calc(100% - 84px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

#bva--gallery .gallery--close .close--d {
  display: block;
}

@media only screen and (max-width: 1025px) {
  #bva--gallery .gallery--close .close--d {
    display: none;
  }
}

#bva--gallery .gallery--close .close--m {
  display: none;
}

@media only screen and (max-width: 1025px) {
  #bva--gallery .gallery--close .close--m {
    display: block;
  }
}

@media only screen and (max-width: 1025px) {
  #bva--gallery .gallery--close {
    top: 10px;
    right: 5px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--gallery .gallery--close {
    top: 5px;
    right: 0px;
  }
}

#bva--gallery .gallery--inner {
  width: 100%;
  padding: 60px 30px;
  text-align: center;
}

#bva--gallery .gallery--inner .gallery--header {
  max-width: 1430px;
  padding: 30px 60px;
  margin: 0 auto;
  text-align: left;
  background-image: url("../assets/image/gallery_d_bg.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 26px;
  overflow: hidden;
}

#bva--gallery .gallery--inner .gallery--header p {
  margin-top: 24px;
  max-width: 550px;
}

@media only screen and (max-width: 821px) {
  #bva--gallery .gallery--inner .gallery--header p {
    max-width: 350px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--gallery .gallery--inner .gallery--header p {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1200px) {
  #bva--gallery .gallery--inner .gallery--header h2 {
    max-width: 650px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--gallery .gallery--inner .gallery--header h2 {
    max-width: 360px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--gallery .gallery--inner .gallery--header h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--gallery .gallery--inner .gallery--header {
    padding: 20px;
    background-image: url("../assets/image/gallery_m_bg.svg");
    background-position: bottom center;
    border-radius: 26px;
  }
}

#bva--gallery .gallery--inner .gallery-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1430px;
  margin: 20px auto;
}

#bva--gallery .gallery--inner .gallery-cards:after {
  content: '';
  width: calc(50% - 22px);
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card {
  position: relative;
  display: block;
  width: calc(25% - 22px);
  margin: 13px 0;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  cursor: pointer;
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card img {
  display: block;
  width: 100%;
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card .card--hover-d {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card .card--hover-d p {
  color: #ffffff;
  font-size: 14px;
}

@media only screen and (max-width: 1279px) {
  #bva--gallery .gallery--inner .gallery-cards .gallery-card .card--hover-d {
    padding: 10px;
  }
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card .card--hover-m {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

@media only screen and (max-width: 1025px) {
  #bva--gallery .gallery--inner .gallery-cards .gallery-card .card--hover-m {
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  #bva--gallery .gallery--inner .gallery-cards .gallery-card:hover .card--hover-d {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 1025px) {
  #bva--gallery .gallery--inner .gallery-cards .gallery-card {
    width: calc(33% - 20px);
    margin: 10px;
    border-radius: 12px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--gallery .gallery--inner .gallery-cards .gallery-card {
    width: calc(50% - 16px);
    margin: 8px;
    border-radius: 12px;
  }
}

#bva--gallery .gallery--inner .gallery-cards .gallery-card .grid::after {
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

@media only screen and (max-width: 821px) {
  #bva--gallery .gallery--inner {
    padding: 40px 24px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--gallery .gallery--inner {
    padding: 40px 14px;
  }
}

#bva--template {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-image: url("../assets/image/template_d_bg.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  padding: 40px 20px;
  z-index: 4;
  display: none;
}

#bva--template .template--gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  color: #262626;
  opacity: 0.9;
  cursor: pointer;
}

#bva--template .template--gallery svg {
  width: 16px;
  margin-right: 16px;
  border-radius: 6px;
}

#bva--template .template--gallery:hover {
  text-decoration: underline;
}

#bva--template .template--gallery:hover img {
  background-color: #ffdc6e;
}

@media only screen and (max-width: 821px) {
  #bva--template .template--gallery {
    font-size: 16px;
    margin-top: 40px;
  }
  #bva--template .template--gallery svg {
    width: 10px;
    margin-right: 16px;
    border-radius: 6px;
  }
}

#bva--template .template--setup {
  width: 440px;
  height: auto;
  text-align: left;
}

#bva--template .template--setup .template--label {
  font-size: 14px;
  line-height: 18px;
  color: #1ec364;
}

#bva--template .template--setup .template--cta {
  margin-top: 90px;
}

#bva--template .template--setup .template--cta input {
  margin-top: 10px;
}

@media only screen and (max-width: 821px) {
  #bva--template .template--setup .template--cta {
    margin-top: 30px;
  }
}

#bva--template .template--setup .template--options {
  margin-top: 30px;
}

#bva--template .template--setup .template--options .template--label {
  padding-bottom: 5px;
}

#bva--template .template--setup .template--options .bva--toggle {
  margin-top: 15px;
}

#bva--template .template--setup .template--preview {
  margin-top: 60px;
}

#bva--template .template--setup .template--preview .template--label {
  padding-bottom: 5px;
}

#bva--template .template--setup .template--preview .bva--checkbox {
  margin-top: 15px;
}

@media only screen and (max-width: 821px) {
  #bva--template .template--setup .template--preview {
    display: none;
  }
}

#bva--template .template--setup .bva--button {
  margin-top: 80px;
}

@media only screen and (max-width: 821px) {
  #bva--template .template--setup .bva--button {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--template .template--setup {
    padding: 20px;
  }
}

#bva--template .template--slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#bva--template .template--slider .template--canvases {
  position: relative;
  width: 360px;
  overflow: hidden !important;
  margin-left: 140px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
}

#bva--template .template--slider .template--canvases canvas {
  border-radius: 20px;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper {
  position: relative;
  width: 360px;
  margin-left: 40px;
  overflow: hidden;
  pointer-events: none;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .template--loader {
  position: relative;
  width: 100%;
  z-index: 3;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .template--loader .loader--bg {
  position: relative;
  width: 100%;
  z-index: 0;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .template--loader .loader--bg img {
  display: block;
  width: 100%;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .template--loader .loader--spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .template--loader .loader--spinner img {
  width: 100%;
}

#bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper .canvases--wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1023px) {
  #bva--template .template--slider .template--canvases {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--template .template--slider .template--canvases {
    width: 240px;
    margin: 20px;
  }
  #bva--template .template--slider .template--canvases .template--canvases--wrapper {
    width: 840px;
  }
  #bva--template .template--slider .template--canvases .template--canvases--wrapper .template--wrapper {
    position: relative;
    width: 240px;
    margin-left: 40px;
  }
}

@media only screen and (max-width: 821px) and (max-width: 360px) {
  #bva--template .template--slider .template--canvases {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px 7px;
  }
}

#bva--template .template--slider .change--arrow {
  display: none;
  width: 30px;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

#bva--template .template--slider .change--arrow svg {
  width: 14px;
}

#bva--template .template--slider .change--arrow svg * {
  fill: #262626;
  opacity: 0.95;
}

#bva--template .template--slider .change--arrow.change--arrow_disabled svg * {
  opacity: 0.6;
}

@media only screen and (max-width: 821px) {
  #bva--template .template--slider .change--arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 821px) {
  #bva--template .template--slider {
    width: 100%;
    margin-top: 15px;
  }
}

#bva--template .selected--preview {
  display: none;
  width: 100%;
}

#bva--template .selected--preview .preview--dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bva--template .selected--preview .preview--dots > div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #222;
  margin: 0 8px;
  opacity: 0.5;
}

#bva--template .selected--preview .preview--dots > div.dot_active {
  opacity: 1;
}

#bva--template .selected--preview .preview--name {
  font-size: 14px;
  counter-reset: #262626;
  margin-top: 10px;
  opacity: 0.6;
}

@media only screen and (max-width: 821px) {
  #bva--template .selected--preview {
    display: block;
  }
}

#bva--template .template-submit-wrapper {
  text-align: left;
}

@media only screen and (max-width: 821px) {
  #bva--template .template-submit-wrapper {
    text-align: center;
  }
}

@media (max-aspect-ratio: 10 / 14) {
  #bva--template {
    background-image: url("../assets/image/template_m_bg.svg");
    background-position: top center;
  }
}

@media only screen and (max-width: 821px) {
  #bva--template {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 0;
  }
}

#bva--form {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  background-image: url("../assets/image/form_d_bg.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  z-index: 9;
  display: none;
}

#bva--form .form--content {
  text-align: center;
}

#bva--form .form--content h2 {
  margin: 60px auto 0 auto;
  padding-bottom: 40px;
  max-width: 650px;
}

@media only screen and (max-width: 1025px) {
  #bva--form .form--content h2 {
    padding-bottom: 20px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--form .form--content h2 {
    max-width: 300px;
    padding-bottom: 10px;
  }
}

#bva--form .form--content p {
  margin: 30px auto 0 auto;
  max-width: 750px;
}

@media only screen and (max-width: 1025px) {
  #bva--form .form--content p {
    padding-bottom: 60px;
    margin: 20px auto 0 auto;
  }
}

#bva--form .form--content .bva--input {
  margin: 60px auto 0 auto;
  max-width: 490px;
}

@media only screen and (max-width: 1025px) {
  #bva--form .form--content .bva--input {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--form .form--content .bva--input {
    margin-top: 10px;
  }
}

#bva--form .form--content .bva--button {
  margin-top: 60px;
}

@media only screen and (max-width: 1025px) {
  #bva--form .form--content .bva--button {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--form .form--content .bva--button {
    margin-top: 10px;
  }
}

#bva--form .form--footer {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 30px;
}

@media only screen and (max-width: 1025px) {
  #bva--form .form--footer {
    margin-bottom: 20px;
  }
}

#bva--form .form--footer p {
  margin: 0 auto;
  max-width: 750px;
  opacity: 0.5;
}

@media (max-aspect-ratio: 8 / 12) {
  #bva--form {
    background-image: url("../assets/image/form_m_bg.svg");
    background-position: left top;
  }
}

#bva--done,
#bva--error {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  background-color: #fff;
  background-image: url("../assets/image/done_d_bg.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
  display: none;
}

#bva--done .powered--by-hunch,
#bva--error .powered--by-hunch {
  width: 100%;
  margin-top: 5%;
}

#bva--done .powered--by-hunch img,
#bva--error .powered--by-hunch img {
  width: 80px;
}

@media only screen and (max-width: 821px) {
  #bva--done .powered--by-hunch img,
  #bva--error .powered--by-hunch img {
    width: 50px;
  }
}

#bva--done .powered--by-hunch .powered--powered,
#bva--error .powered--by-hunch .powered--powered {
  font-size: 14px;
  margin-top: 15px;
  color: #262626;
}

#bva--done .powered--by-hunch .powered--powered .link__black,
#bva--error .powered--by-hunch .powered--powered .link__black {
  text-decoration: none;
}

@media only screen and (max-width: 821px) {
  #bva--done .powered--by-hunch .powered--powered,
  #bva--error .powered--by-hunch .powered--powered {
    font-size: 12px;
    margin-top: 10px;
  }
}

#bva--done .powered--content,
#bva--error .powered--content {
  position: relative;
  max-width: 750px;
  margin: 20px auto;
  overflow: auto;
}

#bva--done .powered--content p,
#bva--error .powered--content p {
  margin-top: 30px;
}

#bva--done .powered--content .link__blue,
#bva--error .powered--content .link__blue {
  margin-top: 80px;
}

@media only screen and (max-width: 1367px) {
  #bva--done .powered--content .link__blue,
  #bva--error .powered--content .link__blue {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--done .powered--content .link__blue,
  #bva--error .powered--content .link__blue {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1367px) {
  #bva--done .powered--content,
  #bva--error .powered--content {
    max-width: 650px;
  }
}

@media (max-aspect-ratio: 12 / 10) {
  #bva--done,
  #bva--error {
    background-image: url("../assets/image/done_m_bg.svg");
  }
}

@media only screen and (max-width: 481px) {
  #bva--done,
  #bva--error {
    padding: 20px;
  }
}

#bva--download {
  position: relative;
  padding: 20px 40px;
  background-image: url("../assets/image/download_d_bg.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 1;
}

#bva--download .download--hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  padding: 20px;
}

@media only screen and (max-width: 481px) {
  #bva--download .download--hero {
    padding: 20px 0;
  }
}

#bva--download .download--hero .powered--by-hunch {
  width: 100%;
  margin-top: 40px;
  opacity: 0;
}

#bva--download .download--hero .powered--by-hunch img {
  width: 80px;
}

@media only screen and (max-width: 821px) {
  #bva--download .download--hero .powered--by-hunch img {
    width: 50px;
  }
}

#bva--download .download--hero .powered--by-hunch .powered--powered {
  font-size: 14px;
  margin-top: 15px;
  color: #262626;
}

@media only screen and (max-width: 821px) {
  #bva--download .download--hero .powered--by-hunch .powered--powered {
    font-size: 12px;
    margin-top: 10px;
  }
}

#bva--download .download--hero .download--hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  width: 750px;
}

#bva--download .download--hero .download--hero-content h2 {
  margin-top: 20px;
  opacity: 0;
}

#bva--download .download--hero .download--hero-content p {
  margin-top: 40px;
  opacity: 0;
}

#bva--download .download--hero .download--hero-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  text-align: center;
  padding-bottom: 20px;
  opacity: 0;
}

#bva--download .download--hero .download--hero-arrow svg {
  animation: 1s down infinite alternate;
  -webkit-animation: 1s down infinite alternate;
}

#bva--download .video--section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  margin-top: 190px;
}

#bva--download .video--section .video--section-text {
  width: 55%;
  max-width: 667px;
  text-align: left;
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .video--section-text {
    width: 100%;
    max-width: 100%;
  }
}

#bva--download .video--section .video--section-text .video--section-subheading {
  color: #3ce17d;
  font-size: 22px;
  font-weight: 700;
  line-height: 38px;
  opacity: 0;
}

#bva--download .video--section .video--section-text .video--section-heading {
  color: #262626;
  margin-top: 60px;
  font-size: 36px;
  font-weight: 900;
  line-height: 44px;
  opacity: 0;
}

@media only screen and (max-width: 1367px) {
  #bva--download .video--section .video--section-text .video--section-heading {
    margin-top: 40px;
    max-width: 500px;
    font-size: 28px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--download .video--section .video--section-text .video--section-heading {
    font-size: 22px;
    line-height: 30px;
    margin-top: 30px;
  }
}

#bva--download .video--section .video--section-text .video--section-body {
  color: #262626;
  padding-top: 20px;
  font-size: 16px;
  line-height: 28px;
  margin-top: 0;
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .video--section-text .video--section-body {
    max-width: 680px;
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--download .video--section .video--section-text .video--section-body {
    font-size: 14px;
    line-height: 18px;
  }
}

#bva--download .video--section .video--section-videos-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 45%;
  max-width: 360px;
  opacity: 0;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-videos {
  overflow: hidden;
  height: 640px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 0px 1px #bfbfbf;
  box-shadow: 0px 0px 0px 1px #bfbfbf;
}

@media only screen and (max-width: 1367px) {
  #bva--download .video--section .video--section-videos-wrapper .video--section-videos {
    height: 540px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--download .video--section .video--section-videos-wrapper .video--section-videos {
    height: 424px;
  }
}

#bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video {
  margin-bottom: 20px;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video .video--section-video-inner {
  position: relative;
  width: 360px;
  height: 640px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 0px 2px #000000;
  box-shadow: 0px 0px 0px 2px #000000;
  overflow: hidden;
}

@media only screen and (max-width: 1367px) {
  #bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video .video--section-video-inner {
    width: 306px;
    height: 540px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video .video--section-video-inner {
    width: 240px;
    height: 424px;
  }
}

#bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video .video--section-video-inner video {
  width: 100%;
  opacity: 0;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-videos .video--section-video .swipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3ce17d;
  z-index: 2;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-top: 40px;
  opacity: 0;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .video--section-video-dots_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .arrow_left,
#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .arrow_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
  width: 25px;
  cursor: pointer;
  opacity: 0.4;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .arrow_left:hover,
#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .arrow_right:hover {
  opacity: 0.8;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .video--section-video-dot {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 5px;
  cursor: pointer;
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .video--section-video-dot > div {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .video--section-video-dot:hover > div, #bva--download .video--section .video--section-videos-wrapper .video--section-video-dots .video--section-video-dot.video--section-video-dot_active > div {
  background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1367px) {
  #bva--download .video--section .video--section-videos-wrapper {
    max-width: 306px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .video--section-videos-wrapper {
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}

#bva--download .video--section .video--section-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 318px;
  height: 60px;
  margin-top: 60px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  background-color: #3ce17d;
  color: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (max-width: 1367px) {
  #bva--download .video--section .video--section-button {
    font-size: 16px;
    width: 260px;
    height: 52px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .video--section-button {
    font-size: 16px;
    width: 220px;
    height: 50px;
    margin: 0 auto;
    margin-top: 40px;
  }
}

#bva--download .video--section .video--section-button svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .video--section-button svg {
    width: 20px;
    height: 20px;
  }
}

#bva--download .video--section .video--section-button:hover:after {
  opacity: 1;
}

#bva--download .video--section .video--section-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#bva--download .video--section .btn--download-desktop {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .btn--download-desktop {
    display: none;
  }
}

#bva--download .video--section .btn--mobile-desktop {
  display: none;
  width: 100%;
  margin-top: 15px;
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section .btn--mobile-desktop {
    display: block;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--download .video--section {
    margin-top: 100px;
  }
}

#bva--download .creative--data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 140px;
}

#bva--download .creative--data .creative--data-image {
  width: 100%;
  opacity: 0;
}

#bva--download .creative--data .creative--data-image img {
  margin: 0 auto;
  margin-right: 70px;
  width: 450px;
  overflow: visible;
}

@media only screen and (max-width: 1023px) {
  #bva--download .creative--data .creative--data-image img {
    width: 360px;
    margin-right: 60px;
  }
}

@media only screen and (max-width: 481px) {
  #bva--download .creative--data .creative--data-image img {
    width: 240px;
    margin-right: 50px;
  }
}

#bva--download .creative--data .creative--data-header {
  width: 100%;
  color: #262626;
  font-size: 36px;
  font-weight: 900;
  line-height: 70px;
  padding-top: 30px;
  text-align: center;
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  #bva--download .creative--data .creative--data-header {
    font-size: 30px;
    line-height: 50px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 820px) {
  #bva--download .creative--data .creative--data-header {
    font-size: 24px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 430px) {
  #bva--download .creative--data .creative--data-header {
    font-size: 16px;
    line-height: 30px;
  }
}

#bva--download .creative--data .creative--data-body {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  #bva--download .creative--data .creative--data-body {
    max-width: 600px;
    padding: 0;
  }
}

#bva--download .creative--data .creative--data-body p {
  padding: 30px 0;
  font-size: 20px;
  line-height: 34px;
  color: #262626;
}

@media only screen and (max-width: 1023px) {
  #bva--download .creative--data .creative--data-body p {
    font-size: 16px;
    line-height: 26px;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 820px) {
  #bva--download .creative--data .creative--data-body p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  #bva--download .creative--data {
    padding-top: 140px;
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 821px) {
  #bva--download .creative--data {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

@media (max-aspect-ratio: 12 / 10) {
  #bva--download {
    background-image: url("../assets/image/download_m_bg.svg");
  }
}

@media only screen and (max-width: 481px) {
  #bva--download {
    padding: 20px;
  }
}

@keyframes down {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(14px);
  }
}
/*# sourceMappingURL=main.css.map */