@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 Wide", sans-serif;
  --second-family: "KZ 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;
}

.hero__wrapper {
    width: 100%;
    max-height: 1150px;
    height: 100vh;
}

.hero__bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero__bg--video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__bg--overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 45px 0;
    transition:
        padding .35s ease,
        background .35s ease,
        backdrop-filter .35s ease;
}

.header.header_fixed {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.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;
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    gap: 40px;
    padding: 120px 0 80px;
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 320px;
    backdrop-filter: blur(14px);
    background: rgba(77, 77, 77, 0.48);
    padding: 16px 30px;
}

.hero__tag--dote {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background: #ee4457;
}

.hero__tag--desc {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 136%;
    color: #fff;
}

.hero__content--text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.hero__content--title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 56px;
    line-height: 123%;
    color: #fff;
}

.hero__content--desc {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 23px;
    line-height: 135%;
    color: #fff;
}

.to-bottom {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.to-bottom span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b4b4b4;
    padding-bottom: 10px;
}

.hero__social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    z-index: 100;
}

.hero__social--text {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 167%;
    color: #fff;
    writing-mode: vertical-rl;
    position: relative;
    padding-top: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__social.scrolled .hero__social--text {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

.hero__social--text::after {
    content: '';

    position: absolute;
    bottom: -70%;
    left: -14px;

    width: 1px;
    height: 100%;

    background: rgba(255, 255, 255, 0.2);
}

.hero__social--list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__social--link {
    width: 50px;
    height: 50px;
}

.hero__social--link:hover .hero__social--img {
    transform: scale(1.1);
}

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

.event-text {
    background: #fff;
    padding: 100px 0 180px;
}

.event-text.event-text_has-cards {
    padding: 100px 0;
}

.event-text__title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 123%;
    color: #151515;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.event-text__title b {
    display: block;
    font-weight: 500;
    letter-spacing: 0.11em;
}

.event-text__desc {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: #555555;
}

.event-text__desc_bottom {
    margin-top: 50px;
}

.event-text__desc p {
    margin-bottom: 15px;
}

.event-text__buttons {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.event-text__btn {
    min-width: 250px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 17px;
    color: #fff;
}

.event-text__btn video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-text__btn span {
    position: relative;
    z-index: 2;
}

.event-text__btn_border {
    border: 1px solid #CFCFCF;
    color: #151515;
}

.corporative {
    padding: 100px 0 180px;
    background: #000;
}

.corporative__title {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 48px;
    line-height: 123%;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.corporative__slider {
    overflow: hidden;
}

.corporative__card {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.corporative__card--img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.corporative__card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.corporative__card:hover .corporative__card--img img {
    transform: scale(1.06);
}
.corporative__card--title {
    max-width: 390px;
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 23px;
    overflow: hidden;
}

.corporative__card--title-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 0.4s ease;
}

.corporative__card:hover .corporative__card--title-video {
    opacity: 1;
}

.corporative__card--title span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 23px;
    line-height: 104%;
    color: #fff;
    z-index: 3;
}

.corporative__slider .swiper-pagination {
    position: static;
    margin-top: 45px;

    display: flex;
    justify-content: center;
    gap: 15px;
}

.corporative__slider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 !important;
    opacity: 1;
    background: #939393;
}

.corporative__slider .swiper-pagination-bullet-active {
    background: #ee4457;
}

.portfolio {
    background: #3a3a3a;
    padding: 80px 0 90px;
    position: relative;
    margin-bottom: 190px;
}

.bg-blur {
    position: absolute;
    top: -45%;
    left: 0;
    pointer-events: none;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: 1fr 645px;
    align-items: center;
    gap: 40px;
}

.portfolio__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 55px;
    position: relative;
}

.portfolio__text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.portfolio__title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--third-family);
    font-weight: 300;
    font-size: 48px;
    line-height: 123%;
    color: #fff;
}

.portfolio__title span {
    font-family: var(--third-family);
    font-weight: 900;
    font-size: 64px;
    line-height: 92%;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #fff;
}

.portfolio__desc {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 31px;
    line-height: 148%;
    color: #fff;
}

.portfolio__btn {
    display: block;
    background: #fff;
    padding: 15px 55px;
    color: #ee4457;
    transition: all 0.25s ease-in;
}

.portfolio__btn span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 17px;
    line-height: 141%;
    text-align: center;
}

.portfolio__btn:hover {
    background: #ee4457;
    color: #fff;
}

.portfolio__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 45px;
    row-gap: 50px;
    transform: translateY(-190px);
    margin-bottom: -390px;
}

