@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap');

:root {
    --x-headings-color: #1A1423;
    --x-link-color: #1A1423 !important;
    --x-body-color: #1A1423;
    --x-link-hover-color: 1A1423;
    --x-font-sans-serif: "Lato", sans-serif;
    --x-dark-rgb: rgb(26, 20, 35);
    --x-border-color: rgb(26, 20, 35);
}

a:hover {
    color: var(--x-link-hover-color) !important;
}

.container {
    padding-left: 16px;
    padding-right: 16px;
}

.border-gray {
    border-color: #e7e7e7 !important;
}

.sec-scrollable::-webkit-scrollbar {
    background: transparent;
    width: 0px;
    height: 0px;
}

.sec-scrollable::-webkit-scrollbar::-webkit-scrollbar-thumb {
    background: #b1b8bd;
    border-radius: 10px;
}

.sec-scrollable {
    scrollbar-width: none;
    scrollbar-color: #b1b8bd transparent;
}

.text-justify {
    text-align: justify;
}

.object-contain {
    object-fit: contain;
}

.font-800 {
    font-weight: 800;
}

.font-secondary {
    font-family: "Cormorant Infant", serif;
}

.bg-light-gray {
    background-color: #D9D9D9;
}

.bg-silver-gray {
    background-color: #C4C4C4;
}

/* home page start */
.header {
    background-color: #F5F2EB;
}

.header .navbar-collapse::before {
    display: none;
}

.header .navbar [aria-expanded="false"] .menu-icon {
    display: block;
    width: 30px;
}

.header .navbar [aria-expanded="false"] .close-icon {
    display: none;
    width: 30px;
}

.header .navbar [aria-expanded="true"] .menu-icon {
    display: none;
    width: 30px;
}

.header .navbar [aria-expanded="true"] .close-icon {
    display: block;
    width: 30px;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    background-color: transparent;
    position: relative;
    padding: 0;
    width: fit-content;
    color: #1A1423;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #000;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    color: #000;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::before {
    width: 50%;
    left: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::after {
    width: 50%;
    right: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
    width: 50%;
    right: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width .3s ease, left .3s ease, right .3s ease;
    right: 50%;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
    width: 50%;
    left: 0;
}

.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width .3s ease, left .3s ease, right .3s ease;
    left: 50%;
}

.hero-sec {
    height: 700px;
    border-bottom: 2px solid #1A1423;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: overlay;
}

.hero-sec h1 {
    letter-spacing: 0.15em;
    font-size: 50px;
    font-weight: 800;
}

.hero-sec p {
    line-height: 19.2px;
    letter-spacing: 0.1em;
    color: #1A1423;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.leading-sec p {
    line-height: 19.2px;
    color: #1A1423;
    letter-spacing: 0.1em;
}

.leading-sec h2 {
    font-family: Cormorant;
    line-height: 38.75px;
}

.leading-sec .salon-card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    letter-spacing: 0.1em;
    text-align: center;
}

.leading-sec .salon-card .card-body p {
    line-height: 19.2px;
    letter-spacing: 0.1em;
}

.leading-sec .salon-card .card-body .learn-more-link {
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
}

.leading-sec .salon-card .card-body .learn-more-link::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.leading-sec .salon-card .card-body .learn-more-link:hover:before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

.leading-sec .leading-content::before {
    content: "";
    background-color: #1A1423;
    width: 100%;
    display: block;
    position: absolute;
    z-index: 9;
    top: 90px;
    height: 2px;
}

.leading-sec .leading-content .card .card-body {
    padding-left: 28px;
    padding-right: 28px;
}

.object {
    object-fit: cover;
    object-position: center;
}

.why-jackie-sec {
    background-color: #F5F2EB;
}

.why-jackie-sec p {
    line-height: 19.2px;
}

.why-jackie-sec img {
    height: 574px;
}

