@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
	scroll-behavior: smooth;
}
::selection {
	background: #0f87ff;
	color: #ffffff;
	text-shadow: none;
}
::-moz-selection {
	background: #0f87ff;
	color: #ffffff;
	text-shadow: none;
}
.no-scroll {
	overflow: hidden;
}
body{
	font-size: 100%;
	font-family: "Open Sans", sans-serif;
	line-height: 1.5;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	color: #0f87ff;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 24px;
}
a {
	color: #0f87ff;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
.content {
	width: 100%;
	min-height: 600px;
}
.content a {
	color: #121212;
	text-decoration: underline;
}
.content a:hover {
	text-decoration: none;
}
.button,
a.button {
	font-family: "Montserrat", sans-serif;
    font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 0.9rem;
    padding: 10px 20px;
	color: #ffffff;
    background-color: #0f87ff;
	border: 2px solid #0f87ff;
    cursor: pointer;
	transition: 0.4s;
}
.button:hover,
a.button:hover {
    background-color: #ffffff;
	border: 2px solid #0f87ff;
	color: #0f87ff;
}
.wrap{
	width: calc(100% - 40px);
	max-width: 1440px;
	margin: 0 auto;
}
.page-header-top {
	padding: 20px 0;
}
.page-header-top .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.header-logo img {
	display: block;
    height: 70px;
    width: auto;
	transition: transform 0.4s;
}
.header-logo img:hover {
    transform: scale(1.05);
}
.page-header-bottom {
	background-color: #0f87ff;
	box-shadow: 0 14px 30px -6px rgba(0,0,0,0.1);
}
.mobile-burger {
	display: none;
}
.menu-wrap ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-wrap ul li a:before {
    content: '';
    display: inline-block;
    height: 6px;
    width: 6px;
    background-color: transparent;
    border-radius: 100%;
}
.menu-wrap ul li:hover a:before,
.menu-wrap ul li.current-menu-item a:before,
.menu-wrap ul li.current-menu-ancestor a:before,
.menu-wrap ul li.current-post-parent a:before {
    background-color: #0f87ff;
}
.menu-wrap ul li:hover,
.menu-wrap ul li.current-menu-item,
.menu-wrap ul li.current-menu-ancestor,
.menu-wrap ul li.current-post-parent {
    background-color: #ffffff;
}
.menu-wrap ul li a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: "Montserrat", sans-serif;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.9rem;
	padding: 20px;
	transition: 0.4s;
}
.menu-wrap ul li a:hover,
.menu-wrap ul li.current-menu-item a,
.menu-wrap ul li.current-menu-ancestor a,
.menu-wrap ul li.current-post-parent a {
	color: #0f87ff;
}
.menu-wrap ul ul {
	display: none;
}
.header-information ul {
    margin: 0;
    padding: 0;
	list-style: none;
	display: flex;
	gap: 20px;
	align-items: center;
}
.header-information ul li {
	display: inline-block;
	background-color: #0f87ff;
	border: 2px solid #0f87ff;
	border-radius: 8px;
}
.header-information ul li:hover {
	background-color: #ffffff;
}
.header-information ul li a {
	display: block;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	font-size: 1rem;
	padding: 12px 24px;
	transition: color 0.4s;
}
.header-information ul li:hover a {
	color: #0f87ff;
}
.page-footer {
	background-color: #0f87ff;
	color: #ffffff;
	padding: 48px 0;
}
.page-footer ::selection {
	color: #0f87ff;
	background: #ffffff;
	text-shadow: none;
}
.page-footer ::-moz-selection {
	color: #0f87ff;
	background: #ffffff;
	text-shadow: none;
}
.page-footer .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.page-footer .wrap .company-details {
	display: block;
}
.company-details {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.page-footer .header-information {
    flex-basis: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
}
.footer-col {
	flex: 1;
	overflow: hidden;
}
.footer-col-middle p {
	margin: 0 0 24px;
}
.footer-fb-col {
	text-align: center;
}
.footer-fb-col a {
	display: inline-block;
}
.page-footer h2 {
	margin: 0 0 30px;
	color: #ffffff;
}
.company-details ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.company-details ul li, 
.company-details ul li a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.4s;
}
.company-details ul li a:hover {
	text-decoration: underline;
}
.footer-reg img,
.footer-kmkr img,
.footer-phone img, 
.footer-email img, 
.footer-location img {
	display: block;
    height: 28px !important;
    width: auto !important;
	margin: 0 !important;
}
.page-footer .header-information ul li {
	background-color: #ffffff;
	border: 2px solid #ffffff;
}
.page-footer .header-information ul li:hover {
	background-color: #0f87ff;
}
.page-footer .header-information ul li a {
	color: #0f87ff;
}
.page-footer .header-information ul li:hover a {
	color: #ffffff;
}
.fb-widget-img {
	display: block;
	max-width: 400px;
	width: 100%;
	height: auto;
}

