/*
Theme Name: Lumen Global Theme
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/*****  Fonts  *****/


/*
font-family: 'Open Sans', sans-serif;
*/


/*****  Global Style  *****/

* {
  margin: 0;
  padding: 0;
  outline: none !important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #012735;
  letter-spacing: 0.010em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: normal;
}

h1,
.h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

h2,
.h2 {
  font-size: 36px;
  font-weight: 600;
  color: #012735;
  text-transform: uppercase;
}

h3,
.h3 {
  font-size: 38px;
  font-weight: 500;
  color: #f68c00;
}

h4,
.h4 {
  font-size: 24px;
  font-weight: 400;
  color: #012735;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

h6,
.h6 {
  font-size: 20px;
  font-weight: 600;
  color: #012735;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a,
i.icons,
button,
input[type="submit"],
.overlay {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a {
  color: #00a0e3;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

a:hover,
a:focus {
  color: #00a0e3;
  text-decoration: none;
}

a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: transform 0.8s, opacity 1s;
  transition: transform 1s, opacity 1.5s;
}

a:active:after {
  transform: scale(0, 0);
  opacity: .2;
  transition: 0s
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button[disabled],
html input[disabled] {
  opacity: 0.5;
}


/*****  Main CSS  *****/

.main {
  width: 100%;
  overflow: hidden;
}


/*****  Header  *****/

header.header {
  background-color: #012735;
  padding: 0;
}

.logo a {
  display: block;
}

.center_logo{
  overflow: hidden;
  margin-left: 180px;
}


.top-call a:nth-of-type(1) {
  color: #fff;
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 14px;
  float: left;
  margin: 0 20px 0 0;
}

.top-call a i {
  font-size: 36px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.top-call a p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.top-call a.btn-blue {
  margin: 0;
}


/*****  Main Menu  *****/

.sticky-wrapper {
  height: auto !important;
}

.main-menu {
  background-color: #fff;
  padding: 0;
  z-index: 99 !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.is-sticky .main-menu {
  background-color: #012735;
}

.navbar-toggler {
  width: 40px;
  height: 34px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  padding: 0;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #00a0e3;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

.navbar-toggler span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(2) {
  top: 0px;
}

.navbar-toggler span:nth-child(3),
.navbar-toggler span:nth-child(4) {
  top: 14px;
}

.navbar-toggler span:nth-child(5),
.navbar-toggler span:nth-child(6) {
  top: 28px;
}

.navbar-toggler.open span:nth-child(1),
.navbar-toggler.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open span:nth-child(2),
.navbar-toggler.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-toggler.open span:nth-child(1) {
  left: 4px;
  top: 8px;
}

.navbar-toggler.open span:nth-child(2) {
  left: calc(50% - 4px);
  top: 8px;
}

.navbar-toggler.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.navbar-toggler.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.navbar-toggler.open span:nth-child(5) {
  left: 5px;
  bottom: 8px;
  top: inherit;
}

.navbar-toggler.open span:nth-child(6) {
  left: calc(50% - 4px);
  top: inherit;
  bottom: 8px;
}

.main-menu .navbar-nav > li > a {
  color: #575656;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 1rem .95rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.is-sticky .main-menu .navbar-nav > li > a {
  padding: .8rem .9rem;
  color: #fff;
}

.main-menu .navbar-nav > li.active > a,
.main-menu .navbar-nav > li.current-menu-item > a,
.main-menu .navbar-nav > li:hover > a,
.main-menu .navbar-nav > li > a:hover {
  background-color: #009fe2;
  color: #fff;
}

.btn-blue {
  background-color: #00a0e3;
  border: 1px solid #00a0e3;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  margin: 10px 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.btn-blue:hover,
.btn-blue:focus {
  background-color: #333;
  border-color: #333;
  color: #fff;
}


/*****  Banner  *****/

.home-banner {
  position: relative;
  border-top: 2px solid #009fe2;
}

.home-carousel .container {
  height: 100%;
  position: relative;
}

.home-carousel .carousel-item figure {
  width: 100%;
  margin: 0;
}
.home-carousel .carousel-item figure img {
  width: 100%;
}


.home-carousel .carousel-caption {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: right;
  padding-bottom: 0;
}

/*.carousel-caption-inner {
  width: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

.carousel-caption-inner {
    position: absolute;
    bottom: 0;
    background: #193943d6;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 11px;
    text-align: center;
}

.home-carousel h1,
.home-carousel .h1 {
  font-size: 25px;
  padding: 25px 0;
  font-weight: 500;
  max-width: 966px;
  margin: auto;
}

.home-banner .carousel-indicators {
  bottom: 20px;
  z-index: 4;
  margin: 0;
}

.home-banner .carousel-indicators li {
  background-color: #fff;
}

.home-banner .carousel-indicators .active {
  background-color: #00a0e3;
}

.home-carousel .banner-logo {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.home-carousel h1,
.home-carousel .h1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}


/*****  Who We Are Area  *****/

.who-we-are-area {
  padding: 50px 0;
  text-align: center;
}

.who-we-are-area-inner {
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are-video {
  background-color: #111;
  margin: 30px 0;
}

.who-we-are-area p {
  font-size: 22px;
  color: #333;
  line-height: 2;
  font-weight: 600;
}


/*****  Gallery Area  *****/

.gallery-area {
  background-color: #f1f1f1;
  padding: 50px 0 60px;
  text-align: center;
}

.uk-navbar-nav {
  list-style: none;
  margin: 30px 0 15px;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.uk-navbar-nav li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.uk-navbar-nav li a {
  background-color: transparent;
  display: block;
  padding: 3px 14px;
  border-radius: 2px;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}

.uk-navbar-nav li.uk-active a {
  background-color: #012735;
  color: #fff;
}

.uk-grid-content {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden !important;
}

.uk-grid-content .uk-grid-item {
  width: 25%;
}

.uk-grid-content .uk-grid-item img {
  width: 100%;
  border: 2px solid transparent;
}


/*****  Why Choose Us Area  *****/

.why-choose-us-area {
  padding: 50px 0;
}

.why-choose-us-area h2,
.why-choose-us-area .h2 {
  margin-bottom: 50px;
}

.count-ul {
  list-style: none;
  margin: 20px 0;
}

.count-ul li {
  padding-left: 50px;
  position: relative;
}

.count-box {
  font-size: 35px;
  font-weight: 600;
  line-height: 35px;
  position: absolute;
  left: 0;
  top: 0;
}

/*.count-ul li p {
  font-size: 14px;
  color: #333;
  line-height: 24px;
  margin-bottom: 30px;
}*/

.count-ul li p {
    font-size: 14px;
    color: #898989;
    line-height: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}
.count-ul li:first-child p {
    margin-bottom: 25px;
}
.why-choose-us-area figure {
  margin: 60px 0 0;
}

.why-choose-us-area figure img {
  width: 100%;
}


/*****  Contact Us Area  *****/

.contact-us-area {
  background-color: #012735;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  text-align: center;
}

.contact-us-area-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-us-area p {
  font-size: 28px;
  line-height: 1.8;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #333;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px;
  margin: 10px 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-white:hover,
.btn-white:focus {
  background-color: #00a0e3;
  border-color: #00a0e3;
  color: #fff;
}


/*****  What Client Say Area  *****/

.what-client-say-area {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.what-client-say-area h2,
.what-client-say-area .h2 {
  margin-bottom: 40px;
}

.client-say-box {
  text-align: left;
}

.client-say-img figure {
  position: relative;
}


/*
.client-say-img figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 15px;
  border: 1px solid #fff;
}
*/

.client-say-img figure img {
  width: 100%;
}

.social-share {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.social-share li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.social-share li a {
  display: block;
  color: #012735;
  padding: 0 3px;
}

.social-share li a:hover,
.social-share li a:focus {
  display: block;
  color: #00a0e3;
}

.qoute-sign {
  font-size: 30px;
  margin-top: -10px;
}

.client-say-box-text h6,
.client-say-box-text .h6 {
  text-transform: uppercase;
}

.client-say-subheading {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin: 10px 0;
}

.client-say-box-text p {
  font-size: 12px;
  line-height: 20px;
  color: #232323;
  text-align: justify;
}


/*****  Our Partners Start *****/

.our-partner {
  background: #f1f1f1;
  padding: 50px 0;
  text-align: center;
}

.our-partner p {
  font-size: 21px;
  color: #6f6f6f;
  font-weight: 600;
  line-height: 2;
  margin: 20px 0 0 0;
  letter-spacing: 0.3px;
}
.partners-area-inner {
  max-width: 940px;
  margin: 0 auto;
}

/*****  Our Partners End *****/

/*****  where-we-operate Start*****/

.where-we-title p {
    font-size: 17px;
    font-weight: 700;
    border-left: 5px solid #009fe1;
    padding-left: 20px;
    margin: 30px 0 0 0;
}

/*****  where-we-operate End*****/

.banner-bottom p {
  font-size: 20px;
  color: #232323;
  text-align: center !important;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto 70px;
}

.heading_1 {
    margin-bottom: 30px;
    line-height: 34px;
    font-weight: 700;
    color: #232323;
    font-size: 18px;
}

.heading_2{
  background-image: linear-gradient(-90deg, #ffffff 0%, #009fe1 80%);
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.about-small-paragraph {
  max-width: 740px;
}
.right_about_content {
  width: 75%;
  float: right;
}

.left_border_area p {
  font-weight: 700;
  font-size: 18px;
  border-left: 5px solid #009fe1;
  padding-left: 20px;
}

.common__list_style ol, .common__list_style ul {
  font-size: 17px;
  color: #232323;
  font-weight: 600;
  margin: 0 0 0 46px !important;
}

.content2 {
    margin-bottom: 20px;
}
.our-process-content ul {
    font-size: 17px;
    color: #232323;
    font-weight: 600;
    margin: 0 0 0 46px !important;
}

.our-process-content h4, .our-process-content h3 {
    font-weight: 700;
    font-size: 18px;
    border-left: 5px solid #009fe1;
    padding-left: 20px;
    color: #232323;
    margin: 0 0 30px 0;
}

.our-process-content h3 {
  margin: 0 0 20px 0;
}

.box-title h6 {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #282828;
    font-weight: 700 !important;
    margin: 0 0 20px !important;
    text-transform: uppercase;
}

.box-wrapper {
    padding: 0 20px;
}

.box-content p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 30px !important;
    text-align: center !important;
}

.main_title {
    margin: 70px 0 0;
}

.client_text {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 45px;
    color: #232323;
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.clients_with .col-sm-4::after {
    content: "";
    border: 1px solid #e4f5fb;
    width: 2px;
    height: 70%;
    position: absolute;
    z-index: 2;
    background: #e4f5fb;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.clients_with .col-sm-4:last-child::after {
   display: none;
}


/*****  Footer  *****/

footer.footer {
  background-color: #012735;
}

.widgets {
  padding: 35px 0 60px;
  overflow: hidden;
}

.footer-logo {
  margin-bottom: 40px;
}

.widgets .es_caption {
  padding: 0;
}

.widgets p {
  color: #fff;
  line-height: 24px;
}

.widgets h5,
.widgets .h5 {
  margin: 32px 0 40px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.widgets h5:after,
.widgets .h5:after {
  content: "";
  width: 50px;
  height: 5px;
  background-color: #009ee0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.widgets .col-md-6:first-child .widget-box {
  max-width: 360px;
}

.newslater-box {
  margin-top: 30px;
}

.newslater-box .form-control {
  height: 40px;
  border-radius: 0;
  border-color: #fff;
}

.newslater-box .btn-blue {
  border-radius: 0;
  margin: 0;
  height: 40px;
  font-size: 22px;
  padding: 0 20px;
  width: auto;
}

div.es_button {
  display: none;
}

.es_msg {
  padding: 0;
}

.es_msg .invalid,
.es_msg .success {
  background-color: #f8d7da;
  display: block;
  padding: 5px 8px;
  border-radius: 1px;
  font-size: 14px;
  border: 1px solid #f5c6cb;
  color: #721c24;
  font-weight: 600;
}

.es_msg .success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.widgets address p {
  position: relative;
  margin-bottom: 20px;
}

.inner-address {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-bottom: 40px;
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: row;
}

.footer .widgets {
    padding: 10px 0 10px;
    overflow: hidden;
}

.second-address {
    margin: 30px 0 0 0;
}
.widget-box {
    height: 100%;
}
.second-address p {
    border: 2px solid #009ddf;
    padding: 10px 20px 10px 57px;
    border-radius: 50px;
    margin-right: 14px;
}
.widgets address p.emailtag {
    display: inline-block;
    border-color: #fff;
}
.widgets address .footer-name {
    font-size: 27px;
    font-weight: 600;
}

.widgets address p img {
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 20px;
}

.second-address a {
    color: #fff;
}
.footer-inner {
  background-color: #000;
  padding: 12px 0;
  position: relative;
}

.copyright {
  color: #fff;
  font-size: 12px;
  line-height: 24px;
}

.footer-inner ul {
  list-style: none;
  margin: 0;
}

.footer-inner ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
}

.footer-inner ul li:last-child {
  margin-right: 0;
}

.footer-inner ul li a {
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 24px;
}

.footer-inner ul li a:hover,
.footer-inner ul li a:focus {
  color: #00a0e3;
}


/*****  Inner Pages  *****/

.innerpage-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 250px;
  border-top: 2px solid #009fe2;
  text-align: center;
}

.innerpage-banner:after {
  content: "";
  position: absolute;
  background-color: rgba(1, 29, 44, 0.85);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.innerpage-banner h2,
.innerpage-banner .h2 {
  color: #fff;
  position: absolute;
  width: 100%;
  padding: 0 0 15px;
  left: 0;
  top: 50%;
  margin: 0;
  z-index: 5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.innerpage-banner h2:after,
.innerpage-banner .h2:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.innerpage-area {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.innerpage-area p {
  line-height: 2;
  text-align: justify;
  color: #232323;
}

.heading1 {
  position: relative;
  vertical-align: top;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 15px;
}

.heading1 small {
  font-size: 30px;
  color: #00a0e3;
  font-weight: 600;
}

.founder-page h4,
.founder-page .h4,
.about-page h4,
.about-page .h4 {
  color: #00a0e3;
}

.innerpage-area ol {
  margin: 0 0 0 22px;
}

.innerpage-area ul,
ul.disc-ul,
ul.decimal-ul,
ul.circle-ul {
  list-style: disc;
  margin: 0 0 0 22px;
}

ul.decimal-ul {
  list-style: decimal;
}

ul.circle-ul,
.innerpage-area ul ul {
  list-style: circle;
}

.innerpage-area ol li,
.innerpage-area ul li,
ul.disc-ul li,
ul.decimal-ul li,
ul.circle-ul li {
  line-height: 2;
}

ul + h4,
ul + .h4 {
  margin-top: 50px;
}

.our-process-page h6,
.our-process-page .h6 {
  color: #012735;
  margin: 20px 0;
  font-weight: 400;
}

.property-types-box h5,
.property-types-box .h5 {
  color: #012735;
}

.property-types-box {
  margin: 15px 0;
}

.case-studies-box {
  margin-bottom: 50px;
}

.case-studies-box figure {
  margin-bottom: 40px;
  box-shadow: 10px 10px 8px 2px #ccc;
}

.case-studies-box figure img {
  width: 100%;
}

.case-studies-box h5,
.case-studies-box .h5 {
  color: #012735;
  position: relative;
  padding-bottom: 10px;
}

.case-studies-box h5:after,
.case-studies-box .h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background-color: #012735;
}

.video-boxs {
  text-align: center;
}

.video-boxs h5 {
  color: #012735;
  margin: 10px 0 30px 0;
}

.video-boxs .embed-responsive {
  position: relative;
}

.video-boxs .embed-responsive video {
  background-color: #111;
}

.video-boxs .video-pop-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.about-page-boxs .about-page:nth-of-type(odd) {
  background-color: #f8f7f7;
}

.about-img.float-left,
.about-img.float-right {
  border-radius: 0 15px 0 15px;
  margin: 0 30px 15px 0;
}

.about-img.float-right {
  margin: 0 0 15px 30px;
}

.not-found-img {
  padding: 50px 0;
}

.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}

.alignright {
  float: right;
  margin: 0 0 30px 30px;
}


/**********  Responsive  **********/

@media (max-width: 1300.98px) {
  h1,
  .h1 {
    font-size: 45px;
  }
  .home-carousel .banner-logo img {
    max-height: 170px;
  }
}

@media (max-width: 1199.98px) {
  body {
    font-size: 15px;
  }
  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 34px;
  }
  h3,
  .h3 {
    font-size: 32px;
  }
  h4,
  .h4 {
    font-size: 22px;
  }
  h5,
  .h5 {
    font-size: 20px;
  }
  h6,
  .h6 {
    font-size: 18px;
  }
  /*****  Main Menu  *****/
  .main-menu .container {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .main-menu .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #fff;
    left: 15px;
    right: 15px;
    box-shadow: 0 4px 8px 0px #777;
  }
  .main-menu .navbar-collapse .navbar-nav {
    width: 100%;
  }
  .main-menu .navbar-nav > li > a {
    padding: 10px 15px;
    text-align: left;
  }
  .is-sticky .main-menu .navbar-nav > li > a {
    padding: 10px 15px;
    color: #012735;
  }
  .main-menu .navbar-nav > li.active > a,
  .main-menu .navbar-nav > li.current-menu-item > a,
  .main-menu .navbar-nav > li:hover > a,
  .main-menu .navbar-nav > li > a:hover {
    color: #fff;
  }
  /*****  Banner  *****/
  .home-carousel .banner-logo img {
    max-height: 140px;
  }
  .home-carousel h1,
  .home-carousel .h1 {
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 0;
  }
  /*****  Who We Are Area  *****/
  .who-we-are-area p {
    font-size: 20px;
  }
  /*****  Gallery Area  *****/
  .uk-navbar-nav li a {
    font-size: 17px;
  }
  /*****  Inner Pages  *****/
  .heading1 small {
    font-size: 28px;
  }
}

@media (max-width: 1024.98px) {
  .box-title h6 {
      font-size: 20px;
  }
  .client_text {
    font-size: 25px;
  }
  .right_about_content {
    width: 70%;
  }
  .our-partner p {
    font-size: 17px;
  }

  .header .d-flex.align-items-center {
    justify-content: space-between;
  }
  .header .logo {
    margin-left: 60px;
  }
  .center_logo {
    margin-left: 0px;
  }


}


@media (max-width: 991.98px) {
  body {
    font-size: 14px;
  }
  h1,
  .h1 {
    font-size: 35px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 30px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 17px;
  }
  /*****  Main Menu  *****/
  .btn-blue {
    font-size: 15px;
    padding: 10px 20px;
  }
  /*****  Banner  *****/
  .home-carousel .banner-logo img {
    max-height: 100px;
  }
  /*****  Who We Are Area  *****/
  .who-we-are-area {
    padding: 30px 0;
  }
  .who-we-are-video {
    margin: 20px 0;
  }
  .who-we-are-area p {
    font-size: 18px;
  }
  /*****  Gallery Area  *****/
  .gallery-area {
    padding: 30px 0;
  }
  .uk-navbar-nav li {
    margin: 2px;
  }
  .uk-navbar-nav li a {
    font-size: 16px;
    padding: 4px 12px;
  }
  .uk-grid-content .uk-grid-item {
    width: 33.3333%;
  }
  /*****  Why Choose Us Area  *****/
  .why-choose-us-area h2,
  .why-choose-us-area .h2 {
    margin-bottom: 20px;
  }
  .count-ul li {
    padding-left: 50px;
  }
  .count-box {
    font-size: 24px;
    line-height: 26px;
  }
  .count-ul li p {
    margin-bottom: 20px;
    line-height: 22px;
  }
  /*****  Contact Us Area  *****/
  .contact-us-area {
    padding: 30px 0;
  }
  .contact-us-area p {
    font-size: 24px;
  }
  /*****  What Client Say Area  *****/
  .what-client-say-area {
    padding: 30px 0;
  }
  .what-client-say-area h2,
  .what-client-say-area .h2 {
    margin-bottom: 10px;
  }
  .client-say-box {
    margin: 15px 0;
  }
  /*****  Footer  *****/
  .widgets {
    padding: 30px 0 40px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .widgets h5,
  .widgets .h5 {
    padding-bottom: 12px;
    margin: 30px 0;
  }
  .widgets h5:after,
  .widgets .h5:after {
    height: 2px;
  }
  /*****  Inner Pages  *****/
  .innerpage-area {
    padding: 30px 0;
  }
  .innerpage-area p {
    line-height: 1.8;
  }
  .heading1 small {
    font-size: 26px;
  }

  .inner-address {
    display: block;
  }
  .widgets address p.emailtag {
    display: block;
  }
  .right_about_content {
      width: 60%;
  }
  .client_text {
    font-size: 20px;
    line-height: 30px;
  }
  .box-title h6 {
    font-size: 20px;
    line-height: 25px;
  }
  .where-we-title p {
    font-size: 14px;
  }
  .banner-bottom p {
    font-size: 16px;
    margin: 0 auto 30px;
  }
  .common__list_style ol, .common__list_style ul {
    font-size: 15px;
  }
  .left_border_area p {
    font-size: 15px;
  }
  .widgets address .footer-name {
    font-size: 23px;
  }
  .our-process-content ul {
    font-size: 15px;
  }
  .our-process-content h4, .our-process-content h3 {
    font-size: 16px;
  }



}

@media (max-width: 767.98px) {
  body {
    font-size: 13px;
  }
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 26px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 17px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
  /*****  Header  *****/
  .logo a img {}
  .top-call a {
    padding-left: 36px;
  }
  .top-call a i {
    font-size: 32px;
  }
  .top-call a p {
    font-size: 16px;
  }
  /*****  Main Menu  *****/
  .btn-blue {
    font-size: 14px;
  }
  /*****  Who We Are Area  *****/
  .who-we-are-area p {
    font-size: 16px;
  }
  /*****  Gallery Area  *****/
  .uk-navbar-nav {
    margin: 10px 0;
  }
  .uk-navbar-nav li a {
    font-size: 15px;
    padding: 4px 10px;
  }
  .uk-grid-content .uk-grid-item {
    width: 50%;
  }
  /*****  Why Choose Us Area  *****/
  .why-choose-us-area figure {
    margin-top: 10px;
  }
  /*****  Contact Us Area  *****/
  .contact-us-area p {
    font-size: 20px;
  }
  .btn-white {
    font-size: 14px;
    padding: 10px 20px;
  }
  /*****  What Client Say Area  *****/
  .what-client-say-area h2,
  .what-client-say-area .h2 {
    margin-bottom: 0;
  }
  .qoute-sign {
    font-size: 20px;
    margin-top: -5px;
  }
  /*****  Footer  *****/
  .widgets p {
    margin-bottom: 15px;
  }
  .widgets .col-md-6:first-child .widget-box {
    max-width: 100%;
  }
  .widgets address p {
    margin-bottom: 12px;
  }
  .widgets address p i {
    font-size: 18px;
    top: 4px;
  }
  /*****  Inner Pages  *****/
  .innerpage-banner {
    height: 200px;
  }
  .heading1 small {
    font-size: 22px;
  }
  .property-types-box {
    margin: 0 0 30px;
  }
  .alignleft,
  .alignright {
    width: 100%;
    float: none;
    margin: 0 0 30px;
    height: auto;
  }
  .right_about_content {
      width: 100%;
  }
  .clients_with .col-sm-4::after {
    display: none;
  }


}

@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 26px;
  }
  h2,
  .h2 {
    font-size: 24px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
  h4,
  .h4 {
    font-size: 17px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  h6,
  .h6 {
    font-size: 15px;
  }
  /*****  Who We Are Area  *****/
  .who-we-are-area p {
    font-size: 14px;
  }
  /*****  Gallery Area  *****/
  .uk-navbar-nav li a {
    font-size: 14px;
  }
  /*****  Why Choose Us Area  *****/
  .count-ul li p {
    margin-bottom: 15px;
  }
  /*****  Contact Us Area  *****/
  .contact-us-area p {
    font-size: 18px;
  }
  /*****  Footer  *****/
  .widgets h5,
  .widgets .h5 {
    margin: 30px 0 20px;
  }
  /*****  Inner Pages  *****/
  .about-img.float-left,
  .about-img.float-right {
    margin: 0 0 15px;
    width: 100%;
  }
}

@media (max-width: 1199.98px) and (max-height: 430px) {
  .main-menu .navbar-collapse .navbar-nav {
    overflow-y: auto;
    max-height: 250px;
  }
}