/*------------- 
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]
    
    [ Text and Background Color ]
        Main color 1:       #1c93e5     
        Main color 2:       #009688      
        Main color 3:       #9c27b0
        Main color 4:       #ff4081      
        Background 1:       #FFFFFF            
        Background 2:       #F6F6F6           
        Shadow color:       #000000;            

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:  
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/*
================
 VARIABLES
================
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shadow-1 {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

@font-face {
  font-family: "Gilroy-Regular.otf";
  src: url("../fonts/Gilroy-Regular.otf");
}

@font-face {
  font-family: "Gilroy-Medium.otf";
  src: url("../fonts/Gilroy-Medium.otf");
}

@font-face {
  font-family: "Gilroy-Bold.otf";
  src: url("../fonts/Gilroy-Bold.otf");
}

@font-face {
  font-family: "Gilroy-SemiBold.otf";
  src: url("../fonts/Gilroy-SemiBold.otf");
}

/**
 * -------------------
 *  Defult CSS 
 * -------------------
 */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Gilroy-Regular.otf";
  font-size: 14px;
  font-style: none;
  line-height: 24px;
  font-weight: 500;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  color: #000000;
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy-Bold.otf";
}

p {
  opacity: 0.9;
}

.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.nav li a:hover {
  background-color: transparent;
}

.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}

a {
  text-decoration: none !important;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #000000;
  opacity: 0.9;
}

a:hover {
  background-color: transparent;
}

a:focus {
  background-color: transparent;
  outline: 0 !important;
}

.center {
  float: none;
  margin: 0 auto;
  text-align: center;
}

/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden;
}

.relative {
  position: relative;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}

.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/**
 * --------------------------------------
 *  Video Section Background Defult Style
 * --------------------------------------
 */
.section-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  z-index: -1;
}

.section-video .bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}

.body-video-bg > .section-video {
  position: fixed;
  top: 0;
  left: 0;
}

.section-title {
  text-align: center;
}

.section-title h3 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 60px;
}

/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: block;
  margin: 0;
}

.section-header {
  margin-bottom: 100px;
  text-align: center;
}

