@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Font Size */
    --fs-70: 70px;
    --fs-64: 64px;
    --fs-60: 60px;
    --fs-56: 56px;
    --fs-52: 52px;
    --fs-48: 48px;
    --fs-44: 44px;
    --fs-40: 40px;
    --fs-36: 36px;
    --fs-32: 32px;
    --fs-28: 28px;
    --fs-24: 24px;
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-16: 16px;
    --fs-14: 14px;
    --fs-12: 12px;

    /* Colors */
    --theme-black: #fff;
    --dull-black: #333333;
    --cream: #FFE7C7;
    --soft-white: #F8F8F8;
    --play-fair : "Playfair Display", serif;
}

/* Responsive Font Scaling */
@media (max-width: 768px) {
    :root {
        --fs-70: 50px;
        --fs-64: 48px;
        --fs-60: 46px;
        --fs-56: 44px;
        --fs-52: 40px;
        --fs-48: 38px;
        --fs-44: 34px;
        --fs-40: 32px;
        --fs-36: 30px;
        --fs-32: 26px;
        --fs-28: 24px;
        --fs-24: 20px;
        --fs-20: 18px;
        --fs-18: 16px;
        --fs-16: 15px;
        --fs-14: 13px;
        --fs-12: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-70: 40px;
        --fs-64: 38px;
        --fs-60: 36px;
        --fs-56: 34px;
        --fs-52: 32px;
        --fs-48: 30px;
        --fs-44: 28px;
        --fs-40: 26px;
        --fs-36: 24px;
        --fs-32: 22px;
        --fs-28: 20px;
        --fs-24: 18px;
        --fs-20: 16px;
        --fs-18: 15px;
        --fs-16: 14px;
        --fs-14: 12px;
        --fs-12: 12px;
    }
}

/* Reset / Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--theme-black);
    /* background: var(--soft-white); */
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography utilities */
.fs-70 {
    font-size: var(--fs-70);
}

.fs-64 {
    font-size: var(--fs-64);
}

.fs-60 {
    font-size: var(--fs-60);
}

.fs-56 {
    font-size: var(--fs-56);
}

.fs-52 {
    font-size: var(--fs-52);
}

.fs-48 {
    font-size: var(--fs-48);
}

.fs-44 {
    font-size: var(--fs-44);
}

.fs-40 {
    font-size: var(--fs-40);
}

.fs-36 {
    font-size: var(--fs-36);
}

.fs-32 {
    font-size: var(--fs-32);
}

.fs-28 {
    font-size: var(--fs-28);
}

.fs-24 {
    font-size: var(--fs-24);
}

