body {
    font-family: 'Open Sans',sans-serif !important;
}
h1 {
    font-family: 'Open Sans',sans-serif !important;
}
.animated-text {
    display: inline-block;
    animation: flicker 2s infinite alternate;
}
@media (max-width: 767px) {
    .custom-carousel-height {
        height: 550px !important; /* Set height to 550px for mobile view */
    }
}
.custom-carousel-height {
    height: 880px !important; /* Set height to 550px for mobile view */
}
.carousel-img1 {
    object-fit: cover; /* Ensures the image maintains aspect ratio while filling the height */
    height: 300px; /* Set the fixed height */
}
/* Glowing button effect */
.glow-on-hover {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: #bd9234;
    border: 2px solid #bd9234;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.about-description {
    background-color: #f8f9fa;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    word-spacing: normal; /* Ensure normal word spacing */
}

@media (max-width: 576px) {
    .about-description {
        font-size: 0.9rem !important; /* Mobile view ke liye font size thoda kam kare */
        line-height: 1.4 !important; /* Mobile view ke liye line height adjust kare */
        word-spacing: -3px !important; /* Mobile view ke liye words ke beech ka gap aur kam kare */
    }
}
@media (max-width: 576px) {
    .viewDetailsBtn {
        font-size: 8px !important; /* Smaller font size */
        padding: 3px 8px !important; /* Smaller padding for reduced height */
        line-height: 2 !important; /* Adjust line height for compact look */
    }
}
    .glow-on-hover:hover {
        background: #f6f2e3;
        color: #bd9234;
        box-shadow: 0 0 10px #bd9234, 0 0 20px #bd9234, 0 0 30px #bd9234;
    }

/* Blinking text effect */
.blinking-text {
    animation: blink-animation 1.0s infinite step-start;
}

@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}

/* Define the fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* QR Code Section Title Styles */
.qr-title {
    font-size: 1.25rem; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    color: #bd9234; /* Set color to match your design theme */
    text-align: center; /* Center the title text */
    margin-top: 10px; /* Add some space above */
    margin-bottom: 0; /* Remove space below title */
    letter-spacing: 1px; /* Add spacing between letters for a more stylish look */
}
@keyframes bounceIn {
    0% {
        opacity: 0.9;
        transform: scale(0.5) translateY(-50px);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) translateY(0);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.2);
    }
}

.bounce-in-text {
    display: block;
    animation-duration: 3s;
    font-size: 16px;
}

/* Add a class for animated text */
.animated-text1 {
    color:white;
    animation: fadeIn 4s ease-in-out; /* Fade in over 1.5 seconds */
    opacity: 5; /* Start invisible */
}
/* Define the keyframes for the blinking effect */
/*@keyframes blink {
    0% {
        opacity: 2;
    }

    50% {
        opacity: 3;
    }

    100% {
        opacity: 6;
    }
}*/

/* Apply the blinking effect after the first animation completes */
/*.animated-text1 {
    animation: fadeInText 2s ease-in-out, blink 1s step-start 2s infinite;
}*/

