html, body {
    width: 100%;
    color: #2A3950;
    min-width: 1200px;
}


nav {
    width: 100%;
    height: 70px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 90;
}

nav > .container {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav > .container > h1 {
    height: 100%;
    margin-bottom: 0;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}

nav > .container > h1 > a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


nav > .container > ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav > .container > ul > li {
    font-size: 16px;
    line-height: 22px;
    padding: 0 24px;
    position: relative;
}

nav > .container > ul > li > a {
    /*text-decoration: none;*/
    font-weight: 400;
    color: #2A3950;
}

nav > .container > ul > li.active {
    position: relative;
}

nav > .container > ul > li.active > a {
    color: #0866FF;
    font-weight: 500;
}

nav > .container > ul > li.active::after {
    content: "";
    display: block;
    width: 8px;
    height: 4px;
    background: #0866FF;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}


nav > .container > ul > li:hover > ul {
    max-height: 500px;
}
nav > .container > ul > li > ul {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    position: absolute;
    background: white;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    font-size: 14px;
    border-radius: 5px;
    box-shadow: -1px 5px 15px 1px #00000063;
    list-style: none;
    padding: 0;

}
nav > .container > ul > li > ul >li {
    white-space: nowrap;
    padding: 10px 10px 5px 10px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}
nav > .container > ul > li > ul >li > a{
    text-decoration: none;
}

nav > .container > ul > li > ul >li:hover {
    background: rgba(8, 102, 255, 0.2);
}

/*footer*/

.footer {
    width: 100%;
}

.footerBox > .contact {
    width: 100%;
    height: 380px;
    background: url("/assets/images/common/contactBg.jpg") no-repeat center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footerBox > .contact >h2 {
    font-size: 46px;
    font-weight: 600;
    color: #2A3950;
    line-height: 65px;
    margin-bottom: 32px;
}

.footerBox > .contact > a {
    background: #0866FF;
    border-radius: 30px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
    padding: 10px 30px;
    cursor: pointer;
}

.footerBox > .footer {
    width: 100%;
    height: 320px;
    background: #212D42;
}

.footerBox > .footer > .footerContent {
    width: 1200px;
    height: 194px;
    margin: 0 auto;
    padding:  20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerBox > .footer > .footerContent > .footerContact {
    width: 386px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footerBox > .footer > .footerContent > .footerContact > .footerLogo {
    width: 164px;
    height: 54px;
    border-radius: 8px;
    margin-left: 38px;
}

.footerBox > .footer > .footerContent > .footerContact > ul{
    list-style: none;
}

.footerBox > .footer > .footerContent > .footerContact > ul > li {
    font-size: 16px;
    color: #ffffffd6;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footerBox > .footer > .footerContent > .footerContact > ul > li >img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.footerBox > .footer > .footerContent > .footerLine {
    width: 1px;
    height: 100%;
    background: white;
    opacity: .3;
}

.footerBox > .footer > .footerContent > .footerNav {
    width: calc(100% - 386px - 1px - 142px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footerBox > .footer > .footerContent > .footerNav > ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.footerBox > .footer > .footerContent > .footerNav > ul > li {
    width: 150px;
    text-align: start;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.footerBox > .footer > .footerContent > .footerNav > ul > li > a {
    color: #ffffffd6;
}

.footerBox > .footer > .footerContent > .footerNav > .footerSlogan {
    font-size: 26px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 37px;
}

.footerBox > .footer > .copyright {
    font-size: 14px;
    font-weight: 400;
    color: #ffffffd6;
    line-height: 20px;
    text-align: center;
    margin-top: 30px;
}
