/* ---------------------
  Fonts
------------------ */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap&family=League+Spartan:wght@100..900&display=swap&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* --------------
  Vars
------------- */

:root {
  --color-1: #274c77;
  --color-2: #6096ba;
  --color-3: #a3cef1;
  --color-4: #8b8c89;
  --color-5: #e7ecef;
  --size-title: 32px;
  --size-description: 16px;
  --font-relaway: "Raleway", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-jost: "Jost", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-spartan: "League Spartan", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-plus: "Plus Jakarta Sans", sans-serif;
}

/* -----------------
  Scroll Styles
----------------- */

@-moz-document url-prefix() {
  body,
  .description_values,
  .amelia_scroll {
    /*Firefox*/
    scrollbar-color: var(--color-1) transparent;
    scrollbar-width: thin;
  }
}
body::-webkit-scrollbar-track,
.description_values::-webkit-scrollbar-track,
.amelia_scroll::-webkit-scrollbar-track {
  background-color: var(--color-5); /*color de la barra de fondo*/
}
body::-webkit-scrollbar-thumb,
.description_values::-webkit-scrollbar-thumb,
.amelia_scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-1); /*color del manejador*/
}
body::-webkit-scrollbar {
  width: 8px !important; /*ancho del scroll vertical*/
  height: 8px !important; /*alto del scroll horizontal*/
}

.description_values::-webkit-scrollbar {
  width: 3px; /*ancho del scroll vertical*/
  height: 3px; /*alto del scroll horizontal*/
}
.amelia_scroll::-webkit-scrollbar {
  width: 5px; /*ancho del scroll vertical*/
  height: 5px; /*alto del scroll horizontal*/
}

/* ---------------
  Generals Styles
------------------ */

main {
  margin-top: 108px;
  @media (width>=768px) {
    margin-top: 140px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.title_primary {
  font-size: var(--size-title);
  line-height: 27.8px;
  font-family: var(--font-jost);
  font-weight: 700;
  color: #274c77;
}

.button_primary {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding: 20px 50px;
  background-color: var(--color-1);
  outline: none;
  border: none;
}

.btn-6 {
  color: white;
  background-color: #274c77;
  border: 1px solid transparent;
  text-decoration: none;
  padding: 10px 30px;
  cursor: pointer;
}

.btn-6 p {
  font-size: 16px;
  font-weight: 700 !important;
  font-family: var(--font-poppins) !important;
  line-height: 30px;
  z-index: 2;
  margin: auto;
}

.btn-6 {
  position: relative;
  display: flex;
  overflow: hidden;
  margin: 1rem auto;
  transition: 400ms;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.btn-6:before,
.btn-6after {
  z-index: 0;
  transition: 400ms;
}

.btn-6 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: white !important;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-6:hover {
  color: var(--color-1);
  border: 1px solid currentColor;
}

.btn-6:hover span {
  width: 225%;
  height: 562.5px;
}

.btn-6:active {
  background-color: white;
}

/* ---------------
  Top Nav
------------------ */
#menu {
  background: var(--color-2);
}

.top_nav {
  background: #274c77;
  height: 38px;
}

.top_nav svg {
  width: 22px;
  height: 22px;
  transition: 100ms;
  color: white;
  fill: white;
}

.top_nav a:hover svg {
  color: var(--color-2) !important;
  transition: 100ms;
}

.description_topNav {
  font-size: 18px;
}

.description_topNav a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-jost);
  transition: color 100ms ease-in;
  animation: pulse-combined 2s infinite;
}
@media screen and (max-width: 768px) {
  .description_topNav p {
    font-size: 14px;
  }
  .description_topNav p svg {
    width: 16px;
    height: 16px;
  }
}

.description_topNav a:hover {
  color: var(--color-2);
}

.group_icons_1 a,
.group_icons_2 a {
  text-decoration: none;
  color: white;
}

.header_brand {
  background: #6096ba;
}

.title_header h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  font-family: var(--font-poppins);
  color: white;
}

