

@import url('https://fonts.cdnfonts.com/css/league-script');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: 'LeagueScript-Regular';
    src: url('{{asset("frontend/fonts/LeagueScript-Regular.ttf")}}') format('truetype');
}
@font-face {
    font-family: 'Gotu-Regular';
    src: url('{{asset("frontend/fonts/Gotu-Regular.ttf")}}') format('truetype');
}
@font-face {
    font-family: 'Archivo-VariableFont_wdth,wght';
    src: url('{{asset("frontend/fonts/Archivo-VariableFont_wdth,wght.ttf")}}') format('truetype');
}
@font-face {
    font-family: 'Archivo-Black';
    src: url('{{asset("frontend/fonts/static/Archivo/Archivo-Black.ttf")}}') format('truetype');
}
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
body {
  font-family: 'Quicksand', sans-serif!important;
  color: #444444;
}
.wrapper ul{
    margin-bottom:0em!important;
}

a {
  color: #ff4a17;
  text-decoration: none;
  /*font-family: "Raleway", sans-serif!important;*/
  font-family: 'Quicksand', sans-serif!important;
}
.btn{
     /*font-family: "Raleway", sans-serif!important;*/
     font-family: 'Quicksand', sans-serif!important;
}

a:hover {
  color: rgba(194,87,42,255);
  text-decoration: none;
}
@media(max-width:768px){
.modal-dialog.modal-lg{
    top:35%!important;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif!important;
  font-weight:700;
}
p {
    font-family: 'Quicksand', sans-serif!important;
    font-weight:500!important;
    
    /*font-family: "Raleway", sans-serif!important;*/
}
ul li{
    /*font-family: "Raleway", sans-serif!important;*/
    font-family: 'Quicksand', sans-serif!important;
}
#topPromoBar{
     /*font-family: "Raleway", sans-serif!important;*/
     font-family: 'Quicksand', sans-serif!important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgba(194,87,42,255);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}



.back-to-top.active {
  visibility: visible;
  opacity: 1;
  transition: .7s;
}
.back-to-top:hover {
    background: rgba(194,87,42,255);
    color: #fff;
    transition: .7s;
    transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff4a17;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        /*background: rgba(21, 34, 43, 0.85);*/
        background: #F2E9E3;
        padding: 10px 0;
    }

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color:#000000;
 /* color: rgba(255, 255, 255, 0.9);*/
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: rgba(194,87,42,255);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000000;
}

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #FFDFCD;
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 40px;
        color: rgba(194,87,42,255);
        border: 2px solid #FFDFCD;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: rgba(194,87,42,255);
            border-color: rgba(194,87,42,255);
        }

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #F2E9E3;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff4a17;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: rgba(194,87,42,255);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff4a17;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff4a17;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url('../img/therayog-home-banner.jpg') top center;
    /* background: url("../img/hero-bg.jpg") top center;*/
    background-size: cover;
    position: relative;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#backgroundurl{
     background: url(../img/shop-background.png);
}

#hero:before {
  content: "";
 /* background: rgba(13, 20, 26, 0.7);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 1200px){
    /*#hero:not(.home) .hero-container {*/
    /*    justify-content: flex-end;*/
    /*}*/
    #hero:not(.home) {
        height: auto !important;
        max-height: 260px;
        min-height: 258px;
    }
    #btn-popup {
        padding: 10px;
    }
    /*.nav-links li:hover .drop-menu, .nav-links li:hover .mega-box, .nav-links li:hover .mega-box1 {*/
    /*    transition: all 0.3s ease;*/
    /*    top: 45px !important;*/
    /*    opacity: 1;*/
    /*    visibility: visible;*/
    /*    border-top: 20px solid #0000;*/
    /*}*/
}
.form-control {
        padding: 12px;
    border-radius: 29px;
}
.modal button[type=button] {
    background: rgba(194,87,42,255);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px #5c4e4e;
    font-size: 27px;
    line-height: 16px;
    color: #fff;
    transition: .7s;
}
.modal button[type=button]:hover{
    /*transform: rotate(90deg);*/
    transition: .7s;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #000000;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff4a17;
  border: 2px solid #ff4a17;
}

#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #ff4a17;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    /*font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;*/
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.about .count-box {
  padding: 60px 0;
  width: 100%;
}

.about .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #365870;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
  color: #477392;
}

.about .content {
  font-size: 15px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #263d4d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 24px;
  color: #ff4a17;
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff4a17 50%, rgba(255, 74, 23, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 74, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ff4a17;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.about-boxes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container,
.about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

.about-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #ff4a17;
  border-radius: 4px;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: #ff4a17;
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #ff4a17;
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ff4a17;
}

.features .nav-link.active {
  background: #ff4a17;
  color: #fff;
  border-color: #ff4a17;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff4a17;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #5c8eb0;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #365870;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #ff4a17;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #ff4a17;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #ff4a17;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ff4a17;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff4a17;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 34, 43, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #477392;
}

.team .member .social a:hover {
  color: #ff4a17;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #ff4a17;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ff4a17;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ff4a17;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff5e31;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f0f4f8;
  min-height: 40px;
  margin-top: 78px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 52px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
  .footer-top{
      margin-top:30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #FAF9F7;
    padding: 0 0 30px 0;
    color: #344033;
    font-size: 14px;

}

    #footer .footer-top {
        background: #FAF9F7;
        border-bottom: 1px solid #FAF9F7;
        padding: 60px 0 30px 0;
    }

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

    #footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Raleway", sans-serif;
        color: #344033;
    }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: #344033;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #FAF9F7;
                color: #344033;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            /*font-size: 16px;
            font-weight: 600;*/
            color: #344033;
            position: relative;
            padding-left:10px;
            /*padding-bottom: 12px;*/
        }
#fotter-btn{
    width:100%!important;
    padding:11px;
    font-size:14px!important
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links h6{
    margin-bottom:30px;
    font-size:16px;

}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #344033;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
 #footer .footer-top .footer-form-submit form {
            margin-top: 30px;
            background: #ffffff!important;
            padding: 8px 25px;
            position: relative;
            border-radius: 40px;
        }

#footer .footer-top .footer-form-submit form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    /* width: calc(100% - 110px); */
    border-radius: 14px !important;
    background: #ffffff !important;
    /* color: #fff!important; */
    outline: none;
    margin: 0;
}
#footer .footer-top .footer-form-submit form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(194,87,42,255);
  color: #fff;
  transition: 0.3s;
  border-radius:40px!important;
 /* border-radius: 0 4px 4px 0;*/
}

    #footer .footer-top .footer-form-submit form input[type=submit]:hover {
        background: rgba(194,87,42,255);
    }

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #344033;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: rgba(194,87,42,255);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff4a17;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}
.pb-100{
    padding-bottom:100px;
}
.pt-100{
    padding-top:100px;
}
.pdtp{
    padding-top:80px;
    padding-left:60px;
    padding-right:50px;
}
.elementor-15037 .elementor-element.elementor-element-85f62c0 .elementor-cta__content {
    min-height: 300px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
}

.elementor-cta--valign-middle .elementor-cta__content {
    align-content: center;
    align-items: center;
}

.elementor-cta--skin-classic .elementor-cta__content {
    transition: all .4s;
    width: 100%;
    background-color: #f7f7f7;
}

.elementor-cta__content, .elementor-cta__content-item {
    position: relative;
    transition: .5s;
    color: #fff;
}

.elementor-cta__content {
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: 35px;
    width: 83%;
}
.elementor-cta--skin-classic .elementor-cta__content-item, .elementor-cta--skin-classic .elementor-cta__content-item .elementor-icon {
    color: #55595c;
    border-color: #55595c;
    fill: #55595c;
}

.elementor-cta__content-item {
    width: 100%;
    margin: 0;
}

.elementor-cta__content, .elementor-cta__content-item {
    position: relative;
    transition: .5s;
    color: #000000;
    background: #ffffff;
    border-radius: 119px;
    text-align: center !important;
    min-height: 118px !important;
}
.elementor-15037 .elementor-element.elementor-element-85f62c0 .elementor-cta__content {
    min-height: 300px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
}
.elementor-content-item{
    font-size:24px!important;
    padding-top:20px!important;
}
.section-5pding{
    padding-left:50px!important;
    padding-right:40px!important;
    padding-top:40px!important;
    color: rgb(194, 87, 42) !important;
}
.section-5btn-class {
    width: 180px;
    padding: 10px;
    background: #fff !important;
    border-radius: 35px;
    text-align: center !important;
    cursor: pointer;
    color: rgba(194,87,42,255);
    border: 2px solid rgba(194,87,42,255);
    font-weight:600!important;
    text-align: -webkit-center;
}
.section-5btn-class:hover {
    background: rgba(194,87,42,255)!important;
    color:#fff!important;
}
.section-5btn {
    width: 220px;
    padding: 10px;
    background: #FFDFCD !important;
    border-radius: 35px;
    text-align: center !important;
    cursor: pointer;
    color: rgba(194,87,42,255);
    border: 2px solid #FFDFCD;
    font-weight:600!important;
    text-align: -webkit-center;
}
.section-5btn:hover {
    background: rgba(194,87,42,255)!important;
    color:#fff!important;
}
.elementor-icon-list-text {
    font-family: archivo,Arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: .3px;
    margin-left: 5px;
    align-self: center;
}
.pding{
    padding-top:20px;
    padding-bottom:20px;
}
.section-6ptag {
    font-family: Gotu-Regular, Arial !important;
    color: rgba(194,87,42,255)!important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.3em;
    margin-right: 162px;
}
.pdsection5 {
    padding-left: 60px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 40px;
    /* text-align: center!important; */
}
.pt-20{
    padding-top:20px;
}
.section-6h3 {
    font-family: Gotu-Regular, Arial !important;
        color: rgb(194, 87, 42) !important;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.2em;
    text-align: center;
    padding-left: 240px;
    padding-right: 240px;
}
.section-6btn {

    width: 220px;
    padding: 10px;
    background: #FFDFCD !important;
    border-radius: 35px;
    text-align: center !important;
    cursor: pointer;
    color: rgba(194,87,42,255);
    border: 2px solid #FFDFCD;
    font-weight: 600 !important;
}

    .section-6btn:hover {
        background: rgba(194,87,42,255) !important;
        color: #fff !important;
    }
.section7-coloum{
    background:#fff!important;
    padding:90px!important;
}
.containers{
    padding-left:50px;
    padding-right:50px;
    padding-top:50px;
}
.section-8h3 {
    color: #344033;
    font-size: 36px;
    line-height: 1.1em;
    font-weight: 400;
    font-family: Gotu-Regular, Arial !important;
    padding-top:30px;
    padding-right:30px;
}
.section-8li li{
    padding:10px;

}
.section-8htag {
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 400;
    font-family: Gotu-Regular, Arial !important;
    padding-top:20px;
}
.bannerh2 {
    /*font-family: Gotu-Regular, Arial !important;*/
    font-size: 130px !important;
    font-weight: 400 !important;
    text-transform: lowercase;
    line-height: 1.1em;
}

.bannerp {
    color: #ffdfcd !important;
}

.btn {
    background: #ffdfcd;
    width: 220px;
    border-radius: 35px;
}

.section-2h2 {
    color: rgba(194,87,42,255);
    font-size: 62px;
    text-transform: lowercase;
    line-height: 1.3em;
    font-family: LeagueScript-Regular, Arial !important;
    text-align: center !important;
    font-weight:400!important;
}

.section-2h3 {
    /*font-family: Gotu-Regular, Arial !important;*/
       color: #344033!important;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.2em;
    text-align: center;
    padding: 30px;
    font-weight:500;
    font-family: 'Quicksand', sans-serif!important;
}

.section-4h3 {
  font-family: 'Quicksand', sans-serif!important;
       color: rgb(194, 87, 42) !important;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.2em;
    text-align: center;
    padding: 0 90px;
}

.section-3h3 {
    /*font-family: Gotu-Regular, Arial !important;*/
       color: rgb(194, 87, 42) !important;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.2em;
    font-family: 'Quicksand', sans-serif!important;
}

.pd {
    padding: 20px;
}

.ptag {
    /* font-family: Gotu-Regular, Arial !important;*/
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.6em;
    font-family: 'Quicksand', sans-serif!important;
}

.pditem {
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 90px;
    padding-top: 30px;
    /* padding: 90px;*/
}

.section3p-tag {
    font-size: 15px !important;
    font-family: 'Quicksand', sans-serif!important;
   /*font-family: "Raleway", sans-serif!important;*/
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.6em;
}

.section-3p {
    font-size: 20px !important;
  font-family: 'Quicksand', sans-serif!important;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.6em;
}

.section-5h3 {
    font-family: Gotu-Regular, Arial !important;
    color: #344033;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.2em;
}

.pdsection4 {
    padding-left: 50px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center !important;
}

.about-boxeses {
    /* background: url(../img/about-boxes-bg.jpg) center top no-repeat fixed; */
    background-size: cover;
    padding: 0px !important;
    /* padding: 60px 0 30px 0;*/
    /* position: relative; */
}

#streetview {
    font-size: 40px;
    color: rgba(194,87,42,255);
    width: 2.5em;
    height: 1.5em;
    position: relative;
    display: block;
}

.section-5ptag {
    font-family: Gotu-Regular, Arial !important;
    color: rgba(194,87,42,255);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.3em;
    margin-right: 162px;
}

.elementor-widget-container {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.4em;
    /*margin-right: 29px;*/
}

    .elementor-widget-container h6 {
        font-family: "Raleway", sans-serif;
        font-size: 18px !important;
        margin-left: 18px;
    }

    .elementor-widget-container p {
        font-family: "Raleway", sans-serif;
        font-size: 18px !important;
        /*margin-left: 17px;*/
    }

.btns {
    width: 220px;
    text-align: center !important;
    border-radius: 35px;
    background: #fff !important;
    /* height: 30px; */
    text-align: center;
    transition: .7s;
    padding: 10px;
    cursor: pointer;
}

    .btns:hover {
        width: 220px;
        text-align: center !important;
        border-radius: 35px;
        background: rgba(194,87,42,255) !important;
        color: #fff !important;
        padding: 10px
        transition: .7s;
    }
