@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


@font-face {
    font-family: 'Street Urban';
    src: url(../fonts/StreetUrban.ttf);
}

@font-face {
    font-family: 'Street Urban Shadow';
    src: url(../fonts/StreetUrbanShadow.ttf);
}

@font-face {
    font-family: 'Rooney Sans Black';
    src: url(../fonts/RooneySansBlk.otf);
}

@font-face {
    font-family: 'Rooney Sans Bold';
    src: url(../fonts/RooneySansBold.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.theme-btn {
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #fff;
    z-index: 10;
    display: inline-block;
    color: #000;
    padding: 14px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    width: auto;
    box-shadow: 0 5px 0px #550599;
    text-transform: capitalize;
}

.theme-btn:hover {
    border: none;
    color: #fff !important;
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

.theme-btn::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #550599;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: none;
    border-color: transparent;
}

.theme-btn::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a946e2;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: none;
    border-color: transparent;
}

.theme-btn:hover::before,
.theme-btn:hover::before {
    opacity: 1;
    width: 116%
}

.theme-btn:hover::after,
.theme-btn:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Rooney Sans Black', Sans-Serif;
    font-size: 80px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 15px;
}

h2 {
    font-family: 'Rooney Sans Black', Sans-Serif;
    font-size: 50px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Rooney Sans Black', Sans-Serif;
    font-size: 30px;
    line-height: 29px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}

h5 {
    font-family: 'Rooney Sans Black', Sans-Serif;
    font-size: 25px;
    line-height: 25px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #ccabe7;
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Poppins', serif;
    font-weight: 400;
    margin: 0 0 10px 0px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    position: absolute;
    width: 100%;
    z-index: 1;
    padding: 20px 0;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 0;
    font-size: 16px;
    color: #fff;
}

/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}*/

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #ffff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.book_now_btn {
    margin-left: -25px;
}


/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
    height: 110vh;
    object-position: bottom;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

span.textOnBanner {
    position: absolute;
    right: 16%;
    bottom: 0%;
    font-size: 118px;
    color: #fff;
    font-family: 'Street Urban Shadow';
    z-index: 1;
    line-height: 1;
    transform: rotate(-7deg);
}

.carousel-indicators {
    display: flex;
    left: auto;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: auto;
    height: auto;
    bottom: auto;
    flex-direction: column;
    row-gap: 10px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #ffffff73;
    background-clip: padding-box;
    border: 0;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 60px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: transparent;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #ffffff;
    width: 10px;
    height: 10px;
}

.banner_text h4 {
    font-size: 39px;
    font-family: 'Street Urban Shadow';
    display: inline-block;
    color: #fff;
    transform: rotate(-5deg);
}

.banner_text {
    position: relative;
}

.banner_img {
    position: relative;
}

.cloud_img {
    position: absolute;
    bottom: 105%;
    right: 0;
}

.cloud2 {
    position: absolute;
    right: 30%;
    top: -30px;
}

/*banner css end*/

/* about css start */
.about_text {
    position: relative;
    z-index: 0;
    padding: 110px 0;
    margin: 0;
    width: 90%;
}

.about_text::before {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 150%;
    height: 110%;
    clip-path: polygon(5.44% 13.72%, 5.32% 84.70%, 6.18% 87.07%, 7.79% 88.92%, 9.15% 89.71%, 10.51% 90.11%, 22.25% 91.03%, 43.39% 92.35%, 64.65% 93.01%, 74.41% 92.88%, 83.19% 92.22%, 84.43% 91.95%, 85.78% 91.29%, 87.39% 89.84%, 88.38% 87.99%, 88.88% 86.02%, 90.11% 79.02%, 91.10% 71.37%, 91.97% 60.42%, 92.21% 48.02%, 91.72% 36.15%, 91.22% 30.34%, 90.23% 22.30%, 88.50% 12.40%, 87.52% 10.42%, 86.28% 9.10%, 84.92% 8.31%, 83.68% 7.92%, 67.24% 7.12%, 46.85% 6.99%, 27.69% 7.65%, 14.46% 8.58%, 10.38% 8.97%, 9.39% 9.23%, 8.16% 9.89%, 6.80% 11.08%, 6.80% 11.35%, 6.43% 11.61%, 6.06% 12.53%, 5.81% 12.66%, 5.81% 13.06%, 5.44% 13.72%);
    z-index: -3;
    content: '';
    background: #782dbd;
    transform: translateY(-50%);
}

.about-image {
    position: relative;
    z-index: 1;
}

img.about-img {
    position: relative;
    z-index: 1;
    height: 550px;
    object-fit: cover;
    width: 100%;
}

.about_text p {
    width: 80%;
}


/* Simple */
section.simple-steps {
    padding: 80px 0;
}

.top-heading {
    text-align: center;
    margin-bottom: 40px;
}

.top-heading h5 {
    font-family: 'Street Urban Shadow';
    font-size: 30px;
    color: #7b2cbf;
}

