:root {
    --color-white: #FFFFFF;
    --color-dark: #232323;
    --color-pink: #FDB1AA;
    --color-light-pink: #FBF2EE;
    --color-grey: #616161;

    --font-family-primary: "Cantata One", sans-serif;
    --font-family-secondary: "Yesteryear", sans-serif;
    --font-family-paragraph: "Heebo", sans-serif;

    --font-size-xxxl: 72px;
    --font-size-xxl: 48px;
    --font-size-xl: 36px;
    --font-size-lg: 24px;
    --font-size-md: 18px;
    --font-size-nm: 16px;
    --font-size-sm: 12px;

    --line-height-xxxl: 1;
    --line-height-xxl: 1.1;
    --line-height-xl: 1.2;
    --line-height-lg: 1.5;
    --line-height-md: 1.4;
    --line-height-nm: 1.5;
    --line-height-sm: inherit;
}

a {
    text-decoration: none !important;
}

.txt-white {
    color: var(--color-white);
}

.txt-pink {
    color: var(--color-pink);
}

.txt-dark {
    color: var(--color-dark);
}

.txt-grey {
    color: var(--color-grey);
}

.subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin: 0;
    padding: 0;
}

.title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-xxl);
    margin: 0;
    padding: 0;
}

.paragraph {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    font-weight: 400;
    line-height: var(--line-height-nm);
    margin: 0;
    padding: 0;
}

.divider {
    display: flex;
    width: 50px;
    border-top: 3px solid var(--color-pink);
    margin: auto;
}

.section-wrapper {
    padding-top: 120px;
}

.section-w-bg-overlay {
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 7rem 0;
}

.section-w-bg-overlay .section-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.section-w-bg-overlay .section-bg-wrapper .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50%;
    z-index: 1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.section-w-bg-overlay .section-bg-wrapper .section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: 2;
    background-color: #5A6C7080;
}

.section-w-bg-overlay .section-content {
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    width: 100%;
    height: auto;
    z-index: 2;
}

.background-cover {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
}

.box-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-object-fit-cover {
    object-fit: cover;
}

.button {
    display: inline-block;
    width: auto;
    font-family: var(--font-family-paragraph);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    color: var(--color-white);
    background-color: var(--color-pink);
    -webkit-transition:  all 0.3s ease;
    -o-transition:  all 0.3s ease;
    transition:  all 0.3s ease;
    text-align: center;
    border: 1px solid;
    border-color: var(--color-pink);
    border-radius: 0;
    line-height: 1;
}

.button:hover {
    background-color: var(--color-white);
    color: var(--color-grey);
    border-color: var(--color-white);
}

.button.outline {
    background-color: transparent;
    color: var(--color-pink);
    border-color: var(--color-pink);
}

.button.outline:hover {
    background-color: transparent;
    color: var(--color-grey);
    border-color: var(--color-grey);
}

.button.block {
    width: 100%;
    line-height: inherit;
}

.button.button-lg {
    font-size: 18px;
    padding: 20px 40px;
    line-height: inherit;
}

.button.button-md {
    font-size: 16px;
    padding: 15px 30px;
    line-height: 1;
}

.button.button-sm {
    font-size: 12px;
    padding: 10px 20px;
    line-height: inherit;
}

#header.fixed {
    position: fixed;
    z-index: 1;
    width: 100%;
    margin: 0;
}

#header .header-top {
    display: flex;
    width: 100%;
}

#header .header-top p {
    font-family: var(--font-family-paragraph);
    font-size: 13px;
    color: var(--color-white);
    margin: 0;
}

#header .header-top .column-left,
#header .header-top .column-right {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    flex: 1 1;
}

#header .header-top .column-left a:not(:last-child),
#header .header-top .column-right a:not(:last-child) {
    padding-right: 20px;
}

#header .header-top .column-left {
    justify-content: flex-start;
}

#header .header-top .column-right {
    justify-content: flex-end;
}

#header .header-main {
    position: relative;
    border-top: 1px solid #FFFFFF2B;
}

#header .header-main .navbar {
   padding: 10px 0;
}

#header .header-main .header-menus {
    width: 40%;
    transition: height 0.5s ease-in-out;
}

#header .header-main .toggler-icon-active,
#header .header-main .toggler-icon-not-active {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header .header-main .toggler-icon-active i,
#header .header-main .toggler-icon-not-active i{
    width: 20px;
}


