.elementor-13 .elementor-element.elementor-element-a5e7c94{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-a505563{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-a505563 */@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
:root {
    --sos-primary: #d75c32;
    --sos-primary-dark: #ad3f20;
    --sos-primary-soft: #fff1e9;

    --sos-text: #211a16;
    --sos-text-soft: #74675f;

    --sos-white: #ffffff;
    --sos-warm-bg: #f8f3ed;
    --sos-border: #ece2d9;

    --sos-shadow:
        0 16px 45px rgba(67, 42, 28, 0.08),
        0 3px 10px rgba(67, 42, 28, 0.04);
}

.sos-header,
.sos-header * {
    box-sizing: border-box;
}

.sos-header {
    position: relative;
    z-index: 999;
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    font-family:"Poppins", sans-serif;
}

.sos-header,
.sos-header button,
.sos-header input,
.sos-header a {
    font-family: "Poppins", sans-serif;
}

.sos-header a {
    color: inherit;
    text-decoration: none;
}

.sos-navbar {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 12px 10px 20px;
    background: var(--sos-white);
    border: 1px solid var(--sos-border);
    border-radius: 18px;
    box-shadow: var(--sos-shadow);
}

.sos-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.sos-brand-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: var(--sos-primary);
    border-radius: 12px;
    color: var(--sos-white);
}

.sos-brand-icon::after {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.sos-brand-icon svg {
    position: relative;
    z-index: 1;
    width: 21px;
    height: 21px;
}

.sos-brand-name {
    color: var(--sos-text);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.sos-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.sos-menu {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    padding: 5px;
    background: var(--sos-warm-bg);
    border-radius: 13px;
    list-style: none;
}

.sos-menu-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.sos-menu-link,
.sos-dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 39px;
    padding: 0 15px;
    background: transparent;
    border: 0;
    border-radius: 9px;
    color: var(--sos-text-soft);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.sos-menu-link:hover,
.sos-dropdown-button:hover {
    color: var(--sos-text);
}

.sos-menu-link.sos-active {
    background: var(--sos-white);
    color: var(--sos-text);
    box-shadow: 0 3px 10px rgba(60, 37, 24, 0.07);
}

.sos-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.sos-has-dropdown.sos-dropdown-open .sos-arrow {
    transform: rotate(180deg);
}

.sos-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 20;
    width: 280px;
    margin: 0;
    padding: 9px;
    background: var(--sos-white);
    border: 1px solid var(--sos-border);
    border-radius: 15px;
    box-shadow: var(--sos-shadow);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.sos-has-dropdown.sos-dropdown-open .sos-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.sos-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.sos-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border-radius: 11px;
    transition: background-color 0.2s ease;
}

.sos-dropdown-link:hover {
    background: var(--sos-warm-bg);
}

.sos-dropdown-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background: var(--sos-primary-soft);
    border-radius: 10px;
    color: var(--sos-primary);
}

.sos-dropdown-icon svg {
    width: 18px;
    height: 18px;
}

.sos-dropdown-content {
    display: block;
}

.sos-dropdown-content strong {
    display: block;
    margin-bottom: 3px;
    color: var(--sos-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.sos-dropdown-content small {
    display: block;
    color: var(--sos-text-soft);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

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

.sos-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 14px;
    color: var(--sos-text);
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.sos-login-button:hover {
    color: var(--sos-primary);
}

.sos-course-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    background: var(--sos-text);
    border-radius: 12px;
    color: var(--sos-white) !important;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sos-course-button:hover {
    background: var(--sos-primary);
    box-shadow: 0 8px 20px rgba(215, 92, 50, 0.22);
    transform: translateY(-1px);
}

.sos-course-button svg {
    width: 16px;
    height: 16px;
}

.sos-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--sos-warm-bg);
    border: 0;
    border-radius: 11px;
    color: var(--sos-text);
    cursor: pointer;
}

.sos-mobile-toggle svg {
    width: 22px;
    height: 22px;
}

.sos-close-icon {
    display: none;
}

.sos-mobile-toggle.sos-toggle-active .sos-menu-icon {
    display: none;
}

.sos-mobile-toggle.sos-toggle-active .sos-close-icon {
    display: block;
}

@media screen and (min-width: 921px) {
    .sos-has-dropdown:hover .sos-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width: 1050px) {
    .sos-navigation {
        gap: 14px;
    }

    .sos-menu-link,
    .sos-dropdown-button {
        padding-right: 11px;
        padding-left: 11px;
    }

    .sos-course-button {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media screen and (max-width: 920px) {
    .sos-header {
        padding: 10px 12px;
    }

    .sos-navbar {
        grid-template-columns: 1fr auto;
        min-height: 66px;
        padding: 10px 11px 10px 14px;
        border-radius: 15px;
    }

    .sos-mobile-toggle {
        display: inline-flex;
    }

    .sos-navigation {
        position: absolute;
        top: calc(100% + 9px);
        left: 0;
        display: block;
        width: 100%;
        padding: 12px;
        background: var(--sos-white);
        border: 1px solid var(--sos-border);
        border-radius: 15px;
        box-shadow: var(--sos-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .sos-navigation.sos-mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sos-menu {
        display: block;
        padding: 0;
        background: transparent;
    }

    .sos-menu-link,
    .sos-dropdown-button {
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }

    .sos-menu-link.sos-active {
        background: var(--sos-warm-bg);
        box-shadow: none;
    }

    .sos-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0 8px;
        overflow: hidden;
        border: 0;
        border-radius: 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease,
            margin 0.3s ease;
    }

    .sos-has-dropdown.sos-dropdown-open .sos-dropdown-menu {
        max-height: 350px;
        margin: 4px 0 8px;
        padding-top: 7px;
        padding-bottom: 7px;
        background: #fcf8f4;
        transform: none;
    }

    .sos-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--sos-border);
    }

    .sos-login-button {
        min-height: 44px;
        background: var(--sos-warm-bg);
        border-radius: 11px;
    }

    .sos-course-button {
        min-height: 44px;
    }
}

@media screen and (max-width: 520px) {
    .sos-brand-name {
        font-size: 16px;
    }

    .sos-brand-icon {
        width: 39px;
        height: 39px;
    }

    .sos-actions {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */