*,::before,::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Thin.ttf);
    font-weight: 100;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-ExtraLight.ttf);
    font-weight: 200;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Light.ttf);
    font-weight: 300;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-ExtraBold.ttf);
    font-weight: 800;
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway/Raleway-Black.ttf);
    font-weight: 900;
}
@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora/Lora-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora/Lora-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora/Lora-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora/Lora-Bold.ttf);
    font-weight: 700;
}


body {
    font-family: var(--bodyFont);
    font-size: 16px;
}
:root{
    --primaryColor:#c0392b;
    --secondaryColor: #000;
    --whiteColor: #ffff;
    --bodyFont: "Raleway"; 
    --headingFont: "Lora";
    --iconFont: "Font Awesome 5 Free"; 
}
h1,h2,h3,h4,h5{
    color: var(--secondaryColor);
}
h2{
    font-size: 36px;
    font-weight: 700;
}
h3{
    font-size: 20px;
    font-weight: 700;
}
h4{
    font-size: 18px;
    font-weight: 400;
    color: var(--themeColor);
    line-height: 30px;
}
h5{
    font-size: 16px;
    font-weight: 700;
}
header,section,.headerInner,.headerTop,footer,.footerTop,.footerBottom{
    width: 100%;
    float: left;
}
p{
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    color: #17202a;
}
a{
    display: inline-block;
    text-decoration: none;
    color: var(--secondaryColor);
    font-weight: 600;
    font-size: 15px;
}
ul.contentlist li{
    position: relative;
    padding: 5px 0 5px 30px;
    line-height: 25px;
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 500;
}
ul.contentlist li:hover{
    color: var(--primaryColor);
}
ul.contentlist li::before{
    position: absolute;
    content: "\f061";
    top: 6px;
    left: 0;
    font-family: var(--iconFont);
    font-size: 16px;
    font-weight: 900;
    color: #5d5b5b;
}
.object-cover{
    object-fit: cover;
    object-position: center;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

a.primaryBtn{
    font-size: 16px;
    padding: 10px 20px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 35px;
}
a.primaryBtn span{
    display: inline-block;
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
}
.contentTitle h2{
    font-size: 50px;
    color: var(--secondaryColor);
    line-height: 60px;
    font-weight: 700;
    font-family: var(--headingFont);
}
.contentTitle span{
    color: var(--primaryColor);
    font-family: var(--headingFont);
}

section {
    padding: 70px 0;
}
header .headerInner{
    background-color: #efefef;
    position: relative;
}
header {
    width: 100%;
    float: left;
    z-index: 999;
    position: fixed;
    -webkit-transition: .6s ease;
    transition: .6s ease;
    top: 0;
    left: 0;
    right: 0;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-transition: .6s ease;
    transition: .6s ease;
}
header .headerTop{
    border-bottom: 1px solid #ebebeb;

}
.container-fluid{
    padding: 0 var(--bs-gutter-x,0.75rem);

}
header .headerInner .headerTop a.navbar-brand img{
    height: 90px;
}
header .headerInner .headerTop::before{
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    height: 100%;
    width: 320px;
    background-color: #30302b;
    opacity: 0.03;
    transform: skew(30deg);
}
header .headerInner .headerTop .navbar ul.navbar-nav li.nav-item a{
    color: var(--secondaryColor);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 16px;
}
header .headerInner .headerTop div#navbarNav{
    justify-content: space-between;
}
section#getintouch{
    background-image: url(../img/bg/contact-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}
