@charset "UTF-8";
:root {
  --va-accent: #8d5bb0;
  --va-accent-light: #f5f2ff;
  --va-accent-dark: #714a9c;
  --va-hover: #714a9c;
  --va-text: #554864;
  --va-light-text: #a7a7a7;
  --va-back: #f1f5f6;
  --va-hero-back: #fbfbfb;
  --va-white: white;
  --va-userfont: inter, sans-serif;
  --va-titlefont: PlayfairDisplay, serif;
  --va-regular: 19px;
  --va-offset: 100px;
  --va-offset-big: 80px;
  --va-offset-middle: 40px;
  --va-offset-small: 24px;
  --va-gap: 48px;
  --va-menu-gap: 48px;
  --va-border-radius: 8px;
  --va-transition: transform 0.3s;
  --va-transform: scale(1.02);
  --va-overlay: rgba(255, 255, 255, 0.05);
  --va-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  --va-padding: 24px;
}
@media (max-width: 800px) {
  :root {
    --va-border-radius: 24px;
    --va-offset: 80px;
  }
}
@media (max-width: 480px) {
  :root {
    --va-border-radius: 16px;
    --va-offset: 64px;
    --va-gap: 32px;
    --va-offset-middle: 32px;
    --va-offset-small: 16px;
    --va-regular: 17px;
    --va-offset-big: 56px;
  }
}

@font-face {
  font-display: swap;
  font-family: "PlayfairDisplay";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/PlayfairDisplay-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "PlayfairDisplay";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/PlayfairDisplay-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "PlayfairDisplay";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/PlayfairDisplay-Black.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "inter";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Inter-ExtraBold.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--va-back);
}

main {
  padding-top: 80px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: 50px;
  font-family: var(--va-titlefont);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.02em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 800px) {
  h1 {
    font-size: 40px;
    text-transform: uppercase;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 150%;
  font-family: var(--va-titlefont);
}
@media (max-width: 800px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 150%;
  font-family: var(--va-userfont);
}
@media (max-width: 800px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 26px;
  font-family: var(--va-userfont);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  h4 {
    font-size: 24px;
  }
}

p {
  color: var(--va-text);
}

p,
a {
  font-size: var(--va-regular);
  font-weight: 400;
  font-family: var(--va-userfont);
}

a:hover {
  color: var(--va-hover);
}

#root,
#__next {
  isolation: isolate;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
}

ul li {
  list-style: none;
}

body {
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  font-family: var(--va-userfont);
  font-size: var(--va-regular);
}

a {
  color: var(--va-accent);
}

a:hover {
  color: var(va-accent-middle);
  text-decoration: none;
}

.va-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1340px) {
  .va-container {
    max-width: 100%;
    padding: 0 80px;
  }
}
@media (max-width: 998px) {
  .va-container {
    padding: 0 48px;
  }
}
@media (max-width: 640px) {
  .va-container {
    padding: 0 24px;
  }
}
@media (max-width: 460px) {
  .va-container {
    padding: 0 16px;
  }
}

.va-display-none {
  display: none !important;
}

.va-display-flex {
  display: flex !important;
}

.va-display-block {
  display: block !important;
}

