@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../font/Montserrat-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Medium.woff2') format('woff2'),
        url('../font/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.woff2') format('woff2'),
        url('../font/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-SemiBold.woff2') format('woff2'),
        url('../font/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.woff2') format('woff2'),
        url('../font/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-SemiBold.woff2') format('woff2'),
        url('../font/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




* {
    margin: 0;
    padding: 0;
    font-family: var(--font-montserrat);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol {
    margin: 0;
    padding: 0;
}

ul,
li,
ul {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
}





:root {
    --pink: #B51F68;
    --light-pink: #C94B89;
    --purple: #6A3889;
    --black: #000000;
    --white: #FFFFFF;
    --font-montserrat: 'Montserrat';
    --font-outfit: 'Outfit';
    --headingOne-50: 50px;
    --headingTow-50: 50px;
    --headingThree-38: 38px;
    --headingFour-30: 30px;
    --headingFive-26: 26px;
    --headingSix-23: 23px;
    --paragraphOne-28: 28px;
    --paragraphTow-24: 24px;
    --paragraphThree-22: 22px;
    --paragraphFour-20: 20px;
    --paragraphFive-18: 18px;
    --paragraphSix-17: 17px;
    --paragraphSeven-16: 16px;
    --paragraphEight-14: 14px;
}


h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-family: var(--font-montserrat);

}


h1 {
    font-style: normal;
    font-size: var(--headingOne-50);
    color: var(--white);
    line-height: 60px;
    font-weight: 400;

}

h2 {
    font-weight: 400;
    font-size: var(--headingTow-50);
    color: var(--black);

}


h3 {
    font-size: var(--headingThree-38);
    color: var(--black);
    font-weight: 600;

}


h4 {
    font-size: var(--headingFour-30);
    color: var(--white);

}

h5 {
    font-size: var(--headingFive-26);
    color: var(--white);

}

h6 {
    font-size: var(--headingSix-23);
    color: var(--white);
    font-weight: 600;

}

.banner-padding {
    padding: 200px 0 150px 0;
}

.pinktext {
    font-weight: 700;
    color: var(--pink);
}


.container {
    max-width: 1440px;
}

.whitebutton {
    padding: 8px 8px 8px 24px;
    background-color: var(--white);
    border-radius: 50px;
    border: none;
    color: var(--pink);
    font-size: var(--paragraphSix-17);
    font-family: var(--font-outfit);
    font-weight: 600;
    display: inline-block;
    transition-duration: .5s;
    border: 1px solid var(--white);
}

.whitebutton .btntext {
    vertical-align: middle;
}


.whitebutton:hover {
    color: var(--white);
    background-color: var(--black);
    transition-duration: .5s;
    border: 1px solid var(--white);

}



.whitebutton img {
    padding-left: 8px;
}

.pinkbutton {
    padding: 8px 8px 8px 24px;
    background-color: var(--pink);
    border-radius: 50px;

    color: var(--white);
    font-size: var(--paragraphSix-17);
    font-family: var(--font-outfit);
    font-weight: 600;
    display: inline-block;
    transition-duration: .5s;
    border: 1px solid var(--white);
}

.pinkbutton .btntext {
    vertical-align: middle;
}

.pinkbutton img {
    padding-left: 8px;
}

.pinkbutton:hover {
    color: var(--white);
    background-color: var(--black);
    transition-duration: .5s;
    border: 1px solid var(--white);
}

.pinkbutton:hover img {
    /* fill: var(--white); */
    transition-duration: .5s;

}

.boldtext {
    font-weight: 700;
}

.mainpadding {
    padding: 100px 0;
}


/* Navbar */


.main-header {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

.main-header .container {
    max-width: 1200px;
}

.navbg {
    position: relative;
}

.navbg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    background-color: var(--pink);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 37px;
    border-radius: 28px;
}

.mid-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 10px 60px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

}



/* Navbar */

/* Hero section */