/* Define the first animation (for example, a fade-in animation) */
@keyframes fadeInText {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flicker {
    0% {
        color: white;
        opacity: 0.7;
    }

    20% {
        color: aqua;
        opacity: 1;
    }

    40% {
        color: yellow;
        opacity: 1;
    }

    60% {
        color: lime;
        opacity: 1;
    }

    80% {
        color: orange;
        opacity: 0.9;
    }

    100% {
        color: red;
        opacity: 0.7;
    }
}
/* Glow effect animation */
@keyframes glow {
   /* 0% {
        box-shadow: 0 0 5px #bd9234, 0 0 10px #bd9234, 0 0 20px #bd9234;
    }

    50% {
        box-shadow: 0 0 20px #ffc107, 0 0 30px #ffc107, 0 0 40px #ffc107;
    }

    100% {
        box-shadow: 0 0 5px #bd9234, 0 0 10px #bd9234, 0 0 20px #bd9234;
    }*/
}

/* Button glow-on-hover */
.glow-on-hover {
    color: white;
    animation: glow 2s infinite;
    transition: transform 0.3s;
}

    /* Hover effect for bounce */
    .glow-on-hover:hover {
        transform: scale(1.1);
        animation: glow 1.5s infinite;
    }
/* Button Styles */
.request-call-back-btn {
    background-color: transparent;
    border: 2px solid #bd9234;
    color: #bd9234;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

    .request-call-back-btn i {
        margin-right: 10px;
    }

    /* Hover effect for button */
    .request-call-back-btn:hover {
        background-color: #bd9234;
        color: white;
    }

/* Zoom effect */
.zoom-text {
    display: inline-block;
    animation: zoom 2s infinite;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Hanging text effect */
.hanging-text {
    display: inline-block;
    animation: hanging 2s infinite alternate;
}

@keyframes hanging {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

/* Rainbow effect for text */
.rainbow-icon {
    display: inline-block;
    animation: rainbow 4s infinite linear;
}

@keyframes rainbow {
    0% {
        color: red;
    }

    14% {
        color: orange;
    }

    28% {
        color: yellow;
    }

    42% {
        color: green;
    }

    57% {
        color: blue;
    }

    71% {
        color: indigo;
    }

    85% {
        color: violet;
    }

    100% {
        color: red;
    }
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

.hover-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.description-content {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 18px;
    color: #333;
}
.slide-in-left {
    animation: slideInLeft 1.5s ease-out;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        color: transparent;
    }

    50% {
        color: #bd9234;
    }

    100% {
        color: transparent;
    }
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
/* Gradient background for the title */
.gradient-title {
    font-size: 28px; /* Larger font size for emphasis */
    font-weight: 700; /* Bold font weight */
    background: linear-gradient(45deg, #BF953F,#FCF6BA,#cf9e34, #FBF5B7, #AA771C);
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Soft shadow for better contrast */
    animation: fadeIn 1s ease-in-out; /* Subtle animation on page load */
}

/* Styling for the color span */
.highlight-color {
    color: #bd9234 !important; /* Ensures the secondary color has a consistent look */
    font-size: 26px;
    font-weight: 600;
    padding-left: 5px;
    letter-spacing: 1px;
}

/* Optional: Adding subtle hover effect */
.gradient-title:hover {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
    transition: text-shadow 0.3s ease-in-out;
}
/* Bounce Effect */
/* Bounce Effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Zoom-In and Zoom-Out Effect */
@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Blinking Effect */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Apply Bounce, Zoom, and Blinking Effects */
.bounce-zoom-text {

    display: inline-block;
    animation: bounce 2s ease-in-out infinite, zoom 2.5s ease-in-out infinite, blink 0.2s step-start ;
}


/* Animation for fading in the text */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text1 {
    animation: blink 3s ease infinite;
}

.carousel-item h3 {
    animation: blink 1s step-end infinite;
}
callus {
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px 0;
    line-height: 18px;
    letter-spacing: 0.03em;
    margin-top: 25px;
    margin-bottom: 0;
    content: "";
    background-repeat: no-repeat;
    -webkit-text-fill-color: transparent;
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    background-image: -webkit-linear-gradient(transparent, transparent), url(../img/1.gif);
    background-position: left;
    background-size: 125%;
}

@media (max-width: 767px) {
    #requestForm {
        width: 100%;
    }
}


h2 {
    font-family: 'Open Sans',sans-serif !important;
}

h3 {
    font-family: 'Open Sans',sans-serif !important;
}

h4 {
    font-family: muliextralight-ywl02 !important;
}

h5 {
    font-family: mulibold-yzevy !important;
}

h6 {
    font-family: Futura,Trebuchet MS,Arial,sans-serif !important;
}

p {
    font-family: 'Open Sans',sans-serif !important;
}

span {
    font-family: mulisemibold-bw0dg !important;
}

div {
    font-family: mulisemibold-bw0dg !important;
}

label {
    font-family: mulibold-yzevy !important;
}

input {
    font-family: 'Open Sans',sans-serif !important;
}

b {
    font-family: 'Open Sans',sans-serif !important;
}

small {
    font-family: 'Open Sans',sans-serif !important;
}

strong {
    font-family: mulibold-yzevy !important;
}

button {
    font-family: 'Open Sans',sans-serif !important;
}

.navbar-brand img {
    width: 120px;
}

.navbar-nav {
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    padding: 0.7em;
}

@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 200px;
    }

    .navbar-brand {
        margin-right: 0;
        padding: 1em;
    }
}

.bg-footer {
    background-color: #33383c;
    padding: 50px 0 30px;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: #acacac;
    line-height: 40px;
    font-size: 14px;
    transition: all 0.5s;
}

    .footer-link a:hover {
        color: #1bbc9b;
    }

.contact-info {
    color: #acacac;
    font-size: 14px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.facebook {
    background-color: #4e71a8;
    color: #ffffff;
}

.twitter {
    background-color: #55acee;
    color: #ffffff;
}

.google {
    background-color: #d6492f;
    color: #ffffff;
}

.apple {
    background-color: #424041;
    color: #ffffff;
}

.footer-alt {
    color: #acacac;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: '';
    width: 25px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #1bbc9b;
}

@import url('https://fonts.googleapis.com/css?family=Roboto');
@font-face {
    font-family: 'muliextralightitalic-9ykbz';
    src: url('../muliextralightitalic-9ykbz.ttf') format('truetype');
}
@font-face {
    font-family: 'muliextralight-ywl02';
    src: url('../muliextralight-ywl02.ttf') format('truetype');
}
@font-face {
    font-family: 'muliitalic-rpvnv';
    src: url('../muliitalic-rpvnv.ttf') format('truetype');
}
@font-face {
    font-family: 'mulibold-yzevy';
    src: url('../mulibold-yzevy.ttf') format('truetype');
}
@font-face {
    font-family: 'mulisemibold-bw0dg';
    src: url('../mulisemibold-bw0dg.ttf') format('truetype');
}
body {
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

i {
    margin-right: 10px;
}

.navbar {
    background: #fff;
}

    .navbar .navbar-nav .nav-link {
  /*      color: #000;*/
    }

.btn-outline-dark {
    border-radius: 0;
}
/* Adjustments for mobile devices */
@media (max-width: 768px) {
    .about-description {
        font-size: 14px; /* Slightly smaller text for smaller screens */
        padding: 15px; /* Reduced padding for compact design */
    }
}
    .btn-outline-dark:focus {
        box-shadow: none;
    }

@media screen and (max-width: 768px) {
    .btn-outline-dark {
        border: none;
        padding: 0;
        outline: none;
    }

        .btn-outline-dark:hover {
            background: none;
            color: gray;
        }
}

.menu-nav {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: blue;
    border-color: blue;
}

.custom-control-input:checked ~ .custom-control-label::after {
    background-color: blue;
}

.custom-control-input {
    width: 15px;
    height: 15px;
}



a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

    a,
    a:active,
    a:focus {
        color: #6f6f6f;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .2s;
        -ms-transition-duration: .2s;
        -moz-transition-duration: .2s;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
    }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
    /* min-height: 100vh;*/
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

    .sec-title .title {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 24px;
        color: #00aeef;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .sec-title h2 {
        position: relative;
        display: block;
        font-size: 40px;
        line-height: 1.28em;
        color: #222222;
        font-weight: 600;
        padding-bottom: 18px;
    }

        .sec-title h2:before {
            position: absolute;
            content: '';
            left: 0px;
            bottom: 0px;
            width: 50px;
            height: 3px;
            background-color: #d1d2d6;
        }

    .sec-title .text {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #848484;
        font-weight: 400;
        margin-top: 35px;
    }

    .sec-title.light h2 {
        color: #ffffff;
    }

    .sec-title.text-center h2:before {
        left: 50%;
        margin-left: -25px;
    }

.list-style-one {
    position: relative;
}

    .list-style-one li {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #222222;
        font-weight: 400;
        padding-left: 35px;
        margin-bottom: 12px;
    }

        .list-style-one li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0px;
            display: block;
            font-size: 18px;
            padding: 0px;
            color: #ff2222;
            font-weight: 600;
            -moz-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1.6;
            font-family: "Font Awesome 5 Free";
        }

        .list-style-one li a:hover {
            color: #44bce2;
        }

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #00aeef;
}

    .btn-style-one:hover {
        background-color: #0794c9;
        color: #ffffff;
    }

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

    .about-section .sec-title {
        margin-bottom: 45px;
    }

    .about-section .content-column {
        position: relative;
        margin-bottom: 50px;
    }

        .about-section .content-column .inner-column {
            position: relative;
            padding-left: 30px;
        }

    .about-section .text {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 26px;
        color: #848484;
        font-weight: 400;
    }

    .about-section .list-style-one {
        margin-bottom: 45px;
    }

    .about-section .btn-box {
        position: relative;
    }

        .about-section .btn-box a {
            padding: 15px 50px;
        }

    .about-section .image-column {
        position: relative;
    }

        .about-section .image-column .text-layer {
            position: absolute;
            right: -110px;
            top: 50%;
            font-size: 325px;
            line-height: 1em;
            color: #ffffff;
            margin-top: -175px;
            font-weight: 500;
        }

        .about-section .image-column .inner-column {
            position: relative;
            padding-left: 80px;
            padding-bottom: 0px;
        }

            .about-section .image-column .inner-column .author-desc {
                position: absolute;
                bottom: 16px;
                z-index: 1;
                background: orange;
                padding: 10px 15px;
                left: 96px;
                width: calc(100% - 152px);
                border-radius: 50px;
            }

                .about-section .image-column .inner-column .author-desc h2 {
                    font-size: 21px;
                    letter-spacing: 1px;
                    text-align: center;
                    color: #fff;
                    margin: 0;
                }

                .about-section .image-column .inner-column .author-desc span {
                    font-size: 16px;
                    letter-spacing: 6px;
                    text-align: center;
                    color: #fff;
                    display: block;
                    font-weight: 400;
                }

            .about-section .image-column .inner-column:before {
                content: '';
                position: absolute;
                width: calc(50% + 80px);
                height: calc(100% + 160px);
                top: -80px;
                left: -3px;
                background: transparent;
                z-index: 0;
                border: 44px solid #00aeef;
            }

        .about-section .image-column .image-1 {
            position: relative;
        }

        .about-section .image-column .image-2 {
            position: absolute;
            left: 0;
            bottom: 0;
        }

            .about-section .image-column .image-2 img,
            .about-section .image-column .image-1 img {
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                border-radius: 46px;
            }

        .about-section .image-column .video-link {
            position: absolute;
            left: 70px;
            top: 170px;
        }

            .about-section .image-column .video-link .link {
                position: relative;
                display: block;
                font-size: 22px;
                color: #191e34;
                font-weight: 400;
                text-align: center;
                height: 100px;
                width: 100px;
                line-height: 100px;
                background-color: #ffffff;
                border-radius: 50%;
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }



@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700italic,700,900italic,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);


#generic_price_table {
    background-color: #f0eded;
}

    /*PRICE COLOR CODE START*/
    #generic_price_table .generic_content {
        background-color: #fff;
    }

        #generic_price_table .generic_content .generic_head_price {
            background-color: #f6f6f6;
        }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
                border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
            }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
                color: #525252;
            }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
                color: #414141;
            }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
                color: #414141;
            }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
                color: #414141;
            }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
                color: #414141;
            }

        #generic_price_table .generic_content .generic_feature_list ul li {
            color: #a7a7a7;
        }

            #generic_price_table .generic_content .generic_feature_list ul li span {
                color: #414141;
            }

            #generic_price_table .generic_content .generic_feature_list ul li:hover {
                background-color: #E4E4E4;
                border-left: 5px solid #2ECC71;
            }

        #generic_price_table .generic_content .generic_price_btn a {
            border: 1px solid #2ECC71;
            color: #2ECC71;
        }

        #generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg,
        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg {
            border-color: #2ECC71 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #2ECC71;
            color: #fff;
        }

        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head span,
        #generic_price_table .generic_content.active .generic_head_price .generic_head_content .head span {
            color: #fff;
        }

        #generic_price_table .generic_content:hover .generic_price_btn a,
        #generic_price_table .generic_content.active .generic_price_btn a {
            background-color: #2ECC71;
            color: #fff;
        }

