
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400&display=swap');

body{
    color: white;
}

.title{
    margin-top: 210px;
}

img{
    width: 75%;
    height: 100%;
}

.bg-img-count1{
    background: url(../img/coming-soon-img-1.jpg);
    position: relative;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.fullscreen{
    height: 100vh !important;
    width: 100%;
}

.font_size{
    font-size: 20px;
    font-family: 'Raleway' , sans-serif;
}


/********************COUNT DOWN*******************/
ul.count_down {
    list-style: none;
    padding: 0;
    display: block;
}

ul.count_down li {
    display: inline-block;
    color: white;
    padding: 10px;
    width: 90px;
    text-align: center;
}

ul.count_down li p:nth-child(1) {
    font-size: 55px;
    font-family: 'Open Sans', sans-serif;
    color: rgb(254, 254, 254);
    font-weight: bold;
    margin:0;
}

ul.count_down li p:nth-child(2) {
    font-size: 17px;
    font-family: 'OpenSans', sans-serif;
    color: rgb(254, 254, 254);
    line-height: normal;
    margin: 15px 0 0 0;
    letter-spacing: 0;
}

.alignment_text{
    padding-right: 80px;
    position: absolute;
    bottom: 12%;
    text-align: right;
}


/*************************SOCIAL ICONS*********************/
ul.social-icon li{
    display: inline-block;
    padding: 9px 0 0 0;
    cursor: pointer;
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: transparent;
    border-radius: 50px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

ul.social-icon li a{
    color: white;
}

ul.social-icon li:hover {
    background-color: white;
    border-radius: 50px;
}

ul.social-icon li:hover i{
    color: #015b97;
}



/********************MEDIA QUERIES***************/

@media screen and (height:1366px) {
    .title{
        margin-top: 46%;
    }
}

@media screen and (width:768px){
    .alignment_text{
        padding-right: 0;
        text-align: center;
        position: absolute;
        bottom: 30%;
    }
    .title {
        margin-top: 285px;
    }
}

@media screen and (max-width:767px){
    .alignment_text {
        padding-right: 15px;
        text-align: center;
        position: absolute;
        bottom: 30%;
    }
    ul.count_down li {
        width: 82px;
        padding: 0;
    }
    ul.count_down li p:nth-child(1) {
        font-size: 45px;
    }
    .title{
        margin-top: 190px;
    }
}