.pdlfrt {
    padding-left: 90px;
    padding-bottom: 40px
}
.pt-80{
    padding-top:80px;
}
.pt-40 {
    padding-top: 40px;
}
#aline-items{
    text-align:center!important
}
.fotter-h4 {
    font-size: 28px;
    font-family: Gotu-Regular, Arial !important;

    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.3em;
    padding-top:40px;
    padding-left:20px;
}
@media (max-width: 768px) {
    .bannerh2 {
        font-size: 60px !important;
    }

    .btn {
        width: 100% !important;
    }

    .section-2h3 {
        font-size: 30px !important;
        padding: 10px !important;
    }

    .about.pt-100 {
        padding-top: 40px !important;
    }

    .pditem {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        padding-top: 20px;
        /* padding: 90px; */
    }

    .pdlfrt {
        margin-bottom:20px;
        padding:30px;
    }
    .pdtp {
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
}

    .pt-100 {
        padding-top: 40px !important;
    }

    .aos-animate {
        margin-bottom: 20px !important;
    }

    .section-4h3 {
        padding: 0 20px !important;
        font-size: 30px !important
    }

    .section-5h3 {
        font-size: 20px !important;
    }

    .pdsection4 {
        padding-left: 40px!important;
        padding-right: 40px!important;
        padding-top: 50px;
        padding-bottom: 30px;
        text-align: center !important;
    }

    .section-5ptag {
        font-family: Gotu-Regular, Arial !important;
        color: rgba(194,87,42,255);
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0.8px;
        line-height: 1.3em;
        margin-right: 20px;
    }

    #streetview {
        font-size: 40px;
        color: rgba(194,87,42,255);
        width: 4.5em;
        height: 1.5em;
        position: relative;
        display: block;
    }

    .container.pt-100 {
        padding-top: 0px !important
    }

    .section-5btn {
        width: 80% !important;
    }

    .section-6h3 {
        font-family: Gotu-Regular, Arial !important;
        color: #344033;
        font-size: 30px;
        font-weight: 400;
        letter-spacing: 0.8px;
        line-height: 1.2em;
        text-align: center;
        padding-left: 24px;
        padding-right: 24px;
    }

    .pt-80 {
        padding-top: 30px !important;
    }

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

    .section-6btn {
        width: 220px;
        /*margin-left: 45px;*/
    }

    .section7-coloum {
        background: #fff !important;
        padding: 40px !important;
    }

    #listli {
        margin-left: -35px !important;
    }

    .section-8h3 {
        font-size: 32px;
    }
    #fotter-btn {
        width: 75% !important;
        padding: 11px;
        font-size: 14px !important;
        margin-left: 46px;
        margin-bottom: 20px;
    }
    #footer .footer-top {
        background: #FAF9F7;
        border-bottom: 1px solid #FAF9F7;
        /*padding: 0px 0 30px 0;*/
    }
}

.address {
    font-size: 24px;
    font-weight: 400;
    font-family: Gotu-Regular, Arial !important;
    letter-spacing: 0.8px;
    line-height: 1.8em;
    padding-bottom: 10px;
}
#pdaddress {
    padding: 60px;

}
.addresses-ptag {
    font-size:14px;
    font-weight: 400;
    font-family: Gotu-Regular, Arial !important;
    letter-spacing: 0.8px;
    line-height: 1.3em;
    padding-bottom:15px;
}
.progress-bar {
    background: rgba(194,87,42,255) !important;
}
/*.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}
*/
@media (max-width:768px){
.mb-20{
    margin-bottom:20px;
}
.mar-tp{
    margin-top:20px;
}
#mob-view-btn-center{
    text-align:center!important;
}
.elementor-field-option{
    display:flex;
}
#text-area-padding{
    padding:15px;
}

}
.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top:40px;
}

.search {
  position: relative;
  width: 40ch;
  height: 3rem;
  padding-left: 1.5rem;
  border-radius: 1.5rem;
  background: #ffffff;
  /*box-shadow: 0 1.25rem 5rem -1rem rgba(0, 0, 30, 0.5);*/
  transition: transform 200ms ease-in-out;
   /*border:1px solid #f2f2f2;*/
  
}
.search::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2.5rem;
    /* box-shadow: 0 0.5rem 2rem -1rem rgba(0, 0, 100, 0.5); */
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
    border: 1px solid #f2f2f2;
    margin-bottom: -12px;
}
.search input {
    all: unset;
    height: 100%;
    color: #333355;
    width: 100%;
    border-radius: 1.5rem;
    margin-left: -36px;
    border: none;
    text-align: left;
    padding-left: 36px;
    box-shadow: none !important;
    background-color: transparent !important;
}
.search input::placeholder {
  color: inherit;
  opacity: 0.3;
}
.search button {
  all: unset;
  position: absolute;
  right: 0;
  height: 3rem;
  padding-left: 3rem;
  border-radius: 1.5rem;
  background: rgba(194,87,42,255);
  cursor: pointer;
  margin-top:5px;
}
.search button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  /*box-shadow: 0 0.5rem 2rem 0 rgba(41, 110, 199, 0.25), 0 0.5rem 1rem -0.75rem rgba(0, 0, 0, 0.5);*/
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  border:1px solid #f2f2f2;
}
.search button:hover::before {
  opacity: 1;
}
.search button label {
  display: block;
  opacity: 0;
  color: white;
  width: 0;
  transition: width 200ms ease-in-out, opacity 100ms ease-in-out;
}
.search button .search-icon {
  position: absolute;
  height: 0.875rem;
  width: 0.875rem;
  top: 1rem;
  left: 0.875rem;
  border: 0.125rem solid white;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-45deg);
}
.search button .search-icon::after {
  content: "";
  position: absolute;
  height: 0.5rem;
  width: 0.125rem;
  background: white;
  left: calc(50% - (0.125rem / 2));
  bottom: -0.6rem;
}
.search:has(input:not(:placeholder-shown)) button label {
  opacity: 1;
  width: 4rem;
  margin-left: -0.5rem;
  padding-right: 1rem;
}
.search:has(input:focus) {
  transform: translateY(-0.5rem);
}
.search:has(input:focus)::before {
  opacity: 1;
}

/*new-css-added*/

.img-width-cls{
    width:100%;
}
#right-class-for-you{
    padding-left:80px;
    padding-right:40px
}
@media (max-width:768px){
    .img-width-cls{
    width:100%!important;
    height:auto;
}
.section-3h3 {
    font-size:34px!important;
    font-family: 'Quicksand', sans-serif!important;
}
#topPromoBar .main-wrapper {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
    grid-gap: 60px;
    padding-top: 0rem;
    padding-bottom: 0rem;
    margin-top: -22px;
    margin-bottom: -20px;
}
.third-sec-img-box{
    /*min-height:100%!important;*/
}
#mob-margin-tp{
    margin-top:30px;
}
.about-iframe{
    width:100%;
    height:auto!important;
}
.section-2h2 {
    font-size:45px!important;
    margin-left:20px;
    margin-right:20px;
}
.containers {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
}
.section-5pding{
    padding-left:30px!important;
    padding-right:30px!important;
    padding-top:40px!important;
}
}
@media (max-width:320px){
    #right-class-for-you{
    padding-left:40px!important;
    padding-right:20px!important;
}
.section-2h2 {
    font-size:47px!important;
}
.containers {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
}
.section-5pding{
    padding-left:30px!important;
    padding-right:30px!important;
    padding-top:40px!important;
}
}
.toggle1,
        .content1 {
            font-family: "Poppins", sans-serif;
            color:#000000;
        }

        .toggle1 {
            width: 100%;
            background-color: transparent;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            font-size: 16px;
            color: #000000;
            font-weight: 600;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 0;
        }
            .toggle1:not(.collapsed) {
                color: #000000 !important;
               
            }

        .content1 {
            position: relative;
            font-size: 14px;
            text-align: justify;
            line-height: 30px;
            height: 0;
            overflow: hidden;
            -webkit-transition: all 1s;
            -o-transition: all 1s;
            transition: all 1s;
        }
        #faq-border{
            border:1px solid #f2f2f2;
           
        }
         .wrappers1 {
            background: #FAF9F7 !important;
           /* background-color: #ffffff;*/
            padding: 10px 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
            /*box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
        }
@media(max-width:360px){
    .btns{
        width:185px;
    }
}
.card{
    box-shadow:5px 10px #f2f2f2;
    background:#fff;
    padding:10px;
}
.swiper-button-prev .swiper-button-next{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f2f2f2;
    
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 18px;
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}
#butn-price-zoom:hover{
    -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.05);
}
#butn-price-zoom .text-left{
    text-align:left!important;
}
.clscheck{
    margin-right:10px;
}
.about-iframe{
    width:100%;
   height:600px;
}
.video-wrapper {
    position: relative;
}

.video-wrapper > video {
    width: 100%;
    vertical-align: middle;
}

.video-wrapper > video.has-media-controls-hidden::-webkit-media-controls {
    display: none;
}

.video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px calc(50% - 30px);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.95;
    cursor: pointer;
    /*background-image: linear-gradient(transparent, #000);*/
    transition: opacity 150ms;
}

.video-overlay-play-button:hover {
    opacity: 1;
}

.video-overlay-play-button.is-hidden {
    display: none;
}
.card__pricing {
                                            position: relative;
                                            background: rgba(194,87,42,255);
                                            
                                            width: 80px;
                                            /* height: 48px;*/
                                            right: 1.4rem;
                                            top: -0.5rem;
                                            /* padding-top: 1.25rem;*/
                                            text-align: center;
                                        }

                                        

                                        .card__pricing-symbol {
                                            font-size: 18px;
                                        }

                                        .card__pricing-number {
                                            font-size: 18px;
                                        }

                                        

                                        .card__pricing-number
                                         {
                                            color: #fff;
                                        }

                                        .card__pricing::after,
                                        .card__pricing::before {
                                            content: '';
                                            position: absolute;
                                        }

                                        .card__pricing::after {
                                            width: 100%;
                                           /* height: 14px;*/
                                            background-color: red;
                                            left: 0;
                                            bottom: 0;
                                            clip-path: polygon(0 100%, 50% 0, 100% 100%);
                                        }

                                        .card__pricing::before {
                                            width: 14px;
                                            height: 16px;
                                            background-color: rgba(194,87,42,255);
                                            top: 0;
                                            left: -14px;
                                            clip-path: polygon(0 100%, 100% 0, 100% 100%);
                                        }
 @media (min-width: 1300px) {
            #topPromoBar .main-wrapper {
                width: 1300px;
            }
        }

        #topPromoBar .main-wrapper.col3 {
            grid-template-columns: 1fr auto auto auto 1fr;
        }

        @media (min-width: 1300px) {
            #topPromoBar .main-wrapper {
                width: 1300px;
            }
        }

        #topPromoBar .main-wrapper::before, #topPromoBar .main-wrapper::after {
            content: " ";
            display: inline-block;
        }

        #topPromoBar .main-wrapper {
            display: grid;
            grid-template-columns: 1fr auto auto 1fr;
            align-items: center;
            grid-gap: 60px;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
        }

            #topPromoBar .main-wrapper::before, #topPromoBar .main-wrapper::after {
                content: " ";
                display: inline-block;
            }

        #main-wrapper, .main-wrapper {
            margin: 0 auto;
            position: relative;
            width: 1110px;
            z-index: 10;
            max-width: 100%;
            clear: both;
        }

        .page-checkout.woocommerce-checkout div#topPromoBar {
            display: none;
        }

        .classes-page .hideOnClassesPage, div#exitPopup.mobile {
            display: none !important
        }

        div#topPromoBar a.close svg {
            fill: #ffffff;
        }
        /* .subscription-page div#topPromoBar{
                display: none!important;
            } */
        .subscription-page div#topPromoBar .btnWrapper {
            display: none !important;
        }

        #topPromoBar .main-wrapper.col2 {
            grid-template-columns: 1fr auto auto 1fr;
        }

        #topPromoBar .main-wrapper.col3 {
            grid-template-columns: 1fr auto auto auto 1fr;
        }

        .startmyfreetrial a {
            text-decoration: underline !important;
            color: #fff !important;
            letter-spacing: 2px;
            font-size:12px;
            font-weight:400;
            /*font: 400 12px/12px;*/
            text-underline-position: under;
            text-decoration-skip: ink;
        }

        @media (max-width: 800px) {
 #topPromoBar .main-wrapper.col3 {
            grid-template-columns: 1fr 1fr 1fr auto;
                margin-left: -15px;
        }
        #topPromoBar .main-wrapper {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
    grid-gap: 32px;
    padding-top: 2.375rem;
    padding-bottom: 0.375rem;
}
            /* #topPromoBar .main-wrapper {
                    grid-template-columns: auto 1fr auto;
                }
                div#topPromoBar .main-wrapper{
                    padding-top: 5px;
                    padding-bottom: 5px;
                } */

            div#topPromoBar .main-wrapper > div {
                white-space: nowrap;
                display: grid;
                justify-content: center
            }
            #menu-list {
    border-radius: 34px;
    width: 100%!important;
}
        }

        #nav1 {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 999;
            border-bottom: 1px solid #dedddc;
           
        }

        @media (max-width: 767.98px) {
            #main-wrapper, .main-wrapper {
                width: calc(100% - 20px);
            }
             #banner-btn-change-cls{
        color:#FFDFCD;
       padding:200px 0px!important;
       align-items:center;
       justify-content:space-between;
    }
    #pdtp {
        padding-top:30px;
    padding-left: 30px!important;
    padding-right: 20px!important;
}
        }

        @media (max-width: 800px) {
            div#topPromoBar .main-wrapper > div {
                white-space: nowrap;
                display: grid;
                justify-content: center;
            }
            .founder-img-fix-height img{
        max-width:100%;
        height:auto!important;
        width:100%;
        object-fit:cover
    }
    .owl-carousel .owl-item .carousel-img {
    display: block;
    width: 100%;
     height: auto!important; 
}
.close1 {
    position: absolute;
    top: 0px;
    right: 10px!important;
    cursor: pointer;
    color: #fff;
    font-size: 38px;
}
             #banner-btn-change-cls{
        color:#FFDFCD;
       padding:190px 0px;
    }
    .mental-yoga-img-sec img{
        max-width:100%;
        height:auto!important;
        object-fit:cover;
    }
        }

        div#topPromoBar a.close svg {
            fill: #ffffff;
        }

        div#topPromoBar a.close svg {
            background: 0 0;
            fill: #fff;
            display: block;
            height: 22px;
            width: 22px;
        }

        div#topPromoBar a.close {
            position: absolute;
            top: 9px;
            right: 15px;
            cursor: pointer;
            transition: none !important;
            display: block;
            height: 22px;
            width: 22px;
            z-index: 999;
        }
        @media (max-width: 767.98px){
            /*#topPromoBar span.blockOnMobile, #topPromoBar .main-wrapper {*/
            /*    display: block;*/
            /*}*/
        }
