@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Thin.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 100; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Light.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 200; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Regular.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 400; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Medium.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 500; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Bold.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 700; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeckTrial'; /* Name of the font */
    src: url('../font/BeatriceDeckTRIAL-Extrabold.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 900; /* Optional */
}


@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Thin.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 100; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Light.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 300; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Regular.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 400; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Medium.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 500; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Semibold.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 600; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Bold.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 700; /* Optional */
}
@font-face {
    font-family: 'BeatriceDeck'; /* Name of the font */
    src: url('../font/BeatriceTRIAL-Extrabold.otf') format('opentype'); /* Path to your .otf file */
    font-weight: 800; /* Optional */
}
/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row.align-items-center{
    align-items: center;
}
/* Columns */
[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* 12 Column System */
.col-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-2-half {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-8 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-11 {
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive Example */
@media (max-width: 768px) {
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.relative {
    position: relative;
}
.white{
    color: #fff;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.width-70{
    max-width:70%;
}
section {
    position: relative;
}

body {
    font-family: "BeatriceDeck", monospace;;
    overflow-x: hidden !important;
    color: var(--themeDark);
    position: relative;
}

body.no-scroll {
    overflow-y: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

body:has(.menu-offcanvas.active) {
    overflow-y: hidden;
}

:root {
    --themeColor: #cc615d;
    --themeColor2: #000;
    --textColor: #3F3F46;
    --borderColor: #C2C2C4;
}

.gradient-heading {
    background: -webkit-linear-gradient(0deg,#09090B, var(--themeColor2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    color: #fff !important;
}

.container {
    max-width: 1295px;
    position: relative;
    padding-inline: 20px;
    z-index: 4;
    margin: auto;
}

.container-full {
    max-width: 100%;
    padding-inline: 20px;
}

.special-heading {
    font-family: 'BeatriceDeckTrial';
    background-color: var(--themeColor);
    color: #fff;
    line-height: 1em;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "BeatriceDeckTrial";
    margin-bottom:0;
    margin-top:0;
}
p{
    margin-top:0;
    margin-bottom:0;
}
a,
button,
svg {
    transition: .5s !important;
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

input {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

textarea {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

.theme-color {
    color: var(--themeColor2);
}

.text-bold {
    font-weight: 600;
}

.bi-btn {
    padding: 15px 30px;
    background-color: var(--themeColor);
    color: #fff;
    border: none;
    transition: .5s;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer !important;
    border-radius: 5px;
    font-family: "BeatriceDeck" !important;
    text-transform: uppercase;
    display: block;
    width: fit-content;
}

.bi-btn:hover {
    background-color: #000 !important;
    scale: .96;
}

.bi-btn.transparent {
    background-color: transparent;
    color: var(--themeDark);
}

.bi-btn.outline {
    border: 1px solid transparent
}

.bi-btn.outline:hover {
    border-color: var(--themeColor);
}

.bi-btn.tranparent {
    background-color: transparent;
    text-decoration: underline !important;
}

.bi-btn.tranparent.dark {
    color: var(--themeDark);
}

.bi-btn.white {
    background: #fff;
    color: var(--themeColor);
}
.bi-btn.alt {
    background-color: var(--themeColor2);
    color: #fff;
}

.bi-btn.white:hover {
    background-color: #000 !important;
    color: #fff !important;
}
.bi-btn.black{
    background-color: #272727;
}
.bi-btn.black:hover{
    background-color: var(--themeColor2) !important;
}
.bi-header {
    position: absolute;
    width: 100%;
    top: 20px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper a.theme-heading-small {
    color: #fff;
}

.call-btn {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}
.bi-hero{
    padding: 230px 0 120px;
    background: url('../img/hero-bg.webp') no-repeat center center/cover;
    display: flex;
    justify-content: start;
    align-items: center;
}
.bi-hero-content h1 {
    font-size: 115px;
    line-height: 0.7em;
    color: #fff;
    text-transform: uppercase;
}

.bi-hero-content h1 span {
    font-size: 60px;
}

.bi-hero-content p {
    font-family: "BeatriceDeck";
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}
.bi-hero-content .bi-form {
    margin-left: 30px;
}
.bi-form {
    background-color: rgb(255 255 255 / 10%);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgb(255 255 255 / 40%);
}

.bi-form input {
    width: 100%;
    height: 45px;
    border: 1px solid rgb(0 0 0 / 10%);
    text-indent: 15px;
    font-size: 18px;
    font-family: 'BeatriceDeck';
    letter-spacing: 0px;
    color: #000;
    font-family: "BeatriceDeck";
}

.bi-form input {
    margin-bottom: 20px;
}

.bi-form label {
    color: #fff;
    font-family: 'BeatriceDeck'; 
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.bi-btn {
    font-family: 'BeatriceDeckTrial';
    font-size: 20px;color: #fff;
}
.hero-logo-wrapper {
    background-color: rgb(255 255 255 / 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(14px);
}

.hero-logo-wrapper img {
    max-width: 140px;
}
.btn-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 10px;
}

.btn-wrapper .bi-btn {
    width: 100%;
    text-align: center;
}
.hero-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-list li {
    font-size: 16px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 400;
    font-family: "BeatriceDeck";
}
.row.align-items-center.margin-top{
    margin-top: 50px;
}
.top-content {
    text-align: center;
}

.bi-services {
    padding: 150px 0;
}

.top-content small {
    font-size: 16px;
    font-family: 'BeatriceDeck';
    font-weight: 300;
    display: block;
    margin-bottom: 40px;
}

.theme-heading {
    font-size: 72px;
    text-transform: uppercase;
    line-height: 1em;
}
.service-wrapper {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 50px;
}

.service-item {
    max-width: 385px;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0px 4px 25px 0px #FADCCB;
    height: 457px;
    position: relative;
    transition: .5s;
}
.btn-started {
    position: absolute;
    bottom: 35px;
}
.theme-heading-small {
    font-family: "BeatriceDeck";
    font-size: 22px;
    line-height: 1.3em;
    font-weight: 500;
    margin: 20px 0;
}

.theme-para {
    font-size: 16px;
    letter-spacing: 0px;
    font-family: 'BeatriceDeck';
    font-weight: 300;
}

.btn-started {
    width: fit-content;
    margin-top: 30px;
    display: block;
    font-size: 18px;
    letter-spacing: 0px;
    color: #000;
    font-weight: 500;
    text-decoration: underline !important;
    transition: .5s;
}
.btn-started:hover {
    color: var(--themeColor) !important;
}
.service-item:hover {
    box-shadow: 0px 4px 25px 20px #FADCCB;
}
:is(.bi-whychoose, .bi-services, .bi-our-work) .bi-btn.alt {
    margin: 80px auto 0;
}
.bi-footer .bi-btn.alt{
    margin: auto;
}
.bi-whychoose{
    padding: 20px 0 100px;
}
.bi-whychoose .hero-list li {
    color: #000;
    width: 45%;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.5em;
}

.bi-whychoose .hero-list {
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    margin-top: 50px;
    max-width: 80%;
    margin-inline: auto !important;
}
.package-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40px;
    flex-wrap: wrap;
}
.package-item {
    padding: 30px;
    box-shadow: 0px 0px 10px 20px rgba(255, 0, 0, 0.03);
    border-radius: 30px;
    transition: .5s;
    max-width: 390px;
    position: relative;
}
.package-item.featured:before {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    background: url('../img//best-seller.png') no-repeat center;
    background-size: contain;
    width: 100px;
    height: 100px;
}
.package-item:hover {
    box-shadow: 0px 0px 10px 20px rgba(255, 0, 0, 0.1);
}

.price {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: -2px;
}

.package-list li {
    font-size: 16px;
    font-weight: 300;
    margin: 15px 0;
    line-height: 1.3em;
}

.package-list {
    list-style: disc;
    padding-left: 20px !important;
    margin: 20px 0 40px;
    height: 415px;
    overflow-y: auto;
}
.package-list::-webkit-scrollbar {
  width: 8px;
  background-color:#eee9e9;
  border-radius:10px;
}
 
.package-list::-webkit-scrollbar-thumb {
  background-color: var(--themeColor);
  border-radius:10px;
}
.package-item .bi-btn {
    width: 100%;
    text-align: center;
}
.bi-our-work {
    padding: 120px 0;
    background: url('../img/work-bg.webp') no-repeat center;
    background-size: cover;
}
.work-img {
    margin-top: 100px;
    height:1192px;
}
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.steps-content {
    width: 60%;
}

.steps-boxes {
    width: 40%;
    padding-left: 100px;
}
.steps-boxes .service-item{
    margin-top: 40px;
}

.top-content.text-left {
    text-align: left;
}

.top-content.text-left .theme-heading {
    font-size: 60px;
    margin-bottom: 40px;
}

.top-content.text-left img {
    margin-left: -23px;
}
.bi-cta{
    padding: 120px 0;
}
.top-content .theme-para {
    margin: 50px;
}
.top-content .modal-footer button {
    margin-inline: auto;
    width: 100%;
}

.top-content input {
    height: 55px;
}
.bi-testimonial{
    padding: 20px 0 120px;
}
.testimonial-slider{
    margin-top: 80px;
}
.testimonial-item {
    padding: 210px 125px;
    background: url('../img/testimonial-bg.png') no-repeat center;
    background-size: contain;
}

.testimonial-item img {
    max-width: 200px;
    margin-left: -10px;
}

.bi-footer{
    background: url('../img/footer-bg.webp') no-repeat center;
    background-size: cover;
    padding: 120px 0 60px;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    color: #fff;
}

.footer-content-wrapper {
    width: 60%;
}

.footer-form-wrapper {
    width: 40%;
}

.footer-list-wrapper {
    display: flex;
    gap: 30px;
    padding-right: 100px;
}

.footer-list h5 {
    font-size: 17px;
    font-weight: 500;
    font-family: "BeatriceDeck";
    margin-bottom: 30px;
}

.footer-list ul li a {
    color: #fff;
    font-weight: 300;
}

.footer-list ul {
    margin-bottom: 60px;
}

.footer-list {
    width: 50%;
}

.copyright {
    font-size: 15px;
    font-weight: 300;
}

.footer-form-wrapper .bi-form {
    background-color: transparent;
    padding: 0;
    margin-top: 30px;
    border: none;
}

.footer-form-wrapper .bi-form input {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.footer-form-wrapper .bi-form input::placeholder {
    color: #fff;
}

.footer-form-wrapper .bi-form button {
    width: 100%;
}

.bottom-footer {
    margin-top: 180px;
}
.footer-list-wrapper {
    margin-top: 55px;
}
.footer-list ul li {
    margin: 12px 0;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.image-slider {
    background-color: #C54C4880;
    padding: 0px;
    position: absolute;
    width: 100%;
    top: -20%;
    rotate: 77.5deg;
    overflow: hidden;
    
}

.image-slider img {
    rotate: -90deg;
}

.image-slider.left {
    left: -45%;
}
.image-slider.right {
    rotate: -77.5deg;
    right: -45%;
}
.bi-packages {
    padding: 120px 0 50px;
}
/* Inner animation wrapper */
.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
  animation: slide 50s linear infinite;
}

/* Keyframes */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}









#modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100vw;
    height: 100vh;
    z-index: 9999
}

#modal .modal-content {
    width: 100%;
    max-width: 600px;
    background: #111;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgb(2 6 23 / .2);
    padding: 20px;
    position: relative
}

#modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px
}

.modal-header {
    position: absolute;
    right: 20px
}

.modal-header h3 {
    display: none
}

.modal-body p {
    color: #fff;
    font-size: 24px
}

p#modal-price-number {
    margin-top: 10px
}

button.close-modal {
    background-color: #fff0;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 100!important;
    font-family: 'Urbanist';
    height: fit-content;
    line-height: 1
}

p#modal-price-number {
    font-weight: 600;
    font-size: 40px
}

p#modal-price-number sub {
    font-size: 20px;
    font-weight: 200;
    position: relative;
    bottom: 8px
}

.opacity-0 {
    opacity: 0
}

.modal-footer .bi-btn {
    margin-top: 20px
}

.package-price-wrapper.d-none {
    display: none
}

.modal-content .bi-form label {
    display: none!important
}

.modal-content .bi-form input {
    margin-bottom: 20px
}

.modal-body {
    text-align: center
}

.modal-body p {
    margin-bottom: 10px
}
.modal-body .theme-para {
    margin-top: 0 !important;
    font-size: 16px !important;
    letter-spacing: 0px;
    font-family: 'BeatriceDeck';
    font-weight: 300 !important;
    margin-bottom: 10px !important;
}

.modal-content .bi-form input {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display'
}

#modal .modal-content {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    border: 1px solid #ffffff2b
}

.modal-content .bi-form textarea {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display';
    font-weight: 400
}

.modal-body .modal-footer .bi-btn {
    background-color: var(--themeColor2);
    color: #fff;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0
}

.modal-body .modal-footer {
    width: 100%;
    text-align: center
}
.modal-content input {
    margin: 10px 0;
    border-color: rgb(255 255 255 / .4) !important;
    font-family: 'santoshi' !important;
}

.modal-content .bi-form {
    font-family: 'santoshi' !important;
}
.modal-content textarea {
    margin-top:10px;
    font-family: 'santoshi' !important;
    text-indent: 15px;
    color: #fff;
    font-family: 'santoshi';
    width: 100%;
    background-color: transparent;
    border: none;
    border: 1px solid rgb(255 255 255 / .4) !important;
    font-size: 15px;
    padding-top:15px;
}
.modal-content textarea::placeholder {
    color: #fff;
}

.modal-content .bi-form .bi-btn{
    color: #fff;
    width: 100%;
    border-radius:0px !important;
}
/* Modal initial hidden state */
#modal {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Modal visible state (fade-in + zoom-in) */
#modal.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto; /* Allow interaction when visible */
}

/* Modal closing state (fade-out + zoom-out) */
#modal.close {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none; /* Disable interaction while closing */
}

.modal-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}

