@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    font-family: 'Lato', Sans-Serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    color: #5c6970;
    font-family: 'Lato', Sans-Serif;
    font-size: 16px;
    line-height: 1.3;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}
.mb-32{
    margin-bottom: 32px;
}
.mt-8{
    margin-top: 80px;
}
.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}
.border-btn{
    padding: 16px 40px;
    border: 1px solid #f8f6f24d;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    letter-spacing: 1px;
    display: inline-block;
}
.border-btn:hover{
    background: #d99726;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.theme_btn {
    padding: 16px 40px;
    border: unset;
    border-radius: 0px;
    color: #ffffff;
    z-index: 1;
    text-transform: uppercase;
    background: #d99726;
    position: relative;
    font-size: 14px;
    /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27); */
    /* box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27); */
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background-color: #000000;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}
.text-gold-gradient {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, #ebb447, #d99726, #9b6b27);
}
.gold-divider-wide {
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    width: 10rem;
    background: linear-gradient(90deg, transparent, #d99726, transparent);
}
.font-semibold {
    font-weight: 600;
}
.section-headings p{
    font-size: 18px;
    font-family: "Cormorant", serif;
    font-weight: 400;
    color: #5c6970;
    font-style: italic;
}

h1 {
    font-family: 'Playfair Display', Sans-Serif;
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Playfair Display', Sans-Serif;
    font-size: 48px;
    line-height: 1.2;
    color: #182125;
    font-weight: 400;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Playfair Display', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Playfair Display', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #182125;
    font-weight: 400;
    margin: 0 0 13px;
}

h5 {
    font-family: "Cormorant", serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-size: 14px;
    font-family: "Lato", Sans-serif;
    font-weight: 400;
    color: #d99726;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
.container {
    width: 100%;
    position: relative;
}
/*header css start */
header {
    position: fixed;
    width: 100%;
    z-index: 1;
    padding: 15px 0;
    transition: 0.5s ease-in-out;
}
header.fixed-header {
    background: #fff;
    color: #182125b3;
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 5px #0000002e;
}

header.fixed-header ul li a {
    color: #182125b3;
}


header.fixed-header a.apply_now_btn {
    color: #fff;
    transition: 0.5s ease-in-out;
}
.apply_now_btn{
    padding: 8px 12px !important;
    background-color: #d99726;
}
.main-logo {
    text-align: center;
}

.main-logo img {
    width: 50%;
}
.menuSec {
    padding: 0px 0;
}
#menu li:nth-last-child(-n+4) {
    display: none;
}
.menuSec .left_side_navigation ul#menu > li:nth-last-child(-n+4) {
    display: none !important;
}
.menuSec .left_side_navigation ul#menu > li ul li{
    display: block;
}
.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
    border:1px solid #d997264d;
    background-color: #182125 !important;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menuSec ul li a span i{
    font-size: 10px;
}
.menuSec li:hover>ul {
    display: flex;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 860px;
    text-align: left;
    top: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.menuSec li:hover>ul li {
    width: 20%;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 10px 20px !important;
    color: #fff;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    height: 100%;
}


.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}


.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    color: #d99726;
    background-color: #d997261a;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}




/*header css start */


/*banner css start */
.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}
.banner-video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    margin-bottom: -7px;
}
.banner_text h5{
    font-size: 20px;
    line-height: 28px;
    font-family: "Cormorant", serif;
    color: #f8f6f2b3;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.tab_line {
    font-size: 24px;
    color: #fff;
    font-family: "Cormorant", serif;
    font-weight: 400;
    font-style: italic;
}
.para{
    font-size: 20px;
    color: #f8f6f2b3;
    font-family: "Cormorant", serif;
    line-height: 24px;
}
.banner_text ul{
    display: flex;
    gap:20px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.banner_text ul li{
    line-height: 1;
}

/*banner css end*/




/*PHILOSOPHY SECTION*/
.Our-Philosophy-Section{
    padding: 80px 0;
    background-image: url(../images/our-philosophy.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-position: center;
}
.section_bg_overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffffe0, #deeff7cc, #ffffffe0);
    left: 0;
    top: 0;
}

.Philosophy_boxes{
    position: relative;
    padding: 30px;
    text-align: center;
    border: 1px solid #e7e1da80;
}
.Philosophy_boxes:hover{
    border-color: #d997264d;
}

.Philosophy_boxes h4{
    position: relative;
    padding: 30px 0;
    margin: 0;
}
.Philosophy_boxes h4:before{
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #d99726;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.Philosophy_boxes p{
    font-size: 14px;
}
.section_quote p{
    font-size: 18px;
    line-height: 28px;
    color: #5c6970;
    font-family: 'Cormorant', serif;
    font-style: italic;
}



/*TRATMENTS AND THERAPIST SECTION*/
.treatments_and_theraist{
    padding: 80px 0;
    background-image: url(../images/treatments.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-position: center;
}

.tratements_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2%;
}

.tratements_list ul li {
    width: 24%;
    margin-bottom: 15px;
}

.tratements_list ul li a {
    padding: 30px;
    background: #fbfaf9cc;
    display: block;
    text-align: center;
    border: 1px solid transparent;
}
.tratements_list ul li a:hover{
    transition: 0.3s ease-in-out;
    border-color: #d99726;
}
.tratements_list ul li a:hover h6{
    color: #d99726;
    transition: 0.3s ease-in-out;
}
.tratements_list ul li a h6 {
    font-family: 'Playfair Display';
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
    letter-spacing: 0;
    font-weight: 400;
    color: #182125;
}
.tratements_list ul li a p {
    margin-bottom: 0;
    font-size: 12px;
}
