:root {
  --font: "Inter", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*scroll animate*/
  scroll-behavior: smooth;
}

/*---------------------------------
 		bar of pages scroll
---------------------------------*/

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 10px 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-button {
  /* background-color: rgba(0,0,0,0.1);*/
  width: 1px;
  height: 1px;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

/*-- explorer --*/

body {
  scrollbar-face-color: transparent;
  overflow-y: hidden;
  font-family: var(--font);
}

/*--------------------------------
	 	styles globals
--------------------------------*/

/*--- menu ---*/

.menu {
  top: 0;
  width: 100%;
  min-height: 100px;
  height: auto;
  position: absolute;
  z-index: 2000;
  background-color: #ffffff;
  -webkit-background-size: auto;
  background-size: auto;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

@media screen and (max-width: 845px) {
  .menu {
    background-color: #fff;
    position: relative;
  }
}

/*--- loading ---*/

.loader-container {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: fixed;
  background-color: #fff;
  z-index: 5000;
  transition: all 500ms ease-in-out;
}

.loader-animation {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.closelg {
  z-index: 0;
  opacity: 0;
}

/* ripple */

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid rgba(188, 191, 191, 1);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

.contrast {
  background: #eceaea;
}

/*--- banner ---*/

.banner {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  aspect-ratio: 1442 / 650;
  display: flex;
  align-items: center;
}

.banner:before {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 775px) {
  .banner {
    aspect-ratio: 600 / 650;
  }
}

.content-banner,
.content-banner-info {
  top: 0;
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding: 5em 0px;
}

.content-banner p {
  font-size: 2em;
  font-family: var(--font);
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.content-banner p span {
  color: #e61b21;
}

.content-banner-info h2 {
  font-size: 2em;
  font-family: var(--font);
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.content-banner-info p {
  font-size: 1.5em;
  font-family: var(--font);
  font-weight: 300;
  color: #fff;
  text-align: center;
}

/*.content-banner-info a {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  text-align: center;
  font-family: var(--font);
  font-size: 1.3em;
  background: #c70d3a;
  text-decoration: none;
  margin-top: 1em;
}*/

.content-banner-info a:hover {
  text-decoration: underline;
}

.content-banner-header {
  top: 0;
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 8em 0px 10em 0px;
  text-align: center;
}

.cap-banner {
  bottom: -1.5em;
  width: 100%;
  height: auto;
  position: absolute;
  overflow: hidden;
  z-index: 1;
}

.cap-banner img {
  width: 100%;
  height: auto;
  min-height: 100px;
  max-height: 200px;
  float: left;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.content-banner-header h2 {
  font-size: 48px;
  font-family: var(--font);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.3em;
}

.content-banner-header p {
  font-size: 1.5em;
  font-family: var(--font);
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.content-banner a,
.content-banner-header a {
  padding: 8px 20px;
  display: inline-block;
  position: relative;
  background: #f45905;
  color: #fff;
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 300;
  text-decoration: none;
  margin-top: 1.5em;
  border-radius: 8px;
}

.content-banner a:hover,
.content-banner-header a:hover {
  text-decoration: underline;
}

/*--- responsive banner ---*/

@media screen and (max-width: 992px) {
  .content-banner,
  .content-banner-info {
    width: 80%;
    padding: 3em 0px;
  }

  .content-banner-header {
    width: 80%;
    padding: 8em 0px 10em 0px;
  }
}

@media screen and (max-width: 845px) {
  .content-banner-header {
    padding: 3em 0px 7em 0px;
  }
}

@media screen and (max-width: 767px) {
  .content-banner,
  .content-banner-info {
    width: 100%;
    padding: 3em 0px;
  }

  .content-banner p {
    font-size: 1.5em;
  }

  .content-banner-info h2 {
    font-size: 1.8em;
  }

  .content-banner-info p {
    font-size: 1.2em;
  }

  .content-banner-info a {
    font-size: 1em;
  }

  .content-banner-header {
    width: 100%;
    padding: 3em 0px 5em 0px;
  }

  .content-banner-header h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
  }

  .content-banner-header p {
    font-size: 1.3em;
  }
}

/*--- form contact ---*/

.form-contact {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.form-text {
  width: 100%;
  height: auto;
  position: relative;
}

.form-text h2 {
  font-size: 1.8em;
  font-family: var(--font);
  color: #f45905;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.3em;
}

.form-text p {
  font-size: 1.2em;
  font-family: var(--font);
  color: #000;
  font-weight: 300;
  text-align: center;
}

.form-content {
  margin-top: 1em;
}

.form-content form {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.form-inputs {
  width: 100%;
  height: auto;
  position: relative;
}

.form-inputs span {
  top: 50%;
  right: 0.46em;
  transform: translateY(-50%);
  font-weight: 300;
  position: absolute;
  background: #fff;
}

.form-inputs .span-weight-bold {
  font-weight: 900;
}

.form-inputs .button-search {
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  font-weight: 300;
  position: absolute;
  border: none;
  cursor: pointer;
  background: transparent;
}

.form-inputs .span-icon {
  top: 0.5em;
  transform: none;
}

.input-control-content {
  width: 100%;
  height: 40px;
  border: 1px solid #000;
  padding: 0px 1em;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  position: relative;
  background: #fff;
}

.input-control-content-textarea {
  width: 100%;
  height: auto;
  min-height: 150px;
  border: 1px solid #000;
  padding: 0.5em 1em;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  position: relative;
  overflow: auto;
  resize: vertical;
  background: #fff;
}

input[type="checkbox"] {
  display: none;
}

input[type="file"] {
  padding: 0.5em;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  float: left;
  background-color: #fff;
  border: 1px solid #333;
  margin: 0px 0.5em 0px 0px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* The container */
.input_checkbox {
  display: inline;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.input_checkbox:hover input ~ .checkmark {
  background-color: #fff;
}

.input_checkbox input:checked ~ .checkmark {
  background-color: #fff;
}

.input_checkbox input:checked ~ .checkmark:after {
  display: block;
}

.input_checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.input_checkbox,
.conditions {
  vertical-align: text-top;
}

.input_checkbox a {
  color: #000;
  font-size: 1em;
  font-weight: 300;
  font-family: var(--font);
  text-decoration: none;
  position: relative;
}

.input_checkbox a:hover {
  text-decoration: underline;
}

.input_checkbox,
.input_checkbox a {
  vertical-align: middle;
}

.btn-send {
  color: #fff;
  background: #f45905;
  transition: 500ms;
  border: none;
  padding: 8px 20px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px;
}

.btn-send:hover {
  color: #000;
  background: #f6f5f5;
}

.input-control-content::-webkit-input-placeholder,
.input-control-content-textarea::-webkit-input-placeholder {
  color: #000;
}

.input-control-content::-moz-placeholder,
.input-control-content-textarea::-moz-placeholder {
  color: #000;
}

.input-control-content:-ms-input-placeholder,
.input-control-content-textarea:-ms-input-placeholder {
  color: #000;
}

.input-control-content:hover,
.input-control-content:focus,
.input-control-content:active,
.input-control-content-textarea:hover,
.input-control-content-textarea:focus,
.input-control-content-textarea:active,
.btn-send:hover,
.btn-send:focus,
.btn-send:active,
.form-inputs .button-search:hover,
.form-inputs .button-search:focus,
.form-inputs .button-search:active {
  outline: none;
}

/*--- alerts ---*/

.message-alerts {
  width: 100%;
  height: auto;
  position: relative;
  display: none;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: var(--font);
  font-size: 0.9em;
  font-weight: 300;
}

.alert ul {
  list-style: none;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-success {
  color: #fff;
  background-color: #21aa93;
  border-color: #21aa93;
}

.alert-danger {
  color: #fff;
  background-color: #ee4540;
  border-color: #c72c41;
}

.alert-info {
  color: #fff;
  background-color: #3bb4c1;
  border-color: #3bb4c1;
}

.alert-dismissible .close-alert .alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.close-alert,
.alert > .close {
  float: right;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  background: transparent;
  border: 0px;
  cursor: pointer;
}

.close-alert:hover,
.close-alert:active,
.close-alert :focus,
.alert > .close:hover,
.alert > .close:active,
.alert > .close:focus {
  outline: none;
}

/*--- footer ---*/

.footer {
  width: 100%;
  height: auto;
  position: relative;
  background: #f6f5f5;
  overflow: hidden;
}

/*--- footer logo ---*/

.logo-footer {
  width: 260px;
  height: auto;
  aspect-ratio: 1;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-footer img {
  width: 90%;
  height: auto;
}

/*--- contact info ---*/

.contact-info {
  width: 100%;
  height: auto;
  position: relative;
}

.contact-info h2,
.menu-footer h2 {
  width: 100%;
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-info h4 {
  width: 100%;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin: 16px 0 8px;
}

.contact-info h6 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #f45905;
  margin: 0 0 8px;
}

.contact-info h6:nth-of-type(3) {
  margin-top: 16px;
}

.contact-info p {
  width: 100%;
  position: relative;
  display: block;
  color: #454545;
  line-height: 160%;
}

.contact-info p a {
  color: inherit;
  text-decoration: underline;
}

.contact-info ul {
  width: 100%;
  position: relative;
  display: block;
}

ul.social-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.contact-info ul li {
  width: 100%;
  position: relative;
  display: block;
}

ul.social-footer li {
  width: fit-content;
  height: fit-content;
  margin-bottom: 0 !important;
}

.contact-info ul li:not(:last-child) {
  margin-bottom: 8px;
}

ul.social-footer li a {
  width: fit-content;
  height: fit-content;
  color: #464646;
  position: relative;
  display: block;
  font-size: 24px;
  transition: all 300ms ease-in-out;
}

ul.social-footer li a:hover {
  color: #f45905;
  transform: rotate(-10deg) scale(1.1, 1.1);
}

/*--- menu footer ---*/

.menu-footer ul {
  width: 100%;
  display: block;
  position: relative;
}

.menu-footer ul li {
  width: 100%;
  display: block;
  position: relative;
}

.menu-footer ul li:not(:last-child) {
  margin-bottom: 12px;
}

.menu-footer ul li a {
  width: 100%;
  position: relative;
  display: block;
  color: #454545;
  line-height: 150%;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.menu-footer ul li a:hover {
  color: #f45905;
}

/*--- copyright ---*/

.copy-right {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 3em;
}

.copy-right p b {
  font-weight: 500;
  font-size: 1.3em;
  color: inherit;
}

.copy-right p {
  font-weight: 300;
  font-size: 0.8em;
  color: #464646;
}

/*--- button up ---*/

.button_up {
  bottom: 70px;
  right: 20px;
  width: 50px;
  height: auto;
  position: fixed;
  z-index: 1000;
  text-align: center;
  display: none;
}

.calendar_section ~ #btnUp{
  display: block;
}

.button_up button:first-child {
  background-color: rgba(234, 234, 234, 0.7);
  color: #333;
  line-height: 0;
  padding-top: 0.1em;
  display: none;
}

.button_up button:first-child i {
  font-size: 2em;
}

.button_up button {
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  position: relative;
  text-align: center;
  border: none;
  border-radius: 50%;
  background-color: rgba(244, 89, 5, 0.7);
  color: #fff;
  cursor: pointer;
  margin-bottom: 0.5em;
  z-index: 2;
  overflow: hidden;
}

.button_up .button-shop {
  background-color: rgba(0, 230, 118, 0.7);
  color: #fff;
  line-height: 0;
  padding-top: 0.1em;
  transition: 1s;
}

button.button-shop.button-wave {
    background-color: rgb(153 39 184 / 70%);
}

.button_up .button-shop i {
  font-size: 2em;
}

.button_up .button-shop:hover {
  overflow: visible;
}

.button_up .button-shop:hover span {
  opacity: 1;
  right: 70px;
  z-index: 1;
}

.button_up .button-shop span {
  top: 50%;
  position: absolute;
  width: 145px;
  height: auto;
  padding: 1em;
  right: 140px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.2em;
  color: #000;
  transform: translateY(-50%);
  background-color: rgba(234, 234, 234, 0.8);
  transition: 0.5s;
  opacity: 0;
  z-index: -1000;
}

.button_up .button-shop span:after {
  content: "";
  top: 50%;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: rgba(234, 234, 234, 0.8);
  position: absolute;
  transform: translateY(-50%);
}

.button_up button:hover,
.button_up button:active,
.button_up button:focus {
  outline: none;
}

/* -- button map -- */

.button_address_map {
  top: 190px;
  width: 50px;
  height: 50px;
  right: 0px;
  position: fixed;
  background: rgba(199, 13, 58, 1);
  z-index: 10;
}

.button_address_map:before {
  content: "";
  width: 0px;
  height: 0px;
  border-bottom: 25px solid transparent;
  border-right: 15px solid rgba(199, 13, 58, 1);
  border-top: 25px solid transparent;
  position: absolute;
  top: 0px;
  left: -15px;
}

.button_address_map button {
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* -- responsive footer and buttons up - menu ---*/

@media screen and (max-width: 1200px) {
  .contact-info h2 {
    font-size: 1.5em;
  }

  .contact-info p {
    font-size: 1em;
  }

  .menu-footer ul li a {
    font-size: 1em;
  }

  .copy-right p {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 872px) {
  .contact-info h2 {
    font-size: 1.3em;
  }

  .contact-info p {
    font-size: 0.9em;
  }

  .menu-footer ul li a {
    font-size: 0.9em;
  }

  .copy-right p {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 845px) {
  .button_up button:first-child {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .button_address_map {
    top: 125px;
    background: rgba(199, 13, 58, 0.7);
  }

  .button_address_map:before {
    border-right: 15px solid rgba(199, 13, 58, 0.7);
  }

  .button_address_map button {
    font-size: 20px;
  }

  .checkmark {
    margin: 0px 0.5em 0.5em 0px;
  }

  .logo-footer {
    width: 140px;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .contact-info,
  .menu-footer {
    text-align: center;
  }

  .menu-footer ul li {
    padding-left: 0px;
  }

  .menu-footer ul li:before {
    content: "";
    display: none;
  }

  .contact-info h2 {
    font-size: 1.5em;
  }

  .contact-info p {
    font-size: 1em;
  }

  .menu-footer ul li a {
    font-size: 1em;
  }

  .copy-right p {
    font-size: 0.9em;
  }
}

/*--------------------------------
	   		Home
--------------------------------*/

/*--- slider ---*/

.slider {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: var(--font);
  transform: scaleX(1);
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 380px;
  background: #fff;
}

.swiper-slide .imgBox {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.swiper-slide .imgBox img {
  width: 100%;
}

.swiper-slide .details {
  padding: 20px;
}

.swiper-slide .details h3 {
  font-size: 20px;
  text-align: center;
  line-height: 20px;
}

.swiper-slide .details h3 span {
  font-size: 16px;
  color: #f44336;
}

/* slide home */

#home {
  width: 100%;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}

.cap-slider {
  bottom: -1em;
  width: 100%;
  height: auto;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  display: none;
}

.cap-slider img {
  width: 100%;
  height: auto;
  min-height: 100px;
  max-height: 200px;
  float: left;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#home .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 250px;
  height: auto;
  max-height: 100vh;
}

#home .swiper-slide .slide_img {
  width: 100%;
  height: auto;
  position: relative;
}

#home .swiper-slide .slide_img:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#home .swiper-slide .slide_img img {
  width: 100%;
  min-height: 355px;
  display: block;
  object-fit: cover;
}

#home .swiper-slide .slide_content {
  top: 50%;
  position: absolute;
  width: 100%;
  height: auto;
  transform: translateY(-60%);
  z-index: 2000;
  text-align: center;
}

#home .swiper-slide .slide_content h2 {
  width: 70%;
  height: auto;
  font-size: 2.5em;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1em;
  margin-bottom: 0.5em;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}

#home .swiper-slide .slide_content h2 span {
  font-size: 1em;
  color: #f45905;
  font-weight: 300;
}

#home .swiper-slide .slide_content p {
  width: 60%;
  height: auto;
  font-size: 1.4em;
  color: #fff;
  font-weight: 300;
  margin: 0 auto;
  margin-bottom: 2em;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}

#home .swiper-slide .slide_content a {
  padding: 8px 20px;
  background-color: #f45905;
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
}

#home .swiper-slide .slide_content a:hover {
  text-decoration: underline;
}

#home > .swiper-button-prev {
  background-image: url("../img/prevImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: 10px;
  right: auto;
  opacity: 0;
  transition: 2s;
}

#home > .swiper-button-next {
  background-image: url("../img/nextImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: auto;
  right: 10px;
  opacity: 0;
  transition: 300ms;
}

#home:hover .swiper-button-prev,
#home:hover .swiper-button-next {
  opacity: 1;
}

#home > .swiper-pagination-bullets {
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 8px 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#home > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f45905;
}

/* animation general */

#home .swiper-slide .slide_content h2,
#home .swiper-slide .slide_content p,
#home .swiper-slide .slide_content a {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: textAnimateOutDown;
  animation-name: textAnimateOutDown;
}

/* animation in event active */

#home .swiper-slide-active .slide_content h2,
#home .swiper-slide-active .slide_content p,
#home .swiper-slide-active .slide_content a {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: textAnimateInDown;
  animation-name: textAnimateInDown;
}

/* animation title */
#home .swiper-slide-active .slide_content h2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

/* animation paragraph */
#home .swiper-slide-active .slide_content p {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/* animation link */
#home .swiper-slide-active .slide_content a {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

/* animations for slide home */

@-webkit-keyframes textAnimateInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes textAnimateInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes textAnimateOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes textAnimateOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* responsive home */

@media screen and (max-width: 1000px) {
  #home .swiper-slide .slide_content h2 {
    width: 70%;
    font-size: 2.3em;
    font-weight: 300;
  }

  #home .swiper-slide .slide_content h2 span {
    font-size: 1em;
    font-weight: 500;
  }

  #home .swiper-slide .slide_content p {
    width: 60%;
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 2em;
  }

  #home .swiper-slide .slide_content a {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 820px) {
  #home .swiper-slide .slide_content h2 {
    width: 80%;
    font-size: 2em;
    font-weight: 300;
  }

  #home .swiper-slide .slide_content h2 span {
    font-size: 1em;
    font-weight: 500;
  }

  #home .swiper-slide .slide_content p {
    width: 70%;
    font-size: 1em;
    margin-bottom: 2em;
  }

  #home .swiper-slide .slide_content a {
    font-size: 1em;
  }

  #home .swiper-button-prev,
  #home .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  #home .swiper-slide .slide_content h2 {
    width: 80%;
    font-size: 1.5em;
    font-weight: 300;
  }

  #home .swiper-slide .slide_content h2 span {
    font-size: 1em;
    font-weight: 500;
  }

  #home .swiper-slide .slide_content p {
    width: 80%;
    font-size: 1em;
    margin-bottom: 1em;
  }

  #home .swiper-slide .slide_content a {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 520px) {
  #home .swiper-slide .slide_content h2 {
    width: 80%;
    font-size: 1.5em;
    font-weight: 300;
  }

  #home .swiper-slide .slide_content h2 span {
    font-size: 1em;
    font-weight: 500;
  }

  #home .swiper-slide .slide_content p {
    width: 80%;
    font-size: 1em;
  }

  #home .swiper-slide .slide_content a {
    font-size: 0.8em;
  }

  #home > .swiper-pagination-bullets {
    bottom: 5px;
  }

  #home > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0px 4px;
  }
}