#generic_price_table {
    margin: 50px 0 50px 0;
    font-family: 'Raleway', sans-serif;
}


/*PRICE BODY CODE START*/

#generic_price_table .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
}

    #generic_price_table .generic_content .generic_head_price {
        margin: 0 0 20px 0;
    }

        #generic_price_table .generic_content .generic_head_price .generic_head_content {
            margin: 0 0 50px 0;
        }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
                border-style: solid;
                border-width: 90px 1411px 23px 399px;
                position: absolute;
            }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head {
                padding-top: 40px;
                position: relative;
                z-index: 1;
            }

                #generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
                    font-family: "Raleway",sans-serif;
                    font-size: 28px;
                    font-weight: 400;
                    letter-spacing: 2px;
                    margin: 0;
                    padding: 0;
                    text-transform: uppercase;
                }

        #generic_price_table .generic_content .generic_head_price .generic_price_tag {
            padding: 0 0 20px;
        }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .price {
                display: block;
            }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
                    display: inline-block;
                    font-family: "Lato",sans-serif;
                    font-size: 28px;
                    font-weight: 400;
                    vertical-align: middle;
                }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
                    font-family: "Lato",sans-serif;
                    font-size: 60px;
                    font-weight: 300;
                    letter-spacing: -2px;
                    line-height: 60px;
                    padding: 0;
                    vertical-align: middle;
                }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
                    display: inline-block;
                    font-family: "Lato",sans-serif;
                    font-size: 24px;
                    font-weight: 400;
                    vertical-align: bottom;
                }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
                font-family: "Lato",sans-serif;
                font-size: 18px;
                font-weight: 400;
                letter-spacing: 3px;
                vertical-align: bottom;
            }

    #generic_price_table .generic_content .generic_feature_list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #generic_price_table .generic_content .generic_feature_list ul li {
            font-family: "Lato",sans-serif;
            font-size: 18px;
            padding: 15px 0;
            transition: all 0.3s ease-in-out 0s;
        }

            #generic_price_table .generic_content .generic_feature_list ul li:hover {
                transition: all 0.3s ease-in-out 0s;
                -moz-transition: all 0.3s ease-in-out 0s;
                -ms-transition: all 0.3s ease-in-out 0s;
                -o-transition: all 0.3s ease-in-out 0s;
                -webkit-transition: all 0.3s ease-in-out 0s;
            }

            #generic_price_table .generic_content .generic_feature_list ul li .fa {
                padding: 0 10px;
            }

    #generic_price_table .generic_content .generic_price_btn {
        margin: 20px 0 32px;
    }

        #generic_price_table .generic_content .generic_price_btn a {
            border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
            -webkit-border-radius: 50px;
            display: inline-block;
            font-family: "Lato",sans-serif;
            font-size: 18px;
            outline: medium none;
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
        }

        #generic_price_table .generic_content,
        #generic_price_table .generic_content:hover,
        #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
        #generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
        #generic_price_table .generic_content .price,
        #generic_price_table .generic_content:hover .price,
        #generic_price_table .generic_content .generic_price_btn a,
        #generic_price_table .generic_content:hover .generic_price_btn a {
            transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            -webkit-transition: all 0.3s ease-in-out 0s;
        }

