h3 {
    color: #242424;
    font-family: Muller;
    font-size: clamp(20px, 2vw, 24px);

    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    color: #242424;
    margin: 0;
    font-family: Muller;
    font-size: clamp(15px, 1.4vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 16px;
    gap: 12px;
    z-index: 55555;
    box-sizing: border-box;
    padding: 0 16px;
    box-sizing: border-box;
}

.inHeader {
    display: flex;
    max-width: 1320px;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 32px;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--Neutral-Light, #C2C2C2);
    background: #242424;


}

.logoAreaHeader {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
}

.logoAreaHeader span {
    color: #F8F4E9;
    text-align: center;
    font-family: Muller;
    font-size: clamp(11px, 1vw, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.rightPartHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxMenuBtns {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.menuHeader {
    display: flex;
    gap: clamp(18px, 2vw, 32px);
    align-items: center;
    justify-content: center;
}

.itemMenu {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #F8F4E9;
    text-align: center;
    font-family: Muller;
    font-size: clamp(15px, 1.4vw, 18px);
    font-style: normal;
    cursor: pointer;
    font-weight: 500;
    line-height: normal;
    transition: 0.24s;
}

.itemMenu:hover {
    color: #B681FF;
}

.btnContactUs {
    display: flex;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    box-sizing: border-box;
    border-radius: 12px;
    background: linear-gradient(87deg, #6A4C93 8.3%, #A086C4 91.4%);
    color: #F8F4E9;
    text-align: center;
    font-family: Muller;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    cursor: pointer;
    transition: 0.24s;
}

.btnContactUs:hover {
    background: linear-gradient(87deg, #9878c5 8.3%, #d7c1f5 91.4%) !important;
}

.wpcf7 {
    width: 100%;
}

.mobileMenu,
.mobileMenuBurger {
    display: none;
}

@media screen and (max-width: 1320px) {
    .logoAreaHeader span {
        display: flex;
        color: #F8F4E9;
        text-align: start;
        font-family: Muller;
        font-size: clamp(11px, 1vw, 14px);
        font-style: normal;
        font-weight: 500;
        line-height: 135%;
        justify-content: flex-start;
    }

    .boxMenuBtns {
        display: flex;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }

    .btnContactUs {

        padding: 8px 40px;

    }
}

@media screen and (max-width: 960px) {

    .rightPartHeader,
    .logoDesc {
        display: none !important;
    }

    .mobileMenuBurger {
        display: flex;
    }

    .burgerMenu {

        cursor: pointer;
    }

    .mobileMenu {
        display: flex;
        position: absolute;
        top: -400px;
        right: 0;
        flex-direction: column;


        opacity: 0;
        transition: 0.5s;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .mobileMenu.active {

        top: 64px;
        right: 0;
        opacity: 1;
    }

    .boxMenuBtns {
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        border: 1px solid #C2C2C2;
        background: #F8F4E9;
    }

    .menuHeader {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .itemMenu {
        color: #242424;
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }

    .menuHeader {
        gap: 0;
    }

    .boxMenuBtns {
        gap: 0;
    }

    .btnContactUs {
        margin: 12px 12px 0 12px;
    }

    .socialIconsHeader {
        display: flex;
        gap: 4px;
        margin: 0 12px 12px 12px;
        box-sizing: border-box;
    }

    .socialIconsHeader svg {
        cursor: pointer;
    }

    .socialIconsHeader svg path {
        fill: #242424;
    }
}