header .headerInner .headerTop a.navbar-brand h1{
    margin: 0;
    color: var(--primaryColor);
    font-size: 29px;
    font-weight: 600;
}
header .headerInner .headerTop a.commonBtn{
    background-color: var(--whiteColor);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondaryColor);
    font-family: var(--headingFont);
}
header .headerInner .headerTop a.commonBtn i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 50px;
    margin-right: 5px;
}
header .headerInner .headerTop ul.headersocialIcn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
}
header .headerInner .headerTop ul.headersocialIcn li img{
    height: 17px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(1836%) hue-rotate(348deg) brightness(102%) contrast(82%);
}
header .headerInner .headerTop ul.headersocialIcn li a{
    height: 40px;
    width: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--whiteColor);
    color: var(--primaryColor);
}
header .headerInner .headerTop ul.headersocialIcn li i{
    font-size: 17px;
}
section.mainBanner {
    height: 80vh;
}
section.mainBanner .carousel, section.mainBanner .carousel-inner, section.mainBanner .carousel-item, section.mainBanner .carousel-item img{
    height: 100%;
}
section.mainBanner .bannerInnerWrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 23%);
}
section.mainBanner .bannerInnerWrap .contentWrap::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    width: 315px;
    height: 315px;
    background-color: var(--primaryColor);
    filter: blur(60px);
    opacity: 0.3;
}
section.mainBanner .bannerInnerWrap .contentWrap h1.headingBox{
    color: var(--whiteColor);
    font-size: 47px;
    line-height: 55px;
    font-weight: 500;
    margin: 0 0 30px;
    font-family: var(--headingFont);
}
section.mainBanner .bannerInnerWrap .contentWrap p{
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
    color: var(--whiteColor);
}
section.mainBanner .bannerInnerWrap .contentWrap a.primaryBtn{
    font-size: 24px;
    padding: 12px 40px;
}
section.mainBanner button[type="button"] {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--whiteColor);
    top: 50%;
    bottom: 100%;
    opacity: 1;
    font-size: 18px;
    background-color: var(--primaryColor);
}
section.mainBanner button[type="button"].carousel-control-prev {
    left: 20px;
}
section.mainBanner button[type="button"].carousel-control-next {
    right: 20px;
}
section.bannerWrap .bgWrap p{
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
    color: #17202a;
}
.owl-theme .owl-nav [class*="owl-"]:hover{
    background: none;
}
section.bannerWrap .bgWrap .boxContent{
    position: absolute;
    bottom: 20%;
    right: 2.5rem;
    max-width: 420px;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 20px;
    background-color: rgb(160 160 160 / 30%);
    padding: 20px;
}
section.bannerWrap .bgWrap .boxContent h3{
    color: var(--whiteColor);
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
}
section.bannerWrap .bgWrap .boxContent p{
    color: var(--whiteColor);
}
section.aboutWrap h3{
    font-family: var(--headingFont);
    margin: 0 0 15px;
}
section.aboutWrap .contentTitle h2{
    font-size: 30px;
    line-height: 45px;
}
section.aboutWrap p {
    line-height: 25px;
    font-size: 15px;
    margin: 0 0 12px;
}
span.borderBTn{
    border: 1px solid var(--secondaryColor);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 17px;
    display: inline-block;
    margin: 0 0 20px;
    font-weight: 600;
}
section.bannerWrap .contentWrap{
    position: relative;
    z-index: 0;
    padding: 150px 0 0;
}
section.bannerWrap .contentWrap::before{
    content: "";
    position: absolute;
    top: 130px;
    left: 0;
    background-color: #e3e3ca;
    width: 209px;
    height: 209px;
    border-radius: 50%;
    z-index: -1;
}
section.bannerWrap .contentWrap::after{
    content: "";
    position: absolute;
    top: 25%;
    left: 80%;
    width: 315px;
    height: 315px;
    background-color: var(--primaryColor);
    filter: blur(90px);
    opacity: 0.3;

}
section.bannerWrap .bgWrap .imagebox::before{
    content: "";
    position: absolute;
    top: -102px;
    right: 40%;
    height: 100%;
    width: 320px;
    background-color: #30302b;
    opacity: 0.03;
    transform: skew(30deg);
}
section.aboutWrap .testimonialBox .imageBox{
    height: 65vh;
}
section.aboutWrap .item .testimonialBox span{
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ebebe9;
    font-size: 1.125rem;
    font-weight: 400;
    border: 1px solid #dfe6e9;
    border-radius: 50px;
    padding: 10px 20px;
}

section.bridalInfo ul.btnInfo{
    display: flex;
    gap: 20px;
}
section.bridalInfo ul.btnInfo li{
    border: 1px solid #34495e;
    color: #17202a;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}
section.bridalInfo .boxWrap{
    background-color: var(--primaryColor);
    padding: 20px;
    height: 100%;
    border-radius: 20px;
}
section.bridalInfo .testimonialBoxBri .imageBox{
    height: 70vh;
}
section.bridalInfo .testimonialBoxBri .imageBox img{
    border-radius: 30px;
}
section.bridalInfo .contBox h3{
    font-size: 33px;
    color: var(--whiteColor);
    margin: 15px 0 30px;
}
section.bridalInfo .boxWrap .item{
    margin: 5px;
}
section.bridalInfo .contBox{
    padding-left: 25px;
}
section.bridalInfo .contBox a.primaryBtn{
    background-color: var(--whiteColor);
    color: var(--secondaryColor);
    font-size: 16px;
    padding:10px 9px;

}
section.bridalInfo .contBox a.primaryBtn span{
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}
section.bridalInfo .contBox p{
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: 300;
}
.padding-left50{
    padding-left: 50px;
}
section.bridalInfo .contentTitle h2{
    font-size: 45px;
    line-height: 55px;
    max-width: 100%;
}
.border-radius25{
    border-radius: 25px;
}
.border-radius20{
    border-radius: 20px;
}
.border-radius35{
    border-radius: 35px;
}
.border-radius30{
    border-radius: 30px;
}
.border-radius50{
    border-radius: 50px;
}
section.bridalInfo .owl-theme .owl-nav button span{
    padding: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    background-color: var(--whiteColor);
    font-size: 30px;
    color: var(--primaryColor);
    border-radius: 50%;
    transition: .4s ease;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 34%);
}
section.bridalInfo  .owl-theme .owl-nav button.owl-next {
    top: 80%;
    right: -40px;
    z-index: 2;
}
section.bridalInfo  .owl-theme .owl-nav button {
    margin: 0;
    position: absolute;
    transform: translateY(-180px);
}
section.bridalInfo .owl-theme .owl-nav button.owl-prev {
    top: 80%;
    left: -10px;
    z-index: 2;
}
section.bridalInfo .imgRight{
    position: relative;
}
section.bridalInfo .iconPlus{
    transform: translate(-20px, -100px);
    background-color: #000;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    color: var(--whiteColor);
}
section.bridalInfo p.leftPara{
    font-size: 16px;
    margin:  15px 0 0;
}