#header .header-main .header-menus a.nav-link {
    position: relative;
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-sm);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    padding: 10px 0;
    margin: 0 15px;
}

#header .header-main .header-menus a.nav-link:first-child {
    margin-left: 0;
}

#header .header-main .header-menus a.nav-link:last-child {
    padding-right: 0;
}

#header .header-main .header-menus a.nav-link::after {
    content: "";
    width: 0;
    display: block;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    bottom: 0;
    background-color: var(--color-white);
    height: 1px;
    z-index: 2;
    opacity: 0;
}

#header .header-main .header-menus a.nav-link:hover::after {
    opacity: 1;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#header .header-main .header-menus a.nav-link.active::after {
    opacity: 1;
    width: 100%;
}

#header .header-main .header-logo {
    width: 20%;
    text-align: center;
}

#header .header-main .header-logo .logo-img {
    max-width: 130px;
    margin: auto;
}

#header .header-main .header-logo a {
    margin-right: 0;
}

#header .header-main .header-button {
    width: 40%;
    text-align: right;
}

#header .header-main .header-button .button {
    text-transform: uppercase;
    letter-spacing: 2px;
}

#header .header-main .header-navbar-toggler {
    display: none;
    width: 40%;
}

#header .header-main .header-navbar-toggler .navbar-toggler {
    padding: 0.5rem 0.75rem;
    border-color: var(--color-white);
    color: var(--color-white);
    border-radius: 0;
}

#header .header-main .header-navbar-toggler .navbar-toggler:focus {
    box-shadow: none;
}

#btnScrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--color-pink);
    color: var(--color-white);
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: inherit;
    text-align: center;
}

.banner-wrapper,
.page-header-wrapper {
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 14rem 0rem 7rem 0rem;
    padding-top: 14rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(14rem - 131.5px);
    background-color: #5a6c70;
}

.banner-wrapper .banner-background-overlay,
.page-header-wrapper .page-header-background-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.banner-wrapper .banner-textbox,
.page-header-wrapper .page-header-textbox {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-textbox .textbox-wrapper,
.page-header-textbox .textbox-wrapper {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.banner-textbox .textbox-wrapper .textbox-content,
.page-header-textbox .textbox-wrapper .textbox-content {
    position: relative;
    padding: 2rem;
    width: 100%;
}

.banner-textbox .textbox-content .textbox-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 20px;
}

.page-header-textbox .textbox-content .textbox-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    margin-top: 20px;
    margin-bottom: 0;
}

.banner-textbox .textbox-content .textbox-title,
.page-header-textbox .textbox-content .textbox-title  {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xxxl);
    line-height: var(--line-height-xxxl);
    margin: 0;
    letter-spacing: -2px;
}

.banner-textbox .textbox-content .paragraph {
    margin: 40px 0;
}

.section-wrapper .subtitle {
    margin-bottom: 10px;
}

.section-wrapper .title {
    margin-bottom: 20px;
}

.section-wrapper .paragraph {
    margin-bottom: 35px;
}

.section-wrapper.section-one .box-wrapper {
    padding: 3rem 1rem 3rem 0;
}

.section-wrapper.section-four .box-wrapper {
    padding: 2rem 2rem 2rem 2rem;
}

.section-wrapper.section-one .counter-wrapper .counter-item {
    padding: 1.5rem;
}

.counter-item .counter-number {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xxxl);
    line-height: var(--line-height-xxxl);
    color: var(--color-pink);
    text-align: center;
}

.counter-item .counter-title {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    color: var(--color-grey);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
}

.textbox-promotion {
    position: relative;
    display: block;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.textbox-promotion .promotion-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--color-white);
    align-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 375px;
    text-align: left;
    padding: 3em 3em 3em 3em;
}

.textbox-promotion .promotion-content .subtitle {
    margin-bottom: 5px;
}

.textbox-promotion .promotion-content .title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    margin-bottom: 15px;
}

.textbox-promotion .promotion-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.textbox-promotion .promotion-bg-wrapper .promotion-bg {
    transition-duration: 600ms;
    -webkit-transform: scale(1.2) translateX(8%);
    -ms-transform: scale(1.2) translateX(8%);
    transform: scale(1.2) translateX(8%);
    will-change: transform;
    background-size: cover;
    background-position: 50%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.textbox-promotion:hover .promotion-bg-wrapper .promotion-bg {
    -webkit-transform: scale(1.2) translateX(-8%);
    -ms-transform: scale(1.2) translateX(-8%);
    transform: scale(1.2) translateX(-8%);
}

.textbox-promotion .promotion-bg-wrapper .promotion-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: 2;
    transition-duration: 600ms;
    background-color: #5A6C7080;
}

