@charset "utf-8";

/* ============================= Fonts ============================= */

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

/* ============================= General Style ============================= */

body {
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 14px;
    background: #fff;
    color: #52504E;
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
}

@-o-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}


/* ============================= Typography ============================= */

p {
    font-size: 16px;
    line-height: 1.8em;
    padding-bottom: 10px;
    text-align: justify;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: #52504E;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.list-link {
    position: relative;
}

.list-link li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;
}

.list-link li a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-link li::before {
    position: absolute;
    content: "\f1e4";
    left: 0px;
    top: 2px;
    font-size: 11px;
    font-family: 'flaticon4';
}

a, a > span {
    position: relative;
    color: inherit;
    text-decoration: none;

    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a:hover {
    color: #6dc130;
}


/* ============================= Button ============================= */
.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    padding: 11px 30px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 3px;
    overflow: hidden;
    border: none;
    text-transform: capitalize;
    background-color: #6dc130;
    font-family: 'Montserrat', sans-serif;
}

.btn-style-one::before {
    position: absolute;
    content: '';
    left: 92%;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    background-color: #52504e;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    transform: skewX(-25deg);
}

.btn-style-one .txt {
    position: relative;
    z-index: 1;
}

.btn-style-one {
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
}

.btn-style-one:hover::before {
    left: 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover {
    color: #ffffff;
}


/* ============================= Page preload ============================= */
.loader2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    overflow: hidden;
    z-index: 99999999;
    background:#fff;
    -webkit-transform: translate3d(0, 0, 0);
    text-align: center;
}

.page-load {
    position: fixed;
    top: 90px;
    left: 90px;
    right: 0;
    bottom: 0;
    z-index: 19;
    display: none;
    -webkit-transform: translate3d(0, 0, 0);
}

.page-load_bg,
.page-load_bg2 {
    position: absolute;
    right: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    background: #2D2D32;
    z-index: 3;
    overflow: hidden;
}

.page-load_bg2 {
    z-index: 2;
    background: #35353A;
}

.loader {
    display: inline-block;
    position: relative;
    top: 40%;
    z-index: 10;
}

.loader span {
    display: block;
    position: absolute;
    top: 120px;
    -webkit-animation: fadeInUp .5s ease-in-out 0s forwards;
    animation: fadeInUp .5s ease-in-out 0s forwards;
    width: 100px;
    text-align: left;
    left: 50%;
    margin-left: -40px;
}