/*--- section about ---*/

.section-about {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
}

.sect-background {
  background: #f6f5f5 50% repeat;
  background-size: initial;
}
/*--- margin ---*/

.margin-top-none {
  margin-top: 0px !important;
}

/*--- paddings and align text ---*/

.content-padding-left {
  padding-left: 3em;
}

.content-padding-right {
  padding-right: 3em;
}

.content-text-right {
  text-align: right;
}

.content-text-center {
  text-align: center;
}

.content-text-left {
  text-align: left;
}

.content-justify {
  text-align: justify !important;
}

.content-justify h2,
.content-justify h3,
.content-justify h4 {
  text-align: left !important;
}

.content-justify p {
  text-align: justify !important;
}

/*--- content sections ---*/

.section-content {
  width: 100%;
  height: auto;
}

.content-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.content-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  float: left;
  object-fit: cover;
}

.content-image .btn-play {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e3e3e3;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: all 500ms ease-in-out;
  z-index: 2;
}

.content-image .btn-play:before,
.content-image .btn-play:after {
  content: "";
  display: none;
  position: absolute;
  border: 50%;
  border: 1px solid #e3e3e3;
  left: -20px;
  top: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 1.5s linear infinite;
  opacity: 0;
  background-color: rgba(227, 227, 227, 0.2);
  background-visibility: hidden;
  z-index: 1;
}

