.header {
    padding: 37.5px 0;
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo img {
    height: 32px;
}

.header__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.header__nav-item {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
}

.header__nav-item:hover {
    color: #E93F2E;
}

.header__nav-item--active {
    color: #E93F2E;
    border-radius: 70px;
    box-shadow: 0px 25px 7px 0px rgba(222, 44, 39, 0.00), 0px 16px 6px 0px rgba(222, 44, 39, 0.03), 0px 9px 5px 0px rgba(222, 44, 39, 0.10), 0px 4px 4px 0px rgba(222, 44, 39, 0.17), 0px 1px 2px 0px rgba(222, 44, 39, 0.20);
}

.header__btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.header__btn {
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #E93F2E;
    box-sizing: border-box;
    color: #E93F2E;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__signup {
    color: #FFF;
    border-radius: 20px;
    border: none;
    background: radial-gradient(92.39% 92.39% at 22.06% 19.23%, #F9D1CD 0%, #EC5B4D 43%, #DB2525 69%, #E93F2E 85%, #F5B0A9 100%);
}

.header__btn:hover {
    color: #FFFFFF;
    background: #E93F2E;
}

.header__burger-wrapper {
    display: contents;
}

.header__burger-btn {
    display: none;
}

.header__dropdown {
    flex-direction: column;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 49px;
    right: -12px;
    padding: 12px 8px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.header__dropdown-active {
    display: flex;
}

.header__dropdown-item {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header__dropdown-item:hover {
    color: #E93F2E;
}

@media (max-width: 1260px) {
    .header__dropdown {
        right: 38px;
    }
}

@media (max-width: 768px) {

    .header {
        padding: 10px 0;
    }

    .header__logo img {
        height: 32px;
    }

    .header__burger-btn {
        display: block;
    }

    .header__burger-wrapper {
        display: none;
        position: absolute;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        top: 50px;
        right: 23px;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
        background: #FFFFFF;
        z-index: 999;
    }

    .header__burger-wrapper-active {
        display: flex;
    }

    .header__nav {
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        gap: 0;
        margin-bottom: 24px;
    }
    
    .header__nav-item {
        padding: 12px 16px;
    }
    
    .header__nav-item--active {
        color: #272737;
        border-radius: 0;
        box-shadow: none;
    }

    .header__dropdown {
        border-radius: 0;
        box-shadow: none;
        position: static;
        padding: 0;
        margin-top: 12px;
        gap: 8px;
        width: 100%;
        align-items: center;
        display: none;
    }

    .header__dropdown-active {
        display: flex;
    }

    .header__dropdown-item {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        border-radius: 30px;
        border: 1px solid #CCCBD8;
    }

}