@media screen and (max-width: 768px) {
  .title_header h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.button_header {
  animation: pulse-combined 2s infinite;
}

@media screen and (max-width: 768px) {
  .header_brand .btn-6 p {
    font-size: 10px !important;
    line-height: normal !important;
  }
}

@keyframes pulse-combined {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Wp-admin == true */

.dinamyc_header1 {
  margin-top: 32px;
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
}

@media screen and (max-width: 600px) {
  .dinamyc_header1 {
    margin-top: 42px; /* 42px */
  }
}

@media screen and (max-width: 782px) {
  .dinamyc_header1 {
    margin-top: 46px; /* 46px */
  }
}

/* Wp-admin == false */

.dinamyc_header2 {
  margin-top: 0px;
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
}

@media screen and (max-width: 600px) {
  .dinamyc_header2 {
    margin-top: 0px; /* 42px */
  }
}

@media screen and (max-width: 782px) {
  .dinamyc_header2 {
    margin-top: 0px; /* 46px */
  }
}

.header_shadow {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ------------------
  Hero
-------------------- */

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 48px;
  @media (width>=768px) {
    min-height: calc(100vh - 140px);
  }
}
.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    94.55deg,
    #8b8c89 5.19%,
    rgba(231, 236, 239, 0.6) 70.76%,
    rgba(255, 255, 255, 0) 97.07%
  );
background: linear-gradient(90deg, rgba(139,140,137,1) 19%, rgba(151,152,151,0.7778711826527486) 47%, rgba(158,158,158,0) 62%); 

}

@media screen and (max-width: 782px) {
  .hero::before {
    background: linear-gradient(
      94.55deg,
      #8b8c89 5.19%,
      rgba(231, 236, 239, 0.6) 136.76%,
      rgba(255, 255, 255, 0) 173.07%
    );
  }
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1; /* Colocar el video detrás del contenido */
}

/* Estilo base para el carrusel */
#hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1; /* Colocar el video detrás del contenido */
}
#hero-bg-carousel .hero-slide {
  width: 100%;
  background-size: cover; /* Asegura que la imagen cubra toda el área */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita repeticiones */
}

.description_hero {
  color: white;
  z-index: 1;
  margin-top: 154px;
}

.description_hero {
  margin-top: 0px;
}

/* @media screen and (max-width: 992px) {
  .description_hero {
    margin-top: 154px; 32px
  }
}

@media screen and (max-width: 782px) {
  .description_hero {
    margin-top: 168px; 46px 
  }
}

@media screen and (max-width: 600px) {
  .description_hero {
    margin-top: 164px; 42px 
  }
} */

.description_hero h2 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-jost);
  line-height: 3rem;
  font-size: 28px;
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  .description_hero h2 {
    font-size: 20px !important;
    line-height: normal !important;
    margin-top: 20px;
  }
}

.description_hero p {
  font-size: 20px;
  font-weight: 600;
  text-align: justify;
  font-family: var(--font-relaway);
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1),
    1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 576px) {
  .description_hero p {
    justify-content: space-between !important;
    text-align: center;
  }
}

@media screen and (min-width: 1400px) {
  .boxs_hero {
    text-align: center !important;
  }
}

.box_hero {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 194px;
  height: 72px;
  background: #6096ba66;
  border: 3px solid #274c77;
  margin: 0 !important;
  padding: 5px 5px;
}

@media screen and (max-width: 1200px) {
  .box_hero {
    height: auto;
  }
  .box_hero p {
    text-align: center;
    margin: 0 !important;
  }
}
.box_hero div {
  font-size: 25px;
  display: inline-flex;
  font-weight: 700;
  font-family: var(--font-montserrat) !important;
  align-items: center;
}

.box_hero p {
  font-size: var(--size-description);
  font-family: var(--font-montserrat);
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (min-width: 1200px) {
  .box_hero p {
    font-size: 14px;
  }

  .box_hero {
    width: 190px;
    height: 72px;
  }
}

/* ----------------
  Section 1
---------------- */

.section_1 {
  padding: 70px 0px 70px 0px;
  position: relative;
  background: var(--color-2);
}

.img_section_1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.img_section_2 {
  width: 96%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.title_section_1 h3 {
  color: #fff;
  font-size: var(--size-title);
  font-family: var(--font-jost);
}

.description_section_1 p {
  font-weight: 500;
  font-size: var(--size-description);
  text-align: justify;
  font-family: var(--font-relaway);
}

@media screen and (max-width: 576px) {
  .description_section_1 p {
    text-align: center !important;
  }
  .section_1 {
    padding: 70px 0px 35px 0px;
  }

}

/* ----------------
  Section 2
----------------------- */
.section_2 {
  background: #fff;
  padding: 100px 0px 40px 0px;
}

.title_section_2 h2 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  font-weight: 700;
  color: white;
}

.title_section_2 p {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  font-weight: 500;
  color: white;
}

.container_item {
  height: 160px;
  width: 31%;
  max-width: 390px;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  object-fit: cover;
  cursor: pointer;
}

.items_section_2 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: scale 0.3s ease-in-out;
}