.content-image .btn-play:after {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.content-image:hover .btn-play {
  opacity: 1;
}

.content-image:hover .btn-play:before,
.content-image:hover .btn-play:after {
  display: block;
}

.content-image .btn-play i {
  font-size: 1.7em;
  color: #fff;
}

.content-text {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.content-text h2 {
  color: #f45905;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.8em;
  margin-bottom: 0.5em;
}

.text-color-title h2 {
  color: #c70d3a;
  margin: 0px;
}

.content-text p {
  color: #000;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.2em;
}

.content-text button {
  display: inline-block;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  color: #f45905;
  background: #f1e5da;
  font-family: var(--font);
  font-size: 1.3em;
  margin-top: 0.5em;
  text-decoration: none;
  border-radius: 8px;
}

.content-image,
.content-text {
  display: inline-block;
}

.programs_list {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.programs_list .programs_title {
  width: 100%;
  position: relative;
  display: block;
}

.programs_list .programs_title h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 38px;
}

.programs_list .program_item {
  width: calc(100% / 3 - 16px);
  position: relative;
  display: block;
}

.programs_list .program_item .program_image {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.programs_list .program_item .program_image img {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 405 / 382;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.programs_list .program_item .program_image a {
  width: fit-content;
  position: absolute;
  display: block;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.programs_list .program_item .program_content {
  width: 100%;
  position: relative;
  display: block;
}

.programs_list .program_item .program_content h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: #000;
}

.programs_list .program_item .program_content h3 {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.programs_list .program_item .program_content p {
  width: 100%;
  position: relative;
  display: block;
  color: #828282;
  line-height: 140%;
}

.programs_list .program_item .program_content ul {
  width: 100%;
  position: relative;
  display: block;
}

.programs_list .program_item .program_content ul li {
  width: 100%;
  position: relative;
  display: list-item;
  color: #828282;
  line-height: 140%;
  list-style: disc inside;
}

@media screen and (max-width: 768px) {
  .programs_list .program_item {
    width: calc(100% / 2 - 12px);
  }
}

@media screen and (max-width: 575px) {
  .programs_list .program_item {
    width: 100%;
  }
}

.extension_list {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.extension_list .swiper-slide {
  height: fit-content;
}

.extension_list .extension_title {
  width: 100%;
  position: relative;
  display: block;
}

.extension_list .extension_title h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 38px;
  color: #000;
}

.extension_list .extension_title p {
  width: 100%;
  position: relative;
  display: block;
  color: #828282;
}

.extension_list .extension_item {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 321 / 301;
  overflow: hidden;
  border-radius: 8px;
}

.extension_list .extension_item .extension_image {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.extension_list .extension_item .extension_image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  object-position: center;
}

.extension_list .extension_item .extension_text {
  width: 100%;
  position: absolute;
  display: block;
  padding: 4px 16px;
  background: #f45905;
  bottom: 20px;
  left: 0;
  z-index: 4;
  border-radius: 4px;
}

.extension_list .extension_item .extension_text h6 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}

.extension_list button {
  width: fit-content;
  height: fit-content;
  position: absolute;
  display: block;
  appearance: none;
  outline: none;
  border: none;
  bottom: 37%;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.extension_list button img {
  width: 28px;
  position: relative;
  display: block;
}

.extension_list button.extension-button-prev {
  transform: translateX(-116%);
  left: 0;
}

.extension_list button.extension-button-next {
  transform: translateX(116%);
  right: 0;
}

.calendar_content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.calendar_content .calendar_text {
  width: calc(50% - 10px);
  position: relative;
  display: block;
}

.calendar_content .calendar_text h5 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 1.8em;
  margin: 8px 0;
}

.calendar_content .calendar_text p {
  width: 100%;
  position: relative;
  display: block;
  font-size: 22px;
  margin: 8px 0;
  color: #828282;
  line-height: 140%;
  margin-bottom: 12px;
}

.calendar_content .calendar_video {
  width: calc(50% - 10px);
  position: relative;
  display: block;
  aspect-ratio: 737 / 387;
  border-radius: 8px;
  overflow: hidden;
}

.calendar_content .calendar_video button.play {
  width: 80px;
  height: 80px;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.calendar_content .calendar_video button.play img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.calendar_content .calendar_video iframe {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}

.calendar_content .calendar_video.show_video iframe {
  display: block;
}

.calendar_content .calendar_video.show_video button.play {
  display: none;
}

.calendar_content .calendar_video.show_video img {
  display: none;
}

@media screen and (max-width: 768px) {
  .calendar_content .calendar_video,
  .calendar_content .calendar_text {
    width: 100%;
  }

  .calendar_content .calendar_text p {
    font-size: 16px;
  }

  .calendar_content .calendar_text h5 {
    font-size: 28px;
  }
}

.brands_content {
  width: 100%;
  position: relative;
  display: block;
}

.brands_content .brands_title {
  width: 100%;
  position: relative;
  display: block;
}

.brands_content .brands_title h4 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 36px;
}

.brands_content .brands_list {
  width: 100%;
  position: relative;
  display: block;
}

.brands_content .brands_list .swiper-slide {
  height: fit-content;
}

.brands_content .brands_list .brands_item {
  width: 100%;
  position: relative;
  display: block;
}

.brands_content .brands_list .brands_item img {
  width: 100%;
  height: 96px;
  position: relative;
  display: block;
  object-fit: contain;
  object-position: center;
}
/* -- box -- */

.box {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.box .imgBox {
  width: 100%;
  height: 100%;
  position: absolute;
}

.box .imgBox img {
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}

.box .imgBox:before {
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
}

.box .content_box {
  top: 20px;
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 250px;
  padding: 1em;
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}

.box .content_box:before {
  content: "";
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.5s;
}

.box .content_box:after {
  content: "";
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.5s;
}

.box .content_box .details_box {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

.box .content_box .details_box h2 {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 500;
}

.box .content_box .details_box p {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: var(--font);
  font-size: 1em;
  font-weight: 300;
}

.box a {
  text-decoration: none;
}

.box .content_box .details_box a {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: var(--font);
  font-size: 1em;
  font-weight: 300;
  display: inline-block;
  text-decoration: underline;
  z-index: 2;
  margin-top: 0.8em;
}

.box .content_box .details_box a span {
  background-color: #fff;
  color: #333;
  position: relative;
  text-decoration: underline;
  padding: 0.5em 0.6em;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.box .content_box .details_box a:hover span {
  background-color: #f45905;
  color: #fff;
}

.box .gallery-none {
  position: absolute;
  display: block;
  z-index: -2;
}

.box .gallery-none img {
  display: none;
}

.box:hover .imgBox img {
  transform: scale(1.2);
}

.box:hover .imgBox:before {
  opacity: 1;
}

.box:hover .content_box {
  top: 0px;
  opacity: 1;
}

.box:hover .content_box:before {
  transform: scaleX(1);
  opacity: 1;
}

.box:hover .content_box:after {
  transform: scaleY(1);
  opacity: 1;
}

/* -- button load more -- */

.button-load-more {
  display: inline-block;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #f45905;
  font-family: var(--font);
  font-size: 1.3em;
  margin-top: 0.5em;
  text-decoration: none;
  border-radius: 8px;
}

.button-load-more:hover {
  text-decoration: underline;
}

/* -- responsive section ---*/

@media screen and (max-width: 992px) {
  .content-padding-left {
    padding-left: 1em;
  }

  .content-padding-right {
    padding-right: 1em;
  }
}

@media screen and (max-width: 840px) {
  .content-image img {
    min-height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .content-image,
  .content-text {
    padding: 0px !important;
  }

  .content-image img {
    min-height: 250px;
  }

  .content-text-justify {
    text-align: justify !important;
  }

  .content-text-justify-left {
    text-align: left !important;
  }

  .content-text-justify-center {
    text-align: center !important;
  }

  .content-text-justify-right {
    text-align: left !important;
  }

  .button-load-more {
    font-size: 1em;
  }
}

/* --  testimonials -- */

.testimonials_content {
  width: 100%;
  height: auto;
  position: relative;
}

.testimonials_content h2 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5em;
}

#testimonials {
  width: 100%;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
}

#testimonials .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  background: transparent;
}

#testimonials .swiper-slide .details-testimonials {
  width: 100%;
  height: auto;
  padding: 2em;
  position: relative;
}

#testimonials .swiper-slide .details-testimonials p {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5em;
}

#testimonials .swiper-slide .details-testimonials p b {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
}

#testimonials .swiper-button-prev {
  top: 60px;
  background-image: url("../img/prevImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: 0px;
  right: auto;
}

#testimonials > .swiper-button-next {
  top: 60px;
  background-image: url("../img/nextImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: auto;
  right: 0px;
}

#testimonials > .swiper-pagination-bullets {
  bottom: 0px;
  left: 0;
  width: 100%;
}

#testimonials > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 4px;
  background: #fff !important;
  opacity: 1;
  width: 12px;
  height: 12px;
}

#testimonials > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f45905 !important;
}

/*--- responsive testimonials ---*/

@media screen and (max-width: 767px) {
  .testimonials_content h2 {
    font-size: 20px;
  }

  #testimonials .swiper-slide .details-testimonials {
    padding: 1em 0px;
  }

  #testimonials .swiper-slide .details-testimonials p {
    font-size: 14px;
  }

  #testimonials .swiper-slide .details-testimonials p b {
    font-size: 17px;
  }

  #testimonials .swiper-button-prev {
    display: none;
  }

  #testimonials > .swiper-button-next {
    display: none;
  }

  #testimonials > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets{
  bottom: 15px;
  }
}

/* -- Blog style -- */

.item-blog {
  width: 100%;
  height: auto;
  position: relative;
  display: table;
  padding: 1em;
  transition: 0.5s;
}

.blog-img-thumb {
  width: 20%;
  height: auto;
  display: block;
  float: left;
}

.blog-img-thumb img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.blog-text-description {
  width: 80%;
  height: auto;
  display: block;
  float: left;
  padding-left: 0.8em;
}

.blog-text-description a {
  text-decoration: none;
}

.blog-text-description h2 {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.5em;
  color: #45969b;
  transition: 0.5s;
}

.blog-text-description p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  color: #000;
  margin-top: 0.5em;
  transition: 0.5s;
}

.blog-text-description p b {
  font-size: 0.9em;
  color: #45969b;
}

.blog-text-description p span {
  font-size: 0.9em;
  color: #45969b;
}