.uptodate{
	flex-basis: 100%;
	text-align: right;
}
.uptodate a{
	font-size: 8px !important;
	font-family: arial !important;
	font-weight: bold !important;
	letter-spacing: 1px !important;
	color: #ffffff !important;
	text-decoration: none !important;
}
.uptodate a:hover{
	text-decoration:none !important;
	color:#ffffff !important;
}

/* Google map block */
.google-map {
    width: 100%;
    height: 400px;
}
/* Google map block end */

/* Banner block */
.dreamo-banner {
	position: relative;
	width: 100%;
	max-width: 1920px;
	height: 560px;
	overflow: hidden;
	margin: auto;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#video-bg {
	min-width: 100%;
	min-height: 100%;
	transform: translateX(-50%) translateY(-50%);
	position: relative;
	top: 50%;
	left: 50%;
}
.dreamo-banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: rgba(15, 135, 255, 0.75);
	padding: 48px;
	border-radius: 8px;
	width: calc(100% - 40px);
	max-width: 500px;
	text-align: center;
	transform: translate(-50%, -50%);
}
.dreamo-banner-content h1 {
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 24px;
}
.dreamo-banner-content p {
	line-height: 1.5;
	font-size: 1.125rem;
	margin: 0 0 24px;
	color: #ffffff;
}
a.banner-button {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	transition: color 0.4s;
}
a.banner-button:hover {
	color: #000000;
}
.featured-image .wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
}
.featured-image-content-inner {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.f-image-title {
	font-family: "Jost", sans-serif;
	font-size: 1.875rem;
	font-weight: 600;
}
/* Banner block end */

/* Contact form 7 */
.wpcf7 p {
	margin: 0;
}
.wpcf7-not-valid {
	border: 2px solid #800020 !important;
}
.wpcf7-not-valid-tip{
	display: none !important;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
	border: 0;
	margin: 20px 0 0;
	padding: 0;
	float: left;
}
.wpcf7 input[type=text], .wpcf7 input[type=email] {
	padding: 10px;
	margin: 0 0 16px;
	width: calc(100% - 24px);
	border: 2px solid #0f87ff;
}
.wpcf7 textarea{
	width: calc(100% - 24px);
	padding: 20px 10px;
	margin: 0 0 16px;
	resize: none;
	border: 2px solid #0f87ff;
	font-family: "Open Sans", sans-serif;
}
.wpcf7 input[type=text]:focus, .wpcf7 input[type=email]:focus, .wpcf7 textarea:focus{
	border: 2px solid #0f87ff;
	outline: 0 !important;
}
.wpcf7-submit{
	font-family: "Montserrat", sans-serif;
    font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9rem;
    padding: 10px 20px;
	color: #ffffff;
    background-color: #0f87ff;
	border: 2px solid #0f87ff;
    cursor: pointer;
	transition: 0.4s;
}
.wpcf7-submit:hover{
    background-color: #ffffff;
	border: 2px solid #0f87ff;
	color: #0f87ff;
}
div.wpcf7-mail-sent-ok {
	border: none;
	float: left;
	width: 100%;
	padding: 0;
	margin: 30px 0 0;
}
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  float: left;
  width: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
    font-weight: bold;
}
.form-two-col {
    display: flex;
	flex-wrap: wrap;
    gap: 24px;
}
.form-two-col span {
    flex: 1;
}
/* Contact form 7 end */