.modal-img-wrapper {
    width: 40%;
}

.modal-content-wrapper {
    width: 60%;
    text-align: left;
    padding: 20px;
    color: #000;
}

#modal .modal-content {
    padding: 0;
    max-width: 800px;
    background-color: #fff;
}

.modal-content .bi-form {
    border: none;
    background-color: transparent;
    backdrop-filter: blur(0px);
    padding: 0;
}

.modal-body p {
    color: #000;
}

.modal-content .bi-form input {
    border-color: #000 !important;
    font-family: 'BeatriceDeck' !important;
    font-weight: 300;
    font-size: 15px;
}

.modal-content .bi-form textarea {
    border-color: #000 !important;
    font-family: 'BeatriceDeck' !important;
    font-weight: 300;
    font-size: 15px;
    color: #000;
}

.modal-content .bi-form textarea::placeholder {
    color: #777777;
}

button.close-modal {
    color: #ffffff;
    background-color: #000;
    padding: 0 7px;
    border-radius: 50% !important;
    margin-right: -18px;
}


.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / .85);
    opacity: 0;
    visibility: hidden;
    z-index: 9989;
    cursor: pointer
}

.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: var(--themeColor);
    color: #fff;
    transform: translateX(-100%);
    z-index: 9999;
    display: flex;
    flex-direction: column
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px
}

