html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a {
    text-decoration: none;
    color: var(--black);
}
span{
    color: var(--black);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}
:root {
    --white: #ffffff;
    --main-color: #B36F30; 
    --light-color: #ECE7DA;
    --black: #363D3E;
  }
  img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }


body {
    font-family: 'Rajdhani', sans-serif;
    font-family: 'Work Sans', sans-serif;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  .main-heading, .title, .heading, .sub-heading ,.mark-title ,.heading-disc, p, h2, h1, h4, a, span, .featured-courses-wrap{ 
    animation: fadeIn 0.4s;
 }
 
.container{
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 50px;
}
.main-heading{
    font-family: 'Rajdhani', sans-serif;
    font-size: 65px;
    font-weight: 800;
    color: var(--black);
    line-height: 75px;
}
.title {
    color: var(--black);
    font-size: 55px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.heading{
    font-size: 35px;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    padding: 30px 0;
}
.sub-heading{
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    color: var(--black);
    text-transform: uppercase;
}
.mark-title{
    color: var(--main-color);
}
.heading-disc{
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
h4{
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    font-family: 'Rajdhani', sans-serif;
}
p{
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}
/* Start Header */
header{
    background-color: var(--light-color);
    /* transition: all 1.0s; */
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-color);
    padding: 12px 0;
}
.navigation nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}
.navigation nav ul a{
    color: var(--black);
    transition: all 0.3s;
}
.navigation nav ul a:hover{
    color: var(--main-color);
}
.navigation nav .menu-active a{
    color: var(--main-color);
   
}
.navigation nav ul li a.active{

    color: var(--main-color);
}

/* .btn {
    color: #ffffff;
    border-radius: 5px;
    border: none;
    padding: 15px 20px;
    background-color: var(--main-color);
    max-width: 230px;
    width: 100%;
    text-align: center;
    height: 50px;
    transition: all 0.8s, color 0.3s 0.3s;
} */
.btn {
    color: #ffffff;
    border-radius: 5px;
    display: inline-block;
    border: none;
    padding: 17px 70px;
    background-color: var(--main-color);
    text-align: center;
    transition: all 0.8s, color 0.3s 0.3s;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
}
.common-btn{
    max-width: 100%;
}
.btn a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: normal;
}
.btn:hover ,button:hover {
    box-shadow: 0 80px 0 0 var(--black) inset, 0 -80px 0 0 var(--white) inset;
}
.mobile-header-toggel-btn svg.icon {
    width: 30px;
    max-width: 100%;
}
.mobile-header-toggel-btn span {
    position: absolute;
    z-index: 1;
    width: 22px;
}
.mobile-header-toggel-btn span::before {
    content: "≡";
    display: block;
    position: absolute;
    z-index: 1;
    font-size: 45px;
    line-height: 35px;
    top: -20px;
}
.mobile-header-toggel-btn {
    margin-right: 22px;
}
span.closebtn:before {
    content: "✕";
    width: 20px;
}
span.closebtn {
    font-size: 22px;
    font-weight: bold;
}
/* End Header */

/* start background shap right-left */
.about-ls-shap ,.home-ls-shap {
    width: 100%;
    max-width: 100px;
    height: auto;
    position: absolute;
    left: 0;
    top: 130px;
    opacity: 40%;
    z-index: 0;
}
.about-rs-shap ,.home-rs-shap{
    width: 100%;
    max-width: 100px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 65px;
    opacity: 40%;
    z-index: 0;
}
/* end background shap right-left */

/* start section featured-courses */

.featured-courses-wrap .col {
    align-items: center;
    column-gap: 30px;
    display: flex;
}
.featured-courses-wrap .col-block {
    border-radius: 5px;
    /* background-color: var(--light-color); */
    float: left;
    width: 33.33%;
    margin: 0 15px;
    height: auto;
    overflow: hidden;
}
.slick-track {
    display: flex;
}
.class-fix-btn {
    position: absolute;
    bottom: 20px;
}
.featured-courses-wrap .col-block img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
}
.featured-courses-wrap h4 {
    /* max-width: 260px; */
    text-align: center;
}
.featured-courses-wrap .col span {
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    padding: 20px 0;
}
.ffeatured-courses-wrap .row-list-disc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 20px;
    width: 512px;
    max-width: 100%;
}
.featured-courses-wrap .list-border {
    border: 1px solid var(--main-color);
    border-style: dashed;
    max-width: 490px;
    width: 100%;
}
.main-banner h2.title {
    margin-bottom: 5px;
}

/* end section featured-courses */




/* start footer */
.footer{
    position: relative;
}
.footer-wrapper{
    background-color: var(--light-color);
}
.footer-logo-img img {
    max-width: 100%;
    /* max-width: 200px; */
    height: auto;
}
.main-logo img {
    width: 200px;
    max-width: 100%;
}
.footer-logo-img img {
    max-width: 100%;
    height: auto;
    width: 200px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer svg{
    width: 20px;
    height: auto;
    fill: var(--black);
    vertical-align: middle;
    transition: all .2s;
}
.footer-mail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 12px;
}
.footer-mail a ,.footer-contact-disc  a {
    color: var(--black);
}
.footer-contact-disc{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 12px;
}
.footer-contact-data {
    padding-top: 35px;
}
.footer-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.footer .background-shap {
    position: relative;
    z-index: 0;
}
.talk-to-us li  a ,.support li a{
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
}
.footer-inner h4.heading {
    color: var(--black);
    font-size: 23px;
    text-align: left;
    padding-bottom: 20px;
    line-height: 28px;
}
.talk-to-us li  ,.support li {
    padding-bottom: 12px;
}
.talk-to-us , .support , .footer-subscribe-form{
    margin-top: 30px;
}
.footer-inner h4.heading::after {
    content: "";
    display: block;
    border: 1px solid var(--main-color);
    margin-top: 10px;
    max-width: 50px;
}

.footer-subscribe-form input[type="text"] {
    width: 100%;
    height: 50px;
    font-size: 12px;
    color: #999999;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 22px;
}
form.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe-form button {
    height: 50px;
    width: 170px;
    border: 0;
    background: var(--main-color);
    color: var(--white);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.8s, color 0.3s 0.3s;
    cursor: pointer;
}
.footer-subscribe p {
    padding-bottom: 10px;
    text-transform: uppercase;
}
.footer-row {
    flex: 1 1 25%;
    padding-right: 10px;
}
.footer .container {
    max-width: 1520px;
}
.footer-copyright p::before {
    content: "";
    display: block;
    border: 1px solid var(--main-color);
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.footer-copyright p {
    text-align: center;
    font-size: 14px;
}
.footer-copyright {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    padding-bottom: 10px;
}
.footer-copyright svg {
    max-width: 16px;
    font-family: 'Work Sans', sans-serif;
}
.footer-leftside-shap {
    width: 100%;
    max-width: 100px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0px;
    opacity: 40%;
}
.footer-rightside-shap {
    width: 100%;
    max-width: 100px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0px;
    opacity: 40%;
}
.footer-contact-disc {
    display: none;
}
.footer-social-media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}
.footer-subscribe-form input[type="text"]:focus-visible {
    box-shadow: none;
    outline: 0px;
    border: 0px;
}
/* end footer */




