@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #001F3F;
    --secondary: #D2B48C;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

/* How to add New font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */


section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
}

h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
}

.preLoader.black {
    background-color: var(--primary);
    z-index: 999999999;
}

.preLoader.white {
    z-index: 999999998;
    background-color: var(--secondary);
}

/* loader */

/* btn css */

.themeBtn {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -2;
}

.themeBtn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    transform: skewY(25deg) scale(0);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.themeBtn:hover::before {
    transform: skewY(25deg) scale(6);
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

/* btn css */


.navbar {
    position: relative;
}

.navbar-brand {
    position: absolute;
    top: 0;
    z-index: 1;
    text-align: center;
    width: 185px;
    height: 155px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 70%, 48% 100%, 0% 70%, 0% 30%);
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
    padding: 2.25rem 0;
}

.navbar .form-inline {
    margin-left: 2rem;
    gap: 1.25rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #6B6B6B;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: url('../images/baseball.png');
    background-size: contain;
    animation: moving 2s infinite linear;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    bottom: -1.5rem;
    opacity: 1;
}

@keyframes moving {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down > a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;

    color: #6B6B6B;
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 17px;
    font-size: 0.813rem;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

.an-navbar {
    background: var(--theme-color);
    /* padding: 1.35rem 0; */
}

/* navigation css */

/* slider css */

.main-slider {
    height: 990px;
    background-color: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 100% 85%, 50% 100%, 0% 85%, 0% 0%);
    padding-bottom: 10px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: calc(100% - 15px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 100% 87%, 50% 100%, 0% 87%, 0% 0%);
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 98px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.main-slider h2 {
    margin: 0;
    color: var(--white);
    font-size: 78px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.main-slider h3 {
    margin: 0;
    color: var(--white);
    font-size: 2.188rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.9;
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* slider css */

/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
}


/* / sraachbar end / */
/* img.img-fluid.bnrbgg {
	position: absolute;
	bottom: -1.5rem;
	z-index: -1;
} */


.mainHead {
    font-size: 3.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}


/* hitsection css start  */
section.hitSection h3 {
    font-size: 4.8125rem;
    text-transform: uppercase;
    font-weight: 600;
}

section.hitSection h4 {
    font-size: 1.875rem;
    text-transform: uppercase;
    font-weight: 600;
}

ul.brwonlist li {
    font-size: 1.125rem;
    list-style: disc;
    color: #828282;
    margin-bottom: 1rem;
}

ul.brwonlist {
    margin: 1.5rem 1rem;
}

ul.brwonlist li::marker {
    color: #D2B48C;
}

section.hitSection figure::before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    left: -1.7rem;
    top: 1.7rem;
}

section.hitSection figure {
    position: relative;
}

/* hitsection css end  */


ul.topsocial {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

ul.topcontact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar {
    /* background: linear-gradient(to left, var(--primary) 75%, #D2B48C 50%); */
    padding: 1.17rem 0;
    position: relative;
    background-color: #D2B48C;
}

.topbar:before {
    content: '';
    position: absolute;
    right: -2%;
    top: 0;
    bottom: 0;
    background: var(--primary);
    width: 70%;
    height: 100%;
    transform: skewX(25deg);
    border-left: 7px solid #fff;
}

ul.topsocial li a {
    width: 35px;
    height: 35px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 14px;
}

ul.topsocial li a:hover {
    background: var(--primary);
    color: #fff;
}

ul.topcontact li a {
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 2px solid rgb(255 255 255 / 50%);
    padding: 0 1.5rem;
}

ul.topcontact li:last-child a {
    border-right: 0;
    padding-right: 0;
}

li.nav-item.iconn1 a {
    width: 47px;
    height: 47px;
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #030504;
    font-size: 16px;
}

li.nav-item.iconn1 a:hover {
    background: var(--primary);
    color: #fff;
}


/* businessSection css start*/
.busicntnt h3 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1.5rem;
    color: #fff;
}

.busicntnt p {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 400;
}

section.businessSec {
    background: var(--primary);
}

/* businessSection css end */

/* secheduleSec css start */
section.hitSection.schedule h3 {
    font-size: 51px;
}

section.hitSection.schedule figure::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 96%;
    top: 17px;
}

