body, html {
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.logo {
  width: 22.5em;
}

.min-logo {
  background-color: #ffffff;
  width: 7.5em;
  height: 7.5em;
  border-radius: 2em;
  margin-bottom: 2em;
  background-image: url('/assets/images/min_logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 1em 2em;
}

.rounded-btn {
  background-color: #ffffff;
  padding: 1em 3em !important;
  color: #000000 !important;
  text-align: center;
  border-radius: 1.75em;
  text-decoration: none;
  box-shadow: 0.25em 0.5em .75em rgba(0,0,0,0.025);
  
}

.rounded-color-btn {
  background-color: #3453f8;
  padding: 1em 3em !important;
  color: #ffffff !important;
  text-align: center;
  border-radius: 1.75em;
  text-decoration: none;
  box-shadow: 0.25em 0.5em .75em rgba(0,0,0,0.25);
}

.header-items {
  color: #ffffff;
}

.header-items h1 {
  font-size: 4rem;
}

.header-items h4 {
  font-size: 2.5rem;
  opacity: .5;
}

.header-items .row {
  margin-top: 3em;
}

.center-content-data {
  margin: 15% 0 15% 0;
}

.header-line {
  width: 100%;
  display: block;
  background-color: #ffffff;
}

.line-break-small {
  display: block;
  background-color: transparent;
  margin: 1em 0;
}

.line-break-big {
  display: block;
  background-color: transparent;
  margin: 5em 0;
}

.line {
  width: 20em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.line-color {
  height: 0.0625em;
  background-color: #bababc;
}

.multimedia-item {
  width: 100%;
  position: relative;
}

.multimedia-item:before {
  content: "";
  padding-top:60%;
  display: block;
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 1;
}

.video-btn:hover {
    color: #ffffff;
}

.video-btn i {
  display: block;
  margin: .5em auto;
  width: 3em;
  height: 3em;
  background-color: #ffffff;
  border-radius: 50%;
}

.section-title {
  text-align: center;
  position: relative;
  padding: 2em 0;
}

.section-title:before {
  content: "";
  width: 3em;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-bottom: 0.0625em solid #bababc;
}

.section-title h4 {
  color: #3453f8;
}

.icon-rounded {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0.5em 1em .75em rgba(0,0,0,0.05);
  margin: 2em;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

.center-icon{
  margin: 1em auto;
}

.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.slider-content {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .5s all;
}

.slider-item {
  width: 10.2857%;
  float: left;
  padding: 4%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.slider-item img {
  width: 98%;
  height: 98%;
  border-radius: 7px;
  position: absolute;
  top: 1%;
  left: 1%;
  object-fit: cover;
}

.slider:after {
  content: ""; 
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right,  rgba(242,242,242,0) 0%,rgba(242,242,242,1) 100%); 
}

.slider-preview-btn, .slider-next-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    background-repeat: no-repeat;
    z-index:1;
    transform: translateY(-50%);
}

.slider-preview-btn {
    left: 2em;
    background-image: url('/assets/images/arrow_left.png');
}

.slider-next-btn {
    right: 2em;
    background-image: url('/assets/images/arrow_right.png');
}

.slider-min-preview-btn, .slider-min-next-btn {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-size: 50%;
}

.slider-min-preview-btn {
    left: 0;
    background-image: url('/assets/images/box-arrow-left.png');
    background-position: right;
}

.slider-min-next-btn {
    right: 0;
    background-image: url('/assets/images/box-arrow-right.png');
    background-position: left;
}

.map-item {
    width: 100%;
    position: relative;
}

.map-item:before {
  content: "";
  padding-top:30%;
  display: block;
}

.map-item iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.zindex-1 {
  z-index: 2;
}

.page-bg {
  background-image: url('/assets/images/banner/banner_1b.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.page-bg:after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.7);
  z-index: 1;
}

.subpage-bg {
  content: "";
  position: absolute;
  top:0;
  right:-100%;
  width:100%;
  height:100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.drone {
  background-image: url('/assets/images/us1.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.place {
  background-image: url('/assets/images/us2.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.paisaje {
  background-color: #8a8a8a;
}

.mapa {
  background-color: #8a8a8a;
}

.contact-form {
    max-width: 400px;
    width: 80%;
}

.contact-form input {
    border: 0;
    outline: 0;
    background-color: transparent;
    width: 100%;
    padding: .75em 1em;
    line-height: 2em;
    border-radius: 1.75em;
    border: 0.125em solid #dddddd;
    margin: .5em 0;
    color: #8a8a8a;
}

.contact-form .row input {
  border-right: 0;
  border-radius: 1.75em 0 0 1.75em;
}

.contact-form button {
  border: 0;
  outline: 0;
  background-color: #3453f8;
  color: #ffffff;
  width: 100%;
  padding: .75em 1em .75em 3em;
  line-height: 2em;
  border-radius: 1.75em;
  box-shadow: 0.0625em 0.0625em 1em rgba(0,0,0,0.1);
  margin: .5em 0;
}

.footer {
  background-color: #222222;
  width: 100%;
  color: #ffffff;
  line-height: 2em;
  font-size: 1.15rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer strong {
  margin-bottom: 1em;
  opacity: .7;
  display: block;
}

.min-icon-rounded {
  width: 2.5em;
  height: 2.5em;
  box-shadow: 0.0625em 0.0625em 1em rgba(0,0,0,0.1);
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fb {
    background-image: url('/assets/images/fb_icon.png');
}

.tw {
    background-image: url('/assets/images/tw_icon.png');
}

.inst {
    background-image: url('/assets/images/inst_icon.png');
}

.footer-line {
  height: 10em;
  width:100%;
  position: relative;
}

.footer-line:before {
  content: "";
  height: 0.0625em;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #444444;
}

.w_arrow_right {
    background-image: url('/assets/images/arrow-right-white.png');
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 1em;
    padding-right: 3.5em !important;
}

.w_arrow_down {
  background-image: url('/assets/images/arrow-bottom-white.png');
  background-position: 80% 50%;
  background-repeat: no-repeat;
  background-size: 1em;
  padding-right: 3.5em !important;
}

.b_b_arrow_right {
  background-image: url('/assets/images/box-arrow-right-blue.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1em;
}

.g_arrow_right {
    background-image: url('/assets/images/arrow-right-gray.png');
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 1em;
    padding-right: 3.5em !important;
}

.ybe-video {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: none;
}

.ybe-image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.prev-img {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

.prev-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border:1em solid #ffffff;
  border-radius: 1em;
  object-fit: cover;
  max-width: 50em;
  width: 90%;
}

@media (max-width: 768px) {

  .nav a {
    padding: 1em .5em;
  }

 

}