/* all page css */

/* start section aboutus banner */

.about-banner{
    background-color: var(--light-color);
    position: relative;
}
.about-banner-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* column-gap: 400px; */
}
.about-banner-data h1 {
    max-width: 540px;
    margin-top: 30px;
}
.video-banner-data h1 {
    margin-top: 30px;
}

/* end section aboutus banner */


/* start section classes banner (without image banner)*/

.classes-banner-bg {
    background-color: var(--light-color);
    padding-top: 10px;
}
.classes-banner h1 {
    color: var(--black);
    position: relative;
    margin-top: 10px;
    z-index: 1;
}
.classes-banner .title{
    position: relative;
    text-align: center;
    margin-bottom: 0;
    padding: 20px 0;
}
.bg-yoga {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
}
/* end section classes banner (without image banner)*/

button.slick-next.slick-arrow {
    position: absolute;
    right: -50px;
    border: 0;
    top: 50%;
    background: var(--main-color);
    color: var(--white);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    z-index: 0;
    font-size: 0;
}

button.slick-prev.slick-arrow {
    position: absolute;
    border: 0;
    background: none;
    left: -50px;
    top: 50%;
    z-index: 1;
    background: var(--main-color);
    color: var(--white);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    font-size: 0;
    transition: all .5s;
}
span.list-type {
    padding: 10px 0 15px 0;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}
span.list-time {
    padding: 15px 0 20px 0;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}

.featured-courses-slider .slick-prev:before , .classes-inner .slick-prev:before {
    content: " ";
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    width: 11px;
    height: 11px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    /* border-radius: 3px; */
    border-bottom-left-radius: 2px;
    margin-left: 8px;
}
.featured-courses-slider .slick-next:before, .classes-inner .slick-next:before {
    /* content: '';
    padding: 0 2px 0 0; */
    content: " ";
    border-right: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    width: 11px;
    height: 11px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    border-top-right-radius: 3px;
    margin-left: 4px;
}

.slick-prev::before , .slick-next::before {
    -webkit-font-smoothing: unset;
    font-family: 'Rajdhani', sans-serif;
    color: var(--white);
    font-size: 28px;
    line-height: 15px;
    opacity: 1;
}
.slick-next::before {
    -webkit-font-smoothing: unset;
    font-family: 'Rajdhani', sans-serif;
    color: var(--white);
    font-size: 40px;
    line-height: 13px;
    opacity: 1;
}
/* .featured-courses-slider button {
    display: none;
} */
.featured-courses-slider.slick-prev, .featured-inner-slider.slick-next {
    background-color: var(--orange);
    height: 32px;
    top: 50%;
    width: 40px;
    border-radius: 50px;
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-size: 0;
}


.slick-dots {
	display: flex;
	justify-content: center;
	
	margin: 0;
	padding: 1rem 0;
	
	list-style-type: none;
}
.slick-dots li {
	    margin: 0 0.25rem;
    }
	.stories-wrap ul button ,.featured-courses-slider ul button ,.classes-inner ul button, .about-yoga-moments ul button  {
		display: block;
		width: 10px;
		height: 10px;
		padding: 0;
		border: none;
		border-radius: 100%;
		background-color: var(--light-color);
		text-indent: -9999px;
	}
	li.slick-active button {
		background-color:var(--main-color);
	}
.navigation-mobile-slide {
    display: none;
}
.about-banner-iamge img {
    max-width: 100%;
text-align: right;
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
vertical-align: top;
}
.video-banner-data {
    width: 50%;
}
.about-banner-data {
    width: 50%;
}
.comfort-place svg {
    margin-bottom: 10px;
}
section.featured-courses {
    padding: 0 20px;
    margin-bottom: 40px;
}
.message-col-input input:focus-visible , .message-col-input textarea:focus-visible {
    outline: none;
}
.mask-banner {
    -webkit-mask-image: url(../../assets/img/banner-image.webp);
    mask-image: url(../../assets/img/banner-image.webp);
  }
  .mask-banner {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    margin: 0 auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    padding: 0;
    width: 367px;
    height: 418px;
}
   
.hidden {
    display: none;
  }
  .img-animation img:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.image {
    overflow: hidden;
    transition: all .6s;
    /* background-color: var(--light-color); */
}
span.youtube svg:hover ,span.instagram svg:hover, span.twitter svg:hover, span.facebook svg:hover {
    fill: #b36f30;
    transition: all .2s;
}
.common-wave img {
    width: 100%;
}

------  all hide  --------

p.title-disc {
    display: none !important;
}
.main-banner a.btn.banner-btn {
    display: none;
}
.classes-banner h4 {
    display: none;
}
.cw-gallery-banner .title {
    display: none;
}
------  all hide  --------

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: 0.8s !important;
}

/* ----- new d r ----- */

/* start animation section */



.dot-icon{
    animation-name: dot-icon;
    animation-timing-function: linear;
}
@keyframes dot-icon {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-22px); }
    100% { transform: translateY(0); }
}

