h1, h2, h3, div, label, body, button, a {
  font-family: 'Open Sans', 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden!important;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  width: 100vw;
}

h1, h2, h3, label {
  margin: 0;
}

h1 {
  font-size: 48px;
  font-weight: normal;
}

h2 {
  font-size: 24px;
  line-height: 1;
}

p {
  font-size: 16px;
}

label {
  font-size: 18px;
}

/* ========================= colors =========================*/

.color-white {
  color: #fff;
}

.color-dark {
  color: #2c2b2e;
}

.color-grey {
  color: #999;
}

/* ========================= Button =========================*/

/* .btn {
  border-radius: 30px;
  border: none !important;
  cursor: pointer;
} */

.btn-lg {
  padding: 10px 50px;
}

a:hover {
  text-decoration: none!important;
}

/* animated buttons */

.button {
  position: relative;
  color: #FFF;
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 10px 50px;
  text-align: center;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  transition: color .3s;
  outline: none;
}

.button:after {
  content: "";
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.button:hover:after {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

/*End:  animated buttons */

.button.blue {
  background: #007bff;
  color: #fff;
}

.button.blue:after {
  background: #0360c3;
}

.button.white {
  background: #dddddd;
  color: #2c2b2e;
}

.button.white:after {
  background: #fff;
}

.button.green {
  background: #73cc1a;
  color: #fff;
}

.button.green:after {
  background: #60a917;
}

/* ={=================== Side Navigation ====================*/

.menu-header {
  background: none;
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 99999;
}

.menu-header.color {
  background: #3498db;
  transition: all 1s ease;
}

.mobile-nav-button {
  position: fixed;
  margin: 34px;
  right: 0;
  top: 0;
  z-index: 9999;
  width: 27px;
  height: 30px;
  cursor: pointer;
}

.mobile-nav-button .mobile-nav-button__line {
  width: 100%;
  height: 2px;
  background: #fff;
  position: relative;
  transition: 1s ease;
}

.mobile-nav-button .mobile-nav-button__line:nth-of-type(2) {
  margin: 0.5rem 0;
}

.mobile-nav-button .mobile-nav-button__line--1 {
  transform: rotate(45deg);
  top: 13px;
  position: absolute;
}

.mobile-nav-button .mobile-nav-button__line--2 {
  display: none;
}

.mobile-nav-button .mobile-nav-button__line--3 {
  transform: rotate(135deg);
  top: 13px;
  position: absolute;
}

.mobile-menu {
  display: block;
  max-width: 350px;
  width: 100%;
  right: -100%;
  height: 100%;
  background: #2c2b2e;
  color: #fff;
  position: fixed;
  z-index: 9998;
  transition: 0.6s ease;
  top: 0;
  opacity: 0;
}

.mobile-menu ul {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 36px;
}

.mobile-menu ul li {
  list-style: none;
}

.mobile-menu ul li a {
  width: 100%;
  max-width: 1200px;
  display: block;
  text-align: right;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  overflow: hidden;
  position: relative;
}

.mobile-menu ul li a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  z-index: -1;
  transition: 0.4s ease;
}

.mobile-menu ul li a:hover, .menu-social-media a:hover {
  color: #3498db !important;
  cursor: pointer;
}

.mobile-menu ul li a:hover:after {
  right: 0;
}

.mobile-menu img {
  position: absolute;
  width: 150px;
  display: block;
  left: 50%;
  top: 3rem;
  transform: translatex(-50%);
  padding: 0;
  text-align: center;
}

.mobile-menu--open {
  right: 0;
  opacity: 1;
}

.menu-social-media {
  border-top: 1px solid #666;
  padding-top: 30px;
  margin-top: 30px;
  justify-content: flex-end;
}

.menu-social-media a {
  margin-right: 20px;
  color: #888;
}

.menu-social-media a:last-of-type {
  margin-right: 0;
}

.header-logo {
  position: fixed;
  z-index: 4;
  top: 30px;
  left: 20px;
}

.header-logo-img {
  max-width: 100px;
}

.sidebar-ctn {
  padding: 20px 50px;
  z-index: 3;
  width: 100%;
}

.sidebar-ctn img {
  max-height: 45px;
}

.sidebar-right-ctn {
  right: 100px;
  position: fixed;
  top: 30px;
  z-index: 4;
}

.sidebar-right-ctn a {
  padding: 5px 20px;
  font-size: 14px;
}

/* ==================== Standard ====================*/

section {
  margin: 20% 0;
}

.line-height-1 {
  line-height: 1;
}

.first-btn-ctn {
  margin-right: 15px;
}

.img-cover {
  background-size: cover !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-position: 50% 50%;
}

.full-resolution {
  height: 100vh;
  width: 100%;
}

/* ========================= full screen video background  =========================*/

video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}