@media (max-width: 320px) {
}

@media (max-width: 767px) {
    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #generic_price_table .col-md-3 {
        float: left;
        width: 50%;
    }

    #generic_price_table .col-md-4 {
        float: left;
        width: 50%;
    }

    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) {
}

#generic_price_table_home {
    font-family: 'Raleway', sans-serif;
}

.text-center h1,
.text-center h1 a {
    color: #7885CB;
    font-size: 30px;
    font-weight: 300;
    text-decoration: none;
}

.demo-pic {
    margin: 0 auto;
}

    .demo-pic:hover {
        opacity: 0.7;
    }

#generic_price_table_home ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: table;
}

#generic_price_table_home li {
    float: left;
}

    #generic_price_table_home li + li {
        margin-left: 10px;
        padding-bottom: 10px;
    }

    #generic_price_table_home li a {
        display: block;
        width: 50px;
        height: 50px;
        font-size: 0px;
    }

#generic_price_table_home .blue {
    background: #3498DB;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .emerald {
    background: #2ECC71;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .grey {
    background: #7F8C8D;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .midnight {
    background: #34495E;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .orange {
    background: #E67E22;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .purple {
    background: #9B59B6;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .red {
    background: #E74C3C;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .turquoise {
    background: #1ABC9C;
    transition: all 0.3s ease-in-out 0s;
}

    #generic_price_table_home .blue:hover,
    #generic_price_table_home .emerald:hover,
    #generic_price_table_home .grey:hover,
    #generic_price_table_home .midnight:hover,
    #generic_price_table_home .orange:hover,
    #generic_price_table_home .purple:hover,
    #generic_price_table_home .red:hover,
    #generic_price_table_home .turquoise:hover {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        transition: all 0.3s ease-in-out 0s;
    }