/*       .splash-screen {*/
/*    display: none!important;*/
/*}*/
.splash-screen {
    box-sizing: border-box;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    background-color: #ffffff;
}
.splash-screen img {
    display: block;
    max-width: 100%;
    border: 0 none;
    animation: pulse-fade 0.4s infinite linear;
}
.loader-logo__img {
    display: block;
}
@keyframes pulse-fade {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .splash-screen {
    box-sizing: border-box;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    background-color: #ffffff;
  }

  .splash-screen__loader {
    max-width: 100px;
  }

  @media only screen and (min-width: 769px) {
    .splash-screen__loader {
      max-width: 200px;
    }
  }

  .splash-screen img {
    display: block;
    max-width: 100%;
    border: 0 none;
    -webkit-animation: pulse-fade 1s linear infinite;
  animation: pulse-fade 1s linear infinite;
    /*animation: pulse-fade 1s infinite linear;*/
  }

  .loader-text {
    letter-spacing: 0.2em;
    font-size: 1.5em;
    text-transform: uppercase;
   -webkit-animation: pulse-fade 1s linear infinite;
  animation: pulse-fade 1s linear infinite;
  }

  .loader-logo {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 6000;
  }

  .loader-logo__img {
    display: block;
  }

  .transition-body {
    opacity: 0;
  }

  .btn--loading span:after {
    content: "Loading";
  }
  .bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: none;
    padding: 10px;
    transform: translateY(0);
    transition: all .25s cubic-bezier(.29,.63,.44,1);
    z-index:9999;
}


    .bottom-menu button {
        background-color: rgba(194,87,42,255);
        border: none;
        color: #fff;
        padding-top:11px;
        padding-bottom:11px;
        padding-left:40px;
        padding-right:20px;
        /*padding: 11px 28px;*/
        /* margin-right: 10px;*/
        cursor: pointer;
        border-radius: 35px;
        /*width:200px;*/
        font-size:24px;
    }

    .bottom-menu ul {
        display: none;
        list-style-type: none;
        padding: 0;
        margin: 0;
        background: #FFDFCD !important;
        color: #000000;
    }
#menu-list{
    border-radius:34px;
    width:300px;
}

.bottom-menu ul li {
    /* margin-bottom: 10px;*/
    padding: 10px;
}

            .bottom-menu ul li a {
                display: block;
                color: #000000;
                text-decoration: none;
                text-align:center;
                font-size:18px;
            }

    .bottom-menu .sub-menu {
        /*margin-left: 20px;*/
    }

        .bottom-menu .sub-menu .sub-sub-menu {
            margin-left: 20px;
        }

            .bottom-menu .sub-menu .sub-sub-menu li {
                margin-bottom: 5px;
            }
            
            
           .third-sec-img-box {
    transition: .5s;
    color: #000000;
    /* background: #ffffff; */
    border-radius: 99px;
    text-align: center !important;
    width: 212px;
    height: 246px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 39px 0px;
    background-size: cover;
    background-position: center;
    object-fit: cover!important;
    /* padding: 40px; */
}
            .third-sec-img-box img{
               max-width:100%;
                border-radius: 99px;
               object-fit:cover!important;
               align-items:center!important;
                 
                /*padding:40px 0px;*/
            }
    #ptag-color{
        color:rgba(194,87,42,255)!important;
    }
    @media (max-width:320px){
        .third-sec-img-box {
    transition: .5s;
    color: #000000;
    /* background: #ffffff; */
    border-radius: 119px;
    text-align: center !important;
    width: 203px!important;
    height: 255px!important;
    background-size: cover;
    background-position: center;
    object-fit: cover!important;
    /* padding: 40px; */
}
#menu-list {
    border-radius: 34px;
    width: 100%!important;
}
    }
     .has-tooltip {
    /* background: #ececec; */
    color: #555;
    cursor: pointer;
    /*font-family: sans-serif;*/
    font-size: 16px;
    line-height:24px;
    /* margin: 40px auto; */
    /* padding: 0.5em; */
    position: relative;
    text-align: center;
    text-transform: uppercase;
    /* width: 200px; */
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
      text-decoration:none;
}

        .has-tooltip .tooltip {
            background: rgba(194,87,42,255);
            color: #fff;
            display: block;                      
            opacity: 0;
            padding: 1em;
            position: absolute;
            visibility: hidden;
            width: 100%;         
            -webkit-transition: all .25s ease-out;
               -moz-transition: all .25s ease-out;
                -ms-transition: all .25s ease-out;
                 -o-transition: all .25s ease-out;
                    transition: all .25s ease-out;
            -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
               -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
                -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
                 -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
                    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
                    cursor:pointer;
        }

        /* This bridges the gap so you can mouse into the tooltip without it disappearing */
        .has-tooltip .tooltip:before {
            content: "";
            display: block;
            height: 1em;
            position: absolute;
            width: 100%;
            cursor:pointer;
        }  
        .has-tooltip.north p{
            cursor:pointer;
            font-size:20px;
            font-weight:600;
            color:rgba(194,87,42,255);
        }

        .has-tooltip:hover .tooltip {
            opacity: 1;
            visibility: visible;
              text-decoration:none;
            /*-webkit-transform: translateX(0px) translateY(0px) !important;*/
            /*   -moz-transform: translateX(0px) translateY(0px) !important;*/
            /*    -ms-transform: translateX(0px) translateY(0px) !important;*/
            /*     -o-transform: translateX(0px) translateY(0px) !important;*/
            /*        transform: translateX(0px) translateY(0px) !important;*/
        }

        /* TOOLTIPS 'NORTH' VERSION */
        .has-tooltip.north .tooltip {
            bottom: 100%;
            top: auto;
            left: -1em;
            right: auto;
            margin-left: 0%;
            margin-right: auto;
            margin-bottom: 0.6em;
            -webkit-transform: translateX(0px) translateY(10px);
               -moz-transform: translateX(0px) translateY(10px);
                -ms-transform: translateX(0px) translateY(10px);
                 -o-transform: translateX(0px) translateY(10px);
                    transform: translateX(0px) translateY(10px);            
        }

        .has-tooltip.north .tooltip:before {
            bottom: -1em;
            left: 0;
            height: 100%;
            width: 1em;
        }  
        #btn-hover-price:hover{
            color:rgba(194,87,42,255)!important;
             border: 1px solid rgba(194,87,42,255);
        }
        .btn.btn-primary.btn-lg{
        background:#FFDFCD!important;
        border: 1px solid rgba(194,87,42,255);
        color:rgba(194,87,42,255);
    }
    .btn.btn-primary.btn-lg:hover{
        background:rgba(194,87,42,255)!important;
        color:#fff;
    }
    .btn-success{
        background:rgba(194,87,42,255)!important;
        color:#fff!important;
        border:1px solid rgba(194,87,42,255);
    }
   
.card-shadow:hover {
 margin-top:-20px;
}
    .card-shadow{
       box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
       padding:15px;
        transition: top ease 0.5s;
        position:relative;
  transition: all 0.3s ease-in-out;
  background:#F2E9E3!important;
    }
    .chnag-row-grid{
        display: flex;
  justify-content: space-between;
    }
    #banner-btn-change-cls{
        color:#FFDFCD;
        padding:160px 0px;
        margin-top: 80px;
    }
    #pdtp{
    padding-left: 60px;
    padding-right: 50px;
    }
    /*#hover-state-bg-img:hover{*/
    /*    border:1px solid rgba(194,87,42,255);*/
    /*}*/
    .hover-transistion{
         transition: transform .2s ease-in-out;
    }
    .hover-transistion:hover{
         transform: scale(1.1)!important;
        cursor:pointer;
    }
    /*.third-sec-img-box{*/
    /*transition: transform .2s ease-in-out;*/
    /*}*/
    .third-sec-img-box:hover{
        border:3px solid rgba(194,87,42,255);
        /*transform: scale(1.2);*/
        cursor:pointer;
    }
    .mental-yoga-img-sec img{
        max-width:100%;
        height:550px;
        object-fit:cover;
    }
    .founder-img-fix-height img{
        max-width:100%;
        height:440px;
        object-fit:cover
    }
    
        /*.price-flex{*/
        /*    display:flex;*/
        /*    flex-direction:row;*/
        /*    text-align:center;*/
        /*}*/
        
         .gallery {
           
                    /*  display: flex;*/
                    justify-content: space-between;
                    margin-top:22px;
                   
                }
                
                 #carousel2{
                     width:100%!important;
                 }

                .gallery-image {
                    
                    width: 140px!important;
                    height: 140px;
                    object-fit: cover;
                    cursor: pointer;
                    border-radius: 50%;
                    /*border: 2px solid #e84118;*/
                    background: radial-gradient(white 68%, transparent 0), linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
                    padding:8px;
                    transition: transform .2s ease-in-out;
                    /*background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);*/
                }
                .gallery-image:hover{
                    transform: scale(1.02);
                }
                .bg-active {
                    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
                }

                .modal {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: rgba(0, 0, 0, 0.5);
                }

                .modal-content1 {
                    position: absolute;
                    top: 40%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    background-color: none;
                    padding: 20px;
                }

                .close1 {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    color: #fff;
    font-size: 38px;
}

                #carousel1 {
                    width: 600px;
                    height: 500px;
                    object-fit:cover;
                }
                .owl-carousel .owl-item .carousel-img {
    display: block;
    width: 70%;
    height: auto;
    border-radius:18px;
}

                .progress-bar-container {
                    width: 100%;
                    height: 5px;
                    background-color: #f2f2f2;
                    margin-top: 10px;
                }

                .progress-bar {
                    height: 100%;
                    width: 0%;
                    background-color: #4CAF50;
                    transition: width 0.5s ease;
                }


                .prev-btn,
                .next-btn {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    background-color:rgba(194,87,42,255);
                    border: none;
                    outline: none;
                    cursor: pointer;
                    z-index: 1;
                    border-radius: 50%;
                    color:#fff!important;
                }


                    .prev-btn i,
                    .next-btn i {
                        font-size: 24px;
                        color: #fff;
                    }


                /*.prev-btn {*/
                /*    left: 10px;*/
                /*}*/

                /*.next-btn {*/
                /*    right: 10px;*/
                /*}*/
                #carousel{
                    width:100%!important;
                }
                .slider {
  overflow: hidden;
}
   .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block!important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    /*background: rgba(194,87,42,255);*/
    /*color: #fff;*/
    border: none;
    padding: 0!important;
    font: inherit;
    width:40px;
    height:40px;
    border-radius:50%;
}
#carousel2 .owl-prev,
#carousel2 .owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
 

   color: rgba(194,87,42,255);
  border: none;
  border-radius: 50%;
  font-size: 44px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  font-weight:700;
}
#carousel1 .owl-prev,
#carousel1 .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*width: 40px;*/
  /*height: 40px;*/
  /*background: rgba(194,87,42,255);*/
   color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 60px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  box-shadow:none!important;
}

#carousel2 .owl-prev {
  left: -25px;
}

#carousel2 .owl-next {
  right: -25px;
}
.margin-desktop{
    margin-top:20px;
}
.order-2{
    order:1!important;
}
.order-1{
    order:2;
}
@media (max-width:768px){
   #carousel2 .owl-prev {
  left: -11px;
}
.order-2{
    order:2!important;
}
.order-1{
    order:1!important;
}
.modal-content1 {
    position: absolute;
    top: 50%!important;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: none;
    padding: 20px;
}
.close1 {
    position: absolute;
    top: 58px;
    right: -9px;
    cursor: pointer;
    color: #fff;
    font-size: 38px;
}
.margin-desktop{
    margin-top:0px!important;
}
.pt-10{
    padding-top:12px;
}
.gallery-image {
    width: 110px!important;
    height: 110px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
    /* border: 2px solid #e84118; */
    background: radial-gradient(white 66%, transparent 0), linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    transition: transform .2s ease-in-out;
    /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
}
#carousel1 {
    width: 354px;
    height: auto;
    object-fit: cover;
}

#carousel2 .owl-next {
  right: -6px;
} 
}
#carousel1 .owl-prev {
  left: 45px;
}

#carousel1 .owl-next {
  right: 45px;
}
.items{
text-align: -webkit-center;
margin-top:15px;
}
/* Hide video controls on mobile */
@media (max-width: 767px) {
  video::-webkit-media-controls {
    display: none !important;
  }
   .owl-carousel .owl-item .carousel-img {
    display: block;
    width: 77%!important;
    height: auto;
    border-radius:18px;
}
  
  video::-webkit-media-controls-enclosure {
    display: none !important;
  }
  video::-webkit-media-controls-panel {
    display: none !important;
  }
  .third-sec-img-box {
    transition: .5s;
    color: #000000;
    /* background: #ffffff; */
    border-radius: 119px;
    text-align: center !important;
    width: 245px!important;
    height: 294px!important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 39px 0px;
    background-size: cover;
    background-position: center;
    object-fit: cover!important;
    /* padding: 40px; */
}
.bannerh2-about{
   font-family: Gotu-Regular,Arial!important;
    font-size: 32px!important;
    font-weight: 400!important;
    text-transform: none;
    line-height: 0.8em;
    color:#FFDFCD;
    margin-top:29px;
    
}
.about-bf-img-p-tag-color{
    color:#fff;
   padding-left:15px!important;
   padding-right:15px!important;
   font-size:14px;

}
}
.attachment-full:hover{
     opacity: 1;
}
.attachment-full.size-full.wp-image-929{
    width: 150px;
    opacity: 0.6;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    height:auto;
}
.attachment-medium.size-medium.wp-image-931{
    width: 150px;
    height: 147px;
    opacity: 0.6;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
}
.attachment-full.size-full.wp-image-934{
    width: 80px;
    opacity: 0.6;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    border-radius: 0px 0px 0px 0px;
    height:auto;
}
.attachment-full.size-full.wp-image-933{
    width: 150px;
    opacity: 0.6;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    height:auto;

}
#img-opacity:hover{
     opacity: 1!important;
}
.team-chng-color{
   
   width: 110px;
    opacity: 0.6;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
}
.image-container-about1 {
  /* Replace with the path to your background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%; /* Adjust the width of the container */
  height: 350px; /* Adjust the height of the container */
  position: relative;
}

.centered-button {
  position: absolute;
  top: 70%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 180px; /* Adjust the width of the button */
  /* Adjust the height of the button */
      border-color:rgba(194,87,42,255)!important;
    background: rgba(194,87,42,255)!important;
    border-radius:35px;
    padding:6px;
    border:none!important;
    color:#fff;
     transition: 0.3s;
}
.centered-button:hover{
   margin-top:-8px;
}
.disabled{
    display: none;
  }

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}
.bannerh2-about{
   font-family: Gotu-Regular,Arial!important;
    font-size: 80px;
    font-weight: 400!important;
    text-transform: none;
    line-height: 1.1em;
    color:#FFDFCD;
    
    
}
.about-bf-img-p-tag-color{
    color:#fff;
    /*padding:18px;*/

}
#class-font-color{
    font-size:26px;
    color:rgba(194,87,42,255);
}
.item-price:hover{
    background:#FFDFCD;
}
.butn-price-zoom:hover{
    color:#fff!important;
}
.price-flex{
   color:rgba(194,87,42,255);  
}
.border-class-page{
    border:8px solid #FFDFCD;
    border-radius:29px;
    align-items:center!important;
    height: 0;
  overflow: hidden;
  padding-bottom: 68.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
  position: relative;
}
.border-class-page iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#iframid{
    border-radius:20px;
    
}
@media screen and (min-width: 1024px){
.gtc-lg-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
.date_time_block .item {
    margin: 0!important;
    padding: 20px!important;
}
.grid .item {
    background: #fff none repeat scroll 0 0;
    padding: 10px 20px 15px;
    margin-bottom: 30px;
    transition: all .5s ease-in-out 0s;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin: 5px 10px;
    text-align: center;
}
.stdate {
    color: #000000;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight:500;
}
.fulldate {
    color: rgba(194,87,42,255);
    font-size: 18px;
    font-weight:500;
}
.fulldate {
    font-size: 17.8px!important;
}
.grid {
    display: grid;
    column-gap: 40px;
    row-gap: 20px;
}
@media (max-width: 768px){
.date_time img {
    float: left;
    margin-right: 15px;
    margin-top: 4px;
}
#testimonial .owl-prev {
    left: -8px!important;
}
#testimonial .owl-next {
    right: -8px;
}
}
.date_time img {
    width: 50px;
    height: auto;
}
@media (max-width: 768px){
.stdate {
    margin-top: 0;
    font-weight: 600;
}
.centered-button {
  position: absolute;
  top: 73%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 180px; /* Adjust the width of the button */
  /* Adjust the height of the button */
      border-color:rgba(194,87,42,255)!important;
    background: rgba(194,87,42,255)!important;
    border-radius:35px;
    padding:6px;
    border:none!important;
    color:#fff;
     transition: 0.3s;
}
}
@media (max-width: 768px){
.fulldate, .stdate {
    text-align: left;
}
}
.white_block {
    background: #fff;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 8px #f2f2f2;
}
.include_details {
    box-shadow: 5px 10px 10px rgba(245,245,245,.9);
    font-family: Nunito;
    margin-bottom: 25px;
    border-radius: 10px;
}
.include_details img {
    float: left;
    margin-right: 20px;
    width: 175px;
     border-radius: 18px;
}
.include_details::after {
    display: table;
    content: "";
    clear: both;
}
.include_details_bg h4{
    color:rgba(194,87,42,255);
}
@media (max-width: 768px){
.include_details img {
    float: none;
    margin: 10px auto;
}
.about-first-sec-img {
   height: auto!important;
    width: 100%!important;
}
.about-first-sec-img-2 {
   height: auto!important;
    width: 100%!important;
}
.border-class-page {
    border: 8px solid #FFDFCD;
    border-radius: 29px;
    align-items: center!important;
    height: 0;
    overflow: hidden;
    padding-bottom: 46.25%;
    position: relative;
}
.include_details img {
    float: none!important;
    margin: 10px auto;
    position: relative;
    top: 8px;
    left: 20%;
}

.include_details_bg {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    margin-right: -5px;
    margin-left: -5px;
}
}
.benefits_block_content img:hover {
    transform: scale(1.06);
    transition: .3s all ease-in-out;
}
.benefits_block_content {
    text-align: center;
    margin-bottom: 10px;
}
.benefits_block_content img {
    max-width: 100%;
    transition: .3s all ease-in-out;
    transform: scale(1);
}
.benefits_desc {
    font-size: 17px;
    color:rgba(194,87,42,255);
}
.brown_heading {
    color:rgba(194,87,42,255);
    font-size: 40px;
    margin-bottom: 30px;
   
    font-weight: 600;
}
 .containerwidth {
            width: 100%;
        }

        .wrappers1 {
            background: #FAF9F7 !important;
           /* background-color: #ffffff;*/
            padding: 10px 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
            /*box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
        }

        .toggle1,
        .content1 {
            
            color:#000000;
        }

        .toggle1 {
            width: 100%;
            background-color: transparent;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            font-size: 16px;
            color: #000000;
            font-weight: 600;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 0;
        }
            .toggle1:not(.collapsed) {
                color: #000000 !important;
               
            }

        .content1 {
            position: relative;
            font-size: 14px;
            text-align: justify;
            line-height: 30px;
            height: 0;
            overflow: hidden;
            -webkit-transition: all 1s;
            -o-transition: all 1s;
            transition: all 1s;
        }
        .include_details_bg{
            display:flex;
            flex-direction:column;
           margin-top:0.8em!important;
        }
        .hedaing-class-record{
             color:rgba(194,87,42,255);
             font-size:40px;
             text-transform: uppercase;
        }
.about-first-sec-img {
   height: 380px;
    width: 520px;
}
.about-first-sec-img img {
    width:100%;
    height:auto;
    object-fit:cover;
}
.about-first-sec-img-2 {
   /*height: 343px;*/
   /* width: 520px;*/
    transition: transform .2s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
    border-radius:14px;
}
.about-first-sec-img-2 img {
    width:100%;
    height:auto;
    object-fit:cover;
    transition: transform .2s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
    border-radius:14px;
}
.content1 p{
    font-weight:400!important;
    font-size:16px;
}
#btnSearch-2{
    border-color:#ccc!important;
    color:#000000;
}
#btnSearch-3{
     border-color:#ccc!important;
    color:#000000;
}
#hover-state-bg-img h4{
    font-weight:500!important;
}

#capitalize-words {
  text-transform: capitalize;
}

#capitalize-words::first-letter {
  text-transform: uppercase;
}
#testimonial .item{
    padding-left:15px;
    padding-right:15px;
}
.capitalize-first-letter{
    font-weight:600!important;
}
 .column-faq {
                                display: flex;
                                flex-direction: column;
                                width: 230px;
                                margin: 0 auto;
                               /* margin-left:85px;*/
                               font-size:14px!important;
                                
                            }

                            .dropdown-btn-faq {
                                position: relative;
                                width: 100%;
                                /* text-align: left;*/
                                padding: 12px 20px;
                                background-color: #FFDFCD;
                                border: 1px solid rgba(194,87,42,255);
                                border-radius: 14px;
                                cursor: pointer;
                                margin-bottom: 18px;
                                text-align: center;
                                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                                /* border-bottom:1px solid rgba(194,87,42,255)*/
                            }

                            .dropdown-content-faq {
                                display: none;
                                position: absolute;
                                top: 7px;
                                right: -168px;
                                /*  background-color: #FFDFCD;*/
                                /*  border: 1px solid #ddd;*/
                                max-width: 100%;
                                /*padding: 15px;*/
                                z-index: 1;
                                width:185px;
                               
                            }
                            .dropdown-faq {
  position: relative;
  display: inline-block;
}

.dropdown-content-faq {
  display: none;
  position: absolute;
 z-index:1;
 
}