.top-heading h2 {
    font-size: 50px;
    color: #000000;
    font-family: 'Rooney Sans Black';
}

.top-heading p {
    width: 50%;
    color: #7c7c7c;
    margin: 0 auto;
}

.simpl-text h3 {
    font-size: 84px;
    font-family: 'Street Urban Shadow';
    color: #7b2cbf;
    font-weight: 500;
    line-height: 1;
    width: fit-content;
    margin: 0 0 20px auto;
}

.simple-wrap {
    position: relative;
}

img.arr-simple {
    position: absolute;
    right: 0;
    left: -60px;
    margin: 0 auto;
    top: 10px;
}

img.vect1 {
    width: 100%;
    transform: scale(1.1);
}

.simpl-text h4 {
    font-size: 29px;
    font-family: 'Rooney Sans Black';
    color: #000000;
    font-weight: 500;
}

.simpl-text p {
    color: #7c7c7c;
}

.simpl-text {
    position: absolute;
    top: 50%;
    width: 71%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -50%);
}

.simple-box1 {
    position: relative;
}

.simple-box1.simple-box2 {
    margin-top: 70px;
}

.simple-box1.simple-box3 {
    margin-top: 120px;
}

/* end */

/* Choose */
section.choose-us {
    padding-bottom: 80px;
}

.chs-text h5 {
    font-family: 'Street Urban Shadow';
    font-size: 30px;
    color: #7b2cbf;
}

.chs-text h2 {
    font-size: 50px;
    color: #000000;
    font-family: 'Rooney Sans Black';
    text-transform: capitalize;
}

.chs-text p {
    color: #7c7c7c;
    margin-bottom: 20px;
}

.chs-text ul li h6 {
    font-size: 30px;
    color: #000000;
    font-family: 'Rooney Sans Black';
}

.chs-text ul li {
    border: 1px solid #550599;
    border-radius: 20px;
    padding: 20px;
    border-bottom: 10px solid #550599;
    margin-bottom: 20px;
}

.chs-text ul li:last-child {
    margin: 0;
}

.chs-text ul li p {
    margin: 0;
}

.chs-img img {
    width: 90%;
    margin: 0 0 0 auto;
    display: block;
}

section.choose-us .row {
    align-items: center;
}

/* end */

/* infl-sec */

.top-heading-left p {
    width: 100%;
}

.top-heading-left {
    text-align: left;
}

.theme-btn.style1 {
    background: #7b2cbf;
    color: #ffff;
}

.infl-btn {
    display: flex;
    justify-content: end;
}

.sec {
    padding: 80px 0;
}

.infl-card-image img {
    width: 80%;
    margin: 0 auto;
    display: block;
    height: 300px;
    object-fit: cover;
}

.infl-card-text {
    padding: 30px 40px 40px 40px;
    background: #fff;
    position: relative;
    z-index: 1;
    margin: -40px 0 0 0;
}

img.infl-bg {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

.infl-card-text p {
    color: #000;
    opacity: 0.7;
}

.infl-card-text p {
    color: #000;
    opacity: 0.7;
}

.circle-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
    border-radius: 50%;
    padding: 10px;
    margin: 48px 0 0 25px;
    box-shadow: 0 0 18px 0 #00000033;
    position: relative;
    cursor: pointer !important;
    z-index: 999;
}

img.circle-img {
    background: #782dbd;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 50%;
}

