@charset "UTF-8";

@font-face {
  font-family: "Mersad";
  src: url("../fonts/Mersad-Light.woff2") format("woff2"),
    url("../fonts/Mersad-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Mersad";
  src: url("../fonts/Mersad-Regular.woff2") format("woff2"),
    url("../fonts/Mersad-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mersad";
  src: url("../fonts/Mersad-Medium.woff2") format("woff2"),
    url("../fonts/Mersad-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Mersad";
  src: url("../fonts/Mersad-SemiBold.woff2") format("woff2"),
    url("../fonts/Mersad-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Mersad";
  src: url("../fonts/Mersad-Bold.woff2") format("woff2"),
    url("../fonts/Mersad-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

*,
*::before,
*::after,
:root {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0e469d;
  --blue-01: #00347f;
  --blue-02: #061d38;
  --grey-01: #d6d6d6;
  --grey-02: #7c7c7c;
  --orange: #ff4d1d;
  --animate-delay: 0.9s;
  --animate-duration: 800ms;
  --Mersad: "Mersad", Arial, Helvetica, sans-serif;
}

html {
  cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%23eee' r='4'/%3E%3C/svg%3E")
      3 3,
    auto;
}
html:not(html:hover) .cursor::after {
  opacity: 0;
  transform: scale(0);
}

/* Ocultar scrollbar */
html::-webkit-scrollbar {
  display: none;
}

html,
body {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
  color: white;
  font: normal normal 18px var(--Mersad);
  background: linear-gradient(
    180deg,
    #0e469d 0%,
    #00347f 27.38%,
    #061d38 73.87%
  );
  background-repeat: no-repeat;
}

ul,
li {
  list-style: none;
}

a {
  color: white;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--orange);
}

h1 {
  font: normal 600 3.75rem var(--Mersad);
}
h2 {
  font: normal 500 3rem var(--Mersad);
}
h3 {
  font: normal 300 2.5rem var(--Mersad);
}
h4 {
  font: normal 300 2.25rem var(--Mersad);
}
h5 {
  font: normal 300 2rem var(--Mersad);
}
h6 {
  font: normal 300 1.75rem var(--Mersad);
}
small {
  font: normal normal 1rem var(--Mersad);
}
strong {
  font: normal bold 1.125rem var(--Mersad);
}

/* PRELOADER */
#loading {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  display: flex;
  position: fixed;
  z-index: 10000000;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-02);
}

.loader .preload-fade {
  opacity: 0;
}

/* Butons */
.btn {
  border-radius: 3.125rem;
  padding: 0.938rem 1.75rem;
  cursor: inherit !important;
  font: normal bold 1.125rem var(--Mersad);
}

.btn-primary {
  background: var(--orange);
  border: 0.125rem solid var(--orange);
}

.btn-primary:hover {
  color: var(--orange);
  background: white;
  border: 0.125rem solid white;
}

.btn-primary:disabled {
  background-color: var(--orange);
  opacity: 0.7;
}

.btn-outline-primary {
  color: white;
  border: 0.125rem solid var(--orange);
}

.btn-outline-primary:hover {
  color: white;
  background: var(--orange);
  border: 0.125rem solid var(--orange);
}

.btn-link {
  color: white;
  position: relative;
  text-decoration: none;
}

.btn-link:hover {
  color: var(--orange);
}

.btn-link svg path,
.btn-link svg circle {
  transition: all 0.3s ease;
}

.btn-link:hover svg path,
.btn-link:hover svg circle {
  stroke: var(--orange);
}

.btn-link.orange {
  color: var(--orange);
}
.btn-link.orange:hover {
  color: white;
}
.btn-link.orange:hover svg path,
.btn-link.orange:hover svg circle {
  stroke: white;
}
.btn-close {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  padding: 15px;
  border: 2px solid var(--orange);
  border-radius: 100px;
  background: transparent
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF4D1D'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>")
    center/1em auto no-repeat;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* ===fin=== */

/* Form */
.form-control {
  color: white;
  background: none;
  padding: 0.938rem 1.75rem;
  border-radius: 3.125rem;
  border: 0.063rem solid var(--orange);
}

.form-control:focus {
  color: white;
  box-shadow: none;
  background: none;
  border: 0.063rem solid var(--orange);
}

textarea.form-control {
  border-radius: 1.25rem;
}
/* ===fin=== */

/* Utiles */
.pt-50 {
  padding-top: 3.125rem;
}
.pb-50 {
  padding-bottom: 3.125rem;
}
.pt-100 {
  padding-top: 6.25rem;
}
.pb-100 {
  padding-bottom: 6.25rem;
}
.mt-100 {
  margin-top: 6.25rem;
}
.mb-100 {
  margin-bottom: 6.25rem;
}
.fc-orange {
  color: var(--orange);
}
.fc-blue01 {
  color: var(--blue-01);
}
.fc-white {
  color: white;
}
hr.orange {
  opacity: 1;
  border-color: var(--orange);
}
.bg-blue {
  background-color: var(--blue-02);
}
/* ===fin=== */

/* Cursor */
.cursor {
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  position: fixed;
  width: var(--width);
  pointer-events: none;
  height: var(--height);
  will-change: transform;
  transform: translate(
    calc(var(--x) - var(--width) / 2),
    calc(var(--y) - var(--height) / 2)
  );
  transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms height cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms transform cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}

.cursor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  border: 0.125rem solid var(--orange);
  opacity: var(--scale);
  -webkit-transform: scale(var(--scale));
  transform: scale(var(--scale));
  transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1),
    300ms transform cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1);
}
/* ===fin=== */

/* Bullets navigator */
#navigation_circle {
  transform: translateY(-130px);
}
/* End bullets navigator */

/* menu */
#navbar {
  z-index: 11;
  width: 100%;
  height: 6.5rem;
  position: fixed;
  padding: 1.25rem 0;
  transition: all 0.5s ease-in-out;
}

#navbar .input-toggler {
  display: none;
}

#navbar .menu-toggler {
  width: 4rem;
  z-index: 100;
  height: 4rem;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: inherit !important;
}

.menu-toggler-line {
  width: 50%;
  height: 0.188rem;
  position: relative;
  background: white;
  margin-bottom: 0.625rem;
  transition: all 0.4s ease-out;
}

.input-toggler:checked ~ .menu-toggler .menu-toggler-line {
  top: 6px;
  transform: rotate(45deg);
}

.input-toggler:checked ~ .menu-toggler .menu-toggler-line:nth-child(2) {
  display: none;
}

.input-toggler:checked ~ .menu-toggler .menu-toggler-line:nth-child(3) {
  top: -6px;
  transform: rotate(135deg);
}

#menu-conteiner {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.4s ease-out;
}

