@media(min-width: 1366px) {
    .mobile-window {
        display: none;
        position: fixed;
        z-index: 999999;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        margin: 0;
        padding: 0 5%;
        height: 65px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: var(--secondary-color);
    }
    .mobile-logo {
        line-height: 0;
    }
    .mobile-logo img {
        height: 55px;
    }
    .mobile-header-phone {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: var(--accent-color) !important;
        text-decoration: none !important;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: var(--font-color);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-icon:hover {
        cursor: pointer;
    }
    .hamburger-active .hamburger-line:nth-child(1) {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .hamburger-active .hamburger-line:nth-child(3) {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .mobile-menu {
        position: absolute;
        display: none;
        width: 100%;
        height: 100vh;
        top: 65px;
        left: 0;
        margin: 0;
        padding: 25px 5%;
        background-color: var(--font-color);
        color: var(--font-color);
        overflow: scroll;
        animation: mobileMenu 0.4s ease-out 0s normal;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    .mobile-menu::-webkit-scrollbar {
        display: none;
    }
    .mobile-menu-active {
        display: inherit;
        animation: mobileMenu 0.4s ease-out 0s normal;
    }
    @keyframes mobileMenu {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-divider {
        position: relative;
        float: right;
        height: 1px;
        width: 50%;
        background-color: var(--font-color);
        opacity: 0.1;
    }
    ul.mobile-tabs {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.mobile-tabs li {
        width: 100%;
        margin: 0;
        position: relative;
    }
    ul.mobile-tabs li a {
        font-family: "area-normal", sans-serif;
        width: 100%;
        display: inline-block;
        color: var(--secondary-color);
        text-align: right;
        padding: 15px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 10px 0 0;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        font-family: "area-normal", sans-serif;
        text-transform: none;
        display: block;
        color: var(--secondary-color);
        padding: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs span {
        color: var(--accent-color);
    }
    .mobile-bottom {
        box-shadow: -2px -2px 7px rgba(0, 0, 0, 0.24);
        position: fixed;
        z-index: 99;
        height: 40px;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bottom-button {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        font-family: "area-normal", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        text-decoration: none;
    }
    .bottom-button:nth-child(1) {
        font-size: 14px;
        background-color: var(--font-color);
        color: var(--secondary-color);
    }
    .bottom-button:nth-child(2) {
        font-size: 15px;
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    .bottom-button i {
        font-size: 0.9rem;
        margin: 0 4px 0 0;
        opacity: 0.8;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .mobile-window {
        display: none;
        position: fixed;
        z-index: 999999;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        margin: 0;
        padding: 0 5%;
        height: 65px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: var(--secondary-color);
    }
    .mobile-logo {
        line-height: 0;
    }
    .mobile-logo img {
        height: 55px;
    }
    .mobile-header-phone {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: var(--accent-color) !important;
        text-decoration: none !important;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: var(--font-color);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-icon:hover {
        cursor: pointer;
    }
    .hamburger-active .hamburger-line:nth-child(1) {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .hamburger-active .hamburger-line:nth-child(3) {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .mobile-menu {
        position: absolute;
        display: none;
        width: 100%;
        height: 100vh;
        top: 65px;
        left: 0;
        margin: 0;
        padding: 25px 5%;
        background-color: var(--font-color);
        color: var(--font-color);
        overflow: scroll;
        animation: mobileMenu 0.4s ease-out 0s normal;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    .mobile-menu::-webkit-scrollbar {
        display: none;
    }
    .mobile-menu-active {
        display: inherit;
        animation: mobileMenu 0.4s ease-out 0s normal;
    }
    @keyframes mobileMenu {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-divider {
        position: relative;
        float: right;
        height: 1px;
        width: 50%;
        background-color: var(--font-color);
        opacity: 0.1;
    }
    ul.mobile-tabs {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.mobile-tabs li {
        width: 100%;
        margin: 0;
        position: relative;
    }
    ul.mobile-tabs li a {
        font-family: "area-normal", sans-serif;
        width: 100%;
        display: inline-block;
        color: var(--secondary-color);
        text-align: right;
        padding: 15px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 10px 0 0;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        font-family: "area-normal", sans-serif;
        text-transform: none;
        display: block;
        color: var(--secondary-color);
        padding: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs span {
        color: var(--accent-color);
    }
    .mobile-bottom {
        box-shadow: -2px -2px 7px rgba(0, 0, 0, 0.24);
        position: fixed;
        z-index: 99;
        height: 40px;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bottom-button {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        font-family: "area-normal", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        text-decoration: none;
    }
    .bottom-button:nth-child(1) {
        font-size: 14px;
        background-color: var(--font-color);
        color: var(--secondary-color);
    }
    .bottom-button:nth-child(2) {
        font-size: 15px;
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    .bottom-button i {
        font-size: 0.9rem;
        margin: 0 4px 0 0;
        opacity: 0.8;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .mobile-window {
        display: block;
        position: fixed;
        z-index: 999999;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        margin: 0;
        padding: 0 5%;
        height: 65px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: var(--secondary-color);
    }
    .mobile-logo {
        line-height: 0;
    }
    .mobile-logo img {
        height: 55px;
    }
    .mobile-header-phone {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: var(--accent-color) !important;
        text-decoration: none !important;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: var(--font-color);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-icon:hover {
        cursor: pointer;
    }
    .hamburger-active .hamburger-line:nth-child(1) {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .hamburger-active .hamburger-line:nth-child(3) {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .mobile-menu {
        position: absolute;
        display: none;
        width: 100%;
        height: 100vh;
        top: 65px;
        left: 0;
        margin: 0;
        padding: 25px 5%;
        background-color: var(--font-color);
        color: var(--font-color);
        overflow: scroll;
        animation: mobileMenu 0.4s ease-out 0s normal;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    .mobile-menu::-webkit-scrollbar {
        display: none;
    }
    .mobile-menu-active {
        display: inherit;
        animation: mobileMenu 0.4s ease-out 0s normal;
    }
    @keyframes mobileMenu {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-divider {
        position: relative;
        float: right;
        height: 1px;
        width: 50%;
        background-color: var(--font-color);
        opacity: 0.1;
    }
    ul.mobile-tabs {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.mobile-tabs li {
        width: 100%;
        margin: 0;
        position: relative;
    }
    ul.mobile-tabs li a {
        font-family: "area-normal", sans-serif;
        width: 100%;
        display: inline-block;
        color: var(--secondary-color);
        text-align: right;
        padding: 15px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 10px 0 0;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        font-family: "area-normal", sans-serif;
        text-transform: none;
        display: block;
        color: var(--secondary-color);
        padding: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs span {
        color: var(--accent-color);
    }
    .mobile-bottom {
        box-shadow: -2px -2px 7px rgba(0, 0, 0, 0.24);
        position: fixed;
        z-index: 99;
        height: 40px;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bottom-button {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        font-family: "area-normal", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        text-decoration: none;
    }
    .bottom-button:nth-child(1) {
        font-size: 14px;
        background-color: var(--font-color);
        color: var(--secondary-color);
    }
    .bottom-button:nth-child(2) {
        font-size: 15px;
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    .bottom-button i {
        font-size: 0.9rem;
        margin: 0 4px 0 0;
        opacity: 0.8;
    }
}

@media(max-width: 769px) {
    .mobile-window {
        display: block;
        position: fixed;
        z-index: 999999;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        margin: 0;
        padding: 0 5%;
        height: 65px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: var(--secondary-color);
    }
    .mobile-logo {
        line-height: 0;
    }
    .mobile-logo img {
        height: 55px;
    }
    .mobile-header-phone {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: var(--accent-color) !important;
        text-decoration: none !important;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: var(--font-color);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-icon:hover {
        cursor: pointer;
    }
    .hamburger-active .hamburger-line:nth-child(1) {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .hamburger-active .hamburger-line:nth-child(3) {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .mobile-menu {
        position: absolute;
        display: none;
        width: 100%;
        height: 100vh;
        top: 65px;
        left: 0;
        margin: 0;
        padding: 25px 5%;
        background-color: var(--font-color);
        color: var(--font-color);
        overflow: scroll;
        animation: mobileMenu 0.4s ease-out 0s normal;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    .mobile-menu::-webkit-scrollbar {
        display: none;
    }
    .mobile-menu-active {
        display: inherit;
        animation: mobileMenu 0.4s ease-out 0s normal;
    }
    @keyframes mobileMenu {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-divider {
        position: relative;
        float: right;
        height: 1px;
        width: 50%;
        background-color: var(--font-color);
        opacity: 0.1;
    }
    ul.mobile-tabs {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    ul.mobile-tabs li {
        width: 100%;
        margin: 0;
        position: relative;
    }
    ul.mobile-tabs li a {
        font-family: "area-normal", sans-serif;
        width: 100%;
        display: inline-block;
        color: var(--secondary-color);
        text-align: right;
        padding: 15px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 10px 0 0;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        font-family: "area-normal", sans-serif;
        text-transform: none;
        display: block;
        color: var(--secondary-color);
        padding: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: var(--accent-color);
    }
    ul.mobile-tabs span {
        color: var(--accent-color);
    }
    .mobile-bottom {
        box-shadow: -2px -2px 7px rgba(0, 0, 0, 0.24);
        position: fixed;
        z-index: 99;
        height: 40px;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bottom-button {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        font-family: "area-normal", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        text-decoration: none;
    }
    .bottom-button:nth-child(1) {
        font-size: 14px;
        background-color: var(--font-color);
        color: var(--secondary-color);
    }
    .bottom-button:nth-child(2) {
        font-size: 15px;
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    .bottom-button i {
        font-size: 0.9rem;
        margin: 0 4px 0 0;
        opacity: 0.8;
    }
}