.yoga-shape {
    animation-name: yoga-shape;
    animation-timing-function: linear;
}
@keyframes yoga-shape {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.image.img-animation img {
    transition: all .6s;
}
.classes-pack.slick-slide img {
    transition: all .6s;
}
.yoga-image img {
    transition: all .6s;
}
.comments-user-img img {
    transition: all .6s;
}
.insta-img img {
    transition: all .6s;
}
/* end animation section */

@media only screen and (max-width: 1300px) {

    .banner-data h1.title {
        max-width: 550px;
        margin-bottom: 5px;
        line-height: 50px;
    }
    p.title-disc {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .title {
        font-size: 45px;
        font-weight: 600;
        margin-bottom: 30px;
    }
    p.title-disc {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 20px;
    }
    .vector-yoga svg {
        width: 80px;
    }
    .home-dot-one-shap, .home-dot-shap img {
        width: 50px;
    }
    .home-rightside-shap {
        max-width: 60px;
        right: 0;
        bottom: 65px;
    }
    .home-leftside-shap {
        max-width: 60px;
        left: 0;
        top: 130px;
    }
    .about-ls-shap, .home-ls-shap {
        max-width: 60px;
        left: 0;
        top: 130px;
    }
    .home-rs-shap{
        max-width: 60px;
        right: 0;
        bottom: 65px;
    }
.yoga-with-devna-row p {
    margin-bottom: 30px;
}
.yoga-classes-rs {
    max-width: 60px;
    right: 0;
    bottom: 0px;
}    
.yoga-classes-ls {
    max-width: 60px;
    left: 0;
    top: 130px;
}
.about-rs-shap, .home-rs-shap {
    max-width: 60px;
    right: 0;
    bottom: 65px;
}
.yoga-classes-row {
    justify-content: space-around;
    column-gap: 30px;
    flex-flow: column-reverse;
    row-gap: 50px;
}

.yoga-classes-image img {
    width: 400px;
}
.newsletters-rs {
    max-width: 60px;
    right: 0;
    bottom: 0;
}
.newsletters-ls {
    max-width: 60px;
    left: 0;
    bottom: 0;
}
.index-background-shape img {
    max-width: 370px;
}
.instagram-feed-disc svg {
    width: 45px;
    height: auto;
}
.instagram-feed-disc h4 {
    font-size: 16px;
    line-height: 21px;
}
.instagram-feed-disc h1 {
    font-size: 21px;
    padding: 10px 0;
}

.aout-disc.about-disc-data h4 {
    padding: 15px 0 15px 0;
}
/* .aout-disc.about-disc-data p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */
.assistance-row .heading h1 {
    text-align: left;
    color: var(--black);
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 0px;
}
.footer-leftside-shap {
    width: 60px;
}
.footer-rightside-shap {
    width: 60px;
}
.yoga-classes {
    margin-top: -65px;
}
.banner-data {
    width: 50%;
    padding-right: 20px;
}
.video-list-row {
    grid-template-columns: auto auto auto;
}
img.background-back-image {
    max-width: 300px;
}
.col-item .yoga-block-bg {
    max-width: 590px;
    min-height: 140px;
}
.main-banner h2.title {
    font-size: 50px;
}
.banner-inner span.mark-title {
    font-size: 60px;
}
    }
    /* end 1300 */

    
    /* start 1200 */

@media only screen and (max-width: 1200px) {

    
.yoga-classes-row .common-btn {
    padding-left: 10px;
}
.btn {
    padding: 15px 46px;
}
.brick-section-wrap .common-btn {
    max-width: 100%;
    text-align: center;
}
.yoga-with-devna-row {
    column-gap: 30px;
}
.yoga-with-devna-row p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 40px;
}
.yoga-classes {
    padding-top: 20px;
    margin-top: -54px;
}
.yoga-classes-row .col-item {
    /* column-gap: 10px;
    height: 110px;
    padding: 10px;
    border-radius: 5px;
    width: 600px; */
    max-width: 100%;
}
.yoga-classes--row h4 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
}
.yoga-image img {
    width: 100px;
    height: auto;
}
.newletter-text {
    padding-bottom: 10px;
    font-size: 20px;
}
.newsletter-bg img {
    top: 30px;
    max-width: 300px;
    bottom: 0;
    left: auto;
    right: auto;
}

.item.image-disc-text {
    padding: 10px;
}
.image-disc-text .icon {
    padding-bottom: 0;
}
.item.image-disc-text p {
    max-width: 270px;
    line-height: 21px;
}

.brick-section-wrap.brick-block p {
    max-width: 620px;
    padding-bottom: 20px;
}
section.brick__section {
    padding: 50px 0;
}
.index-about-wrap {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: center;
}
section.stories-section{
    margin-top: 60px;
    padding-bottom: 40px;
}
section.newsletter {
    margin: 40px 0;
}
/* .yoga-classes-row .yoga-item-image:nth-child(1) {
    width: 60%;
}
.yoga-classes-row .yoga-item-image:nth-child(2) {
    width: 40%;
}
.yoga-classes-row .yoga-item-image:nth-child(1) {
    width: 60%;
}
.yoga-classes-row .yoga-item-image:nth-child(2) {
    width: 40%;
} */
.yoga-classes-row {
    justify-content: space-around;
    column-gap: 10px;
}
.yoga-classes-row .col {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
}
img.background-up-image {
    max-width: 100%;
    width: 450px;
}
img.background-back-image {
    max-width: 300px;
    text-align: center;
    width: 100%;
}
.navigation nav ul {
    column-gap: 20px;
}


    /* ---------#-------#---------#------#----------- */

    /* start Video Page */


.video-icon-col p {
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}
    
    
    /* end Video Page */
    
    .brick-section-wrap{
        column-gap: 50px;
    }

    .banner-mask {
        padding: 0;
        width: 400px;
        height: 460px;
    }
    .mask-banner {
        padding: 0;
        width: 317px;
        height: 368px;
    }
    .classes-title {
        width: 48%;
    }
    .main-logo img {
        width: 170px;
    }
    /* .grid-card-wrapper {
        grid-template-columns: 49% 49%;
        grid-gap: 2%;
        row-gap: 30px;
    } */

    /* ----
    -----#-------#---------#------#----------- */

}
    /* end 1200 */

        /* start 1100 */
    @media only screen and (max-width: 1100px) {
        .main-logo img {
            width: 150px;
        }
        .navigation nav ul {
            column-gap: 15px;
        }
        .common-btn .header-btn {
            padding: 15px 30px;
        }
    }
        /* end 1100 */



    /* ----
    -----#-------#---------#------#----------- */



    /* start 991 */

@media only screen and (max-width: 991px) {

header.header {
    position: fixed;
    z-index: 9999999999999999999;
    width: 100%;
}
h4 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}
header .navigation {
    display: none;
}
.btn.header-btn {
    display: none;
}
.yoga-classes-row .col-item {
    width: 100%;
}
.yoga-classes-row {
    flex-flow: column-reverse;
    row-gap: 50px;
}
.yoga-classes-background-image img {
    max-width: 420px;
}
.footer-row {
    flex: 1 1 26%;
    padding-right: 10px;
}
.yoga-with-devna-row p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}
.col-title {
    column-gap: 15px;
}
.yoga-with-devna-row .right-alignment .col-title {
    flex-flow: row-reverse;
    text-align: left;
}
.yoga-with-devna-row h4 {
    font-size: 20px;
    line-height: 25px;
}
.btn {
    max-width: 200px;
}
.navigation nav ul {
    font-size: 14px;
    column-gap: 10px;
}
.featured-courses-wrap .row-list-disc {
    padding: 20px;
}
.featured-courses-wrap .col span {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
}
.featured-courses-wrap h4 {
    line-height: 25px;
}
.brick-section-wrap h2.heading {
    max-width: 990px;
    text-align: center;
}
.brick-section-wrap .brick-block p {
    max-width: 840px;
    padding-bottom: 20px;
    text-align: center;
}
.btn.e-with-texgird-imagt {
    margin: 0 auto;
}
.brick-section-wrap {
    flex-flow: column-reverse;
    row-gap: 40px;
}
.brick-block {
    max-width: 100%;
}
.brick-section-wrap .brick-block-grid {
    max-width: 100%;
}
section.brick__section {
    padding: 20px 0 30px 0;
}
.yoga-classes {
    padding-top: 20px;
    margin-top: -45px;
}
.yoga-with-devna-row {
    column-gap: 0;
}
.index-background-shape img {
    text-align: center;
    max-width: 390px;
}
.yoga-with-devna-row img.background-back-image {
    max-width: 360px;
    text-align: center;
    width: 100%;
}
.main-image {
    position: relative;
    text-align: center;
}
.yoga-with-devna-image-background {
    position: relative;
    margin-bottom: 40px;
}
.index-background-shape {
    position: absolute;
    top: 0;
    left: 230px;
}
.newletter-text {
    padding-bottom: 0px;
    font-size: 16px;
}
.title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0px;
}
.btn a {
    color: #ffffff;
    text-transform: uppercase;
    line-height: normal;
}
.main-logo img {
    max-width: 100%;
    width: 150px;
}
p.title-disc {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 20px;
}
.banner-data h1.title {
    max-width: 550px;
    margin-bottom: 5px;
    line-height: 35px;
}
.yoga-col.main-image {
    order: 1;
    width: 100%;
    flex: 1 1 100%;
    margin-bottom: 30px;
}
.yoga-col.right-alignment {
    order: 2;
    width: 50%;
    padding-right: 10px;
}
.yoga-col.left-alignment {
    order: 3;
    width: 50%;
    padding-left: 10px;
}
.yoga-with-devna-row {
    display: flex;
    flex-wrap: wrap;
    align-items: self-start;
    padding-bottom: 10px;
}
.yoga-classes-row .yoga-item-image:nth-child(2) {
    width: 100%;
}
.yoga-classes-row .yoga-item-image:nth-child(1) {
    width: 100%;
}
.newsletter .row-block {
    column-gap: 20px;
    padding: 30px 0 20px 0;
}

