body.no-scroll { overflow: hidden; }

#backdrop {
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(0);
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.4);
    transition: .2s visibility, .2s opacity ease-in-out, .2s backdrop-filter ease-in-out;
}

#backdrop.active {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    backdrop-filter: blur(12px);
}

/* header  */

@media (max-width: 1024px) {
    .header-container {
        display: none;
    }
}

.header-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
	display: none;
}

.header-container .header-top-row {
    width: 100%;
    padding: 8px 32px;
    background-color: var(--pale-lemon);
}

.header-container .header-top-row .top-wrapper {
    width: 100%;
    /* max-width: 1400px; */
    display: flex;
    justify-content: end;
    align-items: center;
}

.header-container .header-top-row .top-wrapper .contact-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-container .header-top-row .top-wrapper .contact-ctas a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--black);
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}

.header-container .header-top-row .top-wrapper .contact-ctas a:hover {
    text-decoration: underline;
}

.header-container .header-top-row .top-wrapper .contact-ctas .separator {
    width: 2px;
    height: 24px;
    background-color: var(--green-900);
}

/* end of top row  */

/* bottom row  */

.header-container .header-bottom-row {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 32px;
    background-color: var(--off-white);
    border-top: 2px solid var(--green-900);
    border-bottom: 2px solid var(--green-900);
}

.header-container .header-bottom-row .bottom-row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
}

.header-container .header-bottom-row .bottom-row-wrapper .logo {
    display: flex;
    align-items: center;
    width: 180px;
    min-width: 180px;
    height: auto;
}