section.bridalInfo{
    position: relative;
}
section.bridalInfo .iconWrap{
    position: absolute;
    top: 10%;
    right: 0;
}

section.servicesWrap > .container-fluid{
    padding: 0 2.8rem;
}
section.beautyVideo > .container-fluid{
    padding: 0 2rem;
}

section.servicesWrap .contentBox{
    display: flex;
    align-items: center;
    gap: 20px;
}
section.servicesWrap .testimonialBoxBri .imageBox{
    height: 300px;
    position: relative;
}
section.servicesWrap .testimonialBoxBri .imageBox a{
    height: 100%;
    width: 100%;
}
section.servicesWrap .item{
    margin: 10px;
}
section.servicesWrap .bgBoxservices{
    background-color: rgb(245 246 249);
    padding: 2rem;
    border-radius: 50px;
    position: relative;
}
section.servicesWrap .bgBoxservices::after{
    content: "";
    position: absolute;
    top: 30px;
    left: 28px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    background-color: var(--primaryColor);
    border-radius: 50px;
    z-index: -1;
}
section.servicesWrap .bgBoxservices::before{
    content: "";
    position: absolute;
    top: 30px;
    left: -28px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    background-color: var(--primaryColor);
    border-radius: 50px;
    z-index: -1;
}

section.servicesWrap .owl-theme .owl-nav button span{
    padding: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    background-color: var(--primaryColor);
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    transition: .4s ease;
}
section.servicesWrap  .owl-theme .owl-nav button.owl-next{
    top: 50%;
    right: -10px;
    z-index: 2;
}
section.servicesWrap  .owl-theme .owl-nav button{
    margin: 0;
    position: absolute;
    transform: translateY(-30px);
}
section.servicesWrap .owl-theme .owl-nav button.owl-prev{
    top: 50%;
    left: -10px;
}
section.servicesWrap .testimonialBoxBri .contentservice{
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    text-align: center;
    width: 100%;
}
section.servicesWrap .testimonialBoxBri .contentservice h3{
    text-shadow: (0px 4px 4px rgba(0,0,0,0.25));
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--whiteColor);
}
section.beautyVideo h2{
    color: var(--whiteColor);
    font-size: 60px;
    font-weight: 500;
}

section.beautyVideo p{
    color: var(--whiteColor);
    font-size: 1.25rem;
    line-height: 30px;
}
section.beautyVideo .contentVideo p{
    color: var(--whiteColor);
    font-size: 22px;
}
section.beautyVideo .icon{
    width: 90px;
    height: 90px;
    line-height: 105px;
    text-align: center;
    margin: 60px auto;
    border-radius: 50px;
    color: var(--secondaryColor);
    background-color: var(--whiteColor);
}
section.beautyVideo .icon i{
    font-size: 2rem;
}
section.beautyVideo .bgVideo{
    background-color: rgb(0 0 0 / 40%);
    border-radius: 50px;
    padding: 40px 20px 90px;
}

