:root {
  --primary-color: #fe4646;
  --primary-color-trans: #fe4646e6;
  --secondary-color: #202020;
  --secondary-color-trans: #202020e6;
  --selection-color: ;
}

* {
	box-sizing: border-box;
  margin: 0;
}

a {
  color:inherit;
	cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FE4646"/%3e%3c/svg%3e') 5 5 , auto;
	display: inline-block;
	text-decoration: none;
}

body {
/*	background: var(--primary-color);*/
	color: white;
	font-family: Montserrat;
}

body.overflow {
  overflow: hidden;
}

h1 {
	font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 35px;
}

header {
  align-items: flex-start;
  background: transparent;
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

html {
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cg%3e%3cpath d="M22.4,42.3c11,0,19.9-8.9,19.9-20c0-11-8.9-20-19.9-20c-11,0-19.9,8.9-19.9,20C2.5,33.3,11.4,42.3,22.4,42.3z M22.4,14.6c4.3,0,7.7,3.5,7.7,7.7c0,4.3-3.5,7.7-7.7,7.7c-4.3,0-7.7-3.5-7.7-7.7C14.7,18.1,18.1,14.6,22.4,14.6z" fill="%23FE4646"/%3e%3c/g%3e%3c/svg%3e') 5 5 , auto;!important;
}

html.cursorwhite {
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cg%3e%3cpath d="M22.4,42.3c11,0,19.9-8.9,19.9-20c0-11-8.9-20-19.9-20c-11,0-19.9,8.9-19.9,20C2.5,33.3,11.4,42.3,22.4,42.3z M22.4,14.6c4.3,0,7.7,3.5,7.7,7.7c0,4.3-3.5,7.7-7.7,7.7c-4.3,0-7.7-3.5-7.7-7.7C14.7,18.1,18.1,14.6,22.4,14.6z" fill="%23FFF"/%3e%3c/g%3e%3c/svg%3e') 5 5 , auto;!important;
}

nav {
  -moz-transform: translateX(100%);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background-color: var(--primary-color-trans);
  height: 100%;
  max-width: 515px;
  overflow-y: auto;
  padding: 100px 40px 60px 40px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 100%;
  z-index: 9;
}

nav ul.main {
  list-style-type: none;
  padding: 0;
}

nav ul.main li {
  -moz-transform: translateX(40px);
  -moz-transition: all 0.3s ease;
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  -o-transition: all 0.3s ease;
  -webkit-transform: translateX(40px);
  -webkit-transition: all 0.3s ease;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s ease;
}

nav ul.main li:last-of-type {
  margin-bottom: 0px;
}

nav ul.main li a {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  color: #ffffffba;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav ul.main li a span {
  color: rgb(255 255 255 / 95%);
}

nav ul.main li a:hover {
  color: rgb(255 255 255 / 100%);
}

nav.show {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

nav.show ul.main li {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  opacity: 1;
  transform: translateX(0px);
}

nav.show ul.main li:nth-child(1) {
  transition-delay: 0.15s;
}

nav.show ul.main li:nth-child(2) {
  transition-delay: 0.3s;
}

nav.show ul.main li:nth-child(3) {
  transition-delay: 0.45s;
}

nav.show ul.main li:nth-child(4) {
  transition-delay: 0.6s;
}

nav.show ul.main li:nth-child(5) {
  transition-delay: 0.75s;
}

nav.show ul.main li:nth-child(6) {
  transition-delay: 0.9s;
}

nav.show ul.main li:nth-child(7) {
  transition-delay: 1.05s;
}

nav.show ul.main li:nth-child(8) {
  transition-delay: 1.2s;
}

nav.show ul.main li:nth-child(9) {
  transition-delay: 1.35s;
}

nav.show .social, nav.show ul.sub {
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.85s;
}

nav .social {
  -moz-transform: translateY(30px);
  -moz-transition: all 0.4s ease;
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  -o-transition: all 0.4s ease;
  -webkit-transform: translateY(30px);
  -webkit-transition: all 0.4s ease;
  bottom: 50px;
  display: flex;
  gap: 25px;
  margin-top: 40px;
  opacity: 0;
  padding-top: 30px;
  position: absolute;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

nav .social a {
  display: inline-block;
  height: 30px;
  margin-right: 25px;
  width: 30px;
}

nav .social a:last-of-type {
  margin-right: 0px;
}

nav .social a:hover svg path, nav .social a:hover svg circle {
  fill: #fe4646;
}

nav .social a svg {
  height: 100%;
  width: 100%;
}

nav .social a svg path, nav .social a svg circle {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  fill: #ffffff;
  transition: all 0.3s ease;
}

video::-webkit-media-controls {
  display:none !important;
}

.bg-dron {
  background-image: url(../img/asset-dron.jpg);
  background-position: center 148px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%; 
  left: 0;
  opacity: .2; 
  position: absolute;
  top: 0; 
  width: 100%; 
}

.bg-water {
  background-image: url(../img/asset-water.jpg);
  background-position: center 148px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%; 
  left: 0;
  opacity: .2; 
  position: absolute;
  top: 0; 
  width: 100%; 
}

.blackCover {
	background: black;
	height: 100%;
	opacity: .3;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.btn-box {
	margin-top: 20px;
}

.btn-main {
  -webkit-transition: all 0.3s ease-in;
  background: transparent;
  border: 3px solid #ffffff80;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 3rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
  width: fit-content;
}

.btn-main:hover {
  border: 3px solid white;
}

.burger {
  height: 33px;
  margin-right: 8px;
  margin-top: 10px;
  width: 30px;
  z-index: 10;
}

.burger:hover {
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FE4646"/%3e%3c/svg%3e') 5 5 , auto;
}

.burger span {
  background-color: transparent !important;
  display: block;
  height: 12px;
  margin-top: 15px;
  position: relative;
}

.burger span::after, 
.burger span::before {
  -moz-transition-duration: 0.3s;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-duration: 0.3s;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: background-color, -webkit-transform;
  background-color: #fff;
  display: block;
  height: 3px;
  outline: 1px solid transparent;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
  width: 30px;
}

.burger span::after,
.burger span::before {
  content: "";
  position: absolute;
}

.burger span::after {
  bottom: 0px;
}

.burger span::before {
  top: 0px;
}

.burger.clicked span {
  background-color: transparent;
}

.burger.clicked span::after {
  -moz-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  -o-transform: translateY(0px) rotate(-45deg);
  -webkit-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
}

.burger.clicked span::before {
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.burger.clicked span:after, 
.burger.clicked span:before { 
  background-color: #ffffff;
}

.contact-city {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}

.contact-directions {
  display: flex;
  flex-direction: row;
  gap: 185px;
}

.contact-rrss {
  display: flex;
  font-size: 20px;
  gap: 45px;
  margin-bottom: 10px;
}

.cursorwhite .flecha-down:hover {
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FFF"/%3e%3c/svg%3e') 5 5 , auto!important;
}

.cursorwhite .show {
  background-color: var(--secondary-color-trans);
}

.destacado {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 800;
}

.donde-box {
  align-items: center; 
  display: flex;
  flex-direction: row;
  gap: 200px;
}

.donde-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: flex-start;
  max-width: 990px;
  width: 90%;
}

.donde-logos img {
  opacity: .7;
  width: 165px;
}

.ficha-video {
  background: white;
  border-radius: 25px 25px 0 25px;
  color: black;
  display: flex;
  font-size: 30px;
  flex-direction: column;
  height: 200px;
  justify-content: center;
  margin-bottom: 35px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  width: 350px;
}

.ficha-video:after {
  background-image: url(../img/arrow-weight.svg);
  background-size: cover;
  bottom: -10px;
  content: "";
  filter: contrast(0.1);
  height: 70px;
  position: absolute;
  right: -10px;
  transform: rotate(45deg);
  width: 70px;
  z-index: 3;
}

.ficha-video:hover  .ficha-video-img{
  filter: grayscale(0);
}

.ficha-video-img {
  filter: grayscale(1);
  height: 100%;
  left: 0;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: .2s;
  width: 100%;
  z-index: 0;
}

.ficha-video-title {
  font-weight: 500;
  z-index: 1;
}

.ficha-video-type {
  color: var(--primary-color);
  font-weight: 900;
  z-index: 1;

}

.flecha-down {
  bottom: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
  z-index: 2;
}

.flecha-down:hover {
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FE4646"/%3e%3c/svg%3e') 5 5 , auto!important;
}

#footer{
  background-color: var(--secondary-color)!important;
  padding: 0 20px!important;
}

.footer-box {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  height: 222px;
  justify-content: space-between;
}

.footer-company {
  align-items: center;
  display: flex;
  flex-direction: row;
  opacity: .7;
  transition: .3s;
}

.footer-company:hover {
  opacity: 1;
}

.footer-company-text {
  font-size: 12px;
  text-align: right;
  width: 90px;
}

.footer-copyright {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 7px;
}

.footer-rrss {
  display: flex;
  gap: 30px;
}

.footer-rrss i {
  font-size:20px;
  opacity: 0.7;
  transition: .3s;
}

.footer-rrss i:hover {
  opacity: 1;
}

.fp-watermark {
	display: none;
}

.fullBG {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.fullBG img {
  -webkit-transition: all 500ms ease-in-out;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: all 500ms ease-in-out;
  width: 100%;
}

.fullBG video {
  -webkit-transition: all 500ms ease-in-out;
  background-color: black; /* in case the video doesn't fit the whole page*/
  background-position: center center;
  background-size: 100% 100%;
  background-size: contain;
  bottom: 0;
  height: 100%;
  object-fit: cover; /*cover video background */
  opacity: 0;
  position: absolute;
  right: 0;
  top:0;
  transition: all 500ms ease-in-out;
  width: 100%;
  z-index:3;
}

#fullLogo {
	align-items: center;transition: 1s;
	background: var(--secondary-color);
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

#fullLogo img {
  min-width: 120px;
  max-width: 200px;
  width: 50%;
}

.gallery-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-box-text {
  width: 500px;
}

.gallery-box-title {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  justify-content: center;
  text-align: right;
}

.gallery-claim {
  align-items: center;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  gap: 20px;
  margin-top: 20px;
}

.gallery-claim svg {
  filter: drop-shadow(1px 1px 8px rgb(0 0 0 / 0.2));
  height: 45px;
  width: 45px;
}

.gallery-title {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
  text-align: right;
  padding-bottom: 15px;
  width: 250px;
}

.gradient-img {
  background-position: center 50px;
  background-size: cover;
  height: 75%;
  opacity: .3;
  position: absolute;
  top: 0;
  width: 100%;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  height: calc(100vh - 200px);
  justify-content: flex-start;
  margin: 100px 0;
}

.grid-container img {
  height: 25%; 
  width: 25%; 
 transition: .7s;
  opacity: 0.5;
}

.grid-container img:hover {
  opacity: 1;
}

.layer {
  padding: 0 8.5%;
}

.layer  h2 {
  font-size: 3rem;
  line-height: 3rem;
}

.layer span {
  font-size: 0.9rem;
}

#mainLogo {
  padding: 10px;
  width: 200px;
}

#mailto {
/*  opacity: .7;*/
  transition: .3s;
  font-size: 15px;
}

#mailto:hover {
  opacity: 1;
}

