@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #ed7d20;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

::selection {
    background: var(--secondary);
    color: var(--primary);
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jcfs {
    justify-content: flex-start;
}

.jcfe {
    justify-content: flex-end;
}

.jcsb {
    justify-content: space-between;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1315px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
    margin-top: 40px;
}
.navbar-collapse {
    justify-content: center;
}

header {
 background: transparent;
    transition: 0.3s ease-in-out;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 2;
    
}

header.sticky {
    position: fixed;
    background-color: #000;
     transition: 0.3s ease-in-out;
         padding: 0.5rem 0;
}

header.sticky .navbar-brand img {
    max-width: 100%;
    display: inline-block;
}

.navbar-nav {
    width: 100%;
    justify-content: space-between;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    margin: 0px 20px;
}

.navbar-nav .nav-item + .nav-item {
    border-left: 1px solid var(--white);
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--white);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 2rem;
}

.form-inline a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
}

.form-inline a:hover {
    color: var(--primary);
}

.themeBtn {
    text-shadow: 0 0 15px black;
    display: inline-block;
    color: #000;
    font-size: 1.375rem;
    font-weight: 400;
    padding: 0.5em 0;
    position: relative;
}

.themeBtn:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #C9C9C9;
    height: 1px;
    transition: all 0.4s ease-in-out;
}

.themeBtn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    background-color: #000;
    height: 1px;
    transition: all 0.3s 0.2s ease-in-out;
}

.themeBtn:hover {
    color: #000;
}

.themeBtn:hover:before {
    width: 100%;
}

.themeBtn:hover:after {
    width: 0%;
}

.secHeading h2 {
    font-size: 5rem;
    font-weight: 400;
    color: #000;
    position: relative;
    text-transform: capitalize;
    font-family: "Playfair Display", serif;
    margin-bottom: 3rem;
}

.main-slider {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    /*background: url(http://edlirahomes.com/wp-content/uploads/2023/02/a1-2.jpg) center/cover no-repeat;*/
}