.dropdown-content-faq a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.dropdown-faq:hover .dropdown-content-faq {
  display: block;
}

                                .dropdown-content-faq li {
                                    cursor: pointer;
                                    border: 1px solid rgba(194,87,42,255);
                                    padding: 12px;
                                    border-radius: 14px;
                                    margin-bottom: 15px;
                                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                                }
                                .dropdown-content-faq li {
                                    background-color: #FFDFCD;
                                }

                                    .dropdown-content-faq li:hover {
                                        background-color: #FFDFCD;
                                    }

                            .faq-ul {
                                position: relative;
                              /*  background: #FFDFCD;*/
                                padding:20px;
                                border-radius:14px;
                            }
                            .dropdown-btn-faq:hover{
                                background:rgba(194,87,42,255);
                                color:#fff;
                            }
                            .dropdown-faq:hover .dropdown-content-faq {
  top: -10%; /* Position the dropdown above the button */
}


                                .faq-ul li {
                                    list-style: none;
                                    position: relative;
                                    text-align:center;
                                    width:180px;
                                   /* background: #FFDFCD;*/
                                }
                            #arrow-right-faq {
                                float: right;
                               /* margin: 5px 0px;*/
                                font-size:16px;
                            }
                            .dropdown-btn-faq.active {
                                background-color: rgba(194,87,42,255);
                                color:#fff;
                                /* Add any other styles for the active state */
                            }
                            .dropdown-btn-faq {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                position: relative;
                                padding-right: 24px; /* Adjust the padding as needed */
                            }

                                .dropdown-btn-faq i {
                                    position: absolute;
                                    right: 8px; /* Adjust the position as needed */
                                    top: 50%;
                                    transform: translateY(-50%);
                                }
                                #boxaccordion-faq{
                                    padding-left:30px;
                                    padding-right:30px;
                                }
                            @media (max-width:768px){
                                .dropdown-content-faq {
                                    display: none;
                                    position: relative;
                                    top: 7px;
                                    right: 0px;
                                    /* background-color: #FFDFCD; */
                                    /* border: 1px solid #ddd; */
                                    max-width: 100%;
                                    /* padding: 15px; */
                                    z-index: 1;
                                    width: 100%;
                                    padding:0px;
                                }
                            }
                            .conatiner-faq {
  position: relative;
  /* Add any other desired container styles */
}
                            .conatiner-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(http://therayog.com/frontend/assets/img/IMG_9283.JPG);
 background-repeat: no-repeat; 
 background-size:cover;
 background-position:center;
box-shadow: 0 0 10px;
border-radius:18px;
  opacity: 0.1; /* Adjust the opacity value (0.5 in this example) */
  /* You can also use hexadecimal color codes like rgba(0, 0, 0, 0.5) */
  /* Add any other desired background properties */
}
body.royal_preloader {
            background: none;
            visibility: hidden;
        }

        #royal_preloader {
            visibility: visible;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            height: auto;
            margin: 0;
            z-index: 9999999999;
        }

            #royal_preloader.royal_preloader_number:before,
            #royal_preloader.royal_preloader_progress:before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background-image: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
                background-image: -moz-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
                background-image: -ms-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
                background-image: -o-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
                background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
            }

            #royal_preloader.complete {
                opacity: 0;
                -webkit-transition: opacity 0.2s linear 0.5s;
                -moz-transition: opacity 0.2s linear 0.5s;
                -ms-transition: opacity 0.2s linear 0.5s;
                -o-transition: opacity 0.2s linear 0.5s;
                transition: opacity 0.2s linear 0.5s;
            }

            #royal_preloader.royal_preloader_line {
                height: 2px;
                bottom: auto;
            }

            /* Number Mode */
            #royal_preloader.royal_preloader_number .royal_preloader_percentage {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                margin: auto;
                width: 100px;
                height: 100px;
                border-width: 1px;
                border-style: solid;
                border-radius: 50%;
                line-height: 100px;
                font-size: 20px;
                font-family: Impact, Arial;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
                text-align: center;
            }

                #royal_preloader.royal_preloader_number .royal_preloader_percentage > div {
                    position: absolute;
                    top: -2px;
                    right: -2px;
                    bottom: -2px;
                    left: -2px;
                    border: 4px solid transparent;
                    border-left-color: #FFFFFF;
                    border-radius: 50%;
                    -webkit-animation: rotate 0.8s linear infinite;
                    -moz-animation: rotate 0.8s linear infinite;
                    -ms-animation: rotate 0.8s linear infinite;
                    -o-animation: rotate 0.8s linear infinite;
                    animation: rotate 0.8s linear infinite;
                }

            /* Line Mode */
            #royal_preloader.royal_preloader_line .royal_preloader_loader {
                position: absolute;
                height: 100%;
                left: 0;
            }

            #royal_preloader.royal_preloader_line .royal_preloader_peg {
                position: absolute;
                right: 0;
                height: 100%;
                width: 100px;
                opacity: 0.5;
            }

            /* Text Mode */
            #royal_preloader.royal_preloader_text .royal_preloader_loader {
                color: #FFFFFF;
                position: absolute;
                top: 0;
                bottom: 0;
                opacity: .2;
                left: 50%;
                font-family: 'Open Sans', sans-serif;
                font-weight: 700;
                height: 80px;
                line-height: 80px;
                margin: auto;
                letter-spacing: -4px;
                font-size: 55px;
                white-space: nowrap;
            }

                #royal_preloader.royal_preloader_text .royal_preloader_loader div {
                    position: absolute;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    left: 0%;
                    background-color: #000000;
                    opacity: 0.7;
                    filter: alpha(opacity=70);
                }

            /* Scale Text Mode */
            #royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
                color: #FFFFFF;
                position: absolute;
                font-family: 'Open Sans', sans-serif;
                font-weight: 700;
                top: 0;
                bottom: 0;
                left: 50%;
                height: 32px;
                line-height: 32px;
                margin: auto;
                letter-spacing: 1px;
                font-size: 32px;
                white-space: nowrap;
            }

                #royal_preloader.royal_preloader_scale_text .royal_preloader_loader span {
                    display: inline-block;
                    -webkit-transform: scale(0);
                    -moz-transform: scale(0);
                    -ms-transform: scale(0);
                    -o-transform: scale(0);
                    transform: scale(0);
                }

                    #royal_preloader.royal_preloader_scale_text .royal_preloader_loader span.loaded {
                        -webkit-animation: scale 0.2s forwards;
                        -moz-animation: scale 0.2s forwards;
                        -ms-animation: scale 0.2s forwards;
                        -o-animation: scale 0.2s forwards;
                        animation: scale 0.2s forwards;
                    }

            /* Logo Mode */
            #royal_preloader.royal_preloader_logo .royal_preloader_loader {
                position: absolute;
                left: 50%;
                top: 50%;
                margin: 0px;
                overflow: hidden;
                background-position: 50% 50%;
                background-repeat: no-repeat;
                background-size: 100%;
                border-radius: 5px;
            }

                #royal_preloader.royal_preloader_logo .royal_preloader_loader div {
                    position: absolute;
                    bottom: 0%;
                    left: 0px;
                    right: 0px;
                    height: 100%;
                    opacity: 0.7;
                    filter: alpha(opacity=70);
                }

            #royal_preloader.royal_preloader_logo .royal_preloader_percentage {
                position: absolute;
                top: 50%;
                left: 50%;
                height: 40px;
                line-height: 40px;
                margin: 0px;
                color: #072E77;
                text-align: center;
                font-family: 'Open Sans';
                font-size: 13px;
                font-weight: 400;
                letter-spacing: 2px;
                padding-top: 10px;
            }

            /* Progress Mode */
            #royal_preloader.royal_preloader_progress .royal_preloader_percentage {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                color: #AAAAAA;
                color: rgba(255, 255, 255, 0.1);
                font-family: Impact, Arial;
                font-size: 20px;
                text-align: center;
            }

            #royal_preloader.royal_preloader_progress .royal_preloader_loader {
                content: '';
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                width: 60%;
                height: 2px;
                margin: -10px auto auto auto;
                background-color: rgba(0, 0, 0, 0.1);
            }

            #royal_preloader.royal_preloader_progress .royal_preloader_meter {
                width: 0;
                height: 100%;
                margin: auto;
                padding: 0;
                background-color: #C76363;
            }


        @-webkit-keyframes rotate {
            0% {
                -webkit-transform: rotate(0);
            }

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

        @-moz-keyframes rotate {
            0% {
                -moz-transform: rotate(0);
            }

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

        @-ms-keyframes rotate {
            0% {
                -ms-transform: rotate(0);
            }

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

        @-o-keyframes rotate {
            0% {
                -o-transform: rotate(0);
            }

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

        @keyframes rotate {
            0% {
                transform: rotate(0);
            }

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

        @-webkit-keyframes scale {
            0% {
                -webkit-transform: scale(0);
                opacity: 0;
            }

            50% {
                -webkit-transform: scale(2);
                opacity: 0.5;
            }

            100% {
                -webkit-transform: scale(1);
                opacity: 1;
            }
        }

        @-moz-keyframes scale {
            0% {
                -moz-transform: scale(0);
                opacity: 0;
            }

            50% {
                -moz-transform: scale(2);
                opacity: 0.5;
            }

            100% {
                -moz-transform: scale(1);
                opacity: 1;
            }
        }

        @-ms-keyframes scale {
            0% {
                -ms-transform: scale(0);
                opacity: 0;
            }

            50% {
                -ms-transform: scale(2);
                opacity: 0.5;
            }

            100% {
                -ms-transform: scale(1);
                opacity: 1;
            }
        }

        @-o-keyframes scale {
            0% {
                -o-transform: scale(0);
                opacity: 0;
            }

            50% {
                -o-transform: scale(2);
                opacity: 0;
                .5
            }

            100% {
                -o-transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes scale {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            50% {
                transform: scale(2);
                opacity: 0.5;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media only screen and (max-width: 800px) {
            #royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
                height: 22px;
                line-height: 22px;
                font-size: 22px;
            }
        }
        .cart-has-items [data-icon=cart] .cart-link__bubble {
            top: 0;
            right: -4px;
        }

        .cart-has-items .cart-link__bubble {
            display: block;
            position: absolute;
            top: 14px;
            right: -2px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

        .cart-link__bubble {
            display: block;
            background-color: #FFDFCD;
            text-align: center;
            /*  line-height: 15px;*/
            border-radius: 50%;
            width: 18px;
            height: 18px;
            margin-right: -17px;
            margin-top: 10px;
        }
        .cart-link__count {
            display: block;
            font-size: 15px;
            font-weight:600;
            /*letter-spacing: -.5px;*/
            color: rgba(194,87,42,255);
        }
        .site-nav__thumb-cart .cart-link, .quick-view__thumb-cart .cart-link {
            left: -1px;
        }

        .cart-link {
            position: relative;
            display: block;
            line-height: 1;
        }
        .cart-has-items .site-nav__thumb-cart, .cart-has-items .quick-view__thumb-cart {
            display: -ms-flexbox;
            display: flex;
        }

        @media screen and (max-width: 767px) {
            .site-nav__thumb-cart, .quick-view__thumb-cart {
                background-color: #ba2747;
            }
        }

        .site-nav__thumb-cart {
            height: 50px;
            padding: 0 15px 0 10px;
        }

        .site-nav__thumb-cart, .quick-view__thumb-cart {
            /* display: none;*/
            -ms-flex-align: center;
            align-items: center;
            background-color: rgba(194,87,42,255);
            color: #fff;
            height: 68px;
            padding: 0 20px;
            border-top-right-radius: 35px;
            border-bottom-right-radius: 35px;
        }
        .site-nav__thumb-menu {
            border-radius: 35px !important;
            background-color: rgba(194,87,42,255);
            width:250px!important;
        }
        .banner-slide {
                width: 1300px;
                margin: 0 auto;
            }

            .review-slide {
                width: 100%;
            }

            .banner-slide img {
                width: 100%;
            }

            .retreates-heading {
                color: rgba(194,87,42,255);
                text-align: center;
            }

            .dt-sc-sociable {
                list-style: none;
                display: flex;
            }

                .dt-sc-sociable li {
                    margin-right: 15px;
                    font-size: 28px;
                    color: rgba(194,87,42,255);
                }

                    .dt-sc-sociable li a {
                        color: rgba(194,87,42,255) !important;
                    }

            @media (max-width:767px) {
                .dt-sc-sociable li {
                    margin-right: 10px;
                    font-size: 17px !important;
                    color: rgba(194,87,42,255);
                }
            }

            .therayog_Connect_Widget {
                background: rgba(194,87,42,255);
                margin-bottom: 30px;
                float: right;
                width: 100%;
                font-size: 17px;
                /* background-image: url(../../../../../../themes/kriya/images/pattern-chakras-white.png);*/
                padding-top: 0;
            }

                .therayog_Connect_Widget ul.therayog-programs-widget li h4 {
                    display: block;
                    font-size: 15px;
                    color: #fff;
                    font-weight: 400;
                    margin: 0;
                    padding: 0 0 6px 16px !important;
                    text-align: left;
                }

                .therayog_Connect_Widget ul.therayog-programs-widget li p.therayog-program-date {
                    display: block;
                    color: #fff !important;
                    font-size: 15px;
                    font-style: normal;
                    text-align: left;
                    padding: 0;
                    margin: 0 0 0 15px;
                    line-height: normal;
                }

                .therayog_Connect_Widget .widgettitle {
                    color: #fff !important;
                    padding-left: 15px;
                    margin-bottom: 10px;
                    padding: 10px 0 10px 52px;
                    background-image: url('assets/faq-img/calender_icon.png');
                    background-repeat: no-repeat;
                    background-position: 14px 4px;
                }

                    .therayog_Connect_Widget .widgettitle:before {
                        width: 100%;
                    }

            .therayog-program-date {
                color: #fff;
            }

            .widget ul {
                padding: 0;
                margin: 0;
                width: 100%;
                float: left;
            }

            .therayog_Connect_Widget ul.therayog-programs-widget li {
                border-bottom: 1px solid rgba(248,148,6,.5) !important;
                display: block;
                padding: 10px 0;
            }

            .therayog_Connect_Widget ul.therayog-programs-widget {
                overflow-y: auto;
                padding: 0;
                margin: 0;
                height: 400px;
                text-align: center;
                list-style: none;
            }

            .widgettitle:before {
                border-bottom: solid;
                border-width: 1px 0;
                content: "";
                height: 2px;
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 90%;
            }

            .widgettitle {
                font-size: 17px !important;
                letter-spacing: 1px;
                line-height: normal;
                margin: 5px 0 20px;
                position: relative;
            }

            .therayog-programs-widget {
                padding-left: 0em !important;
            }

                .therayog-programs-widget li {
                    list-style: none;
                    border-bottom: solid #fff;
                    border-width: 1px 0;
                    padding: 10px;
                }

            .therayog-program-title a {
                color: #fff;
            }
 #wrapper {
                background: #FAF9F7 !important;
                /* background-color: #ffffff;*/
                padding: 10px 20px;
                margin-bottom: 20px;
                border-radius: 5px;
                /* -webkit-box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
            }

            .toggle,
            .content {
                font-family: "Poppins", sans-serif;
                color: #000000;
            }

            .toggle {
                width: 100%;
                background-color: transparent;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                font-size: 16px;
                color: #000000;
                font-weight: 600;
                border: none;
                outline: none;
                cursor: pointer;
                padding: 10px 0;
            }

                .toggle:not(.collapsed) {
                    color: #000000 !important;
                }

            .content {
                position: relative;
                font-size: 14px;
                text-align: justify;
                line-height: 30px;
                height: 0;
                overflow: hidden;
                -webkit-transition: all 1s;
                -o-transition: all 1s;
                transition: all 1s;
            }

            .faq-side {
                position: relative;
                opacity: 0;
                -webkit-animation: bounceInUp 1000ms linear 500ms forwards;
                animation: bounceInUp 1000ms linear 500ms forwards;
            }

                .faq-side label, .faq-side a {
                    transition: all 150ms ease-out;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    align-content: center;
                    height: 48px;
                    width: 216px;
                    padding: 0 12px;
                    background: white;
                    border: 2px solid #A6ADA7;
                    border-radius: 2px;
                    font-size: 18px;
                    font-weight: 600;
                    letter-spacing: -1px;
                }

                    .faq-side a:hover, .faq-side a:focus {
                        border-color: #d0ddd1;
                    }

                    .faq-side a:active {
                        border-color: #F5C8BF;
                    }

                .faq-side label {
                    position: relative;
                }

                    .faq-side label:before, .faq-side label:after {
                        transition: all 150ms ease-out;
                        content: "";
                        display: block;
                        position: absolute;
                        width: 2px;
                        height: 12px;
                        background: #A6ADA7;
                        border-radius: 2px;
                    }

                    .faq-side label:before {
                        transform: rotate(-45deg);
                    }

                    .faq-side label:after {
                        transform: rotate(45deg);
                    }

                    .faq-side label.down:before, .faq-side label.down:after {
                        transform-origin: center 11px;
                        top: 50%;
                        margin-top: -6px;
                        right: 20px;
                    }

                    .faq-side label.right:before, .faq-side label.right:after {
                        transform-origin: left center;
                        top: 50%;
                        right: 20px;
                    }

                    .faq-side label.right:before {
                        margin-top: -9px;
                    }

                    .faq-side label.right:after {
                        margin-top: -3px;
                    }

                .faq-side > label {
                    transform: translateZ(1px);
                    z-index: 1;
                }

                .faq-side ul {
                    will-change: visibility;
                    transition: visibility 0ms ease-out 600ms;
                    visibility: hidden;
                    z-index: 1;
                }

                    .faq-side ul li {
                        will-change: transform, opacity;
                        padding: 4px 0;
                        opacity: 0;
                    }

                        .faq-side ul li:nth-child(1) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 500ms, opacity 100ms ease-out 500ms;
                        }

                        .faq-side ul li:nth-child(2) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 400ms, opacity 100ms ease-out 400ms;
                        }

                        .faq-side ul li:nth-child(3) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 300ms, opacity 100ms ease-out 300ms;
                        }

                        .faq-side ul li:nth-child(4) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 200ms, opacity 100ms ease-out 200ms;
                        }

                        .faq-side ul li:nth-child(5) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 100ms, opacity 100ms ease-out 100ms;
                        }

                .faq-side > ul {
                    position: relative;
                    padding-top: 4px;
                }

                    .faq-side > ul > li {
                        transform: translateY(-100%);
                    }

                        .faq-side > ul > li > label {
                            transform: translateZ(0.5px);
                        }

                    .faq-side > ul ul {
                        position: absolute;
                        top: 0;
                        right: 129px;
                    }

                        .faq-side > ul ul > li {
                            transform: translateX(-100%);
                        }

                .faq-side input {
                    cursor: pointer;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    opacity: 0;
                    position: absolute;
                    width: 216px;
                    height: 48px;
                    margin: 0;
                }

                    .faq-side input:hover ~ label, nav input:focus ~ label {
                        border-color: #d0ddd1;
                    }

                    .faq-side input:active ~ label {
                        border-color: #F5C8BF;
                    }

                    .faq-side input:checked ~ label {
                        border-color: #AEBFAF;
                    }

                        .faq-side input:checked ~ label.down:before, nav input:checked ~ label.down:after {
                            margin-top: -16px;
                        }

                        .faq-side input:checked ~ label.down:before {
                            transform: rotate(-135deg);
                        }

                        .faq-side input:checked ~ label.down:after {
                            transform: rotate(135deg);
                        }

                        .faq-side input:checked ~ label.right:before {
                            transform: rotate(45deg);
                            margin-top: -11px;
                        }

                        .faq-side input:checked ~ label.right:after {
                            transform: rotate(-45deg);
                            margin-top: -2px;
                        }

                    .faq-side input:checked ~ ul {
                        visibility: visible;
                        transition: visibility 0ms ease-out 0ms;
                    }

                        .faq-side input:checked ~ ul > li {
                            opacity: 1;
                            transform: none;
                        }

                            .faq-side input:checked ~ ul > li:nth-child(1) {
                                transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 100ms, opacity 100ms ease-out 100ms;
                            }

                            .faq-side input:checked ~ ul > li:nth-child(2) {
                                transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 200ms, opacity 100ms ease-out 200ms;
                            }

                            .faq-side input:checked ~ ul > li:nth-child(3) {
                                transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 300ms, opacity 100ms ease-out 300ms;
                            }

                            .faq-side input:checked ~ ul > li:nth-child(4) {
                                transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 400ms, opacity 100ms ease-out 400ms;
                            }

                            .faq-side input:checked ~ ul > li:nth-child(5) {
                                transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 500ms, opacity 100ms ease-out 500ms;
                            }

                .faq-side > input {
                    z-index: 2;
                    top: 0;
                    left: 0;
                }

                    .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li {
                        opacity: 0;
                        transform: translateX(-100%);
                    }

                        .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li:nth-child(1) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 500ms, opacity 100ms ease-out 500ms;
                        }

                        .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li:nth-child(2) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 400ms, opacity 100ms ease-out 400ms;
                        }

                        .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li:nth-child(3) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 300ms, opacity 100ms ease-out 300ms;
                        }

                        .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li:nth-child(4) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 200ms, opacity 100ms ease-out 200ms;
                        }

                        .faq-side > input:not(:checked) ~ ul > li input:checked ~ ul li:nth-child(5) {
                            transition: transform 150ms cubic-bezier(0, 0.5, 0.5, 1.1) 100ms, opacity 100ms ease-out 100ms;
                        }


            @-webkit-keyframes bounceInUp {
                0% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 200, 0, 1);
                    opacity: 0;
                }

                5.51% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 95.356, 0, 1);
                }

                11.01% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 23.691, 0, 1);
                }

                16.52% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.467, 0, 1);
                }

                21.92% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -16.994, 0, 1);
                }

                36.24% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -3.682, 0, 1);
                    opacity: 1;
                }

                50.55% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1.004, 0, 1);
                }

                79.08% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.059, 0, 1);
                }

                100% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
                    opacity: 1;
                }
            }

            @keyframes bounceInUp {
                0% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 200, 0, 1);
                    opacity: 0;
                }

                5.51% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 95.356, 0, 1);
                }

                11.01% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 23.691, 0, 1);
                }

                16.52% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.467, 0, 1);
                }

                21.92% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -16.994, 0, 1);
                }

                36.24% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -3.682, 0, 1);
                    opacity: 1;
                }

                50.55% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1.004, 0, 1);
                }

                79.08% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.059, 0, 1);
                }

                100% {
                    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
                    opacity: 1;
                }
            }

            .faq-side ul {
                list-style: none;
            }

            #iframid-retreate {
                width: 550px;
                height: 350px;
            }
            @media (max-width:768px){
                #iframid-retreate {
                    width: 100%!important;
                    height: 100%!important;
                }
                .custom-arrow.prev {
                    left: 10px;
                    display:none;
                }

                .custom-arrow.next {
                    right: 10px;
                    display: none;
                }
            }
            .slick-next, .slick-prev {
                font-size: 0;
                line-height: 0;
                position: absolute;
                top: 50%;
                display: block;
                width: 20px;
                height: 20px;
                padding: 0;
                -webkit-transform: translate(0,-50%);
                -ms-transform: translate(0,-50%);
                transform: translate(0,-50%);
                cursor: pointer;
                color: rgba(194,87,42,255);
                border: none;
                outline: 0;
                background: 0 0;
            }
                .slick-next:before, .slick-prev:before {
                    font-family: slick;
                    font-size: 20px;
                    line-height: 1;
                    opacity: .75;
                    color: #fff;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                }
            .custom-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                
                color: rgba(194,87,42,255);
                font-size: 34px;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }

                .custom-arrow.prev {
                    left: 10px;
                }

                .custom-arrow.next {
                    right: 10px;
                }
                 .block-title {
            background: rgba(194,87,42,255);
            text-align: center;
            color: #fff;
            padding: 10px 0;
            font-size: 20px;
            letter-spacing: 1px;
            position: relative;
            margin-bottom: 25px;
        }
        .block-content .level0 {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .block-content .level0.item {
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-left: 10px;
            line-height: 39px;
        }
            .block-content .level0.item a {
                font-size: 18px;
                color: #000;
            }
        .banner_name-space {
            padding-top: 15px;
        }
        .heading-blog a{
            font-size: 22px;
            font-weight: 600;
            color: rgba(194,87,42,255)!important;
            text-align:center;
            text-transform:uppercase;
            text-decoration:none!important;
        }
        @media (max-width:768px){
            .container-fluid {
                padding: 20px;
            }
            .heading-blog a {
                font-size:19px!important;
            }
            }
            @media (min-width:1200px){
                        .bg-faq-sec {
                            background: #FAF9F7;
                            padding: 15px;
                        }
                        .section-faq{
                            padding:60px 0px;
                        }
                    }
                    .bg-faq-sec {
                        background: #FAF9F7;
                    }
                    .sticky-div1 {
                        position: sticky;
                        top: 160px;
                        /* Additional styling for the sticky div */
                    }
                    .sticky-div {
                        position: sticky;
                        top: 100px;
                        /* Additional styling for the sticky div */
                    }
                    .nav-class-left {
                                        position: relative;
                                        margin: 20px;
                                        /* width: 360px;*/
                                        /* box-shadow: 0 5px 10px rgba(0, 0, 50, 0.2);*/
                                    }

                                        .nav-class-left ul {
                                            list-style: none;
                                            margin: 0;
                                            padding: 0;
                                        }

                                            .nav-class-left ul li {
                                                /* Sub Menu */
                                            }

                                                .nav-class-left ul li a {
                                                    display: block;
                                                    background: #FAF9F7;
                                                    padding: 10px 15px;
                                                    color: #333;
                                                    text-decoration: none;
                                                    -webkit-transition: 0.2s linear;
                                                    -moz-transition: 0.2s linear;
                                                    -ms-transition: 0.2s linear;
                                                    -o-transition: 0.2s linear;
                                                    transition: 0.2s linear;
                                                }

                                                    .nav-class-left ul li a:hover {
                                                        background: #FAF9F7;
                                                        color: #515151;
                                                    }

                                                    .nav-class-left ul li a .fa {
                                                        width: 16px;
                                                        text-align: center;
                                                        margin-right: 5px;
                                                        float: right;
                                                    }

                                            .nav-class-left ul ul {
                                                background-color: #FAF9F7;
                                            }

                                            .nav-class-left ul li ul li a {
                                                background: #FAF9F7;
                                                border-left: 4px solid transparent;
                                                padding: 10px 20px;
                                            }

                                                .nav-class-left ul li ul li a:hover {
                                                    background: #ebebeb;
                                                    border-left: 4px solid rgba(194,87,42,255);
                                                }
                                                .block-title {
            background: rgba(194,87,42,255);
            text-align: center;
            color: #fff;
            padding: 10px 0;
            font-size: 20px;
            letter-spacing: 1px;
            position: relative;
            margin-bottom: 25px;
        }

        .block-content .level0 {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .block-content .level0.item {
                margin-bottom: 10px;
                border-bottom: 1px solid #eee;
                padding-left: 10px;
                line-height: 39px;
            }

                .block-content .level0.item a {
                    font-size: 18px;
                    color: #000;
                    text-decoration:none!important;
                }

        .banner_name-space {
            padding-top: 15px;
        }

        

        @media (max-width:768px) {
            .container-fluid {
                padding: 20px;
            }
            .blog-detail-heading h1 {
                font-size: 24px!important;
                font-weight: 600;
                text-transform: uppercase;
                color: rgba(194,87,42,255);
                margin-top: 20px;
            }
            #padding-left-sec-blog-detail {
                padding-left: 20px!important;
                padding-right: 20px!important;
                padding-bottom:25px;
            }
            input[type=submit] {
                margin-left:0px!important;
            }
            }
        .blog-detail-heading h1 {
            font-size: 44px;
            font-weight: 600;
            text-transform: uppercase;
            color: rgba(194,87,42,255);
            margin-top:20px;
        }
        input[type=text], input[type=email], select, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            margin-top: 6px;
            margin-bottom: 16px;
            resize: vertical;
            border-radius: 35px;
        }
        input[type=submit] {
            cursor: pointer;
            background: #FFDFCD;
            padding: 8px 25px;
            margin-left: 30px;
            border-radius: 40px;
            color: rgba(194,87,42,255);
            border: 2px solid #FFDFCD;
            font-weight: 600;
        }
        #padding-left-sec-blog-detail{
            padding-left:35px;
            padding-right:35px;
        }
        .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            vertical-align: middle;
            fill: rgba(194,87,42,255);
        }
        .btn--tertiary, .rte .btn--tertiary {
            background-color: #fff;
            border: 2px solid rgba(194,87,42,255);
            color: rgba(194,87,42,255)!important;
            font-weight: 400;
            text-decoration:none;
        }
        .btn.btn--tertiary:hover {
            border: 2px solid rgba(194,87,42,255)!important;
            color: rgba(194,87,42,255) !important;
        }
        .banner-slide {
                width: 1300px;
                margin: 0 auto;
            }

            .review-slide {
                width: 100%;
            }

            .banner-slide img {
                width: 100%;
            }

            .retreates-heading {
                color: rgba(194,87,42,255);
               
            }

            .dt-sc-sociable {
                list-style: none;
                display: flex;
            }

                .dt-sc-sociable li {
    margin-right: 24px;
    font-size: 22px;
    color: rgba(194,87,42,255);
    text-align: -webkit-center;
    margin-left: 22px;
}

                    .dt-sc-sociable li a {
                        color: rgba(194,87,42,255) !important;
                    }

            @media (max-width:767px) {
                .dt-sc-sociable li {
                    margin-right: 10px;
                    font-size: 17px !important;
                    color: rgba(194,87,42,255);
                }
            }

            .therayog_Connect_Widget {
                background: rgba(194,87,42,255);
                margin-bottom: 30px;
                float: right;
                width: 100%;
                font-size: 17px;
                /* background-image: url(../../../../../../themes/kriya/images/pattern-chakras-white.png);*/
                padding-top: 0;
            }

                .therayog_Connect_Widget ul.therayog-programs-widget li h4 {
                    display: block;
                    font-size: 15px;
                    color: #fff;
                    font-weight: 400;
                    margin: 0;
                    padding: 0 0 6px 16px !important;
                    text-align: left;
                }

                .therayog_Connect_Widget ul.therayog-programs-widget li p.therayog-program-date {
                    display: block;
                    color: #fff !important;
                    font-size: 15px;
                    font-style: normal;
                    text-align: left;
                    padding: 0;
                    margin: 0 0 0 15px;
                    line-height: normal;
                }

                .therayog_Connect_Widget .widgettitle {
                    color: #fff !important;
                    padding-left: 15px;
                    margin-bottom: 10px;
                    padding: 10px 0 10px 52px;
                    background-image: url('/frontend/assets/img/calender_icon.png');
                    background-repeat: no-repeat;
                    background-position: 14px 4px;
                }

                    .therayog_Connect_Widget .widgettitle:before {
                        width: 100%;
                    }

            .therayog-program-date {
                color: #fff;
            }

            .widget ul {
                padding: 0;
                margin: 0;
                width: 100%;
                float: left;
            }

            .therayog_Connect_Widget ul.therayog-programs-widget li {
                border-bottom: 1px solid rgba(248,148,6,.5) !important;
                display: block;
                padding: 10px 0;
            }

            .therayog_Connect_Widget ul.therayog-programs-widget {
                overflow-y: auto;
                padding: 0;
                margin: 0;
                height: 400px;
                text-align: center;
                list-style: none;
            }

            .widgettitle:before {
                border-bottom: solid;
                border-width: 1px 0;
                content: "";
                height: 2px;
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 90%;
            }

            .widgettitle {
                font-size: 17px !important;
                letter-spacing: 1px;
                line-height: normal;
                margin: 5px 0 20px;
                position: relative;
            }

            .therayog-programs-widget {
                padding-left: 0em !important;
            }

                .therayog-programs-widget li {
                    list-style: none;
                    border-bottom: solid #fff;
                    border-width: 1px 0;
                    padding: 10px;
                }

            .therayog-program-title a {
                color: #fff;
            }

            .img-card-sec-retreate {
                margin-top: 15px;
                border-radius: 24px;
            }

            #iframid-retreate {
                width: 621px;
                height: 450px;
            }
            .right_block {
    width: 100%;
}
.right_block h3 {
    font-size: 23px;
}
.right_block h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    color: rgba(194,87,42,255)!important;
    margin-bottom:15px;
   
    margin-bottom: 12px;
}
.right_block {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
}
.right_block #joinbtn{
    background:rgba(194,87,42,255)!important;
    color:#fff;
}
@media (max-width: 1366px){
.register_desktop {
    right: 8.5%;
}
}
.country-code-container {
  position: relative;
}

.country-code-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-code-list li {
  padding: 8px 12px;
  cursor: pointer;
}

.country-code-list li:hover {
  background-color: #ddd;
}
.accordion {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
      -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
  /*transition: max-height 0.3s ease-out;*/
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 0px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
@media (min-width:1200px){
    .image-diet-plan{
        width:100%;
        height:350px;
        overflow:hidden;
    }
    .image-diet-plan img{
        width:100%;
        height:auto;
        object-fit:contain;
        object-position:center center;
    }
    .width-diet-plan{
        width:1050px;
        height:520px;
        overflow:hidden;
    }
    .width-diet-plan img{
         width:100%;
        height:auto;
        object-fit:contain;
        object-position:center center;
    }
}
.diet-plan-first-img{
    width:100%!important;
}
    .all-img-border-radius{
       border-radius:14px; 
    }
    
     .navigation {
            width: 100%;
            height: 70px;
            display: table;
            position: relative;
            font-family: inherit;
            background-color: #FFDFCD;
        }

            .navigation * {
                box-sizing: border-box;
                -webkit-tap-highlight-color: transparent;
            }

        .navigation-portrait {
            height: 48px;
        }

        .navigation-fixed {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 19998;
        }

        .navigation-hidden {
            width: 0 !important;
            height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .align-to-right {
            float: right;
        }

        .nav-header {
            float: left;
        }

        .navigation-hidden .nav-header {
            display: none;
        }

        .nav-brand {
            line-height: 70px;
            padding: 0;
            color: #343a40;
            font-size: 24px;
            text-decoration: none !important;
        }

            .nav-brand:hover,
            .nav-brand:focus {
                color: #343a40;
            }

        .navigation-portrait .nav-brand {
            font-size: 18px;
            line-height: 48px;
        }

        .nav-logo > img {
            height: 48px;
            margin: 11px auto;
            padding: 0 15px;
            float: left;
        }

        .nav-logo:focus > img {
            outline: initial;
        }

        .navigation-portrait .nav-logo > img {
            height: 36px;
            margin: 6px auto 6px 15px;
            padding: 0;
        }

        .nav-toggle {
            width: 30px;
            height: 30px;
            padding: 6px 2px 0;
            position: absolute;
            top: 50%;
            margin-top: -14px;
            right: 15px;
            display: none;
            cursor: pointer;
        }

            /*.nav-toggle:before {*/
            /*    content: "";*/
            /*    position: absolute;*/
            /*    width: 24px;*/
            /*    height: 2px;*/
            /*    background-color: #343a40;*/
            /*    border-radius: 10px;*/
            /*    box-shadow: 0 0.5em 0 0 #343a40, 0 1em 0 0 #343a40;*/
            /*}*/

        .navigation-portrait .nav-toggle {
            display: block;
        }

        .navigation-portrait .nav-menus-wrapper {
            width: 320px;
            height: 100%;
            top: 0;
            left: -400px;
            position: fixed;
            background-color: #fff;
            z-index: 20000;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transition-duration: 0.2s;
            transition-timing-function: ease;
        }

            .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
                left: auto;
                right: -400px;
            }

            .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
                left: 0;
            }

            .navigation-portrait
            .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
                left: auto;
                right: 0;
            }

        .nav-menus-wrapper-close-button {
            width: 30px;
            height: 40px;
            margin: 10px 7px;
            display: none;
            float: right;
            color: #343a40;
            font-size: 26px;
            cursor: pointer;
        }

        .navigation-portrait .nav-menus-wrapper-close-button {
            display: block;
        }

        .nav-menu {
            margin: 0;
            padding: 0;
            list-style: none;
            line-height: normal;
            font-size: 0;
        }

        .navigation-portrait .nav-menu {
            width: 100%;
        }

        .navigation-landscape .nav-menu.nav-menu-centered {
            float: none;
            text-align: center;
        }

            .navigation-landscape .nav-menu.nav-menu-centered > li {
                float: none;
            }

        .nav-menu > li {
            display: inline-block;
            float: left;
            text-align: left;
        }

        .navigation-portrait .nav-menu > li {
            width: 100%;
            position: relative;
            border-top: solid 1px #f0f0f0;
        }

            .navigation-portrait .nav-menu > li:last-child {
                border-bottom: solid 1px #f0f0f0;
            }

        .nav-menu + .nav-menu > li:first-child {
            border-top: none;
        }

        .nav-menu > li > a {
            height: 70px;
            padding: 26px 15px;
            display: inline-block;
            text-decoration: none;
            font-size: 14px;
            color: #343a40;
            transition: color 0.3s, background 0.3s;
        }

        .navigation-portrait .nav-menu > li > a {
            width: 100%;
            height: auto;
            padding: 12px 15px 12px 26px;
        }

        .nav-menu > li:hover > a,
        .nav-menu > li.active > a,
        .nav-menu > li.focus > a {
            color: #000000;
        }

        .nav-menu > li > a > i,
        .nav-menu > li > a > [class*="ion-"] {
            width: 18px;
            height: 16px;
            line-height: 16px;
            transform: scale(1.4);
        }

        .nav-menu > li > a > [class*="ion-"] {
            width: 16px;
            display: inline-block;
            transform: scale(1.8);
        }

        .navigation-portrait .nav-menu.nav-menu-social {
            width: 100%;
            text-align: center;
        }

        .nav-menu.nav-menu-social > li {
            text-align: center;
            float: none;
            border: none !important;
        }

        .navigation-portrait .nav-menu.nav-menu-social > li {
            width: auto;
        }

        .nav-menu.nav-menu-social > li > a > [class*="ion-"] {
            font-size: 12px;
        }

        .nav-menu.nav-menu-social > li > a > .fa {
            font-size: 14px;
        }

        .navigation-portrait .nav-menu.nav-menu-social > li > a {
            padding: 15px;
        }

        .submenu-indicator {
            margin-left: 6px;
            margin-top: 4px;
            float: right;
            transition: all 0.2s;
        }

        .navigation-portrait .submenu-indicator {
            width: 54px;
            height: 44px;
            margin-top: 0;
            position: absolute;
            top: 0;
            right: 0;
            text-align: center;
            z-index: 20000;
        }

        .submenu-indicator-chevron {
            height: 6px;
            width: 6px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #70798b #70798b transparent;
            transform: rotate(45deg);
            transition: border 0.2s;
        }

        .navigation-portrait .submenu-indicator-chevron {
            position: absolute;
            top: 18px;
            left: 24px;
        }

        .nav-menu > li:hover > a .submenu-indicator-chevron,
        .nav-menu > .active > a .submenu-indicator-chevron,
        .nav-menu > .focus > a .submenu-indicator-chevron {
            border-color: transparent #967adc #967adc transparent;
        }

        .navigation-portrait .submenu-indicator.submenu-indicator-up {
            transform: rotate(-180deg);
        }

        .nav-overlay-panel {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: fixed;
            display: none;
            z-index: 19999;
        }

        .no-scroll {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .nav-search {
            height: 70px;
            float: right;
            z-index: 19998;
        }

        .navigation-portrait .nav-search {
            height: 48px;
            padding: 0 10px;
            margin-right: 52px;
        }

        .navigation-hidden .nav-search {
            display: none;
        }

        .nav-search-button {
            width: 70px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            cursor: pointer;
            background-color: #fbfcfd;
        }

        .navigation-portrait .nav-search-button {
            width: 50px;
            height: 48px;
            line-height: 46px;
            font-size: 22px;
        }

        .nav-search-icon {
            width: 14px;
            height: 14px;
            margin: 2px 8px 8px 4px;
            display: inline-block;
            vertical-align: middle;
            position: relative;
            color: #343a40;
            text-align: left;
            text-indent: -9999px;
            border: 2px solid;
            border-radius: 50%;
            transform: rotate(-45deg);
        }

            .nav-search-icon:after,
            .nav-search-icon:before {
                content: "";
                pointer-events: none;
            }

            .nav-search-icon:before {
                width: 2px;
                height: 11px;
                top: 11px;
                position: absolute;
                left: 50%;
                border-radius: 0 0 1px 1px;
                box-shadow: inset 0 0 0 32px;
                transform: translateX(-50%);
            }

        .nav-search-button:hover .nav-search-icon {
            color: #ff6b00;
        }

        .nav-search > form {
            width: 100%;
            height: 100%;
            padding: 0 auto;
            display: none;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #fff;
            z-index: 99;
        }

        .nav-search-inner {
            width: 70%;
            height: 70px;
            margin: auto;
            display: table;
        }

        .navigation-portrait .nav-search-inner {
            height: 48px;
        }

        .nav-search-inner input[type="text"],
        .nav-search-inner input[type="search"] {
            height: 70px;
            width: 100%;
            margin: 0;
            padding: 0 12px;
            font-size: 26px;
            text-align: center;
            color: #343a40;
            outline: none;
            line-height: 70px;
            border: none;
            background-color: transparent;
            transition: all 0.3s;
        }

        .navigation-portrait .nav-search-inner input[type="text"],
        .navigation-portrait .nav-search-inner input[type="search"] {
            height: 48px;
            font-size: 18px;
            line-height: 48px;
        }

        .nav-search-close-button {
            width: 28px;
            height: 28px;
            display: block;
            position: absolute;
            right: 20px;
            top: 20px;
            line-height: normal;
            color: #343a40;
            font-size: 20px;
            cursor: pointer;
            text-align: center;
        }

        .navigation-portrait .nav-search-close-button {
            top: 10px;
            right: 14px;
        }

        .nav-button {
            margin: 18px 15px 0;
            padding: 8px 14px;
            display: inline-block;
            color: #fff;
            font-size: 14px;
            text-align: center;
            text-decoration: none;
            border-radius: 4px;
        }

            .nav-button:hover,
            .nav-button:focus {
                color: #fff;
                text-decoration: none;
            }

        .navigation-portrait .nav-button {
            width: calc(100% - 52px);
            margin: 17px 26px;
        }

        .nav-text {
            margin: 25px 15px;
            display: inline-block;
            color: #343a40;
            font-size: 14px;
        }

        .navigation-portrait .nav-text {
            width: calc(100% - 52px);
            margin: 12px 26px 0;
        }

            .navigation-portrait .nav-text + ul {
                margin-top: 15px;
            }

        .nav-dropdown {
            min-width: 180px;
            margin: 0;
            padding: 0;
            display: none;
            position: absolute;
            list-style: none;
            z-index: 98;
            white-space: nowrap;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075)
        }

        .navigation-portrait .nav-dropdown {
            width: 100%;
            position: static;
            left: 0;
        }

        .nav-dropdown .nav-dropdown {
            left: 100%;
        }

        .nav-menu > li > .nav-dropdown {
            border-top: solid 1px #f0f0f0;
        }

        .nav-dropdown > li {
            width: 100%;
            float: left;
            clear: both;
            position: relative;
            text-align: left;
        }

            .nav-dropdown > li > a {
                width: 100%;
                padding: 16px 20px;
                display: inline-block;
                text-decoration: none;
                float: left;
                font-size: 13px;
                color: #343a40;
                background-color: #fdfdfd;
            }

            .nav-dropdown > li:hover > a,
            .nav-dropdown > li.focus > a {
                color: #ff6b00;
            }

        .nav-dropdown.nav-dropdown-left {
            right: 0;
        }

        .nav-dropdown > li > .nav-dropdown-left {
            left: auto;
            right: 100%;
        }

        .navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
            text-align: right;
        }

        .navigation-portrait .nav-dropdown > li > a {
            padding: 12px 20px 12px 30px;
        }

        .navigation-portrait .nav-dropdown > li > ul > li > a {
            padding-left: 50px;
        }

        .navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
            padding-left: 70px;
        }

        .navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
            padding-left: 90px;
        }

        .navigation-portrait
        .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
            padding-left: 110px;
        }

        .nav-dropdown .submenu-indicator {
            right: 15px;
            top: 10px;
            position: absolute;
        }

        .navigation-portrait .nav-dropdown .submenu-indicator {
            right: 0;
            top: 0;
        }

        .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
            transform: rotate(-45deg);
        }

        .navigation-portrait
        .nav-dropdown
        .submenu-indicator
        .submenu-indicator-chevron {
            transform: rotate(45deg);
        }

        .nav-dropdown > li:hover > a .submenu-indicator-chevron,
        .nav-dropdown > .focus > a .submenu-indicator-chevron {
            border-color: transparent #ff6b00 #ff6b00 transparent;
        }

        .navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
            left: 10px;
        }

            .navigation-landscape
            .nav-dropdown.nav-dropdown-left
            .submenu-indicator
            .submenu-indicator-chevron {
                transform: rotate(135deg);
            }

        .nav-dropdown-horizontal {
            width: 100%;
            left: 0;
            background-color: #fdfdfd;
            border-top: solid 1px #f0f0f0;
        }

            .nav-dropdown-horizontal .nav-dropdown-horizontal {
                width: 100%;
                top: 100%;
                left: 0;
            }

        .navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
            border-top: none;
        }

        .nav-dropdown-horizontal > li {
            width: auto;
            clear: none;
            position: static;
        }

        .navigation-portrait .nav-dropdown-horizontal > li {
            width: 100%;
        }

        .nav-dropdown-horizontal > li > a {
            position: relative;
        }

        .nav-dropdown-horizontal .submenu-indicator {
            height: 18px;
            top: 11px;
            transform: rotate(90deg);
        }

        .navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
            height: 42px;
            top: 0;
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

            .navigation-portrait
            .nav-dropdown-horizontal
            .submenu-indicator.submenu-indicator-up {
                transform: rotate(-180deg);
            }

        .megamenu-panel {
            width: 100%;
            padding: 15px;
            display: none;
            position: absolute;
            font-size: 14px;
            z-index: 98;
            text-align: left;
            color: inherit;
            border-top: solid 1px #f0f0f0;
            background-color: #fdfdfd;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
        }

        .navigation-portrait .megamenu-panel {
            padding: 25px;
            position: static;
            display: block;
        }

        .megamenu-panel [class*="container"] {
            width: 100%;
        }

            .megamenu-panel [class*="container"] [class*="col-"] {
                padding: 0;
            }

        .megamenu-panel-half {
            width: 50%;
        }

        .megamenu-panel-quarter {
            width: 25%;
        }

        .navigation-portrait .megamenu-panel-half,
        .navigation-portrait .megamenu-panel-quarter {
            width: 100%;
        }

        .megamenu-panel-row {
            width: 100%;
        }

            .megamenu-panel-row:before,
            .megamenu-panel-row:after {
                content: "";
                display: table;
                line-height: 0;
            }

            .megamenu-panel-row:after {
                clear: both;
            }

            .megamenu-panel-row [class*="col-"] {
                display: block;
                min-height: 20px;
                float: left;
                margin-left: 3%;
            }

                .megamenu-panel-row [class*="col-"]:first-child {
                    margin-left: 0;
                }

        .navigation-portrait .megamenu-panel-row [class*="col-"] {
            float: none;
            display: block;
            width: 100% !important;
            margin-left: 0;
            margin-top: 15px;
        }

        .navigation-portrait
        .megamenu-panel-row:first-child
        [class*="col-"]:first-child {
            margin-top: 0;
        }

        .megamenu-panel-row .col-1 {
            width: 5.583333333333%;
        }

        .megamenu-panel-row .col-2 {
            width: 14.166666666666%;
        }

        .megamenu-panel-row .col-3 {
            width: 22.75%;
        }

        .megamenu-panel-row .col-4 {
            width: 31.333333333333%;
        }

        .megamenu-panel-row .col-5 {
            width: 39.916666666667%;
        }

        .megamenu-panel-row .col-6 {
            width: 48.5%;
        }

        .megamenu-panel-row .col-7 {
            width: 57.083333333333%;
        }

        .megamenu-panel-row .col-8 {
            width: 65.666666666667%;
        }

        .megamenu-panel-row .col-9 {
            width: 74.25%;
        }

        .megamenu-panel-row .col-10 {
            width: 82.833333333334%;
        }

        .megamenu-panel-row .col-11 {
            width: 91.416666666667%;
        }

        .megamenu-panel-row .col-12 {
            width: 100%;
        }

        .megamenu-tabs {
            width: 100%;
            float: left;
            display: block;
        }

        .megamenu-tabs-nav {
            width: 20%;
            margin: 0;
            padding: 0;
            float: left;
            list-style: none;
        }

        .navigation-portrait .megamenu-tabs-nav {
            width: 100%;
        }

        .megamenu-tabs-nav > li > a {
            width: 100%;
            padding: 10px 16px;
            float: left;
            font-size: 13px;
            text-decoration: none;
            color: #343a40;
            border: solid 1px #eff0f2;
            outline: 0;
            background-color: #fff;
        }

        .megamenu-tabs-nav > li.active a,
        .megamenu-tabs-nav > li:hover a {
            background-color: #f5f5f5;
        }

        .megamenu-tabs-pane {
            width: 80%;
            min-height: 30px;
            padding: 20px;
            float: right;
            display: none;
            font-size: 13px;
            color: #343a40;
            border: solid 1px #eff0f2;
            background-color: #fff;
        }

            .megamenu-tabs-pane.active {
                display: block;
            }

        .navigation-portrait .megamenu-tabs-pane {
            width: 100%;
        }

        .megamenu-lists {
            width: 100%;
            display: table;
        }

        .megamenu-list {
            width: 100%;
            margin: 0 0 15px;
            padding: 0;
            display: inline-block;
            float: left;
            list-style: none;
        }

            .megamenu-list:last-child {
                margin: 0;
                border: none;
            }

        .navigation-landscape .megamenu-list {
            margin: -15px 0;
            padding: 20px 0;
            border-right: solid 1px #f0f0f0;
        }

            .navigation-landscape .megamenu-list:last-child {
                border: none;
            }

        .megamenu-list > li > a {
            width: 100%;
            padding: 10px 15px;
            display: inline-block;
            color: #000000;
            text-decoration: none;
            font-size: 14px;
        }

            .megamenu-list > li > a:hover {
                /*background-color: #ff6b00;*/
                color: #000;
            }

        .megamenu-list > li.megamenu-list-title > a {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            color: #000;
        }

            .megamenu-list > li.megamenu-list-title > a:hover {
                background-color: transparent;
            }

        .navigation-landscape .list-col-2 {
            width: 50%;
        }

        .navigation-landscape .list-col-3 {
            width: 33%;
        }

        .navigation-landscape .list-col-4 {
            width: 25%;
        }

        .navigation-landscape .list-col-5 {
            width: 20%;
        }

        .nav-menu > li > a {
            color: #000000;
            text-transform: uppercase;
            font-weight:600;
        }

        .nav-dropdown > li > a {
            color: #343a40;
            padding: 10px 20px;
            border-bottom: 1px solid #f6f6f6;
        }

            .nav-dropdown > li > a:hover,
            .nav-dropdown > li > a:focus {
                color: #000000;
            }

        .main_header_area.sticky {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            background-color: #FFDFCD;
            z-index: 9999;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .transparent-menu {
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            z-index: 99;
        }

        .navigation-portrait .nav-menu > li > a {
            width: 100%;
            height: auto;
            padding: 10px 10px 10px 30px;
        }

        @media only screen and (min-width: 320px) and (max-width: 767px) {
            .nav-dropdown > li > a,
            .megamenu-list > li > a {
                width: 100%;
            }
        }
        .navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}
