@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
/* Variables */
:root {
  --bg-color: white;
  --text-color: #000211;
  --text-color-light: white;
  --text-color-gray: #95969b;
  --light-color: white;
  --dark-color: #000211;
  --dark-color-hover: rgba(0, 2, 17, 0.8);
  --light-gray-color: #F8F8F8;
  --light-gray-color-hover: #e8e5e5;
  /*--light-gray-color-with-transparency: rgba(248, 248, 248, 1);*/
  --light-gray-color-with-transparency: rgba(231, 231, 231, 0.4);
  --medium-gray-color: #999a9f;
  --dark-gray-color: #1A1B29;
  --accent-color: #FF5733;
  --accent-color-hover: #ed3811;
  --accent-color-with-transparency: rgba(255, 87, 51, 0.07);
  --error-color: #f66;
  --error-background-color: rgba(255, 102, 102, 0.15);
  --purple-color: #5919EB;
  --purple-background-color: #5919EB12;
  --green-color-light: rgba(47, 187, 91, 0.1);
  --primary-font: 'Inter', sans-serif;
  --border-radius-small: 10px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --box-shadow: -1px -1px 7px 0px rgba(0, 0, 0, 0.04);
  --box-shadow-hover: -1px -1px 10px 0px rgba(0, 0, 0, 0.1);
  --screen-xl: 1440px;
  --screen-lg: 1200px;
  --screen-md: 768px;
  --screen-sm: 360px;
}
/* General Styles */
html {
  /*background-color: var(--dark-color);*/
  /*background: linear-gradient(to bottom, var(--light-color), var(--dark-color));*/
}
@media (max-width: 768px) {
  html {
    padding-bottom: 60px;
  }
}
*,
*::before,
*::after {
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}
body {
  position: relative;
  font-family: var(--primary-font), sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-color);
  color: var(--text-color);
  overflow-x: hidden;
}
main {
  padding-top: calc(68px + 30px);
  min-height: 85vh;
}
@media (max-width: 1200px) {
  main {
    padding-top: calc(61px + 30px);
  }
}
@media (max-width: 768px) {
  main {
    padding-top: calc(68px + 30px);
  }
}
/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: center;
  color: var(--dark-color);
}
p {
  padding: 0;
  margin: 0;
}
ol,
ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
h1 {
  font-size: 72px;
  line-height: 82px;
  font-weight: 600;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 42px;
    line-height: 42px;
  }
}
h2 {
  max-width: 600px;
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  h2 {
    max-width: 100%;
    font-size: 24px;
    line-height: 32px;
  }
}
/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* UI Styles */
*:focus,
*:focus-visible,
*:focus-within,
*:active {
  outline: none;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: calc(1320px + 60px);
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}
.li-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 22px;
}
.data-title {
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--border-radius-medium);
  color: var(--text-color);
  background-color: var(--light-gray-color);
  border: none;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