.card-inner img {
    border-radius: 20px
}

.logo {
    max-width: 120px
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer
}

.offcanvas-menu {
    flex: 1;
    padding: 0 20px
}

.offcanvas-menu ul {
    list-style: none;
    padding: 0
}

.offcanvas-menu li {
    margin-bottom: 12px
}

.offcanvas-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    width: 100%
}

.submenu {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 15px
}

.submenu li {
    margin-bottom: 8px
}

.submenu li a {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 300;
    padding-left: 20px
}

.has-submenu>a {
    cursor: pointer
}

.offcanvas-footer {
    padding: 20px
}

.cta-btn {
    display: block;
    text-align: center;
    background: #ff6a00;
    color: #fff;
    padding: 14px;
    text-decoration: none;
    border-radius: 6px
}

.header-wrapper .logo {
    max-width: fit-content
}

.offcanvas-header img {
    max-width: 190px
}

.offcanvas-header {
    margin-bottom: 10px
}

.offcanvas-footer .mk-btn {
    font-size: 20px;
    font-weight: 500
}

.has-submenu {
    position: relative;
    margin-bottom: 0!important
}

.has-submenu>a {
    padding-right: 30px
}

/*.has-submenu>a::after {*/
/*    content: "▾";*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 10px;*/
/*    transform: translateY(-50%) rotate(0deg);*/
/*    font-size: 18px;*/
/*    transition: transform 0.35s ease;*/
/*    font-family: cursive*/
/*}*/