.fs-20 {
    font-size: var(--fs-20);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-14 {
    font-size: var(--fs-14);
}

.fs-12 {
    font-size: var(--fs-12);
}

.text-black {
    color: var(--theme-black) !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-dull {
    color: var(--dull-black) !important;
}

.text-cream {
    color: var(--cream) !important;
}

.text-soft {
    color: var(--soft-white) !important;
}

.bg-black {
    background: var(--theme-black) !important;
}

.bg-dull {
    background: var(--dull-black) !important;
}

.bg-cream {
    background: var(--cream) !important;
}

.bg-soft {
    background: var(--soft-white) !important;
}

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

p {
    font-size: var(--fs-16);
    color: var(--dull-black);
    margin-bottom: 1rem;
}

button {
    border: 0;
    background: none;
    outline: none;
}

a {
    text-decoration: none;
    color: var(--theme-black);
}

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

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

.padding {
    padding: 60px 0;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 108px;
    background: var(--theme-black);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Hidden state */
header.hide {
    transform: translateY(-100%);
}

main {
    margin-top: 108px;
}

nav .navbar-brand img {
    width: 103px;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--cream);
}

.nav-link {
    font-size: var(--fs-16);
    color: #000;
    text-transform: capitalize;
}

.contact {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--cream);
    padding: 18px 22px;
    font-size: var(--fs-16);
    cursor: pointer;
    text-transform: capitalize;
}

/* hero section */
.hero {
    position: relative;
    height: calc(100vh - 108px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border: none;
    outline: none;
}

/* Gradient Overlay */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(257.21deg, rgba(0, 0, 0, 0) 29.36%, rgba(0, 0, 0, 0.8) 92.79%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .hero-content h1 {
    color: white;
    font-size: var(--fs-52);
    text-transform: capitalize;
}

.hero .hero-content p {
    color: white;
    font-size: var(--fs-16);
    text-transform: capitalize;
}

.read {
    font-size: var(--fs-16);
    background: white;
    width: fit-content;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
}

/* about */
h3 {
    font-family: Alex Brush;
    font-size: var(--fs-36);
    text-transform: capitalize;
}

h2 {
    font-size: var(--fs-48);
    text-transform: capitalize;
}

.read.bg-black img {
    filter: invert(1) brightness(1);
}

.off_card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.off_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.off_card:hover img {
    transform: scale(1.05);
}

.off_card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

.off_card .off_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    transform: translateY(calc(100% - 60px));
    transition: all 300ms ease-in-out;
    z-index: 2;
}

.off_card:hover .off_content {
    transform: translateY(0);
}

.off_card .off_content h4 {
    font-size: var(--fs-20);
    text-transform: capitalize;
}

.off_card .off_content p {
    margin: 0;
    color: white;
}

.celebrate {
    min-height: 500px;
    display: flex;
    align-items: center;
    background:  url('../img/new/Frame 68.png') no-repeat;
    background-size: cover;
    background-position: left;
}

.port_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.port_grid .gird_img {
    height: 440px;
    overflow: hidden;
}

.div1,
.div2,
.div3,
.div4 {
    position: relative;
    overflow: hidden;
}

.port_grid .gird_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: top left;
    transition: all 0.5s ease-in-out;
}

.div2 {
    grid-column: span 2 / span 2;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
}

.div4 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.grid_content {
    position: absolute;
    max-width: 350px;
    top: 50%;
    left: -100%;
    transform: translate(-100%, -50%);
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.grid_content h5 {
    font-size: var(--fs-20);
    color: white;
    text-transform: capitalize;
}

.grid_content p {
    font-size: var(--fs-14);
    color: white;
    text-transform: capitalize;
}

.div1:hover .grid_content {
    top: 50%;
    left: 4px;
    transform: translate(4px, -50%);
}

.div2:hover .grid_content {
    top: 50%;
    left: 4px;
    transform: translate(4px, -50%);
}

.div3:hover .grid_content {
    top: 50%;
    left: 4px;
    transform: translate(4px, -50%);
}

.div4:hover .grid_content {
    top: 50%;
    left: 4px;
    transform: translate(4px, -50%);
}

.hov:hover .gird_img img {
    transform: scale(1.2);
    filter: grayscale(100%);
}

.modern {
    background: var(--soft-white);
}

/* enquiry */
.enquiry {
    background: url('../img/sdc.png') no-repeat center;
    background-size: cover;
}

.enq_form {
    background: #fff;
    box-shadow: 0px 12px 12px 0px #00000040;
    padding: 30px;
}

.enq_form .form-floating .form-control {
    background: #F8F8F8;
}

.date-picker-input-group {
    padding: 1rem .75rem !important;
    background-color: #F8F8F8 !important;
}

.enq_form .form-floating .form-select {
    padding: 1rem .75rem;
    background-color: #F8F8F8;
    color: #6c6f72;
}

.form-control:focus {
    color: var(--theme-black);
    background-color: #F8F8F8;
    border-color: #FFE7C7;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 231, 199, 0.25);
}

.feedback {
    background: #fff;
}

.test {
    padding: 20px;
    background: white;
    border-radius: 4px;
    border: 1px solid #E7EAEC;
    overflow: hidden;
    position: relative;
}

.test .stars {
    position: absolute;
    right: 20px;
    top: 20px;
}

.user {
    width: 60px;
    aspect-ratio: 1;
    margin-bottom: 20px;
    overflow: hidden;
}

.user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-nav {
    padding-bottom: 30px;
    display: flex;
    justify-content: end;
    gap: 10px;
}

.swiper-nav div span {
    font-size: var(--fs-16);
    border: 1px solid #133240;
    background: white;
    padding: 8px 12px;
    transition: opacity 0.5s ease-in-out;
}

.swiper-nav .swiper-button-disabled {
    opacity: 0.5;
}

/* footer */
footer {
    background: var(--theme-black);
    color: white;
}

footer ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

footer ul li a {
    color: white;
}

/* -------- About Us Page */
.breadcrumb {
    background: linear-gradient(257.21deg, rgba(0, 0, 0, 0) 29.36%, rgba(0, 0, 0, 0.8) 92.79%), url('../img/abt-banner.jpg') no-repeat center;
    background-size: cover !important;
    padding: 100px 0;
}

.breadcrumb.bread02 {
    background: linear-gradient(257.21deg, rgba(0, 0, 0, 0) 29.36%, rgba(0, 0, 0, 0.8) 92.79%), url('../img/abt-banner.jpg') no-repeat center;
}

.breadcrumb.bread03 {
    background: linear-gradient(257.21deg, rgba(0, 0, 0, 0) 29.36%, rgba(0, 0, 0, 0.8) 92.79%), url('../img/new/2025-09-20.webp') no-repeat center;
        height: 500px;
}
.breadcrumb.bread04 {
    background: linear-gradient(257.21deg, rgba(0, 0, 0, 0) 29.36%, rgba(0, 0, 0, 0.8) 92.79%), url('../img/abt-banner.jpg') no-repeat center;
}

.breadcrumb h1 {
    color: white;
    font-size: var(--fs-52);
}

.team_card {
    width: 100%;
    /* height: 400px; */
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.team_card::after {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 77.49%, rgba(0, 0, 0, 0.8) 100%);
}

.team_card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_card .content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.service_card {
    box-shadow: 12px 12px 43px #0001;
    padding: 25px;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.service_card img {
    width: 80px;
    aspect-ratio: 1;
}

.service_card h5,
.service_card p,
.service_card img {
    transition: inherit;
}

.service_card h5 {
    text-transform: capitalize;
    font-size: var(--fs-24);
}

.service_card p {
    font-family: Poppins;
}

.service_card:hover p {
    color: white;
}

.service_card:hover {
    background: #000;
    color: #fff;
}

.service_card:hover img {
    filter: invert(1) brightness(1);
}

lite-youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

lite-youtube>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}


.container.desktop-header {
    display: flex;
    flex-direction: column;
}
a.nav-link {
    font-family: 'SF Pro Display', sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.5rem;
    text-decoration: inherit;
    opacity: .9;
    font-size: 18px;
    letter-spacing: 1px;
}
a.nav-link:hover {
    color: black !important;
}

/*banner - home page*/
.image-hero {
    padding: 0px 0;
    background: #fff;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    margin: 0 auto;
    position: relative;
}

.hero-side {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-side img {
    width: 100%;
    object-fit: cover;
    
}
img.img-top {
    height: 480px;
}

.hero-left .img-bottom {
    margin-left: 58%;
    height: 200px;
    width: 250px;
    margin-top: -30%;
}
.hero-right .img-top {
    margin-right: 40px;
}
.hero-right .img-bottom {
    width: 153.33px;
    height: 184px;
    margin-left: 8%;
    margin-top: -30%;
}
.hero-center {
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center h1 {
    font-size: 37px;
    font-family: var(--play-fair);
    
    color: #000;
    font-weight: 600;
}

.hero-center p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif !important;
    font-weight: 200;
    line-height: 1.8;
    letter-spacing: 1px;
    width: 88%;
    text-align: center;
}

.btn-hero {
    padding: 12px 28px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    transition: 0.3s ease;
    font-family: "Inter", sans-serif !important;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: #333;
    color: #fff;
}
@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-side,
    .hero-center {
        width: 100%;
    }

    .hero-left .img-bottom,
    .hero-right .img-top {
        margin: 0;
    }
}
.counter-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.counter-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.counter-item {
    width: 25%;
}

.counter-item h2 {
    font-size: 48px;
    font-family: var(--play-fair);
    font-weight: 600;
       margin-bottom: 0px !important;
    color: #060606 !important;
}

.counter-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}

.counter-content {
    max-width: 700px;
    margin: 0 auto;
}

.counter-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}

