@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --theme-primarycolor: #00AAA6;
    --theme-lightcolor: #F5F3F3;
    --theme-blackcolor: #000000;
    --theme-whitecolor: #ffffff;
    --theme-paracolor: #626262;
    --theme-mainhead: 'gobold';
    --theme-mainpara: "Montserrat", sans-serif;
    --theme-regular:400;
    --theme-bold: 700;
    --theme-smallradius: 4px;
    --theme-mediumradius: 8px;
    --theme-transition: all 0.5s ease-in-out;
    --theme-bordercolor: #e2e2e2;
}
img{
    max-width: 100%;
    object-fit: cover;
}
body{
    font-family: var(--theme-mainpara);
    font-size: 15px;
    overflow-x: hidden;
}
@font-face {
    font-family: 'gobold';
    src: url('../font/Gobold\ Regular.otf');
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--theme-mainhead);
    font-weight: var(--theme-regular);
    color: var(--theme-blackcolor);
    margin-bottom: 0;
}
p{
    font-family: var(--theme-mainpara);
    margin-bottom: 0;
    font-weight: var(--theme-regular);
}
ul li,
ol li{
    list-style: none;
}
ul, ol{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
.ptb60{
    padding-top: 80px;
    padding-bottom: 80px;
}
.pt60{
    padding-top: 80px;
}
.pb60{
    padding-bottom: 80px;
}
.prl60{
    padding-right: 80px;
    padding-left: 80px;
}
.ptb30{
    padding-top: 30px;
    padding-bottom: 30px;
}
.pt30{
    padding-top: 30px;
}
.pb30{
    padding-bottom: 30px;
}
.prl30{
    padding-right: 30px;
    padding-left: 30px;
}
.pr30{
    padding-right: 30px;
}
.pl30{
    padding-left: 30px;
}
.mtb20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.mt20{
    margin-top: 20px;
}
.mb20{
    margin-bottom: 20px;
}
.mrl20{
    margin-right: 20px;
    margin-left: 20px;
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}
.font12{
    font-size: 12px;
}
.font14{
    font-size: 14px;
}
.font15{
    font-size: 15px;
}
.font17{
    font-size: 17px;
}
.font19{
    font-size: 19px;
}
.font20{
    font-size: 20px;
}
.font24{
    font-size: 24px;
}
.font31{
    font-size: 31px;
}
.font32{
    font-size: 32px;
    font-size: 1.8em;
}
.font34{
    /* font-size: 34px; */
    font-size: 1.8em;
}
.font46{
    font-size: 46px;
}
.font51{
    font-size: 51px;
}
.themebtn{
    border-radius: var(--theme-smallradius);
    text-align: center;
    font-size: 15px;
    font-family: var(--theme-mainpara);
    font-weight: var(--theme-regular);
    text-transform: capitalize;
    transition: var(--theme-transition);
    padding: 8px 8px;
    overflow: hidden;
    width: 170px;
    display: inline-block;
}
.themebtn1{
    border: 1px solid var(--theme-blackcolor);
    color: var(--theme-blackcolor);
    background: transparent;
}
.themebtn1:hover{
    border: 1px solid var(--theme-primarycolor);
    background: var(--theme-primarycolor);
    color: var(--theme-whitecolor);
}
.themebtn2{

    border: 1px solid var(--theme-blackcolor);
    color: var(--theme-whitecolor);
    background: var(--theme-blackcolor);
}
.themebtn2:hover{
    border: 1px solid var(--theme-primarycolor);
    background: var(--theme-primarycolor);
    color: var(--theme-whitecolor);
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.textcenter{
    text-align: center;
}
.textleft{
    text-align: left;
}
.textright{
    text-align: right;
}
.capitalize{
    text-transform: capitalize;
}
.textblack{
    color: var(--theme-blackcolor);
}
.section-title-span{
    font-family: var(--theme-mainpara);
    font-weight: var(--theme-regular);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 100%;
    color: var(--theme-blackcolor);
    padding-left: 30px;
}
.counter-number span {
    font-size: 70px;
    font-weight: 400;
}
.counter-box p {
    font-size: 26px;
}
.section-span{
    font-family: var(--theme-mainpara);
    font-weight: var(--theme-regular);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    color: var(--theme-blackcolor);
}
.section-title{
    font-family: var(--theme-mainhead);
    font-weight: var(--theme-regular);
    font-size: 44px;
    text-transform: uppercase;
}
/*
.spring-content{
    bottom: 30px;
    left: 35px;
}
*/
.springhouse-image video{
    border-radius: 20px;
    width: 100%;
}
.springhouse-image img,
.locations-image img,
.testimonial-client-img img,
.blog-image img{
    width: 100%;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--theme-whitecolor);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.networking-para p {
    line-height: 52px;
    font-size: 2.5em;
}
.networking-image img {
    width: 100vw;
}
.nav__menu .dropdown ul li {
    min-width: 160px;
    padding-left: 18px;
    padding-right: 18px;
}
.counter-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.counter-number span{
    font-family: var(--theme-mainhead);
    font-weight: var(--theme-bold);
}
.counter-number span {
    font-size: 52px;
    font-weight: 400;
}
.counter-number .plus{
    color: var(--theme-primarycolor);
}
.wavy-line{
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-decoration-style: wavy;
    color: var(--theme-blackcolor);
}
/* .locationscard,
.locations-image{
    overflow: hidden;
} */
.locationscard:hover .locations-image img{
    /* transform: scale(1.1); */
}
/*
.locationscard:hover .wavy-line{
    text-decoration-color: var(--theme-primarycolor);
}
*/
.locationscard:hover .location-content span,
.locationscard:hover .location-content1 span,
.locationscard:hover .location-content h4,
.locationscard:hover .location-content1 h4{
    color: var(--theme-primarycolor);
}
.locations-image img{
    transition: var(--theme-transition);
    overflow: hidden;
}
.location-content{
    bottom: 60px;
}
.location-content1{
    bottom: 30px;
}
.managed-office-section{
    position: relative;
    overflow: hidden;
}
.managed-office-bg{
/*
    background: url('../img/spring-managed.png');
    background-repeat: no-repeat;
    background-size: cover;
*/
    padding: 60px;
    border-radius: var(--theme-mediumradius);
    transition: all 700ms ease-in-out;
    overflow: hidden;
    transform: scale(1);
}
.managed-para{
    background: url('../img/tanspaent-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 40px 20px;
}
.service-card{
    transition: all 700ms ease-in-out;
}
.service-card:hover .service-img img{
    transform: scale(1.1);
}
.service-card:hover .service-head h4{
    color: var(--theme-primarycolor);
}
.service-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    transition: all 700ms ease-in-out;
}
.service-img img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 700ms ease-in-out;
}
.service-content {
    background: var(--theme-lightcolor);
    padding: 60px 20px 40px 20px;
    position: relative;
    margin-top: -70px;
    z-index: -1;
    border-radius: 0 0 var(--theme-mediumradius) var(--theme-mediumradius);
}
.service-para{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.service-btn{
    display: flex;
    justify-content: end;
}
.service-btn a{
    color: var(--theme-blackcolor);
}
.service-head{
    top: 15px;
}
.morebtn:hover{
    text-decoration: underline !important;
}

.client-grid {
    display: grid;
       grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 46px;
}
.client-logo img{
    transition: var(--theme-transition);
    filter: grayscale(1);
}
.client-logo:hover img{
   filter: grayscale(0);
}

.testimonial-card{
    border: 3px solid var(--theme-bordercolor);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.testimonial-spring{
    right: -20px;
    bottom: 0;
}
.testimonial-content{
    padding: 0 100px;
}
.testimonial-quote {
    top: -20px;
    left: 0;
}
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-blackcolor);
    font-size: 18px;
    z-index: 2;
}
.testimonial-slider .slick-prev{
    left: 30px;
}
.testimonial-slider .slick-next{
    right: 30px;
}
.testimonial-slider .slick-dots {
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
}
.testimonial-slider .slick-dots li{
    list-style: disc !important;
    font-size: 20px;
}
.testimonial-slider .slick-dots .slick-active{
    list-style: circle !important;
}
.testimonial-slider .slick-dots button[type=button]{
    display: none !important;
}



.blog-card{
    border-radius: var(--theme-mediumradius) var(--theme-mediumradius) 0 0;
    border: 2px solid transparent;
    overflow: hidden;
}
.blog-card:hover{
    border: 2px solid var(--theme-primarycolor);
    border-radius: 12px;
}
.blog-image img{
    border-radius:  var(--theme-mediumradius) var(--theme-mediumradius) 0 0;
}
.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--theme-whitecolor);
    width: 200px;
    height: 100px;
    border-radius: 0 20px 0 0;
}
.blog-content{
    z-index: 5;
    padding: 20px;
}
.shape-left-top{
    position: absolute;
    /* background: red; */
    top: -19px;
    left: -1px;
    transform: rotate(270deg);
}
.shape-right-bottom{
    position: absolute;
    right: -14px;
    bottom: -5px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.circle-arrow{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 100px;
    background: var(--theme-whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--theme-mediumradius) 0 0 0;
    z-index: 5;
}
.arrow{
    width: 60px;
    height: 60px;
    border: 2px solid var(--theme-bordercolor);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .circle-arrow::after {
    content: "";
    position: absolute;
    top: -33px;
    right: 0px;
    width: 0;
    height: 0;
    border-color: red;
    border-style: solid;
    border-width: 18px;
    border-radius: 0 0 0 60px;
    transform: rotate(-120deg);
} */
.get-call {
    border: 1px solid var(--theme-blackcolor);
    border-radius: var(--theme-smallradius);
    padding: 12px 10px;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.get-call-no a,
.get-call-no a:hover{
    color: var(--theme-blackcolor);
}


.icon-shape-circle{
    position: absolute;
    top: -3px;
    left: -7px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #b5b5b5;
    z-index: -1;
    transition: var(--theme-transition);
}
.get-call-icon:hover .icon-shape-circle{
    background: var(--theme-primarycolor);
}
.get-call-icon .call-icon img{
    max-width: 40px;
}
.get-call-icon:hover .call-icon img{
    transform: rotateZ(24deg);
    perspective-origin: top;
}
.get-right-head h2 span{
    color: var(--theme-primarycolor);
}
.get-right-form-design .form-control:focus,
.get-right-form-design .form-select:focus{
    box-shadow: none !important;
    outline: none !important;
}
.get-right-form-design .form-control, .get-right-form-design .form-select {
    background: var(--theme-lightcolor);
    padding: 9px 12px;
    border: 1px solid var(--theme-lightcolor);
}
.get-right-form-design .form-control::placeholder,
.get-right-form-design .form-select{
    font-size: 14px;
    color: #828282;
}
.desk-additionbox {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: var(--theme-smallradius);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.incre, .decre {
    color: var(--theme-whitecolor);
    height: 45px;
    width: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    font-size: 25px;
}
button.themebtn.themebtn2.mx-auto.d-block {
    width: 100%;
}
.actule {
    filter: initial !important;
    opacity: 0;
    position: absolute;
}
.incre{
    background: var(--theme-primarycolor);
}
.decre{
    background: #676767;
}


footer{
    background: var(--theme-primarycolor);
    z-index: 5;
    position: relative;
    padding-top: 35px;
}
/* .follow-social-link .insta:hover::Before {
    background-image: url(../img/insta-hover.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 38px;
    height: 38px;
    content: '';
    position: absolute;
    z-index: 99;
    top: -8px;
}
.follow-social-link .face:hover::Before {
    background-image: url(../img/fb-hover.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 38px;
    height: 38px;
    content: '';
    position: absolute;
    z-index: 99;
    top: -8px;
}
.follow-social-link .link:hover::Before {
    background-image: url(../img/linkedin-hover.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 38px;
    height: 38px;
    content: '';
    position: absolute;
    z-index: 99;
    top: -8px;
} */
/* .follow-social-link a:hover img {
    opacity: 0;
} */
footer::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-spring-nn.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    z-index: -1;
}

.footer-content,
.footer-box{
    padding-bottom: 40px;
}
.footer-head p{
    color: var(--theme-whitecolor);
    font-weight: 400;
    font-family: var(--theme-mainpara);
}
.footer-links a{
    font-size: 12px;
    color: var(--theme-whitecolor);
    font-family: var(--theme-mainpara);
    font-weight: 400;
    line-height: 20%;
    position: relative;
    padding-right: 3px;
}
.footer-links a::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    border-right: 1px solid var(--theme-whitecolor);
}
.follow-head p{
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--theme-mainpara);
    color: var(--theme-whitecolor);
    line-height: 30px;
}
.follow-social-link a{
    margin-right: 20px;
    transition: var(--theme-transition);
    position: relative;
}
.follow-social-link a img{
    filter: grayscale(1);
}
.follow-social-link a:hover img.actule {
    opacity: 1;
}
.follow-social-link a:hover img.black-i {
    opacity: 0;
}
.follow-address a{
    font-size: 14px;
    color: var(--theme-whitecolor);
}

.networking-rightside {
            padding: 0px 40px;
            position: relative;
    padding-right: 0px;
        }
.networking-para p span{
    color: var(--theme-primarycolor);
}
.shape-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--theme-whitecolor);
    width: 100px;
    height: 80px;
    border-radius: 0 20px 0 0;
}
.shape-right-top{
    position: absolute;
    bottom: 95px;
    right: 0px;
    transform: rotate(180deg);
}
.shape-left-bottom{
    position: absolute;
    right: 109px;
    bottom: -5px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(180deg);
}
/* .get-touch button {
    width: 100%;
    padding: 10px 0;
} */









