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

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

.profile {
    padding: 70px 0 90px;
}

.profile .infoblock {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.profile .textside_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile .imgside {
    width: 420px;
    flex-shrink: 0;

    border-radius: 24px;
    overflow: hidden;
}

.profile .imgside img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.profile .textside {
    flex: 1;
}

.profile .title {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 54px;
    line-height: 110%;
    color: #fff;

    margin-bottom: 20px;
}

.profile .position {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 22px;
    line-height: 130%;
    color: #ee4457;

    margin-bottom: 30px;
}

.profile .intro {
    font-size: 18px;
    line-height: 160%;
    color: rgba(255,255,255,.75);

    margin-bottom: 40px;
}

.profile .content {
    font-size: 18px;
    line-height: 170%;
    color: #fff;
}

.profile .content p {
    margin-bottom: 20px;
}

.profile .content p:last-child {
    margin-bottom: 0;
}

.profile .content ul,
.profile .content ol {
    padding-left: 22px;
    margin-bottom: 25px;
}

.profile .content li {
    margin-bottom: 12px;
}

@media (max-width: 991px) {

    .profile {
        padding: 60px 0 80px;
    }

    .profile .infoblock {
        flex-direction: column;
        gap: 40px;
    }

    .profile .imgside {
        width: 100%;
    }

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

}

@media (max-width: 767px) {

    .profile {
        padding: 40px 0 70px;
    }

    .profile .infoblock {
        gap: 30px;
    }

    .profile .imgside {
        border-radius: 18px;
    }

    .profile .title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .profile .position {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .profile .intro,
    .profile .content {
        font-size: 15px;
        line-height: 165%;
    }

}


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

    .footer__nav {
        gap: 55px;
    }

    .profile .infoblock {
        gap: 60px;
    }

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

}

@media (max-width: 992px) {

    .burger {
        display: flex;
    }

    .navbar__list,
    .navbar__contact {
        display: none;
    }

    .header {
        padding: 22px 0;
    }

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

    .profile {
        padding: 60px 0 80px;
    }

    .profile .infoblock {
        flex-direction: column;
        gap: 40px;
    }

    .profile .imgside {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .profile .title {
        font-size: 42px;
        text-align: center;
    }

    .profile .position {
        font-size: 20px;
        text-align: center;
    }

    .profile .intro,
    .profile .content {
        font-size: 16px;
    }

    .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: 768px) {

    .profile .title {
        font-size: 36px;
    }

    .profile .position {
        font-size: 18px;
    }

    .profile .intro,
    .profile .content {
        font-size: 15px;
        line-height: 165%;
    }

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

    .footer__social {
        flex-wrap: wrap;
    }

}

@media (max-width: 576px) {

    .burger {
        display: flex;
    }

}

@media (max-width: 576px) {

    .container {
        padding: 0 15px;
    }

    .header {
        padding: 20px 0;
    }

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

    .navbar__list,
    .navbar__contact {
        display: none;
    }

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

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

}