html {
	margin: 0;
	padding: 0;
}

body {
	background: #fff1c1;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	color: #761F18;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0;
}

* {
    outline: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.coming_soon_sec {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 1175px;
    min-height: 100vh;
    padding: 40px 0;
    margin: 0 auto;
    text-align: center;
}

.coming_soon_sec h2 {
    margin: 40px 0 0 0;
    font-size: 26px;
    line-height: 40px; 
}

.coming_soon_sec .img_box {
    display: inline-block;
    width: 500px;
}

@media (max-width: 1175px) {
    .coming_soon_sec {
        width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }
} 

@media (max-width: 500px) {
    .coming_soon_sec .img_box {
        width: 100%;
    }
}