.loctions.virtual img {
    height: 450px;
        object-fit: cover;
}
.virtual .locations-image:hover img {
    transform: scale(1.0);
}
.virtual .locationscard:hover .location-content h4 {
    color: #000;
}
.loctions.about img{
    height: 700px;
}
.about .locations-image:hover img {
    transform: scale(1.0);
}
.about .locationscard:hover .location-content h4 {
    color: #000;
}
.about .locations-image
{
  overflow: inherit;
}
.virtual .locations-image
{
  overflow: inherit;
}
.about .locations-image .shape-bottom {
    height: 160px;
}





/*---specific location----*/
.specfic-guru h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
}
.golf-course .locations-image:hover img {
    transform: none;
}
.golf-course .locations-image img {
    height: 75vh;

}
.image-slider {
    border-radius: 20px;
    overflow: hidden;
}
.image-slider img {
    width: 100%;
   display: block;
    border-radius: 20px;
    height: 75vh;
     object-fit: cover;
    object-position: bottom;
}
button.slick-prev.slick-arrow {
    left: 55%;
    z-index: 9;
    top: 90%;
     background-image: url(../img/left.png);
    height: 33px;
    width: 34px;
    background-size: cover;
}
 button.slick-next.slick-arrow {
    right: 38%;
    top: 90%;
    background-image: url(../img/right.png);
    height: 33px;
    width: 34px;
    background-size: cover;
}
.slick-prev:before
{
    display: none;
}
.slick-next:before
{
   display: none;
}
ul.slick-dots {
    display: none;
}
.golf-course .shape-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--theme-whitecolor);
    width: 275px;
    height: 100px;
    border-radius: 0 20px 0 0;
}
.golf-course  .shape-right-bottom {
    position: absolute;
    right: -28px;
    bottom: 0px;
}
.golf-course .location-content {
    position: absolute;
    top: auto;
    left: 22px;
    bottom: 22px;
    width: 275px;
}
 .bottom-right a {
                    color: #282828;
                    text-decoration: underline;
                    text-transform: uppercase;
                    text-align: right;
                }
                .bottom-right {
                    position: absolute;
                    bottom: 1rem;
                    right: 2rem;
                }