.item-blog:hover {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.item-blog:hover .blog-text-description h2,
.item-blog:hover .blog-text-description p b,
.item-blog:hover .blog-text-description p span {
  color: #c70d3a;
}

/*-- responsive blog --*/

@media screen and (max-width: 500px) {
  .blog-img-thumb {
    width: 100%;
    text-align: center;
  }

  .blog-img-thumb img {
    max-width: 100px;
  }

  .blog-text-description {
    width: 100%;
    padding-left: 0px;
    text-align: center;
  }

  .blog-text-description h2 {
    font-size: 1.3em;
  }

  .blog-text-description p {
    font-size: 1em;
  }

  .blog-text-description p b {
    font-size: 0.9em;
    color: #45969b;
  }

  .blog-text-description p span {
    font-size: 0.9em;
    color: #45969b;
  }
}

/* -- table calendar  -- */

.calendar {
  width: 100%;
  height: auto;
  position: relative;
}

.table {
  width: 100%;
  min-width: 700px;
  margin-bottom: 0px;
  color: #212529;
}

table {
  border-collapse: collapse;
  display: table;
  font-family: var(--font);
}

tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

thead {
  background: #f6f5f5;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #f6f5f5;
}

.table td p {
  font-size: 0.9em;
}

.table td a {
  font-size: 0.9em;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.sect-background thead {
  background: #fff;
}

.sect-background .table td,
.sect-background .table th {
  border: 1px solid #fff;
}

/* -- instagram -- */

.instagram-photos {
  position: relative;
}

.content-instagram {
  width: 10%;
  float: left;
  max-height: 170px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.content-instagram img {
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  min-height: 170px;
}

.content-instagram:before {
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

.info-instagram {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  transition: 0.1s;
}

.content-instagram:hover:before,
.content-instagram:hover .info-instagram {
  opacity: 1;
}

.info-instagram .ct-inst {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

.info-instagram .ct-inst span {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0.2em;
  font-size: 0.8em;
  display: inline-block;
  font-family: sans-serif;
}

/* -- responsive instagram -- */

@media screen and (max-width: 1200px) {
  .content-instagram {
    min-height: 170px;
    max-height: 170px;
  }
}

@media screen and (max-width: 748px) {
  .content-instagram {
    width: 50%;
    min-height: 150px;
    max-height: 150px;
  }
}

/*----------------------------------------
		Section about us
----------------------------------------*/

.content-about-description {
  width: 100%;
  height: auto;
  position: relative;
  clear: both;
}

.content-about-description img {
  width: 50%;
  height: auto;
  min-height: 350px;
  max-height: 350px;
  float: left;
  margin-right: 2em;
  margin-bottom: 1em;
  object-fit: cover;
}

.content-about-description h2 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 150%;
}

.content-about-description h3 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 20px;
}

.content-about-description h4 {
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 500;
  color: #000;
  margin: 0;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.content-about-description h5 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 28px;
  margin: 20px 0 12px;
}

.content-about-description p {
  font-family: var(--font);
  line-height: 150%;
}

.text_intro p {
  color: #828282;
}

.content-about-description p span {
  font-family: var(--font);
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
}

.semesters {
  background: #f6f5f5;
  margin: 24px 0;
}

.semesters h3 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  margin: 0;
}

.schedule-wrapper h3 {
  margin-bottom: 16px;
}

.schedule-wrapper img {
  width: 36px !important;
  position: relative;
  display: block;
  height: unset;
  min-height: unset !important;
  float: unset !important;
  margin-right: 0 !important;
  object-fit: contain;
  margin-bottom: 1em !important;
}

.schedule {
  width: 100%;
  height: auto;
  position: relative;
  align-items: center;
  gap: 8px;
}

.schedule p {
  color: #000;
  font-size: 16px;
}

.modalities p {
  color: #000000;
  text-transform: unset;
  font-size: 16px;
}

.schedule p span {
  color: #000000;
  text-transform: unset;
  font-weight: bolder;
}

@media screen and (max-width: 767px) {
  .content-about-description img {
    width: 100%;
    float: none;
    min-height: 200px;
    margin-top: 2em;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .content-about-description h2 {
    font-size: 1.8em;
  }

  .margin-responsive {
    margin-top: 2em;
  }
}

/*----------------------------------------
		Section programs and amp
----------------------------------------*/

.plan {
  width: 100%;
  height: auto;
  position: relative;
}

.plan .plan-title {
  width: 100%;
  height: auto;
  position: relative;
  text-align: left;
}

.plan .plan-title-background {
  background: #f6f5f5;
}

.plan .plan-title h2 {
  color: #ff9500;
  font-family: var(--font);
  font-size: 59px;
  line-height: 65px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.05em;
}

.plan .plan-title-background h2 {
  color: #000;
}

.plan .plan-content {
  width: 100%;
  height: auto;
  position: relative;
  background: #f6f5f5;
}

.plan .plan-content-background {
  background: transparent;
  border: 1px solid #f6f5f5;
}

.plan .plan-content p {
  font-family: var(--font);
  color: #000;
  text-align: left;
}

.plan .plan-content-background p {
  color: #000;
}

.plan .plan-content h3 {
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 900;
  color: #000;
  margin-top: 1em;
  text-decoration: none;
}

/* --  requirements -- */

.content-requirements {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.content-requirements h3 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 20px;
}

.content-requirements h3:first-child {
  margin-top: 0px;
}

.content-requirements h3 span {
  font-weight: 500;
  color: #000;
  font-size: 0.8em;
}

.content-requirements p {
  font-family: var(--font);
  font-size: 16px;
  color: #000;
}

.content-payment p {
    font-size: 20px;
}

.content-requirements p a {
  color: #f45905;
}

.content-about-description ul,
.schedule-wrapper ul {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.content-about-description ul li,
.schedule-wrapper ul li {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 16px;
  color: #000;
  line-height: 150%;
  display: list-item;
  list-style: disc inside;
}

.content-about-description ul li a,
.schedule-wrapper ul li a {
  color: #f45905;
  text-decoration: none;
}

.content-about-description ul li a:hover,
.schedule-wrapper ul li a:hover {
  text-decoration: underline;
}

.program-box {
  width: 100%;
  min-height: 200px;
  position: relative;
}

.program-box .content-banner {
  padding: 0;
}

.program-box .content-banner p {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 767px) {
  .margin-responsive {
    margin-top: 2em;
  }
}

/*----------------------------------------
		Section contact
----------------------------------------*/

.item-headquarters {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1.5em 1em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.item-headquarters:hover {
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.item-headquarters h2 {
  color: #45969b;
  font-family: var(--font);
  font-size: 1.5em;
  margin-bottom: 0.5em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.item-headquarters h3 {
  color: #000;
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 900;
  margin-bottom: 0.5em;
}

.item-headquarters p {
  color: #000;
  font-family: var(--font);
  font-size: 0.9em;
  margin: 0px;
}

.item-headquarters a {
  color: #000;
  text-decoration: none;
  font-family: var(--font);
  display: inline-block;
}

.item-headquarters a:hover {
  text-decoration: underline;
}

.item-headquarters:hover p b,
.item-headquarters:hover h2 {
  color: #c70d3a;
}

.section_map {
  top: 0;
  width: 100%;
  height: auto;
  position: relative;
}

.section_map .map_content {
  width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
  margin: 0px;
  display: block;
}

/*----------------------------------------
		Section ¿How do we do it?
----------------------------------------*/

/*--- line time ---*/

.content-line-time {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 0.6em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-line-time ul {
  display: table;
  list-style: none;
  counter-reset: section;
}

.content-line-time ul li {
  width: 100%;
  height: auto;
  min-height: 80px;
  position: relative;
  border-left: 0.2em solid #e61b21;
  padding-left: 2.5em;
  display: block;
  font-size: 1.5em;
  font-family: var(--font);
  font-weight: 300;
}

.content-line-time ul li:before {
  counter-increment: section;
  content: counter(section);
  top: -10px;
  left: -27px;
  width: 50px;
  height: 50px;
  background: #e61b21;
  color: #fff;
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-line-time ul li:last-child {
  border-left: none;
  min-height: 10px;
}

.content-line-time ul li:last-child:before {
  left: -23px;
}

/*--- line image ---*/

.content-line-image {
  width: 100%;
  height: auto;
  position: relative;
}

/*--- slide ---*/

#process {
  width: 100%;
  height: auto;
  min-height: 600px;
  position: relative;
  padding: 0px;
  overflow: hidden;
}

#process .image-slide-section {
  width: 100%;
  height: auto;
  min-height: 600px;
  max-height: 600px;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

#process .swiper-button-prev {
  background-image: url("../img/prevImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: 10px;
  right: auto;
}

#process > .swiper-button-next {
  background-image: url("../img/nextImgBtn.png");
  background-size: cover;
  background-position: 50%;
  left: auto;
  right: 10px;
}

#process > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

#process > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 4px;
  background: #e61b21;
  opacity: 1;
}

#process > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e4f9f5;
}

.content-line-image .line-description {
  width: 100%;
  height: auto;
  position: relative;
  background: #e61b21;
  padding: 1em 0.5em;
}

.content-line-image .line-description h3 {
  color: #fff;
  font-family: var(--font);
  font-size: 1.8em;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .content-line-time ul li {
    width: 100%;
    height: auto;
    min-height: 60px;
    position: relative;
    border-left: 0.2em solid #e61b21;
    padding-left: 2em;
    font-size: 1.2em;
  }

  .content-line-time ul li:before {
    left: -22px;
    width: 40px;
    height: 40px;
  }

  .content-line-time ul li:last-child:before {
    left: -17px;
  }

  .content-line-image {
    margin-top: 2em;
  }

  #process {
    min-height: 250px;
  }

  #process .image-slide-section {
    min-height: 250px;
    max-height: 300px;
  }

  .content-line-image .line-description h3 {
    color: #fff;
    font-family: var(--font);
    font-size: 1.3em;
    font-weight: 300;
    text-align: center;
  }
}

/*---------------------------------------
	    Section Products extends
---------------------------------------*/

.products-contents {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.image_product {
  width: 100%;
  height: auto;
  max-height: 350px;
  position: relative;
  overflow: hidden;
  cursor: all-scroll;
}

.image_product img {
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.images_products {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 15px;
}

.image_product_background {
  width: 100%;
  height: auto;
  min-height: 100px;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  cursor: pointer;
}

.product-description h4 {
  font-family: var(--font);
  font-size: 1.2em;
  margin-bottom: 0.5em;
  display: block;
  font-weight: 500;
}

.product-description ul {
  position: relative;
  display: inline-block;
  margin: 0.2em 0px;
  margin-bottom: 0.5em;
}

.product-description ul li {
  position: relative;
  margin: 0.2em 0px;
  margin-left: 1em;
  font-family: var(--font);
  color: #000;
  font-size: 1.2em;
  font-weight: 300;
}

.product-btn {
  color: #fff;
  background: #f45905;
  transition: 500ms;
  border: none;
  padding: 0.5em 1em;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  cursor: pointer;
  height: 40px;
}

.product-btn:hover {
  color: #000;
  background: #f6f5f5;
}

.product-btn-quantity {
  width: 100%;
  height: auto;
  display: table;
}

.product-quantity-button {
  width: 40px;
  height: 20px;
  text-align: center;
  justify-content: center;
  align-content: center;
  background: #f45905;
  color: #fff;
  border: none;
  border: solid 1px #fff;
  display: block;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.product-quantity-button-table {
  width: 50%;
  height: 40px;
  display: inline-block;
  float: left;
}

.product-quantity-button:hover {
  color: #000;
  background: #f6f5f5;
}

.product-btn:hover,
.product-btn:focus,
.product-btn:active,
.product-quantity-button:hover,
.product-quantity-button:focus,
.product-quantity-button:active {
  outline: none;
}

/* -- responsive products -- */

@media screen and (max-width: 1100px) {
  .image_product_background {
    min-height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .product-quantity-button {
    width: 50%;
    height: 40px;
    display: inline-block;
    float: left;
  }
}

/*---------------------------------------------
			Style Car shop
---------------------------------------------*/

.value_total {
  width: 100%;
  height: auto;
  background: #f6f5f5;
  position: relative;
  text-align: center;
  padding: 0.5em;
}

.value_total p {
  font-family: var(--font);
  font-size: 1.3em;
  display: block;
}

.btn-car-shop {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5em;
}

.btn-success {
  background: #45969b;
}

.btn-info {
  background: #c70d3a;
}

.btn-warning {
  background: #f45905;
}

.btn-danger {
  background: red;
}

@media screen and (max-width: 991px) {
  .margin-form-car-top {
    margin-top: -10px !important;
  }

  .margin-form-car-bottom {
    margin-bottom: -10px !important;
  }
}

/*---------------------------------------------
			   section Tips
---------------------------------------------*/

.tips-content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0.5em 0px;
  border-bottom: 1px solid #f6f5f5;
}

.tips-content:first-child {
  padding-top: 0px;
}

.tips-content:last-child {
  border: none;
  padding-bottom: 0px;
}

.tips-margin {
  margin-top: 2em;
}

.tips-content .tips-items {
  width: 100%;
  height: auto;
  position: relative;
}

.tips-content .tips-items .tips-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.tips-content .tips-items .tips-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  transform: scale(1.1, 1.1);
}

.tips-content .tips-items .tips-image:before {
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.tips-content .tips-items .tips-image:after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5em;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  z-index: 1;
}

.tips-content .tips-items .tips-image:hover:before,
.tips-content .tips-items .tips-image:hover:after {
  opacity: 1;
}

.tips-content .tips-items .tips-image:hover img {
  transform: scale(1.2, 1.2);
}

.tips-content .tips-items .tips-text h2 {
  font-family: var(--font);
  font-size: 1.8em;
  font-weight: 500;
  color: #e61b21;
  margin-bottom: 0.2em;
}

.tips-content .tips-items .tips-text .link-title {
  text-decoration: none;
  display: block;
}

.tips-content .tips-items .tips-text p {
  font-family: var(--font);
  font-size: 1.2em;
  font-weight: 300;
  color: #000;
  margin: 0.2em 0px;
}

.tips-content .tips-items .tips-text a,
.tips-content .tips-items .tips-text span {
  font-family: var(--font);
  font-size: 1em;
  font-weight: 500;
  color: #000;
}

.tips-content .tips-items .tips-text a {
  margin-right: 0.5em;
}

.tips-content .tips-items .tips-text span {
  font-family: var(--font);
  font-size: 0.9em;
  font-weight: 300;
  display: block;
  color: #000;
  margin-top: 0.2em;
}

.tips-content .tips-items .tips-text .button-more {
  background: #e61b21;
  display: inline-block;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  padding: 0.5em 2em;
  margin-top: 0.5em;
  transition: all 0.5s ease-in-out;
}

.tips-content .tips-items .tips-text .button-more:hover {
  background: #f6f5f5;
  color: #000;
}

/*--- filters ---*/

.tips-content-filters {
  width: 100%;
  height: auto;
  position: relative;
}

.filter-top {
  padding-top: 1em;
}

.filter-search {
  width: 100%;
  height: auto;
  background: #f6f5f5;
  overflow: hidden;
  padding: 1em;
}

.filter-search h2 {
  font-family: var(--font);
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5em;
}

.filter-search a {
  font-family: var(--font);
  font-weight: 500;
  color: #000;
  text-align: center;
  display: block;
}

.filters-categories {
  width: 100%;
  height: auto;
  position: relative;
  border-top: 1px solid #e4e4e4;
  margin-top: 1.5em;
  padding-top: 1em;
}

.filters-categories h3 {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.2em;
  color: #000;
  margin-bottom: 0.2em;
}

.filters-categories p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  color: #000;
  margin: 0.5em 0px;
}

.filters-categories ul {
  width: 100%;
  height: auto;
  position: relative;
  display: table;
  list-style: none;
}

.filters-categories ul li {
  width: 100%;
  height: auto;
  display: block;
}

.filters-categories ul li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0px;
  left: 0px;
  position: relative;
  margin-right: 0.2em;
  transition: all 0.3s ease-in-out;
  color: #000;
}

.filters-categories ul li:hover:before {
  margin-right: 0.5em;
}

.filters-categories ul li a {
  color: #000;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  display: inline-block;
  text-align: left;
}

#menu-filter,
#menu-filter ul,
#menu-filter ul li,
#menu-filter ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#menu-filter {
  width: 100%;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  color: #000;
}

#menu-filter ul ul {
  display: none;
}

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

#menu-filter > ul > li.active > a {
  color: #000;
}