#menu-conteiner.checked {
  top: 0;
  opacity: 1;
  width: 100%;
  z-index: 10;
  height: 100vh;
  display: flex;
  position: fixed;
  padding-left: 15%;
  align-items: center;
  justify-content: start;
  transform: translateX(0%);
  background: url(../img/background/bg-menu.jpg) #061d38 center center no-repeat;
  background-size: cover;
}

#menu-conteiner img {
  left: 50%;
  position: absolute;
  transform: translate(-50%, -0.75rem);
}

#menu-conteiner .btn-link {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  text-align: left;
}

#bolamenu {
  position: absolute;
  left: 0;
  right: 0;
}

.menu-links {
  z-index: 50;
}

/* ===fin=== */

/* Section Hero & Inelligent Feeding*/

/* Cursor */

#hero {
  cursor: url("../img/icons/icon-play.svg"), auto;
}
/* Fin Cursor */

#hero .img {
  left: 50%;
  bottom: 0;
  position: absolute;
  transform: translate(-50%, 3.313rem);
}

#hero hr {
  opacity: 1;
  width: 5.625rem;
}

body .scroll {
  right: 3%;
  z-index: 3;
  bottom: 50%;
  position: fixed;
  transform: translate(0, 50%);
}

#bullet1,
#bullet2,
#bullet3,
#bullet4,
#bullet5,
#bullet6 {
  fill: transparent;
  transition: opacity 0.3s;
}

#bullet1:hover,
#bullet2:hover,
#bullet3:hover,
#bullet4:hover,
#bullet5:hover,
#bullet6:hover {
  fill: var(--orange);
  opacity: 0.2;
}

.scroll .active {
  fill: var(--orange) !important;
}

#pre-intelligent-feeding {
  position: relative;
}
#pre-intelligent-feeding .img {
  top: 0;
  left: 25%;
  position: absolute;
  mix-blend-mode: overlay;
  transform: translate(-50%, -6.25rem);
  z-index: 2;
}

#pre-intelligent-feeding .img-01 {
  bottom: 0;
  left: 75%;
  position: absolute;
  mix-blend-mode: soft-light;
  transform: translate(-50%, 3.125rem);
}

#hero,
#intelligent-feeding {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-miscelanea {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -43px);
}

#hero .bg,
#intelligent-feeding .bg {
  top: 50%;
  left: 50%;
  width: 100.1%;
  height: 100.1%;
  object-fit: cover;
  position: absolute;
  transform: translate(-50%, -50%);
}

.modal-body {
  padding: 5px;
  border-radius: 5px;
}
.modal-body iframe {
  border-radius: 5px;
  display: block;
}
.play-modal {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ===fin=== */

/* Section About */
#about,
#no-found {
  height: 100vh;
  position: relative;
  background: url(../img/background/bg-about.png) left top no-repeat;
  background-size: 40vw;
}

#about .bg,
#no-found .bg {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 30vw;
  position: absolute;
}

#about span:first-child::before {
  content: url(../img/elements/img-02.svg);
  right: -1.25rem;
  position: absolute;
  transform: translate(100%, 0);
}

#about span:last-child:after {
  content: "";
  left: 0;
  bottom: -3.75rem;
  position: absolute;
}

#about span:last-child:before {
  content: "";
  left: 0;
  bottom: -7.5rem;
  position: absolute;
}

#about .img {
  top: -1.875rem;
  left: -2.5rem;
  position: absolute;
}

#about dotlottie-player,
#no-found dotlottie-player {
  right: -25%;
  z-index: 1;
  position: absolute;
  -webkit-animation: mover 9s infinite forwards ease-in-out;
  animation: mover 9s infinite forwards ease-in-out;
}
/* 
@-webkit-keyframes mover {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-500px);
    }
} */
@keyframes mover {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-125vw);
  }
}

/* ===fin=== */

/* Manifiesto */
#manifiesto .comillas {
  font-size: 12.5rem;
  margin-bottom: -8.75rem;
}

#manifiesto .img {
  margin-top: -4.375rem;
  mix-blend-mode: soft-light;
}

#manifiesto hr {
  opacity: 1;
}

#manifiesto hr::after {
  content: "\25CF";
  top: 50%;
  right: 50%;
  position: absolute;
  font-size: 4.375rem;
  color: var(--orange);
  transform: translate(-50%, -50%);
}
/* ===fin=== */

/* Contact Us */
#contact-us {
  background: url(../img/background/bg-circulo.svg) left 20rem bottom no-repeat,
    url(../img/background/bg-degrade-orange.svg) right bottom no-repeat;
  mix-blend-mode: lighten;
  background-size: 40rem;
}

#contact-us h3 {
  font-size: 4.375rem;
  line-height: 3.75rem;
}

#contact-us a {
  left: 20.625rem;
  bottom: 0.625rem;
  position: absolute;
}

/* Contact Page */
#contacto {
  padding: 15.625rem 0 6.25rem 0;
  background: url(../img/background/bg-contacto.jpg) center center no-repeat;
  background-size: cover;
}

#contact_form {
  font-size: 16px;
}
#contact_form svg {
  transform: scale(1.5);
}

#contact_form svg #circle {
  transform: translateX(0px);
  animation: animate 3s forwards;
}

@keyframes animate {
  100% {
    transform: translateX(100px);
  }
}

/* ===fin=== */

/* Aisberg Technology Page */
/* Tecnologia */
#tecnologia {
  height: 68vh;
  position: relative;
  background: url(../img/background/aisberg-hero.jpg) left top no-repeat;
  background-size: cover;
  min-height: 375.81px;
}

#tecnologia .title-mobile .img {
  padding-left: 3rem;
  transform: scale();
}

#tecnologia .title {
  margin-top: 9rem;
  margin-left: 9rem;
}

#tecnologia span:first-child::before {
  content: url(../img/elements/img-13.svg);
  right: -1.25rem;
  position: absolute;
  transform: translate(100%, 0);
}

#tecnologia .img {
  top: 7rem;
  left: 6.5rem;
  position: absolute;
}

#tecnologia .scroll {
  right: 3%;
  z-index: 3;
  bottom: 50%;
  position: fixed;
  transform: translate(0, 50%);
}

/* ===fin=== */

/* Soluciones*/
#soluciones {
  height: 110rem;
  position: relative;
  
background: linear-gradient(180deg, #0E469D 0%, #00347F 27.38%, #061D38 73.87%);
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-size: cover;
}

#soluciones .bg {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 30vw;
  position: absolute;
}

#soluciones hr {
  width: 35rem;
}

.img-gif {
  width: 4.438rem;
}

#soluciones p {
  margin-top: -5rem;
  width: 41%;
}

#soluciones .semiesf {
  right: 0;
  top: 16.5rem;
}

#soluciones .cardContainer {
  margin-top: -13rem;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
}

#soluciones .card {
  border: 0.188rem solid var(--orange);
  background: none;
  width: 32.5rem;
  height: 27.688rem;
  border-radius: 0.9rem;
  color: var(--orange);
  position: relative;
  transition: all 0.2s;
  justify-content: center;
  align-items: center;
}

#soluciones .card h3 {
  z-index: 1;
  transition: transform 0.5s ease-in-out;
}

#soluciones .card img {
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 0.9rem;
  top: 0;
  opacity: 0;
  transition: all 1s ease-in-out;
}

#soluciones .card:hover img {
  opacity: 1;
}

#soluciones .card:hover {
  color: var(--grey-01);
  transition: all 0.5s ease;
  border-color: transparent;
}

#soluciones .card:hover h3 {
  transform: translateY(9.5rem);
  transition: transform 0.5s ease-in-out;
}

#soluciones button {
  opacity: 0;
}

.soluciones-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 11;
  transition: opacity 0.6s;
}

.soluciones-modal-container {
  width: 100%;
  margin: auto;
  background-color: #fff;
  display: flex;
  gap: 1rem;
  height: 100vh;
}

.soluciones-modal--show {
  opacity: 1;
  pointer-events: unset;
  transition: opacity 0.6s;
}

.modal-img-container {
  width: 50%;
}

.modal-text-container {
  padding: 2rem;
  width: 50%;
  overflow: auto;
}

.modal-text-container p {
  color: var(--grey-02);
  padding-right: 4rem;
  font-size: 18px;
}

.soluciones-modal-close {
  z-index: 20;
}

.button-down {
  z-index: 9999;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img-container .img-grafico {
  width: 80%;
  height: auto;
}

.modal1v2 {
  background: url("../../assets/img/elements/img-modal-1.2.png");
  background-size: cover;
}

#button-down {
  width: 50px;
  animation: animate 1.5s linear infinite;
}

#button-up {
  width: 50px;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(15%);
  }
}
/* ===fin=== */

/* Desarrollo */
#desarrollo {
  position: relative;
  background: white url(../img/background/bg-semi-esfera.png) left center
    no-repeat;
  background-size: 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

#desarrollo .semi-circulo {
  visibility: hidden;
}

#desarrollo .text {
  border-bottom: 0.063rem solid var(--orange);
}

#desarrollo .carousel-inner {
  width: 66.188rem;
  height: 50.563rem;
  background-color: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(0.125rem);
}

#desarrollo .fish1 {
  bottom: 8rem;
  right: 7rem;
}

#desarrollo .fish2 {
  top: 23rem;
  right: 20rem;
}

#desarrollo .owl-stage {
  padding: 3.5rem;
  align-items: center;
  color: var(--blue-02);
  display: flex;
  gap: 1.5rem;
}

.owl-item{
  margin: 0 auto;
}

#desarrollo .owl-stage .item { 
  width: 70%;
  margin: 0 auto;
  padding: 4rem;
  background-color: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(0.125rem);
}

.item-img-container {
  padding-right: 15px;
}
.item-img-container,
.item-text-container {
  width: 50%;
}

.owl-carousel .item .img-slide {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.owl-carousel .owl-stage .title-slide {
  z-index: 1;
  position: relative;
}

.owl-carousel .owl-stage .title-slide::after {
  content: "";
  background: url(../img/elements/img-01.svg) no-repeat;
  width: 141px;
  height: 99px;
  background-size: contain;
  position: absolute;
  z-index: -1;
  left: -7%;
  top: -21px;
}

.owl-carousel .item p {
  font-size: 16px;
}

.owl-nav {
  display: flex;
  gap: 45vw;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  margin-top: -11rem;
}

.owl-next, .owl-prev{
    
    background: transparent;
    border: none;

}

.nav-button > img {
  width: 4rem;
}

#desarrollo .text .imgPlus {
  width: 2.5rem;
}

/* ===fin=== */

footer {
  background: var(--blue-01);
}

footer span.orange {
  left: 3.438rem;
  z-index: 1;
  width: 3.438rem;
  height: 3.438rem;
  position: absolute;
  border-radius: 50%;
  border: 0.125rem solid var(--orange);
  animation: animacion 9s infinite forwards;
}

@keyframes animacion {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(31.25rem);
  }
  100% {
    transform: translateX(0);
  }
}

.pulse {
  border-radius: 50%;
  margin: 1rem;
  height: 12.5rem;
  width: 12.5rem;
  transform: scale(1);
  animation: pulse-black 2s infinite;
  box-shadow: 0 0 0 0 var(--orange);
}

@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 29, 29, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 29, 29, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 29, 29, 0);
  }
}


/* NOSOTROS */
.hideme{
  opacity: 0;
}

.select-menu{
  width: auto;
  cursor: pointer;
  margin-right: 21px;
  background-image: url(../img/elements/img-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right;

}

.select-menu .select{
  padding: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select-menu .option-list{
  position: absolute;
  width: 100%;
  border-radius: 6px;
  margin-top: -10px;
  padding: 0 20px;
  overflow-y: auto;
  transition: .4s linear .2s;
  height: 0;
}

.select-menu .option-list.active{
  height: auto;
}

.select-menu .select img{
  width: 30px !important;
  height: 30px !important;
}

#es img, #en img{
  width: 30px !important;
  height: 30px !important;
}

.select-menu .option-list .option{
  padding: 8px 0;
  transition: .3s ease-in-out;
}

#scroll-section{
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

#scroll-section::-webkit-scrollbar{
  display: none;
}

#us-head-section{
  /* max-height: 65vh; */
 
  padding-top: 34px;
  padding-bottom: 14px;
  scroll-snap-align: center;
  background: url(../img/background/bg-contacto.jpg) center center no-repeat;
  background-size: cover;
}


#us-head-section .container-fluid{
  height: inherit;
}

#us-head-section .container-fluid .row{
  height: inherit;
 
}

#us-head-section .container-fluid .row .first-col, #us-head-section .container-fluid .row .second-col{
  height: inherit;
}

#us-head-section .container-fluid .row .first-col{
  justify-content: flex-end;
}

#us-head-section .img{
  right: 11rem;
  margin-top: -25px;
  position: absolute;
}

#us-head-section #us-head-main-img{
  position: relative;
  right: 0;
  top: 0;
  width: 100%;

  object-fit: contain;
}

/* #manifesto{
  max-height: 45vh;
  height: 45vh;
  overflow-y: scroll;
} */

#manifesto{
  max-height: 100vh;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-snap-align: center;
}

#manifesto::-webkit-scrollbar {
  display: none;
}

#manifesto .container{
  height: inherit;
}

