[v-cloak] {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    max-width: 100vw;
    background-color: #f3f3f3;
}

header {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1920px;
    height: 100px;
    padding: 0 120px;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}

header.mobile {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
    border: none;
}

.btn-menu {
    position: absolute;
    top: 24px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: url(../images/menu.png) top right / contain no-repeat;
}

.btn-menu.active {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: unset;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

nav a,
nav a:active {
    max-height: 2em;
    margin-left: 2em;
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    text-decoration: none;
}

nav a:hover {
    color: #ff0000;
}

nav.mobile {
    position: absolute;
    top: 24px;
    right: 40px;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: .8em;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 12px;
    transform-origin: top right;
    transform: scale(1);
    transition: transform .2s;
}

nav.mobile.hide {
    transform: scale(0);
}

nav.mobile a,
nav.mobile a:active {
    margin: .8em;
}

section {
    position: relative;
}

#partner .content {
    position: absolute;
    top: 416px;
    left: 244px;
}

#partner .content.mobile {
    top: 472px;
    left: 122px;
}

#partner .content label {
    display: block;
    margin-bottom: 13px;
    font-size: 20px;
}

#partner .content label span {
    margin-right: .25em;
    color: #f00;
}

#partner .content input {
    width: 676px;
    height: 60px;
    margin-bottom: 29px;
    padding: 0 20px;
    background-color: #fafafb;
    border-radius: 6px;
    border: solid 1px #dfdfdf;
    font-size: 20px;
}

#partner .content button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 172px;
    height: 60px;
    margin-top: 110px;
    background-color: #c00000;
    border-radius: 6px;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 1px;
    color: #fefaf8;
    border: none;
    appearance: none;
    cursor: pointer;
}

#contact .content {
    position: absolute;
    top: 329px;
    left: 971px;
    width: 804px;
}

#contact .content.mobile {
    top: 292px;
    left: 122px;
}

#contact .content .title {
    margin-bottom: 69px;
    font-size: 31px;
    line-height: 18px;
    color: #282828;
}

#contact .content .info {
    display: flex;
    justify-content: space-between;
}

#contact .content input {
    display: inline-block;
    width: 390px;
    height: 70px;
    margin-bottom: 30px;
    padding: 0 18px;
    border: solid 1px #b0b0b0;
    border-radius: 4px;
    font-size: 24px;
    line-height: 18px;
}

#contact .content input:nth-child(1) {
    margin-right: 20px;
}

#contact .content input::placeholder {
    color: #5a5a5a;
}

#contact .content textarea {
    width: 804px;
    height: 166px;
    padding: 18px;
    border: solid 1px #b0b0b0;
    border-radius: 4px;
    font-size: 24px;
    resize: none;
}

#contact .content textarea::placeholder {
    color: #5a5a5a;
}

#contact .content button {
    position: absolute;
    right: 1px;
    bottom: 5px;
    width: 108px;
    height: 90px;
    border-bottom-right-radius: 4px;
    font-size: 23px;
    line-height: 18px;
    border: none;
    color: #ffffff;
    background: url(../images/send.png) center / cover no-repeat;
    cursor: pointer;
}

footer {
    width: 1920px;
    height: 344px;
    background-color: #2c2c2c;
    overflow: hidden;
}

footer.mobile {
    width: 100%;
}

footer img {
    display: block;
    margin: 111px auto;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

footer p a {
    margin-left: .8em;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    text-decoration: none;
}