
/*--------------------------------------------------------------
# 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: #ca3c83;
  text-decoration: none;
}

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

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


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

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

.text-primary {color: #ca3c83 !important}
.bg-grey {background-color: #ededed}
 
/*--------------------------------------------------------------
# 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;
}

.header .logo img {
  width: 190px; margin-left: -15px; filter: invert(1);
}

.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: #fff;
  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: #f238e1;
}



.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(0, 0, 0, 0.9);
    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;
  }

  .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;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {width: 100%; overflow-x: hidden; position: relative; padding: 0}
.hero h1 {color: #fff; font-size: 4rem; text-shadow: 5px 1px 3px rgba(0,0,0,0.3); margin: 0; padding-right: 2%}
.hero h2 {color: #fff; font-size: 1.5rem; text-shadow: 0px 0px 5px rgba(0,0,0,0.9); text-transform: capitalize; margin-bottom: 100px; padding-right: 3%}
.hero .swiper-slide {height: 100vh; background-color: rgba(202,60,131,1);}
.hero .swiper-slide .row { background-color: rgba(0,0,0,0.3);}
.hero .swiper-slide .row .col-12 {}
.hero1 {background: url("../img/banners/h1b.jpg") no-repeat; background-size: cover}
.hero2 {background: url("../img/banners/h2b.jpg") no-repeat; background-size: cover}
.hero3 {background: url("../img/banners/h1.jpg") no-repeat; background-size: cover}

/*--------------------------------------------------------------
# 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);
  }
}


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

footer {padding: 2rem; color: #fff; background-color: rgba(202,60,131,1);}
footer .logo {max-width: 200px; filter: invert(1)}
footer h4 {font-size: 1rem}
footer a {padding: 2rem; color: #fff; text-decoration: none; margin: 0; padding: 0; display: block; font-size: .8rem;}
footer a.social  {display: inline-block; margin: 1rem .2rem}
.leg {text-align: center; padding: 1rem}
.leg p {margin: 0; font-size: 12px}



@media (max-width: 750px) {
    .button.login {max-width: 300px; margin: 2rem auto}
    .navbar a {display: block; text-align: center; font-size: 2rem}
    .navbar li:first-child {margin-right: inherit}
    body {overflow-x: hidden}
    h1.fs-1 {font-size: 3rem !important}
     .header .logo img {margin-left: 0}
    .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}
}



