/* :root {
    --fs-h1: clamp(32px, 2vw + 20px, 50px);
    --fs-h2: clamp(28px, 1.8vw + 18px, 42px);
    --fs-h3: clamp(24px, 1.5vw + 16px, 36px);
    --fs-h4: clamp(20px, 1.2vw + 14px, 30px);
    --fs-h5: clamp(18px, 1vw + 12px, 24px);
    --fs-h6: clamp(16px, 0.8vw + 10px, 20px);
    --fs-p: clamp(14px, 0.6vw + 10px, 16px);
    --fs-small: clamp(12px, 0.4vw + 8px, 12px);

    color 
    --primary: #000c80
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.oneoneGuildWar_mainLayout {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding: 60px 50px;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;

    background: url("../images/bg_main.png");
    background-position: center;
    background-size: cover;
    color: #fff;
    font-family: "Prompt", sans-serif;
}

.oneoneGuildWar_footerObject {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;

    width: 100%;
    height: 180px;
    background: linear-gradient(0deg, #ffffffc7 10%, #ffc08c00 90%);
}

.oneoneGuildWar_logo {
    position: relative;
    z-index: 5;
    width: 650px;
}

.oneoneGuildWar_logoImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.oneoneGuildWar_logoRoc {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 150px;
}

.oneoneGuildWar_logoRoc img,
.oneoneGuildWar_title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.oneoneGuildWar_title {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 500px;
}

.oneoneGuildWar_desLayout {
    position: relative;
    z-index: 6;

    width: 100%;
    max-width: 1280px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-bold-outline {
    color: #fff;
    text-shadow:
        -4px -4px 0 #391106,
        4px -4px 0 #391106,
        -4px 4px 0 #391106,
        4px 4px 0 #391106,
        0 0 10px #391106;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 35px;
    line-height: 38px;
}

.text-bold-outline-h1 {
    padding-top: 20px;
    font-size: 45px;
}

.oneoneGuildWar_contentFooter {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    width: 100%;
    min-height: 50px;
    padding: 5px;

    background: #fff;
    color: #391106;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* overflow: hidden; */
    transform: translateZ(0);
}

/* responsive  */
@media (max-width: 991.98px) {
    .oneoneGuildWar_desLayout {
        padding: 20px 0px;
    }

    .oneoneGuildWar_mainLayout {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .oneoneGuildWar_logo {
        width: 550px;
    }

    .oneoneGuildWar_title {
        width: 400px;
    }

    .text-bold-outline {
        font-size: 28px;
        line-height: 30px;
    }

    .text-bold-outline-h1 {
        font-size: 35px;
    }

    .oneoneGuildWar_contentFooter {
        font-size: 15px;
        line-height: 17px;
    }
}

@media (max-width: 575.98px) {
    .oneoneGuildWar_logo {
        width: 450px;
    }

    .oneoneGuildWar_title {
        width: 300px;
    }

    .oneoneGuildWar_logoRoc {
        width: 100px;
    }

    .text-bold-outline {
        font-size: 22px;
        line-height: 26px;
        text-shadow: -3px -3px 0 #391106, 3px -3px 0 #391106, -3px 3px 0 #391106, 4px 4px 0 #391106, 0 0 10px #391106;
    }

    .text-bold-outline-h1 {
        padding-top: 10px;
        font-size: 28px;
        line-height: 35px;
    }

    .oneoneGuildWar_mainLayout {
        padding: 30px 20px 60px 20px;
    }
}