/* ---------#-------#---------#------#----------- */

/* start Video Page */

.video-icon-row {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}
.video-list-row {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 30px;
}
img.video-play-btn {
    max-width: 40px;
}
    /* end Video Page */
        
    /* .banner-img img {
        max-width: 540px;
        text-align: right;
        width: 346px;
    } */
    .heading {
        font-size: 25px;
        line-height: 31px;
        color: var(--white);
        text-align: center;
        font-weight: 600;
        font-family: 'Rajdhani', sans-serif;
        text-transform: uppercase;
        padding: 20px 0;
    }
.footer-subscribe-form {
    flex: 1 1 100%;
}
.support {
    flex: 1 1 30%;
}
.talk-to-us {
    flex: 1 1 30%;
}
.logo-media {
    flex: 1 1 40%;
}
.mobile-header-nav{
    display: none;
}
.main-logo-mobile {
    padding-bottom: 20px;
}
.main-logo-mobile img {
    max-width: 150px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.mobile-header-nav nav .menu-active a {
    color: var(--main-color);
}
.mobile-header-nav nav ul a {
    color: var(--black);
    transition: all 0.3s;
}
    /* ---------#-------#---------#------#----------- */
 

    .mobile-header-nav nav ul {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        font-size: 16px;
        flex-direction: column;
        font-family: 'Work Sans', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--black);
        padding: 20px 0px 0 0px;
    }
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 10px;
      }
      .mobile-header-nav a {
        display: block;
        transition: 0.3s;
    }
    .mobile-header-nav .main-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    .navigation-mobile-slide .main-logo a{
    padding-left: 10px;
    }
    .main-logo svg {
        width: 20px;
        fill: var(--black);
    }
    .mobile-header-nav {
        display: block;
        border-bottom-right-radius: 5px;
    }
    .home-dot-one-shap, .home-dot-shap img {
        width: 40px;
    }
    .btn {
        padding: 13px 33px;
    }
    .yoga-classes .heading {
        padding-top: 60px;
    }
    section.stories-section{
        margin-top: 50px;
        padding-bottom: 40px;
    }
    .featured-courses-wrap {
        overflow: visible;
        padding-top: 20px;
    }
    .mobile-header-nav.hamburger-navigation {
        left: 0px;
    }
    .mobile-header-nav.hamburger-navigation {
        overflow-y: scroll;
        padding: 0 20px;
    }
    .mobile-header-nav{
    height: 100%;
    z-index: 9;
    transition: left 0.4s ease;
    top: 0;
    left: -300px;
    display: block;
    position: fixed;
    width: 270px;
    background-color: var(--light-color);
    }
 .mobile-overlay {
        position: fixed;
        z-index: -9;
        display: none;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }
    .mobile-header-nav.hamburger-navigation+.mobile-overlay{
       display: block;
    }
    main#main {
        padding-top: 108px;
    }
    .featured-courses-slider .slick-prev:before , .classes-inner .slick-prev:before {
        content: " ";
        border-left: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
        width: 10px;
        height: 10px;
        margin-left: 4px;
    }
    .featured-courses-slider .slick-next:before, .classes-inner .slick-next:before {
        content: " ";
        border-right: 3px solid #ffffff;
        border-top: 3px solid #ffffff;
        width: 10px;
        height: 10px;
        margin-left: 0px;
    }

    .about-yoga-moments .slick-prev:before , .classes-inner .slick-prev:before {
        content: " ";
        border-left: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
        width: 10px;
        height: 10px;
        margin-left: 4px;
    }
    .about-yoga-moments .slick-next:before, .classes-inner .slick-next:before {
        content: " ";
        border-right: 3px solid #ffffff;
        border-top: 3px solid #ffffff;
        width: 10px;
        height: 10px;
        margin-left: 0px;
    }
    button.slick-prev.slick-arrow {
        position: absolute;
        left: -30px;
        top: 50%;
        z-index: 1;
        width: 30px;
        height: 30px;
    }
    button.slick-next.slick-arrow {
        position: absolute;
        right: -30px;
        top: 50%;
        width: 30px;
        height: 30px;
    }
    .talk-to-us li, .support li {
        padding-bottom: 7px;
    }
    .header li.menu-active, .header li {
        width: 100%;
        padding: 14px 0px;
        border-bottom: 1px solid #b9b9b9;
    }
    .mobile-common-btn {
        padding: 30px 0px 10px 0px;
    }
    p {
        font-size: 16px;
        line-height: 21px;
    }
    .brick-section-wrap img {
        height: auto;
        border-radius: 5px;
        width: 431px;
    }
    .index-about-disc p {
        display: -webkit-box;
        max-width: 400px;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 20px;
    }
    .quotation-mark-stories svg {
        width: 15px;
        position: absolute;
        left: 10px;
        top: 10px;
        height: auto;
    }
    .mobile-header-image{
        padding: 20px 20px 30px 20px;
    }
    .mobile-header-image img {
        width: 300px;
        max-width: 100%;
        border-radius: 5px;
    }
    a.btn.mobile-header-btn {
        max-width: 100%;
    }
    .yoga-classes-row .common-btn {
        padding-left: 0px;
    }
    .classes-btn {
        padding: 13px 35px;
    }
    section.video-icons {
        margin: 40px 0;
    }
    .instagram-feed-disc svg {
        width: 30px;
        height: auto;
    }
    .instagram-feed-disc h4 {
        font-size: 14px;
        line-height: 18px;
    }
    .instagram-feed-disc h1 {
        font-size: 15px;
        padding: 10px 0;
    }
    section.instagram {
        margin: 40px 0;
    }
    section.blog-list {
        margin: 40px 0;
    }
    section.about-wrapper {
        margin-top: 40px;
    }
    .about-row{
        display: grid;
        grid-template-columns: auto;
    }
    .about-row.about-item-two {
        padding: 0 10px 0 0;
    }
    .about-row.about-item-one {
        order: 1;
    }
    .about-row.about-item-two {
        order: 2;
        margin-bottom: 30px;
    }
    
    .about-row.about-item-three {
        order: 4;
    }
    .about-row.about-item-four {
        order: 3;
    }
    section.about-instagram {
        margin: 40px 0;
    }
    .instagram-inner {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-gap: 20px;
    }
    .about-banner-data h1 {
        max-width: 100%;
        margin-top: 10px;
    }
    .about-disc.about-disc-data h4 {
        padding: 0px 0 15px 0;
    }
    .aout-disc.about-disc-data {
        padding: 0px 0px;
    }
    .aout-disc.about-disc-data p {
        display: -webkit-box;
        -webkit-line-clamp: 8;
}
.assistance-image-col,.contact-image-col {
    display: none;
}
textarea#contact-message-add {
    min-height: 50px;
    height: 100%;
}
section.contact-disc {
    margin: 50px 0;
}
.message-row{
    margin: 50px 0;
}
.about-row.about-item-three h2.heading {
    padding: 30px 0 10px 0;
}
.recent-row {
    grid-template-columns: auto auto;
    grid-gap: 30px;
    margin: 50px 0;
}
.blog-content-disc {
    flex-direction: column;
}
.other-blog-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
}
.blog-category {
    flex: 1 1 30%;
}
.blog-posts {
    margin-bottom: 38px;
    flex: 1 1 70%;
}
.blog-featured-video {
    flex: 1 1 100%;
}
.blog-image-feedback {
    grid-gap: 30px;
}
.blog-feedback-data {
    margin: 20px 0;
}
.classes-banner h1 {
    margin-bottom: 20px;
}
.bg-yoga svg {
    width: 90px;
    height: auto;
}
.background-shap {
    display: none;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  .main-heading, .title, .heading, .sub-heading ,.mark-title ,.heading-disc, p, h2, h1, h4, a, span, .featured-courses-wrap{ 
    animation: fadeIn 0.5s;
 }
 .classes-pack {
    max-width: 50%;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
.classes-inner {
    animation: fadeIn 0.6s;
}
.header-inner {
    padding: 20px 0;
}
.footer-contact-data {
    padding-top: 25px;
}
.banner-mask {
    padding: 0;
    width: 330px;
    height: 390px;
}
.quotation-mark-stories-right svg {
    width: 15px;
    right: 10px;
    bottom: 10px;
}
.hidden {
    display: none;
  }
  .about-col.about-item-two {
    padding: 0;
}
.assistance-row .heading h1 {
    font-size: 30px;
    line-height: 40px;
}
.main-image img.background-up-image {
    width: 350px;
}
.row-disc {
    padding-bottom: 30px;
}
.instagram-feed {
    column-gap: 20px;
}
img.background-second-image {
    display: none;
}
.classes-pack-data h4 {
    margin-bottom: 60px;
}
.yoga-classes-row h4 {
    font-size: 20px;
    line-height: 25px;
}
.about-instagram .heading {
    margin-top: 20px;
}
.awards-inner {
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
}
.awards-inner img {
    padding: 10px;
}
.blog-list-row {
    grid-template-columns: auto auto;
}
.about-yoga-moments .heading {
    margin-top: 30px;
}
section.about-yoga-moments {
    margin: 30px 0;
}
.yoga-item-block {
    grid-template-columns: auto;
}
.col-item .yoga-block-bg {
    max-width: 100%;
}
.about-disc.about-disc-data {
    height: 100%;
    overflow: visible;
    /* padding: 20px 20px 10px 20px; */
}
.about-col img {
    width: 950px;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.about-colmn {
    flex-direction: column;
    overflow: visible;
    height: 100%;
    width: 100%;
}
.about-col {
    width: 100%;
    justify-content: center;
}
.about-rotate h2.heading {
    font-size: 90px;
    margin-bottom: 68px;
    padding-left: 50px;
    line-height: 80px;
}
.about-rotate span {
    font-size: 16px;
    letter-spacing: 4px;
    top: 52px;
    left: 0px;
}
.about-rotate h2.heading:after {
    content: "";
    width: 1px;
    height: 60px;
    background: #b36f30;
    position: absolute;
    bottom: -50px;
    left: 50%;
}
.main-banner h2.title {
    font-size: 35px;
}
.main-banner h2.title {
    font-size: 40px;
}
.card-contant p {
    padding-bottom: 3px;
    font-size: 15px;
    line-height: 20px;
}
.card-contant h4 {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 25px;
}
.card-contant .common-btn {
    margin-top: 10px;
}
.cw-about-history {
    flex-direction: column-reverse;
}
.cw-history-image {
    width: 100%;
}
.cw-history {
    max-width: 800px;
    width: 100%;
    margin-top: 30px;
}
.cw-history-image img {
    width: 300px;
    height: auto;
}
.cw-about-history-two {
    display: flex;
    flex-direction: column;
}
.cw-about-history.cw-about-history-one {
    padding-bottom: 30px;
}
.cw-contact .cw-img-contact .cw-contect-img-col  {
    display: block;
    width: 50%;
}
.cw-contact-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
}
.cw-img-contact {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.cw-img-contact .contact-image-col img {
    object-fit: cover;
    width: 100%;
    max-height: auto;
    max-width: 100%;
    border-radius: 5px;
    height: auto;
    min-height: auto;
}
.cw-contact-disc {
    max-width: 100%;
    min-height: auto;
    width: 50%;
}
section.cw-contact {
    margin: 20px 0 40px 0;
}
.cw-banner.cw-banner-img {
    width: 360px;
}
.about-contant {
    top: 50%;
    left: 16%;
    padding: 0px 20px;
    width: 40%;
    height: auto;
}
.cw-history p {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 27px;
}
.cw-history-block {
    width: 100%;
    row-gap: 40px;
}
.cw-about-history {
    row-gap: 20px;
}
.cw-about-me .container {
    padding-top: 20px;
}
.bg-yoga {
    top: -10px;
}
.grid-card-wrapper {
    display: grid;
    position: relative;
    row-gap: 30px;
    z-index: 1;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
}
.grid-card-item:nth-child(1) {
    grid-column: 1 / 3;
}
.grid-card-item:nth-child(2) {
    grid-column: 3 / 5;
}
.grid-card-item:nth-child(3) {
    grid-column: 1 / 3;
}
.grid-card-item:nth-child(4) {
    grid-column: 3 / 5;
}
.grid-card-item:nth-child(5) {
    grid-column: 2 / 4;
}
}
    /* end 991 */






 @media only screen and (max-width: 749px){

    /* start 749 */


/* start Video Page */

.video-list-disc {
    padding: 35px 10px 11px 10px;
}
.video-list-disc p {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
}
.video-list-disc span svg {
    color: var(--black);
    width: 12px;
}
.video-list-disc span {
    font-size: 12px;
}
.video-list-disc h4 {
    font-size: 20px;
    line-height: 25px;
    text-align: center;
}
    /* end Video Page */

.index-about-disc {
    /* max-width: 50%; */
    text-align: center;
    max-width: 100%;
}
.newsletter .row-block{
    display: inline-block;
    padding: 10px 0 10px 0;
}
.newsletter h2 {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
}
.newletter-text {
    padding-bottom: 5px;
    font-size: 16px;
    text-align: center;
}

.index-about-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;
}
.index-about-disc h4 {
    max-width: 700px;
    padding-bottom: 10px;
    text-align: center;
}
.index-about-disc h1.heading {
    text-align: center;
}
span.list-type {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 10px;
    text-align: center;
}
span.list-time {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 10px;
    text-align: center
}
section.stories-section {
    margin-top: 30px;
    padding-bottom: 20px;
}
section.brick__section {
    padding: 10px 0 30px 0;
}
.yoga-classes .heading {
    padding-top: 50px;
}
.banner-img {
    padding-right: 50px;
}

.banner-inner {
    flex-direction: column-reverse;
    padding-bottom: 30px;
    row-gap: 20px;
}
.banner-img {
    text-align: center;
    padding: 0;
}
.banner-data {
    width: 100%;
    padding: 0px;
    text-align: center;
}
.title {
    font-size: 33px;
    font-weight: 600;
    margin: 0 auto;
}
.vector-yoga {
    bottom: 270px;
    left: 30px;
}
.home-dot-one-shap {
    position: absolute;
    bottom: 70px;
    right: 60px;
    left: auto;
}
.yoga-classes-row .col-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    white-space: inherit;
}

.yoga-classes-row .classes-time {
    padding-bottom: 0px;
    justify-content: center;
}
.yoga-image img {
    width: 200px;
    height: auto;
}
.yoga-with-devna-row h4 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 5px;
}
.footer-subscribe-form {
    flex: 1 1 100%;
    padding-right: 0;
    margin-top: 10px;
}
.support {
    flex: 1 1 50%;
    padding-right: 0;
    text-align: left;
    margin: 0;
}
.talk-to-us {
    flex: 1 1 50%;
    padding-right: 0;
    margin: 0;
}
.logo-media {
    flex: 1 1 100%;
    padding-right: 0;
}
.footer-logo-img {
    text-align: center;
    padding: 30px 0 15px 0;
}
.footer-inner h4.heading {
    font-size: 18px;
    padding-bottom: 15px;
}
.footer-subscribe-form h4.heading {
    color: var(--black);
}
.footer-leftside-shap {
    max-width: 60px;
    left: 0;
    bottom: 80px;
}
.footer-rightside-shap {
    max-width: 60px;
    right: 0;
    bottom: 0;
}
.featured-courses-wrap {
    padding: 0px;
}
.footer li.menu-active, .footer li {
    width: 100%;
}
.talk-to-us nav ul a:hover {
    color: red;
}
.footer-inner nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.index-about-disc p {
    max-width: 700px;
}
.yoga-classes {
    padding-top: 20px;
    margin-top: -42px;
}
.yoga-classes-row {
    flex-flow: column-reverse;
    row-gap: 30px;
}
.yoga-with-devna-row {
    padding-bottom: 15px;
}
.newsletter .block {
    display: inline-block;
    padding: 20px 0 10px 0;
}
.featured-courses-wrap .heading {
    padding: 30px 0 20px 0;
}
section.newsletter {
    margin: 20px 0;
}
.newsletter h4.heading {
    padding: 20px 0 10px 0;
}
.newsletter .block {
    display: inline-block;
    padding: 20px 0 20px 0;
}
.brick-section-wrap{
    flex-flow: column-reverse;
    row-gap: 30px;
}
.brick-section-wrap .brick-block-grid{
    grid-gap: 20px;
}
.stories-section-inner .item {
    padding: 30px;
}
.stories-section .heading {
    padding: 25px 0 0 0;
}
.comments-user {
    column-gap: 20px;
    margin-top: 20px;
}
.index-about-disc h1.heading {
    padding: 20px 0 10px 0;
}
.featured-courses-wrap .col-block {
    margin: 0 10px;
}
.footer-copyright p::before{
    display: none;
}
.footer-copyright::before {
    content: "";
    display: block;
    border: 1px solid #c6c2b7;
    max-width: 100%;
    width: 750px;
    margin: 0 auto;
    margin-bottom: 10px;
    position: absolute;
    top: -8px;
}
.footer-copyright {
    padding-top: 0;
    justify-content: space-between;
    column-gap: 5px;
    padding-bottom: 10px;
    position:relative;
}
.footer-subscribe {
    margin-bottom: 30px;
}
.footer-social-media-mobile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    margin-top: 10px;
}
.footer-social-media {
    display: none;
}
.footer-contact-data .footer-mail ,.footer-contact-data .footer-contact-disc  {
    display: none;
}
.footer-contact-disc, .footer-mail {
    column-gap: 8px;
    padding-bottom: 12px;
    font-size: 15px;
}
.footer-mail svg {
    width: 18px;
}
.footer-contact-mobile {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 10px;
}
.footer svg {
    width: 14px;
    height: auto;
    fill: var(--black);
}
.footer-copyright p {
    font-size: 13px;
}
.footer-contact-data {
    padding-top: 0px;
}
.btn {
    font-size: 15px;
}
.support h4.heading::after {
    content: "";
    display: block;
    border: 1px solid var(--main-color);
    margin-top: 10px;
    max-width: 50px;
    margin-right: auto;
    margin-left: 0;
}
.courses-banner-inner {
    padding-top: 40px;
}
.courses-package {
    margin: 40px 20px;
}
section.classes-package {
    padding: 20px 20px;
    position: relative;
}
.classes-inner .slick-list.draggable {
    padding: 20px 0px;
}
.subscribe-form button {
    height: 42px;
}
.footer-subscribe-form input[type="text"] {
    height: 42px;
}
.classes-btn {
    font-size: 16px;
    padding: 13px 33px;
}
.about-banner-inner {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.video-banner-data, .about-banner-data {
    width: 100%;
    margin: 20px 0 30px 0;
}
.video-banner-data h1 ,.about-banner-data h1 {
    margin-top: 10px;
}
section.video-list {
    margin: 10px 0 40px 0;
}
.video-icon-col svg {
    max-width: 40px;
    height: auto;
}
section.blog-list {
    margin: 40px 0;
}
section.instagram {
    margin: 40px 0;
}
section.about-instagram {
    margin: 20px 0;
}
.assistance-row .heading h1 {
    text-align: left;
    color: var(--black);
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 10px;
}
.assistance-row-disc {
    padding: 20px;
}
.message-col-disc {
    padding: 20px;
}
.contact-mail , .contact-number, .contact-location {
    margin-bottom: 15px;
}
.message-row{
    column-gap: 0px;
    margin: 40px 0;
}
section.contact-disc {
    margin: 40px 0;
}
.background-shap {
    display: none;
}
.featured-courses-slider .slick-next:before, .classes-inner .slick-next:before {
    content: " ";
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    width: 8px;
    height: 8px;
    margin-left: 3px;
}
.featured-courses-slider .slick-prev:before, .classes-inner .slick-prev:before {
    content: " ";
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    width: 8px;
    height: 8px;
    margin-left: 5px;
}
/* .view-more-block .hidden {
    display: none;
} */
.classes-title {
    width: 100%;
}
.yoga-col.right-alignment {
    order: 2;
    width: 100%;
    padding-right: 0px;
}
.yoga-col.left-alignment {
    order: 3;
    width: 100%;
    padding-left: 0px;
}
.yoga-item-image.yoga-item-wrep {
    display: block;
}
.col-item .yoga-block-bg {
    max-width: 100%;
    width: 100%;
}
.about-rotate h2.heading {
    font-size: 50px;
    margin-bottom: 48px;
    padding-left: 35px;
    line-height: 70px;
}
.about-rotate h2.heading:after {
    height: 50px;
    bottom: -35px;
}
.about-rotate span {
    font-size: 14px;
    letter-spacing: 2px;
    top: 44px;
    left: 0px;
}
.main-banner h2.title {
    line-height: 40px;
}
.grid-card-wrapper {
    grid-template-columns: 100%;
    grid-gap: 0%;
    row-gap: 20px;
}
.about-contant {
    top: 50%;
    left: 16%;
    padding: 0px 20px;
    width: 40%;
    height: auto;
}
.about-image img {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 0%;
    border-radius: 5px;
}
.about-contant {
    top: auto;
    left: auto;
    padding: 20px 20px;
    width: 100%;
    height: auto;
    bottom: auto;
    position: inherit;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    transform: translateX(0);

}
/* section.cw-about-me {
    margin-top: 130px;
} */
.about-rotate {
    margin-bottom: 0px;
}
section.cw-about {
    margin: 30px 0;
}
.about-image- {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
}
.grid-card-wrapper {
    display: grid;
    position: relative;
    row-gap: 20px;
    z-index: 1;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto auto auto;
}
.grid-card-item:nth-child(1) {
    grid-column: auto;
}
.grid-card-item:nth-child(2) {
    grid-column: auto;
}
.grid-card-item:nth-child(3) {
    grid-column: auto;
}
.grid-card-item:nth-child(4) {
    grid-column: auto;
}
.grid-card-item:nth-child(5) {
    grid-column: auto;
}

}
        
    /* end 749 */

    /* ---------#-------#---------#------#----------- */
    