section.hitSection.schedule h4 {
    margin-top: 1rem;
}

section.hitSection.schedule ul.brwonlist {
    margin-top: 12px;
}

/* secheduleSec css end */

/* membersection css start*/
h3 {
}

.membrcntnt h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
}

.membrcntnt p {
    color: #060606;
    font-size: 0.8125rem;
    text-transform: uppercase;
    margin: 0 0 7px 0;
    font-weight: 500;
}

.membrcntnt h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

.membrcntnt .themeBtn {
    font-size: 0.8125rem;
}

.membrcntnt {
    text-align: center;
}

section.memberSection {
    background: #F3F3F3;
}

.memberbox figure {
    background: #fff;
    padding: 4rem;
    text-align: center;
    position: relative;
}

.memberbox figure:before,
.memberbox figure:after {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 114px;
    height: 97px;
    transition: 0.5s ease;
}

.memberbox figure:before {
    right: 0;
    top: 0;
    clip-path: polygon(10% 0%, 100% 0, 100% 90%);
}

.memberbox figure:after {
    bottom: 0;
    left: 0;
    clip-path: polygon(90% 100%, 0 100%, 0% 10%);

}

.memberbox figure:hover:before,
.memberbox figure:hover:after {
    background-color: #D2B48C;
}

a.themeBtn.membrbtn {
    margin-top: 3rem;
}

/* membersection css end */


.mapSection {
    padding: 0;
}


/* testimonialsec css start  */
.testiwrap {
    background: #F3F3F3;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #F3F3F3;
    padding: 2rem;
}

.testiwrap p {
    font-size: 1.125rem;
    color: #0E252A;
    font-style: italic;
}

.testiwrap h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}

figure.usr img {
    display: block;
    margin: auto;
}

img.img-fluid.quote1 {
    position: absolute;
    top: 1.5rem;
    right: 17rem;
}

/* testimonialsec css end  */


/* Footer Sec Css Start */

footer {
    background-color: #292929;
    padding-top: 6rem;
    margin-top: -3rem;
}

footer h3 {
    font-size: 1.875rem;
    margin-bottom: 12px;
    color: var(--white);
}

footer ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

.contactInfo li a {
    /* display: inline-flex; */
    /* align-items: center; */
    /* gap: 5px; */
    font-size: 1rem;
    font-weight: 400;
}

footer ul li a:hover {
    color: #D2B48C;
}

.contactInfo li + li {
    padding-top: 1.5rem;
}

.timing p {
    font-size: 0.875rem;
    line-height: 0.4;
    color: var(--white);
}

.timing p span {
    width: 17%;
    display: inline-block;
}


.copyRight p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
}


.copyRight {
    border-top: 2px solid #3E3E3E;
    margin-top: 1rem;
    padding: 1.5rem 0;
}

ul.links li {
    margin-bottom: 1.5rem;
}

.timing p {
    margin-bottom: 2rem;
}

ul.contactInfo li a span {
    display: block;
    font-weight: 500;
}

/* Footer Sec Css End */


/* innerpages Start */
.innerBan {
    background-color: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 100% 80%, 50% 100%, 0% 80%, 0% 0%);
    padding-bottom: 20px;
}

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 4.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.innerBan {
    position: relative;
}

.innerBan p {
    color: #fff;
    font-size: 1.125rem;
}

section.hitSection.abouthit h3 {
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 1rem 0;
}

section.hitSection.abouthit p {
    color: #828282;
}

ul.abtlist li {
    color: #828282;
    font-size: 1rem;
    margin-bottom: 1rem;
}

section.hitSection.abouthit figure:before {
    content: "";
    position: absolute;
    left: 2rem;
}

section.hitSection.abouthit figure {
    position: relative;
}