.container_item:hover .items_section_2 {
  scale: 1.4;
}

.container_item::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #00000071;
  z-index: 1;
}

.container_item h3 {
  color: white;
  height: 100%;
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: var(--font-relaway);
  font-weight: 800;
  font-size: 21px;
}

.triangle {
  --size: 140px;
  width: 100%;
  position: absolute;
  top: -1px;
  height: 0;
  border-right: 100vw solid transparent;
  border-top: calc(var(--size) * 1) solid white;
}

.description-moister p {
  color:#8b8c89;
}
@media (max-width: 992px) {
  .section_2 {
    padding: 50px 0px 50px 0px;
  }
  .img_section_22::before {
    font-size: 25px!important;
    line-height: normal;
    text-wrap: balance;
  }
}

@media screen and (max-width: 576px) {
  .triangle {
    --size: 110px;
    width: 100%;
    position: absolute;
    top: -1px;
    height: 0;
    border-right: 100vw solid transparent;
    border-top: calc(var(--size) * 1) solid white;
  }

  .triangle_section_2 {
    --size: 110px;
    width: 100%;
    position: absolute;
    top: -1px;
    height: 0;
    border-right: 200vw solid transparent;
    border-top: calc(var(--size) * 1) solid var(--color-2);
  }
  #page
    > section.section_2.position-relative.overflow-hidden
    > div.container
    > div:nth-child(2) {
    padding-bottom: 30px !important;
  }
  .container_item {
    width: 100%;
    max-width: 360px;
  }
  .img_section_22::before {

    text-wrap: balance;
  }
  .img_section_2 {
    width: calc(100% - 40px);
    margin: 0 20px !important;
  }

}

/* -------------------------
  Section 3
------------------------ */

.triangle_section_2 {
  --size: 140px;
  width: 100%;
  position: absolute;
  top: -1px;
  height: 0;
  border-right: 100vw solid transparent;
  border-top: calc(var(--size) * 1) solid var(--color-2);
}

.section_3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section_3::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #000000a2;
}

.title_section_3 {
  z-index: 1;
}

.title_section_3 h2 {
  color: white;
  font-size: 39px;
  font-family: var(--font-jost);
  font-weight: 700;
  line-height: 1.2;
  z-index: 1;
}
.title_section_3 h3 {
  color: white;
  font-size: 29px;
  font-family: var(--font-relaway);
  font-weight: 800;
  z-index: 1;
}
.description_section_3 {
  font-weight: 600;
  font-size: 35px;
  line-height: 39px;
  font-style: italic;
  font-family: var(--font-relaway);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .title_section_3 h2 {
    font-size: 32.2px;
  }
  .title_section_3 h3 {
    font-size: 23.2px;
  }
  .description_section_3 {
    font-size: 24px;
  }
}
/* --------------------
  Section 4 Reviews
-------------------------- */

.section_4 {
  padding: 70px 0px;
}

.section_4 h2,
.section_4 h3 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  color: var(--color-1);
  z-index: 1;
}

.section_4 h2 {
  font-weight: 700;
}

.section_4 h3 {
  font-weight: 500;
}

.description_section_4 {
  font-weight: 500;
  font-family: var(--font-relaway);
  font-size: var(--size-description);
  color: #333333;
}

.title_section_4 svg {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  scale: 5;
  z-index: -1;
  opacity: 50%;
}