.align-right {
  float: right;
}

#menu-filter > ul > li > a {
  width: 100%;
  height: auto;
  padding: 0.5em 1.2em;
  cursor: pointer;
  z-index: 2;
  font-size: 1em;
  text-decoration: none;
  color: #000;
  background: #f6f5f5;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  display: block;
}

#menu-filter > ul > li > a:hover {
  color: #000;
  font-weight: 500;
}

#menu-filter ul li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0.5em;
  left: 0.3em;
  position: relative;
  margin-right: 0.2em;
  transition: all 0.3s ease-in-out;
  color: #000;
  z-index: 10;
  float: left;
}

#menu-filter ul > li.has-sub > a:after {
  position: absolute;
  right: 9px;
  top: 12px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #000;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

#menu-filter ul > li.has-sub > a:before {
  position: absolute;
  right: 5px;
  top: 16px;
  display: block;
  width: 10px;
  height: 2px;
  background: #000;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

#menu-filter ul > li.has-sub.open > a:after,
#menu-filter ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-filter ul ul li a {
  width: 100%;
  height: auto;
  padding: 0.5em 1.5em;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  background: rgba(0, 0, 0, 0.03);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  display: block;
}

#menu-filter ul ul li .active {
  font-weight: 500;
}

#menu-filter ul ul li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  top: 1.3em;
  left: 0.8em;
  position: relative;
  margin-right: 0.2em;
  transition: all 0.3s ease-in-out;
  color: #000;
  z-index: 10;
  float: left;
  font-size: 0.5em;
}

#menu-filter ul ul ul li a {
  padding-left: 32px;
}

#menu-filter ul ul li a:hover {
  color: #000;
  font-weight: 500;
}

#menu-filter ul ul > li.has-sub > a:after {
  top: 16px;
  right: 16px;
  background: #dddddd;
}

#menu-filter ul ul > li.has-sub > a:before {
  top: 20px;
  background: #dddddd;
}

/* ranger price */

.ranger-filter {
  top: 0;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 0.9em;
}

.price_cont {
  position: relative;
  display: block;
  width: 100%;
  height: 15px;
  margin-bottom: 0.3em;
}

