@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root {
  --color-background: #000000;
  --color-rgbaOne: rgba(0, 0, 0, 0.8);
  --color-primary: #cfbaba;
  --color-secondary: #745e6e;
  --color-white: #ffffff;
  --color-black: #000;
  --my-gradient: linear-gradient(to bottom, #ff8a00, #da1b60);
  --box-shadow-cm: 0px 1px 24px 3px rgba(119, 151, 13, 0.772);
}


* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: var(--color-background);
}

html::-webkit-scrollbar-thumb {
  background: #29d9d5;
  border-radius: 5rem;
}

body {
  background: var(--color-background);
  overflow-x: hidden;
}

section {
  padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.heading2 {
  text-align: center;
  margin-bottom: 2rem;
  border: 0.2rem solid #5b8624;
  width: 33%;
}

.heading span {
  color: #e2d851;
  font-size: 2rem;
}

.heading2 span {
  color: #e2d851;
  font-size: 2rem;
}

.heading h1 {
  font-size: 4rem;
  color: #fff;
}

.heading2 h1 {
  font-size: 4rem;
  color: #fff;
}

.heading .imgclick {
  animation: click 3s infinite ease-out;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  border: 0.2rem solid #5b8624;
  border-radius: 5rem;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  color: #fff;
  box-shadow: #fff 0px 3px 6px, #fff 0px 3px 6px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-rgbaOne);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 9%;
}

.header .navbar a {
  font-size: 1.7rem;
  color: #e2d851;
  display: inline-block;
  margin: 0 1rem;
}

.header .navbar a:hover {
  color: #29d9d5;
}

.header .btn {
  margin-top: 0;
}

.logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
}

.logo i {
  color: #29d9d5;
  padding-right: .5rem;
}

#menu-btn {
  float: right !important;
  right: 0px !important;


  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  /*top: 10px;  
  left:3px; */
  background: transparent;
  z-index: 5000;
}

@keyframes movimiento {
  from {
    background-position: bottom left;
  }

  to {
    background-position: top right;
  }
}

.home {
  margin: 0 auto;
  /*margin-top: 9rem;*/
  width: 100%;
  animation: movimiento 50s infinite linear alternate;    
  background-image: url(../images/Portada-2.jpg);
  /*background-image:linear-gradient(217deg, rgba(255, 98, 0, 0.816), rgba(255, 0, 0, 0) 70.71%),
  linear-gradient(127deg, rgba(0, 255, 0, 0.5), rgba(0, 255, 0, 0) 70.71%),
  linear-gradient(336deg, rgba(204, 255, 0, 0.314), rgba(0, 0, 255, 0) 70.71%), url(../images/Portada-2.jpg);*/
  
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 110vh;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 5rem;
}

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

.home .content span {
    font-family: "DM Serif Display", serif;
    font-weight: 800;
    font-style: italic;
    color: white;
    text-shadow: #000 3px 7px 7px;
    font-size: 5vw;
    display: block;
}

.home .content h3 {
  font-size: 2vw;
  color: #fff;
  text-shadow: #000 3px 7px 7px;
}

.home .content .ds {
  font-size: 3vw;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-style: normal;
}

.home .content h1 {
  font-size: 3vw;
  color: #fff;
  text-shadow: #000 3px 7px 7px;
}

.home .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

.book-form {
  box-shadow: rgba(0, 0, 93, 0.25) 0px 50px 100px 20px, rgba(0, 0, 0, 0.3) 3px 0px 5px 10px;
  width: 80%;
  margin: 1rem auto;
  margin-top: -25rem;
  background: var(--color-rgbaOne);
  padding: 3rem 2rem;
  border-radius: 33px;
}

.book-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.book-form form .inputBox {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25rem;
  flex: 1 1 25rem;
}

.book-form form .inputBox span {
  font-size: 1.4rem;
  color: #fff;
}

.book-form form .inputBox input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border-radius: 5rem;
  border: 0.2rem solid #555;
  font-size: 1.6rem;
  color: #fff;
  text-transform: none;
  background: none;
  margin-top: 1rem;
}

.book-form form .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 15rem;
  flex: 1 1 15rem;
}

