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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

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 0px;
    padding: 0;
    list-style-type: none;
}


/***** 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
}

@font-face {
    font-family: 'courteous';
    src: url(../fonts/courteous.ttf);
}

@font-face {
    font-family: 'Trajan-Pro-3';
    src: url(../fonts/Trajan-Pro-3.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    /* border: 1px solid #a30000 !important;*/
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #917668 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 0px;
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
}

.btn10:hover {
    border: 1px solid transparent !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #222222;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.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;
}

h1 {
    font-family: 'courteous', Sans-Serif;
    font-size: 409px;
    line-height: 415px;
    color: #222222;
    font-weight: 500;
    margin: 0 0 10px;
}

h2 {
    font-family: 'courteous', Sans-Serif;
    font-size: 75px;
    line-height: 80px;
    color: #222222;
    font-weight: 500;
    margin: 0 0 10px;
}

h3 {
    font-family: 'courteous', Sans-Serif;
    font-size: 78px;
    line-height: 82px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

h4 {
    font-family: 'courteous', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #464236;
    font-weight: 500;
    margin: 0 0 10px;
}

h5 {
    font-family: 'courteous', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #222222;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #222222;
    font-size: 13px;
    line-height: 25px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0 0 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;
}


/*header css start */

header {
    position: absolute;
    padding: 12px 0 0 0;
    z-index: 999;
    width: 100%;
    /* border-bottom: solid 1px #ffffff4a; */
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #222222;
    padding: 8px 10px;
    font-size: 12px;
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 600;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #917668;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */


/*banner css start */

.yoga-lady {
    position: absolute;
    top: -88px;
    left: 16%;
    z-index: 0;
}

.banner_text.wow.fadeInLeft {
    position: relative;
    z-index: 1;
}

.main-banner-img {
    width: 100%;
    /*    object-fit: cover;
    height: 900px;*/
}

button.carousel-control-next::before {
    position: absolute;
    content: "\f061";
    color: #917668;
    font-size: 20px;
    font-weight: 700;
    font-family: 'FontAwesome';
    border: solid 1px;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.carousel-control-prev::before {
    position: absolute;
    content: "\f060";
    color: #917668;
    font-size: 20px;
    font-weight: 700;
    font-family: 'FontAwesome';
    border: solid 1px;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: transparent;
}

.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 css end*/


/* search box css */

body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */

section.aboutus.pt-8.pb-8::before {
    position: absolute;
    content: "";
    background: url(../images/abt-bf.png);
    width: 417px;
    height: 499px;
    background-size: cover;
    top: -32%;
    right: 0;
    z-index: -1;
}

section.aboutus.pt-8.pb-8 {
    position: relative;
}

span.fnt-clr {
    color: #917668;
}

.count {
    display: flex;
    align-items: center;
}

.items1 h4 {
    font-size: 14px;
    font-family: 'Montserrat-Regular';
    text-align: center;
    margin-bottom: 0;
    color: white;
}

.items1 h2 {
    text-align: center;
    font-size: 77px;
    color: white;
}

section.counters {
    margin-top: -80px;
    z-index: 0;
    position: relative;
}

.center-content {
    margin: 0 auto;
    text-align: center;
}

.items h2 {
    color: #917668;
    font-size: 54px;
    /* font-family: 'courteous'; */
    line-height: 55px;
    margin: 0;
}

.items p {
    font-size: 14px;
    width: 62%;
    line-height: 17px;
    margin: 0;
}

p.fnt-bld {
    font-weight: 600;
}


/*event sect*/

.event-box {
    position: relative;
    /* border: solid; */
    padding: 30px 28px 2px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 4px #80808075;
    margin-top: 20px;
}

.event-box img {
    width: 100%;
    height: 305px;
    object-fit: cover;
}

.evt-date {
    position: absolute;
    bottom: 110px;
    /* border: solid; */
    width: 87%;
    background: #dacac5ab;
    left: 0;
    right: 0;
    margin: auto;
}

.evt-date p {
    color: #464236;
    margin: 8px;
    font-weight: 600;
}

.event-detail {
    margin: 29px 0;
}

section.upcoming-evet.pt-8.pb-8::before {
    position: absolute;
    content: "";
    background: url(../images/event-bk.png);
    width: 100%;
    height: 55%;
    background-size: cover;
    z-index: -1;
    top: 0;
}

section.upcoming-evet.pt-8.pb-8 {
    position: relative;
}

.up-evt-head p {
    color: #fff;
    width: 84%;
}

.evt-btn a.btn10 {
    width: 49%;
    background: #e3d3cf !important;
    color: #917668;
}

.evt-btn {
    display: flex;
    justify-content: end;
}

.evt-bttn a.btn10 {
    background: #e3d3cf !important;
    color: #464236;
}


/*video sect*/

.yoga-vid-head {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.yoga-vid-head h2 {
    font-size: 50px;
    line-height: 55px;
}

.vid-div {
    position: relative;
}

.abs-vid {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
}

.abs-vid i {
    font-size: 20px;
    color: #917668;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 70px;
    height: 70px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%) !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.video-images img.vid1 {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.bk {
    position: absolute;
    content: "";
    background: url(../images/class.png);
    background-size: cover;
    height: 100%;
    width: 100%;
}

.bk {
    position: relative;
}

.sec-padding {
    padding-left: 0;
    padding-right: 8%;
}

ul.class-deatil li {
    /* border: solid; */
    padding: 18px;
    box-shadow: 0 0 4px #8080807d;
    /* background: #f8f6f6; */
}


/*ul.class-deatil li a {
    color: #222222;
    font-size: 20px;
    font-family: 'Trajan-Pro-3';
}*/

span.day {
    font-weight: 600;
}

span.class-det {
    font-size: 14px;
    font-family: 'Montserrat';
}

ul.class-deatil li a {
    color: #222222;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 600;
}

span.time-detail {
    font-size: 14px;
    font-family: 'Montserrat';
}

ul.class-deatil li:hover span.day {
    color: #fff;
}

ul.class-deatil li:hover span.class-det {
    color: #fff;
}

ul.class-deatil li:hover span.time-detail {
    color: #fff;
}

ul.class-deatil {
    padding: 15px 0;
}

li.clr1 {
    background: #f8f6f6;
}

li.clr2 {
    background: #f2eeed;
}

li.clr3 {
    background: #f2eeed;
}

ul.class-deatil li:hover {
    background: #917668;
}

ul.class-deatil li:hover a {
    color: #fff;
}

ul.cnt-list li a {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    /* margin-bottom: 40px; */
    font-family: 'Poppins';
    line-height: 45px;
}

ul.cnt-list {
    text-align: end;
}

ul.cnt-list i {
    font-size: 18px;
    margin: 0 16px;
    color: #917668;
}

.cont-head h2 {
    font-size: 72px;
    text-align: end;
    /* width: 74%; */
}

.getintouch-form input {
    /* width: 60%; */
    margin-bottom: 56px;
    border-bottom: solid 0.5px #3f3a3a57;
    background: transparent;
    border-top: unset;
    border-left: unset;
    border-right: unset;
    color: white;
}

.getintouch-form input::placeholder {
    font-size: 13px;
    color: #222222;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.getintouch-form textarea {
    background: transparent;
    margin-bottom: 22px;
    border-bottom: solid 0.5px #3f3a3a57;
    background: transparent;
    border-top: unset;
    border-left: unset;
    border-right: unset;
    color: white;
    /* padding: 108px 0 0 0; */
}

.getintouch-form textarea::placeholder {
    font-size: 13px;
    color: #222222;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.getintouch-form::before {
    position: absolute;
    content: "";
    background: url(../images/cnt-bk.png);
    width: 85%;
    height: 575px;
    background-size: cover;
    z-index: -1;
    right: 0;
}

.getintouch-form {
    /* margin: 0 20px; */
    position: relative;
    z-index: 0;
}

.mar {
    /* margin: 33px; */
    padding: 33px 30px 0 421px;
}

.get-btn a.btn10 {
    width: 50%;
}

.get-btn button.btn10 {
    width: 50%;
    border: none;
}

.getintouch-form::after {
    position: absolute;
    content: "";
    background: url(../images/cnt.png);
    height: 474px;
    width: 390px;
    top: 45px;
    left: 0;
    background-repeat: no-repeat;
}

.video-thumbnail.position-relative img {
    height: 500px;
    object-fit: cover;
}

/*
gallery*/

.gall-img img {
    margin: 0 0 15px;
}

.gal-txt {
    text-align: center;
}

img.gal-1,
img.gal-10,
img.gal-8 {
    width: 100%;
    object-fit: cover;
    height: 180px;
}

img.gal-3,
img.gal-2 {
    height: 558px;
    width: 100%;
    object-fit: cover;
}

img.gal-7,
img.gal-9 {
    width: 100%;
    height: 558px;
    object-fit: cover;
}

img.gal-11,
img.gal-12,
img.gal-13 {
    height: 367px;
    width: 100%;
    object-fit: cover;
}

img.gal-4,
img.gal-6 {
    height: 496px;
    width: 100%;
    object-fit: cover;
}


/*
gallery*/


/*
testimonials sect*/

*/
/*
.testi-head h4 {
    font-size: 68px;
    color: #000;
}
*/

.testi-slider {
    position: relative;
}

.testi-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: -38px;
    width: 106%;
    height: 364px;
    background: #fff;
    box-shadow: 0 0 10px #0003;
    z-index: -1;
}

.peopl-hed p {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 14px;
    width: 47%;
    margin: 0 auto;
}

.test-box p {
    font-weight: 400;
    font-size: 13px;
    /* font-family: "Roboto"; */
    color: #8a8a8a;
    width: 96%;
    margin-bottom: 0%;
}

.test-box ul p {
    font-family: 'courteous';
    font-size: 27px;
    line-height: 37.64px;
    font-weight: 500;
    color: #917668;
    width: 100%;
    margin: 0;
}

.test-box ul li {
    font-size: 14px;
    font-family: "Roboto";
    font-weight: 500;
    color: #8a8a8a;
}

.test-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test-box ul i {
    color: #f9a332;
}

section.people-say .slick-prev,
section.people-say .slick-next {
    bottom: 41%;
    top: unset;
}

section.people-say .slick-prev:before {
    content: "";
    opacity: 1;
    background-image: url(../images/left.png);
    background-size: cover;
    width: 55px;
    height: 18px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

section.people-say .slick-next:before {
    content: "";
    opacity: 1;
    background-image: url(../images/right.png);
    background-size: cover;
    width: 55px;
    height: 18px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

section.people-say .slick-next {
    right: -17%;
}

.testi-slider:after {
    content: "";
    position: absolute;
    bottom: -54px;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../images/testi2.png); */
    z-index: -1;
}

section.people-say .slick-prev {
    left: -90%;
    z-index: 1;
    opacity: 1;
}

.test-box {
    margin-top: 50px;
    position: relative;
}

section.people-say .slick-slide {
    margin-left: 0;
}

.sldr-img2 {
    border-left: 7px solid #917668;
}

.test-box img {
    width: inherit;
    margin-bottom: 5%;
}

.test-box::before {
    content: "";
    position: absolute;
    background-image: url(../images/p-bg.png);
    width: 104px;
    height: 71px;
    background-repeat: no-repeat;
    z-index: -1;
    left: 30%;
    top: 80px;
}

.test-header {
    padding: 0px 0 30px;
}

.test-header h3 {
    font-size: 100.19px;
    line-height: 159.69px;
    color: #343434;
}

.testi-head p {
    width: 45%;
    margin: 0 auto;
}

.testi-head h2 {
    font-size: 78px;
}


/* testi end */


/*footer*/

footer.footer-sec {
    background: #272727;
    position: relative;
    padding-bottom: 40px;
    padding-top: 50px;
    background: url(../images/footer-bk.png);
    background-size: cover;
}

.footer-box h4 {
    font-size: 28px;
    color: rgb(255, 255, 255);
    line-height: 30px;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    /* background: -webkit-linear-gradient(#690a64, #873f83); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.footer-box p {
    font-size: 15px;
    color: rgb(255, 255, 255);
    /* font-family: "Montserrat Alternates", sans-serif; */
    line-height: 25px;
    width: 85%;
}

ul.footer-link-list li a {
    font-size: 13px;
    color: rgb(210, 210, 210);
    line-height: 30px;
    letter-spacing: 1px;
}

ul.footer-link-list.quick-link {
    column-count: 2;
}

ul.footer-link-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-transform: capitalize;
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0px;
}

ul.footer-link-list li a {
    transition: 0.5s ease-in-out;
}

ul.footer-link-list li a:hover {
    padding-left: 5px;
    color: #917668;
}

ul.footer-link-list i {
    font-size: 20px;
    color: #ffffff;
}

.product-box:hover {
    transform: scale(0.9);
    box-shadow: 0 0 10px #00000012;
}

.footer-box::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    right: -5px;
    top: 0px;
    bottom: auto;
    transition: 0.5s ease-in-out;
    z-index: 1;
}

.footer-box:hover::before {
    height: 295px;
    z-index: 1;
}

ul.bottom-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 20px;
}

ul.bottom-list i {
    font-size: 24px;
    color: rgb(255, 255, 255);
    border: 1px solid;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bottom-text p {
    font-size: 11px;
    color: rgb(255, 255, 255);
    text-align: end;
    /* font-family: "Montserrat Alternates", sans-serif; */
}

.bottom-imag {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bottom-nav-box .row {
    align-items: center;
}

.bottom-nav-box {
    border: 2px solid rgb(167 167 167 / 18%);
    padding: 12px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 64px;
    background: #232323;
}

ul.bottom-list i:hover {
    background: #e3d3cf;
    color: #917668;
}

.footer-box.box-center {
    margin-left: 7%;
}

.footer-box.noborder.wow.slideInRight {
    margin-left: 7%;
}


/*.footer-box.box-center {
    margin-left: 18%;
}*/

.footer-box {
    position: relative;
    padding-top: 20px;
}

.footer-box::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 345px;
    right: -5px;
    top: -50px;
    bottom: auto;
    background: rgb(167 167 167 / 18%);
}

.noborder::after {
    display: none;
}

.noborder::before {
    display: none;
}

.bottom-nav-box:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.bottom-nav-box:hover:after {
    width: 100%;
}


/*ul.footer-link-list.quick-link {
  column-count: 2;
}*/

html {
    overflow-x: hidden;
}


/*inner pages*/


/*inner pages*/

.banner-image {
    position: relative;
    z-index: 2;
}

.title-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30%;
    /*  background: #b7040461;*/
    display: flex;
    align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    /* height: 550px;
    object-fit: cover;*/
}

.title-new h1 {
    font-size: 170px;
    line-height: 200px;
    margin: 0;
}

.abt-desp a {
    color: #000;
    font-weight: 600;
}


/*contactus page
*/


/*.contact_page {
    position: relative;
    overflow: hidden;
    padding: 80px 0 10px;
}
*/


/*.contact_form_sec {
    position: relative;
    padding: 70px 0;
}*/

.contact_form p {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    font-weight: 500;
    margin: 0 0 20px;
}

.contact_detail_box figure img {
    margin: auto;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.contact_detail_box h2 {
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-weight: 800;
    margin: 20px 0 10px 0;
    transition: 0.5s ease-in-out;
}

.contact_detail_box p {
    font-size: 14px;
    line-height: 25px;
    color: #636363;
    margin: 0;
    /* height: 40px; */
    transition: 0.5s ease-in-out;
    /* font-family: 'Roboto-Regular'; */
}

.contact_detail_box {
    padding: 30px;
    border-radius: 0;
    transition: 0.5s ease-in-out;
    /* box-shadow: 0px 0px 10px #ff0000; */
    /* background-color: #ff0000; */
    height: 237px;
    border: solid #917668 2px;
}

.contact_detail_box i {
    color: #0470b2;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact_form h1 {
    color: #0178bd;
}

img.contact-dot-bottom {
    position: absolute;
    z-index: 2;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
}

.contact_detail_box img {
    margin: 0 0 20px;
}

.contact_detail_box:hover * {
    color: #fff;
}

.contact_detail_box:hover {
    background: #917668;
    border-radius: 0 20px 0 20px;
}

.contact_detail_box:hover img {
    filter: brightness(150.5);
}

.contact_detail_box h4 {
    font-size: 28px;
    line-height: 25px;
    color: #917668;
    font-weight: 600;
    margin: 0 0 10px;
}

a.btn.btn_badam.cntbtn {
    height: 48px;
    width: 100%;
    border-radius: 0;
    border: none;
    background: #ff0000;
    /* border-bottom: solid 5px #992729; */
    /* border-bottom-color: transparent; */
    /* border-bottom-style: groove; */
    font-size: 20px;
    color: white;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Railway';
}

.contact_detail_box img {
    height: 56px;
    width: 56px;
}

.get-form label {
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-heading-inner h2 {
    font-size: 62px;
    line-height: 70px;
}

.contact-heading-inner p {
    /* color: #636363; */
    /* font-size: 14px; */
    /* line-height: 25px; */
    /* font-family: 'Roboto-Regular'; */
    width: 41%;
    margin: 0 auto;
    padding-bottom: 4%;
}

.contact-button {
    display: flex;
    justify-content: center;
}

.contact-button a.btn10 {
    width: 15%;
    margin-top: 3%;
}

.contact-button button.btn10 {
    width: 15%;
    margin-top: 3%;
    border: none;
}

.get-form textarea.form-control {
    min-height: calc(11.5em + 0.75rem + 2px);
}


/*CONTACT END*/


/*Cart-Page*/


/*section.add-to-cart {

    padding: 5% 0;

  }  
*/

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 49px;
    border-radius: 0;
    border: none;
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    margin-top: 24px;
    background: #f7f7f7;
    border: solid 0.5px gray;
}

.add-to-cart a {
    font-size: 18px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #666666;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Montserrat';
    line-height: 18px;
}

.add-to-cart h4 {
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    text-align: center;
    font-family: 'Montserrat';
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}

.total-section {
    border: solid 0.5px #f1f1f1;
    padding: 27px 30px;
    background: #f9f9f9;
}

.total-section ul {
    font-family: 'Poppins';
    list-style: none;
    margin-bottom: 0;
}

.total-section li {
    font-size: 24px;
    padding-bottom: 28px;
    color: #000;
    font-family: 'Montserrat';
    /* font-weight: 600; */
    /* font-weight: 100; */
}

li.color-change {
    color: #222222;
    text-transform: capitalize;
    /* font-weight: 400; */
    font-size: 32px;
    text-transform: uppercase;
    font-family: 'courteous';
}

.total-section li.color-change span {
    font-weight: 400;
    font-size: 32px;
    color: #917668;
    font-family: 'courteous';
}

.total-section li span {
    float: right;
}

.ship-estimate {
    padding: 20px 27px 20px 27px;
    margin-top: 30px;
    border: solid 0.5px #f1f1f1;
    padding: 27px 30px;
    background: #f9f9f9;
}

.ship-estimate li {
    color: #222222;
    font-size: 32px;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: 'courteous';
    margin-bottom: 28px;
}

.ship-estimate ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    font-family: 'Poppins';
    list-style: none;
}

.ship-estimate .grey-style {
    color: #000000;
    font-size: 20px;
    font-family: 'Montserrat';
    /* font-weight: 400; */
}

.proceed a {
    color: #000;
    text-align: left;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    /* background: #000000; */
    font-family: 'Montserrat-Light';
    text-transform: uppercase;
}

.proceed .checkout-btn {
    padding: 23px;
    width: 100%;
    font-size: 18px;
    margin-top: 4px;
    border-radius: 0px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background: #30d5c8;
    font-family: 'Montserrat';
    font-weight: 400;
    background: #917668;
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 2px solid #cecece;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
}

.or-amazon p {
    font-size: 21px;
    position: absolute;
    background: #fff;
    top: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    padding: 3px 20px;
    color: #394136;
    display: block;
    text-transform: uppercase;
    /* border: 2px solid #cecece; */
    font-family: 'Montserrat';
    /* font-weight: 500; */
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.product-img {
    display: inline-block;
    width: 100%;
    /*
    padding: 10px 10px;

    border: 1px solid #000;*/
}

.product-img img {
    width: 100%;
}

.table> :not(:last-child)> :last-child>* {
    /* border-bottom-color: currentColor; */
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    /* background-color: #ef165d; */
    padding: 16px 15px;
    /* text-transform: uppercase; */
    font-family: 'courteous';
}

.table-space h3 {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Montserrat';
    color: #666666;
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c2c2c2;
    border-style: solid;
    border-width: 0;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    background-color: #30d5c8;
    color: #fff;
    background: #917668;
}

.table-space h6 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Montserrat';
    color: #666666;
}

.add-to-cart thead {
    background: #917668;
}

.space span {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #666666;
    line-height: 24px;
}

.table> :not(caption)>*>* {
    padding: 1.5rem 0.5rem;
}


/*product-detail-page*/

.pr-img img {
    width: 100%;
}

.pr-heading {
    display: flex;
    justify-content: space-between;
    /* margin-top: 60px; */
    align-items: center;
}

.pr-star i.fas.fa-star {
    color: #ffba00;
    /* margin-top: 35px; */
    margin-bottom: 35px;
}

.pr-heading h2 {
    /* color: #000000; */
    /* font-family: 'Alice-Regular'; */
    font-size: 39px;
    margin: 0;
}

.pr-heading h3 {
    color: #222222;
    /* font-family: 'Alice-Regular'; */
    font-size: 34px;
    margin: 0;
}

.pr-star p {
    line-height: 26px;
    /* font-family: Avenir-Medium; */
    font-size: 13px;
    color: #636363;
}

.skin-7 .num-in {
    float: left;
    width: 138px;
}

.skin-7 .num-in span {
    font-size: 15px;
    /* text-align: center; */
    /* display: block; */
    width: 23px;
    height: 23px;
    float: left;
    cursor: pointer;
    transition: all 0.3s;
    border: solid 1px;
    border-radius: 37px;
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-7 .num-in input {
    border: none;
    float: left;
    width: 53px;
    line-height: 34px;
    text-align: center;
    border: solid 1px grey;
}

.quantity {
    display: flex;
    margin-top: 60px;
}

.quantity small {
    font-size: 18px;
    margin-right: 20px;
    font-family: 'Montserrat';
    font-weight: 900;
}

.quantity small {
    font-size: 20px;
    margin-right: 20px;
}

.skin-7 .num-in2 span {
    font-size: 15px;
    text-align: center;
    display: block;
    width: 23px;
    height: 23px;
    float: left;
    cursor: pointer;
    border: solid 1px;
    border-radius: 37px;
    margin-left: 15px;
    margin-right: 0px;
    margin-top: 4px;
    background: #e86127;
    border-color: #e86127;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.delivery a {
    /* border: solid 1px gray; */
    background: #917668;
    color: white;
    width: 137px;
    position: absolute;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
}

.delivery p {
    display: inline-block;
    font-size: 16px;
    font-family: 'Avenir-Medium';
    color: #636363;
}

.delivery {
    /* margin-top: 50px; */
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #917668;
    font-size: 19px;
    font-family: 'courteous';
    text-transform: inherit;
}

.nav-pills .nav-link {
    border-radius: 0rem;
    background: #f1f1f1;
    margin-left: 10px;
    font-size: 19px;
    color: black;
    font-family: 'courteous';
    /* font-weight: 800; */
    text-transform: inherit;
}

.nav-link {
    padding: 1.1rem 5rem;
    color: #000;
}

.tab-content>.active {
    display: block;
    font-size: 18px;
    color: #636363;
    font-family: 'Avenir-Medium';
    line-height: 27px;
    font-weight: 100;
}


/*--------------*/

.Quantity-detail p {
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 22px;
    color: #394136;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px;
}

.Quantity-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    cursor: pointer;
}

.Quantity-detail .counter {
    /*width: 36px;*/
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    /* margin-top: 20px; */
    gap: 10px
}

.Quantity-detail .counter input {
    width: 75px;
    border: 0;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    /* background: #0052cc; */
    color: #000;
    appearance: none;
    outline: 0;
    border: solid 0.5px #c5c5c5;
    /* border-top: unset; */
    /* border-bottom: unset; */
}

.Quantity-detail span.down {
    border: solid 0.5px;
    border-radius: 16px;
    height: 22px;
    width: 22px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.Quantity-detail span.up {
    border: solid 0.5px;
    border-radius: 16px;
    height: 27px;
    width: 27px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #917668;
    color: white;
}


/*product-detail-slider*/

.productdetailsmallportion {
    position: relative;
    top: 0;
    z-index: 99;
}

.productdetailsmallportion img {
    margin: auto;
    width: 100%;
    /* border: 2px solid #E1E1E1; */
    height: 100%;
    background: #ffff;
    box-shadow: 0 0 10px #0000001f;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
}

.productdetailsmallportion img {
    margin: auto;
    width: 120px;
    /* border: 2px solid #E1E1E1; */
    height: 100%;
    background: #ffff;
    box-shadow: 0 0 10px #0000001f;
    padding: 10px 10px;
    position: relative;
    z-index: 999999999999999;
}

.productdetailnav .slick-list.draggable {
    margin-top: -60px;
}

.productdetailportion>img {
    object-fit: contain;
    height: 600px;
    width: 100%;
    border: 1px solid #917668 !important;
}

.productdetailnav .slick-list.draggable {}

.productdetailnav .slick-list.draggable .productdetailsmallportion img {
    height: 100px;
    object-fit: contain;
    border: 1px solid #917668;
    width: 100%;
}

.productdetailnav .slick-list.draggable .slick-slide {
    margin: 0 5px;
}

.productdetailnav {
    width: 94%;
    margin: 0 auto;
}

/*checkout-page*/

.bill-heading h1 {
    font-size: 28px;
    /* font-weight: 100; */
    /* color: #0b2240; */
    line-height: 24px;
}

.fm .form-group {
    margin-top: 0px;
}

.bkk .box {
    border: solid 0.5px#b7b7b7;
    padding: 30px 30px 30px 30px;
    /* color: #b7b7b7; */
    /* height: 100%;*/
}

.bk1 {
    border: solid 0.5px#b7b7b7;
    padding: 30px 30px 30px 30px;
}

.prod-det h2 {
    font-size: 24px;
    margin-top: 20px;
    /* font-family: 'Alice-Regular'; */
    margin: 0;
    font-weight: 100;
    /* color: black; */
}

.prod-det1 p {
    margin-bottom: 20px;
}

.prod-det1 p {
    margin-bottom: 20px;
    color: #7c7c7c;
    font-size: 12px;
    font-weight: 700;
}

span.prices {
    float: right;
    color: #7c7c7c;
    font-size: 14px;
    font-family: 'Montserrat-Light';
}

.prod-det1 a {
    color: #7c7c7c;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.prod-det {
    border-bottom: solid 1px;
}

.prod-det {
    border-bottom: solid 1px #cccc;
    padding-bottom: 12px;
}

.tot h2 {
    font-size: 24px;
    /* font-family: 'Alice-Regular'; */
    /* color: black; */
    margin: 0;
}

.prices b {
    font-size: 24px;
    color: #222222;
    font-family: 'courteous';
    font-weight: 500;
}

.prod-det1 {
    margin-top: 16px;
}

.ship h2 {
    font-size: 24px;
    /* font-family: 'Alice-Regular'; */
    color: #222222;
    margin: 0;
}

.form-check {
    margin-bottom: 1.125rem;
}

.form-check .form-check-input:checked {
    background-color: #917668;
    /* border-color: #0000c2; */
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #917668;
}

.total {
    border-bottom: solid 1px #cccc;
    border-top: solid 1px #ccc;
    padding-bottom: 10px;
    padding-top: 20px;
}

.total h2 {
    font-size: 24px;
    /* font-family: 'Alice-Regular'; */
    color: #222222;
    margin: 4px;
    /* font-weight: 700; */
    /* background: linear-gradient(to right, #869f81, #4c7063, #61817a); */
    /* -webkit-text-fill-color: transparent; */
    /* -webkit-background-clip: text; */
}

.form-check p {
    margin-top: 12px;
    margin-left: 5px;
    color: #7c7c7c;
    font-size: 14px;
    /* line-height: 21px; */
}

.place-ord {
    width: 100%;
    text-align: center;
    padding: 12px 6px 12px 6px;
    background: #917668;
    height: 53px;
    margin-right: 25px;
    /* border-radius: 43px; */
    font-size: 19px;
    /* font-family: 'Roboto-Regular'; */
    font-weight: 100;
    /* text-transform: uppercase; */
    /* background: linear-gradient(to right, #8ba384 0%, #698872 50%, #43695e 100%); */
}

.place-ord a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Montserrat';
}

.po {
    border-top: solid 1px #ccc;
    padding-top: 18px;
    width: 100%;
}

.fm label {
    margin-top: 13px;
    font-family: 'Roboto-Regular';
    color: #7c7c7c;
}

.fm input.form-control {
    margin-top: 5px;
    font-family: 'Montserrat';
    font-size: 14px;
    margin-bottom: 15px;
    padding: 12px;
}

.form-check label.form-check-label {
    margin-left: 8px;
    /* font-family: 'Montserrat-Light'; */
    font-size: 14px;
    color: #7c7c7c;
    /* font-weight: 800; */
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}


/* product tabs css */

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #000;
    font-size: 24px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.prd-commets .testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.prd-commets .testimonial-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prd-commets .testimonial-box-container {
    display: block;
}

.prd-commets .testimonial-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.prd-commets .prd-commets .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.prd-commets .profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
    margin-right: 20px;
}

.prd-commets .profile {
    display: flex;
    align-items: center;
}

.prd-commets .name-user {
    display: flex;
    flex-direction: column;
}

.prd-commets .name-user strong {
    color: #000000;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.prd-commets .name-user span {
    color: #000000;
    font-size: 0.8rem;
}

.prd-commets .reviews {
    color: #f9d71c;
}

.prd-commets .box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.prd-commets .client-comment p {
    font-size: 0.9rem;
    color: #000000;
    text-align: left;
}

.prd-commets .testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 25px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.rev-btn h2 {
    font-size: 28px;
    font-family: 'Poppins';
    line-height: 40px;
}

.video-images {
    margin-bottom: 30px;
}


/*event detail page
*/

ul.evt-det {
    font-size: 14px;
    font-family: 'Montserrat';
    list-style: disc;
    margin: 24px;
}

ul.evnt-desp {
    list-style: disc;
    margin: 20px;
    font-size: 14px;
    font-family: 'Montserrat';
}

.evt-detail-head a {
    color: #000;
    font-weight: 700;
}

.inner-event-detail-txt p {
    font-size: 19px;
    line-height: 20px;
    margin: 0;
    font-weight: 600;
}

.evt-detail-head h3 {
    font-family: 'courteous', Sans-Serif;
    font-size: 42px;
    line-height: 50px;
    color: #464236;
    font-weight: 500;
    margin: 0 0 10px;
}

.evt-detail-head h6 {
    /* border: solid; */
    width: 41%;
    background: #dacac5ab;
    padding: 10px;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #464236;
}

.inner-evet-img img {
    width: 100%;
}


/*product page*/

.prod-detail {
    background: #222222;
    padding: 18px;
    margin-top: -70px;
    z-index: 2;
    position: relative;
    border-radius: 5px;
}

.prod-detail h6 {
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    line-height: 18px;
}

.prod-detail p {
    color: #fff;
}

span.prod-price {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 20px;
}

.prod-img img {
    width: 100%;
}

.cart {
    position: absolute;
    bottom: 25px;
    background: #917668;
    padding: 20px;
    z-index: 2;
    right: 35px;
    border-radius: 41px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    border: solid 10px #f7f7f1;
    /* padding: 17px; */
}

.cart a {
    color: #fff;
}

.prod-img {
    position: relative;
    border: solid 1px #917668;
    padding: 20px 20px 0;
    border-radius: 7px;
    margin-bottom: 20px;
}

span.icon-1 i {
    color: #f9a74f;
    font-size: 14px;
}

span.icon-1 {
    display: flex;
    align-items: baseline;
    margin: 20px 0 0;
}

.related-prod-head h2 {
    font-size: 78px;
}

.related-prod-head {
    text-align: center;
    margin: 0 auto;
    width: 50%;
}

.icons-blog {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
}

.icons-blog img {
    height: 19px !important;
    width: 18px !important;
}

span.date-blog {
    margin-left: 0%;
    color: #8f8e8e;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    /* text-transform: uppercase; */
}

.blog-detail p {
    color: #a1a1a0;
    font-size: 16px;
}

.blog-detail h6 {
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 23px;
    color: #333333;
    font-weight: 600;
    margin: 10px 0;
}

.blog-detail h5 {
    color: #917668;
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    font-family: 'Montserrat', serif;
}

.blog-detail {
    /* border: solid; */
    background: #fff;
    width: 93%;
    margin: 0 auto;
    margin-top: -47px;
    position: relative;
    z-index: 0;
    padding: 25px;
    box-shadow: 0 0 4px gray;
}

.blog-img {
    margin-bottom: 10%;
}

.blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blgdetail-text h3 {
    font-family: 'courteous', Sans-Serif;
    font-size: 61px;
    line-height: 65px;
    color: #333333;
    font-weight: 500;
    margin: 0 0 10px;
}

.blgdetail-text h5 {
    color: #917668;
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    font-family: 'Montserrat', serif;
}

span.txt-clr {
    color: #a1a1a0;
    font-size: 16px;
    font-family: 'Montserrat';
}


/*login*/

.f5 .form-control {
    border: 1px solid #b2b9bf;
    line-height: 40px;
    margin-top: 21px;
    font-family: 'Poppins';
    border-radius: 0;
}

.f5 button.btn.btn-primary {
    width: 100%;
    background: #917668;
    margin-top: 21px;
    /* margin-bottom: -27px; */
    border-radius: 0px;
    border: none;
    height: 50px;
    font-family: 'Montserrat';
    font-size: 17px;
    border-radius: 0;
    /* background: linear-gradient(to bottom, #8ba384 0%, #698872 50%, #43695e 100%); */
}

.f4 .form-control {
    border: 1px solid #b2b9bf;
    line-height: 40px;
    margin-top: 21px;
    margin-bottom: 12px;
    border: 1px solid #b2b9bf;
    font-family: Poppins;
    border-radius: 0px;
}

.bder .f5 {
    /* border: solid 1px #0000005e; */
    margin-top: 24px;
    padding: 20px 20px 50px 20px;
    /* background: #fbfbfb; */
    box-shadow: 0 0 6px 0px gray;
}


/*.bder .f5:hover {
    background: #fbfbfb;
}

.bder .f5 h2:hover {
    color: white;
}

.bder .f5:hover button.btn.btn-primary {
    background: #d9b426;
}
.bder .f5:hover label.form-check-label{
    color: white;
}
.bder .f5:hover  a{
    color: white;
}
*/

.f5 input#exampleCheck1 {
    margin-top: 20px;
}