.portfolio__card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
}

.portfolio__card--img {
    width: 100%;
    height: 265px;
    overflow: hidden;
}

.portfolio__card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in;
}

.portfolio__card:hover .portfolio__card--img img {
    transform: scale(1.06);
}

.portfolio__card--title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 123%;
    color: #fff;
    transition: color 0.25s ease-in;
}

.portfolio__card:hover .portfolio__card--title {
    color: #ee4457;
}

.request__bg {
    position: relative;
    padding: 154px 0;

    background-size: cover;
    background-position: center;
}

.request__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.request__content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.request__title {
    margin-bottom: 35px;

    font-family: var(--third-family);
    font-weight: 300;
    font-size: 48px;
    line-height: 123%;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
}

.request__title span {
    display: block;
    font-weight: 900;
}

.request__desc {
    margin-bottom: 40px;

    font-family: var(--second-family);
    font-weight: 300;
    font-size: 27px;
    line-height: 115%;
    text-align: center;
    color: #fff;
}

.request__fields {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 20px;
    margin-bottom: 20px;
}

.request__input {
    width: 100%;
    height: 60px;
    border: none;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    padding: 0 17px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.request__input::placeholder {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.request__bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    text-align: left;
}

.request__btn {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
}

.request__btn video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

.request__btn span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 124%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

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

.partners {
    padding: 100px 0;
    background: #fff;
}

.partners__title {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 48px;
    line-height: 123%;
    text-align: center;
    color: #151515;
    margin-bottom: 50px;
}

.partners__slider {
    overflow: hidden;
}

.partners__card {
    height: 95px;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    padding: 20px 22px;
}

.partners__card--img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partners__slider .swiper-pagination {
    display: none;
}

@media (min-width: 1200px) {
    .partners__slider .swiper-pagination {
        position: static;
        margin-top: 45px;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .partners__slider .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        margin: 0 !important;

        opacity: 1;
        background: #939393;
    }

    .partners__slider .swiper-pagination-bullet-active {
        background: #ee4457;
    }
}

.blog {
    padding-bottom: 100px;
    background: #fff;
}

.blog__card-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 236%;
    color: #151515;
}

.blog__card-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog__card-text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    color: #777;
}

.blog__card-link {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #ee4457;
    margin-top: 20px;
}

.block__hidden {
    display: none;
}

.block__hidden.active {
    display: block;
}

.block__content {
    display: flex;
    flex-direction: column;
}

.block__content h1 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 236%;
    color: #151515;
}

.block__content--desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.block__content p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    color: #777;
    padding-bottom: 10px;
}

.block__content--desc span {
    font-weight: 700;
    color: #151515;
}

.block__content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
}

.block__content ul li p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    color: #777;
}

.block__content--list-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 0 10px 10px;
    list-style: disc;
    list-style-position: outside;
    padding-left: 28px;
}

.block__content--list-bottom li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 119%;
    color: #777;
}

.footer {
    padding: 25px 0 22px;
    background: #000;
}

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

.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);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);

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

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;

    width: 100%;
    max-width: 500px;

    background: #000;
    border: 1px solid #4d4d4d;

    padding: 50px 35px;
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 20px;

    border: 0;
    background: transparent;

    font-size: 38px;
    line-height: 1;
    color: #fff;

    cursor: pointer;
}

.modal__title {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

    margin-bottom: 20px;
}

.modal__desc {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #fff;

    margin-bottom: 30px;
}

.modal__row {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin-bottom: 22px;
}

