.header {
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}

.logo {
    margin-left: 100px;
    margin-right: 180px;
}

.logo img {
    width: 88px;
}

.nav {
    line-height: 40px;
    color: #3D3D3D;
    border-radius: 21px 21px 21px 21px;
    padding: 0 21px;
    font-size: 16px !important;
}

.nav.on {
    background: #2882FF;
    color: #fff;
}

.language {
    margin-left: 60px;
}

.language img {
    width: 16px;
    margin-right: 10px;
}


.submitForm {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, .5);
    z-index: 99;
    transition: 1s;
    top: 101%;
}

.submitForm.show {
    top: 0%;
}

.form {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #4A4B5D;
    padding: 100px 0 50px;
}

.formItem {
    display: flex;
}

.formItem span {
    line-height: 26px;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin-right: 20px;
}

.formItem input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
}

.formItem input:focus {
    border: none !important;
    outline: none;
}

.formItem input:focus-visible {
    border: none !important;
}

.submitForm textarea {
    width: 100%;
    margin: 10px 0 20px;
}

.lineHr {
    background: #fff;
    width: 100%;
    height: 1px;
}

.textarealength {
    line-height: 26px;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}


.submitBtn {
    width: 170px;
    height: 54px;
    background: #EE5B1C;
    border-radius: 30px 30px 30px 30px;
    color: #fff;
    cursor: pointer;
    margin: 20px 0 0;
}

.submitClose {
    position: absolute;
    top: 20px;
    right: 10%;
    width: 20px;
}

.footer {
    padding-top: 100px;
}

.footer .font-s {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}

.footer .font-b {
    font-weight: bold;
    font-size: 40px;
    color: #FFFFFF;
}

.footerBtn {
    width: 170px;
    height: 54px;
    background: #EE5B1C;
    border-radius: 30px 30px 30px 30px;
    color: #fff;
    cursor: pointer;
    margin: 30px 0 80px;
}

.footerLink a {
    margin-left: 80px;
    color: #fff;
}

.footerLink span {
    color: #fff;
}

.header>ul>li {
    margin-right: 20px;
}

.header>ul ul {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    z-index: 1;
    width: max-content;
    background-color: #fff;
    border: 1px solid #00000026;
}

.header li:hover ul {
    display: block;
}

.header li {
    padding: 8px;
}