@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}

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


/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #FFFFFF;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #67a665;
    --primary-color: #93292d;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 30px;
    color: #5A5B5D;
    font-family: "Open Sans", sans-serif;
}

p.para {
    width: 91%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.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;
}

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

figure {
    margin: 0;
}

section {
    padding: 7rem 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--theme-color);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--black);
}

.preLoader.black img {
    filter: brightness(0) invert(1);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--black);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 3px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


.themeBtn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.nav-active {
    background: var(--theme-color);
    color: var(--white);
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

header {
    padding: 0.6rem 0;
    border-bottom: 2px solid var(--theme-color);
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    gap: 2.3rem;
    margin-right: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
}

.navbar-brand img {
    width: 100px;
}

.form-inline {
    gap: 15px;
}

.form-inline .themeBtn {
    font-size: 1rem;
    padding: 12px 24px;
}


/* navigation css */


/* slider css */

.videoBanner {
    padding: 0;
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
}

.videoBanner .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    text-align: center;
}

.slideOne h2 {
    font-size: 2.5rem;
    color: var(--theme-color);
    font-weight: 700;
    margin: 0 0 2rem;
}

.videoBanner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
}

.videoBanner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideOne h3 {
    font-size: 3.75rem;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 3rem;
}


/* slider css */

.aboutContent ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--black);
}

.aboutContent ul li i {
    color: var(--theme-color);
}

.aboutContent ul li + li {
    margin: 15px 0 0;
}

.aboutContent ul {
    margin-bottom: 2rem;
}

.aboutMain figure img {
    border-radius: 0.5rem;
}

.aboutMain.postAd {
    background: #F2F3F3;
}

.aboutMain.postAd .row + .row {
    margin-top: 2rem;
}

.heading {
    font-size: 3.125rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
}

.aboutContent p {
    margin: 0 0 1.7rem;
}

.listingMain {
    background: url(../images/listingbg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    padding-bottom: 6rem;
    background-attachment: fixed;
    background-position: center;
}

.listingMain:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.7;
    z-index: -1;
}

.heading.white {
    color: var(--white);
}

.listingBox {
    padding: 15px 15px 15px 15px;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    text-align: center;
    margin-bottom: 2.5rem;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.listingBox figure img {
    width: 100px;
    display: table;
    margin: auto;
}

.listingBox h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 22px;
    width: 140px;
    margin: 20px auto 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.listingBox a:hover h2 {
    color: var(--theme-color);
}

.listingBox:hover {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #67A665;
    box-shadow: 2px 10px 10px 0px rgba(102.99999999999997, 165.99999999999994, 100.99999999999996, 0.31);
}

.offerMain {
    background: url(../images/listingbg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    background-position: center;
    padding: 8rem 0;
}

.offerMain:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.7;
    z-index: -1;
}

.offerBox a figure {
    position: relative;
    overflow: hidden;
    height: 400px;
    /* transform: scale3d(1.1, 1.1, 1); */
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 0.5rem;
}

.offerBox a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.offerBox a figure h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.offerBox a figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.8;
    transition: background 0.3s;
    z-index: 1;
}

.offerBox a:hover figure:before {
    background-color: #000000;
    opacity: 0.5;
    z-index: 1;
}

.offerBox a figure:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.offerBox a figure:hover h2 {
    color: var(--theme-color);
}

.minglocCard {
    text-align: center;
}

.minglocCard figure {
    border-radius: 75% 25% 43% 57% / 46% 29% 71% 54%;
    overflow: hidden;
    margin: 0 0 1.7rem;
}

.minglocCard figure img {
    border-radius: 75% 25% 43% 57% / 46% 29% 71% 54%;
}

.minglocCard h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.minglocCard:hover h2 {
    color: var(--theme-color);
}

.minglocCard:hover .themeBtn {
    transform: translateY(-15px);
}

.reviewMain {
    background: url(../images/listingbg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    background-position: center;
    padding: 9rem 0;
}

.reviewMain:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.7;
    z-index: -1;
}

.reviewSlider {
    padding: 2rem 0 1.5rem;
}

.reviewBox {
    padding: 25px 30px;
    background-color: #FFFFFF21;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 2px 10px 10px 0px rgba(255, 255, 255, 0.28);
    text-align: center;
}

.reviewBox p {
    font-size: 1.1875rem;
    color: var(--white);
    margin: 0 0 1.2rem;
}

.reviewBox figure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.reviewBox figure img {
    border-radius: 50%;
    width: 60px;
}

.reviewBox figure span {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.newsBox {
    background-color: var(--white);
    border-radius: 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 15px;
}

.newSlider {
    padding: 30px 0;
    margin: 0 10px;
}

.newsContent {
    padding: 30px 30px;
}

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

.newsBox figure:after {
    display: block;
    content: "";
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .35) 0, transparent 75%);
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .35)), color-stop(75%, transparent));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 75%);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.newsBox:hover figure:after {
    opacity: .5;
}