#generic_price_table_home .divider {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}

    #generic_price_table_home .divider span {
        width: 100%;
        display: table;
        height: 2px;
        background: #ddd;
        margin: 50px auto;
        line-height: 2px;
    }

#generic_price_table_home .itemname {
    text-align: center;
    font-size: 50px;
    padding: 50px 0 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 300;
}

#generic_price_table_home .itemnametext {
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}

#generic_price_table_home .footer {
    padding: 40px 0;
}

.price-heading {
    text-align: center;
}

    .price-heading h1 {
        color: #666;
        margin: 0;
        padding: 0 0 50px 0;
    }

.demo-button {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.bottom_btn {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 28px;
    margin: 60px auto 20px;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}

.demo-button:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}

.bottom_btn:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}


.content {
    width: 100%;
    margin: 0 auto;
}

.centerplease {
    margin: 0 auto;
    max-width: 270px;
    font-size: 40px;
}

.question {
    position: relative;
    margin: 0;
    padding: 10px 10px 10px 50px;
    border-bottom: 1px solid #bd9234;
    display: block;
    width: 100%;
    cursor: pointer;
}

.answers {
    background: #f6f2e3;
    padding: 0px 15px;
    margin: 5px 0;
    border-bottom: 1px solid #bd9234;
    max-height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .7s ease;
    -moz-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease;
}