#manifesto .container .row{
  height: inherit;
}

#manifesto .container .row .snap-scroll{
  height: 100vh;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* #manifesto .container .row .first-column{
  height: 45vh;
}

#manifesto .container .row .last-column{
  padding: 5rem 5rem;
} */

#team{
  background-color: white;
  padding-top: 83px;
  padding-bottom: 92px;
}

#team .container{
  padding: 0 7.75rem;
}

#team .first-row{
  margin-bottom: 2.188rem;
}

#team .first-row .col-12{
  margin-bottom: 33px;
}

#team .first-row .col-12 h1{
  font-size: 60px;
  line-height: 60px;
  color: var(--blue-02);
}

#team .first-row .col-12 p{
  color: var(--grey-02);
  max-width: 525px;
}


#team .second-row .img-container{
  width: fit-content;
  border-radius: 50%;
  position: absolute;
  margin-top: -13rem;
  width: 20vw;
  height: 20vw;
  max-width: 318px;
  max-height: 318px;
  overflow: hidden;
}

#team .second-row .img-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30%
}

.description-container2{
  background-color: var(--blue-01);
  min-width: 310px;
  min-height: 310px;
}

#team .second-row .description-container .text-center{
  position: relative;
  z-index: 1;
}
#team .second-row .description-container{
  height: 46.81vw;
  width: 46.81vw;
  max-width: 674px;
  max-height: 674px;
  background-color: var(--blue-01);
}

#team .second-row .description-container p{
  max-width: 65%;
  font-size: 14px;
}

.arrow-description{
  opacity: 1;
  animation: titile 1s ease infinite alternate;
}

.arrow-up{
transform: rotate(180deg);
}

.button-change-text{
  bottom: 0;
}

@keyframes titile {
  to{
    opacity: 0;
  }
}

#team .second-row .description-container p span{
  color: var(--orange);
  margin-bottom: 5px;
}

#team .second-row .button-container-col .button-column{
  flex-direction: column;
  align-items: center;
  align-content: center;
}

.btn-outline-cstm{
  border: 1px solid var(--blue-01);
  color: var(--blue-01);
  background-color: transparent;
}

.btn-outline-cstm:focus, .btn-outline-cstm.active{
  border: 1px solid var(--orange);
  color: white;
  background-color: var(--orange);
}

#team .second-row button{
  width: 17.5vw;
  height: 17.5vw;
  max-width: 252px;
  max-height: 252px;
  font-size: 2rem;
  line-height: 2.25rem;
}

#team .second-row button:not(:first-child){
  margin-top:20px;
}


#clients{
  padding-top: 280px;
  padding-bottom: 280px;
  padding-left: 100px;
  padding-right: 100px;
  background: url(../img/us-images/cuarto-de-circulo-16-1.png);
  background-repeat: no-repeat;
  overflow-y: hidden;
}

#clients #orange-background{
  position: absolute;
  z-index: -1;
  right: 0;
  margin-top: -13px;
}

#clients .main-image{
  position: absolute;
  left: 0;
  margin-top: -17.51rem;
}

#clients .title-col h2{
  color: var(--orange);
}

#clients .timeline{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0px;
}

#clients .li{
  transition: all 100ms ease-in;
}

#clients #clients-row-desk .li{
  width: 16.66%;
}

#clients #clients-row-desk .li#first-li-image img{
  margin-bottom: -165px;
  margin-left: -15%;
}

#clients #timeline .li:nth-child(2) .timestamp{
  margin-right: 26px;
}

#clients #timeline .li:nth-child(3) .timestamp{
  margin-right: 49px;
}

#clients #timeline .li:nth-child(5) .timestamp{
  margin-right: -14px;
  margin-left: 0px;
}

#clients #timeline .li:nth-child(6) .timestamp img{
  width: auto;
}

#clients .timestamp{
  padding: 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
}
#clients .timestamp img{
  max-height: 150px;
  width: 100%;
  opacity: .5;
}
#clients .status{
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--orange);
  position: relative;
  transition: all 100ms ease-in  ;
}
#clients h4:before{

  content: '';
  width: 25px;
  height: 25px;
  background-color: transparent;
  border-radius: 25px;
  border: 1px solid transparent;
  position: absolute;
  top: -15px;
  left: 42%;
  transition: all 100ms ease-in ;
}

#clients .li#first-li-image .timestamp img{
  margin-bottom: -161px;
}

#clients .li.complete .timestamp img{
  opacity: 1;
}

#clients .li.complete .status{
  border-top: 1px solid var(--orange);
}
#clients .li.complete .status h4:before{
  background-color: var(--orange);
  border: none;
  transition: all 200ms ease-in ;
}

#clients .li.complete h4{
  color: var(--orange);
}

#clients #partners-row-desk .list-item-pr img{
  position: relative;
  margin-bottom: -300px;
  width: 140px;
}

#clients #partners-row-desk .li{
  width:30%
}

#clients #partners-row-desk .li#first-li-image{
  width: 10%;
}

#clients #partners-row-desk .li#first-li-image img{
  width: 100%;
  margin-bottom: -165px;
  margin-left: 26%;
}

#clients #partners-row-desk .li:nth-child(2) .timestamp{
  padding: 0 40px;
}

#clients #partners-row-desk .li:nth-child(3) .timestamp{
  padding: 0 30px;
}

#clients #partners-row-desk .li:nth-child(4) .timestamp{
  padding: 0 30px;
}

#clients #partners-row-desk .li:nth-child(4) .timestamp img{
  width: 121px;
  margin-bottom: -325px;
}


#backup{
  background-color: white;
  padding-top: 212px;
  padding-bottom: 180px;
}

#backup .first-column #first-image{
  position: absolute;
  mix-blend-mode: multiply;
  margin-top: -5.313rem;
  margin-left: 4.875rem;
}

#backup .first-column #main-image{
  object-fit: contain;
  width: 100%;
}

#backup .first-column #last-image{
  float: right;
  margin-top: -32px;
  margin-right: -15px;
  position: relative;
}

#backup .second-column{
  height: fit-content;
}

#backup .second-column .text-container{
  margin-left: 40px;
  max-width: 430px;
}

#backup .second-column .text-container img{
  width: 76px;
  float: right;
  margin-top: -101px;
}

#backup .second-column .text-container h1{
  color: var(--blue-01);
}

#backup .second-column .text-container p{
  color: var(--grey-02);
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 30px;
}

@media(max-width:1439px){
  #team .container{
    padding: 0 3%;
  }
}

@media(max-width:1130px){
  #team .second-row .description-container p{
    max-width: 95%;
  }

  #backup .first-column #first-image{
    margin-left: 1rem;
    width: auto;
  }
}