.socialIo {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.socialIo li a {
    height: 3.125rem;
    width: 3.125rem;
    display: inline-grid;
    place-items: center;
    font-size: 1.25rem;
    color: var(--black);
    border-radius: 50%;
    background: var(--white);
}

/*.socialIo li a:hover {*/
/*    background: var(--black);*/
/*    color: var(--white);*/
/*}*/

.main-slider .quickSearch {
    position: absolute;
    bottom: 5rem;
    left: 18rem;
}

.main-slider .quickSearch a {
    font-family: "Playfair Display", serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 2.5rem;
}

.main-slider .quickSearch a span.line {
    height: 1px;
    flex: 1;
    background: var(--white);
}

.main-slider .quickSearch p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.main-slider .callBtn {
    position: absolute;
    bottom: 5rem;
    right: 10rem;
}

.main-slider .callBtn a {
    font-family: "Oswald", serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 2.5rem;
}

.callBtn a span.line {
    height: 1px;
    flex: 1;
    min-width: 150px;
    background: var(--white);
}

.callBtn a:last-child {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    justify-content: flex-end;
}

.featureSec {
    padding: 2rem 0;
}

.featureSec .featureCard figure {
    overflow: hidden;
    position: relative;
    height: 65vh;
}

.featureSec .featureCard figure img {
    transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featureSec .featureCard figure:hover img {
    transform: scale(1.2);
}

.featureSec .featureCard .content {
    padding: 2rem 4rem;
}

.featureSec .featureCard .content h4 {
    font-family: 'Playfair Display';
    font-size: 3.75rem;
    margin: 0;
}

.featureSec .featureCard .content p {
    font-size: 1.375rem;
    color: #000;
    font-weight: 400;
    margin: 0 0 1rem;
}

.featureSec .featureCard .content ul {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.featureSec .featureCard .content ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featureSec .featureCard .content ul li span {
    font-size: 1.625rem;
    font-family: 'Playfair Display';
}

.featureSec .featureCard .content hr {
    margin: 1.5rem 0 0.75rem;
}

.featureSec .featureCard .content a {
    font-size: 1.375rem;
    text-align: center;
    color: #000;
    font-weight: 400;
    display: block;
}



.aboutSec figure img {
    width: 100%;
}

.aboutSec .secHeading h2 {
    font-size: 4rem;
    margin: 0;
}

.areaSec {
    padding: 0;
    margin-top:0;
}

.areaCard {
    background: #000;
}

.areaCard figure {
    position: relative;
    overflow: hidden;
}

/*.areaCard figure img {*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/

/*.areaCard figure:hover img {*/
/*    transform: scale(1.2);*/

    
/*}*/

.areaCard figure .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: self-start;
    padding: 0 7rem 10rem;
    flex-direction: column;
    justify-content: end;
    background: #00000038;
}

.areaCard figure .overlay h2 {
    color: #fff;
    font-size: 3.75rem;
    font-family: 'Playfair Display';
    margin: 0;
}

.areaCard figure .overlay a {
    color: #fff;
}

.areaCard figure .overlay a:before {
    background: #fff;
}

.testimonialSwiper {
    overflow: hidden;
}

.testimonialCard {
    background-image: url("../images/commentIcon.png");
    /* background-size: 100%; */
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 2rem;
    text-align: center;
}

.testimonialCard h4 {
    font-size: 1.375rem;
}

.testimonialSec .secHeading h2 {
    margin: 0;
}

.testimonialCard .themeBtn {
    text-shadow: none;
}

.review-next,
.review-prev {
    position: absolute;
    top: 50%;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    transition: all 0.3s linear;
    cursor: pointer;
    z-index: 1;
}

.review-next:hover,
.review-prev:hover {
    color: #000;
}

.review-next {
    right: -5rem;
}

.review-prev {
    left: -5rem;
}

.rentSec {
    padding-top: 0;
}

.newsSec .col-md-4 {
    display: flex;
    flex-direction: column;
}

.newsCard {
    display: flex;
    flex-direction: column;
}

.newsCard figure {
    overflow: hidden;
}

.newsCard figure img {
    transition: all 0.3s ease-in-out;
}

.newsCard figure:hover img {
    transform: scale(1.2);
}

.newsCard .content {
    padding: 0.5rem 1rem 0;
}

.newsCard + .newsCard {
    margin-top: 1rem;
}

.newsCard .content h6 {
    font-size: 1.375rem;
}

.contactSec {
    background-color: #000;
    background-image: url("../images/contactBg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10rem 0;
}

.contactSec .secHeading h2 {
    color: #fff;
}

.contactSec .form-group .form-control {
    height: 60px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: #fff;
}

.contactSec .form-group .form-control::placeholder {
    color: #fff;
}

.contactSec .form-group textarea.form-control {
    height: auto;
}

.contactSec .form-group .form-control:focus {
    box-shadow: none;
    border-bottom-color: #fff;
}

.submitBtn {
    display: inline-block;
    padding: 1rem 1.75rem;
    color: #fff;
    background: linear-gradient(to bottom, #fff, #fff);
    background-size: 100% 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    transition: all 0.3s ease-in;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
}

.submitBtn:hover {
    background-size: 100% 100%;
    color: #000;
}

footer {
    background-color: #000;
    padding-top: 6rem;
}

footer h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
}

footer .links {
    display: flex;
    gap: 1rem 0;
    flex-wrap: wrap;
}

footer .links li {
    width: 50%;
}

footer .links li a {
    color: #fff;
    position: relative;
    padding: 0;
    display: inline-block;
    text-transform: uppercase;
}

footer .links li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.3s linear;
}

footer .links li a:hover:before {
    width: 100%;
}

footer .socialIo {
    position: unset;
    flex-direction: row;
    transform: none;
    justify-content: end;
    margin-right: 19%;
}

footer .socialIo li a{
    border: 1px solid #fff;
}

footer .info a {
    display: flex;
    gap: 0 0.5rem;
    color: #fff;
    font-size: 1.125rem;
}

footer .info a + a {
    margin-top: 0.5rem;
}

.copyRight {
    /*margin-top: 3rem;*/
    align-items: center;
}

.copyRight p {
    color: #fff;
    margin: 0;
}

.aboutSec .themeBtn {
    text-shadow: none;
}


/*  inner pages css start  */

.innerBanner {
    background: url(http://edlirahomes.com/wp-content/uploads/2023/05/1111.jpg) no-repeat top center/ cover;
    padding: 0;
    display: flex;
    align-items: center;
}
.innerBanner h2 {
    margin: 0;
    font-size: 3rem;
    color: var(--white);
    font-weight: 400;
}
.aboutPage {
    padding-bottom: 0;
    padding-top: 1rem;
    margin: 0 !important;
}
.aboutPage figure img {
    width: auto;
}
.propertyPage {
    padding: 5rem 0;
}

.listingHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.sectioHeading {
    font-size: 3.125rem;
    margin: 0;
    font-weight: 400;
}
.listingHeading .nav-tabs .nav-link {
    all: unset;
    cursor: pointer;
    color: #828282;
    font-family: "Playfair Display", serif;
    font-size: 1.875rem;
    font-weight: 400;
}

.listingHeading .nav-tabs {
    border: 0;
    gap: 4rem;
}

.listingHeading .nav-tabs .nav-link.active {
    color: #000000;
}
.pagination {
    justify-content: center;
    margin-top: 4rem;
}
.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.pagination ul li a {
    width: 40px;
    height: 52px;
    color: #000000;
    font-size: 1.375rem;
    font-family: 'Playfair Display';
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.pagination ul li a.active {
    border: 1px solid #707070;
}
.map {
    padding: 0;
    margin-bottom: -7px;
}
.reviewPage .secHeading h2 {
    margin-bottom: 6rem;
}
.reviewPage {
    padding: 6rem 15rem;
}
.reviewPage .testimonialCard {
    margin-bottom: 6rem;
}
.reviewPage .pagination {
    margin-top: 2rem;
}
.buyerPage figure {
    margin: 0;
}
section.buyerPage  {
    padding: 6rem 12rem;
       background: transparent !important;
    
}
.buyerPage *  {
    color: #000 !important;
}
.buyerPage .secHeading h2 {
    font-size: 5rem;
    margin: 0 0 1.8rem;
}
.buyerPage p {
    line-height: 2;
    margin: 0 0 1.7rem;
}
background_image:none;
.contactBtn {
    background: var(--black);
    border-radius: 4px;
    font-size: 1.125rem;
    color: var(--white);
    display: inline-block;
    padding: 0.73em 1.76em;
}
.blogPage .newsCard .content {
    padding: 1rem 0 0;
}
.blogPage .newsCard .content p {
    margin: 0;
}
.blogPage .newsCard {
    margin-bottom: 3rem;
}
.blogPage {
    padding: 7rem 0;
}

.blogPage .pagination {
    margin-top: 2rem;
}


/* contact css start  */


.contactPage {
    padding: 6rem 0;
}
.contactPage .row {
    /* border: 1px solid #cecece; */
    border-radius: 0px;
}
.mainBox {
    background-color: #F5F5F5;
    padding: 3.5rem 3.125rem;
    border-radius: 0;
    height: 100%;
}
.getinTouch h2 {
    font-size: 2.3125rem;
    color: #000000;
    font-weight: 500;
    text-transform: inherit;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.getinTouch p {
    margin: 0 0 4rem;
    color: #000000;
}
.socialIcons {
    display: flex;
    gap: 15px;
    padding: 0.5625rem 0;
    padding-bottom: 1.5rem;
    align-items: center;
}
.socialContent h4 {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    margin: 0 0 4px;
    font-family: "Poppins", sans-serif;
}
.socialContent a {
    color: #000;
    font-weight: 500;
    font-size: 1.125rem;
    font-family: "Poppins", sans-serif;
}
.cntctSocial .ftrSocial {
    justify-content: flex-start;
    margin: 100px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ftrSocial li a {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000000;
}
.inn-cntct {
    padding: 5rem 3.75rem;
    background: #202020;
    height: 100%;
}
.inn-cntct label {
    font-size: 1rem;
    color: rgb(255 255 255 / 30%);
    font-weight: 500;
    padding-bottom: 10px;
    font-family: "Poppins", sans-serif;
}
.inn-cntct .form-control {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0 0 20px;
    margin-bottom: 2.5rem;
    background: transparent;
    height: 60px;
    color: #fff;
}
.inn-cntct .themeBtn {
    border: 0;
    border-radius: 0;
    display: table;
    margin-left: auto;
    font-weight: 600;
    text-transform: uppercase;
}
.inn-cntct .row {
    border: 0;
}
.inn-cntct textarea {
    height: 130px !important;
}


.inn-cntct .form-control::placeholder {
    color: #fff;
}
.inn-cntct .form-control:focus {
    border-color: none;
    border-bottom-color: #fff;
    outline: none;
    box-shadow: none;
}
.themeBtn1 {
    background: #fff;
    font-size: 1.2rem;
    color: #000000;
    padding: 1em 2.5em;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    display: table;
    margin-left: auto;
}
/*.ftrSocial li a:hover {*/
/*    background: #000000;*/
/*    color: var(--white);*/
/*}*/
/*  inner pages css end  */

.image-all-together{
  position: relative;
  color: #fff;
  /* margin: 20px auto; */
}
.image-all-together span{
  position: absolute;
  background-color: #fff;
  transition: .3s;
}
.image-all-together .one{
  height: 0;
  width: 3px;
  top: 40px;
  left: 40px;
}
.image-all-together .two{
  height: 3px;
  width: 0;
  bottom: 57px;
  left: 8px;
}
.image-all-together .three{
  height: 0;
  width: 3px;
  bottom: 0;
  top: 40px;
  right: 40px;
}
.image-all-together .four{
  height: 3px;
  width: 0;
  top: 75px;
  right: 7px;
}
.image-all-together:hover .one,
.image-all-together:hover .three{
  height: 90%;
}
.image-all-together:hover .two,
.image-all-together:hover .four{
  width: 98%;
}
.image-all-together:hover img{
  /* transition-duration: .3s; */
  /* transition-delay: .3s; */
  opacity: .5;
  transition: all 0.4s ease;
}

/* slider css */

.main-slider {
    height: 830px;
    position: relative;
}


.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover; 
    background-position: unset;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    text-align: center;
}

.banPath {
    position: absolute;
    bottom: 4.5rem;
    right: -3rem;
}

.overlay {
        background-color: #0006;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .7;
}
.homeSlider .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  display: inline-block;
  margin: 0 0.5rem 1rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}
.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}
/* slider css */
.page-template-home .aboutSec figure img{
        width: 100% !important;
}
.innerBanner{
    height: 870px !important;
}

.form-banner-h2{
    margin: 3rem 0;
    font-size: 5rem;
    color: var(--white);
    font-weight: 400;
    text-align: center;
    
}
.getfile {
        cursor: pointer;
}

.header-logo img {
    margin: 0;
    width: 150px;
    display:none;
}


a.pdfButton {
    font-size: 1.375rem;
    text-align: center;
    color: #000;
    font-weight: 400;
    display: block;
}
.sell {
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    width: fit-content;
    padding: 4px 18px;
    position: absolute;
    top: 0;
}

.sell h6 {
    font-size: 22px;
    margin: 0;
}

.featureCard {
    position: relative;
}
footer.entry-footer {
    display: none;
}

header.DetailsTitle {
    display: none !important;
}

.single-feature_properties header img {
    display: none !important;
}

.hideThisSec {
    display: none !important;
}