@charset "UTF-8";
/**
* Подключение шрифтов локально из папки "./src/fonts"
*/
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
/** Подключение переменных */
:root {
  --bs-font-family: "Gilroy", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1;
  --bs-font-color: rgba(0, 0, 0, 1);
  --bs-transition: .3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: rgba(0, 0, 0, 1);
  --primary-hover-color: #2d2d2d;
  --secondary-color: #ff4040;
  --white: #fff;
  --black: rgba(0, 0, 0, 1);
  --blue: rgba(0, 174, 239, 1);
  --bs-shadow: 0px 2px 3px rgba(#000, 10%), 0px 8px 3px rgba(#000, 10%);
  --hover-shadow: 0 0 5px 0 rgba(#000, 10%),
                  0 0 10px 0 rgba(#000, 10%),
                  0 0 15px 0 rgba(#000, 10%);
}

/**
* Подключение sass function и mixins и extends стилей
*/
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Обнуление */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 410px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  user-select: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

/**
* Библиотеки
* раскомментировать для использования
*/
/**
* Подключение custom scrollbar для всего сайта
*/
* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--primary-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

/**
* Общие параметры, шаблоны(заготовки) и вспомогательные классы
*/
/** Базовые анимации: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/** Стили для полноэкранного блока: */
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
[class*=__container] {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 480px) {
  [class*=__container] {
    padding: 0 1.1875rem;
  }
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
}
.page [data-observ] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: transparent;
  pointer-events: none;
}
.page_start {
  padding-top: 4.5rem;
}

/**
* БЕМ блоки используемые во всё проекте
*/
p {
  font-size: 1.25rem;
  line-height: 150%;
}
@media (max-width: 1220px) {
  p {
    font-size: 1rem;
  }
}
@media (max-width: 680px) {
  p {
    font-size: 0.875rem;
  }
}

.block-fon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-fon img, .block-fon picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  padding: 0.875rem 2rem 0.75rem 2rem;
  border-radius: 60px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  font-weight: 700;
  color: var(--black);
  line-height: 140%;
  background-color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover {
  opacity: 0.8;
}
.button.blue {
  color: var(--white);
  background-color: var(--blue);
}
.button.blue:hover {
  background-color: rgb(0, 100, 223);
}
@media (max-width: 650px) {
  .button {
    font-size: 0.75rem;
    padding: 9px 16px 5px 16px;
  }
}

.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 1220px) {
  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 680px) {
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

h2 {
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 680px) {
  h2 {
    font-size: 1rem;
  }
}
h2 b, h2 strong {
  color: var(--blue);
  font-weight: 900;
}

h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  h3 {
    font-size: 0.875rem;
  }
}

input.text {
  font-size: 1rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  transition: all 0.3s ease 0s;
}
._error input.text {
  border: 1px solid rgb(255, 78, 78);
}

input::placeholder {
  color: rgb(170, 170, 170);
}

form .popup__button, form button {
  pointer-events: none;
  opacity: 0.6;
}

form.unlock .popup__button, form.unlock button {
  pointer-events: all;
  opacity: 1;
}

/**
* Функциональные блоки используемые во всё проекте
*/
.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  /** Установить свои значения */
  padding: 1.875rem 0.625rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup.is-open .popup__content {
  transform: translateY(0);
  opacity: 1;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.popup__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /** Установить свои значения */
  padding: 1.5rem;
  max-width: 19.375rem;
  background-color: #fff;
  transform: translateY(-12.5rem);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.popup__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.popup__logo {
  max-width: 9.4375rem;
}
.popup__logo img {
  width: 100%;
}
.popup__close {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #000;
  border-radius: 0.5rem;
}
.popup__close svg {
  width: 100%;
}
.popup__button-row {
  margin-top: 2rem;
}
.popup__button {
  width: 100%;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
}
.popup__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.popup__text p {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 143%;
  text-align: center;
  color: #344054;
}

.popup-form__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popup-form__item-input {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.popup-form__label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 143%;
  color: #344054;
}
/**
* Подключение стилей отдельных блоков и секций
*/
.header {
  width: 100%;
  transition: background-color var(--bs-transition);
  z-index: 50;
}
.header-is-sticky .header {
  position: fixed;
  background-color: #007aff;
}
.header__container {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1220px) {
  .header__container {
    justify-content: space-between;
  }
}
@media (max-width: 980px) {
  .header__container {
    gap: 1.60625rem;
  }
}
.header__logo {
  width: 15.4375rem;
}
.header__logo img {
  width: 100%;
}
@media (max-width: 1220px) {
  .header__logo {
    width: 10.25rem;
  }
}
.header__phone {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: var(--black);
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.header__phone:hover {
  opacity: 0.6;
}
@media (max-width: 1220px) {
  .header__phone {
    font-size: 1rem;
  }
}
@media (max-width: 980px) {
  .header__phone {
    margin-left: auto;
  }
}
.header__button-row {
  margin-left: auto;
}
@media (max-width: 1220px) {
  .header__button-row {
    margin-left: 0;
  }
}
.header__button {
  font-size: 1rem;
  padding: 0.5rem 1.25rem 0.375rem 1.25rem;
}

@media (max-width: 980px) {
  .menu {
    background-color: var(--white);
    padding: 1.5rem;
    position: fixed;
    right: -100%;
    top: 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 11.875rem;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03), 0 12px 16px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease 0s;
  }
  .menu-open .menu {
    right: 0;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1220px) {
  .menu__list {
    gap: 1.5rem;
    align-items: start;
  }
}
@media (max-width: 980px) {
  .menu__list {
    gap: 0.5rem;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(170, 170, 170);
  }
}
.menu__link {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 150%;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  color: var(--black);
}
.menu__link:hover {
  opacity: 0.6;
}
@media (max-width: 1220px) {
  .menu__link {
    font-size: 1rem;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 61.25em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.25rem;
    height: 0.875rem;
    cursor: pointer;
    z-index: 5;
    background: none;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 300ms ease 0ms;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
    border-radius: 8px;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    width: 0;
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }
}

.about {
  position: relative;
  padding-top: 7.34375rem;
  padding-bottom: 7.34375rem;
}
@media (max-width: 1220px) {
  .about {
    padding-top: 3.9625rem;
    padding-bottom: 1.7375rem;
  }
}
@media (max-width: 680px) {
  .about {
    padding-top: 2.3625rem;
    padding-bottom: 3.9625rem;
  }
}
.about__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  align-items: start;
}
@media (max-width: 1220px) {
  .about__container {
    gap: 1.73125rem;
  }
}
@media (max-width: 680px) {
  .about__container {
    gap: 1.03125rem;
  }
}
.about__title {
  max-width: 51.9375rem;
  width: 100%;
}
.about__title .mob {
  display: none;
}
@media (max-width: 1220px) {
  .about__title {
    max-width: 35.959375rem;
  }
}
@media (max-width: 680px) {
  .about__title .web {
    display: none;
  }
  .about__title .mob {
    display: block;
  }
}
.about p {
  max-width: 51.9375rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1220px) {
  .about p {
    max-width: 35.959375rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about p {
    font-size: 0.875rem;
  }
}
.about__button {
  padding: 0.875rem 1.25rem 0.75rem 1.25rem;
}
@media (max-width: 1220px) {
  .about__button {
    font-size: 0.8125rem;
    padding: 9px 22px 8px 22px;
    border-radius: 42px;
  }
}
@media (max-width: 680px) {
  .about__button {
    font-size: 0.75rem;
    padding: 9.5px 16 7.5px 16;
  }
}

.upgrade__row {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 750px) {
  .upgrade__row {
    flex-direction: column;
    gap: 1rem;
  }
}
.upgrade__left {
  width: 100%;
}
.upgrade__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 33.9375rem;
}
@media (max-width: 980px) {
  .upgrade__right {
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .upgrade__text-big {
    font-size: 1rem;
  }
}
.upgrade__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upgrade__list li {
  display: flex;
  gap: 1rem;
}
.upgrade__list li img {
  width: 1.5rem;
}
.upgrade__quote {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 140%;
  text-transform: uppercase;
  background: #eaf6fa;
}
@media (max-width: 1220px) {
  .upgrade__quote {
    font-size: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 680px) {
  .upgrade__quote {
    font-size: 0.75rem;
  }
}
.upgrade__img {
  margin-top: 1.5rem;
  width: 100%;
}
.upgrade__img img {
  width: 100%;
}

.reveal {
  background: #fafafa;
}
.reveal__row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.875rem;
}
@media (max-width: 1220px) {
  .reveal__row {
    margin-bottom: 3rem;
  }
}
@media (max-width: 800px) {
  .reveal__row {
    margin-bottom: 1rem;
  }
}
@media (max-width: 750px) {
  .reveal__row {
    flex-direction: column;
  }
}
.reveal__left {
  width: 100%;
}
.reveal__left h2 {
  margin-bottom: 1.5rem;
}
.reveal__right {
  width: 100%;
  max-width: 30.375rem;
}
.reveal__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1220px) {
  .reveal__right img {
    max-height: 15.75rem;
  }
}
@media (max-width: 800px) {
  .reveal__right img {
    max-height: 18.75rem;
  }
}
@media (max-width: 450px) {
  .reveal__right img {
    max-height: 12.5rem;
  }
}
@media (max-width: 1220px) {
  .reveal__right {
    max-width: 28.875rem;
  }
}
@media (max-width: 750px) {
  .reveal__right {
    max-width: 100%;
  }
}
.reveal__item-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1220px) {
  .reveal__item-row {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 800px) {
  .reveal__item-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .reveal__item-row {
    gap: 0.5rem;
  }
}
.reveal__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1220px) {
  .reveal__item {
    gap: 0.5rem;
  }
  .reveal__item h3 {
    margin-bottom: 0.5rem;
  }
}
.reveal__button-row {
  display: flex;
  justify-content: start;
}
.reveal-item__img {
  width: 2rem;
}

.technologies__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .technologies__row {
    grid-template-columns: 1fr;
  }
}
.technologies__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1220px) {
  .technologies__img {
    max-height: 36.875rem;
  }
}
@media (max-width: 951px) {
  .technologies__img {
    max-height: 100%;
    height: auto;
  }
}
@media (max-width: 800px) {
  .technologies__img {
    max-height: 18.75rem;
  }
}
@media (max-width: 450px) {
  .technologies__img {
    max-height: 12.5rem;
  }
}
.technologies__body h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .technologies__body h2 {
    margin-bottom: 1rem;
  }
}
.technologies__text {
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .technologies__text {
    margin-bottom: 1.5rem;
  }
}
.technologies__item-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .technologies__item-row {
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .technologies__item-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.tech-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1220px) {
  .tech-item {
    gap: 0.5rem;
  }
}
.tech-item__img {
  height: 2.375rem;
}
.tech-item__img img {
  height: 100%;
}
.tech-item h3 {
  max-width: 13.75rem;
}