.price_cont span {
  color: #f45905;
  font-size: 12px;
  position: absolute;
  font-family: var(--font);
}

.price_cont span:before {
  content: "$";
  top: 0px;
  left: 0px;
  position: relative;
  margin-right: 0.2em;
}

.price_cont span:nth-child(2):before {
  display: none;
}

.price_cont span:first-child {
  float: left;
  left: 0px;
}

.price_cont span:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-family: var(--font);
}

.price_cont span:last-child {
  float: right;
  right: 0px;
}

.noUi-horizontal {
  height: 14px !important;
}

.noUi-horizontal .noUi-handle {
  width: 15px !important;
  height: 24px !important;
}

.noUi-horizontal .noUi-handle:hover,
.noUi-horizontal .noUi-handle:focus,
.noUi-horizontal .noUi-handle:active {
  outline: none;
}

.noUi-connect {
  background: #f45905 !important;
}

.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 4px !important;
  top: 4px !important;
}

.noUi-handle:after {
  left: 8.3px !important;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -9px !important;
  left: auto;
}

/*--- filter featured ---*/

.filters-featured {
  width: 100%;
  height: auto;
  position: relative;
  border-top: 1px solid #e4e4e4;
  margin-top: 1.5em;
  padding-top: 1em;
}

.border-featured {
  border-bottom: 1px solid #e4e4e4;
  padding: 0.5em 0px;
}

.border-featured:last-child {
  border: none;
  padding-bottom: 0px;
}

.filters-featured h3 {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.2em;
  color: #000;
  margin-bottom: 0.2em;
}

.filters-featured .image-featured {
  width: 100%;
  height: auto;
  position: relative;
}

.filters-featured .image-featured img {
  width: 100%;
  height: 100%;
  min-height: 80px;
  max-height: 200px;
  object-fit: cover;
}

.filters-featured a {
  color: #000;
}

.filters-featured a h3 {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1em;
  color: #000;
  margin-bottom: 0.2em;
}

.filters-featured span {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9em;
  color: #000;
  margin-bottom: 0.2em;
}

/*--- responsive tips ---*/

@media screen and (max-width: 767px) {
  .tips-content .tips-items .tips-text h2 {
    font-size: 1.5em;
    margin-bottom: 0.2em;
    text-align: justify;
  }

  .tips-content .tips-items .tips-text p {
    margin: 0.2em 0px;
    text-align: justify;
  }

  .filters-featured {
    display: none;
  }
}

/*--- style paginate ---*/

.pagination {
  position: relative;
  display: table;
  list-style: none;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  margin: 0 auto;
}

.pagination > li {
  display: inline-block;
}

.pagination > .disabled {
  cursor: not-allowed;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #f45905;
}

.pagination > li > a:hover,
.pagination > li > a:hover > span {
  background-color: rgba(234, 234, 234, 0.8);
  color: #000;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 0.2em;
}

/*--------------------------------------------
				Tips single
--------------------------------------------*/

.tips-single-content {
  position: relative;
  display: block;
}

.tips-single-content img {
  top: 0px;
  left: 0px;
  width: 41.66%;
  height: auto;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  float: left;
  margin: 0px 2em 1em 0px;
}

.tips-single-content h2 {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.8em;
  color: #f45905;
  margin-bottom: 0.5em;
  text-align: justify;
}

.tips-single-content a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1em;
  color: #000;
  margin-right: 0.5em;
}

.tips-single-content span {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.8em;
  color: #000;
  display: block;
  margin-top: 0.2em;
}

.tips-single-content p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.2em;
  color: #000;
  margin-bottom: 0.5em;
  text-align: justify;
}

.tips-single-content p b {
  font-family: var(--font);
}

.tips-single-content p i {
  font-family: var(--font);
}

.tips-single-content p u {
  font-family: var(--font);
}

.tips-single-content h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2em;
  color: #000;
  margin: 0.2em 0px;
  text-align: justify;
}

.tips-single-content ul {
  position: relative;
  display: table;
  margin: 0.2em 0px;
}

.tips-single-content ul li {
  position: relative;
  margin: 0.2em 0px;
  margin-left: 1em;
  font-family: var(--font);
  color: #000;
  font-size: 1.2em;
  font-weight: 300;
}

/*--- responsive tips single ---*/

@media screen and (max-width: 767px) {
  .tips-single-content img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 300px;
  }

  .tips-single-content h2 {
    font-size: 1.5em;
    color: #e61b21;
  }
}

/*--- social media ---*/

.social-media ul {
  position: relative;
  list-style: none;
  display: table;
  margin-top: 1em;
}

.social-media ul li {
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0px;
}

.social-media ul li a {
  cursor: pointer;
}

.social-media ul li a i {
  font-size: 2em;
  color: #f45905;
  transition: 0.5s;
}

.social-media ul li:hover a .fa-facebook-square {
  color: #3e5b99;
}

.social-media ul li:hover a .fa-twitter-square {
  color: #1da1f2;
}

.social-media ul li:hover a .fa-whatsapp-square {
  color: #00e676;
}

/* ---  chat style ---*/

body > jdiv > jdiv > jdiv,
body > jdiv > jdiv > jdiv > jdiv,
body > jdiv > jdiv > jdiv > #jvlabelWrap {
  z-index: 1000 !important;
}

body > jdiv > jdiv > jdiv > #jvlabelWrap::before {
  content: "¿Necesitas Ayuda?";
  top: -22px;
  left: -10px;
  width: initial;
  height: auto;
  background: #fff;
  z-index: 1;
  position: absolute;
  text-align: center;
  padding: 0.5em;
  font-size: 0.85em;
  font-family: var(--font);
  border-radius: 5px;
  transform: rotate(-5deg);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 995px) {
  body > jdiv > jdiv > jdiv > jdiv:last-child {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50px !important;
    margin-bottom: 20px;
    background-color: rgba(199, 13, 58, 0.7) !important;
    z-index: 999 !important;
  }

  body > jdiv > jdiv > jdiv > jdiv:nth-last-child(2) {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50px !important;
    margin-bottom: 20px;
    z-index: 1000 !important;
  }
}

/* -- style Notify --*/

.ui-pnotify {
  right: 36px !important;
  top: 46px !important;
}

@media screen and (max-width: 575px) {
  .ui-pnotify {
    right: 50% !important;
    top: 10px !important;
    transform: translateX(50%) !important;
  }
}

/*---------------------------------------
			Style Members
---------------------------------------*/

.imageLogin {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  float: left;
}

.forgot_password {
  display: inline;
  position: relative;
  vertical-align: middle;
  margin-left: 0.8em;
}

.forgot_password a {
  font-family: var(--font);
  font-weight: 300;
  color: #000;
  text-decoration: underline;
}

@media screen and (max-width: 380px) {
  .forgot_password {
    display: block;
    position: relative;
    vertical-align: middle;
    margin-left: 0px;
    margin-top: 0.5em;
  }
}

/*----------------------------------------
		 Style menu members
----------------------------------------*/

.header {
  top: 0;
  width: 100%;
  height: auto;
  padding: 16px;
  position: relative;
  background: #ededed;
  border-bottom: 1px solid #d9dee4;
  z-index: 2000;
}

.footer-member {
  width: 100%;
  height: auto;
  position: relative;
  background: #ededed;
  border-top: 1px solid #d9dee4;
  text-align: center;
}

.footer-member p {
  font-family: var(--font);
  font-size: 0.8em;
  font-weight: 300;
  color: #000;
}

.iconButton-menu {
  width: 30px;
  height: auto;
  position: relative;
  cursor: pointer;
  margin-top: 4px;
}

.iconButton-menu span {
  width: 30px;
  height: 3px;
  margin-bottom: 7px;
  background: #333;
  display: block;
  position: relative;
  transition: 0.3s;
}

.iconButton-menu span:last-child {
  margin-bottom: 0px;
}

.active-button {
  width: 30px;
  height: 25px;
  margin-top: 4px;
  cursor: pointer;
}

.active-button span {
  top: 9px;
  width: 30px;
  height: 3px;
  background: #333;
  display: block;
  position: absolute;
  transition: 0.3s;
}

.active-button span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.active-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.active-button span:last-child {
  opacity: 0;
}

.content-header {
  width: 100%;
  height: auto;
  display: table;
}

.align-menu-left {
  position: relative;
  float: left;
  left: 0;
}