.infl-card:hover .infl-card-text h4 {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.infl-card:hover .infl-card-text p {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.infl-card:hover .infl-card-text img.infl-bg {
    filter: brightness(0) saturate(100%) invert(23%) sepia(63%) saturate(2510%) hue-rotate(257deg) brightness(90%) contrast(102%);
}

.infl-card:hover .infl-card-text .circle-btn {
    background: #550599;
    transition: 0.3s ease-in-out;
}

.infl-card:hover .infl-card-text .circle-btn img.circle-img {
    background: #7b2cbf;
    transition: 0.3s ease-in-out;
}


/* fun css */
.fun-sec {
    background-image: url(../images/fun-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    padding-top: 150px;
    background-size: cover;
}

.white-heading h2 {
    color: #fff;
    font-size: 80px;
}

.white-heading p {
    opacity: 0.7;
    color: #fff;
}

.fun-box {
    position: relative;
    z-index: 1;
}

img.cloud-img1 {
    position: absolute;
    top: 0;
    left: 0;
}

img.cloud-img2 {
    position: absolute;
    top: 0;
    right: 0;
}

img.style-img1 {
    width: 350px;
    position: absolute;
    top: 5%;
    left: -11%;
}

img.style-img2 {
    position: absolute;
    top: 25%;
    right: -6%;
    width: 300px;
}

.test-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.stars {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

ul.stars i {
    color: #f9ae0e;
}

.testi-card:hover .testi-text h5 {
    color: #fff;
    transition: 0.3s ease-in-out;
}

/*Footer Css Starts*/

.footer-main::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background-image: url("../images/footer-bg.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.footer-main {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 165px;
    width: 165px;
}

.footer-logo a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.footer-link-head {
    padding: 0;
}

.footer-link-wrap {
    border-bottom: 1px solid #ffffff8a;
    border-right: none;
    border-left: none;
}

.footer-link-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 0 40px 20px 50px;
    height: 100%;
}

.footer-link-head {
    padding: 0px 50px 50px 0;
    gap: 30px;
}

.footer-head h5 {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    text-transform: capitalize;
}

.footer-txt p {
    color: #fff;
    opacity: 1;
}

.footer-link ul {
    column-count: 2;
    gap: 20px;
}

.footer-link ul li {
    margin: 0 0 20px 0;
}

.footer-contact .footer-link ul,
.footer-follow .footer-link ul {
    column-count: 1;
    gap: 20px;
}

.footer-link ul li a {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    opacity: 0.7;
    font-weight: 300;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.footer-link ul li a:hover {
    opacity: 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.footer-contact {
    border: 1px solid #ffffff8a;
    border-top: unset;
    border-bottom: unset;
}

.footer-link-ex {
    border: 1px solid #ffffff8a;
    border-top: unset;
    border-bottom: unset;
    border-right: unset;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-copy p {
    color: #fff;
    opacity: 1;
    margin: 0;
}

/*Footer Css Ends*/

/* Inde end  */
/* About Us start */

.inner-banner .main-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-position: top !important;
}

.hei {
    height: 100%;
}

section.main_slider.inner-banner {
    position: relative;
    height: 580px;
    overflow: hidden;
}

section.main_slider.inner-banner .banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.inner-banner-text {
    position: relative;
}

.inner-banner-text img.cloud2 {
    right: -70px;
    top: -50px;
}

.testi-slider .slick-slide {
    opacity: 1;
}

.about_text.inner-about::before {
    display: none;
}

.about_text.inner-about * {
    color: #000;
}

.about_text.inner-about p {
    opacity: 0.7;
}

.abt-para p {
    color: #000;
    opacity: 0.7;
}

.testi-text .circle-btn {
    margin: 42px 0 0 19px;
}

/* Pricing Section */
.price-sec {
    padding: 80px 0;
    background: #fff;
}

.price-card {
    background: #fff;
    border: 1px solid #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    height: 100%;
    margin-bottom: 30px;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.middle-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #7b2cbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.price-card h4 {
    font-family: 'Rooney Sans Black';
    font-size: 24px;
    margin: 0;
    color: #000;
}

.price-amount {
    font-family: 'Rooney Sans Black';
    font-size: 40px;
    color: #000;
    margin-bottom: 15px;
}

.price-card p {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #393939;
    font-size: 15px;
    font-weight: 500;
}

.price-features li i {
    color: #7b2cbf;
    font-size: 22px;
}

.btn-book {
    background: #7b2cbf !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 40px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3) !important;
    border: none !important;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.btn-book::before,
.btn-book::after {
    display: none !important;
}

.btn-book:hover {
    background: #5a189a !important;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.4) !important;
    transform: translateY(-2px);
}

/* Inflatable Detail Section */
.inflatable-detail-sec {
    padding: 100px 0;
    background: #fff;
}

.inflatable-detail-img-wrap {
    position: relative;
    border-radius: 80px 30px 80px 30px;
    /* Pronounced curves top-left and bottom-right */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.infl-detail-img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
}

.inflatable-detail-text h2 {
    font-family: 'Rooney Sans Black';
    font-size: 50px;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.inflatable-detail-text p {
    color: #7c7c7c;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.inflatable-info {
    margin-top: 35px;
    margin-bottom: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item .label {
    font-family: 'Rooney Sans Bold', sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 16px;
    width: 120px;
}

.info-item .value {
    color: #7c7c7c;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .inflatable-detail-text h2 {
        font-size: 40px;
    }

    .inflatable-detail-img-wrap {
        margin-bottom: 50px;
    }
}

/* Booking Section */
.booking-sec {
    padding: 100px 0;
    background: #fff;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    padding: 15px 25px;
    height: 60px;
    font-size: 15px;
    color: #393939;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.booking-form textarea.form-control {
    height: auto;
    border-radius: 20px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #7b2cbf;
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.1);
}

.booking-form .form-control::placeholder {
    color: #a5a5a5;
    font-weight: 300;
}

.calendar-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #a5a5a5;
    pointer-events: none;
}

.booking-sec .top-heading h2 {
    font-family: 'Rooney Sans Black';
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
}

.booking-sec .top-heading p {
    color: #7c7c7c;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
}

@media (max-width: 767px) {
    .booking-sec .top-heading h2 {
        font-size: 36px;
    }
}

/* Contact Us Section - Pixel Perfect Refinement */
.contact-us-sec {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.contact-flex-wrap {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.con-form1 {
    background: #fff;
    border-radius: 80px 30px 80px 30px;
    padding: 70px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    flex: 1;
    z-index: 2;
    margin-right: -120px;
    position: relative;
    z-index: 1;
}


.cont-1 {
    border-radius: 30px 120px 30px 80px !important;
    padding: 70px 60px 70px 180px !important;
    flex: 0 0 600px !important;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0 !important;
    position: relative;
    z-index: 0;
}

.cont-1::before {
    border-radius: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 131%;
    height: 100%;
    z-index: -103;
    content: '';
    background: #7b2cbf;
    clip-path: polygon(5.44% 13.72%, 5.32% 84.70%, 6.18% 87.07%, 7.79% 88.92%, 9.15% 89.71%, 10.51% 90.11%, 22.25% 91.03%, 43.39% 92.35%, 64.65% 93.01%, 74.41% 92.88%, 83.19% 92.22%, 84.43% 91.95%, 85.78% 91.29%, 87.39% 89.84%, 88.38% 87.99%, 88.88% 86.02%, 90.11% 79.02%, 91.10% 71.37%, 91.97% 60.42%, 92.21% 48.02%, 91.72% 36.15%, 91.22% 30.34%, 90.23% 22.30%, 88.50% 12.40%, 87.52% 10.42%, 86.28% 9.10%, 84.92% 8.31%, 83.68% 7.92%, 67.24% 7.12%, 46.85% 6.99%, 27.69% 7.65%, 14.46% 8.58%, 10.38% 8.97%, 9.39% 9.23%, 8.16% 9.89%, 6.80% 11.08%, 6.80% 11.35%, 6.43% 11.61%, 6.06% 12.53%, 5.81% 12.66%, 5.81% 13.06%, 5.44% 13.72%);
}

.contact-form h2 {
    font-family: 'Rooney Sans Black';
    font-size: 45px;
    color: #000;
    margin-bottom: 35px;
    text-align: left;
}

.cont-1 h2.white {
    font-family: 'Rooney Sans Black';
    font-size: 40px;
    color: #fff !important;
    margin-bottom: 20px;
}

.cont-1 p.white {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    width: 100%;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.contact-info-list li i {
    font-size: 22px;
    color: #fff;
    width: 25px;
    text-align: center;
}

.contact-info-list li a,
.contact-info-list li span {
    color: #fff !important;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    opacity: 1 !important;
}

/* Form Styling within Contact Section */
.contact-form .form-control {
    border-radius: 30px !important;
    border: 1px solid #e1e1e1 !important;
    padding: 15px 30px !important;
    height: 60px !important;
    font-size: 15px !important;
    margin-bottom: 0 !important;
}

.contact-form textarea.form-control {
    height: auto !important;
    border-radius: 20px !important;
    padding-top: 20px !important;
}

.contact-form .form-control:focus {
    border-color: #7b2cbf !important;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.1) !important;
}


.curve-img {
    clip-path: polygon(5.44% 13.72%, 5.32% 84.70%, 6.18% 87.07%, 7.79% 88.92%, 9.15% 89.71%, 10.51% 90.11%, 22.25% 91.03%, 43.39% 92.35%, 64.65% 93.01%, 74.41% 92.88%, 83.19% 92.22%, 84.43% 91.95%, 85.78% 91.29%, 87.39% 89.84%, 88.38% 87.99%, 88.88% 86.02%, 90.11% 79.02%, 91.10% 71.37%, 91.97% 60.42%, 92.21% 48.02%, 91.72% 36.15%, 91.22% 30.34%, 90.23% 22.30%, 88.50% 12.40%, 87.52% 10.42%, 86.28% 9.10%, 84.92% 8.31%, 83.68% 7.92%, 67.24% 7.12%, 46.85% 6.99%, 27.69% 7.65%, 14.46% 8.58%, 10.38% 8.97%, 9.39% 9.23%, 8.16% 9.89%, 6.80% 11.08%, 6.80% 11.35%, 6.43% 11.61%, 6.06% 12.53%, 5.81% 12.66%, 5.81% 13.06%, 5.44% 13.72%);
}

.infl-card-text.testi-text a.circle-btn {
    margin: 40px 0 0 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a.input-icon {
    color: #000;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: 0.5;
}

p.hf-message.hf-message-success {
    padding-top: 10px !important;
    color: #b55bff !important;
}

.slicknav_nav a:hover {
    background: #7f32c2 !important;
}

.book_now_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {

    .woocommerce ul.products li.product {
        width: calc(31% - 1px) !important;
    }

    span.textOnBanner {
        right: 10%;
        font-size: 80px;
    }

    .banner_img {
        position: relative;
        margin-top: 120px;
    }

    .theme-btn {
        padding: 14px 25px;
    }

    h1 {
        font-size: 60px;
    }

    h5 {
        font-size: 18px;
    }

    img.infl-bg {
        top: 0px;
        width: 100%;
        transform: scaleX(1.1) scaleY(1.3);
    }

    .testi-text .circle-btn {
        margin: 30px 0 0 -2.7px;
    }

    section#media_image-2 img {
        max-height: 150px;
    }

    .footer-link-head {
        padding: 0px 30px 50px 0;
    }





}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    h5 {
        font-size: 17px;
    }

    h1 {
        font-size: 40px;
    }

    .banner_text h4 {
        font-size: 25px;
    }

    .menuSec ul li a {
        font-size: 12px;
    }

    span.textOnBanner {
        position: absolute;
        right: 6%;
        bottom: 0%;
        font-size: 65px;
        transform: rotate(-2deg);
    }

    .main-banner-img {
        height: 730px;
    }

    .cloud_img {
        position: absolute;
        bottom: -35%;
    }

    .theme-btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    span.textOnBanner {
        right: 15%;
        font-size: 30px;
        transform: rotate(-2deg);
    }

    h2 {
        font-size: 35px;
    }

    .about_text {
        padding: 100px 0 70px;
        width: 100%;
    }

    .about_text::before {
        top: 51%;
        right: -15%;
        height: 103%;
    }

    .about_text p {
        width: 90%;
    }

    .header-logo img.custom-logo {
        max-height: 100px;
        object-fit: contain;
        object-position: left;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        width: 100%;
    }

    .woocommerce ul.products li.product {
        width: calc(45% - 0px) !important;
    }

    .white-heading h2 {
        font-size: 40px;
    }

    img.style-img2 {
        top: 15%;
        right: -6%;
        width: 180px;
    }

    img.style-img1 {
        width: 180px;
        top: 8%;
        left: -7%;
    }

    .top-heading p {
        width: 60%;
    }

    img.cloud-img2 {
        width: 150px;
    }

    img.cloud-img1 {
        width: 150px;
    }

    .simpl-text h4 {
        font-size: 16px;
    }

    .simpl-text {
        top: 50%;
        width: 85%;
    }

    .simpl-text h3 {
        font-size: 45px;
        margin-bottom: 0px;
    }

    p {
        font-size: 12px;
        font-size: 20px;
    }

    img.vect1 {
        transform: scalex(1.1) scaleY(1.6);
    }

    .chs-img img {
        width: 100%;
    }

    .chs-text ul li {
        padding: 15px;
        margin-bottom: 15px;
    }

    .chs-text ul li h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .chs-text h2 {
        font-size: 35px;
    }

    .chs-text h5 {
        font-size: 20px;
    }

    section.choose-us {
        padding-bottom: 10px;
    }

    .sec {
        padding: 70px 0;
    }

    section.simple-steps {
        padding: 70px 0;
    }

    img.infl-bg {
        top: 0px;
        transform: scaleY(1.55) scaleX(1.1);
    }

    .infl-card-text {
        padding: 20px 30px 40px 30px;
    }

    .infl-card-text p {
        min-height: 61px;
    }

    .testi-text .circle-btn {
        margin: 30px 0 0 -5px;
    }

    .footer-link-ex {
        margin-left: -1px;
    }

    section#media_image-2 img {
        max-height: 150px;
    }

    .footer-main {
        padding-top: 140px;
    }

    section.testi-sec.sec {
        padding-bottom: 10px;
    }

    section.main_slider.inner-banner {
        height: 400px;
    }

    .summary.entry-summary {
        margin-left: 20px !important;
    }

    .product-detail h1.product_title.entry-title {
        font-size: 30px !important;
        line-height: 30px !important;
        margin-bottom: 40px !important;
    }

    form#yith-ywraq-form {
        overflow-x: scroll;
    }

    td.product-name a {
        font-size: 12px;
    }

    .con-form1 {
        padding: 25px;
        margin-right: 0px;
        width: 50%;
    }

    .cont-1::before {
        width: 120% !important;
    }

    .cont-1 {
        padding: 70px 50px 30px 20px !important;
        max-width: 50%;
    }

    .contact-info-list li br {
        display: none;
    }

    .contact-info-list li a,
    .contact-info-list li span {
        font-size: 14px;
    }

    .contact-form h2 {
        font-size: 30px;
    }

    .contact-form .col-md-6 {
        width: 100%;
        margin-bottom: 10px;
    }

    .testi-slider .slick-slide {
        margin: 0px 5px;
    }

    .footer-link-main {
        padding: 0 10px 10px 20px;
    }

    .footer-link-head {
        padding: 0px 20px 20px 0;
    }

    .footer-link ul li a {
        font-size: 12px;
    }








}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    h5 {
        font-size: 20px;
    }

    h1 {
        font-size: 40px;
    }

    .banner_text h4 {
        font-size: 25px;
    }

    .menuSec ul li a {
        font-size: 12px;
    }

    span.textOnBanner {
        position: absolute;
        right: 6%;
        bottom: 0%;
        font-size: 65px;
        transform: rotate(-2deg);
    }

    .main-banner-img {
        height: 730px;
    }

    .cloud_img {
        position: absolute;
        bottom: -55%;
    }

    .theme-btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    span.textOnBanner {
        right: 15%;
        font-size: 30px;
        transform: rotate(-2deg);
    }

    h2 {
        font-size: 35px;
    }

    .about_text {
        padding: 100px 0 70px;
        width: 100%;
    }


    .about_text::before {
        top: 51%;
        right: -15%;
        height: 103%;
    }

    .about_text p {
        width: 90%;
    }

    .header-logo img.custom-logo {
        max-height: 100px;
        object-fit: contain;
        object-position: left;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        width: 100%;
    }

    .woocommerce ul.products li.product {
        width: calc(45% - 0px) !important;
    }

    .white-heading h2 {
        font-size: 40px;
    }

    img.style-img2 {
        top: 15%;
        right: -6%;
        width: 180px;
    }

    img.style-img1 {
        width: 180px;
        top: 8%;
        left: -7%;
    }

    .top-heading p {
        width: 60%;
    }

    img.cloud-img2 {
        width: 150px;
    }

    img.cloud-img1 {
        width: 150px;
    }

    .simpl-text h4 {
        font-size: 16px;
    }

    .simpl-text {
        top: 50%;
        width: 85%;
    }

    .simpl-text h3 {
        font-size: 45px;
        margin-bottom: 0px;
    }

    p {
        font-size: 12px;
        font-size: 20px;
    }

    img.vect1 {
        transform: scalex(1.1) scaleY(1.6);
    }

    .chs-img img {
        width: 100%;
    }

    .chs-text ul li {
        padding: 15px;
        margin-bottom: 15px;
    }

    .chs-text ul li h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .chs-text h2 {
        font-size: 35px;
    }

    .chs-text h5 {
        font-size: 20px;
    }

    section.choose-us {
        padding-bottom: 0px;
    }


    .sec {
        padding: 60px 0;
    }

    section.simple-steps {
        padding: 60px 0;
    }

    img.infl-bg {
        top: 0px;
        transform: scaleY(1.4);
    }

    .infl-card-text {
        padding: 20px 30px 40px 30px;
    }

    .infl-card-text p {
        min-height: 61px;
    }

    .testi-text .circle-btn {
        margin: 40px 0 0 14px;
    }

    .footer-link-ex {
        margin-left: -1px;
    }

    section#media_image-2 img {
        max-height: 150px;
    }

    .footer-main {
        padding-top: 140px;
    }

    section.testi-sec.sec {
        padding-bottom: 10px;
    }

    section.main_slider.inner-banner {
        height: 400px;
    }

    .summary.entry-summary {
        margin-left: 20px !important;
    }

    .product-detail h1.product_title.entry-title {
        font-size: 30px !important;
        line-height: 30px !important;
        margin-bottom: 40px !important;
    }

    td.product-name a {
        font-size: 12px;
    }

    .con-form1 {
        padding: 25px;
        margin-right: 0px;
        width: 50%;
    }

    .cont-1::before {
        width: 120% !important;
    }

    .cont-1 {
        padding: 70px 50px 30px 20px !important;
        max-width: 50%;
    }

    .contact-info-list li br {
        display: none;
    }

    .contact-info-list li a,
    .contact-info-list li span {
        font-size: 14px;
    }

    .contact-form h2 {
        font-size: 30px;
    }

    .contact-form .col-md-6 {
        width: 100%;
        margin-bottom: 10px;
    }


































}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    h5 {
        font-size: 20px;
    }

    .theme-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    header {
        padding: 10px 0;
        position: relative;
        background: #7f32c2;
    }

    .cloud2 {
        right: 10%;
        top: 11px;
        width: 70px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .banner_text h4 {
        font-size: 20px;
        transform: rotate(-3deg);
    }

    span.textOnBanner {
        right: 5%;
        font-size: 30px;
        transform: rotate(-5deg);
    }

    .cloud_img {
        width: 100%;
        bottom: -25%;
        height: 100px;
        object-fit: contain;
    }

    .main-banner-img {
        height: 750px;
    }

    .banner_img img.img-fluid {
        width: 100%;
        height: 240px;
        object-fit: contain;
    }

    img.style-img1 {
        top: 3%;
        left: 0%;
        width: 90px;
    }

    img.style-img2 {
        top: 5%;
        right: 0%;
        width: 110px;
    }

    .white-heading h2 {
        font-size: 30px;
    }

    .top-heading h2,
    h2 {
        font-size: 30px;
    }

    .simpl-text h3 {
        font-size: 45px;
        margin: 0 0 10px auto;
    }

    .simple-box1.simple-box3 {
        margin-top: 5px;
    }

    .simple-box1.simple-box2 {
        margin-top: 5px;
    }

    .simpl-text h4 {
        font-size: 20px;
    }

    .simpl-text {
        top: 45%;
        width: 79%;
    }

    section.simple-steps {
        padding: 40px 0;
    }

    section.choose-us {
        padding-bottom: 0px;
    }

    .chs-img img {
        width: 100%;
    }

    .sec {
        padding: 40px 0;
    }

    .infl-card-image img {
        width: 100%;
        height: 300px;
    }

    .testi-slider .slick-slide {
        margin: 0px 5px;
    }


    .footer-link-head {
        padding: 0px 20px 20px 0;
    }

    section#media_image-2 img {
        max-height: 160px;
    }

    .footer-main {
        position: relative;
        z-index: 1;
        padding: 150px 10px 0px;
    }

    .footer-contact .footer-link ul,
    .footer-follow .footer-link ul {
        gap: 10px;
        margin-bottom: 5px;
    }

    .footer-link ul li {
        margin: 0 0 10px 0;
    }

    .footer-link-ex {
        border: none;
    }

    .footer-link-main {
        gap: 10px;
        padding: 0 10px 10px 5px;
    }

    .footer-contact {
        border: none;
    }

    img.infl-bg {
        top: -5px;
        left: 5px;
        width: 100%;
        transform: scaleY(1.45) scaleX(1.1);
    }

    .test-heading {
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-between;
    }

    .infl-card-text {
        margin: -30px 0 0 0;
        padding: 0px 20px 0px 20px;
    }

    .testi-text .circle-btn {
        margin: 22px 0 21px 8px;
    }

    section.testi-sec.sec {
        padding-bottom: 0px;
    }

    .top-heading h5 {
        font-size: 20px;
    }

    .chs-text ul li h6 {
        font-size: 20px;
    }

    .chs-text h2 {
        font-size: 30px;
    }

    .top-heading {
        margin-bottom: 30px;
    }

    .fun-sec .top-heading {
        margin-top: 80px;
    }

    .top-heading p {
        width: 100%;
    }

    img.cloud-img2 {
        width: 60px;
    }

    img.cloud-img1 {
        width: 70px;
    }

    section.fun-sec.sec {
        padding-bottom: 0px;
    }

    img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
        max-height: 200px;
    }

    .about_text {
        padding: 50px 10px;
        width: 100%;
    }

    .about_text::before {
        right: -3%;
        width: 110%;
        height: 101%;
    }

    img.about-img {
        height: auto;
    }

    .page-id-7 .carousel-caption {
        align-items: flex-start;
    }

    .page-id-7 .banner_text {
        margin-top: 40px;
    }

    .carousel-indicators {
        right: 5px;
    }

    .single-product div.product {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images,
    .summary.entry-summary {
        min-width: 100%;
    }

    ul.tabs.wc-tabs li a {
        font-family: 'Poppins', serif !important;
    }

    section.main_slider.inner-banner {
        height: 300px;
    }

    .page-id-10 section.about {
        padding-bottom: 40px;
    }

    .con-form1 {
        border-radius: 20px 10px 20px 10px;
        padding: 20px;
        margin-right: 0px;
    }

    .contact-flex-wrap {
        max-width: 100%;
        flex-direction: column;
    }

    .cont-1 {
        border-radius: 10px 0px 10px 20px !important;
        padding: 40px 10px 20px 20px !important;
        flex: 0 0 480px !important;
    }

    .cont-1::before {
        top: -5% !important;
        right: -5% !important;
        width: 111% !important;
        height: 109% !important;
    }

    .cont-1 p.white {
        font-size: 12px;
        width: 90%;
    }

    .contact-info-list li {
        gap: 5px;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .contact-info-list li br {
        display: none;
    }

    .contact-info-list li a,
    .contact-info-list li span {
        font-size: 14px;
    }


    .contact-info-list {
        width: 95%;
    }

    .contact-form h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .header-logo img.custom-logo {
        max-height: 100px;
        object-fit: contain;
        object-position: left;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        width: 100%;
    }

    .woocommerce ul.products li.product {
        width: calc(45% - 0px) !important;
    }

    .infl-btn {
        margin-bottom: 30px;
    }

    td.product-name a {
        font-size: 12px;
    }

    .product-detail .product h3 {
        font-size: 20px;
        margin-top: 30px;
        line-height: 20px;
        margin-bottom: 0px;
    }


}

@media only screen and (min-width: 0px) and (max-width: 575px) {


    h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    h5 {
        font-size: 18px;
        line-height: 25px;
    }

    .theme-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    header {
        padding: 10px 0;
        position: relative;
        background: #7f32c2;
    }

    .cloud2 {
        right: 10%;
        top: 11px;
        width: 70px;
    }

    .book_now_btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .banner_text h4 {
        font-size: 20px;
        transform: rotate(-3deg);
    }

    span.textOnBanner {
        right: 5%;
        font-size: 30px;
        transform: rotate(-5deg);
    }

    .cloud_img {
        width: 100%;
        bottom: -25%;
        height: 100px;
        object-fit: contain;
    }

    .main-banner-img {
        height: 750px;
    }

    .banner_img img.img-fluid {
        width: 100%;
        height: 240px;
        object-fit: contain;
    }

    img.style-img1 {
        top: 3%;
        left: 0%;
        width: 90px;
    }

    img.style-img2 {
        top: 5%;
        right: 0%;
        width: 110px;
    }

    .white-heading h2 {
        font-size: 30px;
    }

    .top-heading h2,
    h2 {
        font-size: 30px;
    }

    .simpl-text h3 {
        font-size: 45px;
        margin: 0 0 10px auto;
    }

    .simple-box1.simple-box3 {
        margin-top: 5px;
    }

    .simple-box1.simple-box2 {
        margin-top: 5px;
    }

    .simpl-text h4 {
        font-size: 20px;
    }

    .simpl-text {
        top: 45%;
        width: 79%;
    }

    section.simple-steps {
        padding: 40px 0;
    }

    section.choose-us {
        padding-bottom: 0px;
    }

    .chs-img img {
        width: 100%;
    }

    .sec {
        padding: 40px 0;
    }

    .infl-card-image img {
        width: 100%;
        height: 300px;
    }

    .testi-slider .slick-slide {
        margin: 0px 5px;
    }


    .footer-link-head {
        padding: 0px 20px 20px 0;
    }

    section#media_image-2 img {
        max-height: 160px;
    }

    .footer-main {
        position: relative;
        z-index: 1;
        padding: 150px 10px 0px;
    }

    .footer-contact .footer-link ul,
    .footer-follow .footer-link ul {
        gap: 10px;
        margin-bottom: 5px;
    }

    .footer-link ul li {
        margin: 0 0 10px 0;
    }

    .footer-link-ex {
        border: none;
    }

    .footer-link-main {
        gap: 10px;
        padding: 0 10px 10px 5px;
    }

    .footer-contact {
        border: none;
    }

    img.infl-bg {
        top: -10px;
        width: 100%;
        transform: scaleY(1.5);
    }

    .test-heading {
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-between;
    }

    .infl-card-text {
        margin: -50px 0 20px 0;
        height: 200px;
        padding: 30px 30px 0px 30px;
    }

    .testi-text .circle-btn {
        margin: -3px 0 21px 8px;
    }

    section.testi-sec.sec {
        padding-bottom: 0px;
    }

    .top-heading h5 {
        font-size: 20px;
    }

    .chs-text ul li h6 {
        font-size: 20px;
    }

    .chs-text h2 {
        font-size: 30px;
    }

    .top-heading {
        margin-bottom: 30px;
    }

    .fun-sec .top-heading {
        margin-top: 80px;
    }

    .top-heading p {
        width: 100%;
    }

    img.cloud-img2 {
        width: 60px;
    }

    img.cloud-img1 {
        width: 70px;
    }

    section.fun-sec.sec {
        padding-bottom: 0px;
    }

    img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
        max-height: 200px;
    }

    .about_text {
        padding: 50px 10px;
        width: 100%;
    }

    .about_text::before {
        right: -3%;
        width: 110%;
        height: 101%;
    }

    img.about-img {
        height: auto;
    }

    .page-id-7 .carousel-caption {
        align-items: flex-start;
    }

    .page-id-7 .banner_text {
        margin-top: 40px;
    }

    .carousel-indicators {
        right: 5px;
    }

    .single-product div.product {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images,
    .summary.entry-summary {
        min-width: 100%;
    }

    ul.tabs.wc-tabs li a {
        font-family: 'Poppins', serif !important;
    }

    section.main_slider.inner-banner {
        height: 300px;
    }

    .page-id-10 section.about {
        padding-bottom: 40px;
    }

    .con-form1 {
        border-radius: 20px 10px 20px 10px;
        padding: 20px;
        margin-right: 0px;
    }

    .contact-flex-wrap {
        max-width: 100%;
        flex-direction: column;
    }

    .cont-1 {
        border-radius: 10px 0px 10px 20px !important;
        padding: 40px 10px 20px 20px !important;
        flex: 0 0 480px !important;
    }

    .cont-1::before {
        top: -5% !important;
        right: -5% !important;
        width: 111% !important;
        height: 109% !important;
    }

    .cont-1 p.white {
        font-size: 12px;
        width: 90%;
    }

    .contact-info-list li {
        gap: 5px;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .contact-info-list li br {
        display: none;
    }

    .contact-info-list li a,
    .contact-info-list li span {
        font-size: 14px;
    }


    .contact-info-list {
        width: 95%;
    }

    .contact-form h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }


    .header-logo img.custom-logo {
        max-height: 100px;
        object-fit: contain;
        object-position: left;
    }

    .infl-btn {
        margin-bottom: 20px;
    }



    td.product-name a {
        color: black;
        font-size: 12px;
    }

    .infl-card-text p {
        min-height: 40px;
        min-height: 200px;
        line-height: 20px;
    }

    .infl-card.testi-card {
        max-width: 280px;
        margin: 0px auto 15px;
    }

    .about_text.inner-about {
        padding: 0px;
    }

    .about_text.inner-about p {
        width: 100%;
        max-width: 100%;
    }

    .woocommerce ul.products {
        justify-content: center !important;
    }

    .galler-image a {
        display: block;
        width: 100%;
    }

    .galler-image a img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .price-card {
        padding: 25px;
        margin-bottom: 15px;
    }

    .product-detail .product h3 {
        font-size: 20px;
        margin-top: 30px;
        line-height: 20px;
        margin-bottom: 0px;
    }


}


/*Media Query End*/