.service-img1 .shape-bottom-right {
    height: 30px;
    border-radius: 5px 0px 0px 0px;
        position: absolute;
    bottom: 0;
    right: 0;
    background: #f6f4f4;
    width: 66px;

}
.service-img1 .shape-right-top {
    position: absolute;
    bottom: 20px;
    right: 0px;
    transform: rotate(180deg);
}
.service-img1 .shape-left-bottom {
    position: absolute;
    right: 66px;
    bottom: -10px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(270deg);
    transform: rotate(180deg);
}
.service-img1 img {
    height: 28vh;
    object-fit: cover;
        width: 100%;
}
.service-img1 {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.service-img1 img {
    transition: 0.5s;
}
.service-img1:hover img {
    transform: scale(1.05);
}
.property-spec .bottom-right a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: right;
    background: #000;
    padding: 7px 15px;
    font-size: 13px;
    transition: 0.5s;
}
.managed-office-bg1 {
    transition: 0.5s;
    position: relative;
}
/*
.managed-office-bg1:hover::before {
    position: absolute;
    content: '';
    inset: 0;
    background: #000000a6;
    width: 100%;
    transition: 0.5s;
}
*/
.office-sec h4 {
    opacity: 0;
}

.office-sec:hover h4 {
    opacity: 1;
}

.managed-office-bg1 h4 {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
    font-size: 25px;
}
.image-slider1 img {
    width: 100%;
    display: block;
    border-radius: 7px;
    height: 30vh;
    object-fit: cover;
    object-position: bottom;
}
.image-slider1 {
    border-radius: 7px;
    overflow: hidden;
}
.service-img2 {
    border-radius: 5px;
    position: initial;
    overflow: hidden;
    transition: 0.3s;
}
.service-img2 .shape-bottom-right {
    height: 50px;
    border-radius: 5px 0px 0px 0px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f6f4f4;
    width: 66px;
}
.service-img2 .shape-right-top {
    position: absolute;
    bottom: 39px;
    right: 0px;
    transform: rotate(180deg);
}
.service-img2 .shape-left-bottom {
    position: absolute;
    right: 66px;
    bottom: -11px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(270deg);
    transform: rotate(180deg);
}
.image-slider1 button.slick-next.slick-arrow {
    right: 52%;
    top: 90%;
    background-image: url(../img/right.png);
    height: 23px;
    width: 23px;
    background-size: cover;
}
.image-slider1 button.slick-prev.slick-arrow {
    left: 22%;
    z-index: 9;
    top: 90%;
    background-image: url(../img/left.png);
    height: 23px;
    width: 23px;
    background-size: cover;
}
.about .locations-image .shape-bottom {
    width: 75vh;
}
.timeline-p {
    background: #00AAA6;
    padding-left: 20px;
    padding-top: 30px;
    padding-right: 55px;
    padding-bottom: 40px;
}
.timeline-wrapper {
    display: block;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}