.textbox-promotion:hover .promotion-bg-wrapper .promotion-bg-overlay {
    background-color: #5A6C70CC;
}

.section-wrapper.section-three .box-wrapper {
    max-width: 720px;
    text-align: center;
    margin: auto;
    padding: 0 2rem;
}

.service-menus {
    margin-top: 50px;
}

.service-menus .menu-item {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.service-menus .menu-item .menu-item-bg-wrapper {
    position: relative;
    width: 100%;
    min-height: 350px;
    z-index: 1;
    overflow: hidden;
}

.menu-item .menu-item-bg-wrapper .menu-item-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    transition-duration: 1500ms;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.menu-item .menu-item-bg-wrapper .menu-item-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    transition-duration: 1500ms;
    z-index: 2;
}

.menu-item:hover .menu-item-bg-wrapper .menu-item-bg-overlay {
    background-color: rgba(0,0,0,.3);
}

.service-menus .menu-item .menu-item-content {
    position: relative;
    padding: 2rem;
    background-color: var(--color-white);
    text-align: center;
}

.service-menus .menu-item .menu-item-content .menu-item-subtitle {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    color: var(--color-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.service-menus .menu-item .menu-item-content .menu-item-name {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    color: var(--color-dark);
    text-transform: capitalize;
    margin-bottom: 35px;
}

#whyChooseUs {
    position: relative;
    padding: 3rem 0;
    background-color: transparent; 
    background-image: linear-gradient(90deg, transparent 60%, var(--color-light-pink) 0%);
    overflow-x: hidden;
}

#whyChooseUs .box-wrapper.left {
    padding: 3rem 6rem 3rem 0;
}

#whyChooseUs .box-wrapper.left .subtitle {
    margin-bottom: 10px;
}

#whyChooseUs .box-wrapper.left .title {
    margin-bottom: 20px;
}

#whyChooseUs .box-wrapper.left .paragraph {
    margin-bottom: 35px;
}

.service-boxes-wrapper .service-box {    
    position: relative;
    width: 100%;
    display: flex;
    text-align: left;
    align-items: flex-start;
}

.service-boxes-wrapper .service-box:not(:last-child) {
    margin-bottom: 20px;
}

.service-boxes-wrapper .service-box .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.service-boxes-wrapper .service-box .service-icon > span {
    background-color: var(--color-light-pink);
    fill: var(--color-pink);
    color: var(--color-pink);
    font-size: 35px;
    border-radius: 50rem;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 70px;
    height: 70px;
}

.service-boxes-wrapper .service-box .service-content {
    flex: 1;
}

.service-boxes-wrapper .service-box .service-content .service-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-boxes-wrapper .service-box .service-content .paragraph.service-description {
    margin-bottom: 0 !important;
}

#whyChooseUs .box-wrapper.right {
    padding: 10px;
}

#whyChooseUs .box-wrapper.right .img-object-fit-cover {
    width: 100vw;
    max-width: 51vw;
    height: 800px;
    object-fit: cover;
    vertical-align: middle;
    display: inline-block;
}

#whyChooseUs .box-wrapper.right .counter-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: auto;
    max-width: 100%;
}

#whyChooseUs .box-wrapper.right .counter-wrapper .counter-content {
    padding: 2rem 3rem;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-box-shadow .3s;
}

#testimonial {
    position: relative;
    width: 100%;
    max-width: 840px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

#testimonial .testimonial-wrapper {
    padding: 0 2rem;
}

#testimonial .testimonial-slider {
    margin-top: 50px;
}

#testimonial .testimonial-slider .testimonial-item {
    padding: 0 30px 30px 30px;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    text-align: center;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 25px;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-image img {
    width: 70px;
    height: 70px;
    border-radius: 0px;
    object-fit: cover;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-info {
    margin-left: 20px;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-info span.name {
    display: block;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    text-align: left;
}

#testimonial .testimonial-slider .testimonial-item .testimonial-info span.career {
    display: block;
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

.slick-dots li button::before {
    content: "\f111";
    font-family: "fontawesome";
}

.slick-prev {
    left: 0;
    z-index: 100;
}

.slick-prev::before {
    content: "\f053";
    font-family: "fontawesome";
    color: var(--color-pink);
    font-size: 35px;
}

.slick-next {
    right: 0;
    z-index: 100;
}

.slick-next::before {
    content: "\f054";
    font-family: "fontawesome";
    color: var(--color-pink);
    font-size: 35px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    overflow: hidden;
}

.gallery-item::before {
    display: block;
    padding-top: 100%;
    content: "";
}

.gallery-item .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    transition-duration: 1500ms;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.gallery-item .gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    transition-duration: 1500ms;
    z-index: 2;
}

.gallery-item:hover .gallery-image-overlay {
    background-color: rgba(0,0,0,.3);
}

.gallery-wrapper .gallery-textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 720px;
    margin: auto;
}

