:root {
    --light: whitesmoke;
    --background: #131313;
    --hover: #9b9b9b;
    --grey: #bcbcbc;
    --footer: #090909;
    --white: white;
    --black: black;
    --form: #ccc;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: var(--background);
    font-size: 14px;
    /* line-height: 1.6; */
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background-color: transparent;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
}

.header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
}

/* Логотип */
.header__logo img {
    max-height: 60px;
    width: 100px;
}

/* Меню */
.header__menu {
    display: flex;
    gap: 80px;
    font-family: Futurapt Book, sans-serif;
    align-items: center;
}

.header__link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--light);
    transition: color 0.3s;
}

.header.no-border {
    border-bottom: none;
}

.header__link:hover {
    color: var(--hover);
}

.header__link.current {
    color: var(--hover);
}

.header__link.current:hover,
.header__link.current:focus,
.header__link.current:focus-visible {
    color: var(--hover);
}

.header__burger {
    display: none; /* На великих екранах бургер не потрібен */
}

.header__menu .header__link {
    border: none;
    color: var(--light); 
    padding: 0;
    text-align: center;
    display: inline-block;
}

h2 {
    color: var(--grey);
    margin-top: 10px;
    font-family: Syne, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background-image: url(/assets/bg.png);
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100svh; /* Full-screen height */
    overflow: hidden;
}

/* Контейнер для вмісту */
.hero__container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

/* Стилі заголовків */
.hero__title {
    font-family: Syne, sans-serif;
    color: var(--light);
    line-height: 86.5%;
    margin: 0;
    font-size: 220px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero__bottom-container {
    display: flex;
    flex-direction: row;
}

/* Описовий текст */
.hero__subtitle {
    text-transform: uppercase;
    font-family: Futurapt, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 26px;
    margin: 0;
    color: var(--light);
}

.large-text {
    color: var(--light);
    font-family: Syne, sans-serif;
}

.content-text {
    margin: 0;
    font-family: Futurapt, sans-serif;
    color: var(--grey);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.about {
    width: 100%;
    display: flex;
    align-items: center;
}

.split-layout {
    display: flex; /* Використовуємо Flexbox */
    gap: 20px; /* Відстань між блоками */
    align-items: stretch; /* Примусово вирівнюємо обидва блоки по висоті */
}

.about .split-layout {
    gap: 0;
}

.split-layout__left {
    flex: 1; /* Ліва частина займає доступний простір */
}

.split-layout__right {
    flex: 1; /* Права частина займає таку ж висоту, як ліва */
    display: flex;
    align-items: center; /* Центруємо вміст по вертикалі */
}

.split-layout__right img {
    max-height: 300px;
}

.directions__title-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
}

.directions__title-block a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.directions__title-block img {
    width: 30px;
}

.directions__item {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    align-items: flex-start;
}

.directions__item:not(:last-child) {
    border-bottom: 1px solid var(--light);
    padding-bottom: 20px;
}

.directions__number {
    flex: 0;
}

.directions__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.directions__image-and-title {
    flex: 4;
    display: flex;
    flex-direction: row;
}

.directions__description {
    flex: 3;
}

.directions p, h3, h2 {
    margin: 0;
}

.directions__number {
    font-size: 14px;
}

.directions__number {
    color: var(--grey);
}

.directions__number {
    font-family: Syne, sans-serif;
}

.directions h3 {
    color: var(--light);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
}

#crimes-image {
    transform: scale(0.8);
    transform-origin: center;
}

.contacts .container {
    margin: 0 auto;
}

.contacts__form {
    display: block;
}

.contacts label {
    font-family:  Futurapt, sans-serif; 
    display: block;
    margin-bottom: 4px;
    font-weight: 300;
    color: var(--light);
}

