.main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.main {
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100vw;
    top: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row {
    position: relative;
    width: 100vw;
    margin: 1em 0;
    display: flex;
    justify-content: space-between;
    gap: 2em;
    padding: 0 5%;
}

.card {
    position: relative;
    width: 40%;
    height: 360px;
    border-radius: 0.75em;
    overflow: hidden;
    will-change: transform;
}

.content-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.content-logo {
    width: 150px;
    height: 150px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transform: scale(0);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    -webkit-box-reflect: below -2q;
    margin: 2rem;
}

.bar {
    width: 8px;
    background: #ff3c1e;
    border-radius: 2px 2px 0 0;
    transition: transform 0.1s ease-out;
    transform-origin: bottom;
}

.bar:nth-child(1) {
    height: 20px;
}

.bar:nth-child(2) {
    height: 40px;
}

.bar:nth-child(3) {
    height: 60px;
}

.bar:nth-child(4) {
    height: 30px;
}

.bar:nth-child(5) {
    height: 80px;
}

.bar:nth-child(6) {
    height: 45px;
}

.bar:nth-child(7) {
    height: 70px;
}

.bar:nth-child(8) {
    height: 35px;
}

.bar:nth-child(9) {
    height: 55px;
}

.bar:nth-child(10) {
    height: 25px;
}

.bar:nth-child(11) {
    height: 65px;
}

.bar:nth-child(12) {
    height: 50px;
}

.copy {
    margin: 2em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.line {
    position: relative;
    width: max-content;
    height: 30px;
}

.line p {
    position: relative;
    font-size: 24px;
    transform: translateY(30px);
    font-weight: 300;
}

button.muar {
    position: relative;
    padding: 1em 2em;
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    background: none;
    outline: none;
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;

}

button.muar:hover {
    background: #fff;
    color: #000;
}

@media(max-width:900px) {
    .card {
        width: 50%;
        height: 240px;
    }

    .line p {
        font-size: 18px;
    }

    .row {
        gap: 1em;
    }
}

.scroll-up {
    height: 40px;
    width: 40px;
    outline: 1px solid rgba(666, 666, 666, .08);
    margin-top: 12rem;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
    transform: rotate(180deg) scale(2);

    svg line {
        stroke-width: 1;
        stroke: #aaa;
        fill: none;
        stroke-dasharray: 20;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

    &:hover svg line {
        &.top {
            -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
        }

        &.bottom {
            -webkit-transform: translateX(40px);
            transform: translateX(40px);
        }

        &.left {
            -webkit-transform: translateY(40px);
            transform: translateY(40px);
        }

        &.right {
            -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
        }
    }
}

.scroll-up {
    .left-bar {
        position: absolute;
        z-index: 1;
        background-color: transparent;
        top: 19px;
        left: 5px;
        width: 18px;
        display: block;
        transform: rotate(-45deg);

        &:after {
            content: "";
            background-color: #666;
            width: 18px;
            height: 1px;
            display: block;
            border-radius: 1px;
            transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
            transform-origin: right center;
            z-index: -1;
        }
    }

    .right-bar {
        position: absolute;
        z-index: 1;
        background-color: transparent;
        top: 19px;
        left: 17px;
        width: 18px;
        display: block;
        transform: rotate(45deg);
        border-radius: 2px;

        &:after {
            content: "";
            background-color: #666;
            width: 18px;
            height: 1px;
            display: block;
            border-radius: 1px;
            transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
            transform-origin: left center;
            z-index: -1;
        }
    }

    &:hover {
        transition: all .1s;

        .left-bar:after {
            transform: rotate(-10deg);
        }

        .right-bar:after {
            transform: rotate(10deg);
        }
    }
}