* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    height: 100vh;
    background-image: url(../images/BG.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
}

.content-box {
    width: 100%;
    max-width: 1250px;
    padding: 20px;
}
.floating-email{
        position: absolute;
    right: 20px;
    bottom: 20px;
}
.content-box p a {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.coming-text {
    font-size: 24px;
}

.email-item i {
    color: #c81d1d;
    margin-right: 5px;
}

.logo {
    width: 320px;
}

@media(max-width:768px) {
    .logo {
        width: 320px;
    }
    body {
        background-image: url(../images/Mobile-BG.jpg);
        background-position: left bottom;
    }
    .coming-text {
        font-size: 20px;
    }
    .content-box p a {
        font-size: 14px;
    }
    .content-box {
        width: 100%;
        max-width: 320px;
        padding: 0px;
        /*padding-bottom: 150px;*/
    }
}