/* SLICKJS CUSTOM */
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.slick-dots>li>button {
    border: none;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border-radius: 100%;
    color: transparent;
    border: 1px solid var(--app-bc-primary);
    outline: none;
}

.slick-dots>li.slick-active>button {
    background-color: var(--app-bc-primary);
    padding: 0px;
    opacity: 1;
    color: var(--app-bc-primary);
}

.slick-dots>li {
    padding: 0px 2px;
}

/* COMMON */
body {
    background-color: #fff;
    color: #1c1a1d;
}

.container-xxl {
    max-width: 1650px;
}

:root {
    --app-bc-primary-s1: #f9f6f1;
    --app-bc-primary: #fd790e;
    --app-bc-secondary: #af5010;
}

.app-text-cursive {
    font-family: "Alex Brush", cursive;
}

.app-bc-primary {
    background-color: var(--app-bc-primary);
}

.app-ff-1 {
    font-family: "Cormorant";
}

.app-ff-2 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.app-fs-1 {
    font-size: 50px;
    font-weight: 500;
}

.app-btn {
    position: relative;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 3px;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.app-btn:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.app-btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.app-btn::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--app-bc-secondary);
    border-radius: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(.86, 0, .07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(.86, 0, .07, 1);
    transition: transform 500ms cubic-bezier(.86, 0, .07, 1);
    transition: transform 500ms cubic-bezier(.86, 0, .07, 1), -webkit-transform 500ms cubic-bezier(.86, 0, .07, 1);
    -webkit-transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    z-index: -1;
}

.app-btn-lg {
    padding: 23px 53px;
}

.app-btn-md {
    padding: 15px 20px;
}

.app-text-bg {
    -webkit-text-stroke: 1px #00000038;
    -webkit-text-fill-color: transparent;
    font-size: 140px;
    position: absolute;
    z-index: 0;
    font-family: "Cormorant";
    letter-spacing: 30.5px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 121.1px;
}

/* HEADER */
.header-navigation-mobile {
    display: none !important;
}

.header-main > button {
    display: none;
}

header {
    width: 100%;
    background-color: var(--app-bc-primary-s1);
    top: -100px;
    transition: 0.2s all ease;
}

header.sticky {
    position: sticky;
    top: 0px;
    z-index: 100;
    left: 0px;
    width: 100%;
    box-shadow: 0px 3px 5px 0px #00000063;
}

header .header-mini {
    display: flex;
    flex-direction: row;
}

header .header-mini .header-navigation-right {
    margin-left: auto;
}

header .header-mini>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

header .header-mini a {
    color: inherit;
}

header .header-mini .header-navigation-right span {
    display: inline-block;
    margin-right: 20px;
}

header .header-mini .header-navigation-right span, header .header-mini a {
    font-size: 14px;
    padding: 10px 5px;
}