@media(min-width:992px) and (max-width:1200px){
  #team .second-row .description-container{
    height: 70vw;
    width: 70vw;
  }

  #team .second-row .img-container{
    margin-top: -6rem;
  }
}

@media(max-width:991px){

  #scroll-section{
    height: auto;
    overflow-y: unset;
    scroll-snap-type: unset;
  }

  /* #us-head-section{
    height: 130.3vw;
    max-height: 130.3vw;
  }

  #us-head-section .container-fluid{
    height: -webkit-fill-available;
  }

  #us-head-section .container-fluid .row{
    margin-top: 5%;
  }

  #us-head-section .container-fluid .row .first-col{
    height: 75%;
    justify-content: center;
  }

  #us-head-section .img{
    right: unset;
    margin-left: -200px;
  }

  #us-head-section .container-fluid .row .second-col{
    padding-left: 0px;
    height: fit-content;
  } */

  #manifesto{
    /* height: 92.5vw; */
    height: 45vh;
  }

  #manifesto .container .row .first-column{
    /* height: 92.5vw;
    max-height: 45vh; */
    height: 45vh;
    margin-bottom: 1rem;
  }

  #manifesto .container .row .snap-scroll:not(:first-child){
    height: auto;
  }

  #manifesto .container .row .snap-scroll{
    scroll-snap-align: unset;
  }

  #manifesto .container .row .last-column{
    padding: 1rem;
  }

  #team .first-row{
    margin-bottom: 7rem;
  }

  #team .first-row .col-12 h1{
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 27px;
    text-align: center;
  }

  #team .first-row .col-12 p{
    max-width: unset;
    font-size: 24px;
    line-height: 28px;
  }

  #team .second-row .img-container{
    margin-top: -5rem;
    width: 30vw;
    height: 30vw;
    position: relative;
    height: 30vw;
    z-index: 2;
    max-width: 250px;
    max-height: 250px;
  }

  #team .second-row .img-container img{
    width: 100%;
  }

  #team .second-row .description-container{
    width: 90.58vw;
    height: 90.58vw;
  }

  #team .second-row .description-container p{
    font-size: 14px;
    max-width: 86%;
  }

  #team .second-row .description-container p span{
    font-size: 19px;
  }

  #team .second-row .button-container-col{
    overflow-x: scroll;
    margin-top: 43px;
    padding-bottom: 25px;
  }

  #team .second-row .button-container-col .button-column{
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: scroll;
    max-width: min-content;
    width: fit-content;
    position: relative;
    z-index: 1;
  }

  #team .second-row button{
    width: 31vw;
    height: 31vw;
    font-size: 25px;
    line-height: 25px;
    max-width: unset;
    max-height: unset;
  }

  #team .second-row button:not(:first-child){
    margin-top: 0;
    margin-left: 14px;
  }

  #clients{
    padding: 77px 25px 102px;
    background-size: contain;
    background-color: var(--blue-02);
  }

  #clients .mobile-row{
    position: relative;
  }

  #clients .title-col h2{
    text-align: center;
    margin-bottom: 33px;
  }

  #clients .title-col h2:nth-child(1){
    margin-top: 70px;
  }

  #clients .first-col-mobile{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #clients .first-col-mobile img:nth-child(2){
    margin-bottom: 33px;
  }

  #clients .first-col-mobile img:nth-child(3){
    margin-bottom: -10px;
  }


  #clients .second-col-mobile{
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  #clients .second-col-mobile img:not(:first-child):not(:last-child){
    margin-bottom: 83px;
    margin-top: 28px;
  }

  #backup{
    padding-top: 53px;
  }

  #backup .container{
    padding: 0 1rem;
  }

  #backup .first-column #first-image{
    width: 26.87vw;
    margin-top: -45px;
    margin-left: 0;
  }

  #backup .first-column #last-image{
    width: 18.284vw;
    margin-top: -14px;
    margin-right: 10px;
  }

  #backup .second-column .text-container{
    margin-left: 0px;
    max-width: unset;
  }

  #backup .second-column .text-container h1{
    font-size: 1.5rem;
    text-align: center;
  }

  #backup .second-column .text-container p{
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    margin-bottom: 76px;
  }
}

@media(min-width:576px) and (max-width:767px){
  #team .container{
    max-width: 100%;
  }
}

@media(max-width:767px){
  #us-head-section .img{
    width: 95px;
    margin-left: -125px;
    margin-top: -21px;
  }

  #us-head-section{
    padding-top: 15vh;
  }

  #us-head-main-img{
    padding: 35px  0;
  }



  #team .first-row .col-12 h1{
    font-size: 24px;
    line-height: 24px;
  }

  #team .first-row .col-12 p{
    font-size: 16px;
    line-height: 20px;
  }

  #team .second-row .img-container img{
    width: 38.8vw;
  }

  #team .second-row .description-container p{
    font-size: 12px;
  }

  #team .second-row .description-container p span{
    font-size: 15px;
  }

  #team .second-row button{
    width: 31vw;
    height: 31vw;
    font-size: 14px;
    line-height: 14px;
    max-width: unset;
    max-height: unset;
  }


}

/* FIN NOSOTROS */

/* INICIO BLOG Y FILTRO BLOG */

#blog-head{
  background-image: url(../img/blog-images/fondo-cueva-16.png);
  background-position: center;
  background-size: cover;
}

#blog-head .container{
  height: 61.5vh;
  padding-left: 7.5rem;
  padding-right: 7rem;
}

#blog-head .container .row{
  height: inherit;
}

#blog-head .container .row .first-column img{
  margin-top: -34px;
}

#blog-head .container .row .first-column h1{
  margin-left: 2.5rem;
  font-size: 48px;
  line-height: 55px;
}

#blog-head .container .row .second-column{
  padding: 0;
}

#blog-head .container .row .last-column img{
  float: right;
  margin-top: -140px;
  mix-blend-mode: overlay;
}

#blogs-result{
  background-color: white;
  padding: 8.938rem 8.75rem 4.375rem 8.75rem;
}

#blogs-result .card:not(:nth-child(1)):not(:nth-child(2)){
  margin-top:12px;
}

#blogs-result .card{
  margin-bottom: 24px;
  border: 0;
  box-shadow: 0px 5px 11px -1px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 5px 11px -1px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 5px 11px -1px rgba(0,0,0,0.1);
}

#blogs-result .card #card-main-img-2,
#blogs-result .card .card-main-img-2
{
  object-position: left;
  height: auto;
  object-fit: cover;
}

#blogs-result .card #card-main-img-1{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: cover;
  height: 13.9vw;
}
#blogs-result .card #card-main-img{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: cover;
  height: 13.9vw;
}

#blogs-result .card .card-meta{
  color: var(--blue);
  padding: 1.1rem 27px;
}

