.header {
    position: absolute;
    top: 30px;
    z-index: 10;
    left: 0;
    right: 0;
    transition: all 0.3s;
}

.header.fixed {
    position: fixed;
    top: 0;
    background: rgba(1, 45, 43, 0.6);
    height: 100px;
    width: 100%;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    z-index: 100;
}

.header .header-wrapper {
    border-radius: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 75px;
    padding: 15px 20px;
    width: fit-content;
    margin: 0 auto;
}

.header .header-wrapper .header-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 25px;
}

.header .header-wrapper .header-menu li a.menu-link {
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #11615D;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
}

.header .header-wrapper .header-menu li.active a.menu-link {
    font-weight: 700;
    color: #54A708;
    font-family: 'Satoshi-Bold';
}

.header .header-wrapper .header-menu li a.menu-link:hover {
    text-decoration: underline;
    color: #54A708;
}

.header .contact-btn a {
    display: inline-block;
    vertical-align: middle;
    background-color: #11615D;
    border-radius: 25px;
    padding: 12px 20px 12px 47px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    position: relative;
    transition: all 0.3s;
}

.header .contact-btn a:hover {
    background-color: #F68B27;
}

.header .contact-btn a::before {
    content: "";

    background: url(../images/phone-small.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header .header-wrapper .header-menu li.dropdown a.menu-link {
    padding-right: 17px;
}

.header .header-wrapper .header-menu li a.menu-link .submenu-arrow {
    background: url(../images/dropdown-arrow.svg);
    width: 12px;
    height: 7px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .header-wrapper .mobile-toggle span {
    height: 3px;
    background: #11615D;
    border-radius: 2px;
}

.header .close-menu {
    display: none;
}

@media(max-width:1440px) {
    .header .contact-btn a {
        font-size: 17px;
    }

    .header .header-wrapper .header-menu {
        gap: 15px;
    }
}

@media (max-width:1199px) {
    .mobilemenu-offcanvas.offcanvas {
        background-color: #fff;
        width: 400px;
        max-width: 100%;
    }

    .mobilemenu-offcanvas.offcanvas .header-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .mobilemenu-offcanvas.offcanvas .header-menu li {
        border-bottom: 1px solid #E0E0E0;
    }

    .mobilemenu-offcanvas.offcanvas .menu-link {
        display: block;
        padding: 20px 10px;
        text-decoration: none;
        color: #11615D;
        font-family: 'Satoshi-Medium';
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
    }

    .mobilemenu-offcanvas.offcanvas .header-menu li.active .menu-link,
    .mobilemenu-offcanvas.offcanvas .menu-link:hover {
        color: #54A708;
        font-weight: 700;
    }

    .mobilemenu-offcanvas.offcanvas .offcanvas-header .btn-close {
        color: #11615D;
        background: none;
        font-size: 40px;
        height: 40px;
        box-shadow: none;
        font-family: 'Satoshi-Medium';
        font-weight: 500;
        padding: 0;
        opacity: 1;
    }

    .mobilemenu-offcanvas.offcanvas .offcanvas-header .btn-close:hover {
        color: #54A708;
    }

    .mobilemenu-offcanvas.offcanvas .offcanvas-body {
        padding-top: 0;
    }

    .header .header-wrapper {
        border-radius: 0;
        background: transparent;
        margin: 0;
    }

    .header {
        background: #ffffff;
        top: 0;
        height: 80px;
        display: flex;
        align-items: center;
    }

    .header.fixed {
        background: #ffffff;
        height: 80px;
    }

    .header .header-wrapper .mobile-toggle {
        display: flex;
        margin-left: 20px;
    }

    .header .header-wrapper {
        width: 100%;
        padding: 0;
    }

    .header .contact-btn {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }

    .header .header-menu {
        flex-direction: column;
        gap: 20px;
    }

    .header .mobile-toggle {
        width: 30px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .header .mobile-toggle span {
        height: 3px;
        background: #11615D;
        border-radius: 2px;
    }


    .header .header-wrapper .header-menu {
        gap: 0;
        display: none;
    }

    .header .header-wrapper .header-menu li a.menu-link {
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid #E0E0E0;
    }

    .header .header-wrapper .header-menu li a.menu-link:hover {
        text-decoration: none;
    }

}

@media(max-width:767px) {
    .header .contact-btn a::before {
        background: url(../images/phone-small-green.svg);
        left: -40px;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .header .contact-btn a {
        font-size: 0;
        background: transparent;
        padding: 0;
    }

    .header .header-wrapper .mobile-toggle {
        margin-left: 0;
    }
}

@media(max-width:576px) {
    .header .main-nav {
        width: 100%;
    }

    .header .header-wrapper .header-logo {
        width: 100%;
        flex: 0 0 150px;
    }

    .mobilemenu-offcanvas.offcanvas {
        width: 100%;
    }
}