.newsBox figure img {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.newsContent h2 a {
    font-size: 1.5625rem;
    color: var(--black);
    font-weight: 700;
}

.newsContent h2 {
    margin: 0 0 1.3rem;
}

.newsContent p {
    text-align: justify;
}

.newsContent a {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 600;
}

.newsBox:hover {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
}


/* footer css start */

footer {
    background-color: transparent;
    background-image: linear-gradient(180deg, #67A665 0%, #315830 100%);
    padding: 4rem 0 0;
}

.quickList h2 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.quickList p {
    font-size: 1rem;
    color: var(--white);
    line-height: 25.6px;
    margin: 0 0 1.4rem;
}

.quickList ul.footerSocial {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.quickList ul.footerSocial li a {
    width: 34px;
    height: 34px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
}

.quickList .list-style li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.quickList .list-style li + li {
    margin: 10px 0 0;
}

.calFoter ul li {
    display: flex;
    align-items: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.calFoter ul li strong {
    color: var(--white);
    font-size: 1.2rem;
    width: 30px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.calFoter ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.calFoter ul li span {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.calFoter ul li + li {
    margin: 15px 0 0;
}

.copyRight {
    border-top: 1px solid var(--white);
    align-items: center;
    padding: 1.2rem 0;
    margin-top: 4rem;
}

.copyRight p {
    margin: 0;
    color: var(--white);
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.2rem;
}

.copyRight ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
}

.quickList .list-style li a:hover,
.calFoter ul li strong:hover,
.calFoter ul li a:hover,
.calFoter ul li span:hover,
.copyRight ul li a:hover {
    color: var(--black);
}

.quickList ul.footerSocial li a:hover {
    background: var(--black);
    color: var(--white);
}

.reveal {
    overflow: hidden;
}


/* footer css end */


/* inner-pages css start*/

.bg--grey {
    background-color: #F2F3F3;
}

.inner-banner {
    height: 540px;
    padding: 0;
    position: relative;
}

.inner-banner > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner__title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.inner-banner__title h1 {
    color: var(--white);
    font-size: 3.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.fahey-property__img img {
    border-radius: 0.5rem;
}

.fahey-property__content {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2.5rem;
    margin-left: -6rem;
}


/* inner pages css start */

.aboutMain.about-page {
    padding: 5rem 0;
}

.aboutMain.about-page .row + .row {
    margin-top: 4rem;
}

.fahey-property.bg--white .fahey-property__content {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2.5rem;
    margin-right: -6rem;
}

.themeBtn.greeClr {
    background: var(--theme-color);
}

.themeBtn.greeClr:hover {
    background: var(--black);
}

.locationMain.location-page .minglocCard figure img {
    width: 440px;
    height: 440px;
    border-radius: 50%;
}

.locationMain.location-page .minglocCard figure {
    border-radius: 50%;
}

.locationMain.location-page .minglocCard {
    margin-bottom: 3.5rem;
}

.locationMain.location-page {
    padding: 5rem 0 2rem;
}

.latest-card figure img {
    border-radius: 8px;
    width: 100%;
}

.latest-card figure {
    margin-bottom: 1.5rem;
}

.latest-content span {
    font-size: 1.125rem;
    color: var(--theme-color);
    font-weight: 500;
    display: table;
    margin: 0 0 5px;
}

.latest-content h2 {
    font-size: 1.875rem;
    line-height: 2.8125rem;
}

.latest-content p {
    color: #828282;
    line-height: 2.25rem;
}

.latest-card {
    margin-bottom: 3.5rem;
}

.latest-page {
    padding-top: 4rem;
    padding-bottom: 2rem;
}


/* contact css start */

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item figure {
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(99, 181, 76, 0.4);
}

.contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.contact-item h4 {
    font-size: 1.375rem;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #5A5B5D;
}

.contact-item a,
.contact-item p {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.625;
    color: var(--black);
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}

.contact-item a:hover {
    color: var(--primary);
}

.contactpageform .form-control {
    border: 0;
    border-bottom: 1px solid #707070;
    padding: 1.375rem 0;
    border-radius: 0;
    margin-bottom: 2.25rem;
    resize: none;
    font-size: 1.25rem;
    transition: 0.5s ease;
}

.contactpageform input.form-control {
    height: 4.625rem;
}

.contactpageform .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contactpageform .form-control::placeholder {
    color: var(--black);
    opacity: 0.5;
}

.sub-heading {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
}

.contactpage .heading2 {
    font-size: 3.125rem;
    font-weight: 600;
}

.contactpage {
    padding-top: 0;
}

.aboutPage.contact {
    padding: 5rem 0;
}

.contactpage .themeBtn.greeClr {
    border: 0;
}


/* contact css end */


/* inner pages css end */