.power__head {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 951px) {
  .power__head {
    flex-direction: column;
  }
}
.power__head p {
  padding: 1.5rem;
  max-width: 30.375rem;
}
@media (max-width: 1100px) {
  .power__head p {
    max-width: 29rem;
  }
}
@media (max-width: 915px) {
  .power__head p {
    padding: 0;
    max-width: 100%;
  }
}
.power__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 915px) {
  .power__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .power__row {
    grid-template-columns: 1fr;
  }
}
.power-item__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--blue);
}
@media (max-width: 1220px) {
  .power-item__body {
    padding: 1.5rem;
  }
}
.power-item__number {
  color: var(--blue);
  font-weight: 900;
  font-size: 5rem;
  line-height: 130%;
  margin-bottom: auto;
}
@media (max-width: 1220px) {
  .power-item__number {
    font-size: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .power-item__number {
    font-size: 3rem;
  }
}
.power-item__img {
  height: 100%;
}
.power-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 550px) {
  .power-item__img {
    max-height: 18.75rem;
  }
}
@media (max-width: 450px) {
  .power-item__img {
    max-height: 12.5rem;
  }
}
.power-item h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1220px) {
  .power-item h3 {
    font-size: 1rem;
  }
}
.power-item p {
  font-size: 1rem;
  min-height: 6rem;
}
@media (max-width: 550px) {
  .power-item p {
    min-height: 0;
  }
}

