@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
    margin: 0;
    min-height: 100vh;   
    font-family: 'Roboto', sans-serif; 
}
*{
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.comming-soon {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background: rgb(38,118,139);
    background: linear-gradient(0deg, rgba(38,118,139,1) 0%, rgba(29,86,101,1) 0%, rgba(21,55,64,1) 32%);
    position: relative;
    padding: 30px;
}
.mt-0{
    margin-top: 0 !important;
}
.comming-soon ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.comming-soon ul a{
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.comming-soon ul li a:hover {
    color: #dd9d94;
}
.comming-soon ul li{
    display: block;
    position: relative;
    padding-left: 45px;
    margin: 15px 20px;
    line-height: 30px;
}
.comming-soon h1 {
    text-align: left;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    margin: 0;
    font-size: 30px;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}
.comming-soon h1 span{
    font-weight: 300;
    font-size: 26px;
}
.logo img {
    max-width: 200px;
}
.contact-detail li span {
    position: absolute;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #e89577;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.contact-detail li span img {
    max-width: 16px;
    display: block;
}
.comming-soon .logo {
    margin-bottom: 60px;
}

/* responsive css  */
@media screen and (max-width: 1199px){
    .comming-soon h1{
        font-size: 24px;
    }
    .comming-soon h1 span{
        font-size: 20px;
    }
    .logo img {
        max-width: 170px;
    }
    .comming-soon ul a{
        font-size: 16px;
    }
    .comming-soon .logo {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 767px){
    .comming-soon{
        padding: 20px;
    }
    .comming-soon h1 {
        font-size: 20px;
    }
    .comming-soon h1 span {
        font-size: 16px;
    }
    .comming-soon ul li{
        width: 100%;
        margin: 10px 0;
    }
    .comming-soon ul{
        max-width: 340px;
    }
    .comming-soon .logo {
        margin-bottom: 30px;
    }

}   