@keyframes blurInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", "Helvetica", sans-serif;
    color: #333;
    background-color: #faf8f5;
}

.marquee-container {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.6;
    padding: 2px 0;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 240s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img.whatsapp-icon {
    width: 30px;
    height: 30px;
}

@keyframes price-blink {
    50% {
        color: #ffa500;
    }
}

.animate-price-blink {
    animation: price-blink 1s infinite;
}

.fixed_header.sticky {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: 1s all;
}

.fixed_header.sticky .logo_normal {
    display: none;
}

.fixed_header.sticky .logo_sticky {
    display: block;
}

.fixed_header.sticky nav a:not(.head-call) {
    color: #333 !important;
}

.fixed_header.sticky .hamburger__inner,
.fixed_header.sticky .hamburger__inner::before,
.fixed_header.sticky .hamburger__inner::after {
    background-color: #333;
}

.fixed_header.sticky .head-call {
    background-color: #4285F4;
    color: white !important;
}

.main-menu {
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.layer {
    transition: opacity 0.1s linear, visibility 0.1s linear;
}

.main-menu.show {
    transform: translateX(0);
}

.layer.layer-is-visible {
    opacity: 1;
    visibility: visible;
}

.hamburger_2:hover .hamburger__inner {
    animation: 0.4s burger;
}

.hamburger_2:hover .hamburger__inner:before {
    animation: 0.4s 0.1s burger;
}

.hamburger_2:hover .hamburger__inner:after {
    animation: 0.4s 0.2s burger;
}

@keyframes burger {

    0%,
    100% {
        transform-origin: 0 100%;
        transform: scale(1, 1);
    }

    50% {
        transform-origin: 0 100%;
        transform: scale(0, 1);
    }
}

.form-floating {
    position: relative;
}

.form-floating>.form-control:placeholder-shown~label {
    opacity: 0.65;
    transform-origin: 0 0;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: #6b7280;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>.form-control {
    padding: 1.625rem 0.75rem 0.625rem;
}

.form-floating>.form-select~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.mfp-bg {
    z-index: 1040 !important;
}

.mfp-wrap {
    z-index: 1050 !important;
}

#exampleModal .modal-dialog {
    z-index: 1060 !important;
}

.max-h-40 {
    max-height: 6rem;
}

.sticky_note {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    background: #4285F4;
    margin-left: -1px;
}

.sticky_note a {
    display: block;
    font-size: 24px;
    color: #fff;
    line-height: 26px;
    padding: 12px 15px;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    cursor: pointer;
}

.sticky_note a.call_now {
    background: #f48220;
}

.sticky_note a.whatsapp {
    background: #42e937d6;
    border-bottom: none !important;
}

.sticky_note a i {
    margin-bottom: 5px;
    display: block;
}

.sticky_note a span {
    display: block;
    font-size: 13px;
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    #whatsapp-float-link {
        display: none;
    }

    .sticky_note {
        top: inherit;
        bottom: 0;
        right: 0;
        transform: translate(0);
        display: flex;
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 768px) {
    .sticky_note a {
        padding: 10px;
        font-size: 16px;
        width: 33.33%;
    }
}

@media only screen and (max-width: 768px) {
    .sticky_note a i {
        margin-bottom: 5px;
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .sticky_note a span {
        font-size: 11px;
    }
}

.container {
    width: 100%;
    max-width: 1366px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.designer-developer-wrap ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    list-style: none;
}

.designer-developer-wrap ul li {
    width: 16.66%;
    position: relative;
    padding: 0 12px;
}

.designer-box-wrap {
    position: relative;
}

.designer-developer-wrap ul li:first-child .designer-box-shape,
.designer-developer-wrap ul li:nth-child(2) .designer-box-shape,
.designer-developer-wrap ul li:nth-child(3) .designer-box-shape {
    transform: scaleX(-1);
}


.container i {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}


.designer-developer-sec {
    background: linear-gradient(360deg, #fff 0, #d9e7ff 100%);
}

.new-common-sec {
    padding-top: 50px;
    padding-bottom: 50px;
}

.designer-box-con {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 45px 0 30px;
}

.designer-box-icon {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #4285F4;
    display: flex;
    justify-content: center;
}

.designer-box-icon i {
    margin: auto;
    min-height: 72px;
    object-fit: contain;
    font-size: 45px;
    color: white;
    padding-top: 10px;
}

.designer-box-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: white;
}

.designer-box-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    padding: 10px 25px 0;
    border-top: 1px solid #4285F4;
}

@media only screen and (max-width: 568px) {
    .designer-developer-wrap ul li:nth-child(2) .designer-box-shape {
        transform: scaleX(1);
    }
}

@media only screen and (max-width: 1299px) {
    .designer-box-title {
        font-size: 16px;
        padding: 16px 15px 0;
    }
}

@media only screen and (max-width: 568px) {
    .designer-box-title {
        font-size: 14px;
        padding: 10px 10px 0;
    }
}

@media only screen and (max-width: 568px) {
    .designer-box-icon i {
        height: 60px;
        min-height: inherit;
    }
}

@media only screen and (max-width: 568px) {
    .designer-box-icon {
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 1299px) {
    .designer-box-con {
        padding: 40px 0 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .designer-box-con {
        padding: 80px 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .designer-box-con {
        padding: 50px 0 30px;
    }
}

@media only screen and (max-width: 568px) {
    .designer-box-con {
        padding: 60px 0 30px;
    }
}

@media (max-width: 391px) {
    .designer-box-con {
        padding: 35px 0 30px;
    }
}


@media only screen and (max-width: 1199px) {
    .designer-box-shape i {
        width: 100%;
    }
}


@media only screen and (max-width: 1199px) {
    .designer-developer-wrap ul li {
        width: 33.33%;
        margin-bottom: 25px;
    }
}


@media only screen and (max-width: 568px) {
    .designer-developer-wrap ul li {
        width: 50%;
    }
}


@media screen and (max-width: 1199px) {
    .new-common-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .new-common-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 568px) {
    .new-common-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 568px) {
    .designer-developer-sec.new-common-sec {
        padding-bottom: 50px;
    }
}

#footer-bottom {
    background: linear-gradient(45deg, black, rgba(75, 75, 75, 0.5));
    background-position: bottom;
    background-size: cover;
}

input {
    text-transform: uppercase;
}

.dholera-vid .dholera-vid-inner iframe {
    aspect-ratio: 1200 / 675;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 1200px;
}

.dholera-vid-inner {
    text-align: center;
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: blurInUp;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.boxShadowCustom {
    box-shadow: 8px 8px 12px 0 rgba(0, 0, 0, 0.1),
        -4px -5px 8px 0 rgba(255, 255, 255, 0.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-400%);
    }
}

.animate-marquee {
    animation: marquee linear infinite;
    display: inline-flex;
    will-change: transform;
}