/*.has-submenu.open>a::after {*/
/*    transform: translateY(-50%) rotate(180deg)*/
/*}*/
.offcanvas-footer .bi-btn {
    width: 100%;
    text-align: center;
}
.inner-page .bi-hero-content h1 {
    font-size: 60px;
    line-height: 1em;
}

.inner-page .bi-hero-content h1 span {
    font-size: 35px;
    font-family: 'BeatriceDeck';
    font-weight: 400;
}
.image-with-text {
    padding: 120px 0;
}
.theme-heading-big {
    font-size: 40px;
    font-weight: 600;
    font-family: 'BeatriceDeck';
    line-height: 1.1em;
    margin-bottom: 30px;
    margin-top: 10px;
}

.content-wrapper {
    padding-right: 40px;
}

.inner-page .bi-hero{
    display: block;
}
.image-with-text.reverse{
    padding-top: 20px;
}
.image-with-text.reverse .row {
    flex-direction: row-reverse;
}

.image-with-text.reverse .content-wrapper {
    padding-right: 0;
    padding-left: 40px;
}
.top-content.text-left .theme-para {
    margin: 0;
}
.testimonial-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 65px;
}

.testimonial-wrapper .testimonial-item {
    width: 50%;
}
.inner-page .bi-cta {
    padding-top: 0;
}
.bi-form textarea {
    width: 100%;
    height: auto;
    border: 1px solid rgb(0 0 0 / 10%);
    text-indent: 15px;
    font-size: 18px;
    font-family: 'BeatriceDeck';
    letter-spacing: 0px;
    color: #000;
    font-family: "BeatriceDeck";
    padding-top: 10px;
}
.contact-item {
    padding: 5px 20px;
    border-left: 4px solid var(--themeColor);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #111;
    margin-bottom: 15px;
}
.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: "BeatriceDeck";
}