@media only screen and (max-width: 600px){

    .col-title {
        text-align: left;
        flex-direction: row-reverse;
    }
    .col-title svg {
        width: 150px;
        max-width: 100%;
    }

    .col-title p {
        color: white;
    }
    .col-title h4 {
        color: white;
    }
    .yoga-classes {
        padding-top: 20px;
        margin-top: -35px;
    }
    .btn {
        font-size: 14px;
    }
    .classes-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    .instagram-feed-disc h4 {
        font-weight: 600;
    }
    
    .instagram-feed-disc svg {
        width: 30px;
    }
    .instagram-feed-disc h4 {
        font-size: 13px;
        line-height: 16px;
    }
    .instagram-feed-disc h1 {
        font-size: 15px;
        padding: 10px 0;
    }
    .blog-category {
        flex: 1 1 100%;
    }
    .blog-posts {
        margin-bottom: 30px;
        flex: 1 1 100%;
    }
    .recent-row {
        grid-template-columns: auto;
        grid-gap: 20px;
        margin: 40px 0;
    }
    .blog-post-inner {
        column-gap: 10px;
    }
    .classes-pack {
        max-width: 100%;
    }
    .blog-list-data {
        padding: 20px 10px;
    }
    .banner-mask {
        padding: 0;
        width: 280px;
        height: 340px;
    }
    .yoga-with-devna-row svg {
        min-width: 90px;
    }
    .col-title svg {
        width: auto;
    }
    .cw-contact-disc {
        padding: 10px;
    }
   
    }
    /* end 600 */