.btn-counter {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s ease;
    
}
.counter-content a img {
    width: 20px;
    height: 20px;
}
.btn-counter:hover img {
    filter: brightness(0) invert(1);
}
.btn-counter:hover {
    background: #333;
    color: #fff;
}
@media (max-width: 991px) {
    .counter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .counter-item {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .counter-item {
        width: 100%;
    }
}.smile-gallery {
    padding: 20px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Center Text */
.gallery-center {
    text-align: center;
}

.gallery-center h2 {
    font-family: var(--play-fair);
    font-size: 40px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.gallery-center p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}

/* Footer Text */
.gallery-footer {
    text-align: center;
    margin-top: 20px;
    color: #000;
    font-size: 14px;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }
}
.gallery-item {
    position: relative;
}
.white-mark {
    height: 207px;
    width: 207px;
    position: absolute;
    z-index: 9999999 !important;
    bottom: -41%;
    right: -22%;
}
.white-mark-second {
    height: 167px;
    width: 167px;
    position: absolute;
    z-index: 9999999 !important;
    bottom: -38%;
    right: -26%;
}
.white-mark-third {
    height: 123px;
    width: 123px;
    position: absolute;
    z-index: 9999999 !important;
    bottom: 0%;
    right: -18%;
}
.white-mark-fourth{

    height: 207px;
    width: 207px;
    position: absolute;
    z-index: 9999999 !important;
    bottom: -45%;
    left: -28%;
}
h2.cel-tit {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    font-family: var(--play-fair);
}

p.cell-para {
    font-size: 19px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif !important;
    width: 53%;
}
a.cell-but {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s ease;
}
section.modern-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.modern-content {
    max-width: 700px;
    margin: 0 auto;
}
.modern-content p, section.feedback.padding p, .mission-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}
.modern-content h2, .mission-content h2 {
    line-height: 56px;
    font-size: 40px;
    font-family: var(--play-fair);
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}
section.feedback.padding h4 {
    font-size: 40px;
    font-family: var(--play-fair);
    color: #000;
    
    font-weight: 600;
}
button.btn.read.float-end {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    border: 1px solid #000;
    padding: 8px 16px;
    font-family: "Inter", sans-serif !important;
}.user {
    width: 50px !important;
    height: 50px !important;
    aspect-ratio: 1;
    margin-bottom: 20px;
    overflow: hidden;
}
.test h5 {
    color: #060606;
    font-family: var(--play-fair) !important;
}.star-val {
    display: flex;
    align-items: center;
    gap: 6px;
}
.star-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.star-val p {
    margin-bottom: 0px !important;
}
.star-val p {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
}   
.test{
    height: 349px;
}
footer.padding {
    background: #000;
        padding-bottom: 0px;
}
footer.padding p {
    font-size: 14px;
    width: 100%;
    font-family: "Inter", sans-serif !important;
    font-weight: 200;
    letter-spacing: 1px;
}ul.social-media {
    display: flex;
    gap: 10px;
}
ul.social-media li a img {
    height: 24px;
}
ul.loc li {
    font-size: 14px;
    width: 100%;
    font-family: "Inter", sans-serif !important;
    font-weight: 200;
    letter-spacing: 1px;
}
.globo-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.row.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.globo-logo img {
    width: 191px;
}
h2.fs-40, h3.aos-init.aos-animate, h2.aos-init.aos-animate{
    color: #000;
}
h2.aos-init.aos-animate {
    font-size: 37px;
    font-family: var(--play-fair);
    color: #000;
    font-weight: 600;
}
p.text-center.mt-3.aos-init.aos-animate {
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}
ul.loc li img {
    filter: brightness(0) invert(1);
}
section.mission-section {
    padding-top: 50px;
}
.mission-content {
    display: flex;
    text-align: justify;
    align-items: center;
}
.con a {
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}
.con {
    color: #000;
}
.con-det {
    display: flex;
    margin-top: 40px;

}
.col-md-6.con h4 {
    font-size: 20px;
     font-family: var(--play-fair);
}
.enq_form button.read.mt-4.bg-black, button.read.mt-4.enq-btn {
    background: #000 !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
        padding: 8px 40px;
}
.modal-header {
    border-bottom: none !important;
}
p.text-center.enq-p.aos-init.aos-animate {
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}
.form-floating>label, .enq_form .form-floating .form-select, label.form-label, .form-control{
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #252b36;
    line-height: 1.8;
    /*margin-bottom: 20px;*/
    font-weight: 200;
    letter-spacing: 1px;
}