.lock-scroll {
  max-height: 100vh;
  overflow-y: hidden;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.va-overflow {
  overflow: hidden;
}

.va-rotate::before {
  transform: rotate(90deg);
}

.va-gap {
  gap: var(--va-offset-small);
}

.va-center {
  align-items: center;
}

.va-title {
  font-size: 65px;
  font-family: var(--va-titlefont);
  font-weight: 800;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: var(--va-white);
  text-transform: uppercase;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 800px) {
  .va-title {
    font-size: 56px;
  }
}
@media (max-width: 640px) {
  .va-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .va-title {
    font-size: 40px;
  }
}

.va-section-title {
  color: var(--va-accent);
}

.va-subtitle {
  font-size: 31px;
  font-family: var(--va-titlefont);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: var(--va-white);
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 800px) {
  .va-subtitle {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .va-subtitle {
    font-size: 24px;
  }
}

.va-text-center {
  text-align: center;
}

.va-btn {
  color: var(--va-white);
  font-family: var(--va-userfont);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 24px 16px 24px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--va-accent);
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.05em; /* 5%  */
  font-weight: 700;
  line-height: 1;
  margin: 10px 0;
}
@media (max-width: 480px) {
  .va-btn {
    font-size: 16px;
  }
}

.va-btn:hover {
  background: var(--va-accent-dark);
}

.va-btn-hero {
  color: var(--va-accent-dark);
  font-family: var(--va-userfont);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 24px 16px 24px;
  width: -moz-fit-content;
  width: fit-content;
  border: 3px solid var(--va-accent-dark);
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.05em; /* 5%  */
  line-height: 1;
  margin: 10px 0;
}
@media (max-width: 480px) {
  .va-btn-hero {
    font-size: 16px;
  }
}

.va-btn-hero:hover {
  background: var(--va-accent-dark);
  color: var(--va-white);
}

.va-icons {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 80px;
}

.va-icon::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.va-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.va-img__inner {
  position: relative;
  height: 0;
  border: none;
}

.va-img__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.va-img__2-1 {
  padding-top: 55%;
}

.va-img__3-2 {
  padding-top: 80%;
}

.va-hidden {
  visibility: hidden;
  position: absolute;
  top: -116px;
}

.va-back__img {
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* Стили для модального окна */
.modal {
  display: none; /* Изначально модальное окно скрыто */
  position: fixed;
  z-index: 10000; /* Поверх всего контента */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Темный фон */
}

/* Стили для формы в модальном окне */
.modal form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 840px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

/* Стили для кнопки закрытия */
.modal .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Стили для полей формы */
.modal form input,
.modal form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.modal form button {
  background-color: var(--va-accent);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.modal form button:hover {
  background-color: var(--va-accent-dark);
}

.va-white {
  color: white;
}

.va-footer {
  margin-top: 100px;
  color: var(--va-white);
  background: linear-gradient(90deg, #8d5bb0 0%, #b79fe8 100%);
  padding: var(--va-offset-middle) 0;
  position: relative;
  overflow: hidden;
}
.va-footer__items {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .va-footer__items {
    gap: 24px;
  }
}
.va-footer__items a {
  color: var(--va-white);
  font-size: 19px;
  font-family: var(--va-userfont);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .va-footer__items a {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .va-footer__items {
    flex-direction: column;
  }
}

.va-digs {
  height: 100px;
  width: auto;
}

.va-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.va-footer-logos {
  height: 60px;
  width: auto;
}
@media (max-width: 640px) {
  .va-footer-logos {
    height: 40px;
  }
}

.va-header {
  height: 80px;
  background: linear-gradient(90deg, #8d5bb0 0%, #b79fe8 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.va-header__wrapper {
  display: flex;
  gap: 48px;
  align-items: center;
  height: 80px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .va-header__wrapper {
    gap: 16px;
  }
}
.va-header__logo img {
  max-height: 80px;
  width: 128px;
}
.va-header__logo:hover {
  opacity: 0.8;
}
.va-header__slogan {
  color: var(--va-white);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 150%;
  font-family: var(--va-userfont);
  text-align: center;
}
@media (max-width: 800px) {
  .va-header__slogan {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .va-header__slogan {
    font-size: 12px;
    text-align: center;
  }
}
.va-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  z-index: 1000;
  flex-direction: column;
  gap: 24px;
  flex-grow: 0;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100vw;
  min-height: calc(100vh - 80px);
  background-color: var(--va-white);
  transform: translateX(-100%);
  transition: 0.3s linear;
  visibility: hidden;
  padding: 0px 0 80px 0;
  will-change: transform, opacity;
  overflow: auto;
  bottom: 0;
  align-items: center;
  justify-content: center;
}
.va-header__menu a {
  font-size: 52px;
  color: var(--va-white);
  font-family: var(--va-titlefont);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.02em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .va-header__menu a {
    font-size: 40px;
  }
}
.va-header__menu a:hover {
  color: var(--va-white);
}

.va-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
}
@media (max-width: 1340px) {
  .menu-item {
    gap: unset;
    justify-content: center;
  }
}

.lock-scroll {
  max-height: 100vh;
  overflow-y: hidden;
}

.va-menu-open {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.va-menu__btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: end;
  cursor: pointer;
}

.btn-bar1,
.btn-bar3 {
  width: 30px;
  height: 4px;
  background-color: var(--va-white);
  margin: 0;
  transition: 0.3s;
  border-radius: 8px;
}

.btn-bar2 {
  width: 40px;
  height: 4px;
  background-color: var(--va-white);
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 8px;
}

.btn-animated .btn-bar1 {
  transform: rotate(-45deg) translate(-12px, 7px);
}

.btn-animated .btn-bar2 {
  opacity: 0;
}

.btn-animated .btn-bar3 {
  transform: rotate(45deg) translate(-12px, -8px);
}

@media (max-width: 1340px) {
  .main-menu-container {
    order: 3;
  }
}

.menu-phone,
.menu-insta,
.menu-tiktok {
  font-size: 21px !important;
  color: var(--va-text) !important;
  font-family: var(--va-userfont) !important;
  font-weight: 400 !important;
}
@media (max-width: 480px) {
  .menu-phone,
  .menu-insta,
  .menu-tiktok {
    font-size: 20px !important;
  }
}

.menu-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 16px;
}

.menu-item img,
.va-social {
  width: auto;
  height: 60px;
}

.va-hero {
  background-image: linear-gradient(to bottom, #e8e2ff, #f1f5f6);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .va-hero {
    min-height: unset;
    background-image: unset;
  }
}
.va-hero__wrapper {
  display: flex;
  gap: 48px;
  align-items: end;
  z-index: 2;
  height: 100%;
}
@media (max-width: 1200px) {
  .va-hero__wrapper {
    flex-direction: column;
    padding: 0 !important;
  }
}
@media (max-width: 480px) {
  .va-hero__wrapper {
    gap: 24px;
  }
}
.va-hero__wrapper-left {
  flex-basis: calc(60% - 24px);
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: var(--va-text);
  margin: 100px 0;
  z-index: 3;
}
.va-hero__wrapper-left p {
  font-style: italic;
}
@media (max-width: 1200px) {
  .va-hero__wrapper-left p {
    text-align: center;
  }
}
.va-hero__wrapper-left h1 {
  font-size: 54px !important;
}
@media (max-width: 800px) {
  .va-hero__wrapper-left h1 {
    font-size: 44px !important;
  }
}
@media (max-width: 480px) {
  .va-hero__wrapper-left h1 {
    font-size: 38px !important;
  }
}
@media (max-width: 1300px) {
  .va-hero__wrapper-left {
    flex-basis: calc(50% - 24px);
  }
}
@media (max-width: 1200px) {
  .va-hero__wrapper-left {
    flex-basis: 100%;
    margin: unset;
    width: 100%;
    order: 2;
    align-items: center;
    padding: 0 40px;
  }
  .va-hero__wrapper-left h1,
  .va-hero__wrapper-left h3 {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .va-hero__wrapper-left {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .va-hero__wrapper-left {
    gap: 24px;
  }
}
.va-hero__wrapper-right {
  flex-basis: calc(40% - 24px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
  height: 100%;
}
@media (max-width: 1300px) {
  .va-hero__wrapper-right {
    flex-basis: calc(50% - 24px);
  }
}
@media (max-width: 1200px) {
  .va-hero__wrapper-right {
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    order: 1;
    background-image: linear-gradient(to bottom, #e8e2ff, #f1f5f6);
    position: relative;
  }
}
.va-hero__wrapper-right img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  width: 439px;
  height: auto;
}
@media (max-width: 1200px) {
  .va-hero__wrapper-right img {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .va-hero__wrapper-right img {
    height: calc(100vh - 280px);
  }
}
.va-hero__cards {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  transform: translateY(-50%);
  pointer-events: auto;
  z-index: 100;
}
@media (max-width: 1200px) {
  .va-hero__cards {
    margin-top: 80px;
    transform: unset;
  }
}
@media (max-width: 998px) {
  .va-hero__cards {
    flex-direction: column;
    gap: 24px;
  }
}
.va-hero__card {
  flex-basis: calc((100% - 80px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  color: var(--va-white);
  background: linear-gradient(90deg, #8d5bb0 0%, #8d5bb0 100%);
  cursor: pointer;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 150%;
  font-family: var(--va-userfont);
  z-index: 10;
}
@media (max-width: 998px) {
  .va-hero__card {
    min-height: unset;
    padding: 40px;
  }
}
@media (max-width: 800px) {
  .va-hero__card {
    font-size: 24px;
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .va-hero__card {
    font-size: 18px;
    padding: 24px;
  }
}
.va-hero__card:hover {
  color: var(--va-white);
  background: linear-gradient(90deg, #714a9c 0%, #714a9c 100%);
}
@media (max-width: 1200px) {
  .va-hero__wrapper-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
  }
}

.va-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}
@media (max-width: 1200px) {
  .va-hero::before {
    display: none;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.va-accordeon__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--va-text);
  background-color: var(--va-accent-light);
  box-shadow: 0 5px 11.2px 2.8px rgba(136, 140, 133, 0.12);
  padding: 40px;
  gap: 16px;
  width: 100%;
  height: auto !important;
  flex-grow: 1;
}
@media (max-width: 640px) {
  .va-accordeon__item {
    padding: 40px 24px;
  }
}
.va-accordeon__content {
  display: none;
  flex-direction: column;
  gap: 8px;
}
.va-accordeon__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 8px 12px;
  color: var(--va-accent);
}
.va-accordeon__icon {
  transition: transform 0.3s ease;
}
.va-accordeon__toggle.active .va-accordeon__icon {
  transform: rotate(180deg);
}
.va-accordeon__ico {
  font-size: 32px;
  color: var(--va-accent);
  display: none;
}
.va-accordeon h4 {
  text-align: center;
  color: var(--va-text);
  flex-grow: 1;
}
.va-accordeon p {
  color: var(--va-text);
  font-size: 17px;
}
.va-accordeon__price {
  font-size: 24px;
  font-family: var(--va-userfont);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: var(--va-accent-dark);
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.va-accordeon__content p {
  position: relative;
  padding-left: 1.5em;
}
.va-accordeon__content p::before {
  content: "·";
  position: absolute;
  left: 12px;
  top: 1px;
  color: var(--va-accent);
  font-family: var(--va-userfont);
  font-size: 25px;
  line-height: 1;
}
.va-accordeon__content-subtitle {
  text-align: center;
}

.va-section {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.va-section h1 {
  color: var(--va-text);
  text-align: center;
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-button-next2,
.swiper-button-prev2 {
  color: var(--va-accent) !important;
}

.swiper-pagination-bullet-active {
  background: var(--va-accent) !important;
}

.swiper-pagination-horizontal {
  bottom: 0 !important;
}

.swiper {
  overflow: hidden;
  position: unset !important;
}

.swiper-wrapper {
  align-items: stretch;
  width: 100%;
}

.swiper-slide {
  margin-bottom: 40px;
  height: auto;
}

.va-person {
  position: relative;
  width: 100%;
}

.swiper-button-next,
.swiper-button-next2 {
  right: -40px !important;
}
@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-next2 {
    right: -12px !important;
  }
}

.swiper-button-prev,
.swiper-button-prev2 {
  left: -40px !important;
}
@media (max-width: 640px) {
  .swiper-button-prev,
  .swiper-button-prev2 {
    left: -12px !important;
  }
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}

#person {
  margin-top: 50px !important;
}
@media (max-width: 1200px) {
  #person {
    margin-top: 100px !important;
  }
}

.va-vidguk__title {
  text-align: center;
  color: var(--va-text);
  margin-bottom: 24px;
  padding: 0 24px;
}

.va-vidguk__subtitle {
  color: var(--va-text);
  font-size: 17px;
  padding: 0 24px;
}/*# sourceMappingURL=style.css.map */