.header-transparent {
    position:   fixed;
    top:        0;
    background: linear-gradient(180deg, #FEFDFC 58.45%, rgba(254, 253, 252, 0.00) 100%);
    width:      100vw;
    height:     142px;
    z-index:    1000;

    .header {
        padding:    16px 0;
        height:     48px;
        position:   fixed;
        top:        10px;
        left:       80px;
        width:      calc(100vw - 160px);
        z-index:    10000;

        & header {
            display:         flex;
            justify-content: space-between;
            align-items:     center;
            height:          100%;

            .header-logo {
                width:        29%;
                display:      flex;
                align-items:  center;
                gap:          25px;

                .lang-dropdown {
                    max-width:  120px;

                    .selected {
                        gap:                5px;
                        padding:            4px;
                        border:             none;
                        border-radius:      0;
                        border-bottom:      1px solid #D0D5DD;
                        background-color:   transparent;

                        & svg {
                            width:  15px;
                            height: 15px;
                        }

                        .lang {
                            font-size:    13px;
                            font-weight:  500;
                            line-height:  18px;
                        }
                    }

                    .options {
                        padding:    0;
                        border:     1px solid #D0D5DD;
                        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

                        & div {
                            padding:        8px 10px;
                            border-radius:  6px;

                            &:not(:last-child) {
                                margin:  0;
                            }
                        }
                    }
                }
            }

            .navbar {
                display:         flex;
                justify-content: flex-end;
                flex-grow:       1;
            }

            & nav {
                display:    flex;
                flex-grow:  1;

                & ul {
                    display:     flex;
                    align-items: center;
                    gap:         38px;

                    & li {
                        cursor: pointer;

                        &:is(.socials li) {
                            padding: 8px 10px;
                        }

                        & a {
                            font-size:       14px;
                            font-style:      normal;
                            font-weight:     600;
                            line-height:     20px;
                            text-transform:  uppercase;
                            color:           #2F1D49;
                            text-decoration: none;
                        }

                        &:hover {
                            & a:not(.header-dropdown a) {
                                color: #FF3D71;
                            }

                            & .dropdown-btn:not(.socials .dropdown-btn) {
                                color: #FF3D71;

                                & svg path {
                                    stroke: #FF3D71;
                                }
                            }

                            .header-dropdown li {
                                &:hover {
                                    & a:not(.socials a) {
                                        color: #FF3D71;
                                    }

                                    &:is(.socials li) {
                                        background:     #F7F9FC;
                                        border-radius:  40px;
                                        padding:        8px 10px;
                                    }

                                    & svg path:not(.socials svg path) {
                                        stroke: #FF3D71;
                                    }
                                }
                            }
                        }
                    }

                    .active {
                        position: relative;

                        & a:not(.header-dropdown a) {
                            color: #FF3D71;

                            & svg path {
                                stroke: #FF3D71;
                            }
                        }

                        .dropdown-btn {
                            color: #FF3D71;

                            & svg path {
                                stroke: #FF3D71;
                            }
                        }

                        .header-dropdown .active {
                            & a:not(.socials a) {
                                color: #FF3D71;
                            }

                            &:is(.socials .active) {
                                background:     #F7F9FC;
                                border-radius:  40px;
                                padding:        8px 10px;
                            }

                            & svg path:not(.socials svg path) {
                                stroke: #FF3D71;
                            }
                        }
                    }

                    .resources, .socials {
                        position:  relative;
                        max-width: 100%;

                        & svg {
                            transition: .3s;
                        }

                        & a {
                            display:     flex;
                            align-items: center;
                            gap:         8px;
                            min-width:   max-content;
                        }

                        .header-dropdown {
                            position:       absolute;
                            top:            calc(100% + 10px);
                            border-radius:  0 20px 20px 20px;
                            background:     #FFF;
                            box-shadow:     0 10px 34px 0 rgba(0, 0, 0, 0.10);

                            opacity:        0;
                            pointer-events: none;
                            transition:     .3s;
                            transform:      translateY(10px);
                        }

                        &.opened {
                            .dropdown-btn {
                                & svg {
                                    transform: rotate(-180deg);
                                }
                            }

                            .header-dropdown {
                                transform:      translateY(0);
                                opacity:        1;
                                pointer-events: auto;
                            }
                        }
                    }

                    .resources {
                        .header-dropdown {
                            padding:        20px 40px 20px 20px;
                            display:        flex;
                            flex-direction: column;
                            align-items:    flex-start;
                            gap:            20px;
                        }
                    }

                    .socials {
                        .header-dropdown {
                            padding:        32px 30px;
                            display:        grid;
                            grid-template-columns: repeat(4, 1fr);
                            gap:            24px 20px;
                        }
                    }
                }
            }

            .header-actions {
                display:         flex;
                align-items:     center;
                justify-content: flex-end;
                gap:             10px;
            }

            .mobile-navbar {
                display: none;
            }
        }
    }
}

@media screen and (min-width: 1681px) {
    .header-transparent {
        .header {
            left:      50%;
            transform: translate(-50%, 0);
            width:     1600px;

            & header {
                .header-logo {
                    width: 32%;
                }
            }
        }
    }
}

@media screen and (max-width: 1400px) {
    .header-transparent {
        .header {
            & header {
                .header-logo {
                    width: 27%;
                }
            }
        }
    }
}

@media screen and (max-width: 1280px) {
    .header-transparent {
        .header {
            left:   40px;
            width:  calc(100vw - 80px);

            & header {
                .header-logo {
                    width: 27%;
                }

                & nav {
                    & ul {
                        gap: 16px;

                        & li {
                            & a {
                                font-size: 13px;
                                line-height: 16px;
                            }
                        }
                    }
                }

                .header-actions {
                    gap: 5px;

                    .btn__md {
                        font-size:  13px;
                        padding:    14px;
                    }

                    .btn__sm {
                        font-size:  11px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .header-transparent {
        .header {
            & header {
                .header-logo {
                    width: 29%;

                    .lang-dropdown {
                        display: block;
                    }
                }

                .navbar {
                    display: none;

                    & nav {
                        display: none;
                    }
                }

                .mobile-navbar {
                    display: flex;

                    .navbar-btn {
                        background: transparent;

                        & svg {
                            width:  24px;
                            height: 24px;
                        }
                    }

                    .navbar-overlay {
                        display:          none;
                        position:         fixed;
                        top:              73px;
                        left:             0;
                        width:            100%;
                        height:           100%;
                        z-index:          2000;
                        background-color: rgba(255, 255, 255, 0.3);
                    }

                    .navbar-content {
                        position:       absolute;
                        width:          calc(100% + 20px);
                        max-height:     calc(100dvh - 93px);
                        top:            63px;
                        left:           -20px;
                        overflow-y:     auto;
                        border-radius:  0 0 6px 6px;
                        background:     #FEFDFC;
                        box-shadow:     0 0 34px 0 rgba(0, 0, 0, 0.10);
                        z-index:        20000;

                        opacity:        0;
                        visibility:     hidden;
                        transition:     0.3s;

                        .navbar-header {
                            display:         flex;
                            justify-content: space-between;
                            align-items:     flex-start;

                            padding:         17px 20px;
                            border-bottom:   1px solid #D9D9D9;

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

                            .close-menu-btn {
                                background: none;

                                & svg {
                                    width:  24px;
                                    height: 24px;
                                }
                            }
                        }

                        .navbar-body {
                            max-height: 100vh;

                            & nav {
                                padding:       26px 20px;
                                border-bottom: 1px solid #D9D9D9;

                                & ul {
                                    display:        flex;
                                    flex-direction: column;
                                    align-items:    flex-start;
                                    gap:            30px;

                                    & li {
                                        & a {
                                            display:     flex;
                                            align-items: center;
                                            gap:         8px;
                                        }

                                        &#mobile-socials {
                                            .header-dropdown {
                                                display:        none;

                                                padding-top:    20px;
                                                flex-direction: column;
                                                gap:            20px;

                                                & a {
                                                    font-weight:    500;
                                                    color:          #101828;
                                                    text-transform: capitalize;
                                                }
                                            }

                                            &.opened {
                                                .header-dropdown {
                                                    display: flex;
                                                }

                                                .dropdown-btn {
                                                    & svg:last-child {
                                                        transform: rotate(-180deg);
                                                    }
                                                }
                                            }
                                        }
                                    }

                                    & svg {
                                        width:  20px;
                                        height: 20px;
                                    }
                                }
                            }

                            .contact {
                                display:        flex;
                                flex-direction: column;
                                gap:            20px;
                                padding:        30px 20px;

                                & a {
                                    text-decoration: none;
                                }

                                & h5 {
                                    font-size:   14px;
                                    font-style:  normal;
                                    font-weight: 400;
                                    line-height: 20px; /* 142.857% */
                                    color:       #2F1D49;
                                }

                                .mail {
                                    & a {
                                        font-size:      14px;
                                        font-style:     normal;
                                        font-weight:    600;
                                        line-height:    20px; /* 142.857% */
                                        color:          #2F1D49;
                                        display:        flex;
                                        align-items:    center;
                                        gap:            4px;

                                        & svg {
                                            width:  20px;
                                            height: 20px;
                                        }
                                    }
                                }

                                .socials {
                                    display:     flex;
                                    align-items: center;
                                    gap:         20px;

                                    & a {
                                        max-width: 30px;

                                        & img {
                                            width: 100%;
                                        }
                                    }
                                }

                                .copyright {
                                    font-size:   12px;
                                    font-style:  normal;
                                    font-weight: 400;
                                    line-height: 18px; /* 150% */
                                    color:       #2F1D49;

                                    & a {
                                        color:          #2F1D49;
                                        font-weight:    600;
                                    }
                                }
                            }
                        }
                    }

                    &:has(.open-menu) {
                        & .navbar-overlay {
                            display: block;
                        }

                        & .navbar-content {
                            top: 73px;
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }

                .header-actions {
                    gap: 10px;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .header-transparent {
        background: rgba(255, 255, 255, 0.94);
        height:     73px;

        .header {
            padding: 5px 0;
            height:  63px;
            top:     0;
            left:    20px;
            width:   calc(100vw - 40px);

            & header {
                .header-logo {
                    & img {
                        width:  113px;
                        height: 39px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 480px) {
    .header-transparent {
        .header {
            & header {
                .header-logo {
                    width:              100%;
                    justify-content:    space-between;
                    gap:                0;

                    & img {
                       transform: scale(0.8);
                    }
                }

                .mobile-navbar {
                    margin-left: 10px;
                }
            }
        }
    }
}
