:root {
    --color-white: 255,255,255;
    --color-dark: 35,35,35;
    --color-purple: 189,164,216;
    --color-grey: 97,97,97;

    --font-family-primary: "Playfair Display", sans-serif;
    --font-family-secondary: "Open Sans", sans-serif;
    --font-family-paragraph: "Droid Serif", sans-serif;

    --font-size-xxxl: 72px;
    --font-size-xxl: 55px;
    --font-size-xl: 45px;
    --font-size-lg: 40px;
    --font-size-md: 26px;
    --font-size-nm: 16px;
    --font-size-sm: 14px;

    --line-height-xxxl: 1.1;
    --line-height-xxl: 1.1;
    --line-height-xl: 1.2;
    --line-height-lg: 1.5;
    --line-height-md: 1.8;
    --line-height-nm: 2;
    --line-height-sm: inherit;
}

a {
    color: rgb(var(--color-dark));
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
    -webkit-transition:  all 0.3s ease !important;
    -o-transition:  all 0.3s ease !important;
    transition:  all 0.3s ease !important;
}

a:hover {
    color: rgb(var(--color-purple));
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.text-white {
    color: rgb(var(--color-white)) !important;
}
.text-dark {
    color: rgb(var(--color-dark)) !important;
}
.text-purple {
    color: rgb(var(--color-purple)) !important;
}
.text-grey {
    color: rgb(var(--color-grey)) !important;
}

.border-white {
    border-color: rgb(var(--color-white)) !important;
}
.border-dark {
    border-color: rgb(var(--color-dark)) !important;
}
.border-purple {
    border-color: rgb(var(--color-purple)) !important;
}
.border-grey {
    border-color: rgb(var(--color-grey)) !important;
}

.logo img {
    width: 100%;
    max-width: 250px;
}

.section-wrapper {
    padding: 100px 0;
}

.title-large {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xxxl);
    line-height: var(--line-height-xxxl);
    font-weight: 400; 
    text-transform: uppercase;
    margin-bottom: 30px;
}

h1.title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-xxl);
    font-weight: 400;
}

h2.title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    font-weight: 400;
    margin-bottom: 10px;
}

h3.title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
    font-weight: 400;
}

h4.title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    font-weight: 700;
}

h6.subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 45px;
}

p.lead-paragraph {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    font-weight: 400;
}

.paragraph {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
    font-weight: 400;
    margin-bottom: 45px;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

.button {
    display: inline-block;
    width: auto;
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 25px;
    -webkit-transition:  all 0.3s ease;
    -o-transition:  all 0.3s ease;
    transition:  all 0.3s ease;
    text-align: center;
    border: 2px solid;
    border-color: rgb(var(--color-purple));
    background-color: rgb(var(--color-purple));
    color: rgb(var(--color-white));
    border-radius: 0;
    line-height: 1;
}

.button:hover {
    background-color: transparent;
    color: rgb(var(--color-purple));
    border-color: rgb(var(--color-purple));
}

.button.button-light {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: rgb(var(--color-dark));
}

.button.button-light:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: rgb(var(--color-purple));
}

.button.button-lg {
    padding: 30px 120px;
    font-size: 22px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button.button-md {
    padding: 20px 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.border-top-double {
    position: relative;
    border-top: 2px solid;
    border-color: rgb(var(--color-dark)) !important;
}

.border-top-double::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 0;
    border-top: 1px solid;
    border-color: rgb(var(--color-dark)) !important;
}

.border-top {
    border-top: 2px solid !important;
    border-color: rgb(var(--color-dark)) !important;
}

.border-bottom-double {
    position: relative;
    border-bottom: 1px solid;
    border-color: rgb(var(--color-dark)) !important;
}

.border-bottom-double::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 0;
    border-top: 2px solid;
    border-color: rgb(var(--color-dark)) !important;
}

.border-bottom {
    border-bottom: 2px solid !important;
    border-color: rgb(var(--color-dark)) !important;
}

#header {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

#header .header-top {
    display: flex;
    flex-wrap: nowrap;
    padding: 2.5rem 0 1rem 0;
}

#header .header-top .column-left {
    display: flex;
    align-items: center;
}

#header .header-top .column-right {
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

#header .header-top .social-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 2.5rem 0 0;
}

#header .header-top .social-list .social-item:not(:last-child) {
    margin-right: 15px;
}

#header .header-top .social-list .social-link {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
}

#header .header-main {
    display: flex;
    flex-wrap: nowrap;
    padding: 1rem 0 1rem 0;
    justify-content: center;
    align-items: center;
}

#header .header-main .logo {
    display: none;
}

#header .header-main .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

#header .header-main .header-menus .navbar-nav .nav-link {
    padding: 0 1.5rem;
    font-family: var(--font-family-secondary);
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
    color: rgb(var(--color-dark));
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header .header-main .header-menus .navbar-nav .nav-link.active,
#header .header-main .header-menus .navbar-nav .nav-link:hover {
    color: rgb(var(--color-purple));
}

