.hide-desktop {
    display: none;
}

.hamburger {
    height: fit-content;
    cursor: pointer;
    background-color: var(--primaryColor);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.4rem;
    height: 100%;
    transition: 0.3s all;
}
.hamburger:hover {
    background-color: var(--secondaryColor);
}

.hamburger.is-active {
    background: white;
    padding: 0.5rem 0.45rem 0.3rem 0.35rem;
}
.hamburger.is-active .line {
    stroke: var(--primaryColor);
}

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

.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 {
        position: relative;
        top: 0;
        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;
    }
    .logo-dark {
        opacity: 1;
    }
    header .logo {
        height: 4.5rem; 
    }
    .header-cta {
        margin-top: 0;
    }
    h1 {
        font-size: 2.75rem;
        line-height: 120%;
    }
    h2 {
        font-size: 2rem;
    }
    .hamburger {
        display: block;
        z-index: 2;
        margin-top: 2px;
        background: none;
        padding: 0;
    }
    .hamburger.is-active {
        background: none;
        padding: 0;
    }
    .hamburger .line {
        stroke: black;
    }

    #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: 15rem;
    }
    .expended-menu {
        justify-content: flex-start;
        gap: 10px;
        background: #ffffff;
        padding: 0rem 2rem 2rem;
    }
    .menu-wrap {
        display: flex;
        justify-content: space-between;
        gap: 0;
    }
    .menu-grid {
        flex: 1;
    }
    ul.sub-menu, ul.menu li.menu-item-has-children > a:after {
        display: none;
    }
    ul.menu li a {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0rem;
        padding: 1.1rem 1.25rem;
    }
    .expended-menu ul.menu li a {
        gap: 10px;
        font-size: 1.75rem;
    }
    .menu-featured, .menu-footer {
        display: none;
    }
    ul.mobile-sub-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding: 2rem 0 0 1.25rem;
        border-top: 1px solid silver;
        margin-top: 1rem;
    }
    ul.mobile-sub-menu a {
        font-size: 1.5rem;
        padding: 0.65rem 0;
        display: block;
    }
    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-btn {
        color: white;
        background: var(--primaryColor);
    }
    .hero {
        padding: 12rem 0 0 0;
        height: auto;
    }
    .hero .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    .hero-divider {
        display: none;
    }
    .hero-bar {
        padding: 1rem 0 1.5rem;
        position: relative;
        margin-top: 3rem;
    }
    .hero h1 {
        text-align: center;
        padding: 0 2rem;
        font-size: 5rem;
    }
    .hero p {
        text-align: center;
        padding: 0 2rem;
        width: 100%;
    }
    .hero-btn {
        height: 6.225rem;
        gap: 0px;
    }
    .socials {
        width: 100%;
        justify-content: center;
    }
    .img-backframe {
        display: none;
    }
    .accordions {
        margin-top: 2rem;
    }
    .accordion-title h3 {
        font-size: 1.5rem;
    }
    .marquee-section .container-wide {
        padding: 0;
    }
    .marquee h2 {
        font-size: 3rem;
    }
    .page-hero {
        padding: 7rem 0 0rem;
    }
    .page-hero .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    .page-hero .container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    .page-hero h1 {
        font-size: 3rem;
        text-align: center;
        padding: 0;
    }
    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;
    }
    footer img {
        margin: 0 auto;
        display: block;
    }
    footer .container-wide {
        flex-direction: column;
        gap: 2rem;
    }
    footer .menu-footer-container ul {
        gap: 2rem;
        row-gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    footer .container-wide div {
        width: auto !important;
    }
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
    }
    .footer-copyright p {
        order: 2;
    }
    .footer-bottom .d-flex {
        width: auto !important;
    }
    .slick-arrow {
        display: none !important;
    }
    img.standard.img-medium {
        object-position: right;
    }
    .corner-icon {
        padding: 18px 0 0 18px;
        height: 69px;
        width: 69px;
    }
    img.icon-big {
        height: 50px;
        width: 50px;
    }
    .bubbles img {
        max-width: 100%;
        height: auto;
        margin: 3rem 0;
    }
    .bubbles:before, .bubbles:after {
        display: none;
    }
    .mobile-text-black {
        color: black;
    }
    .mobile-mt-0 {
        margin-top: 0 !important;
    }
    .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
        padding: 3rem 0 0;
    }
    .wp-block-spacer {
        max-height: 50px !important;
    }
    .card {
        padding: 2rem;
        border-radius: 3rem 0.75rem;
    }
    .book-header {
        background: #F2ECED;
        padding: 3rem 0;
        margin-bottom: 4rem;
    }
    .book-img-wrap {
        padding: 0;
        height: auto;
        margin-bottom: -3rem;
        box-shadow: none;
    }
    .blog-header {
        padding: 3rem 0;
    }
    .blog-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .blog-image {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .blog-header-meta .socials {
        flex: 1;
    }
    .page-id-10 section > .container {
        margin-top:0 !important;
    }
    .contact-form {
        padding: 2rem !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
	.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-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;
    }
    .why-content .btn { display: none !important; }
	.why-content h2 { margin-bottom: 0px; }
	.accordions { margin-top: 1rem; }
	.service-row h3 { font-size: 2.5rem; line-height: 2.9rem; }
	.service-row li { font-size: 1.25rem; line-height: 155%; letter-spacing: 0.3px; }
	.service-row span { font-weight: 500; font-size: 1.25rem; line-height: 155%; margin-top: 1rem; }
	.about-top .xx-large-gap { gap: 2rem; }
    .slick-list {padding: 0 !important;}
}

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