.video-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.video-overlay-content {
  position: relative;
}

/* ==================== Form ====================*/

label {
  font-size: 18px;
  font-weight: 100;
}

input {
  border-radius: 0!important;
}

.form-control {
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid #ddd;
  height: auto;
  padding: 0;
  margin-bottom: 40px;
}

.input-short {
  width: 200px;
}

.form-control:focus, textarea.form-control:focus {
  border-radius: 0;
  box-shadow: none;
  border-color: #3498db !important;
}

textarea.form-control {
  border: 1px solid #ddd !important;
  border-radius: 0!important;
  padding: 10px !important;
  margin-top: 10px;
  margin-bottom: 0;
  height: 150px;
}

/* ==================== Customise Container ====================*/

/* home */

.home-ctn {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 65%;
}

.home-header, .home-title {
  margin-bottom: 30px;
}

/* .home-title { margin-bottom: 30px; } */

.copy-right {
  font-size: 12px;
  color: #999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.copy-right a {
  color: #3498db;
}

/* contact */

.contact-ctn {
  background: #666 url(../img/contact-bg.jpg) no-repeat 50% 50%;
  height: 135vh;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 135vh;
  position: absolute;
}

.form-ctn {
  position: absolute;
  z-index: 3;
  top: 80px;
  left: 12%;
  padding: 50px;
  width: 55%;
  background: #fff;
  .form-control
}

/* footer */