.header-navbar-toggler .navbar-toggler {
    color: rgb(var(--color-dark));
    outline: none;
    box-shadow: none;
}

.banner-slider {
    position: relative;
}

.banner-slider .banner-item {
    position: relative;
    width: fit-content;
}

.banner-slider .banner-item img {
    width: 100%;
    max-width: 100%;
}

.banner-slider .banner-item .banner-item-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(17, 17, 17);
    z-index: 1;
    opacity: 0.3;
    -webkit-transition:  all 0.45s ease;
    -o-transition:  all 0.45s ease;
    transition:  all 0.45s ease;
}

.banner-slider .banner-item:not(.is-selected) .banner-item-overlay {
    opacity: 0.6;
}

.banner-slider .banner-item .banner-textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transition:  all 0.45s ease;
    -o-transition:  all 0.45s ease;
    transition:  all 0.45s ease;
}

.banner-slider .banner-item.is-selected .banner-textbox {
    opacity: 1;
}

.banner-slider .banner-item .banner-textbox .button-banner {
    margin-top: 250px;
}

.banner-slider .flickity-button {
    background: rgb(var(--color-white));
    -webkit-transition:  all 0.3s ease;
    -o-transition:  all 0.3s ease;
    transition:  all 0.3s ease;
}

.banner-slider .flickity-button:hover {
    background: rgb(var(--color-purple));
}

.banner-slider .flickity-prev-next-button {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.banner-slider .flickity-button-icon {
    fill: rgb(var(--color-dark));
}

.banner-slider .flickity-page-dots {
    bottom: 10px;
}

.banner-slider .flickity-page-dots .dot {
    height: 4px;
    width: 40px;
    margin: 0;
    border-radius: 0;
    background: #F5F5F5;
}

.banner-slider .flickity-page-dots .dot.is-selected {
    background: white;
}

.section-wrapper.section-home-2,
.section-wrapper.section-home-5 {
    background-color: rgb(var(--color-purple), 0.2);
}

.section-wrapper.section-home-4,
.section-wrapper.section-about-2 {
    padding: 0;
}

.box-w-img-style-1 {
    position: relative;
    width: 100%;
    background-color: rgb(var(--color-purple), 0.8);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.box-w-img-style-1 .box-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 25px 0 30px 0;
}

.menu-item-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-item-img img {
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
}

.menu-item-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-purple));
    opacity: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.menu-item-img:hover::before {
    opacity: 0.3;
}

.menu-item-content {
    padding: 2.5rem 2.5rem;
    position: relative;
    margin: 0 1.35rem;
    margin-top: -4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
    background-color: #FFFFFF;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.menu-item-content .box-content {
    text-align: center;
    padding: 25px 0 35px 0;
}

.menu-item-content .box-content .menu-item-name {
    margin-bottom: 20px;
    color: rgb(var(--color-dark));
}

#testimonial .testimonial-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 100px;
}

#testimonial .testimonial-item .testimonial-body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    text-align: center;
}

#testimonial .testimonial-item .testimonial-image {
    width: 100%;
    max-width: 85px;
    height: auto;
    margin: 20px auto 20px;
}

#testimonial .testimonial-item .testimonial-info {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.testimonial-slider .flickity-button {
    background: rgb(var(--color-purple));
    border: 2px solid rgb(var(--color-purple));
    -webkit-transition:  all 0.3s ease;
    -o-transition:  all 0.3s ease;
    transition:  all 0.3s ease;
}

.testimonial-slider .flickity-button:hover {
    background: transparent;
}

.testimonial-slider .flickity-prev-next-button {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.testimonial-slider .flickity-button-icon {
    fill: rgb(var(--color-white));
}

.testimonial-slider .flickity-button:hover .flickity-button-icon {
    fill: rgb(var(--color-purple));
}

.testimonial-slider .flickity-page-dots {
    bottom: 10px;
}

.testimonial-slider .flickity-page-dots .dot {
    height: 4px;
    width: 40px;
    margin: 0;
    border-radius: 0;
    background: #F5F5F5;
}

.testimonial-slider .flickity-page-dots .dot.is-selected {
    background: white;
}

.section-w-bg-overlay {
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 100px 0;
}

.section-w-bg-overlay .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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    z-index: 2;
    background: rgb(17, 17, 17);
    opacity: 0.6;
}

.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: 3;
}

.box-counter {
    position: relative;
    width: 100%;
    text-align: center;
}

.box-counter .counter-number {
    margin-bottom: 20px;
}