.loader small {
    color: #52504E;
    font-size: 10px;
    margin-left: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loader img {
    width: 280px;
    opacity: 0;
    -webkit-animation: fadeInUp .5s ease-in-out 0s forwards;
    animation: fadeInUp .5s ease-in-out 0s forwards;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ============================= Loading ============================= */
.loading {
    height: 0;
    width: 0;
    margin-top: 2px;
    padding: 8px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-right-color: transparent;
    border-right-color: #6dc130;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
    position: relative;
    float: left;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}


/* ============================= Back to Top Button ============================= */

.back-to-top {
    overflow: hidden;
    position: fixed;
    display: block;
    z-index: 99;
    bottom: 40px;
    right: 2%;
    border: none;
    background-color: #fff;
    padding: 0;
    transition: .4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    visibility: hidden;
    transform: scale(0);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

.back-to-top i {
    color: #6dc130;
    font-size: 14px;
}

.back-to-top.show {
    display: block;
    transform: scale(1);
    visibility: visible;
}

/* ============================= SOCIAL =============================  */
.social-btns .btn,
.social-btns .btn:before,
.social-btns .btn .fab {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-btns .btn:before {
  top: 90%;
  left: -124%;
}

.social-btns .btn .fab {
    position: relative;
}

.social-btns .btn.facebook:before {
  background-color: #3b5998;
}
.social-btns .btn.facebook .fab {
  color: #fff;
}

.social-btns .btn.twitter:before {
  background-color: #3cf;
}
.social-btns .btn.twitter .fab {
  color: #fff;
}

.social-btns .btn.linkedin:before {
  background-color: #0E76A8;
}
.social-btns .btn.linkedin .fab {
  color: #fff;
}

.social-btns .btn.instagram:before {
    background: rgb(244,193,30);
    background: linear-gradient(59deg, rgba(244,193,30,1) 0%, rgba(227,1,22,1) 51%, rgba(177,0,171,1) 100%); 
}
.social-btns .btn.instagram .fab {
  color: #fff;
}

.social-btns .btn:focus:before,
.social-btns .btn:hover:before {
    top: -20%;
    left: -28%;
}

.social-btns .btn:focus .fab,
.social-btns .btn:hover .fab {
    color: #fff;
}

.social-btns {
}

.social-btns .btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    padding: 0px;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    opacity: 0.9;
}

.social-btns .btn:before {
  content: '';
    width: 45px;
    height: 45px;
  position: absolute;
  transform: rotate(45deg);
}

.social-btns .btn .fab {
  font-size: 16px;
  vertical-align: middle;
}

/* ============================= Header ============================= */

.header-section {
	position: fixed;
	z-index: 999;
	min-width: 100%;
	background: #fff;
	transition: all 0.4s ease 0s;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.add-header-section {
	padding-top: 0px; 
}

.add-header-section {
	background: rgba(255,255,255,0.95);
 	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
	
.add-header-section .top-line {
	opacity: 0;
	position: absolute; 
}

.add-header-section .menuzord-brand {
    padding: 7px 0px;
}

.add-header-section .menuzord-brand img {
    height: 56px;
}

.add-header-section.header-section .phone-box .box-inner strong {
    font-size: 20px;
}

.add-header-section.header-section .phone-box .box-inner {
    font-size: 10px;
}

.add-header-section.header-section .phone-box .box-inner .icon {
    font-size: 38px;
    line-height: 30px;
}

.add-header-section.header-section .menuzord-menu > li > a {
    padding: 24px 0px;
}

/* Phone Box */
.header-section .phone-box {
    position: relative;
    float: left;
    margin-top: 13px;
    margin-left: 12px;
}

.header-section .phone-box .box-inner {
    position: relative;
    padding-left: 50px;
    color: #52504E;
    font-size: 13px;
    text-transform: uppercase;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-section .phone-box .box-inner strong {
    font-family: 'Oswald', sans-serif;
    position: relative;
    display: block;
    font-size: 26px;
    font-weight: 500;
    margin-top: 0px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-section .phone-box .box-inner .icon {
    position: absolute;
    left: 0px;
    top: 3px;
    color: #52504E;
    font-size: 50px;
    line-height: 1em;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* ============================= Slider ============================= */
.main-slider .master-slider .ms-slide::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0.6) 90%);
}

.subpage .ms-slide, .subpage .master-slider {
    height: 400px !important;
}

.main-slider .master-slider .ms-scroll-parallax-cont {
    z-index: 9;
}

.main-slider .master-slider .ms-layer h1 {
    text-transform: none;
    font-size: 38px;
    line-height: 46px;
}

.subpage .main-slider .master-slider .ms-layer h1 {
    font-size: 30px;
}

.main-slider .master-slider .ms-layer span {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.main-slider .master-slider .ms-bullet {
    width: 22px;
    height: 3px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.main-slider .master-slider .ms-bullet-selected {
    background-color: #6dc130;
}

.main-slider .master-slider .ms-bullets .ms-bullets-count {
    width: 102px;
}

.main-slider .master-slider .msp-preset-3 {
    top: 40% !important;
    text-align: center;
}

.subpage .main-slider .master-slider .msp-preset-3 {
    top: 55% !important;
}

.main-slider .master-slider .msp-preset-3 ul {
    margin: 80px 0 40px 0;
    padding: 0;
}

.main-slider .master-slider .msp-preset-3 ul li {
    list-style: none;
    display: inline-block;
}

.main-slider .master-slider .msp-preset-3 ul li a {
    padding: 4px 26px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #52504E;
    border-radius: 20px;
    width: 132px;
    display: block;
    text-shadow: none;
}

.main-slider .master-slider .msp-preset-3 ul li a:hover {
    background-color: #6dc130;
    color: #fff;
}

.main-slider .master-slider .msp-preset-3 ul li:first-child a {
    border-left: none;
}

.main-slider .master-slider .ms-nav-next, 
.main-slider .master-slider .ms-nav-prev {
    opacity: 0;
    width: 50px;
    height: 50px;
    top: 60%;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.3s ease 0s; 

    display: none;
}

.main-slider .master-slider .ms-nav-next:hover, 
.main-slider .master-slider .ms-nav-prev:hover {
    border-color: #6dc130;
}

.main-slider .master-slider:hover .ms-nav-next, 
.main-slider .master-slider:hover .ms-nav-prev {
    opacity: 1;
}

.main-slider .master-slider .ms-nav-prev::after {
    content: "\f1be";
    font-family: "flaticon4";
    width: 100%;
    text-align: center;
    top: 10px;
    left: -2px;
    font-size: 20px;
    color: #fff;
    position: absolute;
    transition: all 0.3s ease 0s; 
}

.main-slider .master-slider .ms-nav-next::after {
    content: "\f1e4";
    font-family: "flaticon4";
    width: 100%;
    text-align: center;
    top: 10px;
    left: 2px;
    font-size: 20px;
    color: #fff;
    position: absolute;
    transition: all 0.3s ease 0s; 
}

.main-slider .master-slider .ms-nav-next:hover:after, 
.main-slider .master-slider .ms-nav-prev:hover:after {
    color: #6dc130;
}

.ms-bullets.ms-dir-h {
    display: none;
}


.scroll-down-wrap {
    position: absolute;
    left: 50%;
    bottom: -100px;
    margin-left: -16px;
  }

  .scroller {
    position: relative;
    left: 50%;
    top: 6px;
    margin-left: -1px;
    width: 3px;
    height: 3px;
    border-radius: 25%;
    background: #fff !important;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
  }

  @keyframes scroll {
	0% {
		opacity: 0;
	}
	10% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(50px);
		opacity: 0;
	}
}

  .mousey {
    float: left;
    width: 8px;
    height: 30px;
    border-radius: 4px;
    padding: 0 6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
  }

  .scroll-down-wrap span {
    float: left;
    margin-left: 20px;
    position: relative;
    top: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 11px;
  }




.breadcrumbs {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    z-index: 10;
    padding: 20px 0;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
}

.breadcrumbs-list {
    float: left;
    position: relative;
    top: 0;
}

.breadcrumbs-list a::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6DC130;
    border-radius: 100%;
    right: 0;
    top: 50%;
    margin-top: -2px;
}

.breadcrumbs-list a {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #52504E;
}

.breadcrumbs-list a:hover {
    color: #6DC130;
}

.breadcrumbs-list span {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #6DC130;
}



/* ============================= Welcome ============================= */
.welcome {
    padding-top: 100px;
}

.welcome .inner-column {
    text-align: center;
    background-color: #f8f8f8;
    padding: 40px;
    position: relative;
    border-radius: 20px;
}

.welcome .inner-column::after {
    content: "";
    background-image: url(../images/city-bg.png);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position-y: -84px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0.6;
}

.welcome .inner-column p {
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.welcome .inner-column .services-wrap {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.selling-house span {
    display: inline-block;
  }

.selling-icon-title {
    font-size: 22px;
    color: #52504E;
    padding: 10px 0px 10px 10px;
    font-weight: bold;
    line-height: 16px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }

  .selling-icon-title span {
    font-size: 14px;
    color: #6DC130;
    padding-bottom: 10px;
    text-transform: uppercase;
  }

  .services-box .selling-house .icon-box i {
    font-size: 42px;
    color: #6DC130;
    margin-top: 13px;
    margin-right: 10px;
  }


/* About */
.about-title h2 {
    color: #52504E;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 4px;
    margin-bottom: 20px;
  }

 ul.list li {
    list-style: square;
    margin-bottom: 8px;
    padding-left: 10px;
    margin-left: 15px;
  }




/* ============================= Services Section Two ============================= */
.services-section-two {
    position: relative;
}

.services-section-two .upper-box {
    position: relative;
    text-align: center;
    border-radius: 15px;
    padding: 100px 20px 180px;
    margin-left: -80px;
    margin-right: -80px;
    background-color: #6dc130;
}

.services-section-two .upper-box .icon-one {
    position: absolute;
    left: 5%;
    bottom: 10%;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
}

.services-section-two .upper-box .icon-two {
    position: absolute;
    left: 38%;
    top: 10%;
    width: 99px;
    height: 119px;
    background-repeat: no-repeat;
}

.services-section-two .upper-box .icon-three {
    position: absolute;
    right: 5%;
    bottom: 15%;
    width: 170px;
    height: 170px;
    background-repeat: no-repeat;
}

.services-section-two .sec-title .title {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.services-section-two .sec-title {
    position: relative;
    margin-bottom: 55px;
}

.services-section-two .sec-title.light .title {
    color: #fff;
}

.services-section-two .sec-title.light h2 {
    color: #fff;
}

.services-section-two .sec-title h2 {
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
    margin-top: 15px;
}

.service-block-two {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.service-block-two .inner-box {
    display: block;
    position: relative !important;
    overflow: hidden;
    padding: 24px;
    border-radius: 6px;
    background-color: #f5f5f5;
}

.service-block-two .inner-box:hover {
    color: #fff;
}

.service-block-two .inner-box:hover::before {
    height: 100%;
    opacity: 1;
}

.service-block-two .inner-box::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    opacity: 0;
    background-color: #6dc130;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-two .inner-box .shape-one {
    content: '';
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -120px;
    opacity: 0.4;
    right: -120px;
    transform: scale(0);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-two .inner-box:hover .shape-one {
    transform: scale(1);
    webkit-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    transition-delay: 300ms;
}

.service-block-two .inner-box .shape-two {
    content: '';
    width: 373px;
    height: 373px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -180px;
    right: -180px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-two .inner-box:hover .shape-two {
    opacity: 0.4;
    transform: scale(1);
    webkit-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    transition-delay: 600ms;
}

.service-block-two .inner-box h5 {
    position: relative;
    z-index: 2;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0px 0px 10px;

    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.service-block-two .inner-box:hover h5 {
    color: #fff;
}

.service-block-two .inner-box .text {
    position: relative;
    font-size: 13px;
    line-height: 1.8em;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;

    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-block-image {
    padding-bottom: 15px;
    position: relative;
}

.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* ============================= Property Section ============================= */
.property-section {
    position: relative;
    padding: 120px 0px 120px;
}

.subpage .property-section {
    padding: 80px 0px 0px;
}

.property-section .sec-title {
    position: relative;
    text-align: center;
    margin-bottom: 55px;
}

.property-section .sec-title i {
    margin-right: 5px;
}

.property-section .sec-title .title {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #6dc130;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.sec-title h2 {
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
    margin-top: 15px;
}

.property-list {
    position: relative;
    margin-bottom: 50px;
}

.property-list .inner-box {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 0 0 10px 10px;
}

.property-list .inner-box .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    display: block;
}

.property-list .inner-box .image::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
}

.property-list .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;

    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.property-list .inner-box:hover .image img {
    transform: scale(1.04,1.04);
}

.property-list .inner-box .lower-content {
    position: relative;
    padding: 20px;
}

.property-list .inner-box .lower-content .post-date {
    position: relative;
    color: #6dc130;
    font-size: 30px;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
}

.property-list .inner-box .lower-content .post-date span {
    position: relative;
    font-size: 14px;
}

.property-list .inner-box .lower-content .post-meta {
    position: relative;
}

.property-list .inner-box .lower-content .post-meta li {
    position: relative;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
    font-weight: 600;
    padding-left: 22px;
    display: inline-block;
}

.property-list .inner-box .lower-content .post-meta li .icon {
    position: absolute;
    left: 0px;
    top: 1px;
    font-size: 15px;
    margin-right: 6px;
}

.property-list .inner-box .lower-content h4 {
    position: relative;
    line-height: 1.4em;
    font-weight: 700;
    margin-top: 5px;
}

.property-list .inner-box .lower-content h4 a {
    font-size: 22px;
    position: relative;
    
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;


    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.property-list .inner-box .lower-content h4 a:hover {
    color: #52504E;
}

.property-list .inner-box .lower-content .text {
    position: relative;
    line-height: 1.8em;
    font-weight: 600;
    margin-top: 12px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #9E9E9F;

    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-list .inner-box .lower-content .read-more {
    position: relative;
    line-height: 1.4em;
    font-weight: 700;
    margin-top: 12px;
    font-size: 14px;
    color: #52504E;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.property-list .inner-box .lower-content .read-more:hover {
    color: #6dc130;
}

.property-list .inner-box .lower-content .read-more .arrow {
    position: relative;
    top: 1px;
    font-size: 16px;
    margin-left: 8px;
}


.list-single-opt_header_cat {
    position: absolute;
    left: 20px;
    top: 30px;
    z-index: 5;
  }

  .list-single-opt_header_cat li {
    float: left;
    margin: 0 10px 0 0;
  }

  .cat-opt {
    padding: 7px 20px;
    border-radius: 2px;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    float: left;
    background-color: #6dc130;
  }

.property-list .category-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.property-list .category-location i {
    margin-right: 5px;
    color: #6dc130;
}

.category-content-price {
    color: #6dc130;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}

.category-content-details {
    overflow: hidden;
    margin-bottom: 20px;
}

.category-content-details li {
    float: left;
    margin: 0 18px 0 0;
  } 

  .category-content-details li i {
    margin: 0 7px 0 0;
    font-size: 19px;
    color: #999;
  }

  .category-content-details li span {
    font-weight: 600;
    font-size: 12px;
    color: #333;
  }


  .list-main-wrap-header {
    padding: 0 12px 20px;
    float: left;
    width: 100%;
    position: relative;
  }

  .list-main-wrap-opt {
    position: relative;
    overflow: hidden;
  }

  .price-opt-title {
    float: left;
    padding-right: 14px;
    position: relative;
    top: 14px;
    font-size: 12px;
    color: #878C9F;
    font-weight: 600;
  }

  .price-opt .listsearch-input-item {
    width: 180px;
    float: left;
    margin-bottom: 0;
    position: relative;
  }

  .price-opt .listsearch-input-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    max-width: 320px;
    height: 36px;
    float: right;
    margin: 5px 0px;
    padding: 0px 12px;
    font-size: 13px;
    position: relative;
    line-height: 1.75;
    color: #52504E;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #ddd;
    -ms-word-break: normal;
    word-break: normal;
    border-radius: 6px;
  }

  .price-opt .listsearch-input-item .select::after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #52504E;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    top: 12px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
  }


/* Prolerty Details */
.list-single-main-media {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    background: #fff;
    padding: 2px;
    float: left;
    width: 100%;
    position: relative;
  }

  .gallery-item {
    width: 33.3%;
    position: relative;
    float: left;
    padding: 2px;
  }

  .gallery-item2 {
    width: 66.6%;
    position: relative;
    float: left;
    padding: 2px;
  }

  .list-single-main-media .gallery-item2 img {
    height: 250px !important;
  }

  .list-single-main-media .gallery-item3 img {
    height: 250px !important;
  }

  .list-single-main-media .gallery-item img,  .list-single-main-media .gallery-item2 img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .gallery-item .gal-link {
    top: 50%;
    right: 50%;
    margin: -20px -20px 0 0;
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 43px;
    cursor: pointer;
    font-size: 11px;
    cursor: pointer;
    background: #6DC130;
    font-weight: 100;
    text-align: center;
    opacity: 0;
    transition: all 200ms linear;
    box-shadow: 0px 0px 0px 4px rgba(255,255,255,0.4);
  }

  .gallery-item:hover .gal-link {
      opacity: 1;
  }

  .list-main-container {
    border-radius: 6px;
    overflow: hidden;
    background: #f8f8f8;
  }

  .list-main-item {
    padding: 30px 30px;
  }

  .list-main-item-title h3 {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    color: #52504E;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    text-transform: uppercase;
  }

  .list-main-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .list-single-facts {
    border: 1px solid #ddd;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .inline-facts-wrap {
    width: 25%;
    float: left;
    padding: 30px 0;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
    text-align: center;
  }

  .list-single-facts .inline-facts-wrap:first-child {
    border: none;
  }

  .list-single-facts .inline-facts-wrap i {
    font-size: 34px;
    width: 100%;
    padding-bottom: 10px;
    color: #6DC130;
  }

  .list-single-facts .inline-facts-wrap h6 {
    padding-left: 4px;
    color: #999;
    font-size: 14px;
    display: block;
    padding-bottom: 5px;
    font-weight: 700;
  }

  .list-single-facts .inline-facts-wrap span {
    font-weight: 900;
    color: #52504E;
  }

  .prop-detl-tools ul li a {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    cursor: pointer;
  }

  .prop-detl-tools ul li a i {
      margin-right: 10px;
  }

  .prop_detl_agent_bx {
    display: inline-block;
    margin: 10px;
    width: 100%;
  }

  .prop_detl_agent_cont p {
      font-size: 13px;
  }

  .prop_detl_agent_image {
    padding: 0 10px 0 0;
    float: left;
    margin-left: 0;
    width: 100%;
  }

  .prop_detl_agent_image img {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 50%;
    width: 30%;
  }

  .prop_detl_agent_cont {
    padding: 0;
    float: left;
    width: 100%;
    padding: 10px;
    margin-left: 0;
  }

  .prop_detl_agent_cont p {
    padding: 4px 0;
  }

  .prof_detl_agent_bt a {
    background: #6fb43b;
    border-radius: 3px;
    color: #fff;
    display: block;
    float: left;
    font-size: 12px;
    padding: 4px 15px;
  }



  /* Form */
  .form-control::placeholder {
    color: #B5B5C3;
    opacity: 1;
  }

  .form h5 {
      font-weight: bold;
      margin-bottom: 20px;
  }

  .form-control:focus {
    color: #3F4254;
    background-color: #ffffff;
    border-color: #69b3ff;
    outline: 0;
  }

  .form-group {
    margin-bottom: 1.75rem;
  }

  .form-group label {
    font-size: 13px;
    font-weight: bold;
    color: #3F4254;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .form-group > div {
      position: relative;
  }

  textarea.form-control {
    height: auto;
  }

  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.3rem + 2px);
    padding: 10px;
    appearance: auto;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #3F4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #E4E6EF;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  }


  .radio-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .radio-inline .radio {
    margin-right: 1rem;
    margin-bottom: 0.35rem;
  }

  .radio {
    display: -webkit-box !important; 
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
  }

  .radio > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

  .radio > span::after {
    content: "";
    display: none;
    background-color: #ffffff;
    border-color: #ffffff;
    width: 6px;
    height: 6px;
    border-radius: 100% !important;
  }
  
.radio > input:checked ~ span::after {
    display: block;
}

.radio > input:checked ~ span {
    background-color: #3699FF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: none;
  }

  .radio-inline .radio span {
    margin-right: 0.75rem;
  }

  .radio > span {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #EBEDF3;
    border: 1px solid transparent;
  }


  .col-form-label {
    padding-top: calc(0.65rem + 1px);
    padding-bottom: calc(0.65rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
  }

  .company-title {
    font-size: 20px;
    color: #505558;
    padding-bottom: 20px;
    font-weight: bold;
  }

  .table {
    width: 100%;
    margin-bottom: 20px;
  }

  .txtInput {
    background-color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    cursor: default !important;
  }
  
/*Validation*/
em.invalid {
  position: absolute;
  font-size: 10px;
  bottom: -16px;
  color: #cc0033;
}

.state-error .form-control {
    border: 1px solid #cc0033;
}


/* Testimonial */
figure.snip1192 {
    position: relative;
    float: left;
    margin: 0;
    min-width: 220px;
    text-align: left;
    box-shadow: none !important;
    background-color: #fafafa;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    border: 10px solid #fff;
  }

  figure.snip1192 blockquote::after {
    content: "\f10e";
    right: 20px;
    bottom: 35px;
  }

  figure.snip1192 blockquote::before, figure.snip1192 blockquote::after {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-weight: 900;
    font-style: normal;
  }

  figure.snip1192 blockquote::before {
    content: "\f10d";
    top: 35px;
    left: 20px;
  }

  figure.snip1192 blockquote {
    margin: 0;
    display: block;
    position: relative;
    padding: 30px 70px 65px 78px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    
  }

  figure.snip1192 .author {
  }

  figure.snip1192 .author h5 {
    margin: 12px 0 0 0;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
  }


/* ============================= Page Title ============================= */
.page-title {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 110px 0px 110px;
    background-color: #141d38;
    padding-top: 240px;
}

.page-title p {
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.page-title form {
    position: relative;
    padding: 20px 0;
    width: 520px;
    margin: auto;
}

.page-title form input {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 22px 10px 55px;
    color: #777777;
    height: 48px;
    font-size: 15px;
    border-radius: 40px;
    font-weight: 600;
    border: 1px solid #fff;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-title form i {
    position: absolute;
    width: 28px;
    height: 28px;
    font-size: 20px;
    color: #777777;
    top: 30px;
    left: 18px;
    z-index: 9;
}

.page-title .pattern-layer-one {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/slider-image2.jpg);
    background-size: cover;
}

.page-title h2 {
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 0px;
}

.page-breadcrumb {
    position: relative;
    margin-top: 20px;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.page-breadcrumb li:first-child:after {
    position: absolute;
    content: "~";
    right: -2px;
    top: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}


/* ============================= Pagination ============================= */
.styled-pagination {
    position: relative;
}

.styled-pagination li {
    position: relative;
    margin: 0px 5px 10px;
    display: inline-block;
}

.styled-pagination li a {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: #52504E;
    font-size: 15px;
    font-weight: 700;
    line-height: 41px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #d7d7d7;
        border-top-color: rgb(215, 215, 215);
        border-right-color: rgb(215, 215, 215);
        border-bottom-color: rgb(215, 215, 215);
        border-left-color: rgb(215, 215, 215);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.styled-pagination li.prev,
.styled-pagination li.next{
    width: 50px;
    height: 40px;
    
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 41px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #6dc130;
    background-color: #6dc130;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.styled-pagination li a.current, 
.styled-pagination li a:hover {
    color: #ffffff;
    border-color: #131D38;
    background-color: #131D38;
}


/* ============================= Contact Section ============================= */
.contact-info-section {
    position: relative;
    padding: 0px 0px 50px;
}

.contact-info-section .title-box {
    position: relative;
    text-align: center;
}

.contact-info-section .title-box .title {
    position: relative;
    color: #6dc130;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-info-section .title-box h2 {
    position: relative;
    font-weight: 700;
    line-height: 1.4em;
    margin-top: 10px;
}

.contact-info-section .title-box .text {
    position: relative;
    font-size: 16px;
    line-height: 1.9em;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 40px;
}

.contact-info-section .info-column {
    position: relative;
    margin-bottom: 30px;
}

.contact-info-section .info-column .inner-column {
    position: relative;
    padding: 30px 30px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.10);
}

.contact-info-section .info-column .inner-column .content {
    position: relative;
    padding-left: 60px;
}

.contact-info-section .info-column .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #6dc130;
    font-size: 44px;
    line-height: 1em;
}

.contact-info-section .info-column .icon-box {
    color: #6dc130;
    font-size: 44px;
    line-height: 1em;
}

.contact-info-section .info-column ul li {
    position: relative;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
}

.contact-info-section .info-column ul li strong {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.contact-map-section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 100px;
}

.contact-map-section .sec-title {
    position: relative;
    margin-bottom: 20px;
}

.contact-map-section .sec-title .title {
    position: relative;
    color: #6dc130;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.contact-map-section .sec-title h2 {
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
    margin-top: 15px;
}

.contact-form {
    position: relative;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form .form-group label {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form .form-group input[type="text"], 
.contact-form .form-group input[type="tel"], 
.contact-form .form-group input[type="email"], 
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 22px;
    color: #777777;
    height: 56px;
    font-size: 15px;
    background: none;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid #cccccc;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 22px;
    padding: 15px 22px;
    color: #777777;
    height: 150px;
    resize: none;
    font-size: 15px;
    background: none;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid #cccccc;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}


/* ============================= Footer ============================= */
.main-footer {
    position: relative;
    background-color: #131D38;
    margin-top: 100px;
}

.main-footer .widgets-section {
    position: relative;
    padding: 80px 0px 20px;
}

.blog .main-footer .widgets-section {
    padding-top: 100px;
}

.faq .main-footer .widgets-section {
    padding-top: 100px;
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .logo-widget {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .logo-widget .logo {
    position: relative;
    margin-bottom: 26px;
}

.main-footer .logo-widget .logo img {
    width: 60%;
}

.main-footer .logo-widget .text {
    position: relative;
    color: #8fa4c2;
    font-weight: 400;
    margin-bottom: 20px;
}

.main-footer .footer-widget h5 {
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.main-footer .footer-list {
    position: relative;
}

.main-footer .footer-list li {
    position: relative;
    margin-bottom: 8px;
}

.main-footer .footer-list li a {
    position: relative;
    color: #8fa4c2;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .footer-list li a:hover {
    color: #6dc130;
}

.main-footer .footer-list li a i {
    font-size: 10px;
    margin-top: -17px;
    position: relative;
    top: -3px;
}

.main-footer .contact-widget ul li .icon {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px;
    line-height: 1em;
    color: #8fa4c2;
}

.main-footer .contact-widget ul li {
    position: relative;
    color: #8fa4c2;
    font-size: 16px;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6em;
}

.main-footer .contact-widget ul li a {
    position: relative;
    color: #8fa4c2;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.newsletter-form {
    margin-bottom: 35px;
}

.newsletter-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.newsletter-form .form-group input {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 85px 10px 25px;
    height: 48px;
    font-size: 15px;
    color: #ffffff;
    background: none;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.30);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .footer-bottom {
    position: relative;
    padding: 22px 0px;
    background-color: #111930;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.main-footer .newsletter-form .form-group button {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    font-size: 13px;
    color: #8fa4c2;
    text-align: center;
}

.main-footer .newsletter-widget .text {
    position: relative;
    color: #8fa4c2;
    font-weight: 400;
    margin-bottom: 20px;
}

.main-footer .social-btns .btn.twitter .fab, 
.main-footer .social-btns .btn.facebook .fab, 
.main-footer .social-btns .btn.instagram .fab,
.main-footer .social-btns .btn.linkedin .fab {
    color: #8fa4c2;
}

.main-footer .social-btns .btn.twitter:hover .fab, 
.main-footer .social-btns .btn.facebook:hover .fab, 
.main-footer .social-btns .btn.instagram:hover .fab,
.main-footer .social-btns .btn.linkedin:hover .fab {
    color: #fff;
}



/**
 * Modals ($modals)
 */

/* 1. Ensure this sits above everything when visible */
.email-a-friend-modal,
.team-member-modal,
.view-map-modal {
    position: fixed;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.email-a-friend-modal.is-visible,
.team-member-modal.is-visible,
.view-map-modal.is-visible {
    visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.email-a-friend-modal.is-visible .modal-overlay,
.team-member-modal.is-visible .modal-overlay,
.view-map-modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 50em;
    margin-left: -25em;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-wrapper.team-modal-wrapper {
    width: 60%;
    left: 20%;
    margin-left: 0;
}

.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.email-a-friend-modal.is-visible .modal-transition,
.team-member-modal.is-visible .modal-transition,
.view-map-modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.modal-header,
.modal-content {
  padding: 1em;
  border: none;
}

.modal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.modal-content #map {
    height: 400px;
}  

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.modal-close .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: #999;
}

.modal-close:hover {
  color: #777;
}

.modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-content > *:first-child {
  margin-top: 0;
}

.modal-content > *:last-child {
  margin-bottom: 0;
}


/*Email a friend*/
#submit-form .form-input:focus,
  textarea:focus{
    outline: 1.5px solid #6dc130;
}

#submit-form .form-input,
#submit-form textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
}

#submit-form  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
  
#submit-form  label {
    display: block;
}
  
#submit-form  p {
    margin: 0;
}

#submit-form .full-width {
    grid-column: 1 / 3;
}

#submit-form .submit-btn,
#submit-form .form-input,
  textarea {
    padding: 1em;
}


/* Our Team */
.our-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.our-team-card {
    overflow: hidden;
    padding: 0px;
    background: #f8f8f8;
    box-shadow: 0px 0px 20px rgba(227, 235, 246, 0.3);
    border-radius: 30px;
    text-align: center;
}


.our-team-card_img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.our-team-card_body {
    padding: 26px 10px 36px 10px;
}

.our-team-card_title {
    font-weight: 800;
    text-transform: capitalize;
    color: #52504E;
    font-size: 22px;
    padding-bottom: 10px;
}

.our-team-designation {
    font-size: 14px;
    color: #6DC130;
}

.our-team-designation span {
    margin-right: 10px;
}

.our-team-call_btn {
    margin: 40px 0 0px;
    position: relative;
    display: inline-block;
    z-index: 99;
}



.our-team-btn_icon i {
    position: relative;
    font-size: 30px;
    color: #52504E;
    transition: all .3s ease-in-out;
}

.our-team-btn_icon i:after {
    content: '';
    position: absolute;
    height: 55px;
    width: 55px;
    background-color: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    left: -13px;
    top: -8px;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.our-team-circle {
    position: absolute;
    background: radial-gradient(45.14% 45.14% at 50% 50%, #efffe4 0%, #efffe4 26.59%, #efffe4 46.99%, #efffe4 71.36%, #efffe4 100%);
    box-shadow: 0px 4px 107px rgba(179, 211, 255, 0.5);
    border-radius: 50%;
    left: -23px;
    top: -34px;
    height: 75px;
    width: 75px;
    display: block;
    z-index: -2;
    transition: all .3s ease-in-out;
}

.our-team-btn_icon:hover i {
    color: #6DC130;
}


.our-team-btn_icon:hover .circle {
    box-shadow: 0px 4px 97px rgba(44, 134, 255, 0.8);
}

.our-team-link {
    position: fixed;
    background-color: #D12322;
    padding: 23px 40px;
    right: -110px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(-90deg);
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .1s ease-in-out;
}

.our-team-link i {
    padding-left: 7px;
}

.our-team-link:hover {
    text-decoration: underline;
    background-color: black;
}

.team-modal-wrapper .team-content {
    max-height: 250px;
    overflow-y: scroll;
    padding-right: 40px;
}

.team-modal-wrapper img {
    width: 100%;
}





