#blogs-result .card .card-meta .category-meta{
  /* font-size: 8px; */
  font-size: 10px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 0;
}

#blogs-result .card .card-meta .date-meta{
  line-height: 20px;
  /* font-size: 9px; */
  font-size: 10px;
  margin-bottom: 0;
  margin-left: 10px;
}

#blogs-result .card .card-meta .date-meta img{
  /* margin-top: -3px; */
  margin-top: -5px;
  margin-right: 3px;
}

#blogs-result .card .card-body{
  padding: 0 1.688rem 2.688rem;
}

#blogs-result .card .card-body .card-title{
  font-size: 16px;
  line-height: 20px;
  color: var(--orange);
  margin-bottom: 16px;
  height: 40px;
  overflow-y: hidden;
}

#blogs-result .card .card-body .card-text{
  font-size: 12px;
  line-height: 20px;
  color: var(--blue-02);
  margin-bottom: 24px;
  text-align: justify;
  height: 80px;
  overflow-y: hidden ;
}

#blogs-result .card .card-body a{
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  color: var(--orange);
}

#blogs-result .card .card-body a:hover{
  text-decoration: underline;
}

#blogs-result .card .card-body a img{
  margin-top: -4px;
}

#blogs-result #blog-image{
  position: absolute;
  right: 0;
  margin-top: -9.5rem;
  width: 150px;
}

#blogs-result .filter-title{
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 42px;
}

#blogs-result .search-container ::placeholder{
  color: var(--blue-01);
}

#blogs-result .search-container input{
  border: 1px solid var(--orange);
  padding: 15px 0px 12px 21px;
  font-size: 16px;
  line-height: 20px;
}

#blogs-result .search-container button{
  padding: 0.938rem 1.75rem;
  margin-left: 10px;
}

#blogs-result hr{
  background-color: var(--blue);
  border-color: var(--blue);
  opacity: 1;
  margin: 50px 0 60px;
}

#blogs-result .categories-container .filter-cat-container{
  padding-bottom: 2.438rem;
}


#blogs-result .categories-container .filter-cat-container a, #blogs-result .tags-container p{
  color: var(--blue-01);
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
}

#blogs-result .tags-container p a{
  color: var(--blue-01);
  margin-right: 2px;
  margin-left: 2px;
}

#blogs-result .button-col{
  padding-top: 5.125rem;
}

#filter-page #blog-head .container .row .first-column h1{
  margin-left: 2rem;
}

#filter-page #blog-head .container .row .first-column #line-image{
  margin-bottom: -25px;
  margin-left: 1rem;
}

#filter-page #blogs-result{
  padding-top: 6.625rem;
}

#filter-page #blogs-result .breadcrums p{
  font-size: 1rem;
  line-height: 20px;
  color: var(--blue-01);
  opacity: 1;
}

#filter-page #blogs-result .breadcrums p a{
  color: var(--blue-01);
  opacity: .5;
}

@media(min-width:991px) and (max-width:1349px){
  #blogs-result .search-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #blogs-result .filter-title{
    width: 100%;
  }

  #blogs-result .search-container input{
    width: 100%;
  }

  #blogs-result .search-container button{
    margin-left: 0;
    margin-top: 15px;
  }
}

@media(min-width:992px) and (max-width:1409px){

  #blog-head .second-column img{
    margin-left: 19%;
  }

  #blogs-result{
    padding-left: 5rem;
  }
}

@media(max-width:991px){
  #blogs-result{
    padding: 5.103rem 1rem;
  }

  #blogs-result .filter-title-container .filter-title{
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  #blogs-result .button-col{
    padding-top: 2.75rem;
  }

  #blogs-result .card .card-meta .comment-meta{
    /* font-size: 9px; */
    font-size: 10px;
    margin-left: 10px;
    margin-top: 3px;
  }

  #blogs-result .card .card-meta .comment-meta img{
    width: 13px;
    /* margin-bottom: 2px; */
    margin-top: -4px;
  }

  #blogs-result .col-mobile{
    margin-bottom: 95px;
  }

  #filter-page #blog-head .container{
    padding-left: 3rem;
    padding-right: 3rem;
  }

}

@media(max-width:767px){

  #blog-head .container{
    height: 353px;
    padding: 1rem;
  }

  #blog-head .container .first-column{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #blog-head .container .row .first-column img{
    width: 90px;
    margin-top: -20px;
    margin-left: -5rem;
  }

  #blog-head .container .row .first-column img#line-mobile{
    width: 72px;
    margin-top: -7px;
    margin-left: 20px;
  }

  #blog-head .container .row .first-column h1{
    font-size: 2.25rem;
    line-height: 2.25rem;
  }

  #blogs-result .container{
    padding: 0;
  }

  #blogs-result .filter-title-container .filter-title{
    font-size: 1.5rem;
    line-height: 2rem;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  #blogs-result .mobile-row{
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  #blogs-result .card .card-meta{
    padding: 1.188rem 1rem 0;
  }

  #blogs-result .card .card-body{
    padding: 0 1rem 1.625rem;
  }

  #blogs-result .card .card-body .card-title{
    font-size: 1.125rem;
    line-height: 1.375rem;
    max-height: 1.25rem;
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--blue);
  }

  #blogs-result .card .card-body .card-text{
    font-size: 0.75rem;
    line-height: 0.875rem;
    max-height: 2.6rem;
    overflow: hidden;
    margin-bottom: 11px;
  }

  #blogs-result .card .card-body a{
    font-size: 1rem;
    font-weight: normal;
  }

  #blogs-result .card .card-body a img{
    width: 15px;
    margin-top: -5px;
  }

  #filter-page #blog-head .container .row .first-column img{
    margin-top: -4rem;
    margin-left: -7.5rem;
  }

  #filter-page #blog-head .container .row .first-column h1{
    max-width: 220px;
    text-align: center;
    margin-left: 0;
  }

  #filter-page #blogs-result .card{
    margin-bottom: 40px;
  }
}

@media(min-width:992px) and (max-width:1367px){
  #filter-page #blog-head .container{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  #filter-page #blog-head .container .row .first-column h1{
    max-width: 220px;
    margin-left: 21px;
  }
}

@media (max-width:575px){
  #blogs-result .card #card-main-img{
    height: 45vw;
  }
}


/* FIN BLOG Y FILTRO BLOG */


/* INICIO ENTRADA DE BLOG */


#blog-content{
  background-color: white;
}

#blog-content .container{
  padding: 0 13.9%;
}

#blog-content #decorative-img{
  right: 0;
  z-index: 0;
}

#blog-content .main-col{
  margin-top: -7.375rem;
}

#blog-content #main-image-container{
  overflow: hidden;
  position: relative;
  height: auto;
}