/* Pager */
.pagination {
	display: flex;
	gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
a.page-numbers,
.page-numbers.current {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
    font-weight: bold;
	font-size: 0.9rem;
    padding: 10px 20px;
    border: 2px solid #0f87ff;
    text-decoration: none;
    color: #0f87ff;
}
.page-numbers.current {
	background-color: #0f87ff;
	color: #ffffff;
}
/* Pager end */

/* Narrow content block */
.narrow-content .with-padding {
	padding: 48px 0;
}
.narrow-content-inner {
	max-width: 800px;
}
.narrow-content-inner img {
	width: 100%;
	height: auto;
	margin: 24px 0;
}
.narrow-content ol li, .narrow-content ul li {
	margin: 0 0 24px;
}
.narrow-content ul {
    padding: 10px 0 10px 24px;
}
.narrow-content li::marker {
    color: #0f87ff;
}
/* Narrow content block end */

/* People block */
.people-block-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}
.people-wrapper {
    display: flex;
	align-items: center;
    gap: 24px;
}
.people-image img {
	width: 300px;
	height: auto;
	border-radius: 50%;
}
.people-content {
	max-width: 600px;
}
/* People block end */
/* Blog */
.blog-content {
	padding: 96px 0;
}
.blog-content .wrap {
  display: flex;
  flex-wrap: wrap;
	gap: 60px 30px;
	max-width: 1440px;
}
.blog-item {
  width: calc(33.33% - 20px);
	background-color: #fafafa;
}
.blog-item-image {
	height: 250px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fafafa;
}
.blog-item-image a {
	display: block;
	height: 100%;
	width: 100%;
}
.blog-item-content {
	padding: 16px;
}
.blog-item-content p {
	margin: 0 0 24px;
}
.blog-item-content a {
	color: #14161f;
	text-decoration: none;
	transition: 0.4s;
}
.blog-item-content a.button {
	display: inline-block;
	color: #ffffff;
}
.blog-item-content a:hover {
	color: #0f87ff;
}
.single-post-content {
	padding: 96px 0;
	color: #14161f;
	font-size: 1.2em;
	line-height: 1.5;
}
.single-post-content .wrap {
	max-width: 1200px;
}
.single-post-content img {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
}
.post-title {
	margin: 0 0 48px;
	text-align: center;
}
/* Blog end */
.footer-social-links img {
	height: 28px;
	width: auto;
}
ul.footer-social-links {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.footer-social-links li a {
	display: flex;
	align-items: center;
	gap: 6px;
    color: #ffffff;
    text-decoration: none;
}
ul.footer-social-links li a:hover {
	text-decoration: underline;
}

@media (max-width: 1000px) {
	.blog-item {
		width: calc(50% - 15px);
	}
	.people-image img {
		width: 250px;
	}
	.page-header-top {
		background-color: #ffffff;
		box-shadow: 0 14px 30px -6px rgba(0, 0, 0, 0.1);
	}
	.header-logo img {
		height: 50px;
	}
	.menu-wrap ul li a {
		padding: 10px 0 10px 20px;
		gap: 20px;
	}
	.menu-wrap ul li a:before {
		height: 8px;
		width: 8px;
	}
	.header-information ul li a {
		padding: 12px 0;
		text-align: center;
	}
	.page-footer .header-information ul li {
		flex: 1;
	}
	.menu-wrap ul li:hover,
	.menu-wrap ul li.current-menu-item,
	.menu-wrap ul li.current-menu-ancestor {
		background-color: transparent;
	}
	.menu-wrap ul li a:hover,
	.menu-wrap ul li.current-menu-item a,
	.menu-wrap ul li.current-menu-ancestor a {
		color: #ffffff;
	}
	.menu-wrap ul li:hover a:before,
	.menu-wrap ul li.current-menu-item a:before,
	.menu-wrap ul li.current-menu-ancestor a:before {
		background-color: #ffffff;
	}
	/* mobile burger */
	.mobile-burger {
		display: block;
	}
	.menu-icon {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 24px;
		cursor: pointer;
		position: relative;
	}
	.menu-icon span {
		display: block;
		height: 3px;
		background: #0f87ff;
		border-radius: 5px;
		transition: all 0.3s ease-in-out;
		position: absolute;
		left: 0;
		width: 100%;
	}
	.menu-icon span:nth-child(1) {
		top: 0;
	}
	.menu-icon span:nth-child(2) {
		top: 10px;
	}
	.menu-icon span:nth-child(3) {
		top: 20px;
	}
	.menu-icon.open span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}
	.menu-icon.open span:nth-child(2) {
		opacity: 0;
	}
	.menu-icon.open span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
	/* mobile burger end */

	.header-information {
		display: none;
	}
	.page-footer .header-information {
		display: block;
	}
	.footer-fb-col {
		text-align: left;
	}
	.page-header-top {
		position: relative;
		z-index: 99;
	}
    .page-header-bottom {
		display: none;
		align-items: center;
        position: fixed;
        top: 0;
        height: 100%;
		width: 100%;
        z-index: 9;
		overflow: auto;
    }
	.page-header-bottom.open {
		display: flex;
	}
	.page-header-bottom .wrap {
		padding: 100px 0 40px;
		height: auto;
	}
	.menu-wrap ul {
		flex-direction: column;
	}
	.menu-wrap ul li:last-child {
		margin-left: 0;
	}
	.google-map {
		height: 300px;
	}
	.dreamo-banner {
		height: 460px;
	}
	.dreamo-banner-content {
		height: calc(100% - 96px);
		width: calc(100% - 96px);
		max-width: 1000px;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform: none;
		display: flex;
        flex-direction: column;
        justify-content: center;
	}	
}

