@media only screen and (min-width: 1210px){
    .phone {
        font-size: 30px;
        color: #0d0c69;
        width: 100%;
        height: 75px !important;
        background-color: #3333CC;
    }

    .phone table {
        border-spacing: 10em 0 !important;
        border-collapse: separate;
        margin: 0 auto;
        font-size: 46%;
        color: #fff;
    }
}

.phone {
    font-size: 30px;
    color: #0d0c69;
    width: 100%;
    height: 38px;
    background-color: #3333CC;
}

.phone table {
    border-spacing: 2em 2px;
    border-collapse: separate;
    margin: 0 auto;
    font-size: 46%;
    color: #fff;
}

a {
    color: #000;
}

.dropdown {
    position: relative;
    display: block;
    text-align: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    padding-left: 6em;
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 100;
}

.page-scroll {
    text-align: center;
    font-size: 1.2em;
}

.interlock-scroll {
    font-size: 1.2em;
}

.menu li:hover {}


/* header */

.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: scroll;
    background-color: #fff;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
}

.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}


/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}


/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}


/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    max-height: 100%;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}


/* 48em = 768px */

@media (min-width: 48em) {
    .header ul {
        overflow: hidden;
    }
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        position: relative;
        top: 1.5em;
    }
    .header .menu-icon {
        display: none;
    }
    .dropdown {
        position: relative;
        display: inline-block;
        text-align: center;
    }
    .dropdown-content {
        padding-left: 0em;
        height: 224px;
    }
    .menu ul {
        overflow: none !important;
    }
    .dropdown:hover {
        height: 224px;
    }
    .phone table {
        border-spacing: 10em 0;
        border-collapse: separate;
        margin: 0 auto;
        font-size: 1.6vw;
        color: #fff;
        padding-top: 12px;
    }
    .phone table th {
        padding-left: 1em;
    }
}