#blog-content #main-image-container #blog-main-image{
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  position: relative;
}

#blog-content #main-image-container #filter-image{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  top: 0;
  left: 0;
}

#blog-content #main-image-container .title-meta-container{
  position: absolute;
  bottom: 0;
  left: 0;
  height: inherit;
  color: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 2.563rem 2.75rem;
}

#blog-content #main-image-container .title-meta-container h2{
  font-size: 35px;
  line-height: 45px;
}

#blog-content #main-image-container .title-meta-container p:not(:last-child){
  margin-bottom: 25px;
}

#blog-content p{
  font-size: 12px;
  line-height: 20px;
}

#blog-content .text-container{
  margin: 39px 0 39px;
  text-align: justify;
  color: var(--blue-02);
}


#blog-content .image-container{
  margin-bottom: 169px;
}

#blog-content .image-container img{
  width: 100%;
  object-fit: cover;
}

#blog-content .image-container iframe{
  width: 100%;
  height: 518px;
  position: relative;
  z-index: 1;
}

#blog-content .image-container img#overlay{
  width: auto;
  margin-left: -2rem;
  margin-top: -4.85rem;
}

#blog-content hr{
  border: 1px solid var(--orange);
  opacity: 1;
  margin-bottom: 111px;
}


#related{
  background-color: white;
}

#related .container{
  padding: 0 13.9% 257px;
}

#related .container .title-container{
  padding-bottom: 1.563rem;
}

#related .container .title-container h3{
  color: var(--orange);
}

#related .card{
  overflow: hidden;
}

#related .card .card-meta{
  padding: 13px 12.5px 0;
}

#related .card .card-meta .category-meta{
  font-size: 11px;
  line-height: 20px;
  font-weight: bold;
  color: var(--blue);
}

#related .card .card-meta .date-meta{
  font-size: 11px;
  color: var(--blue);
  margin-left: 16.5px;
  line-height: 20px;
}

#related .card .card-meta .date-meta img{
  margin-right: 3px;
  margin-top: -5px;
}

#related .card .card-body{
  padding: 0 12.5px 13px;
}

#related .card .card-body .card-title{
  font-size: 16px;
  line-height: 20px;
  color: var(--orange);
  margin-bottom: 20px;
  max-height: 40px;
  height: 40px;
  overflow: hidden;
}

#related .card .card-body a{
  font-size: 12px;
  line-height: 20px;
  color: var(--orange);
}

#related .card .card-body a img{
  width: 32px;
  margin-top: -5px;
}


@media (min-width:1200px) and (max-width:1399px){
  #blog-content #main-image-container .title-meta-container{
    height: 440px;
  }
}


@media (min-width:992px) and (max-width:1199px){
  #blog-content #main-image-container .title-meta-container{
    height: 359px;
  }
  #related .card .card-meta .category-meta{
    font-size: 8px;
  }
  #related .card .card-meta .date-meta{
    font-size: 9px;
  }
}

@media (min-width:768px) and (max-width:991px){
  #blog-content #main-image-container .title-meta-container{
    height: 378px;
  }

  #blog-content #decorative-img{
    margin-top: 105px;
  }

  #blog-content .container, #related .container{
    padding: 0 4%;
  }
  #related .card .card-meta .category-meta{
    font-size: 8px;
  }
  #related .card .card-meta .date-meta{
    font-size: 9px;
  }
}

/* BLOG LOADER */

.loader-box{
  width: 300px;
  height: 100px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 4px 4px 20px rgba(0,0,0,0.3); */
}

.loader-container{
  height: 15px;
  width: 105px;
  display: flex;
  position: relative;
  .circle{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    animation: move 500ms linear 0ms infinite;
    margin-right: 30px;
    
    &:first-child{
      position: absolute;
      top:0;
      left:0;
      animation: grow 500ms linear 0ms infinite;
    }
    
    &:last-child{
      position: absolute;
      top: 0;
      right: 0;
      margin-right: 0;
      animation: grow 500ms linear 0s infinite reverse;
    }
  }
}

@keyframes grow {
  from {transform: scale(0,0); opacity: 0;}
  to {transform: scale(1,1); opacity: 1;}
}

@keyframes move {
  from {transform: translateX(0px)}
  to {transform: translateX(45px)}
}

/* Manifesto scroll title */


.manifesto-text{
 max-width: 800px;

  z-index: 5;


  transition: .3s ease;
}

.op-1{
  opacity: 1 !important;
  transition: .3s ease;
}

.op-0{
  opacity: 0 !important;
  transition: .3s ease;
}

.manifiesto{
  position: fixed;
  z-index: 5;
  top: 50%;

  transition: .3s ease;
}

@media (max-width:767px){
  .manifesto-text{
    width: 100%;
  }

  #blog-content .container{
    max-width: 100%;
    padding: 4.688rem 1rem;
  }

  #blog-content .main-col{
    margin-top: 0;
  }

  #blog-content .main-col .title-meta-container{
    flex-direction: column;
    color: var(--orange);
  }

  #blog-content .main-col .title-meta-container h2{
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;

  }

  #blog-content .main-col .title-meta-container p{
    line-height: 14px;
  }

  #blog-content #main-image-container, #blog-content .image-container{
    height: 335px;
  }

  #blog-content .image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #blog-content .video-container{
    margin-top: 40px;
    margin-bottom: 60px;
  }

  #blog-content .video-container iframe{
    width: 100%;
    height: 350px;
  }

  #blog-content #main-image-container #blog-main-image{
    position: relative;
    top: unset;
    left: unset;
    object-fit: cover;
    object-position: revert;
    height: 100%;
    width: 100%;
  }

  #blog-content #main-image-container #filter-image{
    height: 100%;
    object-fit: cover;
  }


  #blog-content .tag-title-container{
    margin-top:-26px;
  }

  #blog-content .tag-title-container h6{
    font-size: 14px;
    color: #43362B;
    font-weight: bold;
    margin-bottom: 27px;
  }

  #blog-content hr{
    border: 2px solid var(--orange);
    margin-bottom: 25px;
  }

  #blog-content .tags-container a{
    background-color: var(--blue);
    font-size: 14px;
    line-height: 14px;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 75px;
  }

  #related .container{
    max-width: 100%;
    padding: 0rem 1rem;
  }

  #related .container .title-container{
    padding-bottom: 30px;
  }

  #related .container .title-container h3{
    font-size: 16px;
    text-transform: capitalize;
    color: var(--blue);
    margin-bottom: 0;
  }

  #related .card{
    margin-bottom: 40px;
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
  }

  #related .card .card-meta{
    padding: 1.213rem 1rem 0;
  }

  #related .card .card-meta .date-meta{
    margin-left: 20px;
  }

  #related .card .card-meta .date-meta img{
    width: 16px;
  }

  #related .card .card-meta .comment-meta{
    font-size: 10px;
    color: var(--blue);
    margin-left: 20px;
  }

  #related .card .card-meta .comment-meta img{
    width: 16px;
    margin-right: 6px;
  }

  #related .card .card-body{
    padding: 0rem 1rem 1.625rem;
  }

  #related .card .card-body .card-title{
    font-size: 18px;
    color: var(--blue);
    max-height: 18px;
    overflow: hidden;
    margin-bottom: 6px;
  }

  #related .card .card-body .card-text{
    font-size: 12px;
    margin-bottom: 12px;
    color: black;
    max-height: 40px;
    overflow: hidden;
  }

  #related .card .card-body a{
    font-size: 16px;
    line-height: 20px;
  }

  #related .card .card-body a img{
    width: 15px;
  }

}
/* FIN ENTRADA DE BLOG */

