/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Kodchasan';
  src: url('/fontsVGLV2/kodchasan-regularVGLV2.woff2') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Kodchasan';
  src: url('/fontsVGLV2/kodchasan-boldVGLV2.woff2') format('truetype');
  font-weight: 700;
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.headerVGLV2 {
  position: relative;
  z-index: 50;
  background: linear-gradient(274deg, #4120ae 33.18%, #001477 98.51%);
}

.headerVGLV2__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.headerVGLV2__left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.headerVGLV2__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.headerVGLV2__age {
  width: 31px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.headerVGLV2__logo {
  width: 67px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.headerVGLV2__logotext {
  width: 141px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.headerVGLV2__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.headerVGLV2__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 72px;
  row-gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerVGLV2__item {
  flex: 0 0 auto;
}

.headerVGLV2__link {
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: opacity 0.3s ease;
}

.headerVGLV2__link:hover,
.headerVGLV2__link:focus-visible {
  opacity: 0.7;
}

.headerVGLV2__burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 14px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.headerVGLV2__burger-line {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.headerVGLV2__burger-line:nth-child(1) {
  top: 8px;
}

.headerVGLV2__burger-line:nth-child(2) {
  top: 18px;
}

.headerVGLV2__burger-line:nth-child(3) {
  top: 28px;
}

.headerVGLV2__burger.is-open .headerVGLV2__burger-line:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.headerVGLV2__burger.is-open .headerVGLV2__burger-line:nth-child(2) {
  opacity: 0;
}

.headerVGLV2__burger.is-open .headerVGLV2__burger-line:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.headerVGLV2__close {
  display: none;
}

.headerVGLV2__overlay {
  display: none;
}

@media (max-width: 1100px) {
  .headerVGLV2__list {
    column-gap: 48px;
  }
}

@media (max-width: 860px) {
  .headerVGLV2__container {
    min-height: 74px;
    gap: 16px;
  }

  .headerVGLV2__burger {
    display: inline-flex;
  }

  .headerVGLV2__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: min(360px, 86vw);
    height: 100vh;
    padding: 84px 20px 28px;
    background: linear-gradient(274deg, #4120ae 33.18%, #001477 98.51%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .headerVGLV2__nav.is-open {
    transform: translateX(0);
  }

  .headerVGLV2__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

  .headerVGLV2__link {
    font-size: 16px;
  }

  .headerVGLV2__close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .headerVGLV2__close-line {
    position: absolute;
    top: 18px;
    left: 7px;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: #070727;
  }

  .headerVGLV2__close-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .headerVGLV2__close-line:nth-child(2) {
    transform: rotate(-45deg);
  }

  .headerVGLV2__overlay {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: block;
    background: rgba(7, 7, 39, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .headerVGLV2__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .headerVGLV2__container {
    min-height: 74px;
    gap: 12px;
  }

  .headerVGLV2__left {
    min-width: 0;
    flex: 1 1 auto;
  }

  .headerVGLV2__brand {
    gap: 10px;
    min-width: 0;
  }

  .headerVGLV2__age {
    width: 30.94px;
  }

  .headerVGLV2__logo {
    width: 67px;
  }

  .headerVGLV2__logotext {
    width: 115px;
    max-width: calc(100vw - 150px);
  }

  .headerVGLV2__nav {
    width: 100%;
  }
}
.heroVGLV2 {
  position: relative;
  overflow: hidden;
  padding: 85px 0 48px;

  background: linear-gradient(274deg, #4120ae 33.18%, #001477 98.51%);
}

.heroVGLV2::before {
  content: '';
  position: absolute;
  inset: 0;

  background: url('/imagesVGLV2/hero-circleVGLV2.webp') center center / cover
    no-repeat;

  z-index: 1;
}

.heroVGLV2 .container {
  position: relative;
  z-index: 2;
}

.heroVGLV2__inner {
  max-width: 720px;
}

.heroVGLV2__title {
  margin: 0 0 28px;

  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
}

.heroVGLV2__text {
  max-width: 760px;
  margin: 0 0 34px;

  color: rgba(255, 255, 255, 0.8);
  font-family: 'Kodchasan', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.heroVGLV2__list {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.heroVGLV2__item {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 9px;

  border-radius: 36px;
  background: linear-gradient(180deg, #fecd78 0%, #ffe3b0 55.29%, #f1bd67 100%);

  color: #0d1b3a;
  font-family: 'Kodchasan', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.heroVGLV2__item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .heroVGLV2 {
    background: url('/imagesVGLV2/hero-circleVGLV2.webp') right center / 550px
        auto no-repeat,
      linear-gradient(274deg, #4120ae 33.18%, #001477 98.51%);
  }

  .heroVGLV2__title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .heroVGLV2 {
    padding: 36px 0;

    background: linear-gradient(274deg, #4120ae 33.18%, #001477 98.51%);
  }

  .heroVGLV2__inner {
    max-width: 100%;
  }

  .heroVGLV2__title {
    margin: 0 0 18px;

    color: #fff;
    font-family: 'Kodchasan', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .heroVGLV2__text {
    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.8);
    font-family: 'Kodchasan', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .heroVGLV2__list {
    flex-wrap: wrap;
    gap: 6px;
  }

  .heroVGLV2__item {
    padding: 10px 12px;

    border-radius: 36px;
    background: linear-gradient(
      180deg,
      #fecd78 0%,
      #ffe3b0 55.29%,
      #f1bd67 100%
    );

    color: #0d1b3a;
    font-family: 'Kodchasan', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 5px;
  }

  .heroVGLV2__item img {
    width: 15px;
    height: 15px;
  }

  .heroVGLV2::before {
    display: none;
  }
}
.brandsVGLV2 {
  padding: 40px 0 80px;
  background: #fff;
}

.brandsVGLV2__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brandsVGLV2__item {
  display: flex;
}

.brand-cardVGLV2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 346px;
  padding: 34px 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #001477 0%, #4120ae 100%);
  box-shadow: 0 4px 6px 0 rgba(12, 20, 33, 0.15);
}

.brand-cardVGLV2__badge {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 170px;
  padding: 10px 20px 11px;
  border-radius: 19px 0;
  background: linear-gradient(180deg, #fecd78 0%, #ffe3b0 55.29%, #f1bd67 100%);
  color: #0d1b3a;
  font-family: 'Kodchasan', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.brand-cardVGLV2__top {
  position: absolute;
  top: 13px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.brand-cardVGLV2__top img {
  width: 16px;
  height: 16px;
}

.brand-cardVGLV2__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f28a;
}

.brand-cardVGLV2__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  margin-bottom: 8px;
}

.brand-cardVGLV2__logo-link img {
  width: 100%;
}

.brand-cardVGLV2__logo {
  display: block;
  max-width: 250px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-cardVGLV2__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-cardVGLV2__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-cardVGLV2__stars img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.brand-cardVGLV2__bonus {
  min-height: 42px;
  margin: 0 0 26px;
  color: #fff;
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.brand-cardVGLV2__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 0 12px;
  border-radius: 100px;
  background: linear-gradient(180deg, #00a43f 0%, #00b98b 100%);
  box-shadow: 0 4px 4px 0 rgba(12, 20, 33, 0.12);
  color: #fff;
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-cardVGLV2__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.brand-cardVGLV2__payments img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.brand-cardVGLV2__bottom {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .brandsVGLV2__item:nth-child(4) {
    grid-column: 1 / 2;
    transform: translateX(calc(50% + 14px));
  }

  .brandsVGLV2__item:nth-child(5) {
    grid-column: 2 / 3;
    transform: translateX(calc(50% + 14px));
  }
}

@media (max-width: 991px) {
  .brandsVGLV2__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brandsVGLV2__item:nth-child(4),
  .brandsVGLV2__item:nth-child(5) {
    grid-column: auto;
    transform: none;
  }
}

@media (max-width: 767px) {
  .brandsVGLV2 {
    padding: 26px 0 56px;
  }

  .brandsVGLV2__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .brand-cardVGLV2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(138px, 0.95fr);
    grid-template-areas:
      'logo bonus'
      'rating button'
      'empty payments'
      'bottom bottom';
    column-gap: 14px;
    row-gap: 8px;
    align-items: center;

    min-height: 0;
    padding: 44px 16px 16px;
    border-radius: 20px;
  }

  .brand-cardVGLV2__badge {
    min-width: 170px;
    padding: 8px 18px;
    font-size: 14px;
  }

  .brand-cardVGLV2__top {
    top: 10px;
    right: 14px;
    font-size: 14px;
  }

  .brand-cardVGLV2__logo-link {
    grid-area: logo;
    justify-content: flex-start;
    min-height: 50px;
    margin: 0;
  }

  .brand-cardVGLV2__logo {
    max-width: 180px;
    max-height: 54px;
  }

  .brand-cardVGLV2__rating-row {
    grid-area: rating;
    justify-content: flex-start;
    margin: 0;
    font-size: 20px;
  }

  .brand-cardVGLV2__bonus {
    grid-area: bonus;
    min-height: 0;
    margin: 0;
    font-size: 14px;
    text-align: center;
  }

  .brand-cardVGLV2__button {
    grid-area: button;
    min-height: 40px;
    margin: 0;
    font-size: 14px;
  }

  .brand-cardVGLV2__payments {
    grid-area: payments;
    justify-content: center;
    gap: 10px;
    margin: 0;
  }

  .brand-cardVGLV2__payments img {
    width: 20px;
    height: 20px;
  }

  .brand-cardVGLV2__bottom {
    grid-area: bottom;
    margin-top: 4px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .brand-cardVGLV2 {
    grid-template-columns: minmax(0, 1fr) minmax(126px, 0.92fr);
    column-gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-cardVGLV2__logo {
    max-width: 160px;
  }

  .brand-cardVGLV2__bonus {
    font-size: 12px;
  }

  .brand-cardVGLV2__button {
    font-size: 12px;
  }

  .brand-cardVGLV2__payments {
    gap: 8px;
  }

  .brand-cardVGLV2__payments img {
    width: 18px;
    height: 18px;
  }
}

.choiceVGLV2 {
  padding: 72px 0 80px;
  background: #fff;
}

.choiceVGLV2__title {
  margin: 0 0 14px;
  color: #070727;
  font-family: 'Kodchasan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.choiceVGLV2__text,
.choiceVGLV2__note {
  margin: 0;
  color: rgba(7, 7, 39, 0.75);
  font-family: 'Kodchasan', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.choiceVGLV2__text {
  margin-bottom: 22px;
}

.choiceVGLV2__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.choiceVGLV2__item {
  padding: 18px;
  border-radius: 22px;
  background: #e9f1fe;
}

.choiceVGLV2__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #001477 0%, #4120ae 100%);
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.choiceVGLV2__item h3,
.choiceVGLV2__bottom h3 {
  margin: 0 0 10px;
  color: #070727;
  font-family: 'Kodchasan', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.choiceVGLV2__item p,
.choiceVGLV2__bottom p {
  margin: 0;
  color: rgba(7, 7, 39, 0.72);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.choiceVGLV2__note {
  margin-bottom: 20px;
}

.choiceVGLV2__bottom {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffdda2 0%, #ffe8bd 55.29%, #ffdfaa 100%),
    #fff;
}

@media (max-width: 767px) {
  .choiceVGLV2 {
    padding: 42px 0 52px;
  }

  .choiceVGLV2__title {
    margin-bottom: 12px;
    color: #070727;
    font-family: 'Kodchasan', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
  }

  .choiceVGLV2__text,
  .choiceVGLV2__note {
    font-size: 12px;
    line-height: 1.35;
  }

  .choiceVGLV2__text {
    margin-bottom: 16px;
  }

  .choiceVGLV2__list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .choiceVGLV2__item {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .choiceVGLV2__num {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 22px;
  }

  .choiceVGLV2__item h3,
  .choiceVGLV2__bottom h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .choiceVGLV2__item p,
  .choiceVGLV2__bottom p {
    font-size: 12px;
    line-height: 1.35;
  }

  .choiceVGLV2__note {
    margin-bottom: 14px;
  }

  .choiceVGLV2__bottom {
    padding: 18px 14px;
    border-radius: 22px;
  }
}

.disclaimerVGLV2 {
  padding: 72px 0;
  background: #e9f1fe;
}

.disclaimerVGLV2__inner {
  margin: 0 auto;
}

.disclaimerVGLV2__title {
  margin: 0 0 18px;

  color: #070727;
  font-family: 'Kodchasan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.disclaimerVGLV2__text {
  margin: 0 0 28px;

  color: rgba(7, 7, 39, 0.75);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.disclaimerVGLV2__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.disclaimerVGLV2__item {
  padding: 20px;

  border-radius: 22px;
  background: linear-gradient(180deg, #001477 0%, #4120ae 100%), #fff;
}

.disclaimerVGLV2__subtitle {
  margin: 0 0 14px;

  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.disclaimerVGLV2__item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.85);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .disclaimerVGLV2 {
    padding: 42px 0;
  }

  .disclaimerVGLV2__title {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .disclaimerVGLV2__text {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .disclaimerVGLV2__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .disclaimerVGLV2__item {
    padding: 16px;
    border-radius: 22px;
  }

  .disclaimerVGLV2__subtitle {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .disclaimerVGLV2__item p {
    font-size: 12px;
    line-height: 1.4;
  }
}

.disclaimerVGLV2.discl .disclaimerVGLV2__subtitle {
  color: #070727;
}

.footerVGLV2 {
  padding: 68px 0 60px;
  background: #070727;
}

.footerVGLV2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.footerVGLV2__top-left {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  flex: 1 1 auto;
  min-width: 0;
}

.footerVGLV2__top-right {
  width: 420px;
  flex: 0 0 420px;
}

.footerVGLV2__logo {
  width: 242px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.footerVGLV2__top-text {
  margin: 0;
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerVGLV2__partner-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 46px;
}

.footerVGLV2__partner-logo {
  width: 216px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.footerVGLV2__partner-text {
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footerVGLV2__content {
  margin-bottom: 42px;
}

.footerVGLV2__title {
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footerVGLV2__text {
  max-width: 1160px;
  margin: 0 0 26px;
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerVGLV2__text:last-child {
  margin-bottom: 0;
}

.footerVGLV2__nav {
  margin-bottom: 44px;
}

.footerVGLV2__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 58px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerVGLV2__nav-link {
  color: #fff;
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footerVGLV2__copyright {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .footerVGLV2 {
    padding: 56px 0 52px;
  }

  .footerVGLV2__top {
    gap: 28px;
  }

  .footerVGLV2__top-left {
    gap: 28px;
  }

  .footerVGLV2__top-right {
    width: 340px;
    flex-basis: 340px;
  }

  .footerVGLV2__logo {
    width: 210px;
  }

  .footerVGLV2__partner-logo {
    width: 190px;
  }

  .footerVGLV2__partner-text {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .footerVGLV2__top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 34px;
  }

  .footerVGLV2__top-left {
    flex-direction: column;
    gap: 24px;
  }

  .footerVGLV2__top-right {
    width: 100%;
    flex: 1 1 auto;
  }

  .footerVGLV2__partner-row {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }

  .footerVGLV2__partner-text {
    font-size: 18px;
  }

  .footerVGLV2__content {
    margin-bottom: 34px;
  }

  .footerVGLV2__nav {
    margin-bottom: 36px;
  }

  .footerVGLV2__nav-list {
    gap: 16px 30px;
  }
}

@media (max-width: 767px) {
  .footerVGLV2 {
    padding: 52px 0 48px;
  }

  .footerVGLV2__top {
    margin-bottom: 34px;
  }

  .footerVGLV2__top-left {
    gap: 20px;
  }

  .footerVGLV2__logo {
    width: 186px;
  }

  .footerVGLV2__partner-row {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 38px;
  }

  .footerVGLV2__partner-logo {
    width: 220px;
  }

  .footerVGLV2__partner-text {
    font-size: 20px;
  }

  .footerVGLV2__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .footerVGLV2__text {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .footerVGLV2__nav-list {
    flex-direction: column;
    gap: 22px;
  }

  .footerVGLV2__nav {
    margin-bottom: 34px;
  }

  .footerVGLV2__copyright {
    max-width: 290px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footerVGLV2 {
    padding: 50px 0 42px;
  }

  .footerVGLV2__logo {
    width: 170px;
  }

  .footerVGLV2__top-text,
  .footerVGLV2__nav-link,
  .footerVGLV2__text {
    font-size: 15px;
  }

  .footerVGLV2__partner-logo {
    width: 180px;
  }

  .footerVGLV2__partner-text {
    font-size: 20px;
  }

  .footerVGLV2__title {
    font-size: 20px;
  }
}

.aboutVGLV2 {
  padding: 56px 0;
  background: #e8efff;
}

.aboutVGLV2__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.aboutVGLV2__content {
  max-width: 530px;
}

.aboutVGLV2__title {
  margin: 0 0 28px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  word-break: break-word;
}

.aboutVGLV2__text p {
  margin: 0 0 26px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.aboutVGLV2__text p:last-child {
  margin-bottom: 0;
}

.aboutVGLV2__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.aboutVGLV2__img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
}

@media (max-width: 991px) {
  .aboutVGLV2 {
    padding: 44px 0;
  }

  .aboutVGLV2__wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .aboutVGLV2__content {
    max-width: 100%;
  }

  .aboutVGLV2__image {
    justify-content: center;
  }

  .aboutVGLV2__img {
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .aboutVGLV2 {
    padding: 36px 0;
  }

  .aboutVGLV2__wrapper {
    gap: 28px;
  }

  .aboutVGLV2__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .aboutVGLV2__text p {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .aboutVGLV2__img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .aboutVGLV2__title {
    margin-bottom: 20px;
  }

  .aboutVGLV2__wrapper {
    gap: 24px;
  }

  .aboutVGLV2__text p {
    margin-bottom: 20px;
  }
}
.contactsVGLV2 {
  padding: 58px 0 64px;
  background: #e8efff;
}

.contactsVGLV2__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 575px);
  gap: 56px;
  align-items: start;
}

.contactsVGLV2__content {
  max-width: 560px;
}

.contactsVGLV2__form-wrap {
  width: 100%;
  max-width: 700px;
  justify-self: end;
}

.contactsVGLV2__title {
  margin: 0 0 28px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contactsVGLV2__subtitle {
  margin: 0 0 18px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contactsVGLV2__text {
  margin: 0 0 34px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contactsVGLV2__text--address {
  max-width: 520px;
}

.contactsVGLV2__form {
  width: 100%;
}

.contactsVGLV2__field {
  display: block;
  margin-bottom: 18px;
}

.contactsVGLV2__input,
.contactsVGLV2__textarea {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 5px;
  background: rgba(21, 13, 64, 0.19);
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contactsVGLV2__input {
  height: 64px;
  padding: 0 20px;
}

.contactsVGLV2__textarea {
  min-height: 202px;
  padding: 18px 20px;
  resize: none;
}

.contactsVGLV2__input::placeholder,
.contactsVGLV2__textarea::placeholder {
  color: rgba(7, 7, 39, 0.25);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contactsVGLV2__checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 22px;
  cursor: pointer;
}

.contactsVGLV2__checkbox-input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #2661e9;
}

.contactsVGLV2__checkbox-text {
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contactsVGLV2__button {
  width: 100%;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid var(--2, #2661e9);
  background: transparent;
  color: var(--2, #2661e9);
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contactsVGLV2__button:hover,
.contactsVGLV2__button:focus-visible {
  background: #2661e9;
  color: #fff;
}

.contactsVGLV2__message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #2661e9;
  text-align: center;
  font-family: 'Kodchasan', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .contactsVGLV2__wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(0, 595px);
    gap: 40px;
  }

  .contactsVGLV2__content {
    max-width: 500px;
  }

  .contactsVGLV2__form-wrap {
    max-width: 620px;
  }
}

@media (max-width: 991px) {
  .contactsVGLV2 {
    padding: 48px 0 56px;
  }

  .contactsVGLV2__wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 760px;
    margin: 0 auto;
  }

  .contactsVGLV2__content {
    max-width: 100%;
  }

  .contactsVGLV2__form-wrap {
    width: 100%;
    max-width: 760px;
    justify-self: stretch;
  }

  .contactsVGLV2__title {
    max-width: 640px;
    margin-bottom: 24px;
    font-size: 32px;
  }

  .contactsVGLV2__subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .contactsVGLV2__text {
    max-width: 640px;
    margin-bottom: 28px;
  }

  .contactsVGLV2__text--address {
    max-width: 640px;
  }

  .contactsVGLV2__field {
    margin-bottom: 16px;
  }

  .contactsVGLV2__input {
    height: 62px;
    padding: 0 20px;
  }

  .contactsVGLV2__textarea {
    min-height: 220px;
    padding: 18px 20px;
  }

  .contactsVGLV2__checkbox {
    grid-template-columns: 18px 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .contactsVGLV2__button {
    min-height: 52px;
  }
}

@media (max-width: 767px) {
  .contactsVGLV2 {
    padding: 36px 0 42px;
  }

  .contactsVGLV2__wrapper {
    gap: 24px;
    max-width: 100%;
  }

  .contactsVGLV2__title {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 32px;
  }

  .contactsVGLV2__subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .contactsVGLV2__text {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .contactsVGLV2__field {
    margin-bottom: 14px;
  }

  .contactsVGLV2__input {
    height: 60px;
    padding: 0 18px;
  }

  .contactsVGLV2__textarea {
    min-height: 190px;
    padding: 16px 18px;
  }

  .contactsVGLV2__checkbox {
    gap: 10px;
    margin-bottom: 18px;
  }

  .contactsVGLV2__button {
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .contactsVGLV2__title {
    font-size: 32px;
  }

  .contactsVGLV2__checkbox {
    grid-template-columns: 18px 1fr;
  }

  .contactsVGLV2__checkbox-text {
    font-size: 15px;
  }
}

.termsVGLV2 {
  padding: 64px 0 72px;
  background: #f3f3f3;
  word-wrap: break-word;
}

.termsVGLV2__inner {
  max-width: 1240px;
}

.termsVGLV2__title {
  margin: 0 0 28px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.termsVGLV2__subtitle {
  margin: 0 0 18px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.termsVGLV2__text {
  margin: 0 0 28px;
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.termsVGLV2__text--last {
  margin-bottom: 0;
}

.termsVGLV2__list {
  margin: 0 0 28px;
  padding-left: 24px;
}

.termsVGLV2__item {
  color: var(--1, #070727);
  font-family: 'Kodchasan', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.termsVGLV2__item:not(:last-child) {
  margin-bottom: 6px;
}

.termsVGLV2 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 991px) {
  .termsVGLV2 {
    padding: 52px 0 60px;
  }

  .termsVGLV2__title {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .termsVGLV2__subtitle {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .termsVGLV2__text,
  .termsVGLV2__list {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .termsVGLV2 {
    padding: 40px 0 48px;
  }

  .termsVGLV2__title {
    margin-bottom: 22px;
    font-size: 32px;
  }

  .termsVGLV2__subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .termsVGLV2__text,
  .termsVGLV2__item {
    font-size: 15px;
  }

  .termsVGLV2__text,
  .termsVGLV2__list {
    margin-bottom: 22px;
  }

  .termsVGLV2__list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .termsVGLV2 {
    padding: 34px 0 42px;
  }

  .termsVGLV2__title {
    font-size: 30px;
  }
}
