@import url('//https://fonts.googleapis.com/css?family=Oswald');
@import url('//https://fonts.googleapis.com/css?family=Poppins');
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 30%, #f5faff 70%);
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #eaeaea 0%, transparent 70%);
    opacity: 0.35;
    z-index: -1;
}
.main-wrapper {
    min-height: 100vh;
    width: 100%;
    position: relative;
    /* overflow: hidden; */
    /* overflow-y: hidden; */
    display: flex;
    flex-wrap: nowrap;
}
.main-block {
    width: 60%;
    background: url(../images/bg-overlay.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}
.map-sec {
    width: 40%;
}
.map-sec iframe {
    min-height: 100%;
}
.header {
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}
.main-wrapper .container {
    padding: 50px 50px;
}
.about-sec h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 10px;
    line-height: 82px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #01508a;
}
img.logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
}
.btn-sec {
    display: inline-block;
    padding-top: 30px;
    padding-bottom: 30px;
}
.btn-sec a.btn-1 {
    padding: 10px 20px;
    background-color: #01508a;
    border-radius: 3px;
    border: 1px solid #01508a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 15px;
}
.btn-sec a.btn-1:hover {
    background-color: #fff;
    color: #01508a;
}
.btn-sec a.btn-2 {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #01508a;
    color: #01508a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 15px;
}
.btn-sec a.btn-2:hover {
    background-color: #01508a;
    color: #fff;
}
.contact {
    margin-top: 30px;
}
.contact h3 {
    margin-bottom: 15px;
    font-size: 34px;
    font-weight: 500;
}
.icon-sec p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: poppins;
}
.icon-sec p a {
    color: #000;
    text-decoration: none;
    font-family: 'Poppins';
}
.footer-sec {
    background: #01508a;
    text-align: center;
    display: block;
    height: 50px;
    align-content: center;
}
.footer-sec p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins';
    margin-bottom: 0;
}

/*---- Responsive style ----*/
@media only screen and (max-width: 991px) {
	body {
		overflow: unset;
	}
	.main-wrapper {
		display: block;
	}
	.main-block {
	    width: 100%;
	}
	.header {
	    text-align: center;
	    padding-top: 50px;
	}
	.main-wrapper .container {
	    padding: 20px 50px;
	}
	.about-sec h1 {
	    text-align: center;
	}
	.btn-sec {
	    display: flex;
	    padding-top: 25px;
	    padding-bottom: 30px;
	    text-align: center;
	    justify-content: center;
	}
	.contact {
	    text-align: center;
	}
	.map-sec {
	    width: 100%;
	}
	.map-sec iframe {
	    min-height: 300px;
	}
}

@media only screen and (max-width: 500px) {
    .btn-sec {
	    display: grid;
	    gap: 15px;
	    padding-bottom: 10px;
	}
	.about-sec h1 {
        text-align: center;
        font-size: 44px;
    }
}