/* Media Mobile */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.375rem;
  }
  #menu-conteiner .btn-link {
    font-size: 1.75rem;
  }
  #menu-conteiner.checked {
    padding-left: 0;
  }
  #about {
    height: auto;
  }
  #no-found {
    background-size: 90vw;
  }
  #no-found .bg {
    width: 50vw;
  }
  #contact-us {
    padding-top: 0;
    background: url(../img/background/bg-circulo.svg) left -25rem bottom no-repeat,
      url(../img/background/bg-degrade-orange.svg) right bottom no-repeat;
    mix-blend-mode: lighten;
    background-size: 40rem;
  }
  #contact-us a {
    left: auto;
    bottom: auto;
    position: relative;
  }
  #contact-us h3 {
    font-size: 2.375rem;
    line-height: normal;
  }
  #tecnologia .img {
    top: -1.875rem;
    left: -2.5rem;
  }
  #tecnologia span:first-child::before {
    transform: translate(0, 100%) scale(0.7) translate(5.7rem, 1.5rem);
    right: -2.25rem;
  }
  #tecnologia {
    height: 100%;
    background: url(../img/background/bg-tecnologia-mb.png) cover no-repeat;
  }
  #soluciones hr {
    width: 6rem;
  }
  #soluciones {
    height: 100%;
  }
  #soluciones p {
    margin: 1rem;
    width: 90%;
  }
  #soluciones .cardContainer {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: scroll;
    margin: 3rem 1rem;
  }
  #soluciones .cardContainer::-webkit-scrollbar {
    display: none;
  }
  #soluciones .card {
    height: 14.875rem;
    width: 17.443rem;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 0.5rem;
  }
  #soluciones .card:hover h3 {
    transform: translateY(0px);
  }
  #soluciones .card:hover img {
    opacity: 1;
  }
  #soluciones .card {
    border: none;
    color: var(--grey-01);
  }
  #soluciones .card img {
    opacity: 1;
  }
  #soluciones .card h3 {
    left: 0;
    bottom: 0;
    font-size: 1.875rem;
    text-align: start;
  }
  #soluciones button {
    background: none;
    border: none;
    width: 1.868rem;
    height: 1.75rem;
    bottom: 1rem;
    right: 0.5rem;
    opacity: 1;
    position: absolute;
  }
  .soluciones-modal-container {
    flex-direction: column;
  }
  .soluciones-modal-container {
    overflow-x: auto;
  }
  .modal-text-container {
    padding: 2rem;
    width: 100%;
    padding-bottom: 5rem;
  }
  .modal-img-container img {
    display: none;
  }
  .modal-text-container p {
    padding-right: 0;
    font-size: 16px;
  }
  #soluciones .owl-carousel .item {
    width: 90%;
  }
  #soluciones {
    background: none;
  }
  #soluciones .soluciones-img1 {
    display: none;
  }
  #soluciones .soluciones-img2 {
    width: 3.438rem;
  }
  #soluciones .soluciones-img3 {
    width: 4rem;
  }
  #desarrollo h1,
  #soluciones h1 {
    font-size: 1.5rem;
  }
  #desarrollo {
    background-image: none;
  }
  #desarrollo .semi-circulo {
    visibility: visible;
    width: 10.063rem;
    top: -5rem;
    left: -4rem;
  }
  #desarrollo .owl-stage {
    display: block;
    padding: 0px;
  }
  .owl-carousel .item .container {
    flex-direction: column-reverse;
    gap: 1em;
    padding: 2rem 1rem;
    align-items: center;
  }
  .owl-nav {
    display: flex;
    gap: 30vw;
    left: 50%;
    margin-top: -13.5rem;
  }
  .nav-button > img {
    width: 3rem;
  }
  .owl-stage {
    padding: 0;
  }
  #desarrollo .owl-stage .item-text {
    margin-left: 0;
  }
  #desarrollo .owl-stage .item {
    width: 95%;
    padding: 3rem 2rem;
  }
  .owl-carousel .owl-stage .title-slide::before {
    width: 30%;
    height: 30%;
    transform: translateX(5%);
  }
  
  .item-img-container,
  .item-text-container {
    width: 100%;
  }

  .owl-carousel .owl-stage .title-slide {
    font-size: 25px;
  }

  .owl-carousel .owl-stage p {
    /* font-size: 12px; */
    line-height: 20px;
  }
  footer .btn-link {
    padding: 0.938rem 0 !important;
  }
  #menu-conteiner .btn-link {
    font-size: 2.3rem;
  }
  #pre-intelligent-feeding .img {
    top: 50px;
    left: 18%;
    width: 27vw;
  }
  #pre-intelligent-feeding .img-01 {
    bottom: 0;
    left: 75%;
    width: 27vw;
  }
  .owl-carousel .owl-stage .title-slide::after{
    width: 141px;
    height: 77px;
    left: -3%;
    top: -21px;
  }

  #desarrollo .owl-stage .owl-item{
    padding: 0px 15px;
  }

  #desarrollo .owl-nav{
    bottom:45px;
  }

  .item-img-container {
    padding-right: 0px;
  }
}

@media (min-aspect-ratio: 16/9) {
  .ytbg {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw !important;
  }
  
}

@media (max-aspect-ratio: 16/9) {
  .ytbg {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh !important;
  }
}

@media only screen and (max-width: 500px) {
  #team .second-row .description-container p{
    max-width: 69vw;
  }
  .description-container{
    position: relative;
    z-index: 1;
  }
  
}


@media only screen and (max-width: 350px) {
  #team .second-row .description-container::after{
    content: '';
    position: absolute;
    z-index:0;
    background: var(--blue-01);
    border-radius: 50%;
    min-width: 350px;
    min-height: 350px;
    transform: translateY(-20px);
  }

  #team .second-row .description-container p{
    max-width: 90vw;
  }

}
 
