.coming-soon {
    height: 100vh;
    background-color: #fff;

    > img {
        position: absolute;
        bottom: 0;
        right: 0;
        display: block;
        margin-top: auto;
        margin-right: auto;
        margin-left: auto;
		width: 50%;
    }

    .layer {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        height: 100%;
        text-align: center;
        padding-top: 150px;

        img {
            width: 150px;
            height: 150px;
            margin-right: auto;
            margin-left: auto;
        }

        h1 {
            font-size: 60px;
            letter-spacing: 12px;
            color: #333;
        }

        .info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: #333;

            .title {
                display: flex;
                flex-direction: column;
                font-size: 26px;
                letter-spacing: 2px;

                span {
                    &:nth-child(2) {
                        font-weight: 600;
                    }
                }
            }

            > span {
                font-size: 16px;
                letter-spacing: 0.5px;
            }
        }
    }
}


/* Smartphones */
@media (max-width: 480px) {
    .coming-soon {

        > img {
            width: 90%;
            bottom: 70px;
        }

        .layer {
            padding-right: 15px;
            padding-left: 15px;

            img {
            }

            h1 {
                font-size: 40px;
                line-height: 40px;
            }

            .info {

                .title {
                    font-size: 18px;

                    span {
                        &:nth-child(2) {
                        }
                    }
                }

                > span {
                }
            }
        }
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .coming-soon {

        > img {
            width: 450px;
            bottom: 70px;
        }

        .layer {

            img {
            }

            h1 {
            }

            .info {

                .title {
                    font-size: 18px;

                    span {
                        &:nth-child(2) {
                        }
                    }
                }

                > span {
                }
            }
        }
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .coming-soon {

        > img {
            width: 500px;
            bottom: 70px;
        }

        .layer {

            img {
            }

            h1 {
            }

            .info {

                .title {
                    font-size: 18px;

                    span {
                        &:nth-child(2) {
                        }
                    }
                }

                > span {
                }
            }
        }
    }
}