.timeline-nav {
    display: flex;
    flex-direction: row;
    gap: 100px;
    flex-basis: 100px;
}
.timeline-nav button {
    background: none;
    border: none;
    color: #0c0c0c;
    font-size: 28px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-family: 'gobold';
}
.timeline-nav button.active {
    font-weight: 500;
    color: #ffffff;
    position: relative;
}
.timeline-nav button.active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 6px solid #fff;
    left: 0px;
    height: 48px;
}
.timeline-content {
  width: 100%;
}
.timeline-content {
    width: 100%;
    margin-top: 40px;
}
.timeline-slide p {
    min-height:120px;
}
.timeline-slide p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    font-weight: 300;
}
.timeline-slide h2 {
        color: #fff;
    margin-bottom: 16px;
    font-size: 40px;
}
.spring-img {
    width: 16px;
    position: absolute;
    left: -6px;
    top: -15px;
    transform: rotate(45deg);
    z-index: 99;
}
.networking-img {
    width: 100%;
}
.get-touch-about .get-left-touch p {
    font-size: 18px;
    line-height: 28px;
}











.get-image path {
    transition: fill 0.3s;
}
.virtual .shape-bottom {
    width: 400px;
}
.virtual .location-content {
    position: absolute;
    top: auto;
    bottom: 18px;
    left: 26px;
}
.virtual-guru h3 {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
}
.virtual .locations-image img {
    border-radius: 20px;
}
.grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      height: 300px;
      border: 1px solid black;
    }

    .cell {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid black;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-left: 60px;
}

    .black h2 {
      color: black;
            font-size: 25px;
    }

    .grey h2 {
      color: #b3b3b3;
            font-size: 25px;
    }
.grey h2:hover {
    color: #00AAA6;
    cursor: default;
}
.black h2:hover {
    color: #00AAA6;
    cursor: default;
}
.virtual-guru p {
    line-height: 30px;
    font-size: 16px;
}




.get-image-bottom1 .get-image {
    background: #E2E2E2;
    width: 100%;
    height: 118px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.get-image-bottom1 .get-image:hover .gg-m
{
    color: #fff;
}
.get-image-bottom1 .get-image:hover .road {
    color: #fff;
}
.get-image-bottom1 .get-image:hover .space-letter
{
   color: #fff;
}
.get-image-bottom1 .road {
    font-size: 14px;
    color:#000000;
}
.get-image-bottom1 .gg-m {
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    margin-bottom: 4px;
}
.get-image-bottom1 .circle-arrow {
    width: 64px;
    height: 42px;
}
.get-image-bottom1 .shape-bottom-right {
    width: 62px;
    height: 40px;
}
.get-image-bottom1 .shape-bottom-right .shape-right-top {
    bottom: 33px;
    right: 0px;
}
.get-image-bottom1 .shape-left-bottom {
    right: 62px;
    bottom: -8px;
}
.get-image-bottom1 .space-letter
{
 letter-spacing: 2px;
}
.nav-tabs .nav-link {
    color: #282828;
    clear: both;
    position: relative;
    border: 1px solid #bababa ! IMPORTANT;
    margin-bottom: 20px;
    margin-right: 34px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    width: 222px;
    text-transform: uppercase;
    transition: 0.3s;
}
.avail-prop .nav-tabs .nav-link {
    color: #282828;
    clear: both;
    position: relative;
    border: 1px solid #bababa ! IMPORTANT;
    margin-bottom: 20px;
    margin-right: 15px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    width: 222px;
    text-transform: uppercase;
    transition: 0.3s;
}
.avail-prop .nav-tabs .nav-link {
    color: #282828;
    clear: both;
    position: relative;
    border: 1px solid #bababa ! IMPORTANT;
    margin-bottom: 20px;
    margin-right: 15px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    width: 222px;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-tabs .nav-link.active {
    background: #00AAA6;
    border-color: #00AAA6 !important;
    color: #fff;
}
.nav-tabs .nav-link:hover {
    background: #00AAA6;
    border-color: #00AAA6 !important;
    color: #fff;
}
.avail-prop .nav-tabs {
    border-bottom: none;
}
.avail-prop .nav-tabs {
    border-bottom: none;
    justify-content: center;
}
.avail-prop span.section-title-span {
    padding-left: 0;
}
.get-image-bottom1 .get-image:hover {
    background: #00aaa6;
}



.other-solution a {
    color: #282828;
    clear: both;
    position: relative;
    border: 1px solid #999595;
    margin-bottom: 20px;
    margin-right: 0px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 6px;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    transition: 0.3s;
}
.other-solution a.active
{
     background: var(--theme-primarycolor);
    border-color: var(--theme-primarycolor);
    color: #fff;
}
.other-solution a:hover {
    background: #fff;
    border-color: var(--theme-primarycolor);
    color: #00AAA6;
}



.avail-prop.why-us span.section-title-span {
    padding-left: 40px;
}
.avail-prop.why-us .get-image {
    background: #fff;
    width: 100%;
    height: 270px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    transition: 0.3s;
    border: 1px solid #A0A0A0;
}
.why-us .get-image p {
    font-size: 16px;
    line-height: 28px;
}
.get-image-bottom2 .circle-arrow {
    right: auto;
    left: 0;
}
.get-image-bottom2 .shape-bottom-right {
    right: auto;
    left: 0;
}
.why-us .get-image .para-p
{
    position: absolute;
    top: 0px;
        font-size: 1.2vw;
    line-height: 4.9vh;
}
.why-us .get-image .para-p p
{
  font-size: 1.2vw;
    line-height: 4.9vh;
}
.get-image img
{
    border-radius: 12px;
}
.get-image-bottom3 .get-image {
    position: relative;
}
.blog-pp .blog-para p {
    font-size: 18px;
}
/*
.why-us .get-image .para-p p {
    max-height: 230px;
    overflow: auto;
}
*/
.why-us .get-image:hover svg path {
    fill: #00AAA6;
}
.why-us .get-image svg path {
   transition: 0.3s;
}
.why-us .get-image:hover .para-p p {
    color: #fff;
}





.image-container {
    position: relative;
    text-align: center;
}

.image-container .image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}

.image-container .image-back {
     opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
}
 .specific-location .locations-image img{
                            height: 450px;
                object-fit: cover;
                object-position: center;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
                    }
.image-container:hover .image-back {
  opacity: 1;
}

.image-container:hover .image-front {
  opacity: 0;
}
.row.hover-s:hover .image-container .image-back {
    opacity: 1;
}
.hover-s:hover .get-image svg path {
    fill: #00AAA6;
}
.hover-sec .get-image .para-p {
    position: absolute;
    top: 0px;
}
.hover-s:hover .para-p p {
    color: #fff;
}
.hover-sec .get-image .para-p p {
    font-size: 1.2vw;
    line-height: 4.9vh;
}
.image-container img {
    max-width: 250px;
}
.call-back .themebtn {
    padding: 10px 10px;
    font-size: 18px;
    width: 18%;
}
.call-back h2 {
    font-size: 38px;
}
/*
div#nav-tabContent {
    min-height: 300px;
}
*/
#coworking .back .row {
    background: #f6f4f4;
}
#coworking .back .row:hover .detail {
    color: #00AAA6;
}