.gallery-wrapper .gallery-textbox .gallery-textbox-content {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    z-index: 1;
    padding: 4rem;
    text-align: center;
}

#footer {
    position: relative;
    width: 100%;
    height: auto;
}

#footer .footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-pink);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: -1;
}

#footer .footer-main {
    padding: 50px 0;
}

#footer .footer-top,
#footer .footer-bottom {
    padding: 1.5rem 0;
    width: 100%;
}

#footer .footer-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    border-bottom: 1px solid #D5D8DA;
}

#footer .footer-top .footer-top-left {
    width: 40%;
}

#footer .footer-top .footer-top-middle {
    width: 20%;
    text-align: center;
}

#footer .footer-top .footer-top-middle .logo-img {
    max-width: 130px;
    margin: auto;
}

#footer .footer-top .footer-top-right {
    width: 40%;
}

#footer .footer-top .menu-list-footer,
#footer .footer-top .social-list-footer {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

#footer .footer-top .menu-list-footer {
    justify-content: flex-start;
}

#footer .footer-top .social-list-footer {
    justify-content: flex-end;
}

#footer .footer-top .menu-list-footer li,
#footer .footer-top .menu-list-footer .menu-item,
#footer .footer-top .social-list-footer li,
#footer .footer-top .social-list-footer .social-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .menu-list-footer li:not(:last-child),
#footer .footer-top .social-list-footer li:not(:last-child) {
    margin-right: 15px;
}

#footer .footer-top .menu-list-footer .menu-item  {
    font-family: var(--font-family-paragraph);
    font-size: 13px;
    line-height: var(--line-height-nm);
    color: var(--color-grey);
}

#footer .footer-top .menu-list-footer .menu-item i {
    font-size: 4px;
    color: var(--color-pink);
}

#footer .footer-top .social-list-footer .social-item {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
    color: var(--color-grey);
}

#footer .footer-main .col-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    margin-bottom: 15px;
}

#footer .footer-main .paragraph {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
}

#footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-top: 1px solid #D5D8DA;
}

.section-about-one .box-wrapper {
    padding: 3rem 0 3rem 6rem;
}

.map-wrapper {
    margin-bottom: -5px;
}