.faq-question {
  font-family: "BeatriceDeck";
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  border: none;
  outline: none;
  background: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 20px;
    transition: transform 0.3s ease;
    font-weight: 400;
    font-family: fantasy;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding: 20px 20px 20px;
}
.bi-faq{
    padding-bottom: 120px;
}
.inner-page .bi-faq{
    padding-top: 120px;
}
.faq-item.active .faq-answer {
    padding-bottom: 40px;
}
.faq-section {
    margin-top: 50px;
}
.faq-item.active .faq-question{
    background-color: var(--themeColor);
    color: #fff;
}
.locations-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.locations-item {
    display: flex;
    width: 22%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0px 4px 15px 0px #FADCCB;
    border-radius: 20px;
}
a.locations-item{
    color: #111;
}
.locations-item h3 {
    margin: 0;
}

.locations-item img {
    width: 50px;
}

/* .inner-page.alt .bi-form {
    background-color: transparent;
    padding: 0;
    border: none;
    backdrop-filter: blur(0px);
} */

.inner-page.alt .bi-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 16px;
}

.inner-page.alt .bi-form label {
    display: none;
}

.inner-page.alt .bi-form input::placeholder {
    color: #fff;
    font-weight: 100;
}

.inner-page.alt .modal-footer .bi-btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.inner-page.alt .bi-hero-content {
    padding-right: 80px;
}
.inner-page.alt .bi-form .theme-heading.white {
    font-size: 35px;
    margin-bottom: 30px;
}
.item-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 70px;
}

.item-wrapper .service-item {
    width: auto;
    flex: 1;
    max-width: 100%;
    height: fit-content;
    padding: 30px;
}
.inner-page .content-wrapper.text-left p {
    margin-top: 20px;
}
.item-wrapper .service-item .counter {
    font-size: 60px;
    font-weight: 700;
    position: absolute;
    top: 28px;
    right: 30px;
}