.f5 label.form-check-label {
    color: #b6b5b5;
    margin-top: 13px;
    margin-left: 0px;
    /* font-family: 'Georgia'; */
}

.sub button.btn.btn-primary {
    background: #917668;
    width: 100%;
    margin-top: 22px;
    border: none;
    height: 50px;
    border-radius: 0;
    font-size: 17px;
    font-family: 'Montserrat';
    /* background: linear-gradient(to bottom, #8ba384 0%, #698872 50%, #43695e 100%); */
}

.bdr1 .f4 {
    /* border: solid 1px #0000005e; */
    padding: 20px 20px;
    margin-top: 24px;
    /* background: #fbfbfb; */
    box-shadow: 0 0 6px 0px gray;
}


/*.bdr1 .f4:hover {
    background: #fbfbfb;
}

.bdr1:hover h2 {
    color: white;
}
.bdr1:hover p {
    color: white;
}
.bdr1:hover .f4 a {
    color: white;
}

.f4:hover .sub button.btn.btn-primary {
    background: #d9b426;
}
.bder1 .f4:hover label.form-check-label{
    color: white;
}*/


/*.bder1 .f4:hover  a{
    color: white;
}*/

.f5 h2 {
    text-align: center;
    color: #0b0b0b;
    font-size: 45px;
    /* font-family: 'libel-suit-rg'; */
}