.transform {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 1220px) {
  .transform {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 680px) {
  .transform {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.transform__container {
  position: relative;
  z-index: 1;
}
.transform__body {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 42.5625rem;
}
.transform__body h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 650px) {
  .transform__body h2 {
    margin-bottom: 1rem;
  }
}
.transform__body p {
  margin-bottom: 2.5rem;
}
@media (max-width: 650px) {
  .transform__body p {
    margin-bottom: 2rem;
  }
}
.footer {
  padding: 3.75rem 0;
  background: #00263f;
}
@media (max-width: 1220px) {
  .footer {
    padding: 2.5rem 0;
  }
}
.footer * {
  color: var(--white);
}
.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 630px) {
  .footer__head {
    flex-direction: column;
  }
  .footer__head .footer__link {
    display: none;
  }
}
.footer__left {
  max-width: 19.875rem;
}
@media (max-width: 1220px) {
  .footer__left .footer__link {
    font-size: 0.875rem;
  }
}
.footer__logo {
  max-width: 16.1875rem;
  margin-bottom: 0.625rem;
}
.footer__logo img {
  width: 100%;
}
@media (max-width: 1220px) {
  .footer__logo {
    max-width: 10.25rem;
  }
}
@media (max-width: 630px) {
  .footer__logo {
    max-width: 9.78125rem;
    margin-bottom: 0rem;
  }
}
.footer__link {
  display: flex;
  gap: 1rem;
}
.footer__link svg {
  width: 1.5rem;
  min-width: 1.5rem;
}
.footer__link p {
  font-size: 1rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 2.05625rem;
  height: 2.05625rem;
}
.footer__social a svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 630px) {
  .footer__social a {
    width: 1.525rem;
    height: 1.525rem;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 850px) {
  .footer__right {
    display: none;
  }
}
.footer__bot {
  padding-top: 2.0625rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (max-width: 630px) {
  .footer__bot {
    padding-top: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
.footer__bot p, .footer__bot a {
  font-size: 0.875rem;
}
.footer__bot a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.footer__bot a:hover {
  opacity: 0.7;
}
@media (max-width: 650px) {
  .footer__bot {
    padding-top: 1rem;
  }
}
/*# sourceMappingURL=main.min.css.map */