::placeholder {
  color: #fff;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}

.about .video-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.about .video-container video {
  width: 100%;
}

.about .video-container .controls {
  text-align: center;
  padding: 2rem 0;
}

.about .video-container .controls span {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background: #fff;
  cursor: pointer;
  margin: .7rem;
}

.about .video-container .controls span:hover {
  background: #29d9d5;
}

.about .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  margin-bottom: 5rem;
}

.about .content span {
  color: #b3d77d;
  font-size: 2rem;
}

.about .content h3 {
  color: #fff;
  font-size: 4rem;
  margin-top: .5rem;
}

.about .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

.web img {

  height: 100%;
}

.web .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(27rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem;
}

.web .box-container .box {
  overflow: hidden;
  background: #222;
}

.web .box-container .box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.web .box-container .box .image {
  /*height: 20rem;*/
  overflow: hidden;
  width: 100%;
}

.web .box-container .box .image img {
  /*height: 100%;*/
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.web .box-container .box .content {
  padding: 2rem;
  text-align: center;
}

.web .box-container .box .content h3 {
  font-size: 2rem;
  color: #fff;
}

.web .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

.web .box-container .box .content a {
  font-size: 1.7rem;
  color: #b3d77d;
}

.web .box-container .box .content a:hover i {
  padding-left: 1rem;
}

.web .box-container .box .content a i {
  padding-right: .5rem;
}

.services .box-container {  
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box {
  border-radius: 20px;
  box-shadow: 0px 1px 24px 3px rgba(119, 151, 13, 0.772);
  background: var(--color-rgbaOne);
  padding: 3rem;
  text-align: center;
  margin: 20px;
}

.services .box-container .box:hover {
  border: 0.2rem solid #29d9d5;
}

.services .box-container .box i {
  font-size: 4rem;
  color: #29d9d5;
  margin-bottom: 2rem;
}

.services .box-container .box h3 {
  font-size: 2rem;
  color: #29d9d5;
}

.services .box-container .box p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

/* section gallery starts */
.gallery .box-container {
  -webkit-columns: 3 25rem;
  columns: 3 25rem;
  -webkit-column-gap: 1.5rem;
  column-gap: 0rem;
}

.gallery .box-container .box {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.gallery .box-container .box img {
  margin: none;
  width: 100%;
}

.gallery .box-container .box span {
  /*font-size: 1.4rem;*/
  color: #fff;
}

.gallery .box-container .box h3 {
  /*font-size: 0rem;*/
  color: #fff;
}

/* section gallery ends */


.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.review .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.review .content span {
  font-size: 2rem;
  color: #e2d851;
}

.review .content h3 {
  font-size: 3rem;
  color: #fff;
}

.review .content p {
  font-size: 1.9rem;
  color: #fff;
  padding: 0.5rem 0;
  line-height: 2;
}

.review .box-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.review .box-container .box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20rem;
  flex: 1 1 20rem;
  padding: 2rem;
  background: #222;
  border: 0.2rem solid #111;
}

.review .box-container .box:hover {
  border: 0.2rem solid #29d9d5;
}

.review .box-container .box p {
  font-size: 1.4rem;
  padding-bottom: 1rem;
  line-height: 2;
  color: #fff;
}

.review .box-container .box .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.review .box-container .box .user img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
}

.review .box-container .box .user h3 {
  font-size: 1.7rem;
  color: #9a5eff;
}

.review .box-container .box .user span {
  color: #fff;
  font-size: 1.5rem;
}

.blogs .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}

.blogs .box-container .box {
  border-radius: 20px;
  margin: 10px;
  box-shadow: var(--box-shadow-cm);
  background: #222;
  overflow: hidden;
}

.blogs .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}

.blogs .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blogs .box-container .box .content {
  padding: 2rem;
}

.blogs .box-container .box .content .link {
  font-size: 2rem;
  color: #fff;
}

.blogs .box-container .box .content .link:hover {
  color: #29d9d5;
}

.blogs .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