.section-header .sub-heading {
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.section-header.text-left,
.section-header.text-left * {
  text-align: left;
}

.section-header.text-right,
.section-header.text-right * {
  text-align: right;
}

.section-header-separator {
  position: relative;
  width: 145px;
  margin: 5px auto;
  display: inline-block;
}

.section-header-separator .icon {
  font-size: 48px;
  text-align: center !important;
}

.section-header-separator::before, .section-header-separator::after {
  content: '';
  position: absolute;
  width: 57px;
  height: 2px;
  top: 25px;
}

.section-header-separator::before {
  left: 0;
}

.section-header-separator::after {
  right: 0;
}

.v-middle {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.mini-separator {
  padding: 20px 0;
}

.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/**
 * ---------------------
 *   Defult Button Style
 * ---------------------
 */
.btn {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  outline: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 29px 31px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 29px 31px 0 rgba(0, 0, 0, 0.1);
  background-color: #caaa4d;
  padding: 25px 40px;
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  line-height: 0.63;
  outline: 0;
}

.btn:hover, .btn:focus {
  outline: 0;
}

.btn .icon {
  position: relative;
  top: 2px;
}

.btn .icon img {
  position: relative;
  top: -3px;
  width: 14px;
}

.btn.btn-fill {
  background-color: #caaa4d;
  color: #ffffff;
  border: none;
  opacity: 1;
  outline: 0;
  border-radius: 4px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border: 1px solid transparent;
}

.btn.btn-fill:focus {
  background-color: #caaa4d;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.btn.btn-fill:hover {
  background: #ffffff;
  color: #000;
  border: 1px solid #caaa4d;
}

.btn.left-icon .icon {
  margin-right: 15px;
}

.btn.right-icon .icon {
  margin-left: 15px;
}

.btn.btn-stroke {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.btn-stroke:hover {
  background-color: white;
}

.btn.white-btn-border {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.white-btn-border:hover {
  background-color: #ffffff;
  color: #221645;
}

.btn.btn-round {
  padding: 15px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 24px;
  text-align: center;
}

.btn.btn-round .icon {
  top: 7px;
}

.btn.apple, .btn.androad {
  border-radius: 3px !important;
  padding: 9px 28px;
  height: 82px;
}

.btn.apple img, .btn.androad img {
  width: 35px;
  height: 100%;
  float: left;
}

.btn.apple .icon, .btn.androad .icon {
  font-size: 60px;
  float: left;
}

.btn.apple span, .btn.androad span {
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn.apple .group, .btn.androad .group {
  float: right;
}

.btn.apple .big,
.btn.apple .small, .btn.androad .big,
.btn.androad .small {
  text-align: left;
  margin-left: 7px;
  line-height: 30px;
}

.btn.apple .big, .btn.androad .big {
  font-size: 24px;
  font-weight: 400;
}

.btn.apple .small, .btn.androad .small {
  font-size: 16px;
}

.no-height {
  height: inherit !important;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}

.btn-text-link {
  padding: 50px 0 0 0;
  text-align: center;
}

.btn-text-link a {
  margin-left: 10px;
}

/** 
 * -----------------
 * Social Icon Style
 * -----------------
 */
.social-icon {
  display: inline-block;
}

.social-icon li {
  list-style: none;
  float: left;
  margin-bottom: 0px;
  margin-right: 8px;
}

.social-icon li a {
  text-align: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 50%;
}

.social-icon li:last-child a {
  margin-right: 0px;
}

/**
 * -----------------------------------
 * Subscription and contact  "MESSAGE"
 * -----------------------------------
 */
.subscription-success,
.subscription-failed,
.email-success,
.email-failed,
.email-loading {
  font-size: 15px;
  display: none;
  text-align: center !important;
  padding: 10px !important;
}

.email-loading {
  color: #52B8FF;
}

.email-loading img {
  width: 15px;
  position: relative;
  top: -2px;
}

.subscription-failed,
.email-failed {
  color: #FF5252 !important;
}

.subscription-failed .icon,
.email-failed .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}

.subscription-success,
.email-success {
  color: #56CC35;
}

.subscription-failed .icon,
.email-failed .icon,
.subscription-success .icon,
.email-success .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}

/**
 * ------------------
 * list
 * ------------------
 */
ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

/**
 * =================
 * CONTAINER HALF CONTENT
 * =================
 */
.content-half {
  position: relative;
}

.container-half-left {
  left: 0;
  background-position: center right;
}

.container-half-right {
  right: 0;
  background-position: center left;
}

.vertical-middle-content {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/**
 * ---------------------------------
 *  Section Background Size Property
 * ---------------------------------
 */
.bg-cover {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat;
}

.dark-bg {
  background-color: #202026;
}

.image-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mini-section-separator {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-separator {
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-section-separator {
  padding-top: 100px;
  padding-bottom: 200px;
}

.bg-black {
  background-color: #000000;
}

.form-control {
  background-color: transparent;
  border-color: transparent;
}

.form-control:focus {
  background-color: transparent;
}

.main-color {
  color: #37C2CC;
}

.p-200 {
  padding: 0 200px;
}

.img-overlay {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.image-bg {
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.home-2-img {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-one {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-two {
  background-image: url(../images/extra-feature-bg.jpg);
}

.map-image {
  background-image: url(../images/map-color-overlay.png);
}

.mt-30 {
  margin-top: 30px;
}

button {
  outline: 0;
}

button:hover {
  outline: 0;
}

button:focus {
  outline: 0;
}

.btn {
  outline: 0;
}

.btn:hover {
  outline: 0;
}

.btn:focus {
  outline: 0;
}

.round-image {
  border-radius: 50%;
}

.header-bg {
  background-color: #FFEFE9;
}

.purple-bg {
  background-color: #643BDF;
}

.blue-bg {
  background-color: #007C88;
}

.yellow-color {
  color: #FFD032;
}

.main-color {
  color: #37C2CC;
}

.purple-color {
  color: #643BDF;
}

.blue-color {
  color: #007C88;
}

.bg-3 {
  color: #FAF9F7;
}

.bg-4 {
  color: #FAF9F7;
}

.white-bg {
  background-color: #ffffff;
}

p {
  color: #585D6C;
}

.contact-shadow {
  -webkit-box-shadow: 2px 28px 54px 0px rgba(85, 85, 93, 0.03);
  box-shadow: 2px 28px 54px 0px rgba(85, 85, 93, 0.03);
}

.body-2 .btn.btn-stroke {
  color: #ffffff;
}

.color-1 {
  color: #37C2CC;
}

.color-2 {
  color: #F35D22;
}

.color-3 {
  color: #FEC468;
}

.color-4 {
  color: #1785C3;
}

.color-5 {
  color: #53CB94;
}

.color-6 {
  color: #761DE2;
}

.overlay-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

/** 
 * -----------------
 * General CSS
 * -----------------
 */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy-Bold.otf";
}

html {
  scroll-behavior: smooth;
}

.zb-section-title {
  padding-bottom: 60px;
  padding-top: 100px;
}

.zb-section-title h2 {
  font-size: 42px;
  line-height: 48px;
  font-weight: normal;
}

.section {
  overflow: hidden;
}

.fixed-top {
  z-index: 1030 !important;
}

.container {
  max-width: 1260px;
}

/*
    ==============
       Navigation
    ============== 
*/
.mh-nav {
  width: 100%;
  padding: 12px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0 50px 85px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 50px 85px 0 rgba(0, 0, 0, 0.2);
  padding-right: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mh-nav.scrollUp {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.mobile-v {
  display: none;
}

.navbar-brand {
  padding-top: 0px;
}

.mh-header {
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: transparent;
  margin-top: 15px;
}

.mh-header.nav-strict {
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: #2d2d2d;
  margin-top: 0px;
}

.mh-header.nav-strict .mh-nav {
  background: #2d2d2d;
  padding: 4px 0px;
  padding-right: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
}

.mh-header.nav-strict .navbar-nav li a {
  color: #ffffff;
}

.mh-header.nav-strict .navbar-nav li a:hover {
  opacity: 1;
  color: #ffffff;
}

.mh-header .navbar-nav li {
  padding: 6px 15px;
}

.mh-header .navbar-nav li a {
  font-family: "Gilroy-Medium.otf";
  font-size: 14px;
  opacity: 0.8;
  cursor: pointer;
  padding: 15px 0px;
  font-weight: 500;
  line-height: 0.71;
  color: #000000;
}

.mh-header .navbar-nav li a.nav-link {
  padding-left: 0;
  padding-right: 0;
}

.mh-header .navbar-nav li a.nav-link.btn {
  padding: 6px 20px;
  opacity: 1;
}

.mh-header .navbar-nav li a.nav-link.btn:hover {
  color: #182D38;
}

.mh-header .navbar-nav li a:hover {
  color: #182D38;
  opacity: 1;
}

.call-nav a {
  padding: 11px 0px !important;
}

.call-nav a i {
  color: #caaa4d;
  font-size: 18px;
  margin-right: 6px;
}

.cav-btn a {
  border-radius: 5px !important;
  -webkit-box-shadow: 0 8px 22px 0 rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0 8px 22px 0 rgba(0, 0, 0, 0.25) !important;
  background-color: #caaa4d !important;
  color: #ffffff !important;
  opacity: 1 !important;
  border: 1px solid transparent !important;
  padding: 15px 25px !important;
}

.cav-btn a:hover {
  background: #ffffff !important;
  border: 1px solid #caaa4d !important;
  color: #000 !important;
}

.mh-header-bg {
  background-color: #37C2CC;
}

/*
    ==============
       home
    ==============
*/
.ev-home-carousel .ev-home {
  height: 100vh;
}

.ev-home-carousel .ev-home .ev-home-overlay {
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
}

.ev-home-carousel .ev-home .ev-home-inner {
  padding: 250px 0px;
  padding-bottom: 200px;
}

.ev-home-carousel .ev-home .ev-home-inner h1 {
  font-family: "Gilroy-Bold.otf";
  font-size: 70px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.ev-home-carousel .ev-home .ev-home-inner .home-btn {
  margin: 0 auto;
  text-align: center;
}

.ev-home-carousel .owl-controls {
  position: absolute;
  bottom: 30px;
  left: 48%;
}

.ev-home-carousel .owl-controls .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.ev-home-carousel .owl-controls .owl-dots .owl-dot.active {
  background: #ffffff;
}

.single-form {
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 7px;
}

.single-form h4 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  color: #221645;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}

.single-form .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: capitalize;
  opacity: 0.7;
  font-size: 14px;
  color: #221645;
  letter-spacing: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .form-control:focus {
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .contact-message {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: capitalize;
  opacity: 0.7;
  font-size: 14px;
  color: #221645;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .contact-message:focus {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 10px;
}

.single-form .btn .fa {
  margin-left: 20px;
}

.navbar-toggler-icon {
  background-image: url(../icons/ti.svg);
  background-repeat: no-repeat;
}

.navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
  margin-right: 4px;
}

/*
    ==============
       ABOUT US
    ==============
*/
.cav-about {
  padding: 140px 0px;
  padding-bottom: 70px;
}

.cav-about .cav-about-details {
  margin-left: 40px;
}

.cav-about .cav-about-details h6 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2.67px;
  color: #caaa4d;
  margin-bottom: 20px;
}

.cav-about .cav-about-details h2 {
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  max-width: 90%;
}

.cav-about .cav-about-details p {
  font-family: "Gilroy-Medium.otf";
  opacity: 0.5;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  color: #000000;
  margin-bottom: 40px;
  max-width: 91%;
}

.cav-about .pricing-card {
  position: absolute;
  top: -43%;
  right: 0px;
  width: 240px;
  z-index: 99;
  height: 230px;
  -webkit-box-shadow: 0 37px 76px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 37px 76px 0 rgba(0, 0, 0, 0.2);
  background-color: #2d2d2d;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.cav-about .pricing-card .card-inner {
  border: solid 2.9px #979797;
  width: 210px;
  height: 200px;
  padding: 28px 20px;
  text-align: center;
}

.cav-about .pricing-card .card-inner .home-icon {
  font-size: 43px;
  color: #ffffff;
  opacity: .6;
  margin-bottom: 17px;
}

.cav-about .pricing-card .card-inner h4 {
  opacity: 0.3;
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cav-about .pricing-card .card-inner h5 {
  font-size: 35px;
  font-weight: bold;
  color: #caaa4d;
}

/*
    ===================
       PROPERTY AREA
    ===================
*/
.cav-property {
  background: #f8f8f8;
  padding: 90px 0px;
  padding-bottom: 300px;
}

.cav-property .property-details {
  border-radius: 9.5px;
  -webkit-box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
          box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 45px;
  padding: 60px 0px;
}

.cav-property .property-details .pro-icon {
  font-size: 43px;
  color: #caaa4d;
  margin-bottom: 25px;
}

.cav-property .property-details h6 {
  opacity: 0.5;
  text-transform: uppercase;
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #000000;
  margin-bottom: 15px;
}

.cav-property .property-details h3 {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 25px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0px;
}

.cav-property .cav-home-video {
  position: absolute;
  left: 0px;
  width: 100%;
}

.cav-property .cav-home-video .video-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 200px 0px;
  text-align: center;
}

.cav-property .cav-home-video .video-overlay .video-icon {
  cursor: pointer;
  width: 85px;
  height: 85px;
  background: #ffffff;
  color: #caaa4d;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 40px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cav-property .cav-home-video .video-overlay .video-icon:hover {
  background: #caaa4d;
  color: #ffffff;
}

.cav-property .cav-home-video .video-overlay p {
  font-family: "Gilroy-Bold.otf";
  font-size: 16px;
  letter-spacing: 2.67px;
  color: #caaa4d;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cav-property .cav-home-video .video-overlay h4 {
  font-size: 50px;
  color: #ffffff;
}

.mb_20 {
  margin-bottom: 80px;
}

/*
    ===================
       FEATURE AREA
    ===================
*/
.cav-featue {
  margin-top: 450px;
}

.cav-featue .feature-overlay {
  padding: 80px 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.06)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.6));
}

.cav-featue .feature-overlay .cav-feature-inner {
  padding: 50px 28px;
  border-radius: 5px;
  -webkit-box-shadow: 0 7px 10px 0 rgba(75, 75, 75, 0.1);
          box-shadow: 0 7px 10px 0 rgba(75, 75, 75, 0.1);
  background-color: #ffffff;
}

.cav-featue .feature-overlay .cav-feature-inner ul {
  margin-bottom: 25px;
}

.cav-featue .feature-overlay .cav-feature-inner ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cav-featue .feature-overlay .cav-feature-inner ul li:nth-child(1) {
  color: #caaa4d;
  margin-right: 12px;
}

.cav-featue .feature-overlay .cav-feature-inner ul li:nth-child(2) {
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.cav-details-home {
  margin-bottom: -20%;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.mb_0 {
  margin-bottom: 0px !important;
}

.white {
  color: #ffffff !important;
}

.modal_body_inner {
  width: 100%;
  height: 450px;
}

.modal-content {
  background-color: #fff0;
  background-clip: padding-box;
  border: 0px;
  border-radius: 0px;
}

.modal-body {
  padding: 0;
  background: transparent;
  border: none;
}

/*
    ===================
       EXPLORE LAYOUT
    ===================
*/
.relative {
  position: relative;
}

.explore-layout {
  padding: 120px 0px;
  background: #f8f8f8;
}

.explore-layout .layout-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.explore-layout .layout-img {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

.explore-layout .layout-img img {
  width: 100%;
  height: 100%;
}

.explore-layout .layout-img .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  padding: 30px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.explore-layout .layout-img .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 95%;
  width: 95%;
  top: 2px;
  bottom: 0;
  right: 0;
  left: 9px;
  border-radius: 10px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.explore-layout .layout-img .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.explore-layout .layout-img:hover img {
  -webkit-box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
          box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
}

.explore-layout .layout-img:hover .layout_hover {
  opacity: 1;
}

.explore-layout .owl-controls {
  position: absolute;
  bottom: -55px;
  left: 48%;
}

.explore-layout .owl-controls .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
}

.explore-layout .owl-controls .owl-dots .owl-dot.active {
  background: #caaa4d;
}

/*
    ===================
       home image area
    ===================
*/
.cav-image {
  padding-bottom: 0px;
  background: #f8f8f8;
}

.cav-image .cav-image-mt {
  padding-top: 20%;
}

.cav-image .cav-image-inner {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

.cav-image .cav-image-inner img {
  width: 100%;
  height: 100%;
}

.cav-image .cav-image-inner .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.cav-image .cav-image-inner .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  border-radius: 0px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.cav-image .cav-image-inner .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.cav-image .cav-image-inner:hover .layout_hover {
  opacity: 1;
}

.cav-image .image-inner-1 {
  padding-top: 60px;
  padding-right: 30px;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.cav-image .image-inner-1 img {
  -webkit-box-shadow: 43px 55px 89px 0 rgba(71, 71, 71, 0.31);
          box-shadow: 43px 55px 89px 0 rgba(71, 71, 71, 0.31);
  width: 100%;
  height: 100%;
}

.cav-image .image-inner-1::before {
  right: -10px;
  content: "";
  width: 265px;
  height: 240px;
  background: #2d2d2d;
  position: absolute;
  top: -1px;
  z-index: 0;
  border-radius: 0px 40px 0px 0px;
}

.cav-image .image-inner-1 .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  height: 86%;
  width: 93%;
  top: 61px;
  bottom: 0;
  right: 0;
  left: 0;
}

.cav-image .image-inner-1 .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  border-radius: 0px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.cav-image .image-inner-1 .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.cav-image .image-inner-1:hover .layout_hover {
  opacity: 1;
}

.cav-image .image-inner {
  -webkit-box-shadow: 43px 55px 89px 0 rgba(71, 71, 71, 0.31);
          box-shadow: 43px 55px 89px 0 rgba(71, 71, 71, 0.31);
  margin-top: 50px;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 64%;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.cav-image .image-inner::before {
  left: -50px;
  content: "";
  width: 265px;
  height: 240px;
  background: #2d2d2d;
  position: absolute;
  bottom: -55px;
  z-index: 0;
  border-radius: 0px 0px 0px 40px;
}

.cav-image .image-inner .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0;
}

.cav-image .image-inner .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  border-radius: 0px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.cav-image .image-inner .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.cav-image .image-inner:hover .layout_hover {
  opacity: 1;
}

.cav-image .image-inner-2 {
  margin-top: 50px;
  cursor: pointer;
  position: relative;
  width: 98%;
  height: 92%;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.cav-image .image-inner-2 .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0;
}

.cav-image .image-inner-2 .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  border-radius: 0px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.cav-image .image-inner-2 .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.cav-image .image-inner-2:hover .layout_hover {
  opacity: 1;
}

.cav-image .img-inner-3 {
  margin-top: 50px;
  cursor: pointer;
  position: relative;
  width: 133%;
  height: 63%;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.cav-image .img-inner-3 .layout_hover {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0;
}

.cav-image .img-inner-3 .layout_hover::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0px;
  border-radius: 0px;
  -webkit-transition: all .4s;
  transition: all .4s;
  pointer-events: none;
}

.cav-image .img-inner-3 .layout_hover a {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffff;
}

.cav-image .img-inner-3:hover .layout_hover {
  opacity: 1;
}

.map-wrap {
  position: relative;
}

#makemap_canvas {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  z-index: 99999999999999999999;
}

/*
    ===================
       neighbourhood area
    ===================
*/
.neighbourhood-area .neighbourhood-img {
  height: 100%;
}

.neighbourhood-area .neighbourhood-img img {
  height: 100%;
}

.neighbourhood-area .neighbourhood-img .area-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: absolute;
  -webkit-box-shadow: 0 19px 14px 0 rgba(0, 0, 0, 0.27);
          box-shadow: 0 19px 14px 0 rgba(0, 0, 0, 0.27);
  border: solid 6px #ffffff;
  top: 45%;
  left: 53%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.neighbourhood-area .neighbourhood-img .area-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.neighbourhood-area .neighbourhood-img .area-icon.icon-2 {
  top: 35%;
  left: 20%;
}

.neighbourhood-area .neighbourhood-img .area-icon.icon-3 {
  top: 60%;
  left: 70%;
}

.neighbourhood-area .neighbourhood-img .area-icon.icon-4 {
  top: 65%;
  left: 21%;
}

.neighbourhood-area .neighbourhood-img .area-icon.icon-5 {
  top: 80%;
  left: 55%;
}

.neighbourhood-area .neighbourhood-img .area-icon .area-icon-big {
  width: 195px;
  height: 190px;
  border-radius: 10px 10px 0px 0px;
  position: absolute;
  -webkit-box-shadow: 28px 52px 45px 0 rgba(0, 0, 0, 0.23);
          box-shadow: 28px 52px 45px 0 rgba(0, 0, 0, 0.23);
  background-color: #ffffff;
  top: -500%;
  left: 30%;
  cursor: pointer;
  display: none;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.neighbourhood-area .neighbourhood-img .area-icon .area-icon-big img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
}

.neighbourhood-area .neighbourhood-img .area-icon .area-icon-big h2 {
  padding: 10px 10px;
  background: #ffffff;
  font-family: "Gilroy-SemiBold.otf";
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.01;
  border-radius: 0px 0px 10px 10px;
  letter-spacing: normal;
  color: #07223e;
}

.neighbourhood-area .neighbourhood-img .area-icon .area-icon-big h2::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -52px;
  left: 14px;
  border-left: 10px solid transparent;
  border-right: 10px solid #47307500;
  border-top: 25px solid white;
  -webkit-transform: rotate(-110deg);
          transform: rotate(-110deg);
}

.neighbourhood-area .neighbourhood-img .area-icon:hover .area-icon-big {
  display: block;
  opacity: 1;
}

.neighbourhood-area .neighbourhood-details {
  background: #2d2d2d;
  padding: 170px 60px;
  height: 100%;
}

.neighbourhood-area .neighbourhood-details .n-details-inner {
  margin-left: 40px;
}

.neighbourhood-area .neighbourhood-details .n-details-inner h6 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2.67px;
  color: #caaa4d;
  margin-bottom: 20px;
}

.neighbourhood-area .neighbourhood-details .n-details-inner h2 {
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  max-width: 90%;
}

.neighbourhood-area .neighbourhood-details .n-details-inner ul {
  margin-bottom: 38px;
}

.neighbourhood-area .neighbourhood-details .n-details-inner ul li {
  display: inline-block;
}

.neighbourhood-area .neighbourhood-details .n-details-inner ul li:nth-child(2) {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 20px;
}

.neighbourhood-area .neighbourhood-details .n-details-inner ul li:nth-child(2) span {
  opacity: 0.6;
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-left: 5px;
}

.mb-30 {
  margin-top: 70px;
}

/*
    ===================
       location area
    ===================
*/
.cav-location {
  padding: 110px 0px;
  padding-bottom: 0px;
}

.img-img {
  max-width: 98.9%;
  height: 97% !important;
}

.height_aa {
  height: 101% !important;
}

/*
    ===================
       Instagram area
    ===================
*/
.cav-instagram {
  padding: 110px 0px;
  padding-bottom: 70px;
  background: #f8f8f8;
}

.cav-instagram .ins-card .card {
  margin: 20px 0px;
  border-radius: 10px;
  border: 0px;
  -webkit-box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
          box-shadow: 0 7px 9px 0 rgba(75, 75, 75, 0.1);
  background-color: #ffffff;
}

.cav-instagram .ins-card .card .ins-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cav-instagram .ins-card .card .ins-inner .ins-inner-img img {
  width: 75px;
  height: 75px;
}

.cav-instagram .ins-card .card .ins-inner .ins-inner-details {
  padding: 10px 0px;
  margin-left: 15px;
}

.cav-instagram .ins-card .card .ins-inner .ins-inner-details h6 {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  cursor: pointer;
}

.cav-instagram .ins-card .card .ins-inner .ins-inner-details p {
  opacity: 0.4;
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0px;
}

.cav-instagram .owl-controls .owl-prev {
  border-radius: 0px 10px 10px 0px;
  width: 10%;
  height: 94%;
  position: absolute;
  background: transparent;
  top: 15px;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cav-instagram .owl-controls .owl-prev i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #caaa4d;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 45%;
  left: 30px;
  z-index: 99999;
}

.cav-instagram .owl-controls .owl-prev i:hover {
  background: #ffffff;
  color: #caaa4d;
  border: 1px solid #caaa4d;
}

.cav-instagram .owl-controls .owl-prev:hover {
  background: rgba(255, 255, 255, 0.6);
}

.cav-instagram .owl-controls .owl-next {
  border-radius: 10px 0px 0px 10px;
  width: 10%;
  height: 94%;
  position: absolute;
  background: transparent;
  top: 15px;
  right: 0;
}

.cav-instagram .owl-controls .owl-next i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #caaa4d;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 45%;
  right: 30px;
  z-index: 9999;
}

.cav-instagram .owl-controls .owl-next i:hover {
  background: #ffffff;
  color: #caaa4d;
  border: 1px solid #caaa4d;
}

.cav-instagram .owl-controls .owl-next:hover {
  background: rgba(255, 255, 255, 0.6);
}

/*
    ===================
       contact owner area
    ===================
*/
.contact-owner {
  padding: 110px 0px;
}

.contact-owner .owner-inner {
  margin-top: 10px;
}

.contact-owner .owner-inner .owner-details {
  text-align: center;
}

.contact-owner .owner-inner .owner-details h6 {
  opacity: 0.5;
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-owner .owner-inner .owner-details h5 {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 25px;
  font-weight: 600;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
}

.contact-owner .owner-inner .owner-details .span {
  display: block;
  height: 1px;
  width: 250px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.contact-owner .owner-inner .owner-details h3 {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-top: 20px;
}

.contact-owner .owner-inner .owner-details h3 span {
  opacity: 0.6;
  font-family: "Gilroy-Medium.otf";
  font-weight: 500;
  color: #000000;
  margin-left: 4px;
}

.contact-owner .owner-inner .owner-details h3.mt_10 {
  margin-top: 10px !important;
  margin-bottom: 35px;
}

.contact-owner .owner-inner .owner-details p {
  opacity: 0.5;
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  color: #000000;
  margin-top: 35px;
}

/*
    ===================
       contact us area
    ===================
*/
.form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.cav-contact {
  padding: 100px 0px;
}

.cav-contact .cav-contact-inner .cav-title {
  text-align: left;
}

.cav-contact .cav-contact-form {
  padding-right: 120px;
}

.cav-contact .cav-contact-form .contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 45px;
}

.cav-contact .cav-contact-form .contact-inner .form-icon {
  color: #caaa4d;
  font-size: 16px;
  padding: 17px 0px;
  height: 55px;
}

.cav-contact .cav-contact-form .contact-inner .form-input {
  width: 100%;
}

.cav-contact .cav-contact-form .contact-inner .form-input .form-control {
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  border: 0px;
  width: 100%;
  height: 55px;
  color: #000;
  padding: 17px 15px;
}

.cav-contact .cav-contact-form .contact-inner .form-textarea {
  width: 100%;
}

.cav-contact .cav-contact-form .contact-inner .form-textarea .form-control {
  font-family: "Gilroy-Medium.otf";
  font-size: 16px;
  border: 0px;
  width: 100%;
  height: 100%;
  color: #000;
  padding: 17px 15px;
}

.cav-contact .cav-contact-form .contact-btn {
  margin: 0 auto;
  text-align: center;
}

.cav-contact .cav-contact-form .contact-btn .btn {
  padding: 25px 30px;
}

.cav-contact .cav-contact-inner-2 {
  padding-left: 150px;
}

.cav-contact .cav-contact-inner-2 .cav-title {
  text-align: left;
}

.cav-contact .cav-contact-inner-2 .custom_ul {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cav-contact .cav-contact-inner-2 .custom_ul .icon_msg {
  width: 50px;
  height: 50px;
  background-color: #caaa4d;
  border-radius: 50%;
  margin-right: 15px;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
}

.cav-contact .cav-contact-inner-2 .custom_ul .icon_details h6 {
  font-family: "Gilroy-SemiBold.otf";
  font-size: 16px;
  line-height: 1.44;
  color: #000000;
}

.cav-contact .cav-contact-inner-2 .custom_ul .icon_details p {
  font-family: "Gilroy-Regular.otf";
  font-size: 16px;
  line-height: 1.44;
  color: #000000;
}

.cav-contact .cav-contact-inner-2 .custom-social li {
  width: 50px;
  height: 50px;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  border: solid 2px rgba(0, 0, 0, 0.25);
  -webkit-transition: all .3s;
  transition: all .3s;
  color: rgba(45, 45, 45, 0.7);
  cursor: pointer;
  line-height: 0px;
}

.cav-contact .cav-contact-inner-2 .custom-social li i {
  line-height: 47px;
}

.cav-contact .cav-contact-inner-2 .custom-social li:hover {
  background: #caaa4d;
  color: #ffffff;
  border: 2px solid transparent;
}

.cav-contact .cav-overlay {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f8f8f8;
}

.footer-logo {
  padding: 40px 0px;
  background: #2d2d2d;
  text-align: center;
}

.footer-logo p {
  opacity: 0.7;
  font-family: "Gilroy-Regular.otf";
  font-size: 14px;
  letter-spacing: 0.44px;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 0px;
}

.cav-title {
  text-align: center;
  margin-bottom: 55px;
}

.cav-title h6 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2.67px;
  color: #caaa4d;
  margin-bottom: 20px;
}

.cav-title h2 {
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
}

#map {
  width: 100%;
  height: 600px;
  margin-top: 50px;
}

.hidden_overflow {
  overflow: hidden;
  display: none;
  visibility: hidden;
}

.ml_100 {
  margin-left: 50px;
}
/*# sourceMappingURL=styles.css.map */