.overlay {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background-color: #fe4646;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.overlay.show {
  opacity: 0.8;
  visibility: visible;
}

#section-team{
  align-items: center;
  background-color: transparent;
  display: flex;
  height: 100vh;
  justify-content: center;
  transition: .5s ease;
  width: 100%;
}

#section-team2 {
  background-color: #fff;
  color: black;
  padding-bottom:200px ;
}

.service-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.service-box-text{
  width: 600px;
}

.service-box-text p {
  margin-bottom: 30px;
  line-height: 28px;
}

.service-box-title {
  color: var(--primary-color);
  font-size: 60px;
  font-weight: 700;
}

#service_title {
  align-items: center;
  background: var(--primary-color);
  display: flex;
  font-family: 'Montserrat';
  font-size: 30px;
  font-weight: 800;
  height: 60px;
  justify-content: center;
  position: fixed;
  top: 88px;
  width: 100%;
  z-index:5;
}



.show {
	cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cg%3e%3cpath d="M22.4,42.3c11,0,19.9-8.9,19.9-20c0-11-8.9-20-19.9-20c-11,0-19.9,8.9-19.9,20C2.5,33.3,11.4,42.3,22.4,42.3z M22.4,14.6c4.3,0,7.7,3.5,7.7,7.7c0,4.3-3.5,7.7-7.7,7.7c-4.3,0-7.7-3.5-7.7-7.7C14.7,18.1,18.1,14.6,22.4,14.6z" fill="%23FFF"/%3e%3c/g%3e%3c/svg%3e') 5 5 , auto;
}