@media (max-width: 1000px) and (max-height: 600px) {
	.page-header-bottom.open {
		display: block;
	}
}

@media (max-width: 700px) {
	ul.footer-social-links {
		flex-direction: row;
	}
	.people-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	.narrow-content .with-padding {
		padding: 24px 0;
	}
	.block-title {
		margin: 0 0 24px;
	}
	a.prev.page-numbers,
	a.next.page-numbers {
		display: none;
	}
	.page-footer .wrap,
	.company-details {
		display: block;
		margin: 0 auto;
	}
	.footer-col {
		margin: 0 0 32px;
	}
}

@media (max-width: 500px) {
	.blog-item {
		width: 100%;
	}
	.form-two-col {
		gap: unset;
	}
	.form-two-col span {
		flex: auto;
	}
	.pagination {
		gap: 5px;
	}
	a.page-numbers, .page-numbers.current {
		padding: 5px 10px;
	}
	.dreamo-banner-content h1 {
		font-size: 1.7rem;
		margin: 0 0 16px;
	}
	.dreamo-banner-content p {
		font-size: 0.9rem;
	}
	.wrap {
		width: calc(100% - 32px);
	}
	.page-header-top .wrap {
		gap: 20px;
	}
	.header-logo img {
		height: 40px;
	}
	.page-footer .header-information ul {
        flex-wrap: wrap;
		gap: 8px
    }
	.page-footer .header-information ul li {
        flex: none;
        flex-basis: 100%;
    }
}
@media (max-width: 350px) {
	.header-information {
		display: none;
	}
}