.banner-section {
    background: url(../images/bannerbg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.banner-section::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 210px;
    bottom: -1px;
    background: url(../images/bannerdown.png) no-repeat center bottom;
    background-size: 100%;
    z-index: 1;




    /* 
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0;
    background: url(../images/thirdsectopbg.png) no-repeat center top;
    background-size: 100%;
    z-index: 1; */
}



.bannerleft p {
    font-family: var(--font-montserrat);
    color: var(--white);
    font-size: var(--paragraphOne-28);
    padding: 30px 0;
    line-height: 40px;

}


.bannerright {
    background: url(../images/bannerastrobg.png) no-repeat center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;

}

.bannerright img {}

/* Hero section */


/* Second Section */


/* .secondmenBtmbg {
    background: url(../images/second_Men.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 704px;
    position: relative;
}

.topBg {
    background: url(../images/secondmenBg.png) no-repeat center;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
} */


/* .secondmenBtmbg {

    position: relative;
    width: 100%;
    height: 669px;
    background: url(../images/second_Men.png) no-repeat center top;
    background-size: auto;

}


.secondmenBtmbg .topBg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/secondmenBg.png) no-repeat left top;
    background-size: 100% 100%;
    width: 100%;
    height: 669px;
} */


.secondsecLeftimg {
    background: url(../images/secondmenchkroBG.png) no-repeat center;
    background-size: contain;
    padding-bottom: 50px;
}

.secMenimagecontainer {
    width: 59%;
    height: 80%;
    border-radius: 300px 300px 0 0;
    margin: 0 auto;
    overflow: hidden;

}

.secMenimagecontainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.second-right {
    padding-left: 100px;
}

.second-right h2 {
    padding-top: 30px;

}

.second-right p {
    padding: 30px 0;

}

/* Second Section */


/* Third section */

.third-section {
    background: url(../images/thirdsectionBg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    padding: 250px 0;
}

.third-section::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background: url(../images/thirdsectopbg.png) no-repeat center top;
    background-size: 100%;
    top: -1px;
    z-index: 1;
}

.third-section::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background: url(../images/thirdsecbottombg.png) no-repeat center bottom;
    background-size: 100%;
    bottom: -1px;
    z-index: 1;
}

/* .thirdsectopbg {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

.thirdsecbottombg {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
} */

.thirdheadsec {
    text-align: center;
}

.thirdheadsec h2 {
    color: var(--white);
}


.thirdheadsec h6 {
    padding-top: 24px;
}

.serviceMainsec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding-top: 58px;
}

.ServOne {
    background-color: var(--light-pink);
    padding: 16px;
    width: 23%;
    border-radius: 23px;
}

.topserv {
    position: relative;
}

.servimg {
    height: 215px;
    overflow: hidden;
}
.servimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* .servimg img {
    width: 100%;
    border-radius: 16px;
} */

.servicon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--white);
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: 1;
    border-radius: 100px;
}

.ServOne h6 {

    padding-top: 20px;
}

.ServOne a {
    color: var(--white);
    transition-duration: .5s;
}

.ServOne a:hover {
    color: var(--black);
    transition-duration: .5s;
}

/* Third section */


/* Fourth Section */


.fourth-section {
    padding-bottom: 100px;

}

.fourthleft {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    position: relative;
}

.fourthleft::before {
    content: "";
    display: block;
    position: absolute;
    width: 239px;
    height: 239px;
    background: url(../images/rishibaniPurple.png) no-repeat center;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.whyimgOne {
    border-top-left-radius: 200px;
    max-width: 100%;
}

.whyimgTow {
    border-bottom-right-radius: 200px;
    max-width: 80%;
}

.fourthright {
    padding-left: 100px;
}

.fourthright h6 {
    color: var(--black);
    line-height: 36px;
    padding: 30px 0;

}



.fourthright p {
    font-size: var(--paragraphFour-20);
    color: var(--black);
    font-weight: 500;
    line-height: 30px;

}


.whychosePoints {
    display: flex;
    padding-bottom: 20px;

}


.whychosePoints .checkicon {
    padding-right: 11px;
    padding-top: 3px;
}

.whychosePoints .checkicon img {
    /* width: 20px;
    height: 20px; */
    max-width: 20px;
}


/* Fourth Section */


/* Fifth Section */


.fifthheadsec {
    text-align: center;
}

.mobile {
    display: none;
}

.fifthheadsec h6 {
    padding-top: 30px;
    color: var(--black);
}

.howworkTopbg {
    background: url(../images/howitworkBg.png) no-repeat;
    background-size: 84%;
    padding-top: 85px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-position: -13px 206px;
}

.firstProcess {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.proheading {
    max-width: 264px;
    padding-bottom: 100px;
}

.proheading h5 {

    text-align: center;
    color: var(--black);
}



.howworkTopbg .firstProcess:nth-child(even) .proheading {
    order: 2;
    padding: 0;
}

.howworkTopbg .firstProcess:nth-child(even) {
    padding: 168px 0 0 0;
}





.rightlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}


















/* Fifth Section */


/* Sixth Section */


.sixth-section {
    background: url(../images/sixthsecBg.jpg) no-repeat center;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}

.sixth-section::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background: url(../images/thirdsectopbg.png) no-repeat center top;
    background-size: 100%;
    top: -1px;
    z-index: 1;
}