.show a:hover {
	cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FFF"/%3e%3c/svg%3e') 5 5 , auto;
}

.social i {
  color: #ffffffba;
  font-size: 30px;
}

.social i:hover {
  color: #fff;
  cursor: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 100 100" %3e%3cpolygon class="st0" points="11.1,42.3 22.4,31 33.7,42.3 42.3,33.6 31.1,22.3 42.3,11 33.7,2.4 22.4,13.7 11.1,2.4 2.5,11 13.8,22.3 2.5,33.6 " fill="%23FFF"/%3e%3c/svg%3e') 5 5 , auto;
}

.somos-box {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap:100px;
}

.somos-img {
/*  padding: 50px 0 0px 100px; */
  width: 50%;
}



.somos-img img {
  width: 100%;
}

.somos-img,
.somos-txt {
  padding: 20px 0;
  width: 100%;
}

.somos-txt {
  max-width: 710px;
  padding: 20px 100px; 
  width:50%; 
}

.somos-txt h1 {
  color: var(--primary-color);
}

.team-box {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: 270px 270px 270px 270px;
  justify-content: space-evenly;
  margin: 0 auto;
}

.team-card-charge {
  color: var(--primary-color);
  font-weight: 800;
}

.team-card-img {
  align-items: flex-end;
  border-radius: 35px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  width: 170px;
}