/*mobile banner*/
img.img-top.mob {
    height: 250px;
    width: 370px;
}
.hero-center.mob {
    padding-top: 16%;
}
.hero-side.hero-left img.img-bottom.mob {
    position: absolute;
    right: 0;
    top: 24%;
    height: 150px;
    width: 200px;
}
@media (max-width: 767px) {
    .counter-content p, .modern-content p, section.feedback.padding p, .mission-content p{
            text-align: justify;
    }
    .white-mark {
        height: 123px;
        width: 207px;
        position: absolute;
        z-index: 9999999 !important;
        bottom: -3%;
        right: -29%;
    }
    .white-mark-second {
        height: 123px;
        width: 167px;
        position: absolute;
        z-index: 9999999 !important;
        bottom: -2%;
        left: -83px;
    }
    .modern-content h2, section.feedback.padding h4, h2.cel-tit{
        font-size: 28px;
        line-height: 41px;
        text-align: left;
    }
   .mob-ft {
        padding-left: 30px !important;
    
    }
    .mob-loc{
        margin-bottom: 20px !important;
    }
    .col-lg-6.col-md-6.mb-5.mb-lg-0.globo-logo p {
        text-align: left !important;
    }
    .gallery-center h2, h2.aos-init.aos-animate{
      font-size: 28px;  
    }
    h2.cel-tit {
        margin-top: 28%;
    }
    p.cell-para {
        width: 100%;
        text-align: left;
    }
    p.abt-para {
        text-align: justify !important;
    }
    .test
     {
        height: auto;
    }
    .col-lg-6.mt-3.mt-lg-0.d-lg-none {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .test-next, .test-prev {
        opacity: 1.5;
        color: #000000;
        font-size: 16px;
    
    }
    .con-det {
        display: flex;
         margin-top: 0px; 
        flex-direction: column;
    }
    .con {
        color: #000;
        margin-bottom: 25px;
    }
    .col-lg-6.col-md-6.mb-5.mb-lg-0.globo-logo {
        margin-bottom: 0px !important;
    }
    .globo-logo p {
        margin-top: 0px !important;
    }
    .col-lg-3.col-md-6.mb-5.mb-lg-0.mob-foot-bot {
        margin-bottom: 0px !important;
    }
    .mob-foot-bot {
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }
    .counter-wrapper {
    display: flex;
    justify-content: center !important;
    margin-bottom: 60px;
}
ul.navbar-nav.mx-auto {
    padding-top: 22px;
}
}
section.celebrate-mob {
    min-height: 600px;
    display: flex;
    background: url(../img/new/rtvg.png) no-repeat;
    background-size: cover;
    background-position: left;
    align-items: flex-start;
}
button.read.rev-btn {
    background: #000 !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 8px 40px;
}
button.btn.btn-secondary {
    background: #6b7785 !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 8px 40px;
}
.service_card h5 {
    color: #060606;
    font-family: var(--play-fair) !important;
}
.service_card p{
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: #252b36;
    line-height: 1.8;
    /*margin-bottom: 20px;*/
    font-weight: 200;
    letter-spacing: 1px;
}
.service_card:hover h5{
        color: white;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
    border: none !important;
}
section.hero-mob{
     min-height: 600px;
    display: flex;
    background: url(../img/new/Frame-mob.png) no-repeat;
    background-size: cover;
    background-position: left;
    align-items: flex-start;
}
.col-lg-7.mob-ban {
    display: flex;
    flex-direction: column;
    align-items: center;
}
textarea#message, input#name, input#Mobile, input#floatingInput {
    color: #000 !important;
    opacity: 1;
}