@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*, body{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Open Sans', sans-serif;
    color: #393939;
    font-weight: 400;
}

img{
    max-width: 100%;
}

.maintanance-img {
	height: 300px;
}

.maintanance-img img{
    height: 100%;
}

.under-maintanance-main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 80px 0;
	height: 100vh;
}

.maintanance-text {
	margin-top: 20px;
}

.maintanance-text h1 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 48px;
    padding-bottom: 0;
    margin-bottom: 32px;
}

.maintanance-text h2 {
    font-weight: 500;
    font-size: 17px;
    display: inline-block;
    background: #1d7bbe;
    padding: 12px 22px;
    color: #fff;
    border-radius: 5px;
    line-height: 26px;
    /* border-top: 1px solid #ddd; */
    width: 280px;
}

.maintanance-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 31px;
    border: 1px solid #1d7bbe;
    width: 360px;
    margin: 14px auto 0;
    border-radius: 4px;
    padding: 12px 0px 16px;
    color: #1d7bbe;
    background: #e8f1f8;
}

.countdown {
	display: flex;
    margin-top: 20px;
}

.countdown-single {
	display: flex;
	flex-direction: column;
    width: 80px;
    height: 70px;
    margin: 0 10px;
    border-radius: 5px;
    border:2px solid #1d7bbe;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* background: #1d7bbe; */
    color: #1d7bbe;
}

.countdown-time {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
}

.countdown-time-text {
	font-size: 13px;
	margin-top: 2px;
}

@media (max-width: 1399.98px) {
    .maintanance-img {
        height: 200px;
    }
    .maintanance-text h1 {
        font-size: 22px;
        line-height: 38px;
        padding-bottom: 24px;
        margin-bottom: 32px;
    }
    .maintanance-text h2 {
        font-size: 16px;
        width: 320px;
    }
    .maintanance-text h3 {
        font-size: 18px;
        width: 320px;
    }
}

@media (max-width: 1199.98px) {
    .under-maintanance-main{
        height: auto;
    }
    .maintanance-img {
        height: auto;
        width: 480px;
    }
}
@media (max-width: 575.98px) {
    .maintanance-img {
        height: auto;
        width: 100%;
    }
    .maintanance-text {
        margin-top: 40px;
    }
    .maintanance-text h1 {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 30px;
    }
    .countdown {
        margin-top: 30px;
        flex-direction: column;
    }
    .countdown-single {
        width: 100px;
        height: 80px;
        margin: 0 0 20px 0;
    }
    .countdown-single:last-child{
        margin-bottom: 0;
    }
    .maintanance-text h2 {
        font-size: 16px;
        padding: 12px 20px;
    }
}

