@charset "UTF-8";

html, body {
	padding: 0;
	margin: 0;
}

body {
	background: #011828;
	background: linear-gradient(90deg,rgba(1, 24, 40, 1) 0%, rgba(7, 47, 64, 1) 50%, rgba(11, 56, 73, 1) 100%);
	font-family: 'Montserrat', sans-serif;
}

.coming_soon {
	margin: 0 auto;
	text-align: center;
	padding: 40px;
	background: #011828;
	background: linear-gradient(90deg,rgba(1, 24, 40, 1) 0%, rgba(7, 47, 64, 1) 50%, rgba(11, 56, 73, 1) 100%);
	margin-top: 6%;
}

.coming_soon img {
	width: 100%;
	max-width: 350px;
	margin-bottom: 25px;
}

.coming_soon h1 {
	color: #f7f7f7;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
}

.coming_soon h2 {
	color: #f7f7f7;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 26px;
    font-style: italic;
}

.wow {
    visibility: hidden;
}

.info-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.info-section h3 {
    color: #f5d06f;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.contact-info p {
    color: #f7f7f7;
    margin: 6px 0;
    font-size: 14px;
	margin-bottom: 10px;
	line-height: 18px;
}

.contact-info p a {
    color: #f7f7f7;
	text-decoration: none;
}

.services-info ul {
    list-style: none;
    padding: 0;
}

.services-info ul li {
    color: #ffffff;
    margin: 6px 0;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.services-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f5d06f;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
	
	.services-info ul li::before {
		display: none;
	}
}