.hitSection.abouthit.abouthit2 {
    background: #F3F3F3;
    padding: 5rem 0 9rem 0;
}

.hitSection.abouthit.abouthit2 figure {
    position: relative;
    z-index: 1;
}

.hitSection.abouthit.abouthit2 figure:before {
    content: "";
    position: absolute;
    left: -2rem;
    background: var(--secondary);
}


.btn-group .themeBtn {
    margin-right: 1rem;
}

a.themeBtn.btn2 {
    background: var(--secondary);
}

h2.subhead {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}


section.memberSection.memberbg .memberbox figure {
    background: #F3F3F3;
}

section.memberSection.memberbg {
    background: #fff;
}

.cntntextra h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.cntntextra h4 {
    font-size: 1.9375rem;
    font-weight: 600;
    margin-top: 1rem;
}


ul.brwonlist.brownlist2 li {
    list-style-position: inside;
}


.memberSection.memberbg.membr2 .memberbox {
    margin-bottom: 4rem;
}

.appointmentTabs ul {
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-bottom: 1rem;
}

.appointmentTabs ul li a {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    padding: 12px 2em;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: var(--primary);
    border-radius: unset;
}

.contactBox {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contactBox figure {
    background: var(--secondary);
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    box-shadow: 0 0 0px 10px rgb(210 180 140 / 62%);
}

.contactInformations {
    width: calc(100% - 120px);
}

.contactInformations a {
    color: var(--black);
}

.contactInformations h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
    font-weight: 600;
}

.contactInformations span {
    font-size: 16px;
}

.getForm label {
    display: block;
    font-size: 1rem;
    color: #8e8e8e;
    margin: 0 10px 15px;
    font-weight: 400;
}

.getForm input {
    border: 1px solid #00000042;
    width: 100%;
    height: 5.1875rem;
    margin: 0 0 2rem;
    border-radius: 10px;
    border-top: unset;
    border-left: unset;
    border-radius: unset;
    border-right: unset;
}

.getForm textarea {
    border: 1px solid #00000042;
    width: 100%;
    height: 9.5625rem;
    margin: 0 0 2rem;
    resize: none;
    border-radius: 10px;
    border-top: unset;
    border-left: unset;
    border-radius: unset;
    border-right: unset;
}


.getForm h3 {
    font-size: 28px;
    text-transform: uppercase;
}

.aboutSec.contactSec figure:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 88%;
    height: 100%;
    z-index: -1;
    right: 2rem;
    top: 1.5rem;
}

section.aboutSec.contactSec figure {
    position: relative;
}

section.aboutSec.contactSec {
    padding: 5rem;
}


/*  Lenis Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.calendar {
    font-family: 'Arial', sans-serif;
    border: 1px solid #d3d3d3;
    border-radius: 0.5rem;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: var(--secondary);
    color: var(--white);
}

.calendar-header button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    padding: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}


.calendar-header div {
    font-size: 1.5rem;
    font-weight: 600;
}

.days-header {
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 5px 0;
}

.days-header div {
    font-weight: bold;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
    padding: 5px;
}

.day {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 2px auto;
    user-select: none;
    cursor: pointer;
    border-radius: 50%; /* Makes the day a circle */
    transition: background-color 0.3s, color 0.3s;
}

.day:hover {
    background-color: #e0e0e0;
}

.day.today {
    background-color: var(--primary); /* or any color that indicates today */
    color: white;
}

.day.selected {
    background-color: var(--secondary); /* or any color that indicates selection */
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .day {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.timeSlots {
    margin: 2rem 0;
}

.timeSlots-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.timeSlots-btn li button {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--secondary);
    border-radius: 0.25rem;
    outline: none !important;
}

.timeSlots-btn li button:hover,
.timeSlots-btn li button:focus,
.timeSlots-btn li button:active,
.timeSlots-btn li button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}


.availableStaffs div > input {
    accent-color: var(--secondary);
}


.available-checkBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0 0;
}

.custome {
    z-index: -1;
}