.align-menu-right {
  position: relative;
  float: right;
  right: 0;
}

.pull-right {
  float: right;
  right: 0;
}

.pull-left {
  float: left;
  left: 0;
}

.title-header,
.buttons-header {
  display: inline-block;
}

.title-header {
  margin-right: 16px;
}

.title-header h2 {
  max-width: 450px;
  font-size: 1.5em;
  font-family: var(--font);
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.buttons-header {
  right: 0px;
  position: relative;
  float: right;
  display: table;
}

.userOptions {
  display: inline-block;
  vertical-align: middle;
}

.userOptions {
  position: relative;
}

.userOptions img,
.userOptions h3,
.userOptions i {
  display: inline-block;
  vertical-align: middle;
}

.userOptions img {
  width: 30px;
  height: auto;
  border-radius: 50%;
}

.userOptions h3 {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 500;
  padding: 0.5em 0px;
  cursor: pointer;
}

/*--------------------
      options 
---------------------*/

.content-options {
  top: 49px;
  width: 220px;
  height: auto;
  border: 1px solid #d9dee4;
  background: #fff;
  padding: 5px;
  position: absolute;
  display: none;
  z-index: 2000;
}

.account {
  left: 0px;
}

.profile {
  right: 0px;
}

.content-options:after,
.account:after,
.profile:after {
  content: "";
  width: 0px;
  height: 0px;
  border-bottom: 15px solid #d9dee4;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -15px;
}

.account:after {
  left: 5px;
}

.profile:after {
  right: 5px;
}

.options-container {
  width: 100%;
  height: auto;
  list-style: none;
  position: relative;
}

.options-container li {
  width: 100%;
  display: block;
  padding: 5px;
  border-bottom: 1px solid #d9dee4;
}

.options-container li:last-child {
  border: none;
}

.options-container li a {
  text-decoration: none;
  color: #000;
  display: block;
}

.options-container li .active {
  text-decoration: underline;
}

.options-container li:hover a {
  text-decoration: underline;
}

.options-container li a span,
.options-container li a i {
  position: relative;
  vertical-align: middle;
}

.options-container li a span {
  font-family: var(--font);
  font-size: 15px;
}

.profile li a {
  text-align: right;
}

.options-container li a i {
  font-size: 20px;
}

.show {
  display: block !important;
}

.programs_title {
  width: 100%;
  position: relative;
  display: block;
}

.programs_title h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 52px;
  margin-bottom: 20px;
  color: #000;
}

.programs_title p {
  width: 100%;
  position: relative;
  display: block;
  font-size: 20px;
  color: #828282;
}

.programs_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.programs_wrapper .program_item {
  width: calc(100% / 4 - 12px);
  position: relative;
  display: block;
}

.programs_wrapper .program_item a {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 321 / 301;
  border-radius: 8px;
  overflow: hidden;
}

.programs_wrapper .program_item a .program_img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.programs_wrapper .program_item a .program_img img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  object-position: center;
}

.programs_wrapper .program_item a .program_content {
  width: 100%;
  position: absolute;
  display: block;
  padding: 4px 16px;
  background: #f6f5f5;
  border-radius: 4px;
  bottom: 20px;
  left: 0;
  z-index: 4;
}

.programs_wrapper .program_item a .program_content h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}
.schedule_class p {
  width: 100%;
  position: relative;
  display: block;
  color: #000000;
  font-weight: 600;
}

.schedule_class button.button-load-more {
  margin: 40px auto 0;
  display: block;
}

.program_video {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 737 / 387;
  border-radius: 8px;
  overflow: hidden;
}

.program_video img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  object-position: center;
}

.program_video button.play {
  width: 80px;
  height: 80px;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.program_video button.play img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.program_video iframe {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}

.program_video.show_video iframe {
  display: block;
}

.program_video.show_video button.play {
  display: none;
}

.program_video.show_video img {
  display: none;
}

.calendar_section {
  padding: 25px 0 40px;
}

.calendar_section h2 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 38px;
  margin-bottom: 20px;
  color: #000000;
  text-align: left;
  font-weight: 600;
}

.calendar_section h3 {
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
  margin-bottom: 4px;
}

.calendar_section p:not(table p) {
  width: 100%;
  max-width: 800px;
  position: relative;
  display: block;
  font-size: 20px;
  color: #828282;
  text-align: left;
  line-height: 150%;
}

.calendar_wrapper th {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.04em;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  background-color: #d3d3d3;
}

.calendar_wrapper td {
  text-align: left;
  line-height: 140%;
}

.calendar_wrapper td:first-child {
  font-weight: 500;
}

th#cal-clase {
    width: 25%;
}

th#cal-des {
    width: 40%;
}

th#cal-date {
    width: 20%;
}

th#cal-cupo {
    width: 15%;
}

td#cal-cupo {
    text-align: center;
}

.extension_content {
  padding-top: 20px;
}

@media screen and (max-width: 1200px) {
  .programs_wrapper .program_item {
    width: calc(100% / 3 - 11px);
  }
}

@media screen and (max-width: 775px) {
  .programs_wrapper .program_item {
    width: calc(100% / 2 - 8px);
  }
}

@media screen and (max-width: 575px) {
  .programs_wrapper .program_item {
    width: 100%;
  }
}

/*----------------------------
	Responsive header 
----------------------------*/

@media screen and (max-width: 775px) {
  .content-options {
    width: 180px;
  }
}

@media screen and (max-width: 570px) {
  .title-header {
    padding-top: 0.5em;
  }

  .title-header h2 {
    max-width: 200px;
    font-size: 0.8em;
  }

  .userOptions {
    position: relative;
    margin-left: 10px;
  }

  .userOptions h3 {
    max-width: 70px;
    font-size: 11px;
  }

  .options-container li a span {
    font-family: var(--font);
    font-size: 12px;
  }

  .options-container li a i {
    font-size: 16px;
  }

  .content-options {
    top: 46px;
  }

  .programs_list .programs_title h2,
  .extension_list .extension_title h2,
  .programs_title h2 {
    font-size: 38px;
  }

  .schedule {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .content-about-description p {
    width: 100%;
  }

  .box .content_box {
    opacity: 1;
    top: 0;
  }

  .box .content_box .details_box {
    text-align: left;
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 4px 16px;
    background: #eceaea;
    border-radius: 4px;
  }

  .box .content_box .details_box h2 {
    color: #000000;
    font-size: 17px;
  }

  .box .content_box:before,
  .box .content_box:after {
    display: none;
  }

  .plan .plan-title h2 {
    font-size: 52px;
  }
}

@media screen and (max-width: 305px) {
  .title-header {
    display: none;
  }
}

/*-----------------------------------
		  Panel Students
-----------------------------------*/

.content-member-panel {
  min-height: 90vh;
}

.content-member {
  width: 100%;
  height: auto;
  position: relative;
  background: #f6f5f5;
}

.content-member-form .btn-send:hover {
  background: #fff;
}

.content-member-padding-wh {
  padding: 4em 2em;
}

.content-member-padding-lrh {
  padding: 0px 2em 2em 2em;
}

.content-member-padding-all {
  padding: 2em;
}

.content-member p {
  position: relative;
  width: 100%;
  height: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.content-member img,
.content-member video {
  width: 100%;
  height: auto;
  float: none;
  margin-bottom: 1em;
  position: relative;
  margin-top: 0px !important;
}

.content-member img {
  object-fit: cover;
  min-height: 200px;
}

.content-member video {
  min-height: 100px;
}

.content-member h4 {
  font-family: var(--font);
  font-size: 1.1em;
  color: #333;
}

.content-member h4 a i {
  color: #333;
  transition: 0.5s;
}

.content-member h4 a:hover i {
  color: #f45905;
}

@media screen and (max-width: 470px) {
  .content-member {
    width: 100%;
    height: auto;
    position: relative;
    background: #f6f5f5;
  }

  .content-member-padding-wh {
    padding: 2em 1em;
  }

  .content-member-padding-lrh {
    padding: 0px 1em 1em 2em;
  }
}

.content-images .float-left img {
    float: left;
    width: 50%;
    display: flex;
    padding: 5px;
}

.content-images .float-right img {
    float: right;
    width: 50%;
    display: flex;
    padding: 5px;
}

.icon {
    display: block;
    margin-bottom: 10px;
}

.icon i.fa-solid, .icon i.fa-regular.fa-clipboard{
    display: block;
    font-size: 32px;
    color: #f45905;
}