@media (min-width:1200px){
    .navigation-landscape .list-col-6 {
    width: 50%;
}
}
 #card-mob-sec {
           
            border-radius: 18px!important;
           

        }
            #card-mob-sec img {
                width: 100%;
                object-fit: cover;
                border-radius: 18px !important;
            }
        .menu-parent {
            background: #fff;
            color: #000;
            text-align: left;
        }

            .menu-parent.style1 {
                background: #fff;
                color:#000!important;
                border:1px solid #f2f2f2;
            }

            .menu-parent.style2 {
                background: #fff;
                color: #000 !important;
                border: 1px solid #f2f2f2;
            }

            .menu-parent.style3 {
                background: #fff;
                color: #000 !important;
                border: 1px solid #f2f2f2;
            }

            .menu-parent * {
                margin: 0;
                padding: 0;
            }

            .menu-parent li {
                list-style: none;
            }

            .menu-parent ul ul {
                display: none;
            }

            .menu-parent li.active > ul {
                display: block;
            }

            .menu-parent > ul > li > a {
                position: relative;
                display: block;
               
                background: #fff;
                padding: 0 30px;
                font-size: 16px;
                line-height: 4;
                color: #000;
                text-decoration: none;
                border:1px solid #f2f2f2;
            }

                .menu-parent > ul > li > a .fa {
                    margin-right: 8px;
                }

            .menu-parent ul ul li a {
                color: #000;
                text-decoration: none;
                font-size: 16px;
                line-height: 4;
                display: block;
                padding: 0 30px;
                position: relative;
            }

                .menu-parent ul ul li a:hover {
                    background: #fff;
                    color:#000;
                }

            .menu-parent ul ul ul {
                background: rgba(0, 0, 0, 0.1);
                padding: 0;
            }

            .menu-parent a:not(:only-child):after {
                position: absolute;
                right: 20px;
                content: "\f067";
                top: -6px;
                font-size: 20px;
                font-family: FontAwesome;
            }

            .menu-parent .active > a:not(:only-child):after {
                content: "\f068";
                top: -6px;
                font-size: 20px;
                font-family: FontAwesome;
            }
        .top-left {
            position: absolute;
            top: 8px;
            left: 15px;
            color:#000;
            font-size:20px;
            font-weight:700;
            font-weight:700;
        }
        #mobile-heading a{
            color:#000!important;
        }
        #box-shadow-contact{
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
            border: 5px solid rgba(194,87,42,255);
    border-radius: 18px;
    padding:30px;
    background:#f2f2f2;
}
.select-dropdown,
.select-dropdown * {
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
.select-dropdown {
	position: relative;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 6px 1px #0000004b, inset 0 -16px 20px rgba(194,87,42,0);


}
.select-dropdown select {
	font-size: 1rem;
	font-weight: normal;
	max-width: 100%;
	padding: 12px 24px 8px 12px;
	border: none;
	background-color: transparent;
		-webkit-appearance: none;
		-moz-appearance: none;
	appearance: none;
}
.select-dropdown select:active, .select-dropdown select:focus {
	outline: none;
	box-shadow: none;
}
.select-dropdown:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-top: 5px solid #aaa;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.select-dropdown select option {
            padding: 10px; /* Add padding to the options */
            font-size:16px;
            border-bottom:1px solid #ccc;
        }
        
        .wrapper-dropdown {
  position: relative;
  
  display: inline-block; 
  min-width: 100%;
  padding: 0 5px 0 15px;
  
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 2px 0 rgba(0 ,0 , 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
  
  text-align: left;
  line-height: 45px;
  color: #444;
  
  cursor: pointer;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wrapper-dropdown::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  
  margin-top: -2px;
  width: 0;
  height: 0;
  
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #a0a0a0 transparent;
}

.wrapper-dropdown.active::before {
  border-width: 0 6px 6px 6px;
}

.wrapper-dropdown .dropdown {
  position: absolute;
  top: 140%;
  right: 0;
  left: 0;
  
  margin: 0;
  padding: 0;
  
  list-style: none;
  
  border-radius: inherit;
  box-shadow: inherit;
  background: inherit;
  
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  transition: .5s ease;
  
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  opacity: 0;
  visibility: hidden;
}

.wrapper-dropdown .dropdown li {
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  overflow: hidden;
  
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  transition: .5s ease;
}

.wrapper-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.wrapper-dropdown .dropdown li:hover {
  background: #FFDFCD;
  border-radius:24px;
}

.wrapper-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
  
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index:999;
  background:#fff;
}
  .table #list {
        display: flex;
        flex-wrap: wrap;
        list-style: none
    }

    .table #list li {
       
        width: 20%;
        text-align: center;


    }
    .tawk-min-container{
         position: fixed!important;
          bottom: 0;
          left: 0!important;
    }
    @media screen and (max-width: 1010px) {
    .table #list li {
    width: 100%!important;
    text-align: left!important;
}
.content .row .mega-links {
    margin-left: -47px;
    border-radius: 1px solid rgba(255,255,255,0.09);
    width: 100%;
}
.row .mega-links li {
     padding: 0 0px!important; 
}

}

    .table+.table li {
        background: #fff;
    }

    .table {
        display: table;
        border-collapse: separate;
        border-spacing: 5px 0px;
        width: 100%;
    }
    
    .badge {
        padding-left: 9px;
        padding-right: 9px;
        -webkit-border-radius: 9px;
        -moz-border-radius: 9px;
        border-radius: 9px;
    }

    .label-warning[href],
    .badge-warning[href] {
        background-color: #c67605;
    }

    #lblCartCount {
        font-size: 12px;
        background: #ff0000;
        color: #fff;
        padding: 3px 5px;
        vertical-align: top;
        margin-left: -319px;
        top: 53px;
        margin-top: 7px;

    }
    #pdng-last-sec {
    padding: 80px;
}
.btn:hover {
    background: rgba(194,87,42,255);
    color: #fff;
}
a {
    color: rgba(194,87,42,255);
}
.btns1{
    width: 50%;
    text-align: center !important;
    border-radius: 35px;
    background: #fff !important;
    /* height: 30px; */
    text-align: center;
    padding: 10px;
    color:rgba(194,87,42,255)!important;
}
    .search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
    background:#FAF9F7;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background: rgba(194,87,42,255);
    color:#fff;
    border:none;
}