.carousel_clients {
  background: var(--color-2);
  margin: 0px 20px;
  height: 313px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.item_carousel_client p {
  padding: 20px 47px;
  max-height: 200px;
  overflow-y: auto;
  color: white;
  font-family: var(--font-relaway);
  font-style: italic;
  font-size: var(--size-description);
  font-style: italic;
  font-weight: 500;
}

.item_carousel_client h2 {
  padding: 0px 47px;
  height: 10%;
  font-family: var(--font-relaway);
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .item_carousel_client h2 {
    font-size: 20px;
    padding: 0px 10px;
  }
  .item_carousel_client p {
    padding: 0px 10px;
  }
}

@media screen and (max-width: 768px) {
  .carousel_clients {
    margin: 0px !important;
  }
}

.author_testimonial {
  position: relative;
}

.author_testimonial svg {
  position: absolute;
  right: 40px;
  top: -18px;
  width: 18px;
}
/* Video Carousel */

.item_carousel_video_container {
  width: 100%;
  height: 281px;
}

.item_carousel_video {
  position: relative;
  margin: auto;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  object-fit: cover;
  background: #000;
}

.item_carousel_video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item_carousel_video .playVideo {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: none;
  padding: 3;
  border-radius: 50%;
  color: white;
  background: var(--color-1);
  transition: background 300ms;
}

.item_carousel_video .playVideo:hover {
  background: var(--color-2);
}

/* ------------------------
  Section 5
-------------------- */
.section_5 {
  background: var(--color-5);
  padding: 70px 0px;
}

.text_section_5 h2 {
  font-weight: 700;
  font-family: var(--font-jost);
  font-size: var(--size-title);
  color: var(--color-1);
}

.text_section_5 h3 {
  font-weight: 500;
  font-family: var(--font-jost);
  font-size: var(--size-title);
  color: var(--color-1);
}

.text_section_5 p {
  font-weight: 500;
  font-family: var(--font-relaway);
  font-size: var(--size-description);
  color: #333333;
  text-align: justify;
}

@media screen and (max-width: 576px) {
  .text_section_5 p {
    text-align: center !important;
  }
}

.timeline {
  height: 740px;
  width: 100%;
  position: relative;
}

.timeline::before {
  content: "";
  width: 75%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  opacity: 30%;
  background: #6096ba;
}

.timeline-content {
  width: 25%;
  height: 299px;
  background: #f3f4f4;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: absolute;
  clip-path: polygon(
    5% 0%,
    90% 0%,
    100% 0%,
    100% 95%,
    95% 100%,
    0% 100%,
    0% 90%,
    0% 5%
  );
  transition: color 100ms ease-in;
}

.timeline-content:hover {
  background: var(--color-2);
  cursor: pointer;
}

.timieline-description {
  font-weight: 500;
  font-family: var(--font-inter);
  font-size: var(--size-description);
  overflow: auto;
  position: relative;
  max-height: 200px;
  transition: color 100ms ease-in;
}

.timeline-content:hover .timieline-description,
.timeline-content:hover .timieline-num,
.timeline-content:hover .timieline-title {
  color: white;
}

.timieline-num {
  width: 100%;
  height: 100%;
  font-size: 200px;
  font-family: var(--font-inter);
  font-weight: 900;
  color: var(--color-1);
  opacity: 10%;
  position: absolute;
  top: -10px;
  left: 25px;
  z-index: -1;
  transition: color 100ms ease-in;
}

.timieline-title {
  font-family: var(--font-plus);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-1);
  transition: color 100ms ease-in;
}

.timeline-content:nth-child(1) {
  bottom: 0;
  left: 0;
}

.timeline-content:nth-child(2) {
  top: 0;
  left: 25%;
}

.timeline-content:nth-child(3) {
  bottom: 0;
  left: 50%;
}

.timeline-content:nth-child(4) {
  top: 0;
  left: 75%;
}

.timeline-group-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 80px;
  width: 100%;
}