@media only screen and (max-width: 549px){


    /* ---------#-------#---------#------#----------- */
    /* start Video Page */


.video-list-row {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 30px;
}
.brick-section-wrap .brick-block-grid{
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
}
.banner-inner {
    padding-bottom: 30px;
    row-gap: 20px;
}
.awards-inner {
    grid-template-columns: auto auto;
}
    /* end Video Page */
        
    /* ---------#-------#---------#------#----------- */

    .main-logo img {
        width: 100px;
        max-width: 100%;
    }
    .header-inner {
        padding: 10px 0;
    }
    .home-dot-shap {
        right: 70px;
    }
    .vector-yoga svg {
        width: 50px;
        transition: all 0.8s, color 0.3s 0.3s;
    }
    .yoga-with-devna-row {
        padding-bottom: 10px;
    }
    main#main {
        padding-top: 65px;
    }
    .classes-btn {
        padding: 12px 23px;
        background: var(--main-color);
        border-radius: 5px;
        transition: all 0.8s, color 0.3s 0.3s;
        color: #ffffff;
        border-radius: 5px;
        display: inline-block;
        border: none;
        text-align: center;
        text-transform: uppercase;
    }
    .brick-section-wrap img {
        height: auto;
        border-radius: 5px;
        width: 460px;
    }
    .btn {
        padding: 12px 33px;
        font-size: 14px;
    }
    .yoga-classes .heading {
        padding-top: 42px;
    }
    .yoga-classes-row {
        flex-flow: column-reverse;
        row-gap: 20px;
    }
    .yoga-classes-row .col {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 18px;
    }
    .item.image-disc-text {
        padding: 20px 10px;
    }
    .yoga-with-devna-wrap {
        padding-top: 3px;
    }
    .yoga-classes-row h4 {
        margin: 5px 0 5px 0;
    }
    section.newsletter {
        margin: 30px 0;
    }
    .newsletter .block {
        padding: 30px 0 30px 0;
    }
    .stories-section .heading {
        padding: 20px 0 5px 0;
    }
    p.title-disc {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 18px;
    }
    .title {
        font-size: 30px;
        line-height: 30px;
    }
    .brick-block h2.heading {
        padding: 15px 0 10px 0;
    }
    .index-about-disc h4 {
        padding-bottom: 5px;
    }
    .index-about-disc h1.heading {
        padding: 20px 0 5px 0;
    }
    .vector-yoga {
        bottom: 270px;
        left: 20px;
    }
    .footer-logo-img img {
        max-width: 100%;
        height: auto;
        width: 110px;
    }
    .featured-courses-wrap h4 {
        line-height: 20px;
    }
    h4 {
        line-height: 20px;
    }
    .talk-to-us li  a, .support li a {
        font-size: 15px;
    }
    .footer-inner h4.heading::after,  .support h4.heading::after {
        margin-top: 6px;
    }
    .classes-btn {
        font-size: 14px;
        padding: 11px 24px;
    }
    .blog-list-row {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 20px;
    }
    .instagram-feed-disc h1 {
        font-size: 13px;
        padding: 8px 0;
    }
    .instagram-feed-disc h4 {
        font-size: 10px;
        line-height: 12px;
    }
    .instagram-feed-disc svg {
        width: 25px;
    }
    .instagram-inner {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 10px;
    }
    .aout-disc h2.heading {
        font-size: 22px;
        line-height: 25px;
        padding: 20px 0px 14px 0;
    }
    .aout-disc.about-disc-data h4 {
        padding: 10px 0 10px 0;
    }
    .message-col-input {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 20px;
    }
    .assistance-row .heading h1 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 5px;
    }
    .blog-post-disc h4 {
        font-size: 14px;
        line-height:18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .blog-update-time span {
        font-size: 14px;
    }
    .blog-user-comment {
        padding: 20px;
    }
    .blog-image-feedback {
        grid-gap: 10px;
    }
    .other-blog-content {
        margin-top: 30px;
    }
    .blog-list-data {
        padding: 20px;
    }
    .about-row.about-item-three h2.heading {
        padding: 30px 0 0px 0;
    }
    .classes-pack-data {
        padding: 20px 10px;
    }
    @keyframes fadeIn {
        50% { opacity: 0; }
        100% { opacity: 1; }
      }
      .classes-inner { 
        animation: fadeIn 0.5s;
     }
     .main-image img.background-up-image {
        width: 350px;
    }
    section.classes-package {
        margin: 0 20px;
    }
.footer-social-media-mobile {
    margin-top: 6px;
}
img.background-up-image {
    width: 237px;
}
img.background-back-image {
    max-width: 280px;
}
.yoga-item-image img.background-up-image {
    width: 290px;
}
.col-title h4 {
    margin-bottom: 5px;
}
.awards-inner {
    grid-gap: 10px;
}
.awards-inner img {
    padding: 10px;
}
.about-yoga-moments .heading {
    margin-top: 20px;
}
section.about-yoga-moments {
    margin: 20px 0;
}
.about-row {
    grid-gap: 20px;
}
.about-rotate span {
    font-size: 12px;
    letter-spacing: 0px;
    top: 15px;
    left: 0px;
}
.about-rotate h2.heading {
    font-size: 30px;
    margin-bottom: 35px;
    padding-left: 25px;
    line-height: 40px;
    padding-top: 5px;
}

.about-rotate h2.heading:after {
    height: 40px;
    bottom: -28px;
}
.col-item .yoga-block-bg {
    padding: 10px 10px;
    min-height: 100px;
}
.contact-message-add {
    margin-top: 20px;
    width: 100%;
}
.cw-contact .cw-img-contact .cw-contect-img-col {
    width: 100%;
}
.cw-contact-disc {
    width: 100%;
}
.cw-img-contact {
    flex-direction: column;
}
.cw-history p {
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
}
.grid-card-heading {
    margin-top: 10px;
}
.toast-icon img{
    height: 24px;
    width: 24px;
    max-width: 24px;
  }
  .toast {
    top: 75px !important;
    right: 13px;
    max-width: 410px;
    padding: 10px 10px 10px 8px;
}
.yoga-with-devna-row img.background-back-image {
    max-width: 280px;
    text-align: center;
    width: 100%;
}
}

  /* ------ end 549 ------ */



