@media(min-width: 1366px) {
    .mobile-window {
        display: none;
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        color: #fff;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.24);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        height: 65px;
        margin: 0;
        padding: 0 5%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    .mobile-number {
        font-size: 17px;
        font-weight: 700;
        color: #00007E;
        letter-spacing: 0px;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: center;
    }
    .mobile-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo img {
        height: 70px;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: #233143;
        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: 20px 5% 100px 40px;
        background-color: #fff;
        color: #233143;
        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 {
        height: 1px;
        width: 50%;
        background: rgba(80, 101, 128, 0.2);
    }
    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 {
        width: 100%;
        display: inline-block;
        color: #414141;
        padding: 20px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: #00007E;
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 0 0 10px;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        display: block;
        color: #515151;
        padding: 15px 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: #00007E;
    }
    .mobile-social-media {
        margin: 10px 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .mobile-social-media a {
        margin: 0 15px 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.2s all ease-out;
    }
    .mobile-social-media a img {
        height: 35px;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .mobile-window {
        display: none;
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        color: #fff;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.24);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        height: 65px;
        margin: 0;
        padding: 0 5%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    .mobile-number {
        font-size: 17px;
        font-weight: 700;
        color: #00007E;
        letter-spacing: 0px;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: center;
    }
    .mobile-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo img {
        height: 70px;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: #233143;
        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: 20px 5% 100px 40px;
        background-color: #fff;
        color: #233143;
        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 {
        height: 1px;
        width: 50%;
        background: rgba(80, 101, 128, 0.2);
    }
    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 {
        width: 100%;
        display: inline-block;
        color: #414141;
        padding: 20px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: #00007E;
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 0 0 10px;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        display: block;
        color: #515151;
        padding: 15px 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: #00007E;
    }
    .mobile-social-media {
        margin: 10px 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .mobile-social-media a {
        margin: 0 15px 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.2s all ease-out;
    }
    .mobile-social-media a img {
        height: 35px;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .mobile-window {
        display: none;
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        color: #fff;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.24);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        height: 65px;
        margin: 0;
        padding: 0 5%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    .mobile-number {
        font-size: 17px;
        font-weight: 700;
        color: #00007E;
        letter-spacing: 0px;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: center;
    }
    .mobile-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo img {
        height: 70px;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: #233143;
        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: 20px 5% 100px 40px;
        background-color: #fff;
        color: #233143;
        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 {
        height: 1px;
        width: 50%;
        background: rgba(80, 101, 128, 0.2);
    }
    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 {
        width: 100%;
        display: inline-block;
        color: #414141;
        padding: 20px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: #00007E;
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 0 0 10px;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        display: block;
        color: #515151;
        padding: 15px 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: #00007E;
    }
    .mobile-social-media {
        margin: 10px 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .mobile-social-media a {
        margin: 0 15px 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.2s all ease-out;
    }
    .mobile-social-media a img {
        height: 35px;
    }
}

@media(max-width: 769px) {
    .mobile-window {
        display: block;
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        color: #fff;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.24);
    }
    .mobile-header {
        position: relative;
        z-index: 99;
        width: 100%;
        height: 65px;
        margin: 0;
        padding: 0 5%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    .mobile-number {
        font-size: 17px;
        font-weight: 700;
        color: #00007E;
        letter-spacing: 0px;
        text-decoration: none;
        margin: 0;
        line-height: 1;
        text-align: center;
    }
    .mobile-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo img {
        height: 70px;
    }
    .hamburger-icon {
        padding: 0;
    }
    .hamburger-icon .hamburger-line {
        width: 30px;
        height: 2px;
        background-color: #233143;
        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: 20px 5% 100px 40px;
        background-color: #fff;
        color: #233143;
        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 {
        height: 1px;
        width: 50%;
        background: rgba(80, 101, 128, 0.2);
    }
    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 {
        width: 100%;
        display: inline-block;
        color: #414141;
        padding: 20px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li a:hover {
        color: #00007E;
    }
    ul.mobile-tabs li:hover>ul {
        display: block;
    }
    ul.mobile-tabs li ul {
        display: none;
        list-style: none;
        padding: 0 0 0 10px;
        margin: 0;
    }
    ul.mobile-tabs li ul li {
        margin: 0;
    }
    ul.mobile-tabs li ul a {
        display: block;
        color: #515151;
        padding: 15px 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.1s all ease-out;
    }
    ul.mobile-tabs li ul a:hover {
        color: #00007E;
    }
    .mobile-social-media {
        margin: 10px 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .mobile-social-media a {
        margin: 0 15px 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.2s all ease-out;
    }
    .mobile-social-media a img {
        height: 35px;
    }
}