.blogs .box-container .box .content .icon {
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blogs .box-container .box .content .icon a {
  font-size: 1.4rem;
  color: #fff;
}

.blogs .box-container .box .content .icon a:hover {
  color: #29d9d5;
}

.blogs .box-container .box .content .icon a i {
  padding-right: .5rem;
  color: #29d9d5;
}

.banner {
  /*background: #0F2027;
  background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
  background: linear-gradient(to right, #2C5364, #203A43, #0F2027);*/
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  background-attachment: fixed;
  text-align: center;
}

.banner .about .video-container img {
  width: 70%;
  border-radius: 50%;  
  box-shadow: var(--box-shadow-cm);
}

.banner .content{
  margin: 30px;
}

.banner .content .hola{
  font-size: 3rem;
  color: orange;  
}

.banner .content span {
  font-size: 2rem;
  color: #e2d851;
}

.banner .content h1 {
  font-size: 5rem;
  color: #000;
  margin-top: 1rem;
}

.banner .content h3 {
  font-size: 2rem;
  color: #000;
  margin-top: 1rem;
  text-align: center;
  color: var(--color-white);
  
}

.banner .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 2.4rem;
  color: #fff;
  line-height: 2;
}

.circulo {
  width: 100px;
  height: 100px;
  float: left;
  opacity: 50;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #5cb85c;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box .logo {
  padding-bottom: 1rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #e2d851;
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: #fff;
}