.search-popup__content .thm-btn i {
    margin: 0;
}
    nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #FFDFCD;
}

    nav .wrapper {
        position: relative;
        max-width: 1300px;
        padding: 0px 30px;
        height: 70px;
        line-height: 70px;
        margin: auto;
        display: flex;
       /* align-items: center;*/
        justify-content: space-between;
    }

.wrapper .logo {
    color: #353535;
    font-size: 35px;
    font-weight: 600;
}

    .wrapper .logo span {
        color: #353535;
    }

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

    .nav-links li a {
        color: #353535;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 9px 12px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
#lblCartCount {
    font-size: 12px;
    background: rgba(194,87,42,255)!important;
    color: #fff;
    padding: 3px 5px;
    vertical-align: top;
    margin-left: -19px;
    top: 53px!important;
    margin-top: 14px!important;
    width:20px!important;
    height:20px!important;
    border-radius:50%;
}

        /*.nav-links li a:hover {
            background: #28282b;
        }*/

.nav-links .mobile-item {
    display: none;
}
.nav-links .mobile-item1 {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #FAF9F7;
    
   min-width: 180px;
   
    line-height: 45px;
    top: 65px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 16px 10px rgba(0,0,0,0.15);
    padding-right:10px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box,
.nav-links li:hover .mega-box1 {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    /*padding: 0 0 0 15px;*/
    font-weight: 600;
    border-radius: 0px;
   margin-right:15px;
   
}



.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}