.sixth-section::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background: url(../images/thirdsecbottombg.png) no-repeat center bottom;
    background-size: 100%;
    bottom: -1px;
    z-index: 1;
}

.sixthheadsec {
    padding-bottom: 60px;
}

.sixthheadsec h2 {
    color: var(--white);
    text-align: center;
}

.sixthright {
    position: relative;
}

.ourClients {
    display: flex;
    background-color: var(--light-pink);
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    box-shadow: 0px 4px rgba(0, 0, 0, .1);

}

.trustedBy {
    padding-left: 30px;
}

.trustedBy p {
    color: var(--white);
    font-size: var(--paragraphFour-20);
    font-weight: 600;
}



.clientimages img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--white);
    border-radius: 100px;
    margin-right: -20px;

}

.sixthrighMen img {
    width: 100%;
    border: 4px solid var(--white);
    border-top-left-radius: 156px;
    border-bottom-right-radius: 13px;
}


.testimoniOne {
    background: linear-gradient(270deg, rgba(141, 88, 164, 1) 0%, rgba(201, 75, 137, 1) 100%);
    padding: 110px 58px;
    position: relative;
    height: 100%;
    border-radius: 33px;


}

.testimoniOne::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 491px;
    height: 376px;
    background: url(../images/rishibaniBlackwhite.png) no-repeat center;
    background-size: 100%;
    filter: grayscale(100%);
    opacity: 0.1;
    transform: translateY(-50%);

}

.testimoniOne::after {
    content: "";
    display: block;
    position: absolute;
    top: 23px;
    right: 58px;
    width: 150px;
    height: 150px;
    background: url(../images/quote.png) no-repeat center;
    background-size: 100%;

}


.testiLeft {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: center;
}

/* .testimoniOne .stars {
    width: 160px;
} */

.testimidContent p {
    color: var(--white);
    font-size: var(--headingSix-23);
    font-weight: 600;
    max-width: 50%;
    line-height: 160%;
}

.clientDetails {
    display: flex;
    align-items: center;
    justify-content: start;
}

.clImg {
    padding-right: 25px;
}

.clImg img {
    width: 90px;
    height: 90px;
    border: 3px solid var(--white);
    border-radius: 100px;
}

.clientDetails h6 {
    color: var(--white);
    font-weight: 600;
    padding-bottom: 5px;
}

.clientDetails p {
    color: var(--white);
    font-weight: 400;
}

.owl-carousel .owl-item .stars {
    width: 160px;
}

.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 56px;
    height: 5px;
    background: var(--white);
}

.owl-theme .owl-dots .owl-dot:hover span {

    height: 5px;
    background: var(--white);
}

.owl-theme .owl-dots {
    padding-top: 29px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 31px;
    height: 5px;
    margin: 5px 7px;
    background: var(--light-pink);
    display: block;
    --webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/* Sixth Section */


/* Seventh Section */

.seventh-section {
    padding-bottom: 50px;
}

.seventhleftsec h2 {
    padding-bottom: 50px;

}

.seventhrightsec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.seventhrightsec img {
    border-top-left-radius: 297px;
    border-top-right-radius: 297px;
}

.accordion-button:focus {

    --bs-accordion-btn-focus-box-shadow: none;
}




.accordion-flush>.accordion-item>.accordion-header .accordion-button {
    color: var(--white);
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    font-size: var(--paragraphThree-22);
    font-weight: 500;
    padding: 24px 14px;
    background: linear-gradient(to right, #C94B89, #8D58A4);

}

.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 11px;
    font-size: var(--paragraphThree-22);
    font-weight: 500;
    color: var(--light-pink);
    padding: 24px 14px;
    background: var(--white);

}

.accordion-flush>.accordion-item {
    border-radius: 11px;
    border: 1px solid var(--pink) !important;
    /* border-width: 1px !important;
    border-style: solid;
    border-image: linear-gradient(to right, #C94B89, #8D58A4);
    border-image-slice: 1; */
    margin: 10px 0;
}


.accordion-button:not(.collapsed) {
    /* background-color: var(--bs-accordion-active-bg); */
    --bs-accordion-active-bg: none;
}

.accordion-button img {
    padding-right: 15px;
}

.accordion-body {
    padding: 16 20px 16px 20px;
}


.accordion-body p {
    font-size: var(--paragraphFour-20);
    color: var(--black);
}

/* .accordion-button::after {
    background: url(../images/uparowPink.png) no-repeat cover;
    background-position: center;
    width: 32px;
} */

.accordion-button::after {
    background-image: url(../images/uparowPink.png);
    background-position: center;
    background-size: cover;
    width: 32px;
    height: 32px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/downarowWhite.png);
    background-position: center;
    background-size: cover;
    width: 32px;
    height: 32px;

}

