
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000; line-height: 170%; 
}

a {
  color: #ca3c83;
  text-decoration: none;
}

a:hover {
  color: #0357F5;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Roboto', sans-serif; font-weight: 700
}
h4 {
    font-weight: 600;    
}
p { font-size: 12pt}

h5 {
    font-weight: 600;
    font-size: 1.15rem;
}


h1.fs-1 {font-size: 4.4rem !important; line-height: 100%}
.link-1 {color: #5D5AA7}

.text-primary {color: #0357F5 !important}
.bg-primary {background-color: #0357F5 !important}
.bg-grey {background-color: #ededed}
.fs-12px {font-size: 12px}

@media (max-width: 768px) {
  .section-header p {
    font-size: 1.2rem;
  
  }
   
}

 
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0; background: transparent;
}

.header.header-scrolled {
  background: rgba(255,255,255,0.9);
  padding: 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  z-index: 9999;
}
.header.header-scrolled .logo img {filter: invert(0)}

.header .logo {
  line-height: 0; position: relative; top: -10px
}

.header .logo img {
  
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin-left: 1rem;
}


.navbar a {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s; text-shadow: 0 4px 4px rgba(0,0,0,.15);
}

.header.header-scrolled a {color: #000}
.header .navbar a.soc {display: none}
.header.header-scrolled .navbar a.soc {display: inline-block}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #0357F5;
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #08AAB5;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar a.soc i{font-size: 30px; color: #ca3c83 !important}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(18, 82, 202, 0.98);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998; display: block;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #000;
    font-size: 33px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
      right: 0;
    position: absolute;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar, .navbar.navbar-mobile {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}

#topbar {background: #0357F5}
#topbar a {color: #fff}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {width: 100%; overflow-x: hidden; position: relative; padding: 0}
.hero h1 {color: #fff; font-size: 50px; text-shadow: 5px 1px 3px rgba(0,0,0,0.3); margin: 0; margin-bottom: 20px }
.hero .swiper-slide {position: relative; max-height: 350px; }
.hero .swiper-slide img {float: right}
.hero .swiper-slide .caption {position: absolute; top: 0; text-align: start; padding: 2% 5%; width: 60%; height: 100%; 
    background: linear-gradient(90deg,rgba(3, 87, 245, 1) 0%, rgba(3, 87, 245, 1) 80%, rgba(3, 87, 245, 0.1) 100%); color: #fff}
.hero .swiper-slide .row .col-12 {}


/*--------------------------------------------------------------
# sections
--------------------------------------------------------------*/
#main {} 
section {padding: 0; width: 100%; overflow-x: hidden;}

ul.list1 {list-style: none; position: relative; margin: 10px 0; }
ul.list1 li {position: relative}
ul.list1 li:before {content: url("../img/ic-vin2.svg"); display: inline-block; position: absolute; left: -30px; top: 5px; width: 20px}

.vin1 {list-style: none; position: relative}
.vin1:before {content: url("../img/ic-vin2.svg"); display: inline-block; 
  left: 0;
  top: 0;
  width: 13px;
  margin-right: 10px;}


#contacto a, a.soc {color: #3F3B3B}
a.soc {display: inline-block; font-size: 25px; margin-right: 10px}
.ic-cont {color: rgba(202,60,131,1); font-size: 40px;}
#contacto button {background-color: rgba(202,60,131,1); color: #fff; border: none; border-radius: 10px; padding: 5px 20px;
  font-size: 20px;}

.ic-cont {display: inline-block; vertical-align: top; margin-right: 10px}
.info-box {display: inline-block}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
  opacity: 0;
}

.swiper:hover .swiper-button-prev, .swiper:hover .swiper-button-next {
  opacity: 1;
}




.nws .picture {height: 220px; overflow: hidden; position: relative}
.card.nws {border-radius: 1.45rem; overflow: hidden; padding-bottom: 1rem;}
.card.nws p {line-height: 120%; color: #333}
.card.nws .picture .card-img-top {min-height: 100%; width: auto !important; position: absolute; transform: translate(-50%,-50%); top: 50%; left: 50%}
.card.nws .card-footer {background: #ededed; border-top: 0}
.swiper-news .swiper-slide {height: auto;}
.swiper-videos .card {border-radius: 1.45rem; overflow: hidden; padding-bottom: 1rem;}

.list-1 li {list-style: none; position: relative; padding-left: 20px}
.list-1 li:before {content: "\F272"; font-family: "Bootstrap-icons"; color: #0357F5; position: absolute; left: 0}
.divinput {border: 1px solid #fff; border-radius: 10px; max-width: 250px; }
.thmb {display: block; height: 100px; overflow: hidden; position: relative}
.thmb img {display: block; min-width: 100%; min-height: 100%; position: absolute; transform: translate(-50%,-50%); top: 50%; left: 50%}
.sedes .data .imagenes .thmb {height: 80px}
.sedes .data .imagenes .thmb img {height: 100%; width: auto !important}

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

footer {padding: 2rem; color: #fff; background-color: #44474D}
footer .logo {max-width: 200px; }
footer h4 {font-size: 1rem}
footer a {padding: 2rem; color: #fff; text-decoration: none; margin: 0; padding: 0; display: block; font-size: 14px; letter-spacing: .3px}
footer a.social  {display: inline-block; margin: 1rem .2rem}
footer ul li {list-style: none}
footer input::placeholer {color: #fff !important }

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } 
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


@media (max-width: 750px) {
    .header .logo {top: 10px;
  z-index: 9;}
    .button.login {max-width: 300px; margin: 2rem auto}
    .navbar a {display: block; text-align: start; font-size: 1.6rem}
    .navbar li:first-child {margin-right: inherit}
    body {overflow-x: hidden}
    h1.fs-1 {font-size: 3rem !important}
    footer .logo {
  max-width: inherit;
  height: 120px;
        margin: inherit !important;}
    .hero .swiper-slide h2 {margin-top: 40px; font-size: 20px}
    .header.header-scrolled .navbar a.soc {margin-right: 0; display: block}
   .header.header-scrolled .navbar a.soc i {font-size: 50px}
    .mobile-nav-toggle.mobile-nav-show.bi.d-sm-none.bi-x {color: #fff}
    
    .swiper-hero .swiper-slide {max-height: inherit}
.swiper-hero .swiper-slide .caption {position: relative; width: 100%; height: 300px; overflow: hidden; padding: 2%; background-color: #0357F5 }
.swiper-hero .swiper-slide .caption h1 {font-size: 30px}
.swiper-hero .swiper-slide img {height: 400px; width: auto !important; float: none}
.swiper-hero .swiper-slide.onlyimg img {height: 700px; }
    #carrera img {max-width: 150px}
    footer .menu {padding-left: 0}
}

/*Lght gallery https://trvswgnr.github.io/bs5-lightbox/#installation*/


