<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;family=Yeseva+One&amp;display=swap");

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #2e6ed0;
  --secondary-color: #04152a;
  --primary-hover: #115ac8;
  --secondary-hover: #353535;

  --text-primary: #696969;
  --text-secondary: #ffffff;
  --text-inverted: #04152a;

  --background-color: #f2f2f2;
  --secondary-background: #04152a;
  --third-background: #ffff;
  --accordion-active: #2e6fd065;

  --border-radius-primary: 0;
  --border-radius-secondary: 0;

  --font-family: "Rubik", sans-serif;
  --secondary-family: "Yeseva One", serif;
}

body {
  margin: 0;
  width: 100%;
  background-color: var(--background-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  overflow-x: hidden;
}

body:has(.mobile-menu-active) {
  overflow: hidden;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-primary);
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

.title {
  font-weight: 400;
  font-size: 52px;
  line-height: 125%;
  letter-spacing: 0.03em;
  font-family: var(--secondary-family);
  font-style: italic;
  color: var(--text-inverted);
}

.title span {
  color: var(--primary-color);
}

.subtitle {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.03em;
  font-family: var(--secondary-family);
  color: var(--text-inverted);
}

.descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.section-name {
  display: flex;
  align-items: center;
  gap: 20px;

  font-family: var(--secondary-family);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--text-inverted);
  position: relative;
  padding: 0 40px;
  letter-spacing: 2px;
}

.section-name::before,
.section-name::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  transform: rotate(45deg);
  animation: pulse 2s infinite alternate;
  opacity: 0.7;
}

.section-name::after {
  animation-delay: 0.8s;
}

@keyframes pulse {
  from {
    transform: rotate(45deg) scale(1);
    opacity: 0.7;
  }
  to {
    transform: rotate(45deg) scale(1.3);
    opacity: 1;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 65px;
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  gap: 80px;
}

.content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: transparent;
  padding: 15px 30px;

  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  border: 1px solid;
  outline: 0.3px solid;
  outline-color: var(--primary-color);
  outline-offset: 0px;
  text-shadow: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.primary-btn:hover {
  box-shadow: inset 0 0 20px var(--primary-hover) 0 0 20px
    rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  color: var(--primary-hover);
}

.secondary-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--text-inverted);

  display: block;
  background: var(--text-secondary);
  padding: 14px 55px;
  border-radius: var(--border-radius-primary);
  border: none;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  text-decoration: none;
  color: var(--text-secondary);
  background-color: var(--text-primary);
}

.terms-privacy {
  padding: 140px 0 80px;
}

.terms-privacy .title {
  margin-bottom: 40px;
}

.terms-privacy .subtitle {
  margin: 25px 0;
}

.thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 180px;
}

.thank-you-container p {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-inverted);
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.logo img {
  width: 140px;
  object-fit: contain;
}

.link {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.04em;
  color: var(--text-inverted);

  text-decoration: none;
  position: relative;
  padding: 5px 12px;
  transition: all 0.3s ease-in-out;
}

.link:hover {
  color: var(--primary-hover);
}

.link::before,
.link::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}

.link::before {
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--primary-hover);
}

.link::after {
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--primary-hover);
}

.link:hover::before,
.link:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .title {
    font-size: 34px;
  }

  .title span {
    font-weight: 700;
    font-size: 32px;
  }

  .descr {
    font-weight: 400;
    font-size: 14px;
  }

  .section-name {
    font-size: 18px;
  }

  .primary-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .secondary-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .terms-privacy {
    padding: 120px 0 60px;
  }

  .terms-privacy .title {
    margin-bottom: 30px;
  }

  .terms-privacy .subtitle {
    margin: 25px 0;
  }
}

.wrapper {
  display: flex;
  align-items: stretch;
  position: relative;
  width: 60%;
  height: auto;
  min-height: 520px;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0px;
  bottom: -50px;
  width: 170px;
  transform: rotate(12deg);
  background-color: var(--background-color);

  opacity: 0.7;
  z-index: 1;
}

.wrapper::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 173px;
  bottom: -50px;
  width: 120px;
  transform: rotate(12deg);
  background-color: var(--background-color);

  opacity: 0.3;
  z-index: 1;
}

.wrapper.wrapper-hero::after,
.wrapper.wrapper-hero::before {
  background-color: var(--secondary-background);
}

.wrapper.left::before {
  left: auto;
  right: -80px;
}

.wrapper picture .wrapper-img {
  height: 100%;
}

.wrapper-img {
  filter: drop-shadow(0 -10px 10px rgba(0, 0, 0, 0.3));
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .wrapper {
    min-height: 340px;
  }
}
</pre></body></html>