@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;
    background: linear-gradient(to bottom, #ffffff 30%, #f5faff 70%);
    /*overflow: hidden;*/
}
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: #061138;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}
.map-sec {
    width: 40%;
}
.map-sec iframe {
    min-height: 100%;
}
.header {
    padding-top: 60px;
    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: 46px;
    font-weight: 700;
    letter-spacing: 10px;
    line-height: 56px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}
.content-sec h3 {
    color: #f7f9ff;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}
img.logo {
    width: 180px;
    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: 300 !important;
    color: #f7f9ff;
    font-family: poppins;
    margin-bottom: 10px;
}
.icon-sec p a {
    color: #f7f9ff;
    text-decoration: none;
    font-family: 'Poppins';
}
.icon-sec p a:hover {
    color: #fff;
}
.footer-sec {
    background: #f6f6f6;
    text-align: center;
    display: block;
    height: 50px;
    align-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.footer-sec p {
    color: #152B8A;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins';
    margin-bottom: 0;
}
.bg-video {
  position: fixed;
  left: 0;
  top: 0;
  background-size: cover;
  background: no-repeat center;
  margin-left: 50vw;
  user-select: none;
  pointer-events: none;

  /*custom styles, for example grayscale appearance*/
  filter: grayscale(0.8);

  /*additional tweaks for positioning, read more in the link above*/
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
}
.video-container {
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes video cover entire area */
}

/*---- 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;
    }
}