@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-background-black: #020C1C;
  --color-background-white: #F7F7F7;
  --color-background-gray: #E2E6EB;
  --color-blue-light: #7DB9F4;
  --color-blue: #0B65ED;
  --color-gray-light: #7B8597;
  --color-gray: #7B8597;
  --color-gray-footer: #263041;
  --color-white: #FFFFFF;
  --color-black: #1B1B1B;
  --border-top: 1px solid var(--color-gray);
  --border-bottom: 1px solid var(--color-gray);
  --border-left: 4px solid var(--color-blue);
  --font-familly-base: "Lato", sans-serif;
  --font-familly-header: "Gilroy", sans-serif;
  --container-width: 1920px;
  --container-padding-x: 60px;
  --container-padding-y: 80px;
  --transition-duration: 0.2;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-familly-base);
  font-weight: 400;
  font-size: clamp(22px, 1.25vw, 24px);
  line-height: 32px;
  color: var(--color-black);
  background-color: var(--color-white);
  min-width: 360px;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: clamp(32px, 3.125vw, 60px);
  font-weight: 800;
  font-family: var(--font-familly-header);
}

h2 {
  font-size: clamp(26px, 2.5vw, 48px);
  font-family: var(--font-familly-header);
  font-weight: 800;
}

h3 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: var(--font-familly-base);
  font-weight: 600;
}

h4 {
  font-size: clamp(18px, 1.0416666667vw, 20px);
}

.header {
  background-color: var(--color-background-black);
  padding: 16px 0;
  min-width: 360px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  .header__inner {
    padding-inline: 16px;
  }
}
.header__logo {
  height: 40px;
  width: 282px;
}
@media (max-width: 767px) {
  .header__logo {
    height: 24px;
    width: 170px;
  }
}
.header__phone {
  font-size: 18px;
  font-family: var(--font-familly-header);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .header__phone {
    font-size: 12px;
  }
}
.header__phone:hover .phone__image {
  animation: phone-outer 3000ms infinite;
}
.header__phone:hover .phone__image::before {
  animation: phone-inner 3000ms infinite;
}
.header__phone:hover .phone__image::after {
  animation: phone-icon 3000ms infinite;
}

.phone {
  font-weight: 400;
}
.phone__image {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .phone__image {
    margin-right: 4px;
    width: 14px;
  }
}

