@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tosh A';
    src: url('../fonts/tosh-a-light1.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tosh A';
    src: url('../fonts/tosh-a-regular1\ \(1\).woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tosh A';
    src: url('../fonts/tosh-a-medium1.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tosh A';
    src: url('../fonts/tosh-a-bold1.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tosh A';
    src: url('../fonts/tosh-a-black1.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family: "Proxima Nova", sans-serif;
    --second-family: "Circe", sans-serif;
    --third-family: "Tosh A", sans-serif;
    --font3: "Onest", sans-serif;
}

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

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #000;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: 0 0 0px 1000px transparent inset;

    transition: background-color 9999s ease-in-out 0s;
}

.container {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 25px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    width: 104px;
    height: 45px;
}

.navbar__logo--icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 42px;
}

.navbar__list--link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    color: #fff;
    transition: color 0.25s ease-in;
}

.navbar__list--link:hover {
    color: #ee4457;
}

.navbar__contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__contact span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    color: #fff;
    transition: color 0.25s ease-in;
}

.navbar__contact:hover span {
    color: #ee4457;
}

.navbar__contact--img {
    position: relative;
    width: 24px;
    height: 24px;
}

.navbar__contact--icon,
.navbar__contact--icon-red {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: contain;

    transition:
        opacity 0.25s ease-in,
        transform 0.25s ease-in;
}

.navbar__contact--icon-red {
    opacity: 0;
}

.navbar__contact:hover .navbar__contact--icon {
    opacity: 0;
}

.navbar__contact:hover .navbar__contact--icon-red {
    opacity: 1;
}

.header__line {
    width: 100%;
    height: 1px;
    background: #262626;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 70px;
}

.breadcrumb__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #d2d2d2;
    transition: color 0.25s ease-in;
}

.breadcrumb__link:hover {
    color: #ee4457;
}

.breadcrumb__sep {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.breadcrumb__current {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #2d2d2d;
}

.brief {
    padding: 30px 0 90px;
    background: #000;
}

.brief__title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 42px;
    line-height: 120%;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.newform .title {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 30px;
}

.newform_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.newform_flex > .w50 {
    width: calc(50% - 10px) !important;
    flex: 0 0 calc(50% - 10px);
}

.newform_flex > .w100 {
    width: 100% !important;
    flex: 0 0 100%;
}

.newform .form-control {
    border: none;
    border-radius: 0;
    background: #5a5a5a;
    padding: 18px 18px;

    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #fff;

    outline: none;
    box-shadow: none;
}

.newform input.form-control,
.newform select.form-control {
    height: 60px;
}

.newform textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 16px;
}

.newform .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.newform .form-control:focus {
    background: #666;
}

.newform select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.newform .form-control option {
    background: #151515;
    color: #fff;
}

.mb40 {
    margin-bottom: 40px;
}

.budget-slider-container {
    color: #fff;
}

.budget-slider-container {
    width: 100%;
    flex: 0 0 100%;
}

.budget-slider-container .form-control {
    width: 100%;
}

.budget-slider-container label {
    display: block;
    margin: 15px 0;

    font-family: var(--second-family);
    font-size: 18px;
    line-height: 120%;
    color: #fff;
}

.styled-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    outline: none;
    margin: 20px 0;

    background: linear-gradient(
        to right,
        #ee4458 0%,
        #ee4458 0%,
        #4d4d4d 0%,
        #4d4d4d 100%
    );
}

.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 28px;
    height: 28px;

    background: #fff;
    border: 4px solid #ee4458;
    border-radius: 50%;

    cursor: pointer;
}

.fields_bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 40px;
}

.fields_bottom .bt {
    width: 247px;
}

.bt {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 224px;
    height: 54px;

    padding: 10px 30px;

    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;

    font-family: var(--second-family);
    font-size: 18px;
    font-weight: 700;
    color: #fff;

    transition: .3s ease;
}

.bt.grad video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt.grad span {
    position: relative;
    z-index: 2;
}

.form_note {
    font-family: var(--second-family);
    font-size: 17px;
    font-weight: 300;
    line-height: 140%;
    color: #fff;
}

.flatpickr-calendar {
    background: #555;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 12px;
    font-family: var(--second-family);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday,
.flatpickr-day {
    color: #fff !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255,255,255,.25) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #ee4458 !important;
    border-color: #ee4458 !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: #ee4458 !important;
    border-color: #ee4458 !important;
    color: #fff !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #555;
}

.footer {
    padding-bottom:22px;
    background: #000;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.footer__top--title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 21px;
    color: #fff;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__social--link {
    display: block;
    width: 50px;
    height: 50px;
}

.footer__social--icon {
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease-in;
}

.footer__social--link:hover .footer__social--icon {
    transform: scale(1.1);
}

.footer__middle {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 44px 0;
}

.footer__nav {
    display: flex;
    align-items: start;
    gap: 75px;
}

.footer__nav--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer__nav--title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.footer__nav--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer__nav--link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 101%;
    color: #a7a7a7;
    transition: color 0.25s ease-in;
}

.footer__nav--link:hover {
    color: #fff;
}

.to-top {
    width: 76px;
    height: 76px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease-in, background 0.25s ease-in;
}

.to-top:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.55);
}