.team-card-img:before {
  background-color: #e3e3e3;
  border-radius: 25px;
  bottom: 0;
  content: "";
  height: 100px;
  position: absolute;
  width: 100%;
}

.team-card-img img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.team-card-text {
  color: black;
  font-size: 20px;
}

.video-box {
  display: flex;
  flex-direction: row;
  gap: 115px;
}

.video-column {
  display: flex;
  flex-direction: column;
}




::-moz-selection {
    background:var(--secondary-color);
    color:#fff;
}
::-webkit-selection {
    background:var(--secondary-color);
    color:#fff;
}
::selection {
    background:var(--secondary-color);
    color:#fff;
}








@media (max-width: 1300px) {
  .team-box {
    gap: 15px;
  }
}

@media (max-width: 1150px) {

  .donde-logos img {
    width: 100px;
  }

  .somos-txt h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .team-box {
    grid-template-columns: 200px 200px 200px 200px;
  }
}

@media (max-width: 950px) {
  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .contact-city {
    font-size: 3rem;
  }

  .donde-box {
    gap: 100px;
  }

  .ficha-video {
    font-size: 23px;
    height: 160px;
    width: 310px;
  }

  .ficha-video:after {
    height: 50px;
    width: 50px;
  }


  .service-box-title {
    font-size: 22px;
  }

  .service-box-text p {
    margin-bottom: 15px;
    line-height: 26px;
  }

  .somos-txt {
    padding: 20px 20px;
  }

  .team-box {
    grid-template-columns: 200px 200px 200px;
  }

  .team-card-img {
    width: 120px;
  }

  .team-card-img:before {
    height: 75px;
  }

  .team-card-text {
    font-size: 15px;
  }

  .video-box {
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .gallery-box {
    flex-direction: column;
    gap: 25px;
  }

  .gallery-box-text {
    width: 100%;
    text-align: center;
  }
  .gallery-box-text iframe{
    width: 100%;
  }

  .gallery-box-title {
    align-items: center;
  }

  .gallery-title {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }
}


@media (max-width: 700px) {

  .footer-box {
    flex-direction: column;
    justify-content: space-around;
  }

  .fullBG img {
    left: -50%;
    width: auto;
  }

  .grid-container {
    height: calc(100vh - 200px);
  }

  .grid-container img {
    width: calc(100% / 3);
  }

  #section-team2 {
    flex-direction: column;
  }

  .team-box {
    grid-template-columns: 33% 33% 33%;
  }
  .team-card-img {
    width: 100px;
  }
}

@media (min-width: 700px) {
  nav {
    padding: 120px 90px 70px 65px;
  }
}

@media (max-width: 650px) {
  .contact-directions {
    flex-direction: column;
    gap: 20px;
  }

  .donde-box {
    gap: 30px;
  }

  .somos-box, .donde-box {
    flex-direction: column;
  }

  .donde-logos {
    gap: 40px;
    width: 100%;
  }

    .ficha-video {
      font-size: 20px;
      height: 120px;
      width: 250px;
  }

  .service-box {
    flex-direction: column;
    padding-top: 70px;
    gap: 25px;
  }

  .service-box-text {
    width: 100%;
  }

  .service-box-text p {
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 22px;
  }

  .service-box-title{
    text-align: left;
    width: auto;
  }



}

  


/*@media (min-width: 600px) {
  h1 {
    font-size: 5rem;
   line-height: 5rem;
  }
}*/

@media (max-width: 500px) {
  h1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .ficha-video {
    font-size: 14px;
    height: 80px;
    margin-bottom: 15px;
  }

  .ficha-video:after {
    bottom: -5px;
    height: 30px;
    right: -5px;
    width: 30px;
  }

  .grid-container {
    height: calc(100vh - 200px);
  }

  .grid-container img {
    height: 10%;
    width: calc(100% / 2);
  }

  .team-box {
    grid-template-columns: 50% 50%;
  }

  .team-card-img {
    border-radius: 15px;
    width: 80px;
  }

  .team-card-img:before {
    height: 50px;
    border-radius: 10px;
  }
  .team-card-text {
      font-size: 10px;
  }

  .video-box {
    flex-direction: column;
    gap: 0px;
  }
}

@media (max-width: 400px) {

 
  header {
    height: 75px;
  }

  .bg-dron, .bg-water {
    background-position: center 130px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .gallery-box {
    gap:0;
  }

  .gallery-claim {
    font-size: 10px;
    gap: 5px;
    margin-top:0;
  }

  .gallery-claim svg {
    transform: scale(.7);
  }

  #service_title {
    font-size:22px;
    height: 50px;
    top: 75px;
  }



  .video-box {
    flex-direction: column;
    gap: 0px;
  }
}


