*, *:after, *:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --orange: #FF5E00;
  --background: #4B4E53;
  --color: #f7f7f7;
  --header-height: 90px;
}

body {
  height: 100dvh;
  width: 100dvw;
  overflow: hidden;
  background-color: var(--background);
  background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: var(--header-height);
  z-index: 999;
  backdrop-filter: blur(50px);
}
.header__logo {
  height: 40px;
}
.header__nav-list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 20px;
}
.header__nav-link {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--color);
  font-size: 20px;
  text-decoration: none;
}

.main {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.section {
  width: 100dvw;
  scroll-snap-align: start;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-height) 40px 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--color);
}

.banner__content {
  display: flex;
  flex-direction: row;
}
.banner__slogan {
  font-size: 80px;
  word-break: break-word;
}
.banner__slogan-accent {
  color: var(--orange);
}
.banner__image {
  object-fit: contain;
}
@media (max-width: 800px) {
  .banner__image {
    display: none;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text {
  font-size: 30px;
  column-gap: 20px;
}

.statements {
  font-size: 20px;
}
.statements__content {
  display: grid;
  width: 100%;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.statements__statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #464646;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 16px;
  gap: 12px;
}
.statements__statement-title {
  color: var(--orange);
}
.statements__statement-description {
  font-size: 18px;
}

.strategy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.strategy__title {
  font-size: 26px;
}
.strategy__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: none;
}
.strategy__item-title {
  color: var(--orange);
  font-size: 23px;
}
.strategy__item-description {
  font-size: 20px;
}

.contacts {
  position: relative;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
  list-style-type: none;
}
.contacts__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.contacts__item i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__item svg {
  width: 24px;
  height: 24px;
}
.contacts__link {
  color: var(--orange);
}
.contacts__policy {
  position: absolute;
  bottom: 50px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.contacts__policy-link {
  font-size: 17px;
  color: var(--orange);
}

.policy {
  font-size: 20px;
}
.policy__example-title {
  font-weight: bold;
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 150px;
}
.policy__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style-type: circle;
}
.policy__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy__item-title {
  color: var(--orange);
}
.policy__item-link {
  color: var(--orange);
}
.policy__sublist {
  padding-left: 40px;
}

/*# sourceMappingURL=style.css.map */