.contacts__form input, textarea, button {
    font-family:  Futurapt, sans-serif; 
    font-size: 16px;
    font-weight: 100;
    border-radius: 10px;
    margin-bottom: 8px;
    border: solid 1px var(--light);
    width: 100%;
    height: 46px;
    fill: none;
    background-color: transparent;
    color: var(--form);
}

.contacts button, input, textarea {
    font-family:  Futurapt, sans-serif;
    padding: 8px 12px;
}

.contacts__text, .contacts__form {
    flex: 1;
}

.footer {
    background-color: var(--footer);
    color: var(--light);
    padding: 20px 15px;
    font-family: Futurapt Book, sans-serif;
}

.footer__link {
    color: var(--light);
}

.footer__container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__copyright {
    display: flex;
    height: auto;
    align-self: stretch;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    display: block;
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
}

.email {
    font-family: Futurapt Book, sans-serif;
    text-transform: none;
    font-weight: 500;
    color: #bcbcbc;
    transition: color 0.3s;
    font-size: 20px;
}

.contacts .email {
    font-weight: 500;
    font-size: 24px;
}

.footer .email {
    margin-top: -8px;
}

.footer__email:hover {
    color: #f0f0f0;
}

/* Адаптивність */
@media screen and (max-width: 479px) {
    .header {
        background-color: var(--background);
        height: 56px;
        border-bottom: 1px solid var(--light);
    }

    /* Бургер-кнопка */
    .header__burger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        align-self: center;
        z-index: 1010;
    }

    .header__burger span {
        background-color: var(--light);
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .header__burger span:nth-child(1) { top: 0; }
    .header__burger span:nth-child(2) { top: 9px; }
    .header__burger span:nth-child(3) { bottom: 0; }

    .header__logo, .header__burger {
        position: relative; /* Додаємо `relative`, якщо його немає */
        z-index: 1000; /* Вище, ніж у меню */
    }

    .header__menu {
        position: absolute  ;
        top: 56px;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        z-index: 999;
        background-color: var(--background);
        border-bottom: 1px solid var(--light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
    }

    .header__menu.show {
        transform: translateY(0); /* Виїжджає вниз */
        opacity: 1; /* Стає видимим */
        pointer-events: all; /* Доступне для кліків */
    }

    .header__menu.show + .header {
        border-bottom: none; /* Приховуємо бортик, коли меню показується */
    }

    .header__menu.hide {
        animation: slideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }

    .header__menu .header__link {
        color: var(--light);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    @keyframes slideUp {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-100%);
            opacity: 0;
        }
    }

    .hero {
        background-position: 50%;
        background-size: cover;
        background-attachment: scroll;
    }
    .header__link {
        font-size: 12px;
    }
    .hero__title {
        font-size: 27vw;
    }
    .hero__subtitle {
        font-size: 16px;
        line-height: 18px;
        margin-left: 2vw;
    }
    .hero__bottom-container {
        display: flex;
        flex-direction: column;
    }
    h2 {
        font-size: 14px;
    }
    .about {
        margin: 40px 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    .large-text {
        font-size: 18px;
    }
    .content-text {
        font-size: 16px;
        line-height: 20px;
    }
    .about .large-text {
        width: 100%;
        margin: 8px 0 16px 0;
    }
    .about img {
        transform: scale(1);
        transform-origin: center;
        margin-left: -52px;
    }
    .about .content-text {
        width: 100%;
    }

    .directions__item {
        display: flex;
        flex-direction: column; 
    }
    .directions__image-and-title {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .directions__number {
        font-size: 16px;
    }
    .directions h3 {
        font-size: 20px;
    }
    .directions__item img {
        height: 200px;
    }
    .directions__image-and-title {
    flex: 1;
    }
    .directions__description {
        flex: 1;
    }
    .directions__image {
        flex: 4;
    }
    .directions__title {
        flex: 5;
    }
    .contacts {
        margin: 40px 0;
    }
    .contacts .container {
        width: 100%;
    }
    .split-layout {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    .contacts__form {
        font-size: 16px;
    }
    .contacts__form input, textarea, button {
        font-size: 16px;
        height: 46px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
    .contacts__button {
        margin-top: 6px;
    }
    .contacts .email {
        font-size: 16px;
    }
    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__copyright {
        align-items: center;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
    .header {
        background-color: var(--background);
        height: 56px;
        border-bottom: 1px solid var(--light);
    }

    /* Бургер-кнопка */
    .header__burger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        align-self: center;
        z-index: 1010;
    }

    .header img {
        z-index: 1020;
    }

    .header__burger span {
        background-color: var(--light);
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .header__burger span:nth-child(1) { top: 0; }
    .header__burger span:nth-child(2) { top: 9px; }
    .header__burger span:nth-child(3) { bottom: 0; }

    .header__menu {
        position: absolute;
        top: 56px; /* Початково меню зʼявляється під хедером */
        left: 0;
        right: 0;
        width: 100%; /* На всю ширину */
        display: flex;
        flex-direction: column; /* Розміщуємо елементи вертикально */
        align-items: center; /* Вирівнюємо посилання по центру */
        gap: 20px;
        padding: 20px;
        z-index: 999; /* Меню під бургером */
        border-bottom: 1px solid var(--light);
        transform: translateY(-100%); /* Початково меню повністю сховане */
        opacity: 0; /* Початково невидиме */
        pointer-events: none; /* Немає доступу для кліків */
        transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
    }

    .header__menu.show {
        transform: translateY(0); /* Виїжджає вниз */
        opacity: 1; /* Стає видимим */
        pointer-events: all; /* Доступне для кліків */
    }

    .header__menu.hide {
        animation: slideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }

    .header__menu .header__link {
        color: var(--light);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    @keyframes slideUp {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-100%);
            opacity: 0;
        }
    }

    .hero {
        background-position: 30px 60px;
    }
    .container {
        max-width: 1200px;
    }
    .header__link {
        font-size: 14px;
    }
    .hero__title {
        font-size: 170px;
    }
    .hero__subtitle {
        font-size: 16px;
        margin-top: 14px;
        line-height: 18px;
    }
    h2 {
        font-size: 14px;
    }
    .about {
        margin: 40px 0;
    }
    .large-text {
        font-size: 20px;
    }
    .content-text {
        font-size: 16px;
        line-height: 20px;
    }
    .about .large-text {
        width: 440px;
        margin: 8px 0 16px 0;
    }
    .about img {
        transform: scale(1);
        transform-origin: center;
        margin-left: -52px;
    }
    .about .content-text {
        width: 360px;
    }

    .directions__item {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .directions__image-and-title {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .directions__number {
        font-size: 16px;
    }
    .directions h3 {
        font-size: 20px;
    }
    .directions__item img {
        height: 200px;
    }
    .directions__image-and-title {
    flex: 1;
    }
    .directions__description {
        flex: 1;
    }
    .directions__image {
        flex: 4;
    }
    .directions__title {
        flex: 5;
    }
    .contacts {
        margin: 40px 0;
    }
    .contacts .container {
        width: 600px;
    }
    .split-layout {
        gap: 20px;
    }
    .contacts__form {
        font-size: 16px;
    }
    .contacts__form input, textarea, button {
        font-size: 16px;
        height: 46px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
    .contacts__button {
        margin-top: 6px;
    }
    .contacts .email {
        font-size: 16px;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .header {
        background-color: var(--background);
        height: 56px;
        border-bottom: 1px solid var(--light);
    }

    /* Бургер-кнопка */
    .header__burger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        align-self: center;
        z-index: 1010;
    }

    .header img {
        z-index: 1020;
    }

    .header__burger span {
        background-color: var(--light);
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .header__burger span:nth-child(1) { top: 0; }
    .header__burger span:nth-child(2) { top: 9px; }
    .header__burger span:nth-child(3) { bottom: 0; }

    .header__menu {
        position: absolute;
        top: 56px; /* Початково меню зʼявляється під хедером */
        left: 0;
        right: 0;
        width: 100%; /* На всю ширину */
        display: flex;
        flex-direction: column; /* Розміщуємо елементи вертикально */
        align-items: center; /* Вирівнюємо посилання по центру */
        gap: 20px;
        padding: 20px;
        z-index: 999; /* Меню під бургером */
        border-bottom: 1px solid var(--light);
        transform: translateY(-100%); /* Початково меню повністю сховане */
        opacity: 0; /* Початково невидиме */
        pointer-events: none; /* Немає доступу для кліків */
        transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
    }

    .header__menu.show {
        transform: translateY(0); /* Виїжджає вниз */
        opacity: 1; /* Стає видимим */
        pointer-events: all; /* Доступне для кліків */
    }

    .header__menu.hide {
        animation: slideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }

    .header__menu .header__link {
        color: var(--light);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    @keyframes slideUp {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-100%);
            opacity: 0;
        }
    }

    .hero {
        background-position: 30px 60px;
    }
    .container {
        max-width: 1200px;
    }
    .header__link {
        font-size: 14px;
    }
    .hero__title {
        font-size: 170px;
    }
    .hero__subtitle {
        font-size: 16px;
        margin-top: 14px;
        line-height: 18px;
    }
    h2 {
        font-size: 14px;
    }
    .about {
        margin: 40px 0;
    }
    .large-text {
        font-size: 20px;
    }
    .content-text {
        font-size: 16px;
        line-height: 20px;
    }
    .about .large-text {
        width: 440px;
        margin: 8px 0 16px 0;
    }
    .about img {
        transform: scale(1);
        transform-origin: center;
        margin-left: -52px;
    }
    .about .content-text {
        width: 360px;
    }

    .directions__item {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .directions__image-and-title {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .directions__number {
        font-size: 16px;
    }
    .directions h3 {
        font-size: 20px;
    }
    .directions__item img {
        height: 200px;
    }
    .directions__image-and-title {
    flex: 1;
    }
    .directions__description {
        flex: 1;
    }
    .directions__image {
        flex: 4;
    }
    .directions__title {
        flex: 5;
    }
    .contacts {
        margin: 40px 0;
    }
    .contacts .container {
        width: 680px;
    }
    .split-layout {
        gap: 20px;
    }
    .contacts__form {
        font-size: 16px;
    }
    .contacts__form input, textarea, button {
        font-size: 16px;
        height: 46px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
    .contacts__button {
        margin-top: 6px;
    }
    .contacts .email {
        font-size: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .header {
        height: 70px;
    }
    .header__menu {
        gap: 70px;
    }
    .hero {
        background-position: 30px 60px;
    }
    .container {
        max-width: 1200px;
    }
    .header__link {
        font-size: 14px;
    }
    .hero__title {
        font-size: 200px;
    }
    .hero__subtitle {
        font-size: 20px;
        margin-top: 16px;
        line-height: 22px;
    }
    h2 {
        font-size: 16px;
    }
    .about {
        margin: 80px 0;
    }
    .large-text {
        font-size: 24px;
    }
    .content-text {
        font-size: 18px;
        line-height: 20px;
    }
    .about .large-text {
        width: 748px;
        margin: 8px 0 16px 0;
    }
    .about img {
        transform: scale(1.4);
        transform-origin: center;
    }
    .about .content-text {
        width: 545px;
    }
    .directions__number {
        font-size: 16px;
    }
    .directions h3 {
        font-size: 24px;
    }
    .directions__item img {
        height: 200px;
    }
    .directions__image-and-title {
        margin-right: 28px;
    }
    .directions__image {
        flex: 4;
    }
    .directions__title {
        flex: 5;
    }
    .contacts .container {
        width: 1032px;
    }
    .split-layout {
        gap: 60px;
    }
    .contacts {
        margin: 100px 0 100px 0;
    }
    .contacts__form {
        font-size: 16px;
    }
    .contacts__form input, textarea, button {
        font-size: 16px;
        height: 46px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
    .contacts__button {
        margin-top: 6px;
    }
    .contacts .email {
        font-size: 20px;
    }
}

@media screen and (min-width: 1440px) {
    .header__menu {
        gap: 96px;
    }    
    .hero {
        background-position: 30px 0; /* Інше зміщення для великих екранів */
    }
    h2 {
        font-size: 18px;
    }
    .container {
        max-width: 1300px;
    }
    .header__link {
        font-size: 14px;
    }
    .hero__title {
        font-size: 220px;
    }
    .hero__subtitle {
        font-size: 20px;
        margin-top: 18px;
        line-height: 24px;
    }
    .about {
        margin: 120px 0;
    }
    .large-text {
        font-size: 28px;
    }
    .content-text {
        font-size: 20px;
        line-height: 24px;
    }
    .about .large-text {
        width: 748px;
        margin: 12px 0 24px 0;
    }
    .about img {
        transform: scale(1.6);
        transform-origin: center;
    }
    .about .content-text {
        width: 545px;
    }
    
    .directions__number {
        font-size: 16px;
    }
    .directions h3 {
        font-size: 28px;
    }
    .directions__item img {
        height: 200px;
    }
    .contacts .container {
        width: 1032px;
    }
    .split-layout {
        gap: 60px;
    }
    .contacts__form {
        font-size: 20px;
    }
    .contacts__form input, textarea, button {
        font-size: 20px;
        height: 46px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
    .contacts__button {
        margin-top: 6px;
    }
    .contacts .email {
        font-size: 24px;
    }
}

@media screen and (min-width: 1920px) {
    h2 {
        font-size: 22px;
    }
    .container {
        max-width: 1920px;
    }
    .header__menu {
        gap: 180px;
    }
    .header__link {
        font-size: 16px;
    }
    .hero__title {
        font-size: 320px;
    }
    .hero__subtitle {
        font-size: 28px;
        margin-top: 30px;
        line-height: 26px;
    }
    .about {
        margin: 160px 0;
    }
    .large-text {
        font-size: 36px;
    }
    .about .large-text {
        width: 1000px;
        margin: 12px 0 24px 0;
    }
    .about img {
        transform: scale(1.8);
        transform-origin: center;
    }
    .about .content-text {
        width: 900px;
        font-size: 24px;
        line-height: 28px;
    }
    .directions__number {
        font-size: 18px;
    }
    .content-text {
        font-size: 24px;
        line-height: 28px;
    }
    .directions h3 {
        font-size: 28px;
    }
    .directions__item img {
        height: 252px;
    }
    .contacts .container {
        width: 1300px;
    }
    .split-layout {
        gap: 76px;
    }
    .contacts__form {
        font-size: 24px;
    }
    .contacts__form input, textarea, button {
        font-size: 24px;
        height: 56px;
    }
    .contacts .large-text {
        margin: 10px 0 6px 0;
    }
}



@font-face {
    font-family: 'Syne';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/652557a3283c2bef08de9599_Syne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Syne';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/652557a45e3694b8cd78b9fd_Syne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Syne';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/652557a361a9b3332a8ef538_Syne-ExtraBold.ttf') format('truetype'), url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/652557a3207a69b52a7a3f9c_Syne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futurapt Demi';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/65255963e3a8cfcd70e140b5_FuturaPT-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futurapt';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/6525596310faf129a1511fd8_FuturaPT-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futurapt';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/6525596318beed7e5ebf4542_FuturaPT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futurapt Book';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/6525596327d0de5a2ad42f05_FuturaPT-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'FuturaPT';
    src: url('https://cdn.prod.website-files.com/6525360cd9522bc06a474541/65256814af9773d82c635558_FuturaPTLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }