
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
Thin 100
Light 300
Regular 400
Medium 500
Bold 700
Black 900
Thin 100 Italic
Light 300 Italic
Regular 400 Italic
Medium 500 Italic
Bold 700 Italic
Black 900 Italic
 */

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --primaryColor:#38085c;
    --secondaryColor:#71bf44;
    --baseTextColor:#5e5d5e;
    --baseFontSize:17px;
    --baseLineHeight:24px;
    --baseFontWeight:400;
    --primaryFont:"Open Sans", sans-serif;
    --secondaryFont:"Poppins", sans-serif;
}

html,
body {
    height: 100%;
    font-optical-sizing: auto;
    font-variation-settings:"wdth" 100;
}

body {
    color: var(--baseTextColor);
    font-family:var(--primaryFont);
    font-size: var(--baseFontSize);
    font-weight: var(--baseFontWeight);
    line-height: var(--baseLineHeight);
}

a {
    transition: all .5s;
    text-decoration: none;
}
button {
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
}
.btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    border: 0;
    font-family: var(--secondaryFont);
    min-width: 195px;
}
.btn-primary {
    background-color: var(--primaryColor);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--secondaryColor);
}
.btn-secondary {
    background-color: var(--secondaryColor);
    color: #fff;
}
.btn-secondary:hover {
    background-color: var(--primaryColor);
}

.btn-link {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--secondaryFont);
    color: var(--secondaryColor);
    text-decoration: none;
}
.btn-link:hover {
    color: var(--primaryColor);
}

/* Header */
.esHeaderTop {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}
.esHeaderTopRight {
    display: flex;
    align-items: center;
}
.esHeaderTopRight ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
}
.esHeaderTopRight ul li {
    display: flex;
    padding: 0 40px;
    margin: 0;
    position: relative;
}
.esHeaderTopRight ul li:after {
    content: "";
    width: 3px;
    height: 92px;
    display: block;
    background-color: #eaeaea;
    position: absolute;
    right: 0;

}
.esHeaderTopRight ul li:last-child {
    margin-right: 40px;
}
.esHeaderTopRight ul li i {
    margin-right: 25px;
}
.esHeaderTopRight ul li span {
    display: block;
    font-size: 16px;
    color: #000e44;
    font-weight: 600;
    margin-bottom: 10px;
}
.esHeaderTopRight ul p {
    margin-bottom: 0;
}
.esHeaderTopRight ul a {
    color: var(--baseTextColor);
}
.esHeaderTopRight ul a:hover {
    color: var(--secondaryColor);
}
.esHeaderBot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar {
    padding: 25px 0;
}
.navbar-nav .nav-item {
    padding: 0 25px;
}
.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: var(--primaryColor);
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
}
.navbar-nav .nav-item:first-child {
    padding-left: 0;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--secondaryColor);
}
.socialLinks {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.socialLinks li {
    padding-left: 15px;
}
.socialLinks li:first-child {
    padding-left: 0;
}
/* .socialLinks li a:hover img {
    filter: saturate(2.5) brightness(1) contrast(80%) invert(100%);
} */
.socialLinks li img {
    width: 30px;
    border-radius: 5px;
}
.socialLinks li:first-child img,
.socialLinks li:last-child img {
    width: 28px;
}

/* Hero Banner */
.js-hero-items img {
    width: 100%;
}

/* General */
.ptb40-btm {
    padding-top: 60px;
    padding-bottom: 0;
}
.ptb60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.secHeading span {
    color: var(--secondaryColor);
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}
.secHeading h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    margin-bottom: 15px;
}
.infoBox {
   padding: 30px 40px;
   box-shadow:  0 0 7px rgba(0,0,0,.15);
}
.infoBox i {
    margin-bottom: 20px;
    display: block;
}
.infoBox h2 {
    font-size: 23px;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    font-weight: 600;
    margin-bottom: 15px;
}
.infoBox p {
    margin-bottom: 25px;
}
.infoBox ul {
    list-style-type: none;
    margin-bottom: 25px;
    padding: 0;
}
.infoBox ul li {
    margin-bottom: 15px;
    display: block;
    align-items: center;
}
.infoBox ul li i {
    margin-bottom: 0;
    margin-right: 15px;
    display: inline;
}
.infoBox:nth-child(2){
    background-color: var(--primaryColor);
    color: #fff;
    margin-bottom: -30px;
}
.infoBox:nth-child(2) h2,
.infoBox:last-child h2 {
    color: #fff;
}
.infoBox:last-child{
    background-color: var(--secondaryColor);
    color: #fff;
}
.infoBox:last-child .btn-link {
    color: #fff;
}
.infoBox:last-child .btn-link:hover {
    color: var(--primaryColor);
}
.infoBox:nth-child(2) .btn:hover{
    background-color:#160326;
}

/* What we offer */
.twoclumn {
    align-items: center;
}
.twoclumn figure  {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
}
.twoclumn figure img {
    border-radius: 5px;
}
.twoclumn figure:after {
    content: "";
    position: absolute;
    width: 35px;
    top: 30px;
    bottom: 15px;
    display: block;
    background-color: #c9fdac;
    border-radius: 0 3px 3px 0;
}
.twoclumn.leftImg .col:first-child {
    padding-left: 0;
    text-align: left;
}
.twoclumn.rightImg .col:last-child {
    padding-right: 0;
    text-align: right;
}
.twoclumn.leftImg figure:after {
    right: -35px;
}
.twoclumn.rightImg figure:after {
    left: -35px;
}
.twoclumn .heading {
    color: var(--secondaryColor);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.twoclumn h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    margin-bottom: 15px;
}
.twoclumn h3 {
    font-size: 20px;
    font-weight: 700;
}
.twoclumn .contactInfo {
    margin-bottom: 20px;
}
.twoclumn .contactInfo p {
    margin-bottom: 0;
    display: flex;
}
.twoclumn .contactInfo a {
    color: var(--secondaryColor);
}
.twoclumn p span {
    color: var(--secondaryColor);
}
.servicesList {
    list-style-type: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    font-family: var(--secondaryFont);
    color: #1f1e1e;
}
.servicesList li {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    padding: 20px 15px 20px 0;
}
.servicesList li i {
    margin-right: 25px;
}

/* Gallery */
.esGallery {
    position: relative;
    margin-top: 60px;
    padding-bottom: 35px;
}
.esGallery h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--secondaryFont);
    margin-bottom: 25px;
}
.esGallery .heading {
    color: var(--secondaryColor);
    font-weight: 600;
}
.esGalleryHeader {
    height: 445px;
    background: url(../images/galbg.jpg) no-repeat center 0;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    color: #fff;
}
.esGalleryHeader::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/lowerbg.png) repeat-x 0 0;
    opacity: .85;
}
.esGalleryHeader::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/uperbg.png) repeat-x 0 0;
}
.galList {
    margin-top: -230px;
}
.galbox {
    margin-bottom: 25px;
}
.galbox img {
    width: 100%;
}
.container {
    position: relative;
    z-index: 1;
}
.lb-data .lb-number {
    display: none !important;
}
.lb-data .lb-close {
    width: 25px;
    height: 25px;
    background-size: 60%;
}
.lb-caption h5 {
    color: #fff;
}
.js-gallery .col-4 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Testimonial */
.testimonials {
    padding-top: 20px;
    position: relative;
}
.testimonials:before {
    content:"";
    width: 72px;
    height: 54px;
    display: block;
    background: url(../images/quote_left.png) no-repeat 0 0;
    position: absolute;
    top: -40px;
    left: -100px;
}
.testimonials:after {
    content:"";
    width: 81px;
    height: 61px;
    display: block;
    background: url(../images/quote_right.png) no-repeat 0 0;
    position: absolute;
    bottom: 120px;
    right: -120px;
}
.clientImg {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 5px solid #fff;
    margin: 15px auto;
    box-shadow: 0 0 25px rgba(0,0,0,.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.clientImg img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}
.testiItems span {
    color: var(--secondaryColor);
    display: block;
    font-weight: 600;
}

.testimonials .slick-dots {
    margin-top: 30px;
}

/* Services */
.serviceBox {
    position: relative;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    min-height: 430px;
    cursor: pointer;
    margin-bottom: 30px;
}
.serviceCnt {
    padding: 30px;
    color: #fff;
    transition: all .5s;
    position: absolute;
    left: 0;
    right: 0;
    top:auto;
    margin: auto;
    min-height: 430px;
    background-color: rgba(0, 0, 0, .75);
    bottom: -355px;
}
.serviceBox h2 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondaryFont);
    margin-bottom: 0;
    text-transform: uppercase;
} 
.serviceCnt ul {
    list-style-type: none;
    margin: 25px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #fff;
}
.serviceCnt ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.serviceCnt ul li::before{
    content: "";
    width: 10px;
    height: 2px;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}