.timeline-group-icon .timeline-icon:nth-child(1) {
  width: 25%;
  height: 80px;
  position: absolute;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-group-icon .timeline-icon:nth-child(2) {
  width: 25%;
  height: 80px;
  position: absolute;
  left: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-group-icon .timeline-icon:nth-child(3) {
  width: 25%;
  height: 80px;
  position: absolute;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-group-icon .timeline-icon:nth-child(4) {
  width: 25%;
  height: 80px;
  position: absolute;
  left: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-group-icon .timeline-icon div {
  width: 80px;
  height: 80px;
  background: #274c77;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(
    20% 0%,
    90% 0%,
    100% 0%,
    100% 80%,
    80% 100%,
    0% 100%,
    0% 90%,
    0% 20%
  );
}

@media screen and (min-width: 900px) {
  .section_5 {
    min-height: calc(100vh - 122px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 900px) {
  .timeline {
    height: 1300px;
    min-width: auto;
  }
  .timeline::before {
    width: 5px;
    height: 75%;
    left: calc(0px + 37.5px);
    right: auto;
  }
  .timeline-content {
    width: calc(100% - 85px);
  }

  .timeline-group-icon .timeline-icon div {
    width: 60px;
    height: 60px;
  }

  .timeline-group-icon .timeline-icon div span svg {
    scale: 0.7;
  }

  .timeline-content:nth-child(1) {
    top: 0%;
    right: 0;
    left: auto;
  }

  .timeline-content:nth-child(2) {
    top: 25%;
    right: 0;
    left: auto;
  }

  .timeline-content:nth-child(3) {
    top: 50%;
    right: 0;
    left: auto;
  }

  .timeline-content:nth-child(4) {
    top: 75%;
    right: 0;
    left: auto;
  }

  .timeline-group-icon {
    width: 80px !important;
    height: 100% !important;
    left: 0;
    right: auto;
  }

  .timeline-group-icon .timeline-icon {
    width: 80px !important;
    height: 25% !important;
  }

  .timeline-group-icon .timeline-icon:nth-child(1) {
    top: 0;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(2) {
    top: 25%;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(3) {
    top: 50%;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(4) {
    top: 75%;
    left: auto;
  }
}

/* @media screen and (max-width: 600px) {
  .timeline::before {
    width: 5px;
    height: 100%;
  }
  .timeline-content {
    width: 40%;
  }

  .timeline-group-icon {
    width: 80px !important;
    height: 80px !important;
  }

  .timeline-group-icon .timeline-icon {
    width: 80px !important;
    height: 80px !important;
  }

  .timeline-group-icon .timeline-icon:nth-child(1) {
    top: 0;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(2) {
    top: 33.3%;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(3) {
    top: 66.6%;
    left: auto;
  }

  .timeline-group-icon .timeline-icon:nth-child(4) {
    bottom: 0;
    left: auto;
  }
} */

/* -------------------
  Section 6 Galery Projects
--------------------- */

.content-galery {
  padding-top: 70px;
  padding-bottom: 70px;
}

.content-galery h2 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  line-height: 27.8px;
  font-weight: 700;
  color: var(--color-1);
}

.content-galery h3 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  font-weight: 500;
  color: var(--color-1);
}

.gallery {
  height: 420px;
}
.gallery img {
  height: 420px;
  width: auto;
  background-size: cover;
  object-fit: cover;
}

.gallery-item {
  position: relative;
}

.gallery-item:hover .gallery-description {
  display: flex;
  opacity: 100%;
}

.gallery-description {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000a2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  opacity: 0%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-relaway);
  font-size: 20px;
  padding: 20px;
  color: #f3f4f4;
  transition: opacity 200ms ease-in;
  cursor: pointer;
}

/* ---------------------
  Section 7
-------------------- */

.section_7 {
  padding: 70px 0px;
}

.section_7 h2,
.section_7 h3 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
}

.section_7 h2 {
  font-weight: 700;
  color: var(--color-2);
}

.section_7 h3 {
  font-weight: 500;
  color: var(--color-1);
}
.box_values {
  height: 490px;
  width: 321px;
  border: 2px solid #274c77;
  border-radius: 6px;
  cursor: pointer;
  transition: all 100ms ease-in;
}

.box_values:hover {
  background: var(--color-2);
  transform: translateY(-5px);
}

.image_values {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background: #6096ba;
}

.image_values svg {
  width: 60px !important;
  height: 60px !important;
}

.title_values h2 {
  font-weight: 700;
  color: var(--color-1) !important;
  font-family: var(--font-jost);
  font-size: 25px;
}

.box_values:hover .title_values h2 {
  color: white !important;
}

.description_values {
  color: #333333;
  text-align: center;
  font-weight: 400;
  font-size: var(--size-description);
  font-family: var(--font-relaway);
  max-height: 250px;
  overflow-y: auto;
}

.box_values:hover .description_values {
  color: white !important;
}

/* --------------------
  Section 8 Acoordion
------------------ */

.section_8 {
  padding: 70px 0px;
}

.accordion-button {
  background-color: var(--color-1);
  color: white;
  padding-left: 47px;
  font-family: var(--font-relaway);
  font-weight: 600;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/acordion.svg");
  transform: rotate(-90deg);
  color: white;
  font-family: var(--font-relaway);
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-2);
  color: white;
}

.accordion-button::after {
  background-image: url("../img/acordion.svg");
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-item {
  /*   border: 1px solid #18cce74d;
 */
  margin-top: 5px;
}

.accordion-body {
  font-size: var(--size-description);
  font-weight: 400;
  font-family: var(--font-relaway);
}

.description_section_8 h2 {
  font-size: var(--size-title);
  font-family: var(--font-jost);
  font-weight: 600;
  color: var(--color-1);
}

.description_section_8 h5 {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-jost);
  color: #274c77;
  opacity: 99%;
  margin-top: 15px;
  line-height: 48px;
}

/* -----------------
  Footer
-------------------- */

.title_footer h2 {
  color: white;
  font-size: 60px;
  font-family: var(--font-poppins);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .title_footer h2 {
    font-size: 45px;
  }
}

.item_footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item_footer a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-family: var(--font-jost);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  transition: color 100ms ease-in;
}

.item_footer a:hover {
  color: var(--color-2);
}

.icon_footer svg {
  width: 28px;
  height: 28px;
  transition: color 100ms ease-in;
  fill: #fff;
}

.icon_footer:hover {
  color: var(--color-2);
}

.item_footer a:hover svg {
  color: var(--color-2);
  transition: 100ms;
}

.item_footer:hover span svg {
  color: var(--color-2);
  transition: 100ms;
}

.item_footer span {
  display: block;
}

.section_principla_footer {
  padding: 50px 0px;
  border-bottom: 3px solid #f3f4f4;
}

.copyright p {
  color: #f3f4f4;
  font-weight: 500;
  font-size: var(--size-description);
  transition: color 100ms ease-in;
}

.copyright {
  padding: 10px 0px;
  font-family: var(--font-spartan);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright:hover p {
  color: var(--color-2);
}
@media (max-width: 580px) {
  .item_footer .icon_footer svg {
    display: none;
  }
  .item_footer span {
    text-align: center;
  }
}
/* Btn Social Media */

.btn_social_media {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 50;
  opacity: 0%;
  visibility: hidden;
  background-color: var(--color-1);
  cursor: pointer;
  transition: opacity 300ms ease-out;
}

.btn_social_media2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  opacity: 0%;
  visibility: hidden;
  background-color: var(--color-1);
  cursor: pointer;
  transition: opacity 300ms ease-out;
}

.scroll-buttoms {
  opacity: 100%;
  width: auto;
  visibility: visible;
}

.btn-plus {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-1);
  color: rgb(214, 214, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 400ms;
}

.btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-1);
  color: rgb(214, 214, 214);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 400ms;
}