.box-counter .counter-desc {
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.gallery-item::before {
    display: block;
    padding-top: 100%;
    content: "";
    background-color: rgb(var(--color-purple));
    opacity: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item .zoom-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 26px;
    color: #FFFFFF;
    opacity: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
}

.gallery-filter-group {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-filter-group .gallery-filter-item button {
    padding: 10px 15px;
    font-size: 13px;
    background-color: rgb(var(--color-purple));
    color: rgb(var(--color-white));
    margin-bottom: 5px;
}

.gallery-filter-group .gallery-filter-item button:not(:last-child) {
    margin-right: 5px;
}

.gallery-filter-group .gallery-filter-item:not(.active) button {
    background-color: transparent;
    color: rgb(var(--color-purple));
}

.gallery-filter-group .gallery-filter-item:not(.active):hover button {
    background-color: rgb(var(--color-purple));
    color: rgb(var(--color-white));
}

.bg-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}
.section-about-1 .subtitle {
    margin-bottom: 10px;
}

.section-about-1 .title {
    margin-bottom: 45px;
}

#footer .footer-main {
    padding: 50px 0;
}

#footer .footer-main .col-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    margin-bottom: 15px;
}

#footer .footer-main .paragraph {
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
}

#footer .footer-main i {
    width: 10px;
}

#footer .footer-main i::before {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-top: 1px solid #D5D8DA;
    padding: 1.5rem 0;;
}

#footer .footer-bottom .footer-bottom-right a {
    letter-spacing: 0;
}

.page-header-wrapper {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
    z-index: 1;
}

.page-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    background: rgb(17, 17, 17);
    opacity: 0.3;
    z-index: 0;
}

.page-header-textbox {
    position: relative;
    width: 100%;
    z-index: 1;
}

.page-header-textbox .textbox-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.page-header-textbox .textbox-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box-service-menu .service-menu-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.box-service-menu .service-menu-thumbnail {
    position: relative;
    width: 200px;
    height: 200px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}

.box-service-menu .service-menu-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
}

.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);
}

.box-service-menu .service-menu-details .service-menu-desc {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-nm);
    line-height: 1.5;
    font-weight: 700;
}

.box-service-menu .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:not(:last-child) {
    margin-bottom: 20px;
}

.box-service-menu .service-list-wrapper .service-list .service-item {
    display: flex;
    align-items: flex-start;
}

.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: 700;
    -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: 1.8;
    color: var(--color-dark);
    font-weight: 500;
}

.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: rgb(var(--color-grey));
    margin-left: 14px;
    margin-right: 14px;
}

.box-service-menu .service-item .item-title {
    color: rgb(var(--color-purple));
}

.box-service-menu .service-item .item-desc {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 45px;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

.divider {
    display: flex;
    width: 50px;
    border-top: 3px solid rgb(var(--color-purple));
    margin: 20px auto 10px auto;
}

.contact-form-wrapper {
    padding: 4rem;
}

.contact-form-wrapper .subtitle {
    margin-bottom: 10px;
}

.contact-form-wrapper .title {
    margin-bottom: 0;
}

.form-contact {
    margin-top: 45px;
}

.form-contact input,
.form-contact textarea {
    width: 100%;
    font-family:  var(--font-family-paragraph);
    font-size: var(--font-size-nm);
    line-height: var(--line-height-nm);
    padding: 0.5rem 1.2rem;
    border: 1px solid #DEDEDE;
    margin-bottom: 25px;
    outline: none;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.form-contact input:focus,
.form-contact textarea:focus {
    border-color: rgb(var(--color-purple));
}

#btnScrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: 2px solid rgb(var(--color-purple));
    outline: none;
    background-color: rgb(var(--color-purple));
    color: rgb(var(--color-white));
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    width: 50px;
    height: 50px;
    line-height: inherit;
    text-align: center;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

#btnScrollTop:hover {
    background-color: rgb(var(--color-white));
    color: rgb(var(--color-purple));
}

.sticky-social-bar {
    position: fixed;
    top: 50%;
    right: 10px;
    -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;
    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: rgb(var(--color-purple));
    color: rgb(var(--color-white));
    border-radius: 50rem;
    border: 2px solid rgb(var(--color-purple));
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.075);
}

.sticky-social-bar .social-icon-bar:hover {
    background-color: rgb(var(--color-white));
    color: rgb(var(--color-purple));
}

.sticky-social-bar .social-icon-bar:not(:last-child) {
    margin-bottom: 10px;
}

.sticky-social-bar .social-icon-bar a {
    font-size: 20px;
    color: rgb(var(--color-white));
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sticky-social-bar .social-icon-bar:hover a {
    color: rgb(var(--color-purple));
}

.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: rgb(var(--color-white));
}

.change-color-bar .input-color-wrapper label[for="inputDark"] {
    background-color: rgb(var(--color-dark));
}

.change-color-bar .input-color-wrapper label[for="inputGrey"] {
    background-color: rgb(var(--color-grey));
}

.change-color-bar .input-color-wrapper label[for="inputPurple"] {
    background-color: rgb(var(--color-purple));
}

.change-color-bar .rs-color {
    font-family: var(--font-family-secondary);
    letter-spacing: 0;
    font-weight: 700;
    color: rgb(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%);
}