@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap);
body,
h1,
h2,
h3,
h4,
html {
	font-family: Montserrat, sans-serif;
    font-weight: 700;
}

body,
html {
	padding: 0px;
	margin: 0px;
	font-weight: 400;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth
}
.background-img {
    width: 100%;
    height: 100%;
    background-position: top!important;
    background-size: cover !important;
}
.logo {
    position: relative;
    width: 100%;
    text-align: center;
    top: 30px;
    margin-bottom: 40px;
}
.logo img {
	width: auto;
	height: 85px;
}
.box-text {
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.box-text h3{
	font-size: 80px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 30px 0;
}
.box-text a {
	display: inline-block;
    text-decoration: none;
    outline: 0;
    padding: 10px 20px;
    font-size: 15px;
    color: #ffffff;
    background-color: #c44e3f;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.box-text a:hover {
    background-color: #dd4e3c;
}
.city-img img {
    width: 100%;
    height: auto;
}
.city-img {
    position: relative;
}
.box-section-1:before,.box-section-2:before {
    content: "";
    background: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}
.main-box {
	display: flex;
	align-items :center;
}
.box-section-1 {
    position: relative;
    width: 50%;
    margin: 15px;
    margin-right: 9px;
}
.box-section-2 {
    position: relative;
    width: 50%;
    margin: 15px;
    margin-left: 9px;
}

@media only screen and (max-width: 768px) {
.logo {
    position: relative;
    width: 100%;
    top: 20px;
}
.logo img {
    width: auto;
    height: 60px;
}
.box-section-1 {
    width: 100%;
    margin: 0;
    margin-right: 0;
}
.box-section-2 {
    width: 100%;
    margin: 0;
    margin-left: 0;
}
.main-box {
    padding-top: 0;
    flex-direction: column;
    gap: 15px;
}

}


@media only screen and (max-width: 400px) {
.box-text h3 {
    font-size: 70px;
}

}