.hide-desktop {
    display: none;
}

.hamburger {
    cursor: pointer;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    height: 100%;
    transition: 0.3s all;
}

.hamburger:hover {
    background: var(--secondaryColor);
}
.home .hamburger:hover {
    background: var(--primaryColor);
}

.hamburger.is-active {
    background: #fff;
    padding: 0.5rem 0.45rem 0.3rem 0.35rem;
}
.hamburger.is-active .line {
    stroke: black;
}

.line {
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.hamburger.is-active .line1 {
    transform: rotate(45deg) translate(0px, 6px);
}

.hamburger.is-active .line2 {
    opacity: 0;
}

.hamburger.is-active .line3 {
    transform: rotate(-45deg) translate(2px, -8px);
}


@media (min-width: 1600px) {
    html {
        font-size: 17px;
    }
    .container {
        max-width: 1540px;
    }
}

@media (min-width: 1800px) {
    html {
        font-size: 18px;
    }
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2000px) {
    html {
        font-size: 19px;
    }
    .container {
        max-width: 1700px;
    }
}

@media (min-width: 2200px) {
    html {
        font-size: 20px;
    }
    .container {
        max-width: 1900px;
    }
    .img-large {
        height: 48rem;
    }
}

@media (max-width: 1399px) {
    .container {
        padding: 0 2.5rem;
    }
    header {
        left: 2.5rem;
        right: 2.5rem;
    }
    h1 {
        font-size: 4.5rem;
    }
    .hero .container {
        align-items: center;
    }
}

@media (max-width: 1299px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 14px;
    }
    .container-wide {
        padding: 0 1rem;
    }
    header {
        left: 0;
        right: 0;
    }
    .admin-bar header {
        top: 0;
    }
    header .container {
        padding: 1rem 2rem;
        align-items: center;
        border-radius: 0;
    }
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: block;
    }
    .stack-mobile {
        flex-direction: column;
        gap: 2rem;
    }
    .stack-mobile.mobile-small-gap {
        gap: 1rem;
    }
    h1 {
        font-size: 2.75rem;
        line-height: 120%;
    }
    h2 {
        font-size: 2rem;
    }
    .hamburger.is-active {
        background: var(--secondaryColor);
    }
    .hamburger.is-active .line {
        stroke: white;
    }
    #main-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: white;
        transform: translateX(-100%);
        transition: 0.3s all;
        z-index: 2;
        flex-direction: column;
    }
    #main-menu.show-menu {
        transform: translateX(0);
    }
    body.no-scroll {
        overflow: hidden;
    }
    ul.menu {
        width: 100%;
        flex-direction: column;
        padding-top: 0;
        grid-template-columns: 1fr;
    }
    .menu-grid {
        flex: 1;
    }
    .expended-menu {
        justify-content: flex-start;
        padding: 12rem 2rem 0rem;
        background: white;
    }
    .expended-menu ul.menu li a {
        font-size: 2.5rem;
        color: black;
    }
    a.mobile-menu-btn {
        display: block;
        text-transform: uppercase;
        background: var(--primaryColor);
        color: white;
        padding: 10px 19px;
        border-radius: 25px;
        font-size: 0.85rem;
    }
    .menu-featured, .menu-footer .container {
        display: none;
    }
    .hero {
        padding: 5rem 0;
        height: auto;
    }
    .hero .container {
        flex-direction: column;
        align-items: center;
    }
    .hero-divider {
        display: none;
    }
    .hero h1 {
        text-align: center;
        padding: 0 2rem;
        font-size: 2.5rem;
        line-height: 2.5rem;
        width: auto;
    }
    .hero p {
        text-align: center;
        padding: 0 2rem;
        width: auto
    }
    .hero-btn {
        height: 6.225rem;
        gap: 0px;
    }
    .hero-form-wrap {
        position: relative;
        margin: 0 auto;
        bottom: 0;
        width: 80%;
    }
    .slide-form {
        width: 100%;
    }
    .boxes {
        grid-template-columns: 1fr;
    }
    .box-bullets {
        display: flex;
        flex-wrap: wrap;
        column-gap: 1.5rem;
    }
    .mth {
        padding: 9rem 2rem 2rem;
    }
    .mp2 {
        padding: 2rem;
    }
    .m0 {
        padding: 0;
        margin: 0;
    }
    .mth-img {
        height: 20rem;
    }
    .img-backframe {display:none}
    .testimonials, .testimonial {
        width: calc(100vw - 4rem);
    }
    .testimonial {
        padding: 4rem 2rem 2rem;
        height: 26rem;
        margin-bottom: 4rem;
    }
    .testimonial .testimonial-box {
        justify-content: center;
    }
    .testimonial i.fa-quote-left {
        top: calc(0% - 22px);
        height: 44px;
        width: 44px;
        font-size: 1.5rem;
    }
    .accordion-title h3 {
        font-size: 1.5rem;
    }
    .page-hero {
        padding: 12rem 0 1.5rem;
    }
    .page-hero .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    .page-hero h1 {
        font-size: 2.25rem !important;
        padding: 2rem 0 0 !important;
    }
    img {
        max-width: 100%;
    }
    .order-2 {
        order: 2;
    }
    .mobile-spacer {
        padding-top: 3rem;
        margin-top: 3rem;
    }
    .third-width {
        width: 100%;
    }
    .service-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .service-row > div {
        order: 2;
    }
    .home .projects {
        padding: 2.5rem 0 3rem;
        background: var(--primaryColor);
    }
    .home .projects-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .home .projects-media {
        margin-top: 0;
        height: 20rem;
    }
    .home .projects .btn-secondary {
        margin: 1rem 0 0 !important;
    }
    .home .projects .btn-secondary.-mt-5 {
        margin: 3rem 0 0 !important;
    }
    .bg-wrap {
        padding: 4rem 0;
        margin-bottom: -3rem;
    }
    .bg-wrap:before {
        border-radius: 0;
        right: 0;
        left: -2rem;
    }
    .blog-categories {
        flex-direction: row;
        width: 100%;
        overflow-x: scroll;
    }
    .blog-categories a {
        width: fit-content;
        flex: none;
    }
    .blog-header {
        padding: 12rem 0 4rem;
    }
    .blog-header-content {
        flex-direction: column;
        gap: 2rem;
    }
    .blog-header-info {
        gap: 1rem;
        flex: 1;
        width: 100%;
    }
    .blog-header-info h1 {
        font-size: 2.5rem;
    }
    .project-item {
        flex-direction: column;
        gap: 2rem;
    }
    .project-image {
        flex: 1;
        width: 100%;
    }
    .project-header {
        margin-bottom: 0;
    }
    .project-meta {
        gap: 1rem;
        flex-direction: column;
    }
    .project-meta div {
        gap: 0.5rem;
        flex-direction: column;
    }
    .project-header-section, .plan-header {
        padding: 8rem 0 0;
    }
    .project-header-section .project-gallery img {
        height: 20rem;
    }
    .project-header-section h1 {
        font-size: 2.25rem;
        max-width: 100%;
    }
    .project-container {
        max-width: 100%;
        margin: 0;
        padding: 0 2rem;
    }
    .project-header-section .project-tags {
        margin-top: 1rem;
    }
    .project-header-section .project-tag {
        margin-top: 0;
    }
    .filters { 
        flex-direction: column;
        gap: 0.5rem;
    }
    .filter.sort { 
        flex: 1;
    }
    .plans {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .plan-single-header {
        align-items: flex-start;
        flex-direction: column;
        margin: 2rem 0;
        gap: 0.5rem;
    }
    .plan-header h1 {
        font-size: 2.25rem;
    }
    .plan-header .plan-image, .plan-gallery img {
        height: 20rem;
    }
    .plan-container {
        max-width: 100%;
        margin: 0;
        padding: 0 2rem;
    }
    .plan-gallery-thumbnails img {
        height: 6rem;
    }
    .gform_wrapper form {
        padding: 2rem;
        max-width: 100%;
    }
    .career-item {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    .career-item div {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .career-item p {
        border-left: 0;
        padding: 0 !important;
        line-height: 112%;
        margin-bottom: 0;
    }
    .features-list li {
        align-items: end;
        font-size: 15px;
    }
    footer .container-wide {
        flex-direction: column;
        gap: 2rem;
    }
    footer .menu-footer-container ul {
        grid-template-columns: 1fr;;
    }
    footer .container-wide div {
        width: auto !important;
    }
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
    }
    .footer-copyright p {
        order: 2;
        text-align: left;
        font-size: 9.75px;
    }
    .footer-bottom .d-flex {
        width: auto !important;
        align-items: flex-start;
    }
    .slick-arrow {
        /* display: none !important; */
    }
    .slick-arrow {
        width: 30px;
        height: 30px;
        top: calc(50% - 15px);
        font-size: 10px;
        line-height: 32px;
    }
    .slick-prev {
        left: -15px;
    }
    .slick-next {
        right: -15px;
    }
    img.standard.img-medium {
        object-position: right;
    }
    .footer-top h4 {
        font-size: 1.65rem;
    }
    .mobile-center {
        text-align: center;
        margin: 0 auto;
    }
    .modal-content {
        width: 90%;
    }
    .mw-10, .mw-19, .mw-26, .mw-30, .mw-47, .mw-55 {
        max-width: 100%;
    }
    .mm0 {
        margin: 0 !important;
    }
    .project-card {
        background-size: cover;
    }
    .footer-top div {
        text-align: center;
    }

}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: space-between;
    }
    .top-bar .container > div.x-large-gap {
        justify-content: space-between;
        width: 100%;
    }
	.hero-btn {
        display: flex;
        height: 7.25rem;
        padding: 1.5rem;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 0px;
        border-radius: 0.25rem;
        color: white;
        min-width: 18rem;
        transition: 0.2s all;
        box-shadow: 2px 2px 30px rgb(10 12 14 / 40%);
        width: 100%;
    }
	.hero .container {
        padding: 0 !important;
		gap: 1rem;
    }
	.hero {
        padding: 14rem 1.5rem 5rem;
    }
    .hero-btn p {
        padding: 0;
        font-size: 1.8rem;
    }
    .hero-btn span {
        font-size: 1.3rem;
    }
	.hero-btn span svg {
        position: absolute;
        right: 10px;
    }
	section {
        padding: 3rem 0;
    }
	.accordions { margin-top: 3rem; }
	.page-hero .container { padding: 0 2em; }
	.about-top .xx-large-gap { gap: 2rem; }
    .slick-list {padding: 0 !important;}
    .img-large {
        height: 20rem;
    }
}

@media (max-width: 680px) {
    html {
        font-size: 13px;
    }
    .container {
        padding: 0 2rem;
    }
}