@keyframes phone-outer {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33.3333% {
    transform: translate3d(0, 0, 0) scale(1.4);
  }
  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes phone-inner {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
}
@keyframes phone-icon {
  0% {
    transform: translate3d(0em, 0, 0);
  }
  2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18%, 20%, 22%, 24%, 26%, 28%, 30%, 32%, 34%, 36%, 38%, 40%, 42%, 44% {
    transform: translate3d(0.01em, 0, 0);
  }
  46% {
    transform: translate3d(0em, 0, 0);
  }
}
.section {
  padding-top: var(--container-padding-y);
  padding-bottom: var(--container-padding-y);
  padding-inline: var(--container-padding-x);
}
@media (max-width: 1199px) {
  .section {
    padding-inline: 24px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-inline: 16px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url("../img/preview_pc.png");
  min-height: 900px;
}
@media (max-width: 359px) {
  .hero {
    background-image: url("../img/preview_tablet.png");
    min-height: 768px;
  }
}
.hero__inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 841px;
}
@media (max-width: 1199px) {
  .hero__inner {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .hero__inner {
    width: 328px;
  }
}
.hero__title {
  font-size: 60px;
  font-family: var(--font-familly-header);
  font-weight: 800;
  color: var(--color-white);
  width: 841px;
  font-size: 60px;
  line-height: 68px;
}
@media (max-width: 1199px) {
  .hero__title {
    font-size: 52px;
    width: 720px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 32px;
    line-height: 40px;
    width: 328px;
  }
}
.hero__description {
  line-height: 32px;
  color: var(--color-gray);
  margin: 0 auto;
  padding-top: 16px;
  font-size: 28px;
  width: 693px;
}
@media (max-width: 1199px) {
  .hero__description {
    font-size: 28px;
    width: 693px;
  }
}
@media (max-width: 767px) {
  .hero__description {
    font-size: 16px;
    line-height: 22px;
    width: 312px;
  }
}

.benifit {
  font-family: var(--font-familly-base);
}
.benifit__title {
  line-height: 60px;
  max-width: 862px;
  padding-bottom: 24px;
}
@media (max-width: 1199px) {
  .benifit__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .benifit__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.benifit__wrap {
  display: flex;
  padding-bottom: 0px;
}
@media (max-width: 1199px) {
  .benifit__wrap {
    flex-direction: column;
  }
}
.benifit__container {
  width: 66%;
  display: flex;
  flex-flow: wrap;
  gap: 44px;
}
@media (max-width: 1199px) {
  .benifit__container {
    flex-flow: column;
    gap: 32px;
    width: 100%;
    padding-bottom: 52px;
  }
}
@media (max-width: 767px) {
  .benifit__container {
    gap: 20px;
    width: 100%;
    padding-bottom: 24px;
  }
}
.benifit__item {
  max-width: 517px;
}
@media (max-width: 1199px) {
  .benifit__item {
    max-width: 100%;
  }
}
.benifit__item h3 {
  font-family: var(--font-familly-base);
  color: var(--color-blue);
  line-height: 32px;
}
@media (max-width: 1199px) {
  .benifit__item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .benifit__item h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}
.benifit__item p {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .benifit__item p {
    font-size: 16px;
    line-height: 20px;
  }
}
.benifit__img {
  width: 654px;
  height: 367px;
  margin-inline: auto;
}
@media (max-width: 1199px) {
  .benifit__img {
    width: 100%;
    height: auto;
  }
}
.benifit__img img {
  width: 100%;
  height: auto;
}

.advantage__section {
  background-color: var(--color-background-black);
}
@media (max-width: 1199px) {
  .advantage__section {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .advantage__section {
    padding-top: 24px;
  }
}
.advantage__wrap {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1199px) {
  .advantage__wrap {
    padding-inline: 37px;
  }
}
.advantage__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantage__title p {
  color: var(--color-gray);
  text-transform: uppercase;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
@media (max-width: 1199px) {
  .advantage__title p {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .advantage__title p {
    font-size: 14px;
    line-height: 16px;
  }
}
.advantage__title h2 {
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 60px;
}
@media (max-width: 1199px) {
  .advantage__title h2 {
    max-width: 562px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .advantage__title h2 {
    max-width: 304px;
    font-size: 26px;
    line-height: 32px;
  }
}
.advantage__container {
  padding-top: 60px;
  display: flex;
  flex-flow: wrap;
  gap: 44px;
}
@media (max-width: 1199px) {
  .advantage__container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .advantage__container {
    padding-top: 20px;
    flex-direction: column;
    gap: 16px;
  }
}
.advantage__item {
  border-bottom: var(--border-bottom);
}
@media (min-width: 1199px) {
  .advantage__item {
    max-width: 545px;
  }
}
@media (max-width: 1199px) {
  .advantage__item {
    padding-inline: 8px;
  }
}
@media (max-width: 767px) {
  .advantage__item {
    padding-inline: 4px;
  }
}
.advantage__item h3 {
  color: var(--color-white);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .advantage__item h3 {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .advantage__item h3 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 22px;
  }
}
.advantage__item p {
  color: var(--color-gray);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media (min-width: 1199px) {
  .advantage__item p {
    padding-top: 12px;
  }
}
@media (max-width: 1199px) {
  .advantage__item p {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .advantage__item p {
    font-size: 16px;
    line-height: 20px;
  }
}

.support__section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--color-background-white);
}
@media (max-width: 1199px) {
  .support__section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .support__section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.support__wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .support__wrap {
    flex-direction: column;
  }
}
.support__item {
  background-color: var(--color-white);
  border-left: var(--border-left);
  padding-inline: 28px 32px;
  padding-top: 54px;
  padding-bottom: 54px;
  height: 268px;
}
@media (max-width: 1199px) {
  .support__item {
    height: 244px;
  }
}
@media (max-width: 767px) {
  .support__item {
    padding-inline: 16px 20px;
    height: 168px;
  }
}
.support__item h2 {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 40px;
  line-height: 52px;
  width: 573px;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 1199px) {
  .support__item h2 {
    position: relative;
    top: 50%;
    translate: 0% -50%;
    width: auto;
  }
}
@media (max-width: 767px) {
  .support__item h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
.support__item p {
  width: 485px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 1199px) {
  .support__item p {
    position: relative;
    top: 50%;
    translate: 0% -50%;
    width: auto;
  }
}
@media (max-width: 767px) {
  .support__item p {
    font-size: 16px;
    line-height: 20px;
  }
}

.steps__section {
  background-color: var(--color-background-gray);
  padding-bottom: 92px;
}
@media (max-width: 1199px) {
  .steps__section {
    padding-bottom: 80px;
    padding-inline: 16px;
  }
}
@media (max-width: 767px) {
  .steps__section {
    padding: 32px 8px;
  }
}
.steps__wrap {
  background-color: var(--color-background-white);
  max-width: 982px;
  max-height: 776px;
  position: relative;
  left: 50%;
  translate: -50% 0%;
  padding: 80px 97px;
}
@media (max-width: 1199px) {
  .steps__wrap {
    padding: 60px 32px;
  }
}
@media (max-width: 767px) {
  .steps__wrap {
    padding: 60px 8px;
  }
}
.steps__wrap h2 {
  margin-top: 0;
  color: var(--color-blue);
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}
@media (max-width: 1199px) {
  .steps__wrap h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .steps__wrap h2 {
    font-size: 25px;
    line-height: 32px;
  }
}
.steps__container {
  padding-inline: 3px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 56px;
}
@media (max-width: 767px) {
  .steps__container {
    gap: 12px;
    padding-bottom: 112px;
  }
}
.steps__item {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: var(--color-gray);
}
.steps__item span {
  color: var(--color-black);
  font-weight: 700;
}
@media (max-width: 767px) {
  .steps__item {
    font-size: 16px;
    line-height: 22px;
  }
}

.faq__section {
  display: flex;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .faq__section {
    flex-direction: column;
    padding: 80px 60px;
  }
}
@media (max-width: 767px) {
  .faq__section {
    padding: 32px 16px;
  }
}
.faq__header {
  min-width: 621px;
}
.faq__header p {
  font-size: 32px;
  line-height: 38px;
  color: var(--color-gray);
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .faq__header p {
    font-size: 26px;
    line-height: 32px;
  }
}
.faq__header h2 {
  margin-top: 0;
  font-size: 48px;
  line-height: 60px;
}
@media (max-width: 1199px) {
  .faq__header h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .faq__header h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .faq__header {
    min-width: 0;
    max-width: 477px;
  }
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq__item h3 {
  color: var(--color-blue);
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .faq__item h3 {
    line-height: 31px;
  }
}
@media (max-width: 767px) {
  .faq__item h3 {
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .faq__item p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .faq__item p {
    font-size: 16px;
    line-height: 20px;
  }
}

.footer {
  background-color: var(--color-background-black);
  color: var(--color-gray-light);
}
@media (max-width: 1199px) {
  .footer__wrap {
    margin-inline: 16px;
    padding-inline: 24px;
  }
}
@media (max-width: 767px) {
  .footer__wrap {
    margin-inline: 12px;
    padding-inline: 16px;
  }
}
.footer__section {
  padding-top: 60px;
}
@media (max-width: 1199px) {
  .footer__section {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .footer__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer__logo {
  padding-bottom: 48px;
}
@media (max-width: 1199px) {
  .footer__logo {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 282px;
    height: 40px;
    padding-bottom: 0;
    margin-bottom: 24px;
  }
}
.footer__desc {
  max-width: 792px;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1199px) {
  .footer__desc {
    max-width: 643px;
  }
}
@media (max-width: 767px) {
  .footer__desc {
    max-width: 296px;
    font-size: 16px;
    line-height: 20px;
    padding-right: 8px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: row;
  gap: 168px;
}
@media (max-width: 1199px) {
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    gap: 24px;
  }
}
.footer__contact {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-familly-base);
  max-width: 579px;
}
@media (max-width: 767px) {
  .footer__contact {
    font-size: 16px;
    line-height: 22px;
  }
}
.footer__phone span:last-child {
  margin-left: 8px;
  color: var(--color-blue-light);
}
.footer .contact__label {
  font-family: var(--font-familly-header);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .footer .contact__label {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
}
.footer .contact__address {
  margin-bottom: 12px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .footer .contact__address {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 4px;
  }
}
.footer__copyright {
  text-align: center;
  border-top: var(--border-top);
  font-family: var(--font-familly-header);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.footer__copyright p:last-child {
  margin-bottom: 16px;
  margin-left: 3px;
}
.footer__copyright > p {
  margin-bottom: 10px;
  margin-top: 16px;
}
.footer .copyright__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}
.footer .copyright__container img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .footer .copyright__container img {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 767px) {
  .footer .copyright__container {
    flex-direction: column;
    max-width: 170px;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .footer .copyright__container p {
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .footer .copyright__container p:first-child {
    margin-top: 0px;
    margin-bottom: 2px;
  }
}
.footer .copyright__container p:first-child::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/copyright-line-24px.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  vertical-align: middle;
}/*# sourceMappingURL=styles.css.map */