footer {
  color: #fff;
  bottom: 0;
  width: 100%;
  font-size: 18px;
  background: -moz-linear-gradient(45deg, #3498db 0%, #34dbd1 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #3498db), color-stop(100%, #34dbd1));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(45deg, #3498db 0%, #34dbd1 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(45deg, #3498db 0%, #34dbd1 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(45deg, #3498db 0%, #34dbd1 100%);
  /* ie10+ */
  background: linear-gradient(45deg, #3498db 0%, #34dbd1 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34dbd1', endColorstr='#3498db', GradientType=1);
  /* ie6-9 */
}

.footer-copyright {
  font-size: 14px;
  margin-top: 60px;
}

.footer-ctn {
  justify-content: space-between;
  padding: 160px 0 50px;
}

.footer-ctn a {
  color: #fff;
}

.footer-ctn a:hover {
  color: #666;
}

.footer-right-ctn {
  font-size: 14px;
  text-align: right;
}

.footer-social-media {
  font-size: 12px;
  justify-content: flex-end;
}

.footer-social-media a {
  margin-right: 15px;
}

.footer-social-media a:last-child {
  margin-right: 0;
}

.footer-address {
  margin: 30px 0;
}

/*=======================================================================
                    Customize
=========================================================================*/

.cyan-background {
  background: #3498db !important;
}

.cyan-text {
  color: #3498db !important;
}

.light-grey-text {
  color: rgb(167, 167, 167);
}

.mt-10 {
  margin-top: 100px;
}

.sidebar-agent {
  right: 130px;
}

.nav-button-agent {
  right: 50px;
}

.nav-button-agent-text {
  right: 15px;
}

.button.cyan {
  background: #024c9c;
  color: #fff;
}

.button.cyan:after {
  background: #3498db;
}

.menu-header.to-top {
  top: 0px;
}

.menu-header.color-white {
  background: #FFF;
}

.home {
  background: rgb(243, 243, 243);
  height: 700px;
  /* max-height: 100%; */
}

.header-logo-agent {
  position: fixed;
  z-index: 4;
  top: 30px;
  left: 100px;
}

.responsive {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.max-width {
  max-width: 800px;
}

.margin-top, .margin-top-about {
  margin-top: -100px;
}

.button.black {
  background: rgb(49, 49, 49);
  color: #fff;
}

.button.black:after {
  background: black;
}

.white-hr {
  background-color: #fff;
}

.landlord-image1 {
  background: -moz-linear-gradient(320deg, #505050 0%, #252525 50%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, right bottom, left top, color-stop(0%, #505050), color-stop(50%, #252525));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(130deg, #505050 0%, #252525 50%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(320deg, #505050 0%, #252525 50%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(320deg, #505050 0%, #252525 50%);
  /* ie10+ */
  background: linear-gradient(320deg, #505050 0%, #252525 50%);
  /* w3c */
}

.landlord-image2 {
  background: -moz-linear-gradient(320deg, #9200af 0%, #430063 50%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, right bottom, left top, color-stop(0%, #9200af), color-stop(50%, #430063));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(130deg, #9200af 0%, #430063 50%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(320deg, #9200af 0%, #430063 50%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(320deg, #9200af 0%, #430063 50%);
  /* ie10+ */
  background: linear-gradient(320deg, #9200af 0%, #430063 50%);
  /* w3c */
}

.landlord-image3 {
  background: -moz-linear-gradient(320deg, #414dff 0%, #0c007a 50%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, right bottom, left top, color-stop(0%, #414dff), color-stop(50%, #0c007a));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(130deg, #414dff 0%, #0c007a 50%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(320deg, #414dff 0%, #0c007a 50%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(320deg, #414dff 0%, #0c007a 50%);
  /* ie10+ */
  background: linear-gradient(320deg, #414dff 0%, #0c007a 50%);
  /* w3c */
}

.about-home {
  background: rgb(68, 68, 68);
  height: auto !important;
}

.morelink {
  font-size: 36px;
  background: rgb(122, 0, 112);
  border-radius: 50%;
  color: white;
}

.wrapper {
  overflow: hidden;
}

#left-side {
  float: left;
  width: 50%;
}

#right-side {
  overflow: hidden;
}

/*=======================================================================
                    End of Customize
=========================================================================*/

/* ============================================================*/

/* ==================== Media Queries =========================*/

/* ============================================================*/

/* // Extra large devices (large desktops, 1500px and up) */

@media (min-width: 1500px) {
  .contact-overlay, .contact-ctn {
    height: 130vh;
  }
}

/* ipad pro, min desktop resolution */

@media (max-width: 1024px) {
  .contact-overlay, .contact-ctn {
    height: 65vh;
  }
}

/* // Medium devices (tablets, less than 992px) */

@media (max-width: 991.98px) {
  .contact-overlay, .contact-ctn {
    height: 85vh;
  }
  .form-ctn {
    width: 75%;
  }
}

/* // Small devices (landscape phones, less than 768px) */

@media (max-width: 767.98px) {
  .form-ctn {
    left: 5%;
    width: 90%;
  }
}

/* // Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {
  .menu-header {
    height: 65px;
  }
  .header-logo {
    top: 15px;
  }
  .mobile-nav-button {
    margin: 20px;
  }
  .sidebar-right-ctn {
    top: 18px;
    right: 70px;
  }
  .mobile-menu {
    max-width: 100%;
  }
  .mobile-menu ul {
    margin-right: 25px;
  }
  h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 20px;
  }
  .first-btn-ctn {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .home-ctn {
    left: 50%;
    width: 80%;
  }
  .home-main-btn {
    flex-direction: column;
  }
  .form-ctn {
    left: 0;
    top: 65px;
    width: 100%;
  }
  /* customise */
  .sidebar-agent {
    top: 18px;
    right: 100px;
  }
  .header-logo-agent {
    top: 15px;
    left: 20px !important;
  }
  .footer-padding {
    padding: 500px 0 50px;
  }
  #one {
    float: none;
    margin-right: 0;
    width: auto;
    border: 0;
    border-bottom: 2px solid #000;
  }
  .mt-10 {
    margin-top: 0px;
  }
  .margin-top-about {
    margin-top: 0px;
  }
  /* end of customise */
}

/* // Extra small devices (portrait phones, less than 576px) */

@media (max-width: 322px) {
  .footer-padding {
    padding: 560px 0 50px;
  }
}