.item-wrapper .service-item .theme-heading-small {
    margin-bottom: 0;
    font-size: 18px;
}
.inner-page .row.align-items-center.margin-top {
    margin-top: 0;
}
.inner-page.alt .image-with-text {
    padding-bottom: 100px;
}
.portfolio-slider {
    margin-top: 50px;
}
.bi-simple-steps .steps-wrapper {
    margin-top: 100px;
    flex-wrap: wrap;
    row-gap: 50px;
}

.bi-simple-steps .steps-wrapper .service-item {
    height: 278px;
    padding: 40px 40px 50px;
}
.bi-simple-steps {
    padding: 60px 0;
}
.btn-wrapper.big-btns a {
    font-size: 14px;
    padding-inline: 15px;
    width: fit-content;
}

.btn-wrapper.big-btns {
    flex-direction: row;
    align-items: start;
    justify-content: start;
}
.service-inner-contact .content-wrapper {
    padding-left: 80px;
    padding-right: 0;
}
.service-inner-contact-wrapper {
    padding: 60px 100px 75px 60px;
    background: url('../img/contact-inner-bg.png') no-repeat center;
    background-size: cover;
}
.service-inner-contact-wrapper .theme-heading.white {
    color: #000;
}

.inner-page.alt .bi-form .theme-heading .row {
    margin-top: 40px;
}

.service-inner-contact-wrapper .bi-form input {
    background-color: #FFF !important;
    color: #000 !important;
}

.service-inner-contact-wrapper .row {
    margin-top: 50px;
}

.service-inner-contact-wrapper .bi-form input::placeholder {
    color: #000 !important;
}
.service-inner-contact-wrapper .bi-form textarea::placeholder {
    color: #000 !important;
}

.service-inner-contact-wrapper .bi-form textarea{
    font-weight: 200 !important;
    font-size: 16px !important;
}

.service-inner-contact-wrapper .bi-form select {
    background-color: #fff !important;
    border: none;
    border-bottom: 1px solid #fff;
    color: #000;
    font-size: 16px;
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    font-family: "BeatriceDeck";
    font-weight: 200;
    text-indent: 15px;
}

.service-inner-contact-wrapper .bi-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: blur(0px);
    border: none;
}
.service-inner-contact {
    padding: 40px 0;
}
.bi-simple-steps .steps-wrapper .service-item {
    width: 30%;
    height: 230px;
}

.bi-blog {
    padding: 100px 0;
}
.blog-filter {
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--themeColor2);
}

ul.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

ul.category-tabs li.active {
    background-color: var(--themeColor2);
    color: #fff;
}

ul.category-tabs li {
    padding: 4px 20px;
    color: #000;
    font-weight: 600;
    transition: .5s;
    cursor:pointer;
}

ul.category-tabs li:hover {
    background-color: #f2eeee;
}
ul.category-tabs li.active:hover {
    background-color: var(--themeColor2);
    color: #fff;
}

input#blog-search {
    height: 45px;
    text-indent: 10px;
    background-color: #f4f4f5;
    border: none;
}
.blog-grid {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-card-modern {
    flex: 0 0 31%;
    border: 1px solid #f1efef;
    border-radius: 12px !important;
    background-color: #fff;
    transition: .5s;
}
.blog-card-modern:hover {
    background-color: #f3efef;
}

.blog-content {
    padding: 20px;
}

.blog-cats {
    display: flex;
    gap: 10px;
    text-decoration: underline;
    color: var(--themeColor3);
    margin-bottom: 10px;
}

.blog-title {
    line-height: 1em;
}

.blog-title a {
    color: var(--themeColor);
    font-weight: 700;
}

.blog-author {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.blog-author-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-author img {
    max-width: 40px;
}

.blog-author span {
    font-size: 14px;
}
.inner-page.blog-page {
    display: none;
}

.inner-page.blog-page:nth-child(1) {
    display: block;
}
.image-slider.right img {
    rotate: 90deg;
}

.submenu-toggle {
    background: none; border: none; cursor: pointer;
    padding: 4px; color: inherit;
    transition: transform 0.3s ease;
}
.has-submenu.open .submenu-toggle {
    transform: rotate(180deg);  /* arrow upar ho jata hai jab open ho */
}
.submenu {
    height: 0;
    overflow: hidden;
    opacity: 1;
}
.submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
}