@media (max-width: 1200px) {
  .button {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 18px;
  }
}
.button:hover {
  background-color: var(--light-gray-color-hover);
}
.button--fake {
  cursor: auto;
}
.button--fake,
.button--fake:hover {
  background-color: var(--light-gray-color);
}
.button--light {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.button--light:hover {
  background-color: var(--light-gray-color-hover);
}
.button--accent {
  background-color: var(--accent-color);
  color: var(--text-color-light);
}
.button--accent:hover {
  background-color: var(--accent-color-hover);
}
.button--arrow-icon:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/images/icons/chevron-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.button--active,
.button.active {
  background-color: var(--dark-color);
  color: var(--text-color-light);
}
.button--activehover,
.button.activehover {
  background-color: var(--dark-color-hover);
}
.button--inactive,
.button.inactive {
  color: var(--medium-gray-color);
}
.button--plus {
  background-color: var(--accent-color);
  color: var(--text-color-light);
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .button--plus {
    width: 40px;
    height: 40px;
  }
}
.button--plus:after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('/images/icons/plus-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .button--plus:after {
    width: 24px;
    height: 24px;
  }
}
.button--plus:hover {
  background-color: var(--accent-color-hover);
  transform: rotate(180deg);
}
.button--small {
  font-size: 12px;
  line-height: 16px;
}
.button--rounded {
  border-radius: 1000px;
}
.text-color-light {
  color: var(--text-color-light);
}
.text-color-accent {
  color: var(--accent-color);
}
.text-color-gray {
  color: var(--medium-gray-color);
}
/* Bottom Angles Styles */
.bottom-angles {
  position: fixed;
  height: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.bottom-angles:before,
.bottom-angles:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  background-image: url('/images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .bottom-angles:before,
  .bottom-angles:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
.bottom-angles:before {
  left: 0;
  transform: rotate(-90deg);
}
.bottom-angles:after {
  right: 0;
  transform: rotate(180deg);
}
/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--dark-color);
  min-height: 68px;
  z-index: 20;
}
@media (max-width: 1200px) {
  .header {
    min-height: 61px;
  }
}
@media (max-width: 768px) {
  .header {
    min-height: 68px;
  }
}
.header:before,
.header:after {
  content: '';
  position: absolute;
  bottom: -32px;
  width: 32px;
  height: 32px;
  background-image: url('/images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .header:before,
  .header:after {
    bottom: -22px;
    width: 22px;
    height: 22px;
  }
}
.header:before {
  left: 0;
}
.header:after {
  right: 0;
  transform: rotate(90deg);
}
.header__container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .header .header__action-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-color);
  }
}
@media (max-width: 768px) {
  .header .header__action-button .button {
    width: 100%;
    max-width: 500px;
    background-color: var(--dark-color);
    color: var(--text-color-light);
  }
}
.header__logo {
  display: flex;
  font-size: 0;
}
.header__logo--lg {
  display: block;
  max-width: 230px;
}
.header__logo--md {
  display: none;
  max-width: 140px;
}
.header__logo--sm {
  display: none;
  max-width: 100px;
}
@media (max-width: 1200px) {
  .header__logo--lg {
    display: none;
  }
  .header__logo--md {
    display: block;
  }
}
/* Header Menu */
@media (max-width: 768px) {
  .header-menu {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: calc(100% - 20px);
    height: auto;
    margin: 10px;
    padding: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray-color-with-transparency);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease-in-out;
    z-index: 20;
  }
}
@media (max-width: 768px) {
  .header-menu.opened {
    opacity: 1;
    pointer-events: auto;
  }
}
.header-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header-menu__list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 24px;
  }
}
.header-menu__link {
  color: var(--text-color-light);
  text-decoration: none;
}
@media (max-width: 768px) {
  .header-menu__link {
    color: var(--text-color);
  }
}
/* Header Menu Button */
.header-menu-button {
  display: none;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header-menu-button {
    display: block;
  }
}
.header-menu-button:before,
.header-menu-button:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
.header-menu-button:before {
  top: calc(50% - 3px);
  transform: translateY(-50%);
}
.header-menu-button:after {
  top: calc(50% + 3px);
  transform: translateY(-50%);
}
.header-menu-button.opened:before {
  top: 50%;
  transform: translateY(0) rotate(45deg);
}
.header-menu-button.opened:after {
  top: 50%;
  transform: translateY(0) rotate(-45deg);
}
/* Ellipse Section */
.ellipse-section {
  padding: calc(100px + 20px) 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 2500px) {
  .ellipse-section {
    padding: calc(170px + 20px) 0;
  }
}
@media (max-width: 1200px) {
  .ellipse-section {
    padding: calc(80px + 40px) 0;
  }
}
.ellipse-section:before,
.ellipse-section:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background-image: url('/images/ellipse-lg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.ellipse-section:before {
  background-position: top;
  top: 0;
}
.ellipse-section:after {
  background-position: bottom;
  bottom: 0;
}
@media (max-width: 1200px) {
  .ellipse-section:before,
  .ellipse-section:after {
    background-image: url('/images/ellipse-md.svg');
  }
  .ellipse-section:before {
    background-position: top;
  }
}
@media (max-width: 768px) {
  .ellipse-section:before,
  .ellipse-section:after {
    background-image: url('/images/ellipse-sm.svg');
  }
}
.ellipse-section__inner {
  background-color: var(--light-gray-color);
}
/* Contacts Styles */
.contacts {
  background-color: var(--dark-color);
}
.contacts__container {
  flex-direction: row;
  align-items: normal;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts__container {
    flex-wrap: wrap;
  }
}
.contacts__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  font-size: 18px;
  line-height: 24px;
  color: var(--light-color);
  background-color: var(--dark-gray-color);
  border-radius: var(--border-radius-medium);
  z-index: 3;
}
@media (max-width: 1200px) {
  .contacts__item {
    padding: 16px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .contacts__item {
    gap: 24px;
  }
}
.contacts__item--address:before,
.contacts__item--phone:before,
.contacts__item--email:before {
  content: '';
  width: 36px;
  height: 36px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .contacts__item--address:before,
  .contacts__item--phone:before,
  .contacts__item--email:before {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .contacts__item--address:before,
  .contacts__item--phone:before,
  .contacts__item--email:before {
    width: 24px;
    height: 24px;
  }
}
.contacts__item--address {
  width: 50%;
}
@media (max-width: 768px) {
  .contacts__item--address {
    width: 100%;
  }
}
.contacts__item--address:before {
  background-image: url('/images/icons/location.svg');
}
.contacts__item--phone {
  width: 25%;
}
@media (max-width: 768px) {
  .contacts__item--phone {
    width: calc(50% - 5px);
  }
}
.contacts__item--phone:before {
  background-image: url('/images/icons/phone-call.svg');
}
.contacts__item--email {
  width: 25%;
}
@media (max-width: 768px) {
  .contacts__item--email {
    width: calc(50% - 5px);
  }
}
.contacts__item--email:before {
  background-image: url('/images/icons/mail.svg');
}
.contacts__item-text,
.contacts__item-text a {
  max-width: 400px;
  font-size: 18px;
  line-height: 24px;
  color: var(--light-color);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .contacts__item-text,
  .contacts__item-text a {
    max-width: 320px;
    font-size: 14px;
    line-height: 18px;
  }
}
/* Text content styles */
.text-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--medium-gray-color);
}
@media (max-width: 1200px) {
  .text-content {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .text-content {
    font-size: 16px;
  }
}
.text-content .container {
  display: flex;
  flex-direction: column;
  align-items: unset;
  gap: 24px;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  max-width: 100%;
  color: var(--text-color);
  margin-bottom: 4px;
}
.text-content h1,
.text-content h2,
.text-content__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  text-align: left;
}
.text-content h1:not(:first-child),
.text-content h2:not(:first-child),
.text-content__title:not(:first-child) {
  margin-top: 36px;
}
@media (max-width: 1200px) {
  .text-content h1,
  .text-content h2,
  .text-content__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .text-content h1,
  .text-content h2,
  .text-content__title {
    font-size: 28px;
  }
}
.text-content ul,
.text-content ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: auto;
  padding: revert;
}
.text-content ul li,
.text-content ol li {
  padding-left: 24px;
  list-style-type: auto;
}
.text-content ul li::marker,
.text-content ol li::marker {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .text-content ul li::marker,
  .text-content ol li::marker {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .text-content ul li::marker,
  .text-content ol li::marker {
    font-size: 16px;
  }
}
.text-content pre {
  padding: 24px 114px;
  margin: 40px 0;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  line-height: 1.3;
  background-color: var(--light-gray-color);
  border-radius: var(--border-radius-large);
}
@media (max-width: 1200px) {
  .text-content pre {
    padding: 24px 80px;
  }
}
@media (max-width: 768px) {
  .text-content pre {
    padding: 24px 18px;
  }
}
.text-content pre .hljs {
  background-color: transparent;
}
.text-content img {
  margin: 40px 0;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  -webkit-user-drag: none;
}
.text-content blockquote {
  background-color: var(--purple-background-color);
  border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
  padding: 90px 80px 36px 42px;
  position: relative;
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  quotes: none;
  color: var(--text-color);
  font-style: italic;
}
@media (max-width: 1200px) {
  .text-content blockquote {
    padding: 82px 24px 24px 40px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .text-content blockquote {
    padding: 64px 16px 16px 26px;
    font-size: 20px;
  }
}
.text-content blockquote::before {
  content: '';
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--purple-color);
  border-radius: 0 12px 12px 0;
}
.text-content blockquote::after {
  content: '';
  position: absolute;
  left: 42px;
  top: 24px;
  width: 48px;
  height: 48px;
  background-image: url('/images/icons/quote-purple.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .text-content blockquote::after {
    left: 40px;
    top: 24px;
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 768px) {
  .text-content blockquote::after {
    left: 26px;
    top: 22px;
    width: 28px;
    height: 28px;
  }
}
.text-content figcaption {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-left: 90px;
}
.text-content figcaption img {
  margin: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.text-content figcaption cite {
  margin: 0;
  font-style: normal;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-color);
}
.text-content figcaption span {
  margin: 0;
  max-width: 250px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--medium-gray-color);
}
.text-content-plain {
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-content-plain div,
.text-content-plain section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-content-plain h1 {
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 600;
}
.text-content-plain h2,
.text-content-plain h3,
.text-content-plain h4,
.text-content-plain h5,
.text-content-plain h6 {
  text-align: left;
}
.text-content-plain ol,
.text-content-plain ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  line-height: 22px;
}
.text-content-plain ol {
  gap: 22px;
  list-style: none;
  counter-reset: li;
}
.text-content-plain ul {
  list-style-type: disc;
  margin-inline-start: 36px;
}
.text-content-plain ol li {
  list-style-type: none;
}
.text-content-plain ol > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.text-content-plain ol ol > li:before {
  font-size: inherit;
  line-height: inherit;
}
.text-content-plain ol ol ul > li {
  list-style-type: disc;
}
.text-content-plain ol li > p,
.text-content-plain ul li > p {
  margin-bottom: 20px;
}
.name-with-icon:before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.name-with-icon--react:before {
  background-image: url('/images/icons/reactjs.svg');
}
.name-with-icon--vue:before {
  background-image: url('/images/icons/vuejs.svg');
}
.name-with-icon--angular:before {
  background-image: url('/images/icons/angular.svg');
}
.name-with-icon--blazor:before {
  background-image: url('/images/icons/blazor.svg');
}
.name-with-icon--razor:before {
  background-image: url('/images/icons/blazor.svg');
}
.name-with-icon--python:before {
  background-image: url('/images/icons/python.svg');
}
.name-with-icon--java:before {
  background-image: url('/images/icons/java.svg');
}
.name-with-icon--nodejs:before {
  background-image: url('/images/icons/nodejs.svg');
}
.name-with-icon--dotnet:before {
  background-image: url('/images/icons/dotnet.svg');
}
.name-with-icon--flutter:before {
  background-image: url('/images/icons/flutter.svg');
}
.name-with-icon--swift:before {
  background-image: url('/images/icons/swift.svg');
}
.name-with-icon--cpp:before {
  background-image: url('/images/icons/cpp.svg');
}
.name-with-icon--postgresql:before {
  background-image: url('/images/icons/postgresql.svg');
}
.name-with-icon--mysql:before {
  background-image: url('/images/icons/mysql.svg');
}
.name-with-icon--mongodb:before {
  background-image: url('/images/icons/mongodb.svg');
}
.name-with-icon--superset:before {
  background-image: url('/images/icons/superset.svg');
}
.name-with-icon--powerbi:before {
  background-image: url('/images/icons/powerbi.svg');
}
.name-with-icon--datalens:before {
  background-image: url('/images/icons/datalens.svg');
}
.name-with-icon--yolo:before {
  background-image: url('/images/icons/yolo.svg');
}
.name-with-icon--flux:before {
  background-image: url('/images/icons/flux.svg');
}
.name-with-icon--telegram:before {
  background-image: url('/images/icons/telegram.svg');
}
/* Navigation Links styles */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.nav-links .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 36px;
}
.nav-links__title {
  max-width: unset;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .nav-links__title {
    font-size: 24px;
  }
}
.nav-links ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav-links li {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--purple-color);
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .nav-links li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .nav-links li {
    font-size: 14px;
  }
}
.nav-links li:hover,
.nav-links li:hover a {
  color: var(--dark-color);
}
.nav-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--purple-color);
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-links li a:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/images/icons/chevron-right-purple.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .nav-links li a:after {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .nav-links li a:after {
    width: 14px;
    height: 14px;
  }
}
.nav-links li:hover a:after {
  filter: grayscale(5);
}
/* Footer Styles */
.footer {
  position: relative;
  background-color: var(--dark-color);
  color: var(--text-color-light);
}
.footer:before,
.footer:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  /*background-color: var(--dark-color);*/
  /*mask-image: radial-gradient(circle 16px at 0 0, transparent 0, transparent 32px, #000 0);*/
  background-image: url('/images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer:before {
  left: 0;
  transform: rotate(-90deg);
}
.footer:after {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .footer:before,
  .footer:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
.footer__container {
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding-top: calc(36px + 40px);
  padding-bottom: 36px;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__container:before,
.footer__container:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 40px);
  width: calc(100% - 120px);
  /*max-width: calc(1320px + 60px);*/
  height: 40px;
}
@media (max-width: 1200px) {
  .footer__container:before,
  .footer__container:after {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .footer__container:before,
  .footer__container:after {
    width: calc(100% - 20px);
  }
}
.footer__container:before {
  border: 1px solid var(--medium-gray-color);
  border-top-color: transparent;
  border-radius: var(--border-radius-large);
}
@media (max-width: 768px) {
  .footer__container:before {
    border-radius: var(--border-radius-medium);
  }
}
.footer__container:after {
  background: linear-gradient(to bottom, var(--dark-color) 65%, transparent 100%);
}
.footer__logo {
  display: flex;
  font-size: 0;
}
.footer__logo--lg {
  display: block;
  max-width: 230px;
}
.footer__copyright,
.footer__link {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color-gray);
}
.footer__link {
  text-decoration: none;
}
.footer__link--underline {
  text-decoration: underline;
}
.footer-form-block {
  position: relative;
  background-color: var(--dark-color);
}
.footer-form-block:before,
.footer-form-block:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  /*background-color: var(--dark-color);*/
  /*mask-image: radial-gradient(circle 16px at 0 0, transparent 0, transparent 32px, #000 0);*/
  background-image: url('/images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-form-block:before {
  left: 0;
  transform: rotate(-90deg);
}
.footer-form-block:after {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .footer-form-block:before,
  .footer-form-block:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
.footer-form-block__container {
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .footer-form-block__container {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.footer-form-block__title,
.footer-form-block__description {
  text-align: center;
  max-width: 480px;
}
@media (max-width: 1200px) {
  .footer-form-block__title,
  .footer-form-block__description {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .footer-form-block__title,
  .footer-form-block__description {
    max-width: 100%;
  }
}
.footer-form-block__title {
  color: var(--light-color);
  font-size: 32px;
}
.footer-form-block__description {
  color: var(--medium-gray-color);
  font-size: 20px;
  line-height: 26px;
}
.offer-phrase {
  max-width: 640px;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .offer-phrase {
    max-width: 500px;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .offer-phrase {
    max-width: 440px;
    font-size: 24px;
  }
}
.offer-phrase a {
  color: var(--accent-color);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.offer-phrase a:hover {
  color: var(--accent-color-hover);
}
.offer-phrase a:after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transition: opacity 0.3s ease;
}
.offer-phrase a:hover:after {
  opacity: 0;
}
/* Accordion Styles */
.accordion-item {
  border-bottom: 1px solid #00021133;
}
.accordion-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  user-select: none;
  transition: color 0.2s ease;
}
@media (max-width: 1200px) {
  .accordion-item__header {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .accordion-item__header {
    padding: 16px 0;
    font-size: 24px;
  }
}
.accordion-item__header:after {
  content: '';
  width: 34px;
  height: 34px;
  background-image: url('/images/icons/plus-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-item__header:after {
  transform: rotate(135deg);
}
.accordion-item:first-child .accordion-item__header {
  padding-top: 0;
}
.accordion-item:last-child {
  border-bottom: none;
  margin-bottom: -20px;
}
.accordion-item__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item__content {
  padding-bottom: 24px;
  color: var(--text-color-gray);
  font-size: 20px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .accordion-item__content {
    padding-bottom: 16px;
    font-size: 16px;
  }
}
.accordion-item.active .accordion-item__content {
  opacity: 1;
}
.accordion-item__content li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
}
.accordion-item__content li:last-child {
  margin-bottom: 0;
}
.accordion-item__content li::before {
  content: '—';
}