.header-container .header-bottom-row .bottom-row-wrapper .logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper {
    /* flex-grow: 1; */
    height: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
    margin: 0;
    list-style: none;
    padding: 0;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .header-container .header-bottom-row {
        padding: 0 16px!important;
    }
    .header-container .header-top-row {
        padding: 8px 16px!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item .services-list-item-link {
        font-size: 16px!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list {
        gap: 12px!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a {
        padding: 12px 24px!important;
    }
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item {
    height: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item .services-list-item-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item .services-list-item-link:hover {
    background-color: var(--pale-lemon);
}


.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta {
    height: 50px;
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 12px 32px;
    gap: 12px;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    border: 1px solid transparent;
    text-decoration: none;
    border-radius: 12px;
    background-color: var(--green-800);
    transition: .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a:hover {
    background-color: var(--pale-lemon);
    color: var(--black);
    border: 1px solid var(--green-800);
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a svg {
    transition: .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a svg path {
  transition: fill .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a:hover svg {
    /* stroke: var(--black); */
    fill: var(--black);
    color: var(--black);
}

.header-container .header-bottom-row .bottom-row-wrapper .start-project-cta a:hover svg path {
  fill: var(--black);
}

/* mega menu  */

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega {
    
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    padding: 20px 20px;
    border-bottom: 2px solid var(--green-900);
    background-color: var(--white);
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu.is-open {
    display: flex!important;
}


.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list {
    flex-grow: 1;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: stretch;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul {
        grid-template-columns: repeat(4,1fr);
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper {
        align-items: start!important;
        flex-direction: column;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container {
        width: 100%!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item {
        display: flex;
        gap: 20px;
        align-items: center;
        width: fit-content!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .item-img img {
        width: 200px!important;
        aspect-ratio: 1/1;
        min-width: 200px!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .item-img {
        width: fit-content!important;
        display: flex;
        align-items: center;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content {
        margin-top: 0!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button a {
        width: fit-content!important;
    }
    .header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a .content h5 {
        font-size: 18px!important;
    }
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li {

}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    color: var(--green-800);
    text-decoration: none;
    gap: 16px;
    transition: .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a:hover {
    background-color: var(--pale-lemon);
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a .icon-wrapper {
    width: 48px;
    min-width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 12px;
    background-color: var(--green-900);
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a .content {
    width: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a .content h5 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 8px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .inner-list ul li a .content p {
    margin: 0;
    font-size: 16px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container {
    width: 300px;
    min-width: 300px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item {
    width: 100%;
    border: 1px solid var(--green-800);
    background-color: var(--green-200);
    padding: 12px;
    border-radius: 20px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .item-img {
    width: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .item-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content {
    width: 100%;
    margin-top: 32px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .tab {
    background-color: var(--green-900);
    padding: 8px 12px;
    width: fit-content;
    border-radius: 100px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .feature-title {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 12px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .feature-title h4 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button {
    width: 100%;
    margin-top: 12px;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button a {
    background-color: var(--green-800);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    gap: 8px;
    border: 1px solid transparent;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
    transition: .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button a:hover {
    background-color: var(--pale-lemon);
    color: var(--black);
    border: 1px solid var(--green-800);
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button a svg path {
    transition: .2s ease-in-out;
}

.header-container .header-bottom-row .bottom-row-wrapper .services-list-wrapper .services-list .services-list-item.has-mega .mega-menu .mega-wrapper .featured-item-container .featured-item .featured-content .cta-button a:hover svg path {
    fill: var(--black);
}

/* end of mega menu  */




/* end of header top  */



/* mobile menu  */

@media (min-width: 1025px) {
    #mobile-header {
        display: none;
    }
}

#mobile-header {
    width: 100%;
    position: relative;
    z-index: 9999;
	display: none;
}

#mobile-header .mobile-top-row {
    display: flex;
    width: 100%;
    justify-content: end;
    background-color: var(--pale-lemon);
    padding: 12px 20px;
}

@media (max-width: 576px) {
    #mobile-header .mobile-top-row {
        padding: 12px!important;
    }
    #mobile-header .mobile-bottom-row {
        padding: 12px!important;
    }
    #mobile-header .mobile-top-row .contact-ctas {
        gap: 8px!important;
    }
    #mobile-header .mobile-top-row {
        justify-content: center;
    }
    #mobile-header .mobile-top-row .contact-ctas a {
        font-size: 16px!important;
    }
}

#mobile-header .mobile-top-row .contact-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

#mobile-header .mobile-top-row .contact-ctas a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--black); 
    font-weight: bold;
    text-decoration: none;
    gap: 12px;
}

#mobile-header .mobile-top-row .contact-ctas a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
	#mobile-header .mobile-top-row .contact-ctas a svg {
		display: none;
	}
}

#mobile-header .mobile-top-row .contact-ctas a svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	max-width: 100%;
}

#mobile-header .mobile-top-row .contact-ctas .separator {
    width: 2px;
    height: 24px;
    background-color: var(--green-900);
}



#mobile-header .mobile-bottom-row {
    width: 100%;
    background-color: var(--off-white);
    padding: 12px 20px;
    border-top: 2px solid var(--green-900);
    border-bottom: 2px solid var(--green-900);
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .logo img {
    width: 180px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 576px) {
	#mobile-header .mobile-bottom-row .bottom-row-wrapper .logo img {
		width: 160px;
	}
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger {
    width: 50px;
    height: 50px;
    background-color: var(--green-800);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger svg {
  width: 40px;          
  height: 40px;
  display: block;
}


#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger .line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger .line1 {
  stroke-dasharray: 45 207;
  stroke-width: 6;
  stroke-dashoffset: -15;
}
#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
  stroke-dashoffset: 0;
}
#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger .line3 {
  stroke-dasharray: 30 207;
  stroke-width: 6;
  stroke-dashoffset: -30;
}

#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
#mobile-header .mobile-bottom-row .bottom-row-wrapper .hamburger.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/* end of mobile header  */


/* mobile menu  */

#mobile-menu {
    position: fixed;
    right: -100%;
    bottom: 0;
    top: 126px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background-color: var(--pale-lemon);
    overflow-y: auto;
    visibility: visible;
    pointer-events: all;
    z-index: 9999;
    transition: .6s visibility, .6s right cubic-bezier(0.8, -0.4, 0.5, 1);
}

#mobile-menu.active {
    visibility: visible;
    pointer-events: all;
    right: 0;
}

#mobile-menu .menu-items-wrapper {
    width: 100%;
}

#mobile-menu .menu-items-wrapper .services-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item {
    width: 100%;
    border-bottom: 1px solid var(--green-900);
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .services-list-item-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color: var(--black);
    padding: 16px;
    transition: .2s ease-in-out;
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item:last-child{
  border-bottom: none;
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .services-list-item-link.active {
    background-color: var(--green-800);
    color: var(--white);
}


#mobile-menu .menu-items-wrapper .services-list .services-list-item .submenu {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;              
    transition: grid-template-rows .4s cubic-bezier(0.8, -0.4, 0.5, 1);
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .submenu > .submenu-list {
  overflow: hidden;
  min-height: 0;                      
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item.is-open .submenu {
  grid-template-rows: 1fr;            
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .submenu .submenu-list {
    width: 100%;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .submenu .submenu-list .submenu-list-item {
    width: 100%;
}

#mobile-menu .menu-items-wrapper .services-list .services-list-item .submenu .submenu-list .submenu-list-item .submenu-list-item-link {
    width: 100%;
    display: flex;
    padding: 16px;
    color: var(--black);
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}


#mobile-menu .menu-items-wrapper .mobile-menu-cta {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 16px;
}

#mobile-menu .menu-items-wrapper .mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 12px 32px;
    gap: 12px;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    border: 1px solid transparent;
    text-decoration: none;
    border-radius: 12px;
    background-color: var(--green-800);
    transition: .2s ease-in-out;
}

#mobile-menu .menu-items-wrapper .mobile-menu-cta a:hover {
    background-color: var(--pale-lemon);
    color: var(--black);
    border: 1px solid var(--green-800);
}

#mobile-menu .menu-items-wrapper .mobile-menu-cta a svg path {
    transition: .2s ease-in-out;
}

#mobile-menu .menu-items-wrapper .mobile-menu-cta a:hover svg path {
    fill: var(--black);
}

@media (max-width: 576px) {
    #mobile-menu .menu-items-wrapper .mobile-menu-cta {
        padding: 16px;
    }
    #mobile-menu .menu-items-wrapper .mobile-menu-cta a {
        width: 100%;
    }
}

/* end of mobile menu  */