.btn-arrow a {
  text-decoration: none;
}

.btn-arrow a:hover {
  color: white;
}

.btn-plus:hover {
  color: white;
}

.btn-arrow:hover {
  color: white;
}

#btn {
  display: none;
}

.btn-email,
.btn-cell,
.btn-location,
.social_network {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-1);
  color: rgb(214, 214, 214);
  justify-content: center;
  align-items: center;
  transition: all 400ms;
}
.social_network svg {
  fill: #fff;
}

.btn-email a,
.btn-cell a,
.btn-location a,
.social_network a {
  color: rgb(214, 214, 214);
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.btn-email a img,
.btn-cell a img,
.btn-location a img,
.social_network a img {
  width: 39%;
  height: auto;
}

.btn-email a svg,
.btn-cell a svg,
.btn-location a svg,
.social_network a svg {
  width: 22px !important;
  height: 22px !important;
}

.btn-email a:hover,
.btn-cell a:hover,
.btn-location a:hover,
.social_network a:hover {
  color: white;
}

.btn_social_media:hover .btn-email {
  bottom: 40px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px;
}

.btn_social_media:hover .btn-location {
  bottom: 80px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px;
}

.btn_social_media:hover .btn-cell {
  bottom: 120px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px 0px 0px 0px;
}

.btn_social_media:hover .social_network:nth-child(4) {
  bottom: 160px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px 0px 0px 0px;
}

.btn_social_media:hover .social_network:nth-child(5) {
  bottom: 200px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px 0px 0px 0px;
}

.btn_social_media:hover .social_network:nth-child(6) {
  bottom: 240px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px 0px 0px 0px;
}

.btn_social_media:hover .social_network:nth-child(7) {
  bottom: 280px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px;
}

.btn_social_media:hover .social_network:nth-child(8) {
  bottom: 320px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px;
}

.btn_social_media:hover .social_network:nth-child(9) {
  bottom: 360px;
  display: flex;
  padding: 20px 0px;
  border-radius: 0px;
}

.btn-descrip {
  position: absolute;
  padding: 3px 6px;
  border-radius: 6px;
  background-color: var(--color-1);
  color: white;
  font-family: var(--font-relaway);
  font-weight: 700;
  right: 58px;
  top: 12px;
  display: block;
  width: 0px;
  opacity: 0%;
  visibility: hidden;
  transition: opacity 400ms ease-out;
  white-space: nowrap;
}

.btn-descrip:before {
  position: absolute;
  content: "";
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: calc(6px * 1.5) solid var(--color-1);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.btn-email:hover .btn-descrip,
.btn-email:hover .btn-descrip span,
.btn-cell:hover .btn-descrip,
.btn-cell:hover .btn-descrip span,
.btn-location:hover .btn-descrip,
.btn-location:hover .btn-descrip span,
.social_network:hover .btn-descrip,
.social_network:hover .btn-descrip span {
  opacity: 100%;
  width: auto;
  visibility: visible;
}

/* ----------------------
  Amelia
--------------------- */
.am-fs__main-heading-inner-title {
  font-size: var(--size-title) !important;
  color: var(--color-1) !important;
  font-family: var(--font-jost) !important;
  font-weight: 700 !important;
}

/* Header */
.amelia-v2-booking #amelia-container .am-fs__main-heading {
  box-shadow: 0 0px 0px transparent !important;
}

/* Footer */
.amelia-v2-booking #amelia-container .am-fs__main-footer {
  box-shadow: 0 0px 0px transparent !important;
}