.f4 h2 {
    text-align: center;
    color: #0b0b0b;
    font-size: 45px;
    /* font-family: 'libel-suit-rg'; */
}

.f4 a {
    color: #8da585;
    /* margin-left: 145px; */
    font-family: 'Roboto-Regular';
    text-decoration: underline;
    /* position: absolute; */
    /* right: 17px; */
    font-size: 16px;
}

.f5 a {
    display: inline;
    margin-top: 16px;
    float: right;
    color: #b6b5b5;
    text-decoration: none;
    /* font-family: 'Georgia'; */
    /* font-weight: 800; */
    font-size: 13px;
}

.f4 p {
    /* font-family: 'Georgia'; */
    font-size: 16px;
    /* font-weight: 700; */
    color: #b6b5b5;
}

.f4 {
    position: relative;
}

.form-check-input:checked {
    background-color: #992729;
    border-color: #992729;
}

html {
    overflow-x: hidden;
}

.service-image {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
}

.pricing-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section.yoga-wrap h2 {
    color: #000;
    font-size: 55px;
}

.pricing-box li {
    line-height: 23px;
    margin-bottom: 10px;
    list-style: circle;
    margin-left: 15px;
}

.pricing-box h5 {
    color: #000;
    font-family: 'Montserrat', serif;
}