.questions:checked ~ .answers {
    max-height: 500px;
    opacity: 1;
    padding: 15px;
}

.plus {
    position: absolute;
    margin-left: 10px;
    margin-top:7px;
    z-index: 5;
    font-size: 2em;
    line-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.questions:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.questions {
    display: none;
}





.carousel-inner {
    width: 100%;
    display: inline-block;
    position: relative;
}

.carousel-inner {
    padding-top: 43.25%;
    display: block;
    content: "";
}

.carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: skyblue;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.caption {
    background: #ffffff87 !important;
    padding: 20px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60%;
    z-index: 9;
    margin-top: 20px;
    text-align: center;
}

    .caption h1 {
        color: #fff;
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 23px;
    }

    .caption h2 {
        color: rgba(255,255,255,.75);
        font-size: 26px;
        font-weight: 300;
    }

a.big-button {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    background: #eb7a00;
    background: rgba(255, 0, 0, 0.75);
    padding: 28px 35px;
    border-radius: 3px;
    margin-top: 80px;
    margin-bottom: 0;
    display: inline-block;
}

    a.big-button:hover {
        text-decoration: none;
        background: rgba(255, 0, 0, 0.9);
    }

a.view-demo {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    display: inline-block;
    margin-top: 35px;
}

    a.view-demo:hover {
        text-decoration: none;
        color: #333;
    }

.carousel-indicators .active {
    background: #fff;
}

.carousel-indicators li {
    background: rgba(255, 255, 255, 0.4);
    border-top: 20px solid;
    z-index: 15;
}

.btn-warning {
    background: linear-gradient(45deg, #713e90, #3fa4b8 ) !important;
    border-color: #713e90 !important;
}

.border-warning {
    border-image: linear-gradient(to right, #713e90, #3fa4b8) 1 !important;
}

.btn-outline-warning {
    outline: linear-gradient(to right, #713e90, #3fa4b8) 1 !important;
}

.text-warning {
    background: linear-gradient(45deg, #713e90, #3fa4b8 ) !important;
    -webkit-background-clip: text !important;
    -moz-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.card-shadow {
    box-shadow: 0 10px 20px color(srgb 0.74 0.57 0.2 / 0.77);
}

@media (max-width: 767px) {
    .modal-content {
        padding-left: 15px; /* Add padding to the left side */
        padding-right: 15px; /* Add padding to the right side */
        max-width: 90%; /* Set the maximum width to 90% for mobile */
        margin: 0 auto; /* Center the modal */
    }
}


@media (max-width: 768px) {
    /* Mobile view (square shape) */
    .modal-content {
        width: 100%;
        height: 100%;
        max-width: 400px;
        max-height: 425px;
        margin: auto;
        border-radius: 10px;
    }
}

@media (min-width: 769px) {
    /* Desktop view (as is) */
    .modal-content {
        max-width: 700px;
        margin: auto;
    }
}
/* Default styling for the logo (desktop and larger screens) */
.modal-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Makes it circular */
    object-fit: cover;
    border: 2px solid #bd9234;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    .modal-logo {
        border-radius: 50%; /* Removes the circular shape */
        width: 145px; /* Adjust width for smaller screens */
        height: 145px; /* Adjust height for smaller screens */
    }
}

.header .bottom-nav {
    display: flex;
    width: 100%;
    padding: 0.8rem 0;
    background-color: #bd9234;
    z-index: 99;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.header .bottom-nav-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    color: #f1f5f8;
}

.header .bottom-nav-link {
    display: flex;
    flex-direction: column;
}

.header .bottom-nav .active {
    color: #d32f2f;
}

.fixed-navbar {
    position: fixed;
    top: 113px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(22, 22, 26, 0.18);
}

.float {
    position: fixed;
    bottom: 45px;
    left: 18px;
    color: #25d366;
    border-radius: 50px;
    text-align: center;
    font-size: 45px;
    z-index: 10000;
    max-width   :50px
}

.my-float {
    margin-top: 16px;
}