.cowork .cell {
    padding-right: 50px;
    text-align: left;
}
.networking1 .section-title-span {
    padding-left: 0;
}
.comunity1 .client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 4vw;
}
.comunity1 .client-grid-item .client-logo {
    text-align: center;
}
.comunity1 .client-grid-item .client-logo img {
    width: 85%;
}
.networking1 .col-lg-8 .networking-rightside {
    padding-right: 0;
}
  .networking-rightside button.btn.btn-secondary {
            position: absolute;
            z-index: 99;
            top: 16%;
            right: 40%;
            background: #fff;
            border-radius: 50px;
            height: 25px;
            width: 25px;
        }
.mimg.fit-img {
    position: relative;
}
.shaps.top {
    background: #ffffff;
    border-radius: 0 0 13px 0;
    width: 20%;
    height: 100px;
    position: absolute;
    top: -1px;
    left: -1px;
}
.manage-space .shap-right-top {
    position: absolute;
       top: -2px;
    /* right: -1.22rem; */
     right: -19px;
}
.manage-space .shap-right-top svg {
    width: 1.2rem;
    height: 1.2rem;
}
.manage-space .shap-left-bottom {
    position: absolute;
    bottom: -1.20rem;
    left: 1px;
}
.manage-space .shap-left-bottom svg {
    width: 1.2rem;
    height: 1.2rem;
}
.mimg img {
    border-radius: 13px 13px 13px 13px;
    width: 100%;
}
.mt-n-4 {
    margin-top: -4rem;
}
.mimg1.fit-img::before {
    content: '';
    position: absolute;
    left: -71px;
    background-image: url(../img/t1-1.png);
    background-repeat: no-repeat;
    bottom: 0;
    right: auto;
    top: 0;
    width: 200px;
    height: 63px;
    background-size: contain;
    z-index: 9;
        transition: 0.5s;
}
.mimg1.fit-img:hover::before {
    background-image: url(../img/t1.png);
    background-repeat: no-repeat;
}
.shaps1.top1 {
    background: #ffffff;
    border-radius: 13px  0 0px 0;
    width: 20%;
    height: 100px;
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}
.fit-img1 .shap-right-top {
    position: absolute;
    top: -19px;
    /* right: 0.01rem; */
       right: 0px;
    transform: rotate(180deg);
}
.fit-img1 .shap-right-top svg {
    width: 1.2rem;
    height: 1.2rem;
}
.fit-img1 .shap-left-bottom {
    position: absolute;
    bottom: -0.25rem;
    left: -19px;
    transform: rotate(180deg);
}
.fit-img1 .shap-left-bottom svg {
    width: 1.2rem;
    height: 1.2rem;
}



.inner-box {
    position: relative;
    border-right: 1px solid gainsboro;
}
.inner-box .cc-f::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000b3;
}

.img-box {
    position: absolute;
    top: 40%;
    left: 10px;
    padding: 5px;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 5px;
    z-index: 1;
    right: 0;
    text-align: center;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-box img {
    width: 90px;
    height: auto;
}
img.img-grow {
    transition: all 0.3s ease;
    height: 450px;
    object-fit: cover;
}
.inner-box {
    border-right: 1px solid gainsboro;
    width: auto;
    flex: 1;
    transition: all 1s ease;
    position: relative;
}
.inner-box:hover {
    width: auto;
    flex: 2;
}
.icons-s
{
  text-align: center;
}
.icons-s  img
{
 max-width: 20px;
}
.icons-s p
{
    font-size: 11px;
}
.solution-page h3 {
    font-family: gobold;
    font-weight: 500;
    font-size: 28px;
}

.solution-page span {
    color: #00aaa6;
}
.privacy-policy h3
{
   font-family: gobold;
    font-weight: 500;
    font-size: 28px;
}
.privacy-policy span {
    color: #00aaa6;
}
.blog-detail .detail-color
{
    color: #00aaa6;
}
.privacy-policy h4 {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 700;
        font-size: 22px;
}
.blog-page h3
{
   font-family: gobold;
    font-weight: 500;
    font-size: 28px;
}
.get-call-icon .call-icon img {
    max-width: 40px;
    transition: 0.5s;
}
.box-loc {
    text-align: center;
   }
.box-loc a {
    display: block;
    background: #F5F3F3;
    padding: 30px 0;
    color: #282828;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 5px;
}
.container-fluid {
    width: 90%;
}
.footer-links a {
    font-size: 12px;
    color: var(--theme-whitecolor);
    font-family: var(--theme-mainpara);
    font-weight: 400;
    position: relative;
    padding: 0px 6px;
    text-wrap-mode: nowrap;
    text-transform: capitalize;
}

.footer-links a::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 52%;
    transform: translateY(-45%);
    width: 1px;
    height: 53%;
    border-right: 1px solid var(--theme-whitecolor);
}
.footer-links {
    margin-left: -8px;
}

 .blog-card .shape-bottom {
            position: absolute;
            bottom: -20px;
            left: 0;
            background: var(--theme-whitecolor);
            width: 200px;
            height: 97px;
            border-radius: 0 20px 0 0;
        }

        .blog-card .shape-right-bottom {
            position: absolute;
            right: -14px;
            bottom: 16px;
        }

        .blog-image img {
            border-bottom-right-radius: 10px;
        }