.amelia-v2-booking #amelia-container .am-fs__main {
  background: white !important;
  border-radius: 0px !important;
}

.amelia-v2-booking #amelia-container .am-fs__main {
  z-index: 1;
}

.amelia-v2-booking
  #amelia-container
  .am-advsc.fc-theme-standard
  td.am-advsc__dayGridMonth-cell
  .fc-daygrid-day-frame {
  background: transparent !important;
  font-family: var(--font-plus) !important;
  font-weight: 500 !important;
  color: black !important;
}

.amelia-v2-booking #amelia-container .am-fs-sb {
  background: var(--color-1) !important;
  border-radius: 0px !important;
}

/* Dias disponible */

.amelia-v2-booking
  #amelia-container
  .am-advsc.fc-theme-standard
  td.am-advsc__dayGridMonth-cell
  .fc-daygrid-day-frame {
  border: none !important;
  color: var(--color-1) !important;
}

/* Inputs Mes y Ano */
.amelia-v2-booking #amelia-container .am-select .el-input__inner {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--font-jost) !important;
  color: var(--color-1) !important;
  font-size: var(--size-description) !important;
  font-weight: 600 !important;
}

/* botones de flechas */
.amelia-v2-booking #amelia-container .am-button-group > .am-button {
  border-radius: 50% !important;
  padding: 4px !important;
}

/* Boton Continuar */

.amelia-v2-booking #amelia-container .am-button.am-button--filled {
  border-radius: 0px !important;
  font-family: var(--font-poppins) !important;
  font-weight: 700 !important;
  background: var(--color-1) !important;
  color: white !important;
  border: none !important;
}

.amelia-v2-booking #amelia-container .am-button.am-button.is-disabled {
  opacity: 1 !important;
}

/* Barra */

.am-advsc__time-zone {
  display: none !important;
}

/* punto del data time */
.amelia-v2-booking #amelia-container .am-fs-sb__step-checker {
  width: 15px !important;
  height: 15px !important;
  background-color: rgba(0, 0, 0, 0.418) !important;
}

/* parrafos date y time */