.footer .box-container .box .share {
  padding-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  color: #29d9d5;
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a img {
  height: 4.5rem;
  width: 4.5rem;
}

/*.footer .box-container .box .share a:hover {
  background: #29d9d5;
  color: #111;}*/

.footer .box-container .box .links {
  font-size: 1.9rem;
  color: #fff;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #29d9d5;
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
  color: #29d9d5;
}

.footer .box-container .box form .email {
  width: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #b3d77d;
  background: none;
  font-size: 1.5rem;
  text-transform: none;
  color: #fff;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
}

.credit {
  background: transparent;
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  color: #fff;
}

.credit span {
  color: #29d9d5;
}


/* FAQ Starts */
.wrapperfaq {
  max-width: 95%;
  margin: auto;
}

.wrapperfaq>p,
.wrapperfaq>h1 {
  margin: 2rem 0;
  text-align: center;
  color: #fff;
}

.wrapperfaq>h1 {
  letter-spacing: 1px;
}

.accordion {
  background-color: transparent;
  border: 0.5px solid #fff;
  color: grey;
  cursor: pointer;
  font-size: 2.2rem;
  width: 100%;
  padding: 1rem 2.5rem;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.5rem;
  color: orange;
}

.active,
.accordion:hover {
  background-color: #f1f7f5;
  color: orange;
}

.pannel {
  padding: 0 2rem 2.5rem 2rem;
  overflow: hidden;
  background-color: transparent;
  display: none;
}

.pannel p {
  color: #000;
  font-size: 2rem;
  line-height: 1.1;
}

.faq {
  margin: 5px 0;
}

.faq.active {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* FAQ Ends */


/* section slider starts */
.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-slider {
  /*max-width: 1200px;*/
  max-width: 100%;
  width: 95%;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #000;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list button {
  color: orange;
  background: transparent;
  font-size: 2rem;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container-slider .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}


/* ANIMATIONS STARTS */
@keyframes latidos {
  from {
    transform: none;
  }

  50% {
    transform: scale(1.6);
  }

  to {
    transform: none;
  }
}

@keyframes latido {
  0% {
    width: 70px;
    height: 70px;
    border: 10px solid gray;
  }

  100% {
    width: 120px;
    height: 120px;
    border: 10px solid transparent;
  }
}

@keyframes slidein {
  from {
    margin-left: 100%;
  }

  to {
    margin-left: 0%;
  }
}


@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

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


@keyframes buzz-out-on-hover {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes buzz-out-on-hover {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}


@keyframes click {

  25%,
  75% {
    transform: scale(.8);
  }

  50% {
    transform: scale(1.1);
  }
}


@keyframes rotationx {
  0% {
    -webkit-transform: rotateX(360deg);
  }

  100% {
    -webkit-transform: rotateX(0deg);
  }
}

/* ANIMATIONS ENDS */



/*cursor animation*/
.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #ffcc0d;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .1s;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #ffcc0d;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .15s;
}

.content:hover~.cursor {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c6c6c6;
  opacity: .5;
}

.content:hover~.cursor2 {
  opacity: 0;
}


/*-- carrusel right-left Starts */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 70px;
  margin: 0 40px;
}


/*------------------------*/
@keyframes slidet {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.logos-t {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}

.logos-t:before,
.logos-t:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos-t:before {
  right: 0;
}

.logos-t:after {
  left: 0;
}

.logos-t:hover .logos-slide-t {
  animation-play-state: paused;
}

.logos-slide-t {
  display: inline-block;
  animation: 35s slidet infinite linear;
}

.logos-slide-t img {
  height: 50px;
  margin: 0 40px;
}

/*-- carrusel right-left Ends */


/*-- Carrusel clientes starts --*/
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.clientes {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}

.clientes:before,
.clientes:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.clientes:before {
  left: 0;
}

.clientes:after {
  right: 0;
}

.clientes:hover .clientes-slide {
  animation-play-state: paused;
}

.clientes-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.clientes-slide img {
  height: 100px;
  margin: 0 0px;
}

/*-- Carrusel clientes ends --*/


/* section testimonial starts */
.testimonials-cm {
  display: grid;
  height: 100%;
  align-items: center;
  background: transparent;
}

.testim {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.testim .box {
  background: #fff;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.testim .box .quote img {
  height: 10%;
  width: 10%;
  object-fit: cover;
  font-size: 2.1rem;
  color: #17a2b8;
}

.testim .box p {
  font-size: 1.5rem;
}

.testim .box .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.box .info .name {
  font-weight: 600;
  font-size: 2.1rem;
}

.box .info .job {
  font-size: 2.1rem;
  font-weight: 500;
  color: #17a2b8;
}

.box .info .stars {
  margin-top: 2px;
}

.box .info .stars i {
  font-size: 17px;
  color: #fbbc04;
}

.box .content .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #17a2b8;
  border-radius: 50%;
}

.content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.box:hover .content .image img {
  border-color: #fff;
}

/* text sobre imagen starts */
.port .text-hover {
  width: 25%;
  height: 60%;
  margin-top: 3px;
  margin-left: 0px;
  position: absolute;
  display: flex;
  font-size: 55px;
  flex-direction: column;
  opacity: 0;
}

.port .text-hover:hover {
  opacity: 1;
}

.port .text-hover .plus {
  width: 25%;
  height: auto;
  /*background: rgba(0, 0, 0, 0.6);*/
  margin-left: 0px;
  display: flex;
  color: yellow;
  text-shadow: 1px 1px 2px black, 0 0 1em #000, 0 0 0.2em #000;
  font-size: 30px;
}

/* text sobre imagen ends */


/* efecto button colores starts */
.btn-effect-5 {
  margin: 100px;
  width: 30%;
  text-align: center;
  padding: 15px 4px;
  border: none;
  outline: none;
  color: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 5rem;
}

.btn-effect-5::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 5rem;
}

/* glow */
.btn-effect-5::before {
  content: "";
  background: linear-gradient(45deg,
      #FF0000, #FF7300, #FFFB00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 5rem;
  opacity: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/* hover */
.btn-effect-5:hover::before {
  opacity: 1;
}

.btn-effect-5:active:after {
  background: transparent;
}

.btn-effect-5:active {
  color: #000;
  font-weight: bold;
}

/* efecto button colores ends */




/* section marquesina starts */
.marquee {
  display: flex;
  align-items: center;
  height: 17vh;
  overflow: hidden;
}

.scroll-marquee {
  white-space: nowrap;
  margin: 0 1em;
}

.scroll-marquee div {
  display: flex;
  gap: 2em;
}

.scroll-marquee p {
  -webkit-text-stroke: 0.05rem #fff;
  font-size: 7em;
  color: transparent;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 10px;
}

.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

.marquee .scroll-marquee .RightToLeft .text-white {
  color: #fff;
}

.marquee .scroll-marquee .LeftToRight .text-white {
  color: #fff;
}

@keyframes RightToLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}


.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes LeftToRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

/* section marquesina starts */




/* section reveal scroll 1 starts */
.reveal {
  position: relative;
  transform: translateY(150px);
  background-color: transparent;
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  background-color: transparent;
  transform: translateY(0px);
  opacity: 1;
}

/* section reveal scroll 1 ends */


/* Ventana Modal section Starts */
#btn-modal{
    display: none;
}

#btn-modal2{
    display: none;
}