.serviceBox:hover .serviceCnt.servicehover {
    bottom: 0;
}
.slick-dots {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
}
.slick-dots li {
    margin: 0 5px;
}
.slick-dots li button {
    padding: 0;
    margin: 0;
    font-size: 0;
    border: 1px solid #c1c1c1;
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 100px;
    background-color: transparent;
    cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background-color: #c1c1c1;
}
.js-services {
    margin-top: 50px;
}
.js-services .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Footer */
.footerTop {
    background-color: #160326;
    padding: 50px 0;
    color: #9d9d9d;
    font-size: 14px;
}
.footerTop h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}
/* .footerTop .socialLinks a:hover img {
    filter: brightness(0) invert(1);
} */
.footerTop a {
    color: #9d9d9d;
}
.footerTop a:hover {
    color: #fff;
}
.siteLinks {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}
.siteLinks li {
    margin-bottom: 5px;
}
.siteLinks a {
    color: #9d9d9d;
}
.siteLinks a:hover,
.siteLinks a.active {
    color: #fff;
}
.quickContact {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
}
.quickContact li {
    flex:0 0 50%;
    margin-bottom: 15px;
    display: flex;
}
.quickContact li i {
    margin-right: 15px;
}
.copyWrite {
    background-color: #000;
    color:#484848;
    font-size:12px;
    padding: 20px 0;
}
.copyWrite p {
    margin-bottom: 0;
}
.footerLogo {
    display: inline-flex;
    background-color: #fff;
    padding: 5px;
    margin-bottom: 10px;
}
.footerLogo+p {
    margin-bottom: 0;
}
.footerLogo+p a {
    font-size: 13px;
}
.esFooter .socialLinks li img {
    width: 24px;
}
.esFooter .socialLinks li:first-child img,
.esFooter .socialLinks li:last-child img {
    width: 22px;
}

.heroBanner {
    position: relative;
}
.js-hero-slider .slick-arrow {
    background-color: transparent;
    border: 0;
    padding: 0;
    font-size: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-40%);
    z-index: 1;
    background-size: 70% !important;
    border-radius: 100px;
} 
.js-hero-slider .slick-prev {
    left: 15px;
    background: url(../images/prev.png) no-repeat center center;
}
.js-hero-slider .slick-next {
    right: 15px;
    background: url(../images/next.png) no-repeat center center;
}

.heroBanner img {
    width: 100%;
}

/* Facilities */
.js-facilities {
    margin-top: 50px;
}
.faciBox {
    padding: 15px 45px;
    text-align: center;
    /* border-left: 2px solid #c1c1c1; */
    min-height: 270px;
    /* height: auto; */
}
.faciBox i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97px;
    height: 97px;
    border-radius: 100px;
    border: 2px solid #c1c1c1;
    margin: 0 auto 30px;
}
.faciBox h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    margin-bottom: 20px;
}
.faciBox p {
    margin-bottom: 0;
}
/* .faciBox:nth-child(3n+1){
    border-left: 0;
} */
.js-facilities .slick-center {
    /* border-left: 2px solid #c1c1c1;
    border-right: 2px solid #c1c1c1; */
    position: relative;
 }
 .js-facilities .slick-center:before,
 .js-facilities .slick-center:after {
    content: "";
    width: 2px;
    height: auto;
    margin:auto;
    top: 0;
    bottom: 0;
    position: absolute;
    background-color: #c1c1c1;
 }
 .js-facilities .slick-center:before {
    left: 0;
 }
 .js-facilities .slick-center:after {
    right: 0;
 }
 .js-facilities .slick-center
 .js-facilities .slick-list {
    padding: 0 !important;
 }
 .js-facilities .slick-dots {
    margin-top: 70px;
 }

 .technologyList {
    font-weight: 500;
    text-align: center;
    padding-top: 55px;
 }
 .technologyList figure {
    margin-bottom: 20px;
 }
 .technologyList figure img {
    width: 100%;
 }
