

.navbar__hamburger {
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: none;
    background-image: url(../images/hamburger.svg);
}
.navbar__hamburger.active {
    background-image: url(../images/hamburger-active.svg);
}

.navbar__mobilenav__wrapper {
    position: absolute;
    top: 99px;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: none;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar__mobilenav__wrapper.active {
    display: block;
}
.navbar__mobilenav__links {
    list-style-type: none;
    padding-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
}
.navbar__mobilenav__links * {
    list-style-type: none;
    padding-left: 0;
}
.navbar__mobilenav__links a,
.navbar__mobilenav__links span.navbar__nolink {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333333;
    padding: 20px;
    display: block;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    margin-top: -1px;
}
.navbar__mobilenav__wrapper .parent {
    position: relative;
}
.navbar__mobilenav__wrapper .parent__link {
    padding-right: 30px;
}
.navbar__mobilenav__wrapper .parent .parent {
    position: relative;
}
.navbar__mobilenav__links > .parent.active > .sub-menu .parent.active .parent__arrow {
    background-image: url(../images/parent-arrow-active.svg);
    transform: rotate(90deg);
}
.navbar__mobilenav__links > .parent.active > .parent__link > .parent__arrow {
    background-image: url(../images/parent-arrow-active.svg);
    transform: rotate(90deg);
}
.navbar__mobilenav__wrapper .parent__arrow {
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/parent-arrow.svg);
    position: absolute;
    right: 0;
    top: 20px;
    transition: 0.2s;

}
.navbar__mobilenav__wrapper .sub-menu a,
.navbar__mobilenav__wrapper .sub-menu span.navbar__nolink {
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}
.navbar__mobilenav__wrapper .sub-menu .sub-menu a,
.navbar__mobilenav__wrapper .sub-menu .sub-menu span.navbar__nolink {
    font-weight: 400;
}
@media screen and (min-width: 767px) {
    .navbar__mobilenav__wrapper {
        top: 55px;
    }
}
.header__contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
}

.header__contact-callback {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background-color: #ffcf0c;
    width: fit-content;
    color: #333;
    height: 100%;
    
}
.header__contact-callback:hover {
    background-color: #ffcf0c;
    text-decoration: none;
    color: #333;
    
}
.header__contact-callback .fa {
    margin-right: 5px;
    font-size: 18px;
}

.navbar__wrapper {
    display: flex;
    align-items: center;
        justify-content: space-between;
    position: initial;
}
.navbar__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media screen and (min-width: 991px) {
    .navbar__wrapper {
        justify-content: flex-start;
        padding-left: 208.5px;
    }
    .navbar__actions {
        display: none;
    }
}
.navbar__whatsapp,
.navbar__email {
    display: block;
    margin-right: 17px;
}
.navbar__whatsapp .fa,
.navbar__email .fa {
    color: #000;
    font-size: 30px;
    line-height: 27px;
}
.navbar__email .fa {
    font-size: 28px;
    line-height: 25px;
}
.navbar__whatsapp:hover .fa,
.navbar__email:hover .fa{
    color: #D65147;
}

@media screen and (max-width: 990px) {
    .navbar__wrapper {
        justify-content: space-between;
        padding-left: 0 !important;
    }
    .navbar__logo img {
        height: 50px !important;
    }
    .navbar__hamburger {
        display: block;
    }
    
}