/* =========================================
   COMING SOON SECTION
========================================= */

.coming-soon-section {
    position: relative;
    padding: 120px 0;
    background: #f5f5f2;
    overflow: hidden;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
}

.coming-soon-label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.coming-soon-content h2 {
    margin: 0 0 25px;
    font-size: 70px;
    line-height: 0.95;
    font-weight: 500;
    text-transform: uppercase;
}

.coming-soon-content h2 span {
    display: inline-block;
    font-weight: 300;
}

.coming-soon-content p {
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.btn-coming-soon {
    padding: 14px 30px;
    border: 1px solid #111;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-coming-soon:hover {
    background: transparent;
    color: #111;
}


/* =========================================
   VISUAL
========================================= */

.coming-soon-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.coming-soon-circle {
    position: relative;
    width: 320px;
    height: 320px;
    border: 1px solid #111;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.coming-soon-circle::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px dashed #999;
    border-radius: 50%;
}

.coming-soon-circle span {
    position: relative;
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.coming-soon-circle strong {
    position: relative;
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .coming-soon-section {
        padding: 90px 0;
    }

    .coming-soon-content h2 {
        font-size: 55px;
    }

    .coming-soon-circle {
        width: 270px;
        height: 270px;
    }

    .coming-soon-circle::before {
        width: 220px;
        height: 220px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .coming-soon-section {
        padding: 70px 0;
        text-align: center;
    }

    .coming-soon-content {
        margin-bottom: 50px;
    }

    .coming-soon-content h2 {
        font-size: 45px;
    }

    .coming-soon-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .coming-soon-visual {
        min-height: 280px;
    }

    .coming-soon-circle {
        width: 230px;
        height: 230px;
    }

    .coming-soon-circle::before {
        width: 185px;
        height: 185px;
    }

    .coming-soon-circle strong {
        font-size: 35px;
    }

}