.header-main {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-main .header-actions {
    border-left: 1px solid var(--app-bc-primary-s1);
    padding: 25px;
    margin-left: auto;
}

.header-main .header-navigation {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0px;
    margin: 0px;
    align-items: center;
}

.header-main .header-logo {
    height: 100px;
    padding: 5px 0px;
    width: 150px;
    text-align: center;
}

.header-main .header-logo>img {
    height: 100%;
}

.header-main .header-navigation li {
    position: relative;
}

.header-main .header-navigation li ul {
    position: absolute;
    min-width: 200px;
    background-color: #fff;
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: none;
    box-shadow: 0 8px 9px -4px rgb(0 0 0 / 30%), 0 4px 18px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;
    z-index: 101;
}

.header-main .header-navigation li:hover>ul {
    display: inline-block;
}

.header-main .header-navigation>li>ul {
    left: 0px;
    top: 100%;
}

.header-main .header-navigation>li>a, .header-main .header-navigation>li>label {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    line-height: 25px;
    display: inline-block;
    padding: 20px;
    position: relative;
}

.header-main .header-navigation>li>label:before {
    content: "\f107";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 16px;
    z-index: 5;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: 16px;
    transition: 0.5s all ease;
    text-align: center;
}

.header-main .header-navigation>li:hover>label:before {
    transform: rotate(180deg)translate(0px, -5px);
}

.header-main .header-navigation ul>li>a, .header-main .header-navigation ul>li>label {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    transition: 0.5s all ease;
}

.header-main .header-navigation ul>li>ul {
    left: 100%;
    top: 0px;
}

.header-main .header-navigation li>ul li {
    border-bottom: 1px solid var(--app-bc-primary-s1);
}

.header-main .header-navigation ul>li:hover>a, .header-main .header-navigation ul>li:hover>label {
    color: var(--bs-danger);
}

header.open .header-navigation {
    position: fixed;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #fff;
    visibility: visible;
    transform: translate(0px, 0px);
    opacity: 1;
    z-index: 101;
    overflow: auto;
    align-items: flex-start;
}

.header-navigation-mobile {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    padding: 10px 10px;
}

.header-navigation-mobile > a > img {
    max-height: 50px;
}

.header-navigation-mobile > button {
    margin-left: auto;
    border: none;
    height: 50px;
    width: 50px;
    outline: none;
    background-color: transparent;
    font-size: 20px;
}

header.open .header-main .header-navigation>.header-navigation-mobile > a {
    padding: 0px !important;
}

/* MAIN SECTION */
.main-section {
    background-color: var(--app-bc-primary-s1);
    padding: 50px 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}


.main-oval-animation {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.main-oval-animation .bounce-y {
    position: absolute;
    z-index: 1;
    bottom: 0px;
}

.main-oval {
    border-radius: 500px;
    width: 100%;
    overflow: hidden;
    padding: 25px;
    border: 1px solid #ddd;
    -webkit-animation: round-shape-anim 1s linear infinite;
    animation: round-shape-anim 1s linear infinite;
    -webkit-filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
    -moz-filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
    filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
}

.main-oval > div > img {
    max-width: 100%;
}

.main-oval > div {
    border-radius: 500px;
    overflow: hidden;
}

.main-aura {
    border-radius: 100%;
    background-color: #fff;
    text-align: center;
    -webkit-animation: round-shape-anim 1s linear infinite;
    animation: round-shape-anim 1s linear infinite;
    -webkit-filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
    -moz-filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
    filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
}

.main-aura>img {
    max-width: 100%;
    max-height: 100%;
}

.main-meta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.main-meta > ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
}

.main-meta > ul > li {
    padding: 5px 0px 5px 35px;
    position: relative;
}

.main-meta > ul > li:before {
    content: "";
    width: 35px;
    position: absolute;
    left: 0px;
    background-image: url(/assets/website/images/icons/check.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    top: 0px;
}

.main-meta .app-text-bg {
    top: 0%;
    left: -50%;
}

.main-meta>h1 {
    font-weight: bold;
    font-size: 60px;
}

.main-meta>p {
    font-size: 20px;
}

.main-meta .app-text-cursive {
    font-size: 25px;
}

.main-meta>.bounce-x {
    position: absolute;
    top: 0px;
    right: 0px;
}

/* FOOTER */
footer {
    background-size: cover;
    background-position: center;
}

.footer-main {
    backdrop-filter: blur(4px);
    background-color: #0000002b;
    padding: 50px 0px;
    color: #fff;
}

.footer-main a {
    color: #fff;
    text-decoration: none;
}

.footer-main ul {
    list-style: none;
    padding: 0px;
}

.footer-icon-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 15px;
}

.footer-icon-content>img {
    max-height: 18px;
    border-radius: 5px;
    width: 30px;
    margin-left: 5px;
}

.footer-icon-content>i {
    display: inline-block;
    width: 30px;
    height: 18px;
    background-color: #fff;
    color: var(--app-bc-primary);
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.footer-icon-content>p {
    margin: 0px;
}

.footer-content-right {
    text-align: end;
}

.footer-center {
    text-align: center;
}

.footer-center>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-center>ul>li>a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: var(--app-bc-primary);
    font-size: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-center>ul>li {
    padding: 10px;
}

.footer-center>a {
    margin-bottom: 15px;
    display: block;
}

.footer-mini {
    background-color: var(--app-bc-primary-s1);
    text-align: center;
    padding: 15px 0px;
}

.footer-mini>p {
    margin: 0px;
}

.footer-mini>p>a {
    display: inline-block;
    padding: 0px 10px;
}

.footer-content-left>ul li>a {
    padding: 5px 0px;
    display: block;
    font-size: 18px;
}

.footer-content-left>ul li>a:hover {
    color: var(--app-bc-primary);
}

/* ABOUT SECTION */
.about-section {
    position: relative;
    padding: 100px 0px;
}

.about-meta>.bounce-y {
    position: absolute;
    right: 0px;
}

.app-subtitle {
    font-size: 25px;
    color: var(--app-bc-primary);
}

.about-meta {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.about-meta>p {
    margin: 0px;
}

/* COURCES SECTION */
.cource-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cource-thumbnail>.ratio>div>img {
    position: absolute;
    max-width: 100%;
    right: 0px;
}

.cource-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--app-bc-primary);
    text-align: center;
    padding: 10px;
}

.cource-overlay>h3 {
    margin: 0px;
}

.cource-thumbnail:hover .cource-overlay {
    border-color: transparent;
}

.cource-thumbnail>.ratio>div>span {
    background-color: var(--app-bc-primary-s1);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: end;
    transition: 0.3s all ease;
}

.cource-thumbnail:hover>.ratio>div>span {
    background-color: transparent;
}

.cource-thumbnail>.ratio>div>span:before {
    content: "";
    width: 100%;
    height: 0%;
    background-color: #fd790ec7;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: 0.3s all ease;
}

.cource-thumbnail:hover>.ratio>div>span:before {
    height: 100%;
}

.cource-thumbnail>.ratio>div {
    border-radius: 10px;
    overflow: hidden;
}

.cource-thumbnail:hover>.ratio>div>span>img, .cource-thumbnail:hover .cource-overlay>img {
    filter: brightness(0) invert(1);
}

.cource-thumbnail:hover .cource-overlay {
    color: #fff;
}

/* VIDEO SECTION */
.video-section {
    padding: 182px 0 173px;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-meta>h3 {
    font-size: 50px;
    margin-bottom: 50px;
}

.video-play {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video-play>a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: var(--app-bc-primary);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    color: #fff;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    position: relative;
}

.video-play>a.ripple:before {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute
}

.video-play>a.ripple:after {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute
}

.video-play>h4 {
    margin-bottom: 0px;
    margin-right: 15px;
}

.video-play>img {
    position: absolute;
    margin-top: 75px;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item>div {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 50px;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000061;
    transform: scale(0);
    transition: 0.3s all ease;
    border-radius: 100%;
}

.gallery-item:hover>div {
    transform: scale(1);
    border-radius: 0%;
}

.gallery-item:hover>img {
    transform: scale(1.1);
}

.gallery-item>img {
    transition: 0.3s all ease;
}

/* YOGA TYPE SECTION */
.types-section {
    padding: 100px 0px;
}

.types-section ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.types-section ul>li>div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.types-animation {
    position: relative;
}

.types-animation>span {
    position: absolute;
    right: 0px;
}

.types-animation>img {
    border-radius: 300px;
}

.types-section ul>li>div>div {
    display: flex;
    flex-direction: column;
}

.types-section ul>li>div>div>label {
    font-weight: 600;
}

.types-section ul>li>div>div>p {
    margin: 0px;
    color: var(--app-bc-primary);
}

.types-section ul>li {
    padding: 25px 0px;
    border-bottom: 1px dashed var(--app-bc-primary);
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.contact-section-bg {
    position: absolute;
    right: 0px;
    height: 100%;
    width: 70%;
    top: 0px;
    background-image: linear-gradient(270deg, black, transparent);
}

.contact-section input, .contact-section textarea {
    background-color: transparent;
    color: #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ffffff57;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px;
    outline: none;
    transition: 0.2s all ease;
}

.contact-section input::placeholder, .contact-section textarea::placeholder {
    color: #ffff;
}

.contact-section input:focus, .contact-section textarea:focus {
    border-bottom: 1px solid #fff;
}

/* TESTIMONIAL SECTION */
.testimonials-section {
    padding: 100px 0px;
}

.testimonials-section .animated-backgrounds {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.testimonials-section .slick-slider {
    position: relative;
    z-index: 1;
}

.testimonials-section .animated-backgrounds>span {
    position: absolute;
    width: 100px;
    height: 100px;
    background-size: contain;
    z-index: 0;
}

.testimonials-section .animated-backgrounds>span:nth-child(2) {
    top: 100px;
    left: -100px;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-section .animated-backgrounds>span:nth-child(1) {
    left: 15px;
}

.testimonials-section .animated-backgrounds>span:nth-child(3) {
    left: 30px;
    bottom: -50px;
}

.testimonials-section .animated-backgrounds>span:nth-child(4) {
    right: 0px;
}

.testimonials-section .animated-backgrounds>span:nth-child(5) {
    right: 0px;
    bottom: -100px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.testimonial-meta>p {
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    line-height: 36.33px;
}

.testimonial-meta>strong {
    font-size: 24px;
    font-weight: 300;
}

.testimonial-meta>strong>span {
    font-size: 18px;
}

/* TEAM SECTION */
.team-section {
    padding: 100px 0px;
}

.team-meta {
    border-radius: 91% 61% 68% 84% / 73% 62% 89% 79%;
    overflow: hidden;
    position: relative;
}

.team-meta .team-meta-overlay {
    position: absolute;
    transition: 0.3s all ease;
    transform: scale(0);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #fd790e80;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.team-meta:hover .team-meta-overlay {
    transform: scale(1);
    border-radius: 91% 61% 68% 84% / 73% 62% 89% 79%;
}

.team-meta .team-meta-overlay>strong {
    font-size: 25px;
    font-weight: 400;
}

/* BLOG THUMBMAIL */
.blogs-section {
    padding: 100px 0px;
}

.blog-thumbnail {
    text-decoration: none;
    color: #000;
    padding: 15px;
}

.blog-thumbnail-img {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumbnail-img>img {
    min-width: 100%;
    min-height: 100%;
}

.blog-thumbnail-meta {
    display: flex;
    flex-direction: column;
    padding: 10px 0px 5px 0px;
}

.blog-thumbnail:hover .blog-thumbnail-meta>span {
    color: var(--app-bc-primary);
}

.blog-thumbnail .blog-thumbnail-meta>span {
    font-size: 20px;
}

.blog-thumbnail .blog-thumbnail-meta>strong {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.blog-thumbnail .blog-thumbnail-meta>strong>span {
    margin-left: 10px;
    font-weight: 100;
    font-size: 16px;
}


/* HIGHILTS SECTION */

.highlights-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: 0.2s all ease;
    cursor: pointer;
}

.highlights-thumb:hover {
    color: var(--app-bc-primary);
}

.highlights-section {
    padding: 100px 0px;
}

/* ACCOMOTAION SECTION */


/* SINGLE IMAGE SLIDER */
.image-slider {
    width: 100%;
    margin: auto;
}


.image-slider .slick-arrow {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    border: none;
    background-color: var(--app-bc-primary);
    color: #fff;
    z-index: 1;
}

.image-slider .slick-prev {
    left: 0px;
}

.image-slider .slick-next {
    right: 0px;
}


/* VIDEO SECTION */

.animated-video-segment > .video-image {
    border-radius: 150px;
    overflow: hidden;
}

.animated-video-segment > .video-image > img {
    max-width: 100%;
}

.animated-video-segment {
    position: relative;
    border-radius: 150px;
    overflow: hidden;
}

.animated-video-segment > .video-play {
    position: absolute;
    top: 0px;
    bottom: 0px;
    background-color: #0000006e;
    color: #fff;
}



/* YOGA STYLE */

.style-section {
    padding: 100px 0px;
}

.style-segment {
    border: 1px solid #ddd;
    border-radius: 150px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.style-segment-bg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-segment-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--app-bc-primary);
    background-color: var( --app-bc-primary-s1);
    transition: 0.3s all ease;
}

.style-segment:hover .style-segment-overlay {
    background-color: #00000047;
    color: #fff;
}

.style-segment:hover .style-segment-bg > img {
    transform: scale(1) rotate(0deg);
}

.style-segment .style-segment-bg > img {
    transform: scale(1.5) rotate(45deg);
    transition: 0.3s all ease;
}

.style-segment:hover .style-segment-overlay>img {
    opacity: 0;
    transform: rotate(-45deg);
}

.style-segment .style-segment-overlay>img {
    opacity: 1;
    transition: 0.3s all ease;
    transform: rotate(0deg);
}

/* Benifits section */


.benifits-section-animations > span {
    width: 250px;
    height: 250px;
    display: inline-block;
    z-index: 1;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0px;
}

.benifits-section-animations > span:nth-child(2) {
    right: 0px;
}



/* RESPONSIVE  */
@media only screen and (max-width: 600px) {
    header .header-main {
        background-color: transparent;
        height: 100px;
        overflow: hidden;
        padding: 0px 15px;
    }

    header .container-xxl {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

    .header-main > button {
        display: inline-block;
        margin-left: auto;
        width: 50px;
        height: 50px;
        border: none;
        background-color: transparent;
        font-size: 26px;
        min-width: 50px;
    }

    .header-main .header-navigation {
        visibility: hidden;
        overflow: hidden;
        transform: translate(0px, 150px);
        transition: 0.3s all ease;
        opacity: 0;
    }

    .header-main .header-navigation li.open>ul {
        display: block !important;
    }

    .header-main .header-navigation li ul {
        width: 100%;
        box-shadow: unset;
        position: relative;
        top: 0px;
        left: 0px !important;
        display: none !important;
    }

    .header-main .header-actions, header .header-mini,.types-animation ,.main-meta>.bounce-x ,.app-text-bg {
        display: none;
    }

    .header-main .header-navigation>li:hover>label:before {
        transform: rotate(180deg) translate(0px, -5px);
    }

    .header-main .header-navigation>li>label:before {
        right: 20px;
        top: 20px;
        bottom: unset;
    }

    .header-main .header-navigation >li {
        padding-left: 5px !important;
    }

    .header-main .header-navigation li {
        padding-left: 15px;
        width: 100%;
        display: flex !important;
        flex-direction: column;
    }

    .header-main .header-navigation>li>a,.header-main .header-navigation>li>label {
        width: 100%;
    }

    .testimonials-section .animated-backgrounds>span:nth-child(4) {
        right: 30px;
    }

    .testimonials-section .animated-backgrounds>span:nth-child(5) {
        right: 15px;
    }

    .footer-content-right {
        text-align: center;
    }

    .footer-icon-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-content-left.footer-content {
        text-align: center;
    }

    .testimonial-meta>p {
        font-size: 16px;
    }

    .testimonials-section .animated-backgrounds {
        height: 140%;
        margin-top: -30%;
    }
}