.yoga-btm p {
    font-size: 18px;
}

section.about-video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

section.about-video {
    padding-bottom: 80px;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 30%;
    left: 70%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 75px;
    height: 75px;
    background: #917668bd;
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #9176686e;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 19px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    top: 10px;
    left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/* new css */


.yoga-classes .yoga_btns_wrpr {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
    width: 49%;
    background: #f8f6f6;
    margin: 0 auto;
    height: 80px;
    display: flex;
    border-radius: 7px;
    font-size: 16px;
    color: #000;
    gap: 5px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 1px 1px #917668;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.2;
    justify-content: center;
    font-weight: bold;
}

.yoga-classes .yoga_btns_wrpr>.yoga_btn_new>a {
    color: #917668;
    text-decoration: underline;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.yoga-classes .yoga_btns_wrpr>.yoga_btn_new:hover {
    background: #917668;
    color: #fff;
}

.yoga-classes .yoga_btns_wrpr>.yoga_btn_new:hover>a {
    color: #fff;
}

.event_box_new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    box-shadow: 0 0 1px 1px #917668;
    border-radius: 10px;
    background: #9176681c;
    position: relative;
}

.event_box_new>img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: contain;
}

.event_box_new>.event_box_new_textt>h3 {
    color: #000;
    font-size: 20px;
    line-height: 1.4;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-bottom: 20px;
}

.event_box_new>.event_box_new_textt>span {
    font-size: 16px;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 500;
    display: block;
    line-height: 1.4;
    margin-bottom: 20px;
}

.event_box_new>.event_box_new_textt>ul>li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.event_box_new>.event_box_new_textt>ul>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.event_box_new>.event_box_new_textt {
    height: 100%;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 90%;
}

.event_box_new>.event_box_new_textt::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.event_box_new>.event_box_new_textt::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.event_box_new>.event_box_new_textt::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #917668;
}

.event_box_new>.event_box_new_textt>a.btn10 {
    position: absolute;
    top: 10px;
    width: fit-content;
    margin-left: auto;
    right: 20px;
    display: flex;
    gap: 5px;
    border-radius: 5px;
}

.event_box_new>.event_box_new_textt>a.btn10>span {
    text-decoration: underline;
}

