


 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


 /*** 

====================================================================
  Reset
====================================================================

 ***/
 * {
   margin: 0px;
   padding: 0px;
   border: none;
   outline: none;
 }


 @font-face {
   font-family: 'Fantasia';
   src: url('../fonts/fantasia.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
 }



 /*** 

====================================================================
  Global Settings
====================================================================

 ***/


 :root {
   --theme-color: #8A2BE2;
   --secondary-color: #E7A615;
   --text-color: black;
   --title-color: #black;
   --text-font: "DM Sans", sans-serif;
   --text-font2: "Inter", sans-serif;
   ;
   --title-font: "Marcellus", serif;
   --title-font2: "Montserrat", sans-serif;
   ;
 }



 body {
   font-size: 16px;
   color: var(--text-color);
   line-height: 28px;
   font-weight: 400;
   background: #ffffff;
   font-family: var(--text-font);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center top;
   -webkit-font-smoothing: antialiased;
 }

 @media (min-width:1200px) {
   .container {
     max-width: 1200px;
     padding: 0px 15px;
   }
 }

 .large-container {
   max-width: 1680px;
   padding: 0px 15px;
   margin: 0 auto;
 }

 .container-fluid {
   padding: 0px;
 }

 .auto-container {
   position: static;
   max-width: 1320px;
   padding: 0px 15px;
   margin: 0 auto;
 }

 .small-container {
   max-width: 680px;
   margin: 0 auto;
 }

 .boxed_wrapper {
   position: relative;
   margin: 0 auto;
   overflow: hidden !important;
   width: 100%;
   min-width: 300px;
 }


 a {
   text-decoration: none;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 a:hover {
   text-decoration: none;
   outline: none;
 }

 input,
 button,
 select,
 textarea {
   font-family: var(--text-font);
   font-weight: 400;
   font-size: 18px;
   background: transparent;
 }

 ::-webkit-input-placeholder {
   color: inherit;
 }

 ::-moz-input-placeholder {
   color: inherit;
 }

 ::-ms-input-placeholder {
   color: inherit;
 }

 ul,
 li {
   list-style: none;
   padding: 0px;
   margin: 0px;
 }

 input {
   transition: all 500ms ease;
 }

 button:focus,
 input:focus,
 textarea:focus {
   outline: none;
   box-shadow: none;
   transition: all 500ms ease;
 }

 p {
   position: relative;
   font-family: var(--text-font);
   color: var(--text-color);
   font-weight: 400;
   margin: 0px;
 }


 .p {
   position: relative;
   font-family: var(--text-font);
   color: var(--text-color);
   font-weight: 400;
   margin: 0px;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   position: relative;
   font-family: var(--title-font2);
   font-weight: 400;
   color: var(--title-color);
   margin: 0px;
 }



 .menu-fixed {
   position: fixed;
   right: 0px;
   top: 24.5%;
   z-index: 99;
 }

 .menu-fixed>ul li {
   width: 100%;
   margin-bottom: 18px;
 }

 .menu-fixed>ul li:last-child {
   margin-bottom: 0px;
 }




 .menu-fixed>ul li a {
   background-color: var(--theme-color);
   color: white;
   width: 100%;
   display: block;
   padding: 8px 20px;
   border-radius: 25px;
   border-top-right-radius: 7px;
   border-bottom-right-radius: 7px;
   font-size: 17px;
 }

 .menu-fixed>ul li:last-child a {
   background-color: transparent;
 }

 .menu-fixed>ul li a img {
   max-width: 25px;
   padding-left: 5px;
 }

 .menu-fixed>ul li a:hover {
   background-color: var(--secondary-color);
   transition: all ease 0.4s;
 }

 .menu-fixed>ul li ul {
   background-color: var(--theme-color);
   color: white;
   width: 100%;
   display: flex;
   padding: 13px 20px;
   border-radius: 25px;
   border-top-right-radius: 7px;
   border-bottom-right-radius: 7px;
   font-size: 17px;
   flex-direction: row;
   justify-content: space-between;
 }


 .menu-fixed>ul li ul a {
   padding: 0px;
   border-radius: 0px;
   display: flex;
   justify-content: center;

 }


 

 .pt {
   padding-top: 80px;
 }

 .pb {
   padding-bottom: 80px;
 }


 .mt {
   margin-top: 80px;
 }

 .mb {
   margin-bottom: 80px;
 }

 .service-section {
   margin-top: 20px;
 }


 .menu-fixed>ul li ul li {
   margin-bottom: 0px;
 }

 .menu-fixed>ul li ul a:hover {
   background-color: transparent;
   color: var(--secondary-color);
   transition: all ease 0.4s;
 }



 /* Preloader */

 .handle-preloader {
   align-items: center;
   -webkit-align-items: center;
   display: flex;
   display: -ms-flexbox;
   height: 100%;
   justify-content: center;
   -webkit-justify-content: center;
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   z-index: 9999999;
   background: #fff;
 }

 .preloader-close {
   position: fixed;
   z-index: 99999999;
   font-size: 20px;
   background: var(--secondary-color);
   color: var(--theme-color);
   width: 40px;
   height: 40px;
   line-height: 42px;
   text-align: center;
   border-radius: 50%;
   cursor: pointer;
   right: 30px;
   top: 30px;
   font-weight: 400;
 }

 .handle-preloader .animation-preloader {
   position: absolute;
   z-index: 100;
 }

 .handle-preloader .animation-preloader .spinner {
   animation: spinner 1s infinite linear;
   border-radius: 50%;
   height: 150px;
   margin: 0 auto 45px auto;
   width: 150px;
 }

 .handle-preloader .animation-preloader .txt-loading {
   text-align: center;
   user-select: none;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
   animation: letters-loading 4s infinite;
   content: attr(data-text-preloader);
   left: 0;
   opacity: 0;
   top: 0;
   position: absolute;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading {
   font-family: var(--title-font);
   font-weight: 500;
   letter-spacing: 15px;
   display: inline-block;
   position: relative;
   font-size: 70px;
   line-height: 70px;
   text-transform: uppercase;
   color: transparent;
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: rgba(0, 0, 0, 0.30);
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
   animation-delay: 0.2s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
   animation-delay: 0.4s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
   animation-delay: 0.6s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
   animation-delay: 0.8s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
   animation-delay: 1s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
   animation-delay: 1.2s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
   animation-delay: 1.4s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
   animation-delay: 1.6s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
   animation-delay: 1.8s;
 }

 .handle-preloader .loader-section {
   background-color: #000;
   height: 100%;
   position: fixed;
   top: 0;
   width: calc(50% + 1px);
 }

 .preloader .loaded .animation-preloader {
   opacity: 0;
   transition: 0.3s ease-out;
 }


 .owl-nav {
   display: flex;
   justify-content: center;
   margin-top: 0px;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
   color: #000;
 }

 .handle-preloader .animation-preloader .spinner {
   border: 3px solid #000;
   border-top-color: rgba(0, 0, 0, 0.3);
 }

 /* AnimaciÃ³n del preloader */
 @keyframes spinner {
   to {
     transform: rotateZ(360deg);
   }
 }

 @keyframes letters-loading {

   0%,
   75%,
   100% {
     opacity: 0;
     transform: rotateY(-90deg);
   }

   25%,
   50% {
     opacity: 1;
     transform: rotateY(0deg);
   }
 }

 @media screen and (max-width: 767px) {
   .handle-preloader .animation-preloader .spinner {
     height: 8em;
     width: 8em;
   }
 }

 @media screen and (max-width: 500px) {
   .handle-preloader .animation-preloader .spinner {
     height: 7em;
     width: 7em;
   }

   .handle-preloader .animation-preloader .txt-loading .letters-loading {
     font-size: 30px;
     letter-spacing: 5px;
   }
 }


 .centred {
   text-align: center;
 }

 .pull-left {
   float: left;
 }

 .pull-right {
   float: right;
 }


 figure {
   margin: 0px;
 }

 img {
   display: inline-block;
   max-width: 100%;
   height: auto;
   transition-delay: .1s;
   transition-timing-function: ease-in-out;
   transition-duration: .7s;
   transition-property: all;
 }

 .row {
   --bs-gutter-x: 30px;
 }

 .lenis.lenis-smooth {
   scroll-behavior: auto;
 }

 html.lenis {
   height: auto;
 }

 /** button **/


 .theme-btn {
   position: relative;
   display: inline-block;
   overflow: hidden;
   vertical-align: middle;
   font-size: 16px;
   line-height: 30px;
   font-weight: 500;
   font-family: var(--text-font);
   color: #fff !important;
   text-align: center;
   border-radius: 5px;
   padding: 10px 30px;
   text-transform: uppercase;
   z-index: 1;
   transition: all 0.5s ease-in-out 0.0s;
   background-color: var(--secondary-color) !important;
 }

 .theme-btn2 {
   background-color: var(--theme-color) !important;

 }

 .theme-btn2:before {
   background-color: var(--secondary-color) !important;
 }

 .theme-btn2:after {
   background-color: var(--secondary-color) !important;
 }


 .theme-btn.btn-one {}

 .theme-btn.btn-one:hover {}

 .contact-h {
   position: relative;
   background-size: cover;
   background-repeat: no-repeat;
   object-fit: cover;
 }

 .contact-h::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: black;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
   opacity: 0.5;
 }

.podcast-h .inner-box .image-box .image::after{
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: black;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
   opacity: 0.6;
}

 .contact-h .auto-container {
   position: relative;
   z-index: 10;
 }

 .contact-h h2 {
   color: white !important;
 }

 .contact-h .sub-title {
   color: var(--secondary-color);
 }

 .contact-h form {
   background-color: white;
   padding: 45px;
   border-radius: 30px;
 }

 .contact-h .form-group {
   margin-bottom: 30px;
 }


 .contact-h .theme-btn2 {
   padding-left: 65px !important;
   padding-right: 65px !important;

 }


 .contact-h .form-group input,
 .contact-h .form-group textarea {
   border: 0px !important;
   border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
   width: 100%;
   padding-bottom: 14px;
   font-size: 16px;
   border-radius: 0px !important;
   padding: 10px 0px !important;
 }

 .blog-h h2 {
   color: black !important;
 }

 .theme-btn:before {
   position: absolute;
   content: '';
   width: 0%;
   height: 100%;
   left: 0px;
   top: 0px;
   transform: translateX(0);
   transform-origin: left center;
   z-index: -1;
   background: var(--theme-color);
   transition: all 500ms ease;
 }

 .theme-btn:after {
   position: absolute;
   content: '';
   width: 0%;
   height: 100%;
   right: 0px;
   top: 0px;
   transform: translateX(0);
   transform-origin: right center;
   z-index: -1;
   background: var(--theme-color);
   transition: all 500ms ease;
 }

 .theme-btn:hover:before,
 .theme-btn:hover:after {
   transform: translateX(1);
   width: 51%;
 }

 .theme-btn.btn-two {
   border: 1px solid #E5E5E5;
   color: var(--text-color) !important;
   padding: 9px 30px;
 }

 .theme-btn.btn-two:hover {
   color: #fff !important;
 }


 .parallax-bg {
   position: absolute;
   left: 0px;
   top: -30%;
   width: 100%;
   height: calc(100% + 30%);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
 }


 /** styled-pagination */

 .pagination {
   position: relative;
   display: block;
 }

 .pagination li {
   position: relative;
   display: inline-block;
   margin: 0px 4px;
 }

 .pagination li a {
   position: relative;
   display: inline-block;
   font-size: 18px;
   font-family: var(--title-font);
   color: var(--title-color);
   font-weight: 500;
   height: 50px;
   width: 50px;
   line-height: 50px;
   background: #ffffff;
   text-align: center;
   border-radius: 50%;
   border: 1px solid #e5e5e5;
   z-index: 1;
   transition: all 500ms ease;
 }

 .pagination li a:hover,
 .pagination li a.current {
   color: #fff;
 }

 .pagination li a i {
   position: relative;
   display: inline-block;
 }

 .sec-pad {
   padding: 142px 0px 150px 0px;
 }

 .mr-0 {
   margin: 0px !important;
 }

 .galeria-i {
   background-color: white !important;
 }

 .galeria-i .inner-box .image-box::after {
   display: none;

 }

 .mision-vision-i {
   margin-top: 95px;
 }


 .mision-vision-i .col-md-6:nth-child(1) .item {
   background-color: var(--theme-color);
 }


 .mision-vision-i .col-md-6:nth-child(2) .item {
   background-color: var(--secondary-color);
 }

 .mision-vision-i h2 {
   color: white;
   font-weight: bold;
   margin-bottom: 35px;
   font-size: 40px;
 }

 .mision-vision-i .p {
   color: white;
 }

 .mision-vision-i .item {
   padding: 80px 40px;
   border-radius: 30px;
 }


 .objetivos-i {
   background-color: #F2F2F2 !important;
 }

 .objetivos-i .inner-box {
   width: 94%;

 }

 .objetivos-i .course-block-two {
   height: 100%;
 }


 .objetivos-i .course-block-two .inner-box {
   height: 100%;
   margin-bottom: 0px;

 }

 .objetivos-i .row {
   row-gap: 100px;

 }


 .disabledm .mt {
   margin-top: 0px;
 }


 .servicios-i .row {
   row-gap: 40px;
 }

 .sec-p .p {
   margin-bottom: 25px;
 }

 .sec-p .p:last-child {
   margin-bottom: 0px;
 }

 .detalle-c-i .sec-price {
   background-color: var(--theme-color);
   display: inline-block;
   padding: 12px 30px;
   border-radius: 15px;
   margin-bottom: 30px;
 }



 .detalle-c-i .sec-price>div {
   display: flex;
   flex-direction: row;
   gap: 10px;
 }

 .detalle-c-i .sec-price>div:first-child {
   margin-bottom: 5px;
 }

 .detalle-c-i .sec-price div h3 {
   color: var(--secondary-color);
   font-weight: bold;
   font-size: 23px;
 }

 .detalle-c-i .sec-price div span {
   color: white;
 }


 /*.detalle-c-i .row {*/
 /*  align-items: stretch !important;*/
 /*}*/

 .detalle-c-i .image-box {
   height: 100%;
 }

 .detalle-c-i .image-box .image {
   height: 100%;

 }


 .detalle-c-i .image-box .image img {
   /*height: 100%;*/
   /*object-fit: cover;*/
   border-radius: 20px;
 }


 .detalle-c-i .auto-container {
   display: flex;
   flex-direction: column;
   row-gap: 70px;
 }


 .detalle-c-i .auto-container .row:nth-child(2) .content-column {
   display: flex;
   align-items: center;
 }


 .detalle-c-i ul li {
   list-style: disc;
 }

 .detalle-c-i ul li::marker {
   color: var(--theme-color);
 }

 .detalle-c-i .nota {
   margin-top: 20px;
   background-color: var(--theme-color);
   border-radius: 10px;
   text-align: center;
   padding: 10px 20px;
 }

 .detalle-c-i .nota h4 {
   color: var(--secondary-color);
   font-weight: bold;
 }

 .detalle-c-i .nota .p {
   color: white;
 }


 .sec-btns {
   display: flex;
   flex-direction: row;
   justify-content: center;
   gap: 20px;
 }


 .sec-btns div:first-child a {
   background-color: white !important;
   color: black !important;
   border: 1px solid var(--theme-color);
 }


 .sec-btns div:first-child a:hover {
   color: white !important;
 }

 .sec-btns div:first-child a {
   background-color: white !important;
   color: black !important;
   border: 1px solid var(--theme-color);
 }


 .sec-btns div:first-child a:hover {
   color: white !important;
 }



 .sec-btns2 div:first-child a:hover {
   color: white !important;
 }

 .sec-btns2 div:first-child a {
   background-color: var(--theme-color) !important;
   color: white !important;
   border: 0px;
 }


 .sec-btns2 div:first-child a:hover {
   color: white !important;
   border: 0px;
 }


 .sec-btns2 div:first-child a::before {
   background-color: var(--secondary-color);
 }


 .sec-btns2 div:first-child a::after {
   background-color: var(--secondary-color);
 }




 .sec-btns2 div:last-child a:hover {
   color: white !important;
 }

 .sec-btns2 div:last-child a {
   background-color: white !important;
   color: black !important;
   border: 1px solid black !important;
 }


 .sec-btns2 div:last-child a:hover {
   color: white !important;
 }







 .detalle-c .sec-img img {
   margin-top: 20px;
   margin-bottom: 40px;
   border-radius: 10px;
 }


 .detalle-c h3 {
   color: var(--secondary-color);
   font-weight: bold;
   font-size: 40px;
   margin-bottom: 20px;
 }


 .detalle-c .fixed-column .theme-btn {
   width: 100%;
   font-size: 20px;

 }

 .detalle-c .fixed-column {
   position: relative;

 }

 .detalle-c .fixed-column .content {
   position: sticky;
   top: 100px;
   width: 88%;
 }

 .blog-i .row {
   row-gap: 50px;
 }


 .blog-d-i h2 {
   font-size: 35px !important;
 }
 
 .blog-d-i ul{
     margin-top:20px;
     margin-bottom:20px;
     padding-left:18px !important;
 }
  .blog-d-i ul li{
      list-style-type:disc;
      margin-bottom:5px;
  }
  
  
   .blog-d-i ul li::marker{
      color:var(--theme-color);
  }
 
 
 

 .blog-d-i .sec-img {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 30px;
 }

 .blog-d-i .sec-date {
   color: var(--theme-color);
   font-weight: 500;
   margin-bottom: 15px;
 }

 .blog-d-i .sec-date i {
   margin-right: 10px;
 }

 .preguntas-i .accordion-box {
   margin-bottom: 0px !important;

 }

 .blog-d-i .p {
   text-align: justify;
 }

 .blog-d-i .sec-img img {
   border-radius: 20px;
 }

 .detalle-c .fixed-column .content .card {
   margin-top: 37px;
   background-color: var(--theme-color);
   padding: 45px 30px;
   border-radius: 20px;

 }

 .formas-pago-i .card {
   border: 0px;
 }

 .formas-pago-i .inner-box {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   flex-direction: column;

 }

 .formas-pago-i .inner-box h3 {
   font-size: 22px;
   font-weight: 600;
   margin-top: 20px;
   margin-bottom: 20px;
 }


 .formas-pago-i .btn-box {
   margin-top: 20px;

 }

 .podcast-i .row {
   row-gap: 40px;
 }

 .formas-pago-i .inner-box ul li a {
   color: var(--secondary-color);
 }


 .formas-pago-i .inner-box ul li a:hover {
   color: var(--theme-color);
   transition: all ease 0.4s;
 }



 .detalle-c .fixed-column .content .card ul {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .detalle-c .fixed-column .content .card ul li {
   list-style-type: none;

 }


 .detalle-c .fixed-column .content .card ul li h4 {
   color: var(--secondary-color);
   font-weight: bold;
   margin-bottom: 7px;
 }

 .detalle-c .fixed-column .content .card ul li .p {
   color: white;
 }

 .detalle-c .fixed-column .content .s-img {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 35px;

 }


 .contactame-i .row-info {
   display: flex;
   flex-wrap: wrap;
   flex-direction: row;

 }


 #mensaje {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 #mensaje .content-m {
   position: absolute;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   flex-direction: column;
 
 }

 #mensaje:before {
   content: "";
   background-color: black;
   position: absolute;
   top: 0px;
   bottom: 0px;
   right: 0px;
   left: 0px;
   opacity: 0.5;
 }

 #mensaje .content-m img{
  max-width: 150px;
 }



 .error .content-m{
  padding-bottom: 5%;
 }

 #mensaje h2 {
   color: white;
   font-weight: bold;
   font-size: 46px;
   line-height: 1.3;
   margin-bottom: 20px;
 }

 #mensaje .btn-e {
   background-color: #d93020;
   border-radius: 30px;
   border: none;
   color: white;
   font-size: 17px;
   padding-left: 25px;
   padding-right: 25px;
   margin-top: 10px;
   padding: 10px 30px;
   font-weight: 600;
   display: inline-block;
 }

 #mensaje .btn-e:hover {
   background-color: #0278F4;
   transition: background-color 0.5s;
 }


 /** scroll-to-top **/

 .scroll-to-top {
   position: fixed;
   right: 30px;
   bottom: 30px;
   height: 50px;
   width: 50px;
   cursor: pointer;
   display: block;
   box-shadow: inset 0 0 0 2px rgba(0, 46, 65, 0.2);
   border-radius: 50%;
   z-index: 90000;
   opacity: 0;
   visibility: hidden;
   -webkit-transform: translateY(15px);
   -ms-transform: translateY(15px);
   transform: translateY(15px);
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear;
 }

 .scroll-to-top.scroll-top-active {
   opacity: 1;
   visibility: visible;
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   transform: translateY(0)
 }

 .scroll-to-top::after {
   position: absolute;
   content: "\e914";
   font-family: 'icomoon';
   text-align: center;
   line-height: 50px;
   font-size: 14px;
   color: var(--secondary-color);
   left: 0;
   top: 0;
   height: 50px;
   width: 50px;
   cursor: pointer;
   display: block;
   z-index: 2;
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear
 }

 .scroll-to-top:hover::after {}

 .scroll-to-top:hover::before {
   opacity: 1
 }

 #whatsappflotante {
   position: fixed;
   bottom: 3rem;
   left: 3rem;
   z-index: 99999;
   filter: drop-shadow(-2px 2px 15px rgba(0, 0, 0, 0.7));
 }

 #whatsappflotante:hover {
   opacity: 0.8;
   filter: drop-shadow(0px 2px 2px #000);
 }



 .scroll-to-top .scroll-top-inner path {
   stroke-width: 4;
   fill: transparent;
   box-sizing: border-box;
   stroke: var(--secondary-color);
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear;
 }



 @-webkit-keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }

 @keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }



 .sec-title {
   position: relative;
   display: block;
 }

 .sec-title .sub-title {
   font-family: 'Fantasia', sans-serif;
   position: relative;
   display: inline-block;
   font-size: 30px;
   line-height: 25px;
   font-weight: 500;
   /* text-transform: uppercase; */
   padding-right: 15px;
   margin-bottom: 11px;
   font-weight: 500;
   letter-spacing: 4px;
   word-spacing: -7px;
 }

 .sec-title.centred .sub-title {
   padding-left: 15px;
 }

 .sub-title.sub-title2 {
   color: var(--theme-color) !important;
 }

 .main-footer::after {
   content: "";
   position: absolute;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
   background-color: rgba(137, 43, 226, 0.8);
   width: 100%;
   height: 100%;
 }

 .main-footer {
   background-size: cover !important;
   object-fit: cover;
   background-repeat: no-repeat !important;
 }

 .main-footer .auto-container,
 .main-footer .footer-bottom {
   position: relative;
   z-index: 20;
 }

 /* .sec-title .sub-title:before{
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  top: 8px;
  right: 0px;
  border-radius: 50%;
}

.sec-title.centred .sub-title:after{
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  top: 8px;
  left: 0px;
  border-radius: 50%;
} */

 .sec-title h2 {
   position: relative;
   display: block;
   font-size: 40px;
   line-height: 50px;
   color: black;
   font-weight: bold;
 }

 .sec-title.light h2 {
   color: #fff;
 }

 .sec-title p {
   margin-top: 20px;
 }

 .sec-title .icon-box {
   position: relative;
   display: block;
   font-size: 70px;
   line-height: 70px;
   color: var(--text-color);
   margin-bottom: 34px;
 }





 /*** 

====================================================================
                        Home-Page-One
====================================================================

***/


 /** main-header **/

 .main-header {
   position: relative;
   left: 0px;
   top: 0px;
   right: 0px;
   z-index: 999;
   width: 100%;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

.main-header.fixed-header .logo-box a img{
  max-width: 60px;
}


 .sticky-header {
   position: fixed;
   opacity: 0;
   visibility: hidden;
   left: 0px;
   top: 0px;
   width: 100%;
   z-index: 0;
   background-color: #fff;
   border-bottom: 1px solid rgba(0, 0, 0, 0.10);
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .fixed-header .sticky-header {
   z-index: 999;
   opacity: 1;
   visibility: visible;
   -ms-animation-name: fadeInDown;
   -moz-animation-name: fadeInDown;
   -op-animation-name: fadeInDown;
   -webkit-animation-name: fadeInDown;
   animation-name: fadeInDown;
   -ms-animation-duration: 500ms;
   -moz-animation-duration: 500ms;
   -op-animation-duration: 500ms;
   -webkit-animation-duration: 500ms;
   animation-duration: 500ms;
   -ms-animation-timing-function: linear;
   -moz-animation-timing-function: linear;
   -op-animation-timing-function: linear;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   -ms-animation-iteration-count: 1;
   -moz-animation-iteration-count: 1;
   -op-animation-iteration-count: 1;
   -webkit-animation-iteration-count: 1;
   animation-iteration-count: 1;
 }

 .nice-select {
   position: relative;
   display: inline-block;
   font-size: 14px;
   line-height: 16px;
   padding-right: 14px;
 }

 .nice-select:before {
   position: absolute;
   content: '\e913';
   font-family: 'icomoon';
   top: 1px;
   right: 25px;
   font-size: 8px;
 }

 .nice-select .list {
   width: 100%;
   left: 0px;
 }

 .nice-select .list li {
   color: var(--text-color);
 }

 .nice-select .list {
   max-height: 160px;
   overflow-x: hidden;
   overflow-y: auto;
 }


 .owl-dots-none .owl-dots,
 .owl-nav-none .owl-nav {
   display: none !important;
 }

 .owl-nav button {
   background: transparent;
 }

 .float-bob-y {
   animation-name: float-bob-y;
   animation-duration: 2s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
   -webkit-animation-name: float-bob-y;
   -webkit-animation-duration: 2s;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   -moz-animation-name: float-bob-y;
   -moz-animation-duration: 2s;
   -moz-animation-iteration-count: infinite;
   -moz-animation-timing-function: linear;
   -ms-animation-name: float-bob-y;
   -ms-animation-duration: 2s;
   -ms-animation-iteration-count: infinite;
   -ms-animation-timing-function: linear;
   -o-animation-name: float-bob-y;
   -o-animation-duration: 2s;
   -o-animation-iteration-count: infinite;
   -o-animation-timing-function: linear;
 }

 .float-bob-x {
   animation-name: float-bob-x;
   animation-duration: 15s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
   -webkit-animation-name: float-bob-x;
   -webkit-animation-duration: 15s;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   -moz-animation-name: float-bob-x;
   -moz-animation-duration: 15s;
   -moz-animation-iteration-count: infinite;
   -moz-animation-timing-function: linear;
   -ms-animation-name: float-bob-x;
   -ms-animation-duration: 15s;
   -ms-animation-iteration-count: infinite;
   -ms-animation-timing-function: linear;
   -o-animation-name: float-bob-x;
   -o-animation-duration: 15s;
   -o-animation-iteration-count: infinite;
   -o-animation-timing-function: linear;
 }


 /** rtl-switcher **/

 .demo-rtl {
   position: fixed;
   top: 390px;
   left: 10px;
   z-index: 9999;
 }

 button.rtl {
   background: var(--theme-color);
   display: block;
   text-indent: inherit;
   font-size: 12px;
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   font-weight: 700;
   margin: 0px;
   color: #fff !important;
   border-radius: 50%;
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
   transition: all 500ms ease;
 }

 .demo-ltr {
   position: fixed;
   top: 390px;
   left: auto;
   right: 10px;
   z-index: 9999;
 }

 button.ltr {
   background: var(--theme-color);
   display: block;
   text-indent: inherit;
   font-size: 12px;
   font-weight: 700;
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   margin: 0px;
   color: #fff !important;
   border-radius: 50%;
   box-shadow: rgba(0, 0, 0, 1.0);
   transition: all 500ms ease;
 }

 .boxed_wrapper.ltr .demo-rtl {
   display: block;
 }

 .boxed_wrapper.ltr .demo-ltr {
   display: none;
 }

 .boxed_wrapper.rtl .demo-rtl {
   display: none;
 }

 .boxed_wrapper.rtl .demo-ltr {
   display: block;
 }

 .nav-style-one .owl-nav button {
   position: relative;
   display: inline-block;
   overflow: hidden;
   width: 60px;
   height: 60px;
   line-height: 66px;
   background: #fff;
   color: var(--text-color);
   text-align: center;
   border-radius: 50%;
   cursor: pointer;
   font-size: 25px;
   z-index: 1;
   box-shadow: 0px 2px 70px 0px rgba(0, 0, 0, 0.20);
   transition: all 500ms ease;
 }

 .nav-style-one .owl-nav .owl-prev {
   margin-right: 10px;
 }

 .nav-style-one .owl-nav button:hover {
   color: #fff;
   background: transparent !important;
 }

 .nav-style-one .owl-nav button:before {
   position: absolute;
   content: '';
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0px;
   border-radius: 50%;
   transform-origin: top center;
   transform: scaleY(0);
   z-index: -1;
   transition: all 500ms ease;
 }

 .nav-style-one .owl-nav button:hover:before {
   transform: scaleY(1);
 }

 .progress-box .bar {
   position: relative;
   width: 100%;
   height: 5px;
   background: #EBF2E9;
   border-radius: 30px;
 }

 .progress-box .bar-inner {
   position: relative;
   display: block;
   width: 0px;
   height: 5px;
   border-radius: 30px;
   -webkit-transition: all 1500ms ease;
   -ms-transition: all 1500ms ease;
   -o-transition: all 1500ms ease;
   -moz-transition: all 1500ms ease;
   transition: all 1500ms ease;
 }

 .rating li.light {
   color: #DADEDE;
 }

 .accordion-box .block .acc-content {
   position: relative;
   display: none;
 }

 .accordion-box .block .acc-content.current {
   display: block;
 }


 .wrapper.list .shop-list-content {
   display: block;
 }

 .wrapper.list .shop-grid-content {
   display: none
 }

 .wrapper.grid .shop-list-content {
   display: none;
 }

 .wrapper.grid .shop-grid-content {
   display: block
 }

 .nice-select .option {
   padding-left: 15px;
   padding-right: 15px;
 }

 .tabs-box .tab {
   position: relative;
   display: none;
   transition: all 900ms ease;
   -moz-transition: all 900ms ease;
   -webkit-transition: all 900ms ease;
   -ms-transition: all 900ms ease;
   -o-transition: all 900ms ease;
 }

 .tabs-box .tab.active-tab {
   display: block;
 }

 .tabs-box .tab {
   transform: scale(0.9, 0.9) translateY(0px);
 }

 .tabs-box .tab.active-tab {
   transform: scale(1) translateY(0px);
 }

 .border-animation {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -webkit-border-radius: 50%;
   -khtml-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.50);
   animation: squares 2.9s linear 0s infinite;
   -webkit-animation: squares 2.9s linear 0s infinite;
   -ms-animation: squares 2.9s linear 0s infinite;
   -o-animation: squares 2.9s linear 0s infinite;
   -webkit-animation-play-state: running;
   -moz-animation-play-state: running;
   -o-animation-play-state: running;
   animation-play-state: running;
   opacity: 0;
 }

 .border-animation.border-2 {
   -webkit-animation-delay: 1s;
   -moz-animation-delay: 1s;
   -o-animation-delay: 1s;
   animation-delay: 1s;
 }

 .border-animation.border-3 {
   -webkit-animation-delay: 2s;
   -moz-animation-delay: 2s;
   -o-animation-delay: 2s;
   animation-delay: 2s;
 }

 .bootstrap-touchspin .input-group-btn-vertical i {
   left: 12px;
 }

 .item-quantity-selector input.quantity-spinner {
   line-height: 48px;
   height: 38px;
   width: 40px !important;
   padding: 0px !important;
   box-shadow: none !important;
   border: none;
   text-align: center;
   font-size: 16px;
   font-weight: 500;
   color: #111;
   background: transparent;
 }

 .bootstrap-touchspin .btn.bootstrap-touchspin-up {
   position: absolute;
   height: 40px;
   width: 40px;
   padding: 0px 0px;
   right: -30px;
   top: -1px;
   margin-top: 0px;
   border-radius: 0px 50px 50px 0px;
   border: none !important;
 }

 .bootstrap-touchspin .btn.bootstrap-touchspin-up:before {
   content: "\f067";
   font-size: 16px;
   font-style: normal;
   color: #111;
   font-family: 'Font Awesome 5 Pro';
   transition: all 500ms ease;
 }

 .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
   position: absolute;
   height: 40px;
   width: 40px;
   padding: 0px 0px;
   left: -30px;
   top: -1px;
   border-radius: 50px 0px 0px 50px;
   border: none !important;
   transition: all 500ms ease;
 }

 .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:before {
   content: "\f068";
   font-size: 16px;
   font-style: normal;
   color: #111;
   font-family: 'Font Awesome 5 Pro';
   transition: all 500ms ease;
 }

 .bootstrap-touchspin .input-group-btn-vertical i {
   display: none;
 }

 .bootstrap-touchspin .btn:hover,
 .bootstrap-touchspin .btn:focus {
   border: none !important;
   box-shadow: none !important;
   outline: none !important;
 }

 /* .banner-i {
  position: relative;
  padding-top: 58px;
  padding-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-i .bg-layer{
  position: absolute;
  top:0px;
  bottom:0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-i .auto-container{
  position: relative;
  z-index: 10;
}


.banner-i .bread-crumb{
  display: flex;
  flex-direction: row;

} */




 /*** chat popup ***/

 .chat-popup {
   position: fixed;
   right: -100%;
   bottom: 0px;
   width: 350px;
   z-index: 99999;
   visibility: hidden;
   opacity: 0;
   background: #fff;
   box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
   border-radius: 10px;
   transition: all 0.5s ease-in-out 0.1s;
 }

 .chat-popup.popup-visible {
   right: 0px;
   visibility: visible;
   opacity: 1;
 }

 .chat-popup .popup-inner {
   position: relative;
   display: block;
   padding: 40px 30px;
   padding-top: 32px;
 }

 .chat-popup .close-chat {
   position: absolute;
   display: inline-block;
   left: 0px;
   top: -65px;
   width: 50px;
   height: 50px;
   line-height: 54px;
   text-align: center;
   border-radius: 50%;
   font-size: 16px;
   color: #fff;
   cursor: pointer;
   box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
 }

 .chat-popup .popup-inner p {
   position: relative;
   display: block;
   font-size: 14px;
   line-height: 20px;
   text-align: center;
   margin-bottom: 40px;
 }

 .chat-popup .chat-form .form-group {
   position: relative;
   display: block;
   margin-bottom: 20px;
 }

 .chat-popup .chat-form .form-group:last-child {
   margin-bottom: 0px;
 }

 .chat-popup .chat-form .form-group input[type='text'],
 .chat-popup .chat-form .form-group input[type='email'],
 .chat-popup .chat-form .form-group textarea {
   position: relative;
   display: block;
   width: 100%;
   height: 40px;
   border: 1px solid #e5e5e5;
   border-radius: 5px;
   font-size: 13px;
   color: var(--text-color);
   padding: 10px 20px;
   transition: all 500ms ease;
 }

 .chat-popup .chat-form .form-group textarea {
   height: 120px;
   resize: none;
 }

 .chat-popup .chat-form .form-group input:focus,
 .chat-popup .chat-form .form-group textarea:focus {}

 .chat-popup .chat-form .form-group .theme-btn {
   width: 100%;
 }

 .chat-icon {
   position: fixed;
   display: inline-block;
   right: 30px;
   bottom: 100px;
   z-index: 99;
 }

 .chat-icon button {
   position: relative;
   display: inline-block;
   width: 50px;
   height: 50px;
   line-height: 50px;
   text-align: center;
   font-size: 26px;
   color: #fff;
   border-radius: 50%;
 }

 .image-hov-one {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .image-hov-one::before {
   background: rgba(255, 255, 255, 0.5);
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 0%;
   height: 100%;
   opacity: 1;
   z-index: 1;
   pointer-events: none;
 }

 .image-hov-one:hover::before {
   width: 100%;
   opacity: 0;
   -webkit-transition: all 400ms linear;
   transition: all 400ms linear;
 }

 .image-hov-two {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .image-hov-two::before {
   background: rgba(255, 255, 255, 0.5);
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 1000%;
   height: 0%;
   opacity: 1;
   z-index: 1;
   pointer-events: none;
 }

 .image-hov-two:hover::before {
   height: 100%;
   opacity: 0;
   -webkit-transition: all 400ms linear;
   transition: all 400ms linear;
 }

 .list-style-one li {
   position: relative;
   display: block;
   font-size: 18px;
   line-height: 26px;
   padding-left: 28px;
   margin-bottom: 11px;
 }

 .list-style-one li:last-child {
   margin-bottom: 0px;
 }

 .list-style-one li i {
   position: absolute;
   left: 0px;
   top: 4px;
   font-size: 18px;
 }

 .bg-color-1 {
   background: #EFF2F2;
 }

 .bg-color-2 {
   background: var(--secondary-color);
 }

 .odometer.odometer-auto-theme .odometer-digit:last-child {
   padding-right: 20px;
 }

 .odometer.odometer-auto-theme .odometer-digit {
   display: inline-block;
 }

 .white-bg {
   background: #fff !important;
 }

 .check-box input {
   display: none;
 }

 .check-box label {
   position: relative;
   font-size: 16px;
   line-height: 30px;
   padding-left: 24px;
   color: var(--text-color) !important;
   display: inline-block !important;
   cursor: pointer;
   margin-bottom: 0px;
 }

 .check-box label:before {
   position: absolute;
   content: '';
   left: 0px;
   top: 6px;
   width: 16px;
   height: 16px;
   border-radius: 2px;
   border-style: solid;
   border-width: 1px;
   border-color: #DDDDDD;
   background: transparent;
 }

 .check-box label:after {
   position: absolute;
   content: '\e916';
   font-family: 'icomoon';
   left: 3px;
   top: 0px;
   opacity: 0;
   font-size: 8px;
   color: #fff;
 }

 .check-box input:checked+label:after {
   opacity: 1;
 }

 .check-box input:checked+label:before {}

 .check-box-three input {
   display: none;
 }

 .check-box-three label {
   position: relative;
   font-size: 14px;
   line-height: 30px;
   color: var(--title-color);
   padding-left: 24px;
   display: inline-block;
   cursor: pointer;
   margin-bottom: 0px;
 }

 .check-box-three label:before {
   position: absolute;
   content: '';
   left: 0px;
   top: 7px;
   width: 14px;
   height: 14px;
   border-radius: 50%;
   border-style: solid;
   border-width: 1px;
   border-color: rgba(154, 154, 154, 1);
   background: transparent;
 }

 .check-box-three label:after {
   position: absolute;
   content: '';
   left: 3px;
   top: 10px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--secondary-color);
   opacity: 0;
 }

 .check-box-three input:checked+label:after {
   opacity: 1;
 }

 .check-box-three input:checked+label:before {
   border-color: var(--secondary-color);
 }