.blog-para p {
    font-size: 25px;
    color: #000;
}
.blog-date.textright {
    margin-top: 25px;
    color: #575757;
}
.blog-image img {
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*
.blog-image .shape-bottom {
    bottom: 0px !important;
    width: 300px !important;
    height: 150px !important;
}
*/
.blog-detail .location-content {
    text-align: center;
    margin-top: 60px;
}
.blog-detail p {
    line-height: 30px;
    font-size: 16px;
}
.blog-detail h5 {
    font-family: 'Montserrat';
    font-weight: 700;
}
.blog-detail ul li {
    line-height: 30px;
}
.blog-detail h6 {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 18px;
}
.blog-detail .text-b {
    font-size: 18px;
    font-weight: 400;
    margin-top: 60px;
}
.blog-detail .text-b span {
    color: #01aaa6;
    font-weight: 700;
}
.service-img .shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f5f3f3;
    width: 148px;
    height: 85px;
    border-radius: 0 20px 0 0;
}
.service-para {
    margin-top: -30px;
}
.service-head {
    top: -65px;
    position: relative;
    text-align: left;
    z-index: 99;
    left: 10px;
}
.service-content {
    background: var(--theme-lightcolor);
    padding: 0px 20px 30px 20px;
    position: relative;
    margin-top: 0px;
    z-index: 1;
    border-radius: 0 0 var(--theme-mediumradius) var(--theme-mediumradius);
}
.service-img img {


    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.postion {
    left: auto;
    position: absolute ;
    top: auto;
    right: 58px;
    bottom: 0;
}
.svg-box {
    position: absolute;
    top: 0;
    left: 30px;
}
.svg-text {
    position: absolute;
    top: 22px;
    left: 40px;
    width: 89%;
    padding: 29px;
}
.svg-text p {
    font-size: 18px;
    color: #1c1c1c;
    opacity: 1;
    z-index: 99;
    position: relative;
    line-height: 30px;
}
.textright.tt {
    bottom: 15px;
    position: absolute;
    right: 40%;
}
.textright a.morebtn {
    color: #282828;
    font-size: 18px;
    text-transform: uppercase;
}
.postion h4 {
    color: #fff;
    font-size: 25px;
    text-align: center;
}
.managed-office-bg {
    position: relative;
    overflow: hidden;
   padding: 0;
}
.managed-office-bg img {
    transition: 0.5s;
    width: 100%;
}
.managed-office-bg .row {
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}
.managed-office-bg :hover img {
    transform: scale(1.1);
}
.managed-para.relative {
    position: absolute;
    z-index: 99;
    top: 39px;
    transition: 0.5s;
}
.svg-container {
    /* position: absolute; */
    position: relative;
    width: 615px;
    height: 450px;
    padding: 27px;
    /* z-index: 999; */
    /* bottom: auto; */
}
.specfic-guru h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
}
.loaction-tab a {
    color: #282828;
    clear: both;
    position: relative;
    border: 1px solid #bababa;
    margin-bottom: 20px;
    margin-right: 34px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    width: 222px;
    text-transform: uppercase;
    transition: 0.3s;
}
.loaction-tab a:hover {
    background: var(--theme-primarycolor);
    border-color: var(--theme-primarycolor);
    color: #fff;
}
.loaction-drop .form-select {
    padding: 10px 18px;
    background-color: #eaeaea;
    border-color: #eaeaea;
}
.image-placeholder {
    background-color: #ddd;
    width: 100%;
    padding-top: 100%;
    position: relative;
    transform: rotate(-90deg);
    border-radius: 5px;
}
.corner-cut {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #f6f4f4;
    border-top-right-radius: 6px;
}
.specfic-prop .back {
/*    background: #f6f4f4;*/
    position: relative;
}
.specfic-prop .back .row {
    background: #f6f4f4;
}
.bottom-right a {
    color: #282828;
    text-decoration: underline;
    text-transform: uppercase;
    text-align: right;
}
.bottom-right {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}
.specfic-prop span.section-title-span {
    padding-left: 20px;
}
.see-more {
    display: block;
    margin: 30px auto;
    text-align: center;
}
.see-more a {
    border: 1px solid #c1bebe;
    padding: 10px 32px;
    border-radius: 5px;
    color: #282828;
}
.icon-amen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.icon-amen img {
    max-width: 73px;
}
.icon-amen a {
    color: #282828;
}
.amenities .row.line {
    border: 2px solid gainsboro;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 20px 20px 0px 0;
    margin-left: 0;
    margin-right: 0;
}

.widgt h3 {
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}
ul.footer-link li a {
    color: #fff;
}
ul.footer-link li {
   line-height: 28px;
}
.footer-head p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-links a:last-child::after {
    display: none;
}
.modal-content {
    border: none;
}
.modal-content .btn-close {
    right:80px;
    position: absolute;
    top: 24px;
    background-color: #fff;
    opacity: 1;
    background-image: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    z-index: 9;
}
.modal-content .get-right-touch h2 {
    font-size: 35px;
}
.login-pop .modal-body h3 {
    font-size: 40px;
}
.login-pop .modal-body p {
    font-size: 20px;
}
.login-pop .modal-body form {
    margin-top: 25px;
}
.login-pop .modal-body form input {
    background: #F3F3F3;
    border-color: #F3F3F3;
    font-size: 13px;
    padding: 8px 12px;
}
.login-pop .modal-body .d-flex {
    background: #f3f3f3;
    align-items: center;
    padding: 10px 12px;
    gap: 16px;
    border-radius: 3px;
}
.login-pop .modal-body .d-flex p {
    font-size: 13px;
    color: #555b62;
}
.login-pop .modal-body .d-flex img {
    height: 22px;
}
.login-pop .modal-body button {
    display: flex !important;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}
.sign-text a {
    color: #000;
    text-decoration: underline;
}
.login-pop .modal-content .btn-close {
    top: 17px;
    right: 40px;
}
.thank-pop h3 span {
    color: #00aaa6;
}
.thank-pop h3 {
    font-size: 50px;
}
.thank-pop p {
    font-size: 20px;
    text-transform: uppercase;
}
div#exampleModal .modal-body {
    padding-top: 50px;
    height: 100vh;
    overflow: hidden;
    padding-bottom: 40px;
    padding-right: 80px;
    padding-left: 80px;
        display: flex;
    align-items: center;
    justify-content: center;
}
div#exampleModal .modal-body .get-image img {
    border-radius: 12px;
    width: 100%;
}
div#exampleModal  .modal-content {
    border-radius: 0;
}
div#exampleModal .modal-body .arrow {
        border: 2px solid #00aaa6;
}
div#exampleModal .modal-body .icon-shape-circle {
    z-index: 1;
}
div#exampleModal .modal-body .call-icon {
    z-index: 9;
    position: relative;
}
#exampleModal .modal-dialog.modal-xl {
    max-width: 100%;
    margin: 0;
}
.spring-housebaner video {
            height: 100vh;
            object-fit: cover;
        }

        .spring-housebaner .section-span {
            letter-spacing: 3px;
        }

        form select.form-select {
            padding: 10px 18px;
            background-color: #ffffffdb;
            border: 1px solid #ffffffdb;
        }

        form select.form-select {
            padding: 2vh 3vh;
            background-color: #ffffffdb;
            border: 1px solid #ffffffdb;
            font-size: 2.4vh;
        }

        .form-select:focus {
            box-shadow: none !important;
            border-color: transparent !important;
        }