.gallery-filter-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gallery-filter-group .gallery-filter-item {
    position: relative;
    padding: 7px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    color: var(--color-grey);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-filter-group .gallery-filter-item:not(:last-child) {
    margin-right: 25px;
}

.gallery-filter-group .gallery-filter-item::after {
    content: "";
    width: 0;
    display: block;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    bottom: 0;
    background-color: var(--color-pink);
    height: 3px;
    z-index: 2;
    opacity: 0;
}

.gallery-filter-group .gallery-filter-item:hover::after {
    opacity: 1;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.gallery-filter-group .gallery-filter-item.active::after {
    opacity: 1;
    width: 100%;
}

.section-gallery .gallery-wrapper {
    margin-top: 50px;
}

.section-gallery .gallery-wrapper .gallery-item {
    cursor: pointer;
}

.section-contact-one .contact-form-wrapper {
    position: relative;
    width: 100%;
    padding: 3rem;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.section-contact-one img {
    object-fit: cover;
    height: 100%;
}

.section-contact-two .box-wrapper {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 4rem;
}

.section-contact-two .textbox-w-icon {
    position: relative;
    width: 100%;
}

.section-contact-two .textbox-w-icon .textbox-icon {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-contact-two .textbox-w-icon .textbox-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.section-contact-two .textbox-w-icon .textbox-icon > span {
    background-color: var(--color-light-pink);
    fill: var(--color-pink);
    color: var(--color-pink);
    font-size: 35px;
    border-radius: 50rem;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}

.field-group {
    position: relative;
    margin-bottom: 20px;
}

.field-group .field-label {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
    color: var(--color-grey);
    font-weight: 600;
}

.field-group .field-control {
    width: 100%;
    min-height: 47px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    padding: 6px 16px;
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
    color: var(--color-grey);
    background-color: #F8F8F8;
    border: 1px solid #F8F8F8;
}

.field-group .field-control:focus {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 0 1px rgb(0 0 0 / 10%) inset;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
    outline: 0;
}

.box-service-menu .service-menu-details {
    position: relative;
    padding: 3rem;
    width: 100%;
}

.box-service-menu .service-menu-details .service-menu-name {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    margin-bottom: 20px;
}

.box-service-menu .service-menu-details .service-list-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.box-service-menu .service-list-wrapper .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-service-menu .service-list-wrapper .service-list .service-item {
    display: flex;
    align-items: flex-start;
}

.box-service-menu .service-list-wrapper .service-list .service-item:not(:last-child) {
    margin-bottom: 28px;
}

.box-service-menu .service-list .service-item .service-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.box-service-menu .service-list .service-item .service-item-content .item-content-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-weight: 600;
    margin-bottom: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    color: var(--color-dark);
    font-weight: 500;
}

.box-service-menu .service-item .item-content-header .item-title {
    max-width: 80%;
}

.box-service-menu .service-item .item-content-header .item-separator {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom-style: dotted;
    border-bottom-width: 2px;
    height: 0;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    border-bottom-color: var(--color-grey);
    margin-left: 14px;
    margin-right: 14px;
}

.box-service-menu .service-item .item-content-header .item-price {
    color: var(--color-pink);
}

.box-service-menu .service-menu-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.box-service-menu .service-menu-thumbnail img {
    object-fit: cover;
    height: 100%;
}

.sticky-social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 10px;
    box-shadow: 0 0 3px 3px var(--color-pink);
    border-radius: 10px 0 0 10px;
    background-color: #FFFFFF;
    z-index: 999;
}

.sticky-social-bar .social-icon-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 45px;
    min-height: 45px;
    background-color: var(--color-light-pink);
    border-radius: 50rem;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sticky-social-bar .social-icon-bar:hover {
    background-color: var(--color-pink);
}

.sticky-social-bar .social-icon-bar:not(:last-child) {
    margin-bottom: 10px;
}

.sticky-social-bar .social-icon-bar a {
    font-size: 20px;
    color: var(--color-pink);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sticky-social-bar .social-icon-bar:hover a {
    color: var(--color-white);
}

.change-color-bar {
    position: fixed;
    width: 80px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    box-shadow: none;
    padding: 20px 10px;
    background-color: transparent;
    z-index: 999;
    height: 50%;
}

.change-color-bar .input-color-wrapper {
    position: relative;
    width: 100%;
}

.change-color-bar .input-color-wrapper::before {
    content: '';
    padding-top: 100%;
    display: block;
}

.change-color-bar .input-color-wrapper input.input-color,
.change-color-bar .input-color-wrapper label {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80%;
    height: 80%;
    border-radius: 50rem;
    border: 1px solid #D5D8DA;
    transform: translateX(-50%);
    cursor: pointer;
}

.change-color-bar .input-color-wrapper input.input-color {
    z-index: -1;
}

.change-color-bar .input-color-wrapper label {
    z-index: 1000;
}

.change-color-bar .input-color-wrapper input.input-color::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
    padding: 0;
}

.change-color-bar .input-color-wrapper label[for="inputWhite"] {
    background-color: var(--color-white);
}

.change-color-bar .input-color-wrapper label[for="inputDark"] {
    background-color: var(--color-dark);
}

.change-color-bar .input-color-wrapper label[for="inputGrey"] {
    background-color: var(--color-grey);
}

.change-color-bar .input-color-wrapper label[for="inputPink"] {
    background-color: var(--color-pink);
}

.change-color-bar .input-color-wrapper label[for="inputLightPink"] {
    background-color: var(--color-light-pink);
}

.change-color-bar .rs-color {
    font-family: var(--font-family-paragraph);
    color: var(--color-grey);
    font-weight: 500;
    font-size: 12px;
}

.change-color-bar .change-color-image-icon {
    cursor: pointer;
}

.change-color-bar .input-wrapper-group {
    margin-top: 10px;
    transition: all .5s ease-in-out;
    display: none;
}

.change-color-bar .input-wrapper-group.show {
    display: block;
}

.change-color-bar .color-customize {
    position: relative;
    padding: 20px 10px;
    border-radius: 64px;
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}