.why-jackie-link a {
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-jackie-link a::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.why-jackie-link a:hover::before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

.portfolio-sec .portfolio-heading {
    font-family: Cormorant SC;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.portfolio-sec .text-content {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 280px;
}

.portfolio-sec .favourites-heading {
    font-family: Cormorant Infant;
    font-size: 96px;
    line-height: 113.11px;
    color: #000000;
}

.portfolio-sec img {
    height: 591px;
    width: 472px;
}

.portfolio-link a {
    font-weight: 800;
    letter-spacing: 0.1em;
    max-width: 337px;
    width: 100%;
    display: block;
}

.portfolio-link a::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.portfolio-link a:hover:before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

.footer {
    background-color: #1A1423;
}

footer.footer h4 {
    letter-spacing: 0.18em !important;
    font-size: 26px;
}

.footer ul li a {
    color: #F5F2EB !important;
}

.footer .footer-heading {
    line-height: 0;
}

.footer .footer-heading h1 {
    font-size: 103px;
    color: #D9D9D9;
    font-weight: 800;
    letter-spacing: 42px;
    line-height: 85px;
    opacity: 10%;
    text-wrap: nowrap;
}

.footer p {
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    text-align: left;
}

.salon-box-image-sec img {
    height: 609px;
}

/* home page end */

/* about page start */
.about-header {
    background-color: #1A1423;
}

.about-header .navbar-collapse::before {
    display: none;
}

.about-header .navbar [aria-expanded="false"] .menu-icon {
    display: block;
    width: 30px;
    filter: invert(1);
}

.about-header .navbar [aria-expanded="false"] .close-icon {
    display: none;
    width: 30px;
}

.about-header .navbar [aria-expanded="true"] .menu-icon {
    display: none;
    width: 30px;
}

.about-header .navbar [aria-expanded="true"] .close-icon {
    display: block;
    width: 30px;
    filter: invert(1);
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    background-color: transparent;
    position: relative;
    padding: 0;
    width: fit-content;
    color: #E4DDCD !important;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #fff !important;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    color: #fff !important;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::before {
    width: 50%;
    left: 0;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::after {
    width: 50%;
    right: 0;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
    width: 50%;
    right: 0;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width .3s ease, left .3s ease, right .3s ease;
    right: 50%;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
    width: 50%;
    left: 0;
}

.about-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width .3s ease, left .3s ease, right .3s ease;
    left: 50%;
}

.about-banner-sec {
    background-color: #1A1423;
}

.about-banner-sec .about-content h1 {
    font-size: 114px;
    line-height: 134.32px;
    font-family: Cormorant SC;
}

.we-create-sec iframe {
    min-height: 1250px;
}

.we-create-sec .we-create-heading h1 {
    font-family: Cormorant SC;
    font-size: 102px;
    line-height: 120.18px;
}

.we-create-sec .about-us-content h2 {
    line-height: 38.4px;
}

.we-create-sec .about-us-content p {
    line-height: 19.2px;
}

.we-create-sec .about-us-content .send-inquiry-btn {
    font-weight: 800;
    position: relative;
    width: 184px;
}

.we-create-sec .about-us-content .send-inquiry-btn::after {
    background-image: url(../images/arrow-icon.svg);
    content: "";
    display: block;
    width: 184px;
    height: 13px;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.we-create-sec .about-us-content .send-inquiry-btn:hover::after {
    width: 0;
    margin-right: 0;
    margin-left: auto;
}

.we-create-sec .we-create-img {
    width: 100%;
    height: 739px;
    object-fit: cover;
}

.true-beauty-sec {
    background-color: #F5F2EB;
}

.true-beauty-sec .true-beauty-heading {
    max-width: 850px;
}

.true-beauty-sec .true-beauty-heading h2 {
    font-family: Cormorant Infant;
    font-size: 70px;
    font-style: italic;
    line-height: 82.48px;
}

.true-beauty-sec .true-beauty-content {
    max-width: 629px;
}

.true-beauty-sec .true-beauty-content p {
    line-height: 19.2px;
}

.true-beauty-sec .true-beauty-salon-img {
    width: 274px;
    height: 274px;
    object-fit: cover;
    object-position: center;
}

.our-clients-sec .our-clients-content h3 {
    font-family: Cormorant SC;
    font-size: 80px;
    line-height: 113.11px;
}

.our-clients-sec .review-content {
    padding-left: 37px;
}

.our-clients-sec .review-content::before {
    position: absolute;
    background-image: url(../images/double-quotes-icon.svg);
    color: #ddd;
    font-size: 20px;
    left: 0;
    content: "";
    display: block;
    z-index: 9999;
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 20px;
}

/* about page end */

/* service page start */
.service-banner-sec {
    background-color: #1A1423;
}

.service-banner-sec .service-content h1 {
    font-size: 114px;
    line-height: 134.32px;
    font-family: Cormorant SC;
}

.service-banner-sec .service-content h1 a:hover {
    color: white !important;
}

.your-journey-sec {
    background-color: #F5F2EB;
}

.your-journey-sec .your-journey-heading h1 {
    font-family: Cormorant SC;
    font-size: 102px;
    line-height: 120.18px;
}

.your-journey-sec .your-journey-content p {
    line-height: 19.2px;
}

.all-services h2 {
    font-family: Cormorant SC;
    font-size: 102px;
    line-height: 120.18px;
}

.all-services .salon-service-img img {
    height: 446px;
    object-fit: cover;
    object-position: center;
}

.all-services p {
    line-height: 19.2px;
}

.all-services .service-link {
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
}

.all-services .service-link::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.all-services .service-link:hover:before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

.she-truly-sec {
    background-color: #1A1423;
}

.she-truly-sec h3 {
    color: #F5F2EB;
    font-family: Cormorant Infant;
    font-size: 70px;
    line-height: 67.9px;
}

.she-truly-sec h4 {
    color: #F5F2EB;
    font-size: 24px;
    font-weight: 800;
    line-height: 28.8px;
    letter-spacing: 0.1em;
}

.she-truly-sec h4::before {
    content: "";
    width: 40px;
    display: inline-block;
    height: 2px;
    background-color: #F5F2EB;
}

.she-truly-sec .ready-to-turn-content {
    font-family: Cormorant SC;
    font-size: 102px;
    line-height: 120.18px;
    color: #F5F2EB;
}

.she-truly-sec .start-your-journey-text h3 {
    font-family: Lato;
    font-size: 54px;
    line-height: 63.63px;
}

.she-truly-sec .start-your-journey-text p {
    color: #F5F2EB;
    font-family: Lato;
    line-height: 19.2px;
    max-width: 436px;
}

.she-truly-sec .start-your-journey-text .send-inquiry-link {
    color: #F5F2EB !important;
    font-family: Lato;
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    position: relative;
}

.she-truly-sec .start-your-journey-text .send-inquiry-link::after {
    background-image: url("../images/arrow-icon-white.svg");
    content: "";
    display: block;
    width: 182px;
    height: 13px;
    background-repeat: no-repeat;
    transition: 0.5s;
    margin-left: auto;
    margin-right: -1.25rem;
}

.she-truly-sec .start-your-journey-text .send-inquiry-link:hover::after {
    width: 0;
    margin-right: 0;
    margin-left: auto;
}

/* service page end */

/* portfolio page start */
.header-logo-black {
    display: block;
}

.header-logo-white {
    display: none;
}

.portfolio-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
}

.portfolio-header .navbar-collapse::before {
    display: none;
}

.portfolio-header .navbar [aria-expanded="false"] .menu-icon {
    display: block;
    width: 30px;
}

.portfolio-header .navbar [aria-expanded="false"] .close-icon {
    display: none;
    width: 30px;
}

.portfolio-header .navbar [aria-expanded="true"] .menu-icon {
    display: none;
    width: 30px;
}

.portfolio-header .navbar [aria-expanded="true"] .close-icon {
    display: block;
    width: 30px;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    background-color: transparent;
    position: relative;
    padding: 0;
    width: fit-content;
    color: #1A1423;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #1A1423;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    color: #1A1423 !important;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::before {
    width: 50%;
    left: 0;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::after {
    width: 50%;
    right: 0;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
    width: 50%;
    right: 0;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width .3s ease, left .3s ease, right .3s ease;
    right: 50%;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
    width: 50%;
    left: 0;
}

.portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #1A1423;
    transition: width .3s ease, left .3s ease, right .3s ease;
    left: 50%;
}

.portfolio-banner-sec .portfolio-content {
    max-width: 900px;
}

.portfolio-banner-sec img {
    object-fit: cover;
    object-position: center;
    height: 1050px;
    opacity: 60%;
}

.thankyou-sec img {
    height: 600px;
}

.thank-you {
    width: 156px;
    margin: auto;
    margin-bottom: 20px;
}

.portfolio-banner-sec .portfolio-content h1,
.blog-detail-sec .portfolio-content h1 {
    font-size: 114px;
    line-height: 134.32px;
    font-family: Cormorant SC;
}

.blog-detail-title h1 {
    font-size: 80px !important;
}
.blog-detail-sub-title h2 {
    font-family: Cormorant SC;
    font-size: 70px;
    line-height: 66.18px;
}

.blog-detail-sub-title .bi-calendar-week::before {
    position: relative;
    left: -8px;
}
.client-sec {
    background-position: center;
    min-height: 485px;
    background-size: cover;
    padding: 0px 63px 0px 32px;
}

.client-sec h2 {
    font-family: Cormorant SC;
    font-size: 96px;
    color: #F5F2EB;
}

.client-sec h3 {
    color: #F5F2EB;
    font-size: 50px;
    line-height: 47.9px;
    max-width: 626px;
}

.client-sec h4 {
    color: #F5F2EB;
    font-size: 24px;
    font-weight: 800;
    line-height: 28.8px;
    letter-spacing: 0.1em;
    max-width: 626px;
}

.client-sec h4::before {
    content: "";
    width: 40px;
    display: inline-block;
    height: 2px;
    background-color: #F5F2EB;
}

.client-sec h5 {
    font-family: Cormorant SC;
    font-size: 96px;
    line-height: 1;
    color: #F5F2EB;
    position: absolute;
    bottom: -17.5px;
    right: 64px;
}

.our-portfolio-sec .portfolio-heading {
    font-family: Cormorant SC;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.our-portfolio-sec .text-content {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    max-width: 420px;
}

.portfolio-card {
    margin-left: 20px;
    margin-right: 20px;
}

.portfolio-card .portfolio-box img {
    height: 600px;
    object-fit: cover;
    object-position: center;
    width: 479px;
}

.portfolio-card .portfolio-box .portfolio-box-link {
    font-weight: 800;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    line-height: 19.2px;
}

.portfolio-card .portfolio-box .portfolio-box-link::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.portfolio-card .portfolio-box .portfolio-box-link:hover:before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

.portfolio-boxes {
    text-align: center;
}

/* portfolio page end */

/* Services Detail page start */
.service-banner-sec .service-content .service-text p {
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    color: #F5F2EB;
}

.service-banner-sec .service-content .service-text a {
    font-family: Lato;
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #F5F2EB !important;
    position: relative;
}

.service-banner-sec .service-content .service-text a::before {
    content: "";
    background-color: #F5F2EB;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.service-banner-sec .service-content .service-text a:hover:before {
    color: #F5F2EB;
    width: 0;
    left: auto;
    right: 0;
}

.services-we-offer-sec h1 {
    font-family: Cormorant SC;
    font-size: 80px;
    line-height: 76.18px;
}

.services-we-offer-sec .services-we-offer-content {
    max-width: 612px;
}

.services-we-offer-sec .services-we-offer-content h3 {
    font-size: 30px;
    line-height: 36px;
}

.services-we-offer-sec .services-we-offer-content .call-today-link {
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    position: relative;
    max-width: 247px;
    width: 100%;
}

.services-we-offer-sec .services-we-offer-content .call-today-link::after {
    background-image: url("../images/arrow-icon.svg");
    content: "";
    display: block;
    width: 100%;
    height: 13px;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.services-we-offer-sec .services-we-offer-content .call-today-link:hover::after {
    width: 0;
    margin-right: 0;
    margin-left: auto;
}

.true-beauty-sec .back-to-other-different-content h2 {
    font-family: Cormorant SC;
    font-size: 102px;
    line-height: 120.18px;

}

.true-beauty-sec .back-to-other-different-content a.position-relative {
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
}

.true-beauty-sec .back-to-other-different-content a.position-relative::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.true-beauty-sec .back-to-other-different-content a.position-relative:hover:before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}

/* Services Detail page end */

/* Contact page start */
.everything-sec .everything-content h1 {
    font-family: Cormorant SC;
    font-size: 96px;
    line-height: 113.11px;
}

.everything-sec .everything-content p {
    line-height: 19.2px;
}

.contact-form a {
    font-weight: 800;
    position: relative;
    width: fit-content;
    margin: auto;
}

.contact-form a::after {
    background-image: url("../images/arrow-icon.svg");
    content: "";
    display: block;
    width: 184px;
    height: 13px;
    background-repeat: no-repeat;
    transition: 0.5s;
    position: relative;
    left: 10px;
}

.contact-form button {
    font-weight: 800;
    position: relative;
    width: fit-content;
    margin: auto;
    background: none;
}

.contact-form button::after {
    background-image: url("../images/arrow-icon.svg");
    content: "";
    display: block;
    width: 184px;
    height: 13px;
    background-repeat: no-repeat;
    transition: 0.5s;
    position: relative;
    left: 10px;
}

.contact-form button:hover::after {
    width: 0;
    margin-right: 0;
    margin-left: auto;
}

.contact-form input {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.1em;
    color: #1A1423;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.1em;
    color: #1A1423;
}

.contact-form select,
.contact-form label,
.contact-form textarea {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.1em;
    color: #1A1423;
}

.service-content .contact-link {
    font-size: 16px;
    font-weight: 800;
    line-height: 19.2px;
    letter-spacing: 0.1em;
    color: white !important;
}

.contact-link::before {
    content: "";
    background-color: white;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}

.contact-link:hover:before {
    width: 0;
    left: auto;
    right: 0;
}

/* Contact page end */

.cookie-consent-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.cookie-consent-container .btn-success {
    background-color: #e4ddcd !important;
    border: none;
    color: #1a1423 !important;
    margin-right: 12px;
}

.cookie-consent-container .btn-danger {
    background-color: #1a1423 !important;
    border: none;
}

.copy-right {
    background-color: #1A1423;
}

.copy-right .social-media i {
    color: white;
}

.back-to-top {
    display: none;
}

.back-to-top.active {
    display: block;
}

.back-to-top {
    position: fixed;
    height: 45px;
    right: 32px;
    bottom: 16px;
    z-index: 999999;
    background-color: transparent !important;
}

.back-to-top .go-top-inner {
    width: 45px;
    height: 100%;
    cursor: pointer;
    background-color: #dcdcdd;
    transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), border-radius 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.back-to-top .go-top-inner i {
    color: #7e7e7e;
    transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateZ(0);
}

.back-to-top .go-top-inner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.back-to-top:hover .go-top-inner {
    transform: scale(1);
    color: white;
}

.back-to-top:hover .go-top-inner::before {
    transform: scale(1);
}

.back-to-top .go-top-inner::after {
    content: "";
    width: 100%;
    height: 100%;
    border: solid 1px;
    border-color: #dcdcdd;
    position: absolute;
    border-radius: 50%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.back-to-top:hover .go-top-inner::after {
    border-color: #fff;
    transform: scale(1.2);
}

.back-to-top:hover .bi-chevron-up {
    color: #1A1423;
}

.blog-card a {
    color: #1a1423;
}
.blog-card .card-text {
    color: #1a1423;
}
.blog-card .read-more-link {
    color: #1a1423 !important;
    position: relative;
    width: fit-content;
}
.blog-card .read-more-link:hover {
    color: #1A1423 !important;
}
.blog-card .read-more-link::before {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
    right: auto;
    left: 0;
}
.blog-card .read-more-link:hover::before {
    color: #1A1423;
    width: 0;
    left: auto;
    right: 0;
}
.post-card {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
    transition: all 330ms ease-in-out;
}
.post-card:hover {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.09);
    transform: translate(0, -8px);
}
.post-card .image-container img {
    height: 230px;
    object-fit: cover;
    object-position: center;
}
.blog-detail-img {
    max-width: 80%;
}
.blog-detail-sec img {
    object-fit: cover;
    object-position: center;
    min-height: 50vh;
    height: auto;
    opacity: 60%;
}
@media only screen and (min-width: 576px) {
    .blog-detail-sec .portfolio-content {
        max-width: 540px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-detail-sec .portfolio-content {
        max-width: 720px;
    }
    .blog-detail-sec img {
        min-height: 550px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-detail-sec .portfolio-content {
        max-width: 960px;
    }
    .blog-detail-sec img {
        min-height: 600px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-detail-sec .portfolio-content {
        max-width: 1140px;
    }
}
@media only screen and (min-width: 1400px) {
    .blog-detail-sec .portfolio-content {
        max-width: 1360px;
    }
}
/* Media Query start */
@media only screen and (max-width: 1399.98px) {
    .salon-box-image-sec img {
        height: 509px;
    }

    .portfolio-sec .portfolio-heading,
    .portfolio-sec .favourites-heading,
    .client-sec h2 {
        font-size: 85px;
    }

    .our-portfolio-sec .portfolio-heading {
        font-size: 86px;
    }

    .client-sec h5 {
        bottom: -14.55px;
        font-size: 85px;
    }

    .about-banner-sec .about-content h1 {
        font-size: 92px;
    }

    .portfolio-banner-sec .portfolio-content h1,
    .blog-detail-sec .portfolio-content h1 {
        font-size: 80px;
    }

    .blog-detail-title h1 {
        font-size: 60px !important;
        line-height: 70px !important;
    }
    .blog-detail-sub-title h2 {
        font-size: 55px;
        line-height: 50.18px;
    }
    .service-banner-sec .service-content h1 {
        font-size: 92px;
        line-height: 90.32px;
    }

    .footer .footer-heading h1 {
        font-size: 80px;
    }

    footer.footer h4 {
        font-size: 22px;
    }

    .portfolio-sec .text-content {
        margin-bottom: 210px;
    }

    .our-clients-sec .our-clients-content h3 {
        font-size: 75px;
        line-height: 95.11px;
    }

    .everything-sec .everything-content h1 {
        font-size: 85px;
        line-height: 95.11px;
    }

    .your-journey-sec .your-journey-heading h1,
    .all-services h2 {
        font-size: 90px;
        line-height: 100.18px;
    }

    .she-truly-sec h3 {
        font-size: 60px;
        line-height: 57.9px;
    }

    .client-sec {
        min-height: 450px;
    }

    .client-sec h3 {
        font-size: 40px;
        line-height: 37.9px;
    }

    .services-we-offer-sec .services-we-offer-content {
        max-width: 100%;
    }

    .services-we-offer-sec h1 {
        font-size: 70px;
        line-height: 66.18px;
    }

    .services-we-offer-sec .services-we-offer-content h3 {
        font-size: 28px;
        line-height: 24px;
    }

    .contact-form input,
    .contact-form input::placeholder,
    .contact-form textarea::placeholder,
    .contact-form select,
    .contact-form label,
    .contact-form textarea {
        font-size: 28px;
        line-height: 24px;
    }

    .hero-sec h1 {
        font-size: 40px;
    }

    .portfolio-banner-sec .portfolio-content {
        max-width: 600px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .portfolio-card .portfolio-box img {
        height: 375px;
        width: 299px;
    }

    .salon-box-image-sec img {
        height: 409px;
    }

    .portfolio-sec .portfolio-heading,
    .portfolio-sec .favourites-heading,
    .client-sec h2 {
        font-size: 65px;
    }

    .our-portfolio-sec .portfolio-heading {
        font-size: 76px;
    }

    .client-sec h5 {
        bottom: -11.8px;
        font-size: 65px;
    }

    .our-clients-sec .our-clients-content h3 {
        font-size: 65px;
        line-height: 75.11px;
    }

    .everything-sec .everything-content h1 {
        font-size: 65px;
        line-height: 75.11px;
    }

    .about-banner-sec .about-content h1 {
        font-size: 89px;
        line-height: 90px;
    }

    .portfolio-banner-sec .portfolio-content h1,
    .blog-detail-sec .portfolio-content h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .blog-detail-title h1 {
        font-size: 50px !important;
        line-height: 60.32px !important;
    }

    .blog-detail-sub-title h2 {
        font-size: 50px;
        line-height: 40.18px;
    }

    .service-banner-sec .service-content h1 {
        font-size: 89px;
        line-height: 70.32px;
    }

    .footer .footer-heading h1 {
        font-size: 60px;
    }

    footer.footer h4 {
        font-size: 20px;
    }

    .portfolio-sec .text-content {
        margin-bottom: 160px;
    }

    .we-create-sec .we-create-heading h1 {
        font-size: 80px;
        line-height: 90.18px;
    }

    .true-beauty-sec .back-to-other-different-content h2 {
        font-size: 80px;
        line-height: 90.18px;
    }

    .she-truly-sec .ready-to-turn-content {
        font-size: 80px;
        line-height: 90.18px;
    }

    .she-truly-sec .start-your-journey-text h3 {
        font-size: 44px;
        line-height: 53.63px;
    }

    .true-beauty-sec .true-beauty-heading h2 {
        font-size: 60px;
        line-height: 72.48px;
    }

    .your-journey-sec .your-journey-heading h1,
    .all-services h2 {
        font-size: 70px;
        line-height: 80.18px;
    }

    .she-truly-sec h3 {
        font-size: 50px;
        line-height: 47.9px;
    }

    .client-sec {
        min-height: 400px;
    }

    .client-sec h3 {
        font-size: 35px;
        line-height: 33.9px;
    }

    .services-we-offer-sec h1 {
        font-size: 60px;
        line-height: 56.18px;
    }

    .services-we-offer-sec .services-we-offer-content h3 {
        font-size: 26px;
        line-height: 22px;
    }

    .contact-form input,
    .contact-form input::placeholder,
    .contact-form textarea::placeholder,
    .contact-form select,
    .contact-form label,
    .contact-form textarea {
        font-size: 24px;
        line-height: 20px;
    }

    .hero-sec h1 {
        font-size: 35px;
    }

    .portfolio-banner-sec .portfolio-content {
        max-width: 500px;
    }
}

@media only screen and (max-width: 991.98px) {
    .portfolio-card .portfolio-box img {
        height: 325px;
        width: 259px;
    }

    .salon-box-image-sec img {
        height: 309px;
    }

    .portfolio-sec .portfolio-heading,
    .portfolio-sec .favourites-heading,
    .client-sec h2 {
        font-size: 45px;
    }

    .our-portfolio-sec .portfolio-heading {
        font-size: 66px;
    }

    .portfolio-sec .favourites-heading {
        line-height: 0;
    }

    .client-sec h5 {
        bottom: -7.7px;
        font-size: 45px;
    }

    .our-clients-sec .our-clients-content h3 {
        font-size: 45px;
        line-height: 55.11px;
    }

    .everything-sec .everything-content h1 {
        font-size: 45px;
        line-height: 55.11px;
    }

    .about-banner-sec .about-content h1 {
        font-size: 57px;
        line-height: 60.32px;
    }

    .portfolio-banner-sec .portfolio-content h1,
    .blog-detail-sec .portfolio-content h1 {
        font-size: 50px;
        line-height: 60.32px;
    }

    .blog-detail-title h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .blog-detail-sub-title h2 {
        font-size: 24px;
        line-height: normal;
    }

    .portfolio-banner-sec img {
        height: 550px;
    }

    .service-banner-sec .service-content h1 {
        font-size: 57px;
        line-height: 60.32px;
    }

    .leading-sec .leading-content::before {
        display: none;
    }

    .leading-sec .leading-content .card .card-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .leading-sec .leading-content .custom-border-top:first-child {
        border-top: 2px solid #1a1423 !important;
    }

    .leading-sec .leading-content .custom-border-top:first-child .salon-card {
        padding-top: 24px;
    }

    .footer .footer-heading h1 {
        font-size: 50px;
    }

    .portfolio-sec .text-content {
        margin-bottom: 0px;
        padding-bottom: 40px;
    }

    .we-create-sec iframe {
        min-height: 1358px;
    }

    .we-create-sec .we-create-heading h1 {
        font-size: 60px;
        line-height: 70.18px;
    }

    .we-create-sec .we-create-img {
        height: auto;
    }

    .true-beauty-sec .back-to-other-different-content h2 {
        font-size: 60px;
        line-height: 70.18px;
    }

    .she-truly-sec .ready-to-turn-content {
        font-size: 60px;
        line-height: 60.18px;
    }

    .she-truly-sec .start-your-journey-text h3 {
        font-size: 34px;
        line-height: 43.63px;
    }

    .true-beauty-sec .true-beauty-heading {
        max-width: 100%;
    }

    .true-beauty-sec .true-beauty-content {
        max-width: 100%;
    }

    .true-beauty-sec .true-beauty-heading h2 {
        font-size: 50px;
        line-height: 62.48px;
    }

    .your-journey-sec .your-journey-heading h1,
    .all-services h2 {
        font-size: 50px;
        line-height: 60.18px;
    }

    .she-truly-sec h3 {
        font-size: 40px;
        line-height: 37.9px;
    }

    .client-sec {
        min-height: 350px;
    }

    .client-sec h3 {
        font-size: 30px;
        line-height: 28.9px;
    }

    .services-we-offer-sec h1 {
        font-size: 55px;
        line-height: 46.18px;
    }

    .services-we-offer-sec .services-we-offer-content h3 {
        font-size: 24px;
        line-height: 20px;
    }

    .contact-form input,
    .contact-form input::placeholder,
    .contact-form textarea::placeholder,
    .contact-form select,
    .contact-form label,
    .contact-form textarea {
        font-size: 20px;
        line-height: 16px;
    }

    .hero-sec h1 {
        font-size: 30px;
    }

    .portfolio-banner-sec .portfolio-content {
        max-width: 400px;
    }
}

@media only screen and (max-width: 767.98px) {
    .portfolio-card .portfolio-box img {
        height: 364px;
        width: 290px;
    }

    .salon-box-image-sec img {
        height: 209px;
    }

    .portfolio-sec .portfolio-heading,
    .client-sec h2 {
        font-size: 35px;
    }

    .our-portfolio-sec .portfolio-heading {
        font-size: 56px;
    }

    .client-sec h5 {
        bottom: -6px;
        font-size: 35px;
        right: 16px;
    }

    .our-clients-sec .our-clients-content h3 {
        font-size: 30px;
        line-height: 35.11px;
    }

    .everything-sec .everything-content h1 {
        font-size: 35px;
        line-height: 35.11px;
    }

    .hero-sec {
        height: 357px;
    }

    .leading-sec .salon-card h3 {
        font-size: 24px;
    }

    .about-banner-sec .about-content h1 {
        font-size: 45px;
        line-height: 50px;
    }

    .portfolio-banner-sec .portfolio-content h1,
    .blog-detail-sec .portfolio-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .blog-detail-title h1 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    .blog-detail-sub-title h2 {
        font-size: 20px;
    }

    .service-banner-sec .service-content h1 {
        font-size: 45px;
        line-height: 50px;
    }

    .footer .footer-heading h1 {
        font-size: 30px;
        letter-spacing: 8px;
    }

    footer.footer h4 {
        font-size: 18px;
    }

    .we-create-sec .we-create-heading h1 {
        font-size: 30px;
        line-height: 35.18px;
    }

    .true-beauty-sec .back-to-other-different-content h2 {
        font-size: 30px;
        line-height: 35.18px;
    }

    .she-truly-sec .ready-to-turn-content {
        font-size: 30px;
        line-height: 35.18px;
    }

    .leading-sec h2 {
        font-size: 20px !important;
    }

    .she-truly-sec .start-your-journey-text h3 {
        font-size: 24px;
        line-height: 33.63px;
    }

    .true-beauty-sec .true-beauty-heading h2 {
        font-size: 30px;
        line-height: 42.48px;
    }

    .your-journey-sec .your-journey-heading h1,
    .all-services h2 {
        font-size: 40px;
        line-height: 40.18px;
    }

    .she-truly-sec h3 {
        font-size: 30px;
        line-height: 37.9px;
    }

    .client-sec {
        min-height: 300px;
        padding: 0px 16px 0px 16px;
    }

    .client-sec h3 {
        font-size: 25px;
        line-height: 23.9px;
    }

    .services-we-offer-sec h1 {
        font-size: 50px;
        line-height: 36.18px;
    }

    .services-we-offer-sec .services-we-offer-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .services-we-offer-sec .services-we-offer-content .call-today-link {
        font-size: 16px;
    }

    .contact-form input,
    .contact-form input::placeholder,
    .contact-form textarea::placeholder,
    .contact-form select,
    .contact-form label,
    .contact-form textarea {
        font-size: 16px;
        line-height: 12px;
    }

    .portfolio-header {
        position: relative;
        background-color: #1A1423;
    }

    .portfolio-header .navbar [aria-expanded="false"] .menu-icon {
        display: block;
        width: 30px;
        filter: invert(1);
    }

    .portfolio-header .navbar [aria-expanded="true"] .close-icon {
        display: block;
        width: 30px;
        filter: invert(1);
    }

    .portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        background-color: transparent;
        position: relative;
        padding: 0;
        width: fit-content;
        color: #E4DDCD !important;
    }

    .portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
        color: #fff;
    }

    .portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
        background-color: #fff;
    }

    .portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
        background-color: #fff;
    }

    .portfolio-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
        color: #fff !important;
    }

    .portfolio-header .navbar a img {
        filter: invert(1);
    }

    header.header {
        background-color: #1A1423;
    }

    header.header nav.navbar.navbar-expand-md.px-0 img {
        filter: invert(1);
    }

    header.header button.navbar-toggler.shadow-none.p-0 img {
        filter: invert(1);
    }

    .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        color: white;
    }

    .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before,
    .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
        background-color: white;
    }

    .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
        color: #ffffff !important;
    }

    .header-logo-black {
        display: none;
    }

    header.header.about-header nav.navbar.navbar-expand-md img {
        filter: none;
    }

    header.header.about-header button.navbar-toggler.shadow-none img {
        filter: invert(1);
    }

    .header-logo-white {
        display: block;
    }

    .hero-sec h1 {
        font-size: 25px;
    }

    .portfolio-banner-sec .portfolio-content {
        max-width: 250px;
    }

    .service-content {
        top: 37%;
    }

    .all-services .salon-service-img img {
        height: 346px;
    }

    .portfolio-banner-sec img {
        height: 50vh;
    }

    .our-headinng {
        top: -16px;
    }
    .blog-detail-img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575.98px) {
    .portfolio-sec img {
        height: 323px;
        object-fit: cover;
        width: 100%;
    }

    .all-services .salon-service-img img {
        height: 250px;
    }

    .our-portfolio-sec .portfolio-heading {
        font-size: 46px;
    }

    .our-headinng {
        top: -9px;
    }
}

@media only screen and (max-width: 458.98px) {
    .portfolio-sec .favourites-heading {
        line-height: 1;
    }
}

/* Media Query end */