.am-fs-sb__step-heading {
  font-family: var(--font-jost) !important;
}

/* icono data time */
.am-icon-date-time:before {
  content: url("../img/icon_dataTime.svg") !important;
}

.am-icon-user:before {
  content: url("../img/icon_user.svg") !important;
}

/* collapse Menu */
.am-fs-sb__menu-text {
  font-family: var(--font-jost) !important;
  color: white;
}

#ameliaModal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
  z-index: 9999;
  overflow-y: auto;
}

#ameliaModal > div {
  padding: 0px 20px;
  width: 100%;
  border-radius: 8px;
  max-width: 800px;
}

.amelia-v2-booking #amelia-container.am-fs__wrapper {
  margin: auto !important;
}

.amelia_hero {
  overflow: hidden;
  background: transparent;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amelia_hero .div {
  min-width: 800px;
  scale: 0.64;
}

.container-amelia {
  height: 200px;
  overflow-y: scroll;
}

.container-amelia .amelia_hero {
  margin: 0px !important;
}

@media screen and (max-width: 992px) {
  .amelia_hero {
    margin: 20px 0px;
    width: 100%;
  }

  .amelia_hero {
  }
}

@media screen and (max-width: 1200px) {
  .amelia_hero .div {
    min-width: auto;
    width: 100%;
    scale: 1;
  }
  .amelia_hero {
  }
}
@media screen and (min-width: 1200px) {
  .fc-daygrid-body-balanced {
    width: 100% !important;
    height: 100% !important;
  }
  .fc-scrollgrid-sync-table {
    width: 100% !important;
    height: 100% !important;
  }
}

.am-advsc__slots-item .am-advsc__slots-item__inner {
  background: white !important;
  color: #000 !important;
  font-family: var(--font-jost) !important;
  font-weight: 500 !important;
  border: 1px solid var(--color-1) !important;
}

.am-advsc__slots-item__selected .am-advsc__slots-item__inner {
  background: var(--color-1) !important;
  border: none !important;
  color: white !important;
}

.am-advsc__dayGridMonth-cell div div a {
  color: var(--color-2) !important;
}

.am-advsc__dayGridMonth-disabled div div a {
  color: #7d7d7d !important;
}

.am-advsc__dayGridMonth-selected div div a {
  color: var(--color-1) !important;
}

.fc-col-header {
  width: 100% !important;
}

@-moz-document url-prefix() {
  .description_values {
    /*Firefox*/
    scrollbar-color: var(--color-1) transparent !important;
    scrollbar-width: thin !important;
  }
}
.am-fs-dt__calendar::-webkit-scrollbar-track {
  background-color: var(--color-5) !important; /*color de la barra de fondo*/
}
.am-fs-dt__calendar::-webkit-scrollbar-thumb {
  background-color: var(--color-1) !important; /*color del manejador*/
}
.am-fs-dt__calendar::-webkit-scrollbar {
  width: 7px !important; /*ancho del scroll vertical*/
  height: 7px !important; /*alto del scroll horizontal*/
}

.btn_close_modal {
  position: absolute;
  right: 12px;
  top: calc(50% - 13px);
  width: 30px;
  height: 30px;
  background: var(--color-2);
  z-index: 2;
  cursor: pointer;
}

.btn_close_modal {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styles carousel */

.owl-carousel-js .owl-nav button {
  border: none;
  width: 50%;
  height: 100%;
  background: var(--color-1);
  transition: background 100ms ease-in-out;
  width: 60px;
  height: 52px;
}

.owl-carousel-js .owl-nav button:hover {
  background: var(--color-2);
}

.owl-carousel-js .owl-nav button:first-child {
  border-right: 1px solid white;
}

.owl-carousel-js .owl-nav button:last-child {
  border-left: 1px solid white;
}

.owl-carousel-js .owl-nav {
  width: 200px;
  margin: auto;
  background: none;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .owl-carousel-js .owl-nav {
    /* display: none; */
    position: absolute;
    width: 110%;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: -1;
  }

  .section_4 .owl-carousel-js .owl-nav {
    opacity: 0;
    transition: 400ms;
  }

  .section_4:hover .owl-carousel-js .owl-nav {
    opacity: 1;
    transition: 400ms;
  }
  .owl-nav svg {
    width: 22px;
  }
}