.technologyList h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primaryColor);
}
.technologyList p {
    margin-bottom: 0;
}
.amenities {
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}
.amenities .col {
    padding: 0;
}
.amenities figure {
    margin-bottom: 0;
    position: relative;
}
.amenities figure img {
    width: 100%;
    border-radius: 5px 0 0 5px;
}
/* .amenities:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 55px;
    bottom: 55px;
    left: 0;
    display: block;
    background-color: #d5fdbe;
} */
.col.colLeft {
    background-color: #d5fdbe;
    padding: 75px 0; 
}
.amenities .amenities-cnt {
    position: relative;
    z-index: 1;
    padding-left: 115px;
    padding-right: 115px;
}
.amenities .heading {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
    font-family: var(--primaryFont);
    margin-bottom: 20px;
    display: block;
}
.amenities h2 {
    color: var(--primaryColor);
    font-size: 32px;
    font-weight: 600;
    font-family: var(--secondaryFont);
}
.amenitiesList {
    list-style-type: none;
    margin: 30px 0 40px;
    padding: 0;
    color: #5e5d5e;
    font-weight: 600;
}
.amenitiesList li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.amenitiesList li i {
    display: flex;
    width: 37px;
    height: 37px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    border: 1px solid #616160;
    margin-right: 25px;
}


/*----------------Contact Us---------------*/
.main_head{
    padding-bottom: 40px;
}
.contact-info{
    padding-bottom: 60px;
}
.contact-info h3{
    font-size: 20px;
    padding-bottom: 20px;
    font-family: var(--secondaryFont);
}
.contact_frm {
    background-color: #f9f9f9;
    padding: 20px;
}

.contact_frm label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.contact_frm input[type="text"],
.contact_frm input[type="tel"],
.contact_frm input[type="email"],
.contact_frm select,
.contact_frm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact_frm input[type="text"]:focus,
.contact_frm input[type="tel"]:focus,
.contact_frm input[type="email"]:focus,
.contact_frm select:focus,
.contact_frm textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-column {
    width: 48%; /* Adjusts both fields to take equal space in a row */
}

.contact_frm button {
    background-color: var(--primaryColor);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact_frm button:hover {
    background-color: var(--secondaryColor);
    
}

.contact_frm textarea {
    resize: vertical;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }

    .form-column {
        width: 100%; /* Full width for small screens */
    }
    
    .contact_frm {
        padding: 15px;
        max-width: 100%;
    }
}

.thnx-wrap{
    padding-bottom: 50px;
}



