@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBlack.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraBold.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaLight.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaMedium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaSemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaThin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
:root {
  --font-family: "Lufga", sans-serif;
}
:root {
  --primary-primary-800: #3b269d;
  --primary-primary-600: #6432ff;
  --primary-primary-200: #d2cde8;
  --secondary-blue: #1badff;
  --secondary-pink: #e93fe2;
  --text-primary: #051f2e;
  --text-secondary: #375262;
  --text-extra: #a4afb5;
  --text-white: #fff;
  --dark-shades-900: #051f2e;
  --dark-shades-800: #0e2b3b;
  --dark-shades-400: #2c688a;
  --light-shades-300: #e1e7eb;
  --light-shades-200: #f5f7fa;
  --light-shades-white: #fff;
  --gradient-primary: linear-gradient(135.98deg, #6b83f4 0%, #a862eb 100%);
  --gradient-secondary: linear-gradient(90deg, #6835ff 0%, #1aadff 100%);
  --gradient-tertiary: linear-gradient(128.26deg, #a3deff 0%, #fdadf2 100%);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

body {
  background: #ffffff1a;
  height: 100%;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 128%;
  color: var(--text-primary);
}

h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 133%;
  text-align: center;
  color: var(--text-primary);
}

h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--text-primary);
}

h4 {
  font-family: var(--font-family);
  font-size: 19px;
  font-weight: 400;
  line-height: 168%;
  text-align: left;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-primary);
}

.wrapper-policy {
  background: var(--light-shades-white);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wrapper-policy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 90%);
  background: linear-gradient(to bottom, transparent, white), url("../img/about-background.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Journey-section */

.journey-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
  padding: 50px 84px 76px;
  display: flex;
  justify-content: space-between;
}
.journey-discription {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  width: 100%;
}
.journey-discription-text {
	margin-bottom: 36px;
}
.journey-discription-text p {
  margin-bottom: 10px;
}
.journey-discription-text p:last-child {
  margin-bottom: 0;
}

#articles-section {
  background: #ffffff;
  z-index: 1;
}

.articles-wrapper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 auto;
  gap: 50px;
  padding: 50px 84px 76px;
}

/* Start section */
#start-section {
  background: url(../img/background-start.png) no-repeat center;
  background-size: cover;
}

.start-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.start-wrapper-discription {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.start-wrapper-discription h2,
.start-wrapper-discription p {
  text-align: center;
  color: var(--text-white);
}

.start-wrapper-button {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  max-width: 243px;
  width: 100%;
  background-color: var(--light-shades-white);
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 168%;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 auto;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}

.toc ol {
	display: flex;
    flex-direction: column;
	align-items: left;
    gap: 16px;
}

.toc a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 137.5%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text-primary);
  transition: color 0.3s ease;
  text-decoration: underline;
}

.toc a:hover {
  color: var(--primary-primary-600);
}

.row {
	margin-bottom: 36px;
}

.header-left {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 610px;
	padding-right: 24px;
}

.header-left h2 {
	text-align: left;
}

.content-right {
	display: inline-block;
	max-width: 610px;
	padding-top: 12px;
}

.content-right p {
  margin-bottom: 10px;
}

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

.content-right li {
  list-style-type: circle;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-primary);
  margin-left: 24px;
}

.content-right li:last-child {
	margin-bottom: 10px;
}

/* Breakpoint */

@media (max-width: 1360px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}

@media (max-width: 1335px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}

@media (max-width: 1300px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 1292px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 1200px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 1060px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 45px;
    line-height: 133%;
  }

  h3 {
    font-size: 19px;
    line-height: 168%;
  }

  p {
    font-size: 16px;
    line-height: 175%;
    color: var(--text-primary);
  }
  .wrapper-policy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90%);
    background: url("../img/about-background.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

@media (max-width: 950px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 917px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 900px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }
}
@media (max-width: 855px) {
  .wrapper-policy::before {
    height: calc(100% - 90%);
  }

  /* Journey-section */

  .journey-wrapper {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 34px;
    grid-row-gap: 0px;
    padding: 50px 84px 76px;
  }
  .journey-discription {
    grid-area: 1 / 1 / 2 / 2;
    max-width: 406px;
    width: 100%;
  }

  .journey-discription-text p {
    margin-bottom: 10px;
  }
  .journey-discription-text p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 144%;
  }

  h2 {
    font-size: 45px;
    line-height: 133%;
  }
  h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 168%;
    color: var(--text-white);
  }
  p {
    font-size: 14px;
    line-height: 171%;
  }

  .wrapper-policy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90%);
    background: url("../img/about-background.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Journey-section */

  .journey-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    gap: 0;
    padding: 20px 64px 56px;
  }
  .journey-discription {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }

  .journey-discription-text p {
    margin-bottom: 10px;
  }

}
@media (max-width: 730px) {
  .wrapper-policy::before {
    height: calc(100% - 91%);
  }
}
@media (max-width: 655px) {
  .wrapper-policy::before {
    height: calc(100% - 91%);
  }
}
@media (max-width: 646px) {
  .wrapper-policy::before {
    height: calc(100% - 91.5%);
  }
}
@media (max-width: 520px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5;
  }

  .journey-wrapper {
    max-width: 393px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    gap: 0;
    padding: 20px 20px 56px;
  }
}
@media (max-width: 440px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}

@media (max-width: 390px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}
@media (max-width: 380px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}
@media (max-width: 368px) {
  .wrapper-policy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 92.5%);
    background: url("../img/about-background.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 353px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}
@media (max-width: 335px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}
@media (max-width: 320px) {
  .wrapper-policy::before {
    height: calc(100% - 92.5%);
  }
}