@font-face {
    font-family: Jeju;
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/JejuGothic-Regular.ttf);
}

.title-s {
    display: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Jeju', sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    color: #fff;
    background-size: cover;
    /*background: linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .36)), url(../assets/bg.jpg) center center;*/
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100%;
}

.background {
    z-index: -2;
    width: 100%;
    height: 100%;
    position: fixed;
}

/*body {*/
/*    background: none !important;*/
/*}*/

.bg-elem {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover !important;
    transition: 1s;
    opacity: 0;
}

.overflow {
    width: 100%;
    position: relative;
    z-index: 1;
}

.reviews {
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
}

.rev {
    display: inline-flex;
    position: absolute;
    z-index: 4;
    color: #fff;
    opacity: 0;
    flex-direction: column;
    background: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-style: italic;
    transition: 1s;
    padding: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 32px;
    background: #ffffff3e;
}

.aut {
    color: gray;
    align-self: end;
}

.aut::before {
    content: "— "
}

.rev span {
    margin-bottom: 9px;
}

.caption {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: start;
    grid-column-start: 1;
    grid-column-end: -1;
}

.line-1 {
    display: grid;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    grid-template-rows: 1fr auto;
    height: 100%;
    padding: 100px;
    grid-template-columns: repeat(2, 1fr);
}

.title {
    font-size: 8.5em;
    margin-bottom: 40px;
    grid-column-start: 1;
}

.text {
    font-size: 14pt;
}

.buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-column-start: 1;
    grid-column-end: -1;
    justify-content: end;
    margin-top: 25px;
}

.btn-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 50px;
}

[class^="phone-"] {
    display: none;
}

.btn-row.bottom {
    margin-top: 20px;
}

.btn {
    width: 25%;
    margin-left: 15px;
    border: 1px solid #A0A0A0;
    color: #A0A0A0;
    padding: 15px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(24, 24, 24, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: .3s;
}

.btn:hover {
    cursor: pointer;
    background: rgba(100, 100, 100, 0.3);
    transform: scale(1.05)
}

.btn:first-child {
    margin-left: 0;
}

.big {
    width: calc(50% - 15px);
}

@media screen and (max-width: 970px) {
    .overflow {
        width: 100%;
        height: 50%;
        text-align: center;
        position: relative;
        order: 1;
        align-items: start;
        justify-content: start;
    }

    .buttons {
        display: none;
    }

    .title {
        font-size: 5rem !important;
    }

    .titlebox {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    body {
        align-items: start;
        justify-content: start;
    }

    .line-1 {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        height: unset !important;
    }

    .caption {
        width: 100%;
        margin-top: 20px;
    }

    .reviews {
        height: 100%;
        text-align: left;
        justify-content: start;
        align-items: start;
        max-width: 300px;
        margin-top: 40px;
    }

    .rev {
        padding: 0;
        justify-content: start;
        align-items: start;
        margin-top: 20px;
    }
}