/* Media CSS */
@media (max-width: 1199px){
    .esHeaderTopRight ul li {
        padding: 0 20px;
    }
    .esHeaderTopRight ul li:last-child {
        margin-right: 20px;
    }
    .esHeaderTopRight ul li i {
        margin-right: 20px;
    }
    .infoBox {
        padding: 30px;
    }
    .infoBox h2 {
        font-size: 20px;
    }
    .twoclumn.leftImg figure {
        margin-right: 40px;
    }
    .twoclumn.rightImg figure {
        margin-left: 40px;
    }
    .serviceCnt {
        padding: 30px 20px;
    }
    .col.colLeft {
        padding: 40px 0;
    }
    .amenities .amenities-cnt {
        padding: 0 100px;
    }
}
@media (max-width:991px){
    body {
        padding-top: 199px;
    }
    .esHeader {
        position: fixed;
        z-index: 4;
        top: 0;
        background-color: #fff;
        width: 100%;
    }
    .navbar-collapse {
        position: fixed;
        background-color: #ffff;
        width: 300px;
        height: 100vh;
        top: 110px;
        right: -300px;
        transition: .5s ease-in-out;
    }
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-nav .nav-item {
        padding: 15px 25px;
    }
    .navbar-nav .nav-item:first-child {
        padding-left: 25px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler[aria-expanded="true"]{
        border-color: var(--secondaryColor);
    }
    .esHeaderTopRight ul {
        display: none;
    }
    .infoBox {
        flex: 0 0 100%;
    }
    .infoBox:nth-child(2){
        margin-bottom: 0;
    }
    .twoclumn .col {
        flex: 0 0 100%;
    }
    .twoclumn h2 {
        font-size: 30px;
    }
    .twoclumn.leftImg figure {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .twoclumn.rightImg {
        flex-direction: column-reverse;
    }
    .twoclumn.rightImg figure {
        margin-left: 0;
        margin-bottom: 30px;
    }
    .esGallery h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .secHeading h2 {
        font-size: 30px;
    }
    .footerTop .col-2 {
        width: 20%;
    }
    .footerTop .col-8 {
        width: 60%;
    }
    .js-services .col-md-4 {
        width: 50%;
    }
    .faciBox {
        padding: 15px 30px;
    }
    .amenities .amenities-cnt {
        padding: 0 50px;
    }
    .amenities h2 {
        font-size: 30px;
    }
    .quickContact li {
        flex: 0 0 100%;
    }
    .quickContact li:last-child {
        margin-bottom: 0;
    }
    .footerTop .col-3,
    .footerTop .col-2 {
        width: 50%;
    }
}
@media (max-width:767px){
    body {
        padding-top: 145px;
    }
    .ptb60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .navbar-collapse {
        top: 84px;
    }
    .esHeaderTop {
        padding: 10px;
    }
    .esBrand {
        width: 140px;
    }
    .navbar {
        padding: 10px 0;
    }
    .twoclumn figure:after {
        width: 12px;
    }
    .twoclumn.leftImg figure:after {
        right: -12px;
    }
    .twoclumn.rightImg figure:after {
        left: -12px;
    }
    .esGallery {
        margin-top: 30px;
        padding-bottom: 5px;
    }
    .esGalleryHeader {
        padding-top: 30px;
        height: 380px;
    }
    .galList .col-4 {
        width: 50%;
    }
    .lb-caption h5 {
        font-size: 1rem;
    }
    .testimonials:before {
        left: 0;
        position: static;
        margin-bottom: 10px;
    }
    .testimonials:after {
        right: 0;
        position: static;
        float: right;
        background-position: right;
        margin-top: -120px;
    }
    .footerTop {
        padding: 30px 0;
    }
    .footerTop .col-2 {
        width: 50%;
        margin-bottom: 20px;
    }
    .footerTop .col-8 {
        width: 100%;
    }
    .copyWrite {
        padding: 10px 0;
    }
    .serviceBox {
        height: 340px;
    }
    .serviceBox h2 {
        font-size: 14px;
    }
    .serviceCnt {
        height: 340px;
        padding: 20px 20px;
        bottom: -375px;
    }
    .serviceCnt ul {
        padding-top: 15px;
        margin-top: 20px;
        font-size: 14px;
    }
    .serviceCnt ul li {
        margin-bottom: 5px;
    }
    .js-services {
        margin-top: 30px;
    }
    .js-facilities {
        margin-top: 30px;
    }
    .js-facilities .slick-dots {
        margin-top: 30px;
    }
    .technologyList {
        padding-top: 30px;
    }
    .amenities {
        margin-bottom: 0;
    }
    .amenities .col {
        flex:0 0 100%
    }
    .col.colLeft {
        order:2
    }
}
@media (max-width:567px){
    .testimonials:before {
        height: 30px;
        background-size: 50%;
    }
    .testimonials:after {
        background-size: 50%;
        height: 30px;
        /* background-position: right;
        margin-top: -120px; */
    }
    .js-services .col-md-4 {
        width: 100%;
    }
    .faciBox {
        padding: 0 15px;
        min-height: auto;
    }
    .js-facilities .slick-center:before, 
    .js-facilities .slick-center:after {
        display: none;
    }
    .technologyList .col-4 {
        width: 100%;
        margin-bottom: 30px;
    }
    .technologyList .col-4:last-child {
        margin-bottom: 0;
    }
    .col.colLeft {
        padding: 30px 0;
    }
    .amenities .amenities-cnt {
        padding: 0 20px;
    }
    .footerTop .col-3, 
    .footerTop .col-2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .js-hero-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .js-hero-slider .slick-prev {
        left: 0;
    }
    .js-hero-slider .slick-next {
        right: 0;
    }
}
.about-content h3{
    font-size: 18px;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    margin-bottom: 15px;
    font-weight: 700;

}
.about-content p{
    margin-bottom: 30px;

}
.about-content ul {
    padding-left: 30px;
    }
 .about-content ul li{
    margin-bottom: 20px;
    } 
    .about-content ul li strong{
    color: #73625e;
    } 
    .button-link{
     margin-bottom: 50px;

    }
  .button-link a{
    background-color: var(--primaryColor);
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    border: 0;
    font-family: var(--secondaryFont);
    min-width: 195px;

 }   
 .button-link a:hover{
   background-color: var(--secondaryColor);
   color: #fff;
 }
 .amenities-cnt h2{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;


}
.amenities-cnt p{
margin-bottom: 25px; 
}

 .why-choose{
    background-color: #d5fdbe;
    padding: 60px 0;
 }
 
 .why-choose ul li{
    margin-bottom: 20px;
    }
 .why-choose h3{
        font-size: 32px;
    font-weight: 600;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    margin-bottom: 30px;
    text-align: center;

 }
 