.container-modal{
    width: 100vw;
    height: 100vh;
    position: fixed;
    /*top: 0;*/
    /*left: 0;*/
    bottom: 55px;
    justify-content: center;
    align-items: flex-end;    
    z-index: 100;    
    display: flex;
    animation: modaltwo 1s 2s forwards;
    visibility: hidden;
    opacity: 0;
}

.container-modal h2{
    font-size: 2rem;
}

.container-modal p{
    font-size: 2.1rem;
}

#btn-modal:checked ~ .container-modal{
    display: flex;
}

.content-modal{
    width: 100%;
    max-width: 400px;
    padding: 10px;    
    background: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}


.content-modal h3{
    margin-bottom: 15px;}

.content-modal p{    
    padding: 15px 0px;    
}

.content-modal .btn-cerrar{
    font-size: 1.5rem;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.content-modal .btn-cerrar label{
    color: #000;
}    
    
.content-modal .btn-cerrar2{
    font-size: 1.5rem;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.content-modal .btn-cerrar label{
    padding: 7px 10px;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    text-decoration: none;
  }

.content-modal .btn-cerrar label:hover{
    background-color:#185E83;
}

.cerrar-modal{
    width:100%;
    height: 100vh;
    position: absolute;
    top:0; left: 0;
    z-index: -1;    
    display: none;
}

#btn-modal:checked, #btn-modal:checked ~ .container-modal {
    display: none;
}

@media screen and (max-width:800px) {
    .content-modal{
        width: 90%;}
}

@keyframes modaltwo {
    100% {
        visibility: visible;
        opacity: 1;}
}
/* Ventana Modal section Ends */





/* Media starts -------------------------------------------- */
@media (max-width: 1045px) {
  .testim .box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}

@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 1.5rem 2rem;
  }

  .review .box-container .box .user span {
    font-size: 1.9rem;
  }

  section {
    padding: 3rem 2rem;
  }

  .cursor {
    border: 0 solid transparent !important;
  }

  .cursor2 {
    background-color: transparent !important;
  }
}


@media (max-width: 768px) {
  #menu-btn {
    float: right !important;
    display: block !important;
    position: absolute;
    right: 0px !important;
    /*display: inline-block;*/
    /*color: #e2d851;*/
    color: #29d9d5;
    /*text-shadow: 2px 0 5px #FF0000, 0 0 7px #0000FF;*/
    font-size: 5.1rem;
    -webkit-text-stroke: 0.4rem #000;
    /*top: 100px;    
    left: 10px;*/
    background: transparent;
  }

  #menu-btn a {
    border: 30px solid #000 !important;
  }

  .review .content p {
    font-size: 2.1rem;
    text-align: justify;
  }

  .review .box-container .box .user span {
    font-size: 1.9rem;
  }

  .about .content p {
    font-size: 2.1rem;
    text-align: justify;
  }

  .header .navbar {
    position: absolute;
    padding-top: 100px;
    top: 0;
    left: 0;
    right: 0;
    background: #111;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    margin: 2rem;
    font-size: 3rem;
    display: block;
  }

  .home {
    margin-top: 0px;
  }

  .home .content span {
    font-size: 13vw;
  }

  .home .content h3 {
    font-size: 6vw;
  }
  
  .home .content .ds {
      font-size: 7vw;
  }

  .cursor {
    border: 0 solid transparent !important;
  }

  .cursor2 {
    background-color: transparent !important;
  }
}


@media (max-width: 702px) {
  .testim .box {
    width: 100%;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 50%;
  }

  .review .content p {
    font-size: 2.1rem;
    text-align: justify;
  }

  .about .content p {
    font-size: 2.1rem;
    text-align: justify;
  }

  .review .box-container .box .user span {
    font-size: 1.9rem;
  }

  .about .content h3 {
    font-size: 3.5rem;
  }

  .banner .content h3 {
    font-size: 2.7rem;
  }

  .cursor {
    border: 0 solid transparent !important;
  }

  .cursor2 {
    background-color: transparent !important;
  }
}

/* Media ends -------------------------------------------- */