.footer__copy {
    padding-top: 22px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.footer__copy a {
    font-weight: 600;
    color: #fff;
}

.footer__line {
    background: #333;
    position: relative;

    width: 100vw;
    height: 1px;

    left: 50%;
    transform: translateX(-50%);
}

.burger {
    width: 32px;
    height: 32px;

    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    position: relative;
    z-index: 120;
}

.burger span {
    width: 100%;
    height: 2px;

    background: #fff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100dvh;

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(14px);

    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    width: 100%;
    height: 100%;

    padding: 140px 20px 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-menu__link {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 28px;
    color: #fff;
}

.mobile-menu__phone {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

body.menu-open {
    overflow: hidden;
}

.navbar__item_dropdown {
    position: relative;
}

.navbar__list--link_dropdown {
    display: flex;
    align-items: center;
    gap: .417vw;
}

.navbar__arrow {
    transition: transform .3s ease;
}

.navbar__item_dropdown:hover .navbar__arrow {
    transform: rotate(180deg);
}

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 1.042vw);
    left: 0;

    min-width: 16.667vw;

    padding: 1.25vw;

    border-radius: 12px;

    background: rgba(15,15,15,.96);
    backdrop-filter: blur(1.042vw);

    display: flex;
    flex-direction: column;
    gap: .833vw;

    opacity: 0;
    visibility: hidden;

    transform: translateY(.521vw);

    transition: .3s ease;

    z-index: 100;
}

.navbar__dropdown::before {
    content: '';

    position: absolute;
    left: 0;
    bottom: 100%;

    width: 100%;
    height: 1vw;
}

.navbar__item_dropdown:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown--link {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 15px;
    color: #fff;
    transition: color 0.25s ease-in;
}

.navbar__dropdown--link:hover {
    color: #ee4457;
}

.mobile-menu__item_dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-menu__dropdown-btn {

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    border: none;
    padding: 0;

    color: #fff;
    text-align: left;

    cursor: pointer;
}

.mobile-menu__dropdown-btn span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

.mobile-menu__dropdown-arrow {
    transition: transform .3s ease;
}

.mobile-menu__item_dropdown.active .mobile-menu__dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu__dropdown-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.077vw;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height .4s ease,
        opacity .3s ease,
        margin-top .3s ease;

    margin-top: 0;
    padding-left: 3.077vw;
}

.mobile-menu__item_dropdown.active .mobile-menu__dropdown-list {
    max-height: 100vw;
    opacity: 1;
    margin-top: 4.103vw;
}

.mobile-menu__dropdown-link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #151515;
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;

    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s ease;
    z-index: 999;
}

.toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu__dropdown-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 1200px) {

    .navbar__list {
        gap: 28px;
    }

    .navbar__list--link {
        font-size: 17px;
    }

    .navbar__contact span {
        font-size: 17px;
    }

    .brief__title {
        font-size: 38px;
    }

    .footer__nav {
        gap: 45px;
    }

}

@media (max-width: 992px) {

    .header {
        padding: 20px 0;
    }

    .navbar__list,
    .navbar__contact {
        display: none;
    }

    .burger {
        display: flex;
    }

    .brief {
        padding: 25px 0 80px;
    }

    .breadcrumb {
        margin-bottom: 45px;
    }

    .brief__title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .newform .title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .newform_flex {
        gap: 18px;
    }

    .footer__top {
        align-items: center;
        gap: 25px;
    }

    .footer__middle {
        display: none;
        flex-direction: column;
        gap: 40px;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 35px;
    }

}

@media (max-width: 576px) {

    .burger {
        display: flex;
    }

}

@media (max-width: 576px) {

    .container {
        padding: 0 15px;
    }

    .header {
        padding: 18px 0;
    }

    .navbar__list,
    .navbar__contact {
        display: none;
    }

    .burger {
        display: flex;
    }

    .navbar__logo {
        width: 90px;
        height: auto;
    }

    .hero {
        padding: 25px 0 70px;
    }

    .breadcrumb {
        gap: 10px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .breadcrumb__link,
    .breadcrumb__sep,
    .breadcrumb__current {
        font-size: 13px;
    }

    .hero__info {
        gap: 40px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero__left {
        height: 260px;
    }

    .hero__right {
        gap: 30px;
    }

    .hero__text {
        gap: 18px;
    }

    .hero__title {
        font-size: 32px;
        line-height: 120%;
    }

    .hero__desc p {
        font-size: 15px;
        line-height: 150%;
    }

    .hero__autor--label,
    .hero__autor--name {
        font-size: 15px;
        line-height: 145%;
    }

    .newform_flex > .w50 {
        width: 100% !important;
        flex: 0 0 100%;
    }

    .fields_bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fields_bottom .bt {
        width: 100%;
    }

    .bt {
        width: 100%;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer__middle {
        display: none;
    }

    .footer__nav {
        flex-direction: column;
        gap: 35px;
    }

    .to-top {
        width: 60px;
        height: 60px;
    }

    .footer__copy {
        line-height: 150%;
    }

    .mobile-menu__content {
        padding: 120px 20px 35px;
    }

    .mobile-menu__link {
        font-size: 24px;
    }

    .mobile-menu__phone {
        font-size: 18px;
    }

}

@media (max-width: 767px) {

    .brief__title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .newform .title {
        font-size: 24px;
    }

    .newform_flex {
        gap: 16px;
    }

    .newform input.form-control,
    .newform select.form-control {
        height: 56px;
    }

    .newform textarea.form-control {
        height: 110px;
    }

}