/*
        .spring-housebaner .row1 {
            position: absolute;
            right: 28px;
            bottom: 20vh;
            width: 51vw;
            z-index: 99;
        }
*/
.spring-housebaner .row1 {
    position: absolute;
    right: 0;
    bottom: 14vh;
    width: 100%;
    z-index: 99;
}

        .explore {
            width: 100%;
            padding: 2vh 0vh;
            font-size: 2.2vh;
        }

/*
 .spring-housebaner .shape-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--theme-whitecolor);
            width: 33vw;
            height: 30vh;
            border-radius: 0 20px 0 0;
        }
*/
.spring-housebaner .shape-bottom {
    position: absolute;
    bottom: 0vh;
    left: 0;
    background: var(--theme-whitecolor);
    width: 33vw;
    height: 32vh;
    border-radius: 0 20px 0 0;
}
/*
.spring-housebaner .spring-content {
            top: -26vh;
            left: 30px;
            position: relative;
        }
*/
.spring-housebaner .spring-content {
           top: auto;
    left: 40px;
    position: absolute;
    bottom: 36px;
}
 .spring-housebaner .section-title {
            font-size: 3vw;
        }
.home-l .location-content {
    position: absolute;
    top: auto;
    left: 22px;
    bottom: 40px;
}
.about .location-content{
    position: absolute;
    top: auto;
    left: 22px;
    bottom: 25px;
}
.location-home-box1 .locations-image .shape-bottom {
            height: 140px;
            width: 40vh;
        }
.location-home-box2 .location-img1 .shape-bottom {
            height: 19vh;
            width: 25vh;
        }
  .section-span {
            font-size: 1.2vw;
        }
.location-home-box2 .location-content1 {
               left: 20px;
    position: absolute;
    top: auto;
    bottom: 10px;
        }
.managed-para .svg-box {
         position: absolute;
         top: 0;
       left: 30px;
     }
.managed-para .svg-container {
                                    /* position: absolute; */
                                    position: relative;
                                    width: 615px;
                                    height: 450px;
                                    padding: 27px;
                                    /* z-index: 999; */
                                    /* bottom: auto; */
                                }


                               .managed-para  .svg-text {
                                    position: absolute;
                                    top: 22px;
                                    left: 40px;
                                    width: 89%;
                                    padding: 29px;
                                }

                               .managed-para  .svg-text p {
                                    font-size: 18px;
                                    color: #1c1c1c;
                                    opacity: 1;
                                    z-index: 99;
                                    position: relative;
                                    line-height: 30px;
                                }

  .managed-office-bg {
                                    position: relative;
                                    overflow: hidden;
                                    padding: 0;
                                }

                                .managed-office-bg img {
                                    transition: 0.5s;
                                }

                                .managed-office-bg .row {
                                    overflow: hidden;
                                    position: relative;
                                    transition: 0.5s;
                                }

                                .managed-office-bg :hover img {
                                    transform: scale(1.1);
                                }

                                .managed-para.relative {
                                    position: absolute;
                                    z-index: 99;
                                    top: 39px;
                                    transition: 0.5s;
                                }
 .managed-office-bg .textright.tt {
                                    bottom: 15px;
                                    position: absolute;
                                    right: 40%;
                                }

                                .textright a.morebtn {
                                    color: #282828;
                                    font-size: 18px;
                                    text-transform: uppercase;
                                }
.service-section .service-head {
             top: auto;
    position: absolute;
    text-align: left;
    z-index: 99;
    left: 20px;
    width: 94%;
    bottom: 12px;
        }
 .service-section .service-content {
            background: var(--theme-lightcolor);
            padding: 20px 20px 30px 20px;
            position: relative;
            margin-top: 0px;
            z-index: 1;
            border-radius: 0 0 var(--theme-mediumradius) var(--theme-mediumradius);
        }

.tooltip2 .tooltiptext {
                                    visibility: hidden;
                                    background: url(../img/vector.svg);
                                    color: #282828;
                                    text-align: left;
                                    border-radius: 6px;
                                    position: absolute;
                                    z-index: 1;
                                    background-size: contain;
                                    background-position: center;
                                    background-repeat: no-repeat;
                                    padding: 20px 26px;
                                    overflow: visible;
                                }
 .tooltip1 .tooltiptext {
                                    visibility: hidden;
                                    background: url(../img/vector.svg);
                                    color: #282828;
                                    text-align: left;
                                    border-radius: 6px;
                                    position: absolute;
                                    z-index: 1;
                                    background-size: contain;
                                    background-position: center;
                                    background-repeat: no-repeat;
                                    padding: 20px 26px;
                                    overflow: visible;
                                }
   .tooltip .tooltiptext {
                                    visibility: hidden;
                                    background: url(../img/vector.svg);
                                    color: #282828;
                                    text-align: left;
                                    border-radius: 6px;
                                    position: absolute;
                                    z-index: 1;
                                    background-size: contain;
                                    background-position: center;
                                    background-repeat: no-repeat;
                                    padding: 20px 26px;
                                    overflow: visible;
                                }
.tooltip {
                                    display: inline-block;
                                    border-bottom: 1px dotted black;
                                    position: absolute;
                                    z-index: 9;
                                    top: 16%;
                                    right: 40%;
                                    background: #fff;
                                    border-radius: 50px;
                                    height: 20px;
                                    width: 20px;
                                    opacity: 1;
                                    padding: 0;
                                }
  .tooltip1 {
                                    display: inline-block;
                                    border-bottom: 1px dotted black;
                                    position: absolute;
                                    z-index: 1;
                                    top: 22%;
                                    left: 14%;
                                    background: #fff;
                                    border-radius: 50px;
                                    height: 20px;
                                    width: 20px;
                                    opacity: 1;
                                    padding: 0;
                                }
 .tooltip2 {
                                    display: inline-block;
                                    border-bottom: 1px dotted black;
                                    position: absolute;
                                    z-index: 99;
                                    top: 55%;
                                    left: 50%;
                                    background: #fff;
                                    border-radius: 50px;
                                    height: 20px;
                                    width: 20px;
                                    opacity: 1;
                                    padding: 0;
}
.blog-para p
{
   font-size: 25px;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;

     }
ul.footer-link li a:hover {
    text-decoration: underline;
}
.specific-location  .location-content {
    position: absolute;
    top: auto;
    left: 22px;
    bottom: 48px;
}
 .specfic-guru h3 {
                    font-family: "Montserrat", sans-serif;
                    font-size: 22px;
                    font-weight: 600;
                }