.wrapper .btn-s {
    color: #000000;
    background:none!important;
    font-size: 20px;
    cursor: pointer;
    display: none;
    border:none!important;
}

    .wrapper .btn-s.close-btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }
/*Media Query*/
@media screen and (max-width: 1010px) {
    .wrapper .logo {
        font-size: 30px;
    }
    .mobile-item {
        display: inline-block;
        text-transform: uppercase;
        color: #9696a2;
        background: #f2f2f2;
        text-align: left !important;
        padding: 0px !important;
        font-size: 18px;
        user-select: none;
        cursor: pointer;
        border-radius: 5px;
        border: none;
    }
    .mobile-item1 {
        display: inline-block;
        text-transform: uppercase;
        color: #9696a2;
        background: #f2f2f2;
        text-align: left !important;
        padding: 0px !important;
        font-size: 18px;
        user-select: none;
        cursor: pointer;
        border-radius: 5px;
        border: none;
    }

    .wrapper .btn-s {
        display: block;
    }

     .menu-btn {
        display: inline-block;
        text-transform: uppercase;
        color: #9696a2;
        background: none !important;
        text-align: center;
        padding: 12px 12px;
        font-size: 18px;
        user-select: none;
        cursor: pointer;
        border-radius: 5px;
        border: none !important;
    }
    

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #FAF9F7;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
    }
    /*Custom Scroll bar*/
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3a3b3c;
    }

    #menu-btn:checked ~ .nav-links {
        left: 0%;
    }

    #menu-btn:checked ~ .btn-s.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn-s.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

        .nav-links li a {
            /*padding: 0 0px!important;*/
            display: inline;
            font-size: 20px;
        }
    #lblCartCount {
        font-size: 12px;
        background: rgba(194,87,42,255) !important;
        color: #fff;
        padding: 3px 5px;
        vertical-align: top;
        margin-left: -6px;
        top: 53px !important;
        margin-top: -66px !important;
        width: 25px !important;
        height: 25px !important;
        border-radius: 50%;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 10px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
        padding-right:10px;
    }

    #showDrop:checked ~ .drop-menu,
     #showDrop1:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box,
    #showMega1:checked ~ .mega-box1 {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .desktop-item1 {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #353535;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        background:none!important;
    }
    .nav-links .mobile-item1 {
        display: block;
        color: #353535;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        background: none !important;
        border:none!important;
        text-align:left;
       /* margin-left:20px;*/
    }


        .nav-links .mobile-item:hover {
            background: #28282b;
        }
    .nav-links .mobile-item1:hover {
        background: #28282b;
    }

    .drop-menu li {
        margin: 0;
    }

        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }

}

nav input {
    display: none;
}

nav .getstarted, nav .getstarted:focus {
    background: #FFDFCD;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 40px;
    color: rgba(194,87,42,255);
    border: 2px solid #FFDFCD;
}
.nav-links .getstarted {
    background: #FFDFCD;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 40px;
    color: rgba(194,87,42,255);
    border: 2px solid #FFDFCD;
}
    .nav-links .getstarted:hover {
        background: rgba(194,87,42,255);
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 40px;
        color:#fff!important;
        border: 2px solid #FFDFCD;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: rgba(194,87,42,255) !important;
    }

    #lblCartCount {
        font-size: 12px;
        background: rgba(194,87,42,255);
        color: #fff;
        padding: 3px 5px;
        vertical-align: top;
        margin-left: -319px;
        top: 53px;
        margin-top: -22px;
    }
    @media (max-width: 768px) {
    #lblCartCount {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 3px 5px;
    vertical-align: top;
    margin-left: 59px;
    top: 53px;
    /* margin-top: -22px; */
    margin-top: -41px!important;
   }
   #lblCartCount {
    font-size: 12px;
    background: rgba(194,87,42,255) !important;
    color: #fff;
    padding: 3px 5px;
    vertical-align: top;
    margin-left: 56px;
    top: 53px !important;
    margin-top: -46px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
}
   #mob-btn-change{
    margin-top:-45px;
}
   nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
}

    body {
        color: #344033 !important;
    }
    .datepicker td.active,
    .datepicker td.active:hover 
    {
    color: #ffffff;
    background-color: #006dcc;
    background-image:  linear-gradient(to bottom, #0088cc, #0044cc);
    }
    .close-button {
    position: absolute;
    right: 30px;
    top: 30px;
}
.close-button .close-trigger {
    background: rgba(194,87,42,255)!important;
    border: 0 none;
    color: #fff!important;
    width: 40px;
    height: 40px;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}
ul .nav-text ul {
 position: static;
	visibility: hidden;
  opacity: 0;
  
	position: relative;
 
	left: 0;
  display: none;
  align-items: center;
    justify-content: space-between;
     /*padding: 0px 30px;*/
     margin: 0;
      
        /*padding: 50px 10px;*/
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
}

ul .nav-text:hover > ul,
ul .nav-text ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
   background: #f2f2f2;
    padding: 7px!important;
   margin: 0;
   top:-3px;
}
.toast-top-right{
    top:73px !important;
}
.logo-height{
    height:36px;
}
@media (max-width:768px){
    .logo-height{
    height:22px!important;
}
.image-diet-plan{
        width:100%;
        height:280px;
        overflow:hidden;
    }
    .image-diet-plan img{
        width:100%;
        height:auto;
        object-fit:contain;
        object-position:center center;
    }
}
@media (min-width:1200px){
    .main_header_area .container{
        max-width: 1490px;
    }
}
 .mobFooterView {
            position: fixed!important;
            bottom: 0;
            width: 100%;
            padding: 10px 0;
            z-index: 999999;
        }
            .mobFooterView .innerfoot {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                align-items: center;
                justify-content: space-around;
            }
        .pt-0, .py-0 {
            padding-top: 15px !important;
        }

        .pb-0, .py-0 {
            padding-bottom: 15px !important;
        }
        .mobFooterView .innerfoot a {
            font-size: 20px;
            color: #363636;
        }
        .cart_count {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            margin: 0;
            /* letter-spacing: 0.10rem !important; */
        }
        footer {
            background: #fff !important;
        }
        .cart_count_circle.m {
            background: rgba(194,87,42,255);
            width: 20px;
            height: 20px;
            border-radius: 50px;
            text-align: center !important;
            position: absolute;
            top: 5px;
            right: 33px;
            vertical-align: middle;
            table-layout: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #img-zoom-sec{
            border-radius:24px!important;
        }
        #img-courve-radius {
            border-radius:24px!important;
        }


	
	