.modal__input {
    width: 100%;
    height: 58px;

    border: 0;
    outline: none;

    background: #5a5a5a;

    padding: 0 20px;

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

.modal__input::placeholder {
    color: #fff;
    opacity: 1;
}

.modal__btn {
    position: relative;

    width: 100%;
    height: 64px;

    border: 0;
    overflow: hidden;

    cursor: pointer;

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

.modal__btn video {
    position: absolute;
    inset: 0;

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

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

.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;
    }

    .hero__content--title {
        font-size: 48px;
    }

    .hero__content--desc {
        font-size: 21px;
    }

    .corporative__card {
        height: 430px;
    }

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

    .portfolio__title {
        font-size: 42px;
    }

    .portfolio__title span {
        font-size: 56px;
    }

    .portfolio__desc {
        font-size: 26px;
    }

    .footer__nav {
        gap: 45px;
    }

}

@media (max-width: 992px) {

    .header {
        padding: 24px 0;
    }

    .header.header_fixed {
        padding: 18px 0;
    }

    .navbar__list,
    .navbar__contact {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero__content {
        padding: 180px 0 120px;
    }

    .hero__content--title {
        font-size: 42px;
    }

    .hero__content--desc {
        font-size: 20px;
    }

    .event-text {
        padding: 80px 0 120px;
    }

    .event-text__title {
        font-size: 36px;
    }

    .event-text__buttons {
        flex-wrap: wrap;
    }

    .corporative {
        padding: 70px 0 120px;
    }

    .corporative__title,
    .partners__title {
        font-size: 40px;
    }

    .corporative__card {
        height: 400px;
    }

    .portfolio {
        margin-bottom: 120px;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio__list {
        transform: none;
        margin-bottom: 0;
    }

    .portfolio__title {
        font-size: 40px;
    }

    .portfolio__title span {
        font-size: 52px;
    }

    .portfolio__desc {
        font-size: 24px;
    }

    .request__bg {
        padding: 110px 0;
    }

    .request__title {
        font-size: 40px;
    }

    .request__desc {
        font-size: 22px;
    }

    .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;
    }

    .header.header_fixed {
        padding: 14px 0;
    }

    .navbar__list,
    .navbar__contact {
        display: none;
    }

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

    .burger {
        display: flex;
    }

    .hero__wrapper {
        height: auto;
    }

    .hero__content {
        padding: 170px 0 110px;
        gap: 25px;
    }

    .hero__tag {
        padding: 12px 18px;
        gap: 10px;
    }

    .hero__tag--dote {
        width: 10px;
        height: 10px;
    }

    .hero__tag--desc {
        font-size: 15px;
    }

    .hero__content--title {
        font-size: 36px;
        line-height: 115%;
    }

    .hero__content--desc {
        font-size: 18px;
        line-height: 145%;
    }

    .to-bottom {
        bottom: 20px;
        gap: 10px;
    }

    .to-bottom span {
        font-size: 12px;
    }

    .hero__social {
        right: 12px;
        bottom: 12px;
    }

    .hero__social--text {
        display: none;
    }

    .hero__social--link {
        width: 50px;
        height: 50px;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
   
    .corporative__title,
    .portfolio__title,
    .partners__title {
        font-size: 34px;
        line-height: 120%;
    }

    .corporative {
        padding: 50px 0;
    }

    .corporative__card {
        height: 360px;
    }

    .corporative__card--title {
        max-width: calc(100% - 20px);
        min-height: auto;
        padding: 14px 16px;
    }

    .corporative__card--title span {
        font-size: 18px;
    }

    .portfolio {
        padding: 70px 0;
        margin-bottom: 0;
    }

    .portfolio__info {
        gap: 35px;
    }

    .portfolio__text {
        gap: 18px;
    }

    .portfolio__title {
        font-size: 34px;
    }

    .portfolio__title span {
        font-size: 42px;
    }

    .portfolio__desc {
        font-size: 18px;
        line-height: 145%;
    }

    .portfolio__btn {
        width: 100%;
        text-align: center;
    }

    .portfolio__list {
        transform: none;
        margin-bottom: 0;
        row-gap: 30px;
    }

    .portfolio__card {
        gap: 18px;
    }

    .portfolio__card--img {
        height: 230px;
    }

    .portfolio__card--title {
        font-size: 18px;
    }

    .bg-blur {
        display: none;
    }

    .request__bg {
        padding: 90px 0;
    }

    .request__title {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .request__desc {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .request__fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .request__input {
        height: 54px;
        font-size: 15px;
    }

    .request__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .request__btn {
        width: 100%;
    }

    .request__btn span {
        font-size: 16px;
    }

    .request__note {
        font-size: 14px;
        line-height: 145%;
    }

    .partners {
        padding: 70px 0;
    }

    .partners__title {
        margin-bottom: 35px;
    }

    .partners__card {
        height: 80px;
        padding: 15px;
    }

    .blog {
        padding-bottom: 70px;
    }

    .blog__card-title,
    .block__content h1 {
        font-size: 22px;
        line-height: 140%;
    }

    .blog__card-text p,
    .block__content p,
    .block__content ul li p,
    .block__content--list-bottom li {
        font-size: 15px;
        line-height: 150%;
    }

    .block__content--list-bottom {
        padding-left: 22px;
    }

    .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: 576px) {
    .event-text {
        padding: 70px 0;
    }

    .event-text.event-text_has-cards {
        padding: 40px 0;
    }

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

    .event-text__desc {
        font-size: 17px;
    }

    .event-text__buttons {
        flex-direction: column;
    }

    .event-text__btn {
        width: 100%;
    }
}