.loaction-tab a {
                    color: #282828;
                    clear: both;
                    position: relative;
                    border: 1px solid #bababa;
                    margin-bottom: 20px;
                    margin-right: 34px;
                    border-radius: 5px;
                    text-align: center;
                    padding: 10px 0;
                    display: inline-block;
                    width: 222px;
                    text-transform: uppercase;
                    transition: 0.3s;
                }
                .loaction-tab a:hover {
                    background: var(--theme-primarycolor);
                    border-color: var(--theme-primarycolor);
                    color: #fff;
                }
.amenities .row.line {
                    border: 2px solid gainsboro;
                    padding-top: 30px;
                    padding-bottom: 30px;
                    border-radius: 20px 20px 0px 0;
                    margin-left: 0;
                    margin-right: 0;
                }
.box-loc a {
  display: block;
  background: #F5F3F3;
  padding: 30px 0;
  color: #282828;
 text-transform: uppercase;
  font-size: 16px;
   border-radius: 5px;
    }
 .loctions.golf-course h4 {
       font-size: 26px;
   }
  .loctions.golf-course .locations-image .shape-bottom {
    width: 275px;
  }

 .padding-b {
           padding-right: 80px;
}
 .property-spec .bottom-right a {
     font-family: 'gobold';
   }
.manage-content {
    max-width: 400px;
    margin: auto;
}
.locations-image img {
            height: 450px;
            object-fit: cover;
            object-position: center;

        }
  .spring-housebaner .shape-right-bottom {
            position: absolute;
            right: -14px;
            bottom: 3px;
            -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
            transform: rotate(270deg);
        }
.blog-detail p {
    text-align: left;
}
.blog-detail h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    text-align: left;
}
.blog-detail h1 {
    font-size: 44px;
        margin-bottom: 20px;
    text-transform: lowercase;
}
form select.form-select option:hover {
    background: #02aba7 ! IMPORTANT;
}

form select.form-select option[selected] {
    background: #02aba7;
    color: #fff;
}
form select.form-select option {
    background-color: #ededed;
    border-bottom: 1px solid #ded9d9;
}
.blog-detail .location-content ul {
    margin-bottom: 10px;
}
.blog-detail .location-content p {
    margin-bottom: 10px;
}
.blog-detail h4 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    text-align: left;
}
.blog-detail h2 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    text-align: left;
}
.blog-detail .location-content h2 a {
    color: #000;
    font-family: 'Montserrat';
    text-align: left;
    font-size: 20px;
    font-weight: 600;
}
 .box:before,
.box:after {
  content: "";
  display: table;
}

.box:before,
.box:after {
  content: "";
  display: table;
}

.box:after {
  clear: both;
}

.box {
     padding: 2vh 3vh;
    background-color: #ffffffdb;
    border: 1px solid #ffffffdb;
    font-size: 2.4vh;
    position: relative;
    border-radius: 5px;
}


.nice-select {
  -webkit-tap-highlight-color: transparent;
/*
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e0e7ee;
*/
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;

  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
}
.nice-select:hover {
  border-color: #d0dae5;
}
/*
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #88bfff;
}
*/
.nice-select:after {
  border-bottom: 2px solid #282828;
  border-right: 2px solid #282828;
  content: "";
  display: block;
  height: 10px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 10px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cdd5de;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small:after {
  height: 10px;
  width: 10px;
}
/*
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
*/
        .nice-select span {
    font-size: 2.4vh;
            color: #212529;
}
        .nice-select.form-select {
    background: transparent;
            padding: 0;
    border: none;
}
.nice-select .list {
    width: 100%;
  background-color: #ededed;
    border-bottom: 1px solid #ded9d9;
     border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  box-sizing: border-box;
  margin-top: 0px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
    color: #282828;
}
.nice-select .option {
    font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
      background-color: #02aba7;
    color: #fff;

}
.nice-select .option:hover {
    color: #fff;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}
.specfic-guru .box {
    padding: 0;
}
.specfic-guru .box .nice-select span {
    font-size: 2.8vh;
}
.specfic-prop .col-md-8:hover a {
    color: #00aaa6;
}
/*
.get-touch .nice-select span {
    font-size: 16px;
    color: #898b89;
}
.get-touch .nice-select {
    background: #f5f3f3;
    padding: 9px 12px;
}*/
.managed-para1.relative {
    display: none;
}

 .spring-housebaner .shape-left-top {
            position: absolute;
            top: -19px;
            left: -2px;
            transform: rotate(270deg);
        }
.dropdown-toggle::after
{
 border-top: 0px;
}
.dropdown-toggle::after {
    position: relative;
    margin-left: 0 !important;
    border-left: 0;
    border-bottom: 0;
    vertical-align: baseline;
}
.svg-text .section-title {
    font-size: 30px;
    margin-bottom: 15px;
}
.talk a {
    background: #000000;
    color: #fff;
    width: 45%;
    height: 52px;
    position: fixed;
    right: -60px;
    bottom: 90px;
    z-index: 99;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.talk a img {
    filter: invert(1);
    width: 38px;
    padding-right: 10px;
}
.arrow1::after{
 display: none;
}
.drop1 .dropdown-toggle.dropdown-toggle-split {
    padding-top: 0;
    padding-left: 0;
}
.drop1
{
        display: flex;
}
   .talk {
    display: none !important;
}
.design-your-card .shape-bottom {
    width: 100px;
    height: 88px;
    bottom: -4px;
}
.design-your-card .shape-right-bottom {
    bottom: 3px;
    right: -23px;
}
.design-your-card {
    position: relative;
}
.design-your-card .design-image img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
}
.design-your-card .shape-left-top
{
 top:-23px;
}
.design-image {
    position: relative;
}
section#golf-course .loaction-tab a {
    border: none;
    padding: 0;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
}
section#golf-course .loaction-tab a:hover {
    background: transparent;
    color: #282828;
}
#faqAccordion .accordion-button:not(.collapsed) {
    background: #00aaa6;
    color: #fff;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
        filter: invert(1);
}
.accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}
.nav__menu li
{
padding-bottom: 0;
}
a.nav-link.dropdown-toggle.dropdown-toggle-split {
    padding-right: 0;
}
a.themebtn.themebtn1.membership-login {
    margin-left: 10px;
        opacity: 0;
    visibility: hidden;
}
