:root {
    --red: #ef3939;
    --color-line: #e6e6e6;
    --gray: #999999;
    --blue: #1f2a4b;
    --color-text: #dbe1f2;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
}

.background {
    background-image: url(../images/slide-show.png);
    height: 100vh;
    max-height: 100vh;
    margin: 0 0 0 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* wapper */

/* ==================================================================================================================== */

.wrapper.row {
    margin: 0 !important;
    padding: 0 !important;
}

.wrapper-text {
    text-align: center;
    position: absolute;
    width: 70rem;
    max-width: 70rem;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    /* check */
    /* width: 36.46vw; */
}

p.wrapper-title {
    color: #ef3939;
    font-weight: 900;
    font-size: 38pt;
    margin-bottom: -3px;
    /* check */
    /* font-size: 2.63vw; */
}

p.wrapper-content {
    color: #1f2a4b;
    font-size: 19pt;
    font-weight: 800;
    padding: .7rem 0;
    margin-bottom: 3rem;
    background-color: #ffffff;
    box-shadow: 0px 5px 50px -10px #999999;
}

/* ==================================================================================================================== */

.wrapper-text .registration {
    width: 22rem;
    height: 5.5rem;
    border: 0px;
    border-radius: 3rem;
    background-color: #ef3939;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    transition: 0.5s;
}

.wrapper-text .registration:hover {
    background-image: linear-gradient(#ff6f6f, #ef3939);
    box-shadow: 10px 16px 50px -6px #ef3939;
}

.wrapper-text .registration:focus {
    outline: none;
}

/* wapper */

/* option-menu */

/* ==================================================================================================================== */

.option-menu.row {
    margin: 0;
    padding: 0;
}

.option-menu {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    font-size: 50px;
    color: white;
    margin: 0;
    padding: 0;
    width: 117rem;
    max-width: 117rem;
    height: 19rem;
    max-height: 20rem;
    background: #fff;
}

.option-menu a {
    color: #1f2a4b;
}

.option-menu .option-box {
    text-align: center;
    width: calc(100% / 6);
    height: 100%;
    border-right: 1px solid #e6e6e6;
    transition: 0.5s;
}

.option-menu div:last-child {
    border-right: none;
}

.option-box-content {
    left: 50%;
    bottom: 0;
    transform: translate(0%, 15%);
}

.option-box-content .name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2a4b;
    transition: 0.5s;
}

.option-box-content .detail {
    font-size: 15px;
    color: #999999;
    font-weight: 400;
    transition: 0.5s;
}

/* hover & focus */

/* ==================================================================================================================== */

.option-box:hover, .option-box:focus {
    cursor: pointer;
    background-color: #ef3939;
    color: white;
}

.option-box:hover a, .option-box:focus a, .option-box:hover p, .option-box:focus p {
    color: #fff;
}

.option-box-content .material-icons {
    transition: 0.5s;
}

/* chat-live */

/* ==================================================================================================================== */

.chat-live {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* responsive */

@media (min-width: 1200px) {}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .option-menu {
        font-size: 50px;
        width: 99rem;
        max-width: 99rem;
        height: 20rem;
        max-height: 20rem;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .option-menu {
        width: 76rem;
        max-width: 76rem;
    }
    .option-box-content {
        transform: translate(0%, 0%);
    }
}

@media (max-width: 767px) {
    .background {
        /* check */
        position: relative !important;
        height: 100rem;
        max-height: none;
        background-size: auto 100%;
        margin: 0 0 0 0;
        position: unset;
        background-position: center;
        background-repeat: no-repeat;
    }
    .option-menu .option-box {
        width: calc(100% / 2);
        height: 170px;
        border: 0;
    }
    .option-menu {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 0%);
        width: 90%;
        max-width: 117rem;
        height: auto;
        max-height: fit-content;
    }
    .border-right {
        border-right: 1px solid #e6e6e6 !important;
    }
    .wrapper-text {
        text-align: center;
        position: absolute;
        width: 100%;
        left: 50%;
        top: 0%;
        transform: translate(-50%, 125%);
    }
    p.wrapper-content {
        margin-top: 1rem;
        font-size: 15px;
    }
    p.wrapper-title {
        font-size: 36px;
    }
    
}