/* Seventh Section */


/* Eighth Section */

.eighth-section {
    background: url(../images/formsecbg.jpg) no-repeat center;
    background-size: cover;
    padding: 350px 0 100px 0;
    position: relative;
}


.eighth-section::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    width: 100%;
    background: url(../images/formsectopBg.png) no-repeat center top;
    background-size: 100%;
    height: 222px;
}

.mainformsec {
    background-color: var(--light-pink);
    padding: 83px 60px;
    border-radius: 41px;
    display: flex;
    border-bottom: 6px solid var(--white);
}


.eighthleftsec {
    width: 50%;
}

.formleftImg {
    height: 100%;
    position: relative;
}

.formleftImg img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


.formleftImg::before {
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(106, 56, 137, 0) 0%, rgba(55, 6, 86, 0.8) 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}


.formleftcontent {
    position: absolute;
    left: 30px;
    bottom: 50px;
    z-index: 2;
    max-width: 70%;
}

.formleftcontent p {
    color: var(--white);
    font-size: var(--paragraphThree-22);
    font-weight: 400;
    padding-top: 25px;
}

.formleftcontent a {
    color: var(--white);
    transition-duration: .5s;
}

.formleftcontent a:hover {
    color: var(--pink);
    transition-duration: .5s;
}


.eighthrightsec {
    background-color: var(--purple);
    padding: 45px 56px 45px 73px;
    width: 50%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.eighthrightsec h4 {
    font-weight: 700;
    padding-bottom: 25px;
}

.form {
    height: 100%;
}

.forminput {
    padding-bottom: 25px;
}

.form-control:focus {
    color: var(--white);
    background-color: var(--purple);
    border-color: var(--white);
    /* box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25); */
    box-shadow: none;
}

.eighthrightsec .form-label {
    color: var(--white);
    font-size: var(--paragraphFive-18);
    font-weight: 600;
}

.form-control {
    color: var(--white);

}

.eighthrightsec input {
    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 17px 20px;
    background-color: var(--purple);
}

.eighthrightsec input::placeholder {
    color: var(--white);
    font-size: var(--paragraphSeven-16);
}

.eighthrightsec textarea {
    border-radius: 25px;
    border: 1px solid var(--white);
    padding: 17px 20px;
    background-color: var(--purple);
}

.eighthrightsec textarea::placeholder {
    color: var(--white);
    font-size: var(--paragraphSeven-16);
}




.whiteFormbutton {
    padding: 15px 48px;
    background-color: var(--white);
    border-radius: 50px;
    border: none;
    color: var(--purple);
    font-size: var(--paragraphFive-18);
    font-weight: 700;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition-duration: .5s;
}

.whiteFormbutton .btntext {
    vertical-align: middle;
}

.whiteFormbutton:hover {
    color: var(--white);
    background-color: var(--light-pink);
    transition-duration: .5s;
}



/* Eighth Section*/


.footer-section {
    padding: 25px 0;
}

.footer-section p {
    color: var(--black);
    font-size: var(--paragraphEight-14);
    text-align: right;

}

.serviceCard {
    height: 550px;
    overflow-y: hidden;
}

.serviceCard:hover {
    overflow-y: auto;
}

.serviceCard::-webkit-scrollbar {
    width: 6px;
}

.serviceCard::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.serviceCard .form-control{
color: var(--black);
}

.serviceCard .form-control:focus{
 background-color: transparent;
}

.text-pink {
    color:var(--pink);
}