@media only screen and (max-width: 480px){

    .container{
        width: 100%;
        max-width: 1700px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .home-dot-shap {
        right: 20px;
    }
    .home-dot-one-shap, .home-dot-shap img {
        width: 30px;
    }
    .about-ls-shap {
        max-width: 50px;
        left: 0;
        top: 130px;
    }
    .about-rs-shap {
        max-width: 50px;
        right: 0;
        bottom: 60px;
    }
    p {
        font-size: 14px;
        line-height: 20px;
    }
    .index-about-b-wave img {
        position: absolute;
        height: 16px;
        max-width: 100%;
    }
    .common-wave img{
        height: 16px;
    }
    .heading {
        font-size: 23px;
        line-height: 28px;
        padding: 15px 0;
    }
    h4 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 500;
    }
    section.brick__section {
        padding: 0px 0 30px 0;
    }
    .newsletter .block {
        padding: 30px 0 30px 0;
    }
    .classes-time svg {
        width: 16px;
        height: auto;
    }
    .yoga-with-devna-wrap .heading {
        padding: 20px 0 10px 0;
    }
    .footer-copyright {
        flex-direction: column;
    }
    .classes-banner-wave img, .newsletters-bottom-wave img {
        width: 100%;
        height: 16px;
    }
    .footer-contact-mobile {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }
    .pack-time, .pack-date {
        column-gap: 5px;
        margin-bottom: 10px;
    }
    .classes-pack-data span {
        font-size: 14px;
    }
    .classes-pack-data p {
        padding: 5px 0px 10px 0;
    }
    .video-icon-row {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 20px;
    }
    .video-icon-col h4 {
        padding-top: 10px;
    }
    section.video-icons {
        margin: 20px 0;
    }
    .instagram-feed-disc h1 {
        font-size: 8px;
        padding: 0px 0;
    }
    .instagram-feed-disc h4 {
        font-size: 5px;
        line-height: 10px;
    }
    .instagram-feed-disc svg {
        width: 10px;
    }
    .assistance-row .heading h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    .assistance-row .heading {
        padding-top: 0px;
    }
    .banner-mask {
        padding: 0;
        width: 240px;
        height: 300px;
    }
    .mask-banner {
        padding: 0;
        width: 237px;
        height: 288px;
    }
    .newsletters-bg-wave img .newsletters-bottom-bg-wave img{
    width: 100%;
    height: 16px;
}
.featured-courses-slider button.slick-prev.slick-arrow ,.featured-courses-slider button.slick-next.slick-arrow, .classes-inner button.slick-prev.slick-arrow, .classes-inner button.slick-next.slick-arrow {
    display: none !important;
}
section.featured-courses {
    padding: 0;
}
.courses-package {
    margin: 40px 0px;
}
.classes-pack {
    padding: 10px;
}
section.classes-package {
    margin: 0;
}
.index-stories-wrapper .item {
    width: auto;
    margin: 20px 0;
}
.stories-wrap .item {
    padding: 20px;
}
.comment-user-data p {
    font-size: 12px;
    line-height: 20px;
}
.comment-user-data h4 {
    font-size: 15px;
    line-height: 18px;
}
.comments-stories .redmorebtn {
    font-size: 14px;
}
.yoga-with-devna-row svg {
    min-width: 60px;
}
.instagram-feed {
    column-gap: 10px;
}
.yoga-image img {
    width: 80px;
}
.yoga-image {
    min-width: 80px;
    transition: all .6s;
}
.awards-inner {
    grid-template-columns: auto;
}
.awards-inner {
    grid-gap: 20px;
}
.about-yoga-moments button.slick-prev.slick-arrow.slick-disabled {
    display: none !important;
}
.about-yoga-moments button.slick-next.slick-arrow {
    display: none !important;
}
.about-yoga-moments .instagram-inner button.slick-prev , .about-yoga-moments .awards-inner button.slick-prev {
    display: none !important;
}
section.about-yoga-moments {
    padding: 0px;
}
.card-contant p {
    padding-bottom: 3px;
    font-size: 14px;
    line-height: 20px;
}
.card-contant h4 {
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 21px;
}
.cw-banner.cw-banner-img {
    width: 360px;
}
.cw-banner.cw-banner-img {
    width: 250px;
}
img.main-top-image {
    width: 240px;
}
}
/* -------- end 480--------- */

@media only screen and (min-width: 992px){
    .mobile-header-toggel-btn {
        display: none;
    }
    .mobile-header-nav {
        display: none;
    }
    .main-image img.background-up-image {
        display: none;
    }

}
@media only screen and (min-width: 749px){
.footer-contact-mobile ,.sfooter-social-media-mobile {
    display: none;
}
.footer-social-media-mobile {
    display: none;
}
}
 /* ---------#-------#---------#------#----------- */



 @media (min-width: 1200px) and (max-width: 1570px) {
    .card-contant {
        display: block;
    }
}
@media (min-width: 749px) and (max-width: 1200px) {
    .card-contant {
        display: block;
    }
}
@media (min-width: 200px) and (max-width: 449px) {
    .card-contant {
        display: block;
    }
}



    /* end responsive */