section.beautyVideo h3{
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 500;
    line-height: 58px;
}
section.beautyVideo{
    background-image: url(../img/bg/price-bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 50px;
}
section.beautyVideo ul.contentlist li{
    color: var(--whiteColor);
}
section.beautyVideo ul.contentlist li::before{
    color: var(--whiteColor);
}
section.infoBeauty .boxWrap{
    padding: 15px;
    border-radius: 40px;
    border: 1px solid rgb(227 227 227 / 80%);
    height: 100%;
}

section.counterBox .boxInner{
    background-color: rgb(221 229 252 / 64%);
    padding: 20px;
    margin: 10px;
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
}
section.counterBox .boxInner.bgChange{
    background-color: rgb(247 195 195 / 38%);
}
section.counterBox .boxInner h4{
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
section.counterBox .boxInner .iconImg img{
    height: 80px;
    margin: 0 0 20px;
}

section.infoBeauty .boxWrap .imageBox{
    height: 430px;
}
section.infoBeauty .boxWrap .imageBox img{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
section.infoBeauty .boxWrap .contentWrap h3{
    font-size: 28px;
    line-height: 41px;
    margin: 15px 0 10px;
    font-weight: 700;
    font-family: var(--headingFont);
}
section.infoBeauty .boxWrap .contentWrap P{
    font-size: 15px;
    margin:  15px 0 20px;
}
section.chooseWrap > .container-fluid{
    padding: 0 var(--bs-gutter-x,0.75rem)
}
section.chooseWrap{
    position: relative;
}
section.chooseWrap .icn1{
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: -1;
}
section.chooseWrap .icn2{
    position: absolute;
    bottom:13rem;
    left: 6rem;
}
section.chooseWrap .icn3{
    position: absolute;
    top: 5rem;
    left: 33.333333%;
    z-index: -1;
}
section.chooseWrap .bgBox{
    background-color: #f5f6f9;
    padding: 0 0 0 40px;
    border-radius: 35px;
    z-index: 0;
}
section.chooseWrap .bgBox .contentTitle h2{
    font-size: 30px;
}



a.whatsapp_btn {
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #1dc01d;
    color: #fff;
    border-radius: 50%;
    font-size: 27px;
    z-index: 99999;
}
section.content-inner.contactBox .map-wrapper.style-1 strong{
    color: var(--whiteColor);
    display: block;
    margin: 20px 0;
    font-size: 20px;
}

section.content-inner.contactBox .map-wrapper.style-1 .item1 {
    position: absolute;
    left: 27px;
    right: 20px;
    bottom: 10px
}
@media only screen and (max-width: 1380px) {
    section.content-inner.contactBox .info-widget.style-16 {
        padding: 15px 15px;
    }
}
section.content-inner.contactBox .form-wrapper.style-1 .form-body {
    padding: 60px 40px 70px;
    border-radius: 20px;
}

section.content-inner.contactBox .background-blend-burn {
    background-blend-mode: color-burn;
}
section.content-inner.contactBox .bg-secondary {
    height: 100%;
    background-color: #181818 !important;
}

section.content-inner.contactBox .form-wrapper.style-1.innerCareer .bg-secondary{
    background-color: #8980c3 !important;
}
section.content-inner.contactBox .form-wrapper.style-1{
    height: 100%;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 ul.contentlist li{
    color: var(--whiteColor);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 ul.contentlist li::before{
    content: "\f00c";
    background-color: #C6CBD0;
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50px;
    font-size: 8px;
    color: var(--whiteColor);
}
section.content-inner.contactBox .info-widget.style-16 {
    background-color: rgb(0 0 0 / 44%);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 0 50px rgb(48 38 109 / 5%);
}
section.content-inner.contactBox .icon-bx-wraper.style-1 {
    display: flex;
    gap: 15px;
    text-align: left;
}
section.content-inner.contactBox .icon-bx-wraper {
    position: relative;
}
section.content-inner.contactBox .info-widget.style-16 .row > *:not(:last-child):after{
    content: "";
    height: 100%;
    position: absolute;
    right: 50%;
    top: 0;
    width: 1px;
    background-color: #000;
    opacity: 0.1;
}
section.content-inner.contactBox .map-wrapper.style-1 {
    overflow: hidden;
    border-radius: 20px;
    min-height: 86vh;
    height: 100%;
    position: relative;
    z-index: 0;
}
section.content-inner.contactBox .map-wrapper.style-1::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondaryColor);
    opacity: .7;
}
section.testimonialWrap .testimonial-3{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 20px;
    height: 100%;
}
.testimonial-3 .testimonial-media,
.testimonial-7 .testimonial-media {
  width: 420px;
  border-radius: 15px;
  position: relative;
}
.testimonial-3 .testimonial-media img,
.testimonial-7 .testimonial-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px 15px 150px 15px;
}
.testimonial-3 .testimonial-media .item1,
.testimonial-7 .testimonial-media .item1 {
  position: absolute;
  bottom: 10%;
  left: -13%;
}
.testimonial-3 .testimonial-media .item1 .info-widget,
.testimonial-7 .testimonial-media .item1 .info-widget {
  width: 230px;
  background-color: #fff;
  border-radius: 15px;
  padding: 18px 25px;
  box-shadow: 0 20px 50px #0a33661a;
}
.testimonial-3 .testimonial-media .item1 .info-widget .star-list,
.testimonial-7 .testimonial-media .item1 .info-widget .star-list {
  gap: 3px;
  margin-bottom: 3px;
}
.testimonial-3 .testimonial-media .item1 .info-widget .star-list li i,
.testimonial-7 .testimonial-media .item1 .info-widget .star-list li i {
  color: #FFBE17;
  font-size: 20px;
}
.testimonial-3 .testimonial-media .item1 .info-widget .title,
.testimonial-7 .testimonial-media .item1 .info-widget .title {
  font-size: 18px;
  color: #0A3366;
  margin: 10px 0 0;
}
section.testimonialWrap{
    background-color: #f7f3eb;
}
section.testimonialWrap .bgWrap{
    background-color: var(--whiteColor);
    padding: 50px 50px 20px;
    border-radius: 50px;
    position: relative;
}
section.testimonialWrap .bgWrap::after{
    content: "";
    background: #fff;
    box-shadow: 0 90px 0 -70px rgba(255, 255, 255, 0.4), 0 40px 0 -30px rgba(255, 255, 255, 0.6);
    position: absolute;
    width: 100%;
    height: calc(100% - 20px);
    left: 0;
    top: 20px;
    border-radius: 60px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail{
  z-index: 1;
  width: 100%;
  border-radius: 15px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail .testimonial-text{
  position: relative;
  z-index: 1;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail .title{
  font-size: 18px;
  margin-bottom: 0;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail p{
  line-height: 1.7;
  font-size: 24px;
  color: #0A3366;
  margin-top: 70px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail p:last-child{
  margin-bottom: 0;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail::after{
  content: "\f10d";
  font-family: var(--iconFont);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  font-size: 55px;
  line-height: 65px;
  color: var(--primaryColor);
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-detail .star-list li{
  color: #FFCD37;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-contant{
  margin-bottom: 35px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-head{
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-info .testimonial-name{
  font-size: 24px;
  margin-bottom: 3px;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-info .testimonial-position{
  font-size: 16px;
}

section.testimonialWrap .bgWrap .testimonial-3 .testimonial-media .item1 .info-widget{
    width: 230px;
    background-color: #fff;
    border-radius: 15px;
    padding: 18px 25px;
    box-shadow: 0 20px 50px #0a33661a;
}
section.testimonialWrap .bgWrap .testimonial-3 .testimonial-media .item1 .info-widget .star-list{
    gap: 3px;
    margin-bottom: 3px;
}

section.testimonialWrap .bgWrap .star-list {
    display: flex;
    gap: 5px;
}
section.testimonialWrap .owl-theme .owl-dots .owl-dot span{
    width: 20px;
    height:6px;
    border-radius: 50px;
    margin: 3px;
}
section.testimonialWrap .owl-theme .owl-nav.disabled+.owl-dots{
    margin: 30px 0 0;
}
section.testimonialWrap .owl-theme button.owl-dot.active{
    border-radius: 50px;
}

section.content-inner.contactBox .section-head.style-1 .title {
    font-size: 43px;
    font-weight: 700;
    margin: 0 0 20px;
    font-family: var(--headingFont);
}
section.content-inner.contactBox .floating-underline.input-light.floating-underline .form-control {
    border: none;
    border-bottom: 2px solid var(--whiteColor);
    border-radius: 0;
    margin:  0 0 20px;
    width: 100%;
    float: left;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
section.content-inner.contactBox .floating-underline.input-light.floating-underline .form-control option{
    color: #000;
}

section.content-inner.contactBox select.form-select.form-select-lg.form-control{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color: var(--whiteColor);

}

section.content-inner.contactBox .floating-underline.input-light.floating-underline .form-control:focus{
    border:none;
    border-bottom: 2px solid var(--whiteColor);
    box-shadow: none;
}
section.content-inner.contactBox .floating-underline.input-light.floating-underline .form-control::placeholder{
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
section.content-inner.contactBox select.form-select.form-select-lg.form-control::placeholder{
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 .dz-title {
    color: var(--whiteColor);
    font-size: 22px;
    margin-bottom: 15px;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 .icon-bx i{
    color: #fff;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 .icon-content {
    flex: 1;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 .icon-bx {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    color: var(--bs-primary);
    font-size: 20px;
    justify-content: center;
    background-color: var(--primaryColor);
    border-radius: 50%;
}
section.content-inner.contactBox .icon-bx-wraper.style-1 p{
    color: var(--whiteColor);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    margin: 0 0 10px;
}
.testimonial-3 .testimonial-info .testimonial-name, .testimonial-7 .testimonial-info .testimonial-name {
    font-size: 24px;
    margin-bottom: 3px;
    color: #0A3366;
}
section.content-inner.contactBox .floating-underline .form-control {
    padding: 15px 0;
    border-bottom: 2px solid #0A3366;
    color: var(--bs-body-color);
    outline: 0 !important;
    font-size: 18px;
    background-color: transparent;
    resize: none;
    height: auto;
}
section.content-inner.contactBox input.submit{
    color: var(--whiteColor);
    background-color: #5c4eb1;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    margin:  20px 0 0;
    padding: 15px 40px;
    border: none;
}
section.innerBanner{
    background-image: url(../img/bg/banner.png);
    background-size: cover;
    background-position: left;
    padding: 200px 0 150px;
}

section.innerBanner .dz-bnr-inr.style-2 .banner-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
  }
  section.innerBanner .dz-bnr-inr h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 25px;
  }
  section.innerBanner  .dz-bnr-inr.style-2 .breadcrumb {
    border-radius:50px;
    background-color: #fff;
    padding:10px 30px;
    box-shadow: 0 0 30px rgba(48, 38, 109, 0.06);
  }
  section.innerBanner .dz-bnr-inr .breadcrumb-row ul {
    margin-bottom: 0;
  }
  section.innerBanner  .breadcrumb-row ul {
    padding:0;
    display: inline-block;
  }
  section.innerBanner  .dz-bnr-inr.style-2 .breadcrumb li {
    font-weight: 400;
  }
  section.innerBanner .breadcrumb-row ul li {
    padding:0;
    margin-right: 3px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #30266D;
    margin-right: 0;
  }

  section.innerBanner .dz-bnr-inr.style-2 .breadcrumb li {
    font-weight: 700;
  }
  section.innerBanner  .breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
  }
  section.innerBanner .breadcrumb-row ul li {
    padding:0;
    padding-left: 0px;
    margin-right: 3px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #30266D;
    margin-right: 0;
  }

  section.innerBanner .dz-bnr-inr.style-2 .bnr-media {
    height: 400px;
    width: 500px;
    min-width: 500px;
    margin: 0 30px 80px 0;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
  }
  section.innerBanner  .dz-bnr-inr.style-2 .bnr-media img {
    min-width: 100%;
    position: absolute;
    top: 20%;
  }
  section.innerBanner  .dz-bnr-inr.style-2 .bnr-media::before {
    content: "";
    width: 100%;
    background: linear-gradient(to bottom, #F9669D  0%, rgba(0, 0, 0, 0) 100%);
    aspect-ratio: 1 / 1;
    position: absolute;
    border-radius:50%;
    z-index: -1;
    top: 30%;
    left: 50%;
    opacity: 0.15;
    transform: translateX(-50%);
  }
  section.innerBanner .dz-bnr-inr.style-2 .item1, section.innerBanner .dz-bnr-inr.style-2 .item2, section.innerBanner .dz-bnr-inr.style-2 .item3 {
    position: absolute;
    z-index: 9;
  }
  section.innerBanner  .dz-bnr-inr.style-2 .dz-bnr-inr-entry .dz-bnr-inr-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    height: auto;
    min-height: auto;
  }
  section.innerBanner .breadcrumb-row ul li a {
    color: #F9669D;
  }
  section.blogWrap .blogWrap{
    background: linear-gradient(to bottom, #f3d2de 0%, rgba(0, 0, 0, 0) 100%);
    padding: 25px;
    border-radius: 35px;
  }
  section.blogWrap .blogWrap .contentBlog h3{
    font-size: 25px;
    color: var(--secondaryColor);
    margin: 20px 0;
    font-weight: 500;
  }
  section.blogWrap .blogWrap .blogImage{
    height: 300px;
  }

section.contactinfoBottom h2{
    font-size: 16px;
    font-weight: 500;
}
section.serviceWrap{
    background-image: url(../img/bg/service-bg.png);
    background-position: center;
    background-size: cover;
}
section.serviceWrap .serviceBox .title h3{
    font-size: 20px;
    margin:  0 0 20px;
}
section.serviceWrap .serviceBox{
    padding: 30px 20px 40px;
    box-shadow: 0 0 0 3px #b1a684,7px 7px 0 5px #efe6c4;
    height: 100%;
}
section.serviceWrap .serviceBox p{
    font-size: 15px;
    line-height: 28px;
}
section.faqWrap button.accordion-button{
    background-color: #fff;
    font-weight: 600;
    color: var(--secondaryColor);
}
section.faqWrap .accordion-button:not(.collapsed){
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}
section.faqWrap .accordion-button:not(.collapsed)::after{
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
section.faqWrap .accordion-button:focus{
    box-shadow: none;
    border: 1px solid var(--primaryColor);
}
section.faqWrap .accordion-body p{
    margin:  0;
}

.lb-nav .lb-next, .lb-nav .lb-prev {
    filter: invert(99%) sepia(1%) saturate(221%) hue-rotate(92deg) brightness(120%) contrast(100%);
}

section.serviceWrap .mb-4 {
    margin-bottom: 2rem !important;
}

 footer .footerTop .footerWidgets a img{
    height: 90px;
    margin:  0 0 30px;
 }

footer .footerTop{
    background-color: #161616;
    padding: 70px 0;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    position: relative;
}
footer .footerTop .boxBlack::after{
    content: "";
    position: absolute;
    left: 30px;
    top: -1rem;
    display: flex;
    justify-content: end;
    transform: skew(10deg);
    width: 100%;
    height: 200px;
    background-color: var(--primaryColor);
    z-index: -1;
    border-radius: 35px;
}
section.locationBox h2{
    color: var(--whiteColor);
    font-size: 60px;
    font-weight: 500;
}

section.locationBox p{
    color: var(--whiteColor);
    font-size: 1.25rem;
    line-height: 30px;
}
section.locationBox .contentVideo p{
    color: var(--whiteColor);
    font-size: 22px;
}
section.locationBox .locationBg{
    background-color: rgb(0 0 0 / 72%);
    border-radius: 50px;
    padding:70px 0;
}

section.locationBox .contentVideo h3{
    color: var(--whiteColor);
    font-size: 38px;
    font-weight: 500;
    line-height: 58px;
}
section.locationBox{
    background-image: url(../img/bg/location-bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    padding: 60px 0;
}

section.locationBox .boxInfo{
    display: flex;
    flex-wrap: wrap;
    position: static;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
section.locationBox .boxInfo .columnBox{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 9999px;
    background-color: rgb(0 0 0 / 30%);
    padding: 0.5rem;
}
section.locationBox .boxInfo .columnBox .icon{
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whiteColor);
}
section.locationBox .boxInfo .columnBox .icon i{
    color: var(--secondaryColor);
    font-size: 1.875rem;
}
section.locationBox .boxInfo .columnBox h6{
    font-size: 22px;
    color: var(--whiteColor);
    font-weight: 400;
}

section.galleryWrap .inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 25px;
}
section.galleryWrap .inner .column {
    height: 380px;
}
section.galleryWrap .inner .column img, section.galleryWrap .inner .column a {
    width: 100%;
    float: left;
}
section.galleryWrap .inner .column img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
section.galleryWrap .inner .column a{
    height: 100%;
}
section.chooseWrap.aboutInner .bgBox{
    padding: 30px 0 30px 30px;
}

section.WhychooseBox .img-collage {
    position: relative;
}
section.WhychooseBox .img-collage>div {
    width: 49%;
    display: inline-block;
    padding: 0 10px;
}
section.WhychooseBox .img-collage img {
    border: 12px solid #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
}
section.WhychooseBox .contentTitle h2{
    font-size: 45px;
}
section.WhychooseBox p{
    color: #243238;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
section.WhychooseBox .boxWrap{
    padding: 15px 20px 18px;
    border-left: 5px solid #ffa3dc;
    background-color:#fee9f6;
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
    box-shadow: 0 0 5px #ffd5e9;
}



footer .footerTop .footerWidgets h2{
    color: #ebebe9;
    margin:  0 0 40px;
}
footer .footerTop .footerWidgets p{
    color: #ebebe9;
    font-weight: 400;
}
footer .footerTop .footerWidgets ul.info li{
    position: relative;
    padding-left: 40px;
    line-height: 1.8;
    color:#ebebe9;
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: 400;
}
footer .footerTop .footerWidgets ul.info li a{
    color: #ebebe9;
    font-size: 1.125rem;
    font-weight: 400;
}
footer .footerTop .footerWidgets ul.info li i{
    position: absolute;
    top: 7px;
    left: 0;
    font-size: 1.125rem;
    color: #ebebe9;
}

footer .footerTop .footerWidgets ul.infoList li a{
    color: #ebebe9;
    font-size: 17px;
    font-weight: 400;
}
footer .footerTop .footerWidgets ul.infoList{
    line-height: 45px;
}
footer .footerTop .footerWidgets a.footerLogo{
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .footerTop .footerWidgets h2{
    font-size: 18px;
}
footer .footerTop .footerWidgets h3{
    color: #ebebe9;
    font-weight: 500;
    font-size: 1.25rem;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 25px;
}
footer .footerTop .footerWidgets h3.centerBox::before{
    left: 40%;
}
footer .footerTop .footerWidgets h3::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--whiteColor);
    width: 40px;
}
footer .footerBottom ul.social_links{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
footer .footerBottom ul.social_links li a{
    background-color: #000;
    border: 1px solid var(--whiteColor);
    height: 50px;
    width: 50px;
    line-height: 48px;
    text-align: center;
    border-radius: 50px;
    color: var(--whiteColor);
    font-size: 18px
}
footer .footerBottom ul.social_links li img{
    height: 19px;
}
footer .footerBottom{
    background-color: #161616;
    padding: 25px 0;
}
footer .footerBottom{
    border-top:  1px solid var(--whiteColor);
}
footer .footerBottom p{
    color: #ebebe9;
    font-weight: 400;
    margin: 0;
}


@media screen and (min-width: 1424px) {
    section.content-inner.contactBox .map-wrapper.style-1 .item1{
        bottom: 110px;
    }
    section.innerBanner .dz-bnr-inr.style-2 .bnr-media{
        height: 500px;
    }
    section.content-inner.contactBox .map-wrapper.style-1{
        min-height: 450px;
    }
    section#getintoucH{
        padding: 120px 0;
    }
    section.bannerWrap .bgWrap .boxContent{
        bottom: 10%;
    }
    section.mainBanner {
        height: 90vh;
    }
    section.bannerWrap .bgWrap .imagebox img{
        height: 580px;
    }ection.bannerWrap .bgWrap .boxContent{
        bottom: 8%;
        right: 60px;
    }
    section.bannerWrap .bgWrap .imagebox::before{
        right: 52%;
    }
    section.aboutWrap .item .testimonialBox .contOverlay{
        left: 20px;
    }
    section.aboutWrap .item .testimonialBox .contOverlay.secondOverlay{
        bottom: 90px;
    }
    section.bridalInfo .contBox a.primaryBtn{
        font-size: 15px;
        padding:10px 15px;
    }
    section.bridalInfo .contentTitle h2{
        max-width: 414px;
    }
    section.bridalInfo .iconPlus{
        transform: translate(-20px, -120px);
    }
    section.beautyVideo .contentVideo h3{
        font-size: 34px;
        line-height: 46px;
        margin: 0 0 20px;
    }
    footer .footerTop .boxBlack::after{
        left: 0;
        transform: inherit;
    }
    section.galleryWrap .galleryGrid .column .imageBox{
        height: 380px;
    }
    header .headerTop.headerInnerPages .navbar{
        padding: 20px 150px;
     }
    section.servicesWrap .testimonialBoxBri .imageBox{
        height: 550px;
    }
    header .headerInner .headerTop .navbar ul.navbar-nav a.navbar-brand{
        transform: inherit;
    }
    header .headerInner .headerTop .navbar ul.navbar-nav  li.nav-item.paddingBox {
        padding: 0
    }
    section.chooseWrap .bgBox .contentTitle h2{
        font-size: 50px;
    }
    section.aboutWrap .testimonialBox .imageBox{
        height: 80vh;
    }
}

@media screen and (max-width: 991px) {
    header .headerInner .headerTop::before{
        display: none;
    }
    header{
        position: sticky;
    }
    header .headerInner .headerTop a.navbar-brand img{
        height: 60px;
    }
   header .headerInner .headerTop .navbar ul.navbar-nav{
        align-items: flex-start !important;
        gap: 10px !important;
   }
   header .headerInner .headerTop .navbar .navbar-toggler{
    box-shadow: none;
   }
   header .headerInner .headerTop .navbar ul.navbar-nav li.nav-item a{
    font-size: 15px;
   }
   header .headerInner .headerTop a.commonBtn{
    margin: 15px 0 20px;
   }
   section.mainBanner{
    height: 65vh;
   }
   section.aboutWrap .testimonialBox .imageBox{
    height: 70vh;
    margin:  0 0 20px;
   }
   section.WhychooseBox .img-collage{
     margin:  20px 0 0;
   }
   .contentTitle h2{
    font-size: 35px;
    line-height: 50px;
   }
   section.testimonialWrap .testimonial-3{
    height: 380px;
   }
    section.infoBeauty .boxWrap{
        margin:  0 0 20px;
        height: auto;
    }
    footer .footerTop .footerWidgets h3{
        margin: 25px 0;
    }
}
@media screen and (max-width: 767px) {
    section.aboutWrap .testimonialBox .imageBox{
    height: 50vh;
    margin:  0 0 20px;
   }
    section.testimonialWrap .testimonial-3{
        flex-wrap: wrap;
        height: 580px;
    }
    section.testimonialWrap .bgWrap::after{
        display: none;
    }
}