.event_box_new>.event_box_new_textt>p {
    width: 70%;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {
    .footer-box h4 {
        font-size: 28px;

        margin-bottom: 10px;


    }

    ul.bottom-list {

        gap: 10px;
    }

    ul.bottom-list i {
        font-size: 24px;

        height: 35px;
        width: 35px;

        font-size: 16px;
    }

    ul.footer-link-list li a {

        font-size: 12px;
    }

    ul.footer-link-list i {
        font-size: 16px;

    }

    .video-play-button {

        top: 50%;
    }

    .video-play-button:after {

        width: 70px;
        height: 70px;

    }

    .getintouch-form::before {

        height: 435px;

    }

    .getintouch-form textarea {

        margin-bottom: 20px;

        height: 70px;
    }

    .getintouch-form input {

        margin-bottom: 30px;

    }

    .mar {

        padding: 23px 30px 0 231px;
    }

    .getintouch-form::after {
        height: 374px;
        width: 200px;
        top: 20px;
        background-size: cover;
    }

    ul.cnt-list li a {
        font-size: 10px;

        line-height: 35px;
    }

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
        width: 45%;

        height: 70px;

        font-size: 12px;

        gap: 0px;

    }

    .evt-btn a.btn10 {
        width: 60%;
    }

    .sec-padding {

        padding-right: 0;
    }

    .yoga-vid-head {
        margin-bottom: 20px;
    }

    section.upcoming-evet .row {
        justify-content: center;
    }

    .yoga-vid-head {

        width: 90%;

    }

    section.yoga-video .row {
        padding-top: 20px !important;
    }

    .video-images img.vid1 {

        height: 330px;

    }

    button.carousel-control-prev::before {

        height: 45px;
        width: 45px;

    }

    .event-detail {
        margin: 10px 0;
    }


    .event-box {

        padding: 20px 15px 2px;


        margin-top: 10px;
    }

    p {

        font-size: 12px !important;
        line-height: 20px !important;

    }

    section.upcoming-evet .row {
        padding-top: 10px !important;
    }


    .up-evt-head p {

        width: 100%;
    }


    h3 {

        font-size: 50px;
        line-height: 50px;

        margin: 0 0 5px;
    }

    section.aboutus .row {
        align-items: center;
    }

    button.carousel-control-next::before {

        height: 45px;
        width: 45px;
    }

    .btn10 {

        padding: 5px 5px;
        border-radius: 0px;
        font-size: 12px;

        height: 45px;
    }

    .menuSec ul li a {
        padding: 8px 5px;
        font-size: 9px;
    }

    ul.footer-link-list li {

        gap: 20px;
        margin: 5px 0px;
    }

    .bottom-nav-box {

        padding: 12px 20px;

        margin-top: 35px;
        background: #232323;
    }

    img.gal-4,
    img.gal-6 {
        height: 205px;
    }

    img.gal-3,
    img.gal-2 {
        height: 200px;
    }

    img.gal-7,
    img.gal-9 {
        height: 215px;
    }

    ul.cnt-list i {
        font-size: 15px;
        margin: 0 10px;

    }

    .items h2 {
        font-size: 35px !important;
        margin-bottom: 0 !important;
        line-height: 35px !important;
    }

    .items {
        padding-right: 10px !important;
    }

    .awrd-detail {

        margin-top: 10px;
    }

    .abt-head {
        font-size: 10px;
        line-height: 18px;
    }

    .items p {
        font-size: 10px !important;
        width: 100%;
    }

    section.inner-aboutus .row {
        align-items: baseline;
    }

    .event_box_new>.event_box_new_textt>h3 {
        width: 75%;
        font-size: 15px;

    }

    .bder .f5 {

        padding: 20px 20px 20px 20px;

    }

    .f5 .form-control {

        margin-top: 10px;

    }

    .sub button.btn.btn-primary {

        margin-top: 10px;

    }

    .f4 .form-control {

        margin-top: 5px;

    }

    .contact-heading-inner {
        margin-bottom: 20px;
    }

    .pricing-box li {

        font-size: 14px;
    }

    .pricing-box h5 {

        margin-bottom: 10px !important;
    }

    section.yoga-wrap h2 {

        font-size: 35px !important;
        margin-bottom: 0 !important;
    }

    .service-image {
        width: 100%;
        height: 400px;

    }

    .contact_detail_box h4 {
        font-size: 25px;

    }

    .contact_detail_box img {
        height: 45px;
        width: 45px;
    }

    .contact_detail_box {
        padding: 15px;

        height: 175px;

    }

    .prod-img {

        padding: 10px 10px 0;

    }

    .cart {

        padding: 18px;

        height: 40px;
        width: 40px;

        border: solid 5px #F7F7EF;

    }

    .prod-detail p {

        line-height: 18px !important;
    }

    .prod-detail h6 {

        line-height: 20px;
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .prod-detail {

        padding: 10px;
        margin-top: 10px;

    }

    .event_box_new ul {
        width: 77%;
    }

    .event_box_new {
        margin-top: 20px !important;
    }

    .event_box_new_textt p span {
        font-size: 12px !important;
    }

    .event_box_new ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .f5 h2 {

        font-size: 35px !important;
    }

    .f4 h2 {

        font-size: 35px !important;
    }

    .event_box_new_textt p {
        margin-bottom: 5px !important;
    }

    .video-thumbnail.position-relative img {
        height: 220px;
    }

    section.inner-aboutus .row {
        padding-top: 20px !important;
    }

    img.gal-11,
    img.gal-12,
    img.gal-13 {
        height: 200px;

    }

    img.gal-1,
    img.gal-10,
    img.gal-8 {
        height: 90px;
    }

    .bottom-text p {
        margin-bottom: 0;
    }

    footer.footer-sec {
        background: #272727 !important;
        padding-bottom: 10px;
        padding-top: 30px;
    }

    .title-new h1 {
        font-size: 50px;
        line-height: 50px;
        margin: 0;
    }

    section.about-video {
        padding-bottom: 50px;
    }

    .abt-desp {
        font-size: 12px;
        line-height: 20px;
    }

    section.about-video video {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

    h2 {

        font-size: 50px !important;
        line-height: 50px !important;

    }

    .pb-8 {
        padding-bottom: 30px;
    }

    .pt-8 {
        padding-top: 30px;
    }


}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    .footer-box h4 {
        font-size: 28px;

        margin-bottom: 10px;


    }

    ul.bottom-list {

        gap: 10px;
    }

    ul.bottom-list i {
        font-size: 24px;

        height: 35px;
        width: 35px;

        font-size: 16px;
    }

    ul.footer-link-list li a {

        font-size: 12px;
    }

    ul.footer-link-list i {
        font-size: 16px;

    }

    .video-play-button {

        top: 50%;
    }

    .video-play-button:after {

        width: 70px;
        height: 70px;

    }

    .getintouch-form::before {

        height: 435px;

    }

    .getintouch-form textarea {

        margin-bottom: 20px;

        height: 70px;
    }

    .getintouch-form input {

        margin-bottom: 30px;

    }

    .mar {

        padding: 23px 30px 0 231px;
    }

    .getintouch-form::after {
        height: 374px;
        width: 200px;
        top: 20px;
        background-size: cover;
    }

    ul.cnt-list li a {
        font-size: 10px;

        line-height: 35px;
    }

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
        width: 45%;

        height: 70px;

        font-size: 12px;

        gap: 0px;

    }

    .evt-btn a.btn10 {
        width: 60%;
    }

    .sec-padding {

        padding-right: 0;
    }

    .yoga-vid-head {
        margin-bottom: 20px;
    }

    section.upcoming-evet .row {
        justify-content: center;
    }

    .yoga-vid-head {

        width: 90%;

    }

    section.yoga-video .row {
        padding-top: 20px !important;
    }

    .video-images img.vid1 {

        height: 330px;

    }

    button.carousel-control-prev::before {

        height: 45px;
        width: 45px;

    }

    .event-detail {
        margin: 10px 0;
    }


    .event-box {

        padding: 20px 15px 2px;


        margin-top: 10px;
    }

    p {

        font-size: 12px !important;
        line-height: 20px !important;

    }

    section.upcoming-evet .row {
        padding-top: 10px !important;
    }


    .up-evt-head p {

        width: 100%;
    }


    h3 {

        font-size: 50px;
        line-height: 50px;

        margin: 0 0 5px;
    }

    section.aboutus .row {
        align-items: center;
    }

    button.carousel-control-next::before {

        height: 45px;
        width: 45px;
    }

    .btn10 {

        padding: 5px 5px;
        border-radius: 0px;
        font-size: 12px;

        height: 45px;
    }

    .menuSec ul li a {
        padding: 8px 5px;
        font-size: 11px;
    }

    ul.footer-link-list li {

        gap: 20px;
        margin: 5px 0px;
    }

    .bottom-nav-box {

        padding: 12px 20px;

        margin-top: 35px;
        background: #232323;
    }

    img.gal-4,
    img.gal-6 {
        height: 285px;
    }

    img.gal-3,
    img.gal-2 {
        height: 320px;
    }

    img.gal-7,
    img.gal-9 {
        height: 355px;
    }

    ul.cnt-list i {
        font-size: 15px;
        margin: 0 10px;

    }

    .items h2 {
        font-size: 35px !important;
        margin-bottom: 0 !important;
        line-height: 35px !important;
    }

    .items {
        padding-right: 10px !important;
    }

    .awrd-detail {

        margin-top: 10px;
    }

    .abt-head {
        font-size: 10px;
        line-height: 18px;
    }

    .items p {
        font-size: 10px !important;
        width: 100%;
    }

    section.inner-aboutus .row {
        align-items: baseline;
    }

    .event_box_new>.event_box_new_textt>h3 {
        width: 75%;
        font-size: 15px;

    }

    .bder .f5 {

        padding: 20px 20px 20px 20px;

    }

    .f5 .form-control {

        margin-top: 10px;

    }

    .sub button.btn.btn-primary {

        margin-top: 10px;

    }

    .f4 .form-control {

        margin-top: 5px;

    }

    .contact-heading-inner {
        margin-bottom: 20px;
    }

    .pricing-box li {

        font-size: 14px;
    }

    .pricing-box h5 {

        margin-bottom: 10px !important;
    }

    section.yoga-wrap h2 {

        font-size: 35px !important;
        margin-bottom: 0 !important;
    }

    .service-image {
        width: 100%;
        height: 400px;

    }

    .contact_detail_box h4 {
        font-size: 25px;

    }

    .contact_detail_box img {
        height: 45px;
        width: 45px;
    }

    .contact_detail_box {
        padding: 15px;

        height: 175px;

    }

    .prod-img {

        padding: 10px 10px 0;

    }

    .cart {

        padding: 18px;

        height: 40px;
        width: 40px;

        border: solid 5px #F7F7EF;

    }

    .prod-detail p {

        line-height: 18px !important;
    }

    .prod-detail h6 {

        line-height: 20px;
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .prod-detail {

        padding: 10px;
        margin-top: 10px;

    }

    .event_box_new ul {
        width: 77%;
    }

    .event_box_new {
        margin-top: 20px !important;
    }

    .event_box_new_textt p span {
        font-size: 12px !important;
    }

    .event_box_new ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .f5 h2 {

        font-size: 35px !important;
    }

    .f4 h2 {

        font-size: 35px !important;
    }

    .event_box_new_textt p {
        margin-bottom: 5px !important;
    }

    .video-thumbnail.position-relative img {
        height: 340px;
    }

    section.inner-aboutus .row {
        padding-top: 20px !important;
    }

    img.gal-11,
    img.gal-12,
    img.gal-13 {
        height: 200px;

    }

    img.gal-1,
    img.gal-10,
    img.gal-8 {
        height: 150px;
    }

    .bottom-text p {
        margin-bottom: 0;
    }

    footer.footer-sec {
        background: #272727 !important;
        padding-bottom: 10px;
        padding-top: 30px;
    }

    .title-new h1 {
        font-size: 50px;
        line-height: 50px;
        margin: 0;
    }

    section.about-video {
        padding-bottom: 50px;
    }

    .abt-desp {
        font-size: 12px;
        line-height: 20px;
    }

    section.about-video video {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

    h2 {

        font-size: 50px !important;
        line-height: 50px !important;

    }

    .pb-8 {
        padding-bottom: 30px;
    }

    .pt-8 {
        padding-top: 30px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-box h4 {
        font-size: 28px;

        margin-bottom: 10px;


    }

    .video-play-button:after {

        width: 70px;
        height: 70px;

    }

    .getintouch-form::before {

        height: 435px;

    }

    .getintouch-form textarea {

        margin-bottom: 20px;

        height: 70px;
    }

    .getintouch-form input {

        margin-bottom: 30px;

    }

    .mar {

        padding: 23px 30px 0 231px;
    }

    .getintouch-form::after {
        height: 374px;
        width: 200px;
        top: 20px;
        background-size: cover;
    }

    ul.cnt-list li a {
        font-size: 10px;

        line-height: 35px;
    }

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
        width: 45%;

        height: 70px;

        font-size: 12px;

        gap: 0px;

    }

    .evt-btn a.btn10 {
        width: 60%;
    }

    .sec-padding {

        padding-right: 0;
    }

    .yoga-vid-head {
        margin-bottom: 20px;
    }

    section.upcoming-evet .row {
        justify-content: center;
    }

    .yoga-vid-head {

        width: 90%;

    }

    section.yoga-video .row {
        padding-top: 20px !important;
    }

    .video-images img.vid1 {

        height: 330px;

    }

    button.carousel-control-prev::before {

        height: 45px;
        width: 45px;

    }

    .event-detail {
        margin: 10px 0;
    }


    .event-box {

        padding: 20px 15px 2px;


        margin-top: 10px;
    }

    p {

        font-size: 12px !important;
        line-height: 20px !important;

    }

    section.upcoming-evet .row {
        padding-top: 10px !important;
    }


    .up-evt-head p {

        width: 100%;
    }


    h3 {

        font-size: 50px;
        line-height: 50px;

        margin: 0 0 5px;
    }

    section.aboutus .row {
        align-items: center;
    }

    button.carousel-control-next::before {

        height: 45px;
        width: 45px;
    }

    .btn10 {

        padding: 5px 5px;
        border-radius: 0px;
        font-size: 12px;

        height: 45px;
    }

    .menuSec ul li a {

        padding: 8px 3px;
        font-size: 7px;

    }

    ul.footer-link-list li {

        gap: 20px;
        margin: 5px 0px;
    }

    .bottom-nav-box {

        padding: 12px 20px;

        margin-top: 35px;
        background: #232323;
    }

    img.gal-4,
    img.gal-6 {
        height: 205px;
    }

    img.gal-3,
    img.gal-2 {
        height: 200px;
    }

    img.gal-7,
    img.gal-9 {
        height: 215px;
    }

    ul.cnt-list i {
        font-size: 15px;
        margin: 0 10px;

    }

    .items h2 {
        font-size: 35px !important;
        margin-bottom: 0 !important;
        line-height: 35px !important;
    }

    .items {
        padding-right: 10px !important;
    }

    .awrd-detail {

        margin-top: 10px;
    }

    .abt-head {
        font-size: 10px;
        line-height: 18px;
    }

    .items p {
        font-size: 10px !important;
        width: 100%;
    }

    section.inner-aboutus .row {
        align-items: baseline;
    }

    .event_box_new>.event_box_new_textt>h3 {
        width: 75%;
        font-size: 15px;

    }

    .bder .f5 {

        padding: 20px 20px 20px 20px;

    }

    .f5 .form-control {

        margin-top: 10px;

    }

    .sub button.btn.btn-primary {

        margin-top: 10px;

    }

    .f4 .form-control {

        margin-top: 5px;

    }

    .contact-heading-inner {
        margin-bottom: 20px;
    }

    .pricing-box li {

        font-size: 14px;
    }

    .pricing-box h5 {

        margin-bottom: 10px !important;
    }

    section.yoga-wrap h2 {

        font-size: 35px !important;
        margin-bottom: 0 !important;
    }

    .service-image {
        width: 100%;
        height: 400px;

    }

    .contact_detail_box h4 {
        font-size: 25px;

    }

    .contact_detail_box img {
        height: 45px;
        width: 45px;
    }

    .contact_detail_box {
        padding: 15px;

        height: 175px;

    }

    .prod-img {

        padding: 10px 10px 0;

    }

    .cart {

        padding: 18px;

        height: 40px;
        width: 40px;

        border: solid 5px #F7F7EF;

    }

    .prod-detail p {

        line-height: 18px !important;
    }

    .prod-detail h6 {

        line-height: 20px;
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .prod-detail {

        padding: 10px;
        margin-top: 10px;

    }

    .event_box_new ul {
        width: 77%;
    }

    .event_box_new {
        margin-top: 20px !important;
    }

    .event_box_new_textt p span {
        font-size: 12px !important;
    }

    .event_box_new ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .event_box_new_textt p {
        margin-bottom: 5px !important;
    }

    .video-thumbnail.position-relative img {
        height: 320px;

    }

    section.inner-aboutus .row {
        padding-top: 20px !important;
    }

    img.gal-11,
    img.gal-12,
    img.gal-13 {
        height: 200px;

    }

    img.gal-1,
    img.gal-10,
    img.gal-8 {
        height: 90px;
    }

    .bottom-text p {
        margin-bottom: 0;
    }

    footer.footer-sec {
        background: #272727 !important;
        padding-bottom: 10px;
        padding-top: 30px;
    }

    .title-new h1 {
        font-size: 50px;
        line-height: 50px;
        margin: 0;
    }

    section.about-video {
        padding-bottom: 50px;
    }

    .abt-desp {
        font-size: 12px;
        line-height: 20px;
    }

    section.about-video video {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    h2 {

        font-size: 50px !important;
        line-height: 50px !important;

    }

    .pb-8 {
        padding-bottom: 30px;
    }

    .pt-8 {
        padding-top: 30px;
    }


}


@media only screen and (min-width: 520px) and (max-width: 767px) {
    footer.footer-sec {
        padding-bottom: 10px;
        padding-top: 30px;
        background: #272727;
    }

    ul.class-deatil {
    padding: 0px 0;
}

    img.gal-11,
    img.gal-12,
    img.gal-13 {
        height: 450px;
    }

    img.gal-1,
    img.gal-10,
    img.gal-8 {

        height: 270px;
    }

    h2 {
        line-height: 50px !important;
        font-size: 40px !important;
    }

    span.class-det {
        font-size: 12px;

    }

    ul.class-deatil li a {

        font-size: 12px;

    }

    span.day {

        font-size: 12px;
    }

    img.gal-4,
    img.gal-6 {
        height: 350px;

    }

    span.time-detail {
        font-size: 12px;

    }

    ul.class-deatil li {
        padding: 10px;
        text-align: center;
    }

    h3 {

        font-size: 40px;
        line-height: 50px;

    }

    .up-evt-head h3 {
        margin-bottom: 0;
    }

    .evt-btn a.btn10 {
        width: 100%;

    }

    .btn10 {

        padding: 10px 10px;

        width: 100%;
        height: 45px;
    }

    .up-evt-head p {

        width: 100%;
    }

    section.upcoming-evet .row {
        padding-top: 10px !important;
    }

    .abt-head {
        font-size: 11px;
        line-height: 18px;
        text-align: center;
    }

    .abt-head h2 {
        margin-bottom: 0;
    }

    .awrd-detail {
        margin-bottom: 10px;
    }

    .items p {
        font-size: 12px;
        width: 100%;
        line-height: 20px;

    }

    .count {
        display: contents;
        align-items: center;
        text-align: center;
    }

    p {

        font-size: 11px !important;
        line-height: 18px !important;

    }

    .up-evt-head {
        text-align: center;
    }

    .event-box {

        padding: 15px 10px 2px;

        margin-top: 10px;
    }

    .event-detail {
        margin: 10px 0;
    }

    .yoga-vid-head h2 {
        line-height: 45px !important;
        margin-bottom: 10px !important;
    }

    .sec-padding {
        padding-left: 25px;
        padding-right: 0;
    }

    section.yoga-classes .yoga-vid-head {
        margin-bottom: 20px;
    }

     section.yoga-classes .row {
        padding-top: 0 !important;
    }

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new>a {

    margin-left: 5px;
}

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
        width: 95%;
        height: 80px;
        font-size: 12px;
        margin: 0;
        padding: 10px;
        gap: 0;
    }

    button.carousel-control-prev::before {

        font-size: 15px;
        padding: 10px;
        height: 25px;
        width: 25px;

    }

    .video-play-button {
        top: 60%;
        left: inherit;
        width: 30px;
        height: 30px;
        right: 0;
    }

    .video-play-button:before {

        width: 35px;
        height: 35px;

    }

    .video-play-button:after {
        width: 40px;
        height: 40px;

    }

    button.carousel-control-next::before {
        font-size: 15px;
        padding: 10px;
        height: 25px;
        width: 25px;
    }

    .slicknav_menu {

        background: #917768;

    }

    .getintouch-form textarea {
        margin-bottom: 22px;
        height: 80px;
        color: #000;
    }

    .getintouch-form input {
        color: #000;
        margin-bottom: 25px;

    }

    .main-banner-img {
        width: 100%;
        height: auto;
    }

    header {
        position: inherit;
        padding: 10px 0 10px 0;


    }

    .video-play-button span {

        border-left: 10px solid #fff;
        border-top: 5px solid transparent;
        border-bottom: 6px solid transparent;
        top: 9px;
        left: 7px;
    }

    .mar {
        margin: 0;
        padding: 0;
    }

    .getintouch-form::before {
        width: 100%;
        height: 420px;
        z-index: -1;
        top: -15px !important;
    }

    .get-btn button {
        margin: 0 auto;
    }

    .get-btn {
        text-align: center;
    }

    .getintouch-form::after {

        display: none !important;
    }

    .getintouch-form1 {
        margin-top: 20px;
    }

    ul.cnt-list li a {
        font-size: 11px;

        line-height: 30px;
    }

    ul.cnt-list {
        text-align: center;
    }

    .cont-head h2 {

        text-align: center;

    }

    h4 {

        font-size: 20px;
        line-height: 25px;

    }

    section.yoga-video .row {
        padding-top: 20px !important;
    }

    .video-images {
        margin-bottom: 0;
    }

    .abs-vid i {

        width: 50px;
        height: 50px;

    }

    .video-images img.vid1 {

        height: 180px;

    }

    .yoga-vid-head h2 {

        margin-bottom: 0 !important;
    }

    img.gal-3,
    img.gal-2 {
        height: 600px;
    }

    section.people-say {
        padding: 0px 0;
    }

    .gall-img img {

        width: 100%;
    }

    img.gal-7,
    img.gal-9 {

        height: 350px;

    }

    section.people-say h6 {
        font-size: 14px;
    }

    .testi-head h2 {
        font-size: 35px;
        margin-bottom: 0;
        line-height: 40px;
    }

    .pt-8 {
        padding-top: 20px;
    }

    .yoga-vid-head {
        font-size: 11px;
        line-height: 18px;
    }

    .yoga-vid-head {

        width: 100%;

    }

    .pb-8 {
        padding-bottom: 20px;
    }

    .gall-img img {
        margin: 0 0 10px;
    }

    img.gal-1,
    img.gal-10,
    img.gal-8 {

        height: 300px;
    }

    .footer-box::after {
        display: none;
    }

    i.fas.fa-phone-alt {
        transform: rotate(95deg);
    }

    .footer-box p {
        font-size: 11px;
        line-height: 20px;
        width: 100%;
    }

    .footer-box {

        padding-top: 15px;
    }

    .footer-box.noborder.wow.slideInRight {
        margin-left: 0;
    }

    .bottom-nav-box {
        padding: 10px 10px;
        margin-top: 20px;

    }

    .bottom-text p {
        font-size: 10px;
        margin-bottom: 0;
    }

    .bottom-text {
        margin-top: 5px;
    }

    .bottom-text p {
        font-size: 10px;
        margin-bottom: 0;
        text-align: center;
    }

    ul.footer-link-list i {
        font-size: 16px;

    }

    ul.footer-link-list li {

        gap: 10px;
        margin: 0px 0px;
    }

    ul.footer-link-list li a {

        gap: 10px;

    }

    ul.bottom-list {
        gap: 5px;
        justify-content: center;
    }

    ul.bottom-list i {
        font-size: 24px;
        height: 30px;
        width: 30px;
        font-size: 13px;
    }

    .footer-box h4 {
        font-size: 25px;
        margin-bottom: 10px;

    }

    .footer-box.box-center {
        margin-left: 0;
    }

    ul.footer-link-list li a {
        font-size: 11px;
        line-height: 25px;

    }

    .slicknav_nav a:hover {
        background: #000;

    }

    .sub button.btn.btn-primary {

        margin-top: 12px;
        border: none;
        height: 40px;

        font-size: 12px;

    }

    .f4 p {
        margin-top: 10px;
        margin-bottom: 0;
        font-size: 11px !important;
    }

    .f4 .form-control {

        line-height: 40px;
        margin-top: 10px;
        margin-bottom: 0;

        height: 40px;
        font-size: 12px;
    }


    .f4 h2 {

        font-size: 25px !important;
    }

    .f5 label.form-check-label {

        font-size: 12px;
    }

    .f5 a {

        margin-top: 14px;

        font-size: 11px;
    }


    .f5 button.btn.btn-primary {

        height: 40px;
        font-family: 'Montserrat';
        font-size: 14px;

    }

    .f5 .form-control {

        margin-top: 10px;

        height: 40px;
        font-size: 14px;
    }

    .f5 h2 {
        font-size: 25px !important;
    }

    .bder .f5 {

        margin-top: 0;
        padding: 10px 10px 10px 10px;

    }

    .video-thumbnail.position-relative img {
        height: 480px;
    }

    section.yogavideo {
        text-align: center;
    }

    .video-item h4 {
        margin-bottom: 5px;
    }


    section.about-video {
        padding-bottom: 40px;
    }

    section.inner-aboutus .row {
        padding-top: 20px !important;
    }

    .event_box_new>img {
        width: 60%;
        height: 90px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .title-new h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .event_box_new>.event_box_new_textt {
        width: 100%;
        text-align: center;
    }

    .event_box_new>.event_box_new_textt>p span {
        font-size: 10px !important;
    }

    .event_box_new ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .event_box_new>.event_box_new_textt>p {
        width: 100%;
        margin-bottom: 0;
    }

    .event_box_new>.event_box_new_textt>a.btn10 {

        right: 0;
        left: 0;
        margin: 0 auto;
    }


    .event_box_new>.event_box_new_textt>h3 {

        font-size: 14px;

        margin-bottom: 10px;
    }

    .event_box_new {
        display: block;
        gap: 0px;
        padding: 10px 10px 10px;
        text-align: center;
        margin-top: 20px !important;
    }

    .prod-detail br {
        display: none;
    }

    .contact_detail_box img {
        margin: 0 0 15px;
    }

    .get-form label {
        margin-top: 5px;
        margin-bottom: 3px;
        font-size: 12px;
    }

    .contact_detail_box img {
        height: 36px;
        width: 36px;
    }

    .contact_detail_box h4 {
        font-size: 25px;
        line-height: 25px;

        margin: 0 0 0px;
    }

    .contact_detail_box {
        padding: 10px;
        height: 140px;
        margin-top: 10px;
    }

    .contact-heading-inner {
        font-size: 11px;
        line-height: 18px;
    }

    .f4 a {

        font-size: 14px;
    }

    section.yoga-wrap .container {
        padding-top: 0 !important;
        padding-bottom: 30px !important;
    }


    section.yoga-wrap h2 {

        font-size: 30px !important;
        margin-bottom: 0 !important;
    }

    .pricing-box li {

        margin-bottom: 5px;
        list-style: circle;
        margin-left: 10px;
        font-size: 12px;
    }

    .contact-button button.btn10 {
        width: 35%;

    }

    section.yoga-wrap .row {
        margin-top: 20px !important;
    }

    .service-image {
        width: 100%;
        height: 380px;
        margin-bottom: 5px;
    }

    section.yoga-wrap {
        text-align: center;
    }

    .contact-heading-inner h2 {

        font-size: 30px !important;
        margin-bottom: 0;
    }

    .prod-img {

        text-align: center;
    }

    .prod-detail h6 {
        margin-bottom: 4px;
    }

    .prod-img img {
        width: 70%;
    }

    .prod-img {

        padding: 10px 10px 0;

        margin-bottom: 10px;
    }

    .cart {

        padding: 15px;
        z-index: 2;
        right: 35px;
        border-radius: 41px;
        height: 40px;
        width: 40px;

        border: solid 5px #f7f7f1;

        font-size: 12px !important;
    }

    span.icon-1 {

        margin: 10px 0 0;
        justify-content: center;
    }

    .prod-detail {

        padding: 10px;
        margin-top: 0;

        text-align: center;
    }

    .event_box_new>.event_box_new_textt>a.btn10 {
        position: inherit;
        margin-top: 10px;
        font-size: 12px;
        height: 40px !important;
    }

    section.about-video video {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .items {
        margin-top: 15px;
    }


    .items h2 {

        line-height: 30px !important;
    }


    .abt-desp {
        font-size: 11px;
        line-height: 18px;
    }

    section.inner-aboutus {
        text-align: center;
    }


}

@media only screen and (min-width: 300px) and (max-width: 519px) {

    footer.footer-sec {
        padding-bottom: 10px;
        padding-top: 30px;
        background: #272727;
    }

    ul.class-deatil {
    padding: 0px 0;
}

    img.gal-11,
    img.gal-12,
    img.gal-13 {
        height: 300px;

    }

    h2 {
        line-height: 50px !important;
        font-size: 40px !important;
    }

    span.class-det {
        font-size: 12px;

    }

    ul.class-deatil li a {

        font-size: 12px;

    }

    span.day {

        font-size: 12px;
    }

    img.gal-4,
    img.gal-6 {
        height: 350px;

    }

    span.time-detail {
        font-size: 12px;

    }

    ul.class-deatil li {
        padding: 10px;
        text-align: center;
    }

    h3 {

        font-size: 40px;
        line-height: 50px;

    }

    .up-evt-head h3 {
        margin-bottom: 0;
    }

    .evt-btn a.btn10 {
        width: 100%;

    }

    .btn10 {

        padding: 10px 10px;

        width: 100%;
        height: 45px;
    }

    .up-evt-head p {

        width: 100%;
    }

    section.upcoming-evet .row {
        padding-top: 10px !important;
    }

    .abt-head {
        font-size: 11px;
        line-height: 18px;
        text-align: center;
    }

    .abt-head h2 {
        margin-bottom: 0;
    }

    .awrd-detail {
        margin-bottom: 10px;
    }

    .items p {
        font-size: 12px;
        width: 100%;
        line-height: 20px;

    }

    .count {
        display: contents;
        align-items: center;
        text-align: center;
    }

    p {

        font-size: 11px !important;
        line-height: 18px !important;

    }

    .up-evt-head {
        text-align: center;
    }

    .event-box {

        padding: 15px 10px 2px;

        margin-top: 10px;
    }

    .event-detail {
        margin: 10px 0;
    }

    .yoga-vid-head h2 {
        line-height: 45px !important;
        margin-bottom: 10px !important;
    }

    .sec-padding {
        padding-left: 25px;
        padding-right: 0;
    }

    section.yoga-classes .yoga-vid-head {
        margin-bottom: 20px;
    }

   section.yoga-classes .row {
        padding-top: 0px !important;
    }

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new>a {

    margin-left: 5px;
}

    .yoga-classes .yoga_btns_wrpr>.yoga_btn_new {
        width: 95%;
        height: 80px;
        font-size: 12px;
        margin: 0;
        padding: 10px;
        gap: 0;
    }

    button.carousel-control-prev::before {

        font-size: 15px;
        padding: 10px;
        height: 25px;
        width: 25px;

    }

    .video-play-button {
        top: 60%;
        left: inherit;
        width: 30px;
        height: 30px;
        right: 0;
    }

    .video-play-button:before {

        width: 35px;
        height: 35px;

    }

    .video-play-button:after {
        width: 40px;
        height: 40px;

    }

    button.carousel-control-next::before {
        font-size: 15px;
        padding: 10px;
        height: 25px;
        width: 25px;
    }

    .slicknav_menu {

        background: #917768;

    }

    .getintouch-form textarea {
        margin-bottom: 22px;
        height: 80px;
        color: #000;
    }

    .getintouch-form input {
        color: #000;
        margin-bottom: 25px;

    }

    .main-banner-img {
        width: 100%;
        height: auto;
    }

    header {
        position: inherit;
        padding: 10px 0 10px 0;


    }

    .video-play-button span {

        border-left: 10px solid #fff;
        border-top: 5px solid transparent;
        border-bottom: 6px solid transparent;
        top: 9px;
        left: 7px;
    }

    .mar {
        margin: 0;
        padding: 0;
    }

    .getintouch-form::before {
        width: 100%;
        height: 420px;
        z-index: -1;
        top: -15px !important;
    }

    .get-btn button {
        margin: 0 auto;
    }

    .get-btn {
        text-align: center;
    }

    .getintouch-form::after {

        display: none !important;
    }

    .getintouch-form1 {
        margin-top: 20px;
    }

    ul.cnt-list li a {
        font-size: 11px;

        line-height: 30px;
    }

    ul.cnt-list {
        text-align: center;
    }

    .cont-head h2 {

        text-align: center;

    }

    h4 {

        font-size: 20px;
        line-height: 25px;

    }

    section.yoga-video .row {
        padding-top: 20px !important;
    }

    .video-images {
        margin-bottom: 0;
    }

    .abs-vid i {

        width: 50px;
        height: 50px;

    }

    .video-images img.vid1 {

        height: 180px;

    }

    .yoga-vid-head h2 {

        margin-bottom: 0 !important;
    }

    img.gal-3,
    img.gal-2 {
        height: 350px;

    }

    section.people-say {
        padding: 0px 0;
    }

    img.gal-7,
    img.gal-9 {

        height: 350px;

    }

    section.people-say h6 {
        font-size: 14px;
    }

    .testi-head h2 {
        font-size: 35px;
        margin-bottom: 0;
        line-height: 40px;
    }

    .pt-8 {
        padding-top: 20px;
    }

    .yoga-vid-head {
        font-size: 11px;
        line-height: 18px;
    }

    .yoga-vid-head {

        width: 100%;

    }

    .pb-8 {
        padding-bottom: 20px;
    }

    .gall-img img {
        margin: 0 0 10px;
    }

    .footer-box::after {
        display: none;
    }

    i.fas.fa-phone-alt {
        transform: rotate(95deg);
    }

    .footer-box p {
        font-size: 11px;
        line-height: 20px;
        width: 100%;
    }

    .footer-box {

        padding-top: 15px;
    }

    .footer-box.noborder.wow.slideInRight {
        margin-left: 0;
    }

    .bottom-nav-box {
        padding: 10px 10px;
        margin-top: 20px;

    }

    .bottom-text p {
        font-size: 10px;
        margin-bottom: 0;
    }

    .bottom-text {
        margin-top: 5px;
    }

    .bottom-text p {
        font-size: 10px;
        margin-bottom: 0;
        text-align: center;
    }

    ul.footer-link-list i {
        font-size: 16px;

    }

    ul.footer-link-list li {

        gap: 10px;
        margin: 0px 0px;
    }

    ul.footer-link-list li a {

        gap: 10px;

    }

    ul.bottom-list {
        gap: 5px;
        justify-content: center;
    }

    ul.bottom-list i {
        font-size: 24px;
        height: 30px;
        width: 30px;
        font-size: 13px;
    }

    .footer-box h4 {
        font-size: 25px;
        margin-bottom: 10px;

    }

    .footer-box.box-center {
        margin-left: 0;
    }

    ul.footer-link-list li a {
        font-size: 11px;
        line-height: 25px;

    }

    .slicknav_nav a:hover {
        background: #000;

    }

    .sub button.btn.btn-primary {

        margin-top: 12px;
        border: none;
        height: 40px;

        font-size: 12px;

    }

    .f4 p {
        margin-top: 10px;
        margin-bottom: 0;
        font-size: 11px !important;
    }

    .f4 .form-control {

        line-height: 40px;
        margin-top: 10px;
        margin-bottom: 0;

        height: 40px;
        font-size: 12px;
    }


    .f4 h2 {

        font-size: 25px !important;
    }

    .f5 label.form-check-label {

        font-size: 12px;
    }

    .f5 a {

        margin-top: 14px;

        font-size: 11px;
    }


    .f5 button.btn.btn-primary {

        height: 40px;
        font-family: 'Montserrat';
        font-size: 14px;

    }

    .f5 .form-control {

        margin-top: 10px;

        height: 40px;
        font-size: 14px;
    }

    .f5 h2 {
        font-size: 25px !important;
    }

    .bder .f5 {

        margin-top: 0;
        padding: 10px 10px 10px 10px;

    }

    .video-thumbnail.position-relative img {
        height: 180px;

    }

    section.yogavideo {
        text-align: center;
    }

    .video-item h4 {
        margin-bottom: 5px;
    }


    section.about-video {
        padding-bottom: 40px;
    }

    section.inner-aboutus .row {
        padding-top: 20px !important;
    }

    .event_box_new>img {
        width: 60%;
        height: 90px;
        margin: 0 auto;
    }

    .title-new h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .event_box_new>.event_box_new_textt {
        width: 100%;
        text-align: center;
    }

    .event_box_new>.event_box_new_textt>p span {
        font-size: 10px !important;
    }

    .event_box_new ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .event_box_new>.event_box_new_textt>p {
        width: 100%;
        margin-bottom: 0;
    }

    .event_box_new>.event_box_new_textt>a.btn10 {

        right: 0;
        left: 0;
        margin: 0 auto;
    }


    .event_box_new>.event_box_new_textt>h3 {

        font-size: 14px;

        margin-bottom: 10px;
    }

    .event_box_new {
        display: block;
        gap: 0px;
        padding: 10px 10px 10px;
        text-align: center;
        margin-top: 20px !important;
    }

    .prod-detail br {
        display: none;
    }

    .contact_detail_box img {
        margin: 0 0 15px;
    }

    .get-form label {
        margin-top: 5px;
        margin-bottom: 3px;
        font-size: 12px;
    }

    .contact_detail_box img {
        height: 36px;
        width: 36px;
    }

    .contact_detail_box h4 {
        font-size: 25px;
        line-height: 25px;

        margin: 0 0 0px;
    }

    .contact_detail_box {
        padding: 10px;
        height: 140px;
        margin-top: 10px;
    }

    .contact-heading-inner {
        font-size: 11px;
        line-height: 18px;
    }

    .f4 a {

        font-size: 14px;
    }

    section.yoga-wrap .container {
        padding-top: 0 !important;
        padding-bottom: 30px !important;
    }


    section.yoga-wrap h2 {

        font-size: 30px !important;
        margin-bottom: 0 !important;
    }

    .pricing-box li {

        margin-bottom: 5px;
        list-style: circle;
        margin-left: 10px;
        font-size: 12px;
    }

    .contact-button button.btn10 {
        width: 35%;

    }

    section.yoga-wrap .row {
        margin-top: 20px !important;
    }

    .service-image {
        width: 100%;
        height: 180px;

        margin-bottom: 5px;

    }

    section.yoga-wrap {
        text-align: center;
    }

    .contact-heading-inner h2 {

        font-size: 30px !important;
        margin-bottom: 0;
    }

    .prod-img {

        text-align: center;
    }

    .prod-detail h6 {
        margin-bottom: 4px;
    }

    .prod-img img {
        width: 70%;
    }

    .prod-img {

        padding: 10px 10px 0;

        margin-bottom: 10px;
    }

    .cart {

        padding: 15px;
        z-index: 2;
        right: 35px;
        border-radius: 41px;
        height: 40px;
        width: 40px;

        border: solid 5px #f7f7f1;

        font-size: 12px !important;
    }

    span.icon-1 {

        margin: 10px 0 0;
        justify-content: center;
    }

    .prod-detail {

        padding: 10px;
        margin-top: 0;

        text-align: center;
    }

    .event_box_new>.event_box_new_textt>a.btn10 {
        position: inherit;
        margin-top: 10px;
        font-size: 12px;
        height: 40px !important;
    }

    section.about-video video {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .items {
        margin-top: 15px;
    }


    .items h2 {

        line-height: 30px !important;
    }


    .abt-desp {
        font-size: 11px;
        line-height: 18px;
    }

    section.inner-aboutus {
        text-align: center;
    }


}


/*Media Query End*/

.blg-det-img img {
    width: 100%;
    object-fit: cover;
    height: 450px;
    border-radius: 40px;
}

.blgdetail-text {
    background: #fff;
    box-shadow: 0 0 20px 0 #00000052;
    padding: 30px 50px;
    margin: -100px auto 0;
    width: 95%;
}
