/*
logo-container = sf__navbar__logo
logo = sf__navbar__logo__icon
large-logo = sf__navbar__logo__large
small-logo = sf__navbar__logo__small
*/

:root {
    --large_image_height: 55px;
    --small_image_height: 55px;
}

.hs-tools-menu {
    transform: translateY(50px);
}

.sf__navbar {
    position: fixed;
    width: 100%;
    min-height: 55px;
    left: 0;
    top: 0;
    overflow-x: clip;
    background: var(--primary_color);
    z-index: 5;
    transition: all .3s ease-in-out;
}

.sf__navbar__scrolled__down.sf__navbar {
    background: var(--primary_color);
}

.sf__navbar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 100%;
}

.sf__navbar__logo {
    display: block;
    position: relative;
    height: var(--large_image_height);
}

.sf__navbar__scrolled__down .sf__navbar__logo {
    height: var(--small_image_height);
}

.sf__navbar__logo__icon {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .3s ease, visibility .3s ease;
}

.sf__navbar__logo__small {
    width: auto;
    height: 40px;
    transform: scale(1);
    visibility: visible;
}

.sf__navbar__scrolled__down .sf__navbar__logo__small {
    transform: scale(1);
    visibility: visible;
}

.sf__navbar__logo__large {
    height: var(--large_image_height);
    width: auto;
    transform: scale(1);
    visibility: hidden;
}

.sf__navbar__scrolled__down .sf__navbar__logo__large {
    transform: scale(0);
    visibility: hidden;
}

.sf__nav__desktop__items {
    display: none;
}

.sf__hamburger__container {
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.sf__navbar__scrolled__down .sf__hamburger__container p {
    color: var(--text_color) !important;
}

.sf__navbar__scrolled__down .sf__hamburger__container {
    color: var(--text_color) !important;
}

.sf__hamburger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 20;
}

.sf__hamburger__rotate.active {
    transform: rotate(45deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
}

.sf__navbar__scrolled__down .line {
    stroke: var(--text_color) !important;
}

.sf__hamburger.active .line {
    stroke: #D8D8D8;
}

.sf__hamburger .top {
    stroke-dasharray: 40 160;
}

.sf__hamburger .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
}

.sf__hamburger .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
}

.sf__hamburger.active .top {
    stroke-dashoffset: -64px;
}

.sf__hamburger.active .middle {
/ / stroke-dashoffset: - 20 px;
    transform: rotate(90deg);
}

.sf__hamburger.active .bottom {
    stroke-dashoffset: -64px;
}

.sf__navbar__sidenav {
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary_color);
    top: 0;
    position: absolute;
    right: -100%;
    transition: right .3s ease-in-out;
    overflow-y: scroll;
}

.sf__navbar__sidenav__inner {
    padding-top: 80px;
    padding-left: 25px;
    padding-right: 25px;
    height: 100%;
}

.sf__navbar__sidenav.active {
    right: 0;
}

.sf__navbar__sidenav__extra {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.sf__navbar__sidenav__extra .sf__rounded__cta a {
    width: 280px;
    margin: 0 auto;
}

.sf__navbar__main__content__child,
.sf__navbar__main__content__child a {
    display: flex;
    color: var(--text_color);
    align-items: center;
    font-size: 19px;
    justify-content: space-between;
    padding: 15px 0;
    text-decoration: none;
    cursor: pointer;
}

.sf__navbar__main__content__child a {
    padding: 0;
}

.sf__navbar__main__content__child svg {
    width: 30px;
    height: 30px;
    opacity: 23%;
}

.sf__navbar__main__content__sub a {
    display: block;
    font-size: 19px;
    margin-left: 10px;
    text-decoration: none;
    color: var(--text_color);
    margin-bottom: 15px;
}

.sf__navbar__main__content__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out;
}

.sf__navbar__main__content__child svg {
    transition: all .2s ease-in-out;
}

.sf__classlist__active__subnav {
    max-height: 1000px;
}

.sf__classlist__active__subnav__icon {
    transform: rotate(180deg);
}

.sf__hero__banner__container {
    padding-top: var(--large_image_height);
}

.sf__hamburger__container p {
    transition: color .3s ease-in-out;
}

.sf__hamburger__container.active p {
    color: #fff !important;
}

.sf__hamburger__container path {
    transition: all .3s ease-in-out;
}

.sf__hamburger__container.active path {
    stroke: #fff !important;
}

/* Tablet devices */
@media (min-width: 768px) {

}

/* Laptops and desktops */
@media (min-width: 1024px) {
    .sf__navbar {
        background: transparent;
    }

    .sf__navbar__wrapper {
        max-width: var(--maximum_content_width);
        margin: 0 auto;
    }

    .sf__nav__desktop__items {
        display: flex;
        gap: 15px;
    }

    .sf__nav__desktop__items a {
        font-size: 19px;
        color: #fff;
        text-decoration: none;
        transition: color .3s ease-in-out;
    }

    .sf__navbar__scrolled__down .sf__nav__desktop__items a {
        color: var(--text_color) !important;
    }

    .sf__nav__burger__container {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .sf__hamburger__container {
        transition: all .3s ease-in-out;
        position: relative;
        z-index: 20;
    }

    .sf__hamburger__container p {
        font-size: 19px;
    }

    .sf__hamburger__container.active {
        transform: translateX(calc(100% - 25px))
    }

    .sf__navbar__logo__small {
    width: auto;
    height: 40px;
    transform: scale(0);
    visibility: hidden;
}

.sf__navbar__scrolled__down .sf__navbar__logo__small {
    transform: scale(1);
    visibility: visible;
}

.sf__navbar__logo__large {
    height: var(--large_image_height);
    width: auto;
    transform: scale(1);
    visibility: visible;
}

.sf__navbar__scrolled__down .sf__navbar__logo__large {
    transform: scale(0);
    visibility: hidden;
}
}

