header {
    background-color: transparent;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
}


header .header-wrap {}

header .header-wrap .left {}

header .header-wrap .left a {}

header .header-wrap .left a img {
    width: 117px;
    height: 117px;
}

header .header-wrap .right {}


header .header-wrap .right ul li {}

header .header-wrap .right ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'headingbold';
    font-weight: 700;
}

header .header-wrap .right ul li a:hover {
    color: #17acc6;
}

/* Default state */

/* On scroll */
header.scrolled {
    background-color: white;
}

/* Text color change */
header.scrolled .right ul li a {
    color: black;
}

/* Logo control */
.logo-dark {
    display: none;
}

.scrolled .logo-dark {
    display: inline-block;
}

.scrolled .logo-light {
    display: none;
}

.menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    color: rgb(128, 128, 128);
    cursor: pointer;
    display: none;
}

header .header-wrap .right ul {
    margin: 0;
    padding: 0;
    gap: 42px;
    align-items: center;
    justify-content: flex-end;
    padding: 26px 0px;
}

@media (min-width: 991px) {
    header .header-wrap .right ul {
        display: flex;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 12px;
        right: 0;
        background-color: white;
        display: none;
        padding: 20px;
        z-index: 9998;
    }

    header .header-wrap .right ul {
        gap: 16px;
        align-items: start;
        padding: 13px !important;
        justify-content: flex-start;
        margin-right: 10px;



    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li a {
        color: black !important;
        font-size: 14px;
        padding: 10px 0;
    }
    p {
        font-size: 14px;
    }
}




/* footer */

footer.bg-extra-dark-gray {
    background-image: linear-gradient(135deg, #00B7C2, #0D1F2D)
}

.padding-30px-tb {
    padding-top: 30px;
    padding-bottom: 30px;
}

.extra-small-icon,
.small-icon,
.medium-icon,
.large-icon,
.extra-large-icon {
    list-style: none;
    padding: 0;
}

.margin-20px-top {
    margin-top: 20px;
}

.medium-icon a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin: 5px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50px;
}

.text-light-gray {
    color: #d6d5d5;
}