/*FONT Poppins*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*ESTILOS GENERALES*/
*,
::after,
::before {
  box-sizing: border-box;
}

a:active,
a:active * {
  outline: none !important;
  outline-style: none !important;
  -moz-outline-style: none !important;
}
a:focus,
a:focus * {
  outline: none !important;
  outline-style: none !important;
  -moz-outline-style: none !important;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #fff !important;
}

.bg-header {
  background-color: #fff !important;
}

p {
  font-family: "gotham_lightregular" !important;
  font-size: 15px !important;
  letter-spacing: -0.1px;
  font-weight: 100;
  color: #777;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gotham_boldregular" !important;
  color: #000;
  line-height: 1.12;
}

h1 {
  font-size: 50px;
  letter-spacing: -1px !important;
}

h2 {
  font-size: 40px !important;
  letter-spacing: -1px !important;
}

h3 {
  font-size: 30px !important;
}

h4 {
  font-size: 25px !important;
}

h5 {
  font-size: 20px !important;
}

h6 {
  font-size: 15px !important;
}

/*ESTILOS DE buttonPrimary*/
.btn-primary {
  font-family: "gotham_boldregular" !important;
  font-size: 13px !important;
  background: #a681cc;
  border: none;
  padding: 20px 40px;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.5px !important;
  -webkit-transition: all 0.35s ease-in-out 0s;
  transition: all 0.35s cubic-bezier(0.9, 0.14, 0.15, 0.96) 0s;
  border-radius: 0px;
  margin-top: 15px;
}

.btn-primary:hover {
  background: #fff;
  color: #000 !important;
  -webkit-transition: all 0.45s ease-in-out 0s;
  transition: all 0.45s cubic-bezier(0.9, 0.14, 0.15, 0.36) 0s;
}
/*ESTILOS DE buttonPrimary*/

/*ESTILOS DE buttonBlanco*/
.buttonBlanco {
  color: #000 !important;
  background: #fff;
  text-align: center;
  width: auto;
  margin: 0 auto;
  transition: all 0.35s !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
  outline: 0 none !important;
  border: 1px solid #000;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  border-radius: 50px !important;
  padding: 15px 15px 15px 20px;
  line-height: 1.3;
}

.buttonBlanco:hover {
  background: #000;
  border: 1px solid #000;
  padding: 15px 15px 15px 20px;
  color: #fff !important;
  transition: all 0.25s !important;
}

.buttonBlanco span {
  cursor: pointer;
  position: relative;
  line-height: 1.2em;
  -webkit-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s cubic-bezier(0.29, 0.14, 0.15, 0.36) 0s;
  display: flex;
  align-content: left;
}

a.buttonBlanco:hover {
  padding: 15px 15px 15px 20px;
  transition: all 0.35s !important;
}

a.buttonBlanco:focus {
  box-shadow: none;
}

.buttonBlanco span:after {
  font-family: "boxicons";
  content: "\eb43";
  position: absolute !important;
  opacity: 0 !important;
  top: 0 !important;
  font-size: 13px;
}

.buttonBlanco:hover span {
  padding-right: 20px !important;
  transition: all 0.5s !important;
}

.buttonBlanco:hover span:after {
  opacity: 1 !important;
  right: 0 !important;
  transition: all 0.5s;
}
/*FIN DE ESTILOS DE buttonBlanco*/

/*BOTON LINK-DEFAULT*/
a.link-default {
  text-decoration: none;
  color: #000 !important;
  text-transform: uppercase;
  align-content: space-between;
  font-size: 13.5px !important;
  font-weight: 400;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.5s ease;
}

a.link-default:hover {
  text-decoration: none;
  color: #fff !important;
  display: inline-block;
  transition: all 0.25s ease;
}

.link-default {
  font-family: "gotham_boldregular" !important;
  position: relative;
  margin: auto;
  color: #d8eeef !important;
  text-decoration: none !important;
}

.link-default:hover {
  color: #000 !important;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.link-default::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  opacity: 1;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-default:hover::before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*FIN DE BOTON LINK-DEFAULT*/

/*BOTON LINK-DEFAULT-INVERSE*/
.link-default-inverse {
  font-family: "Roboto" !important;
  position: relative;
  margin: auto;
  color: #a681cc !important;
  text-decoration: none !important;
  font-size: 19px !important;
}

.link-default-inverse:hover {
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.link-default-inverse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  right: 0;
  background-color: rgb(216, 236, 238, 0.5);
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.35s ease-in-out 0s;
  transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.link-default-inverse:hover::before {
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.nav-item {
  margin-bottom: 10px;
}
/*FIN DE LINK-DEFAULT-INVERSE*/

.box-servicios-wrapper {
  padding: 20px;
  transition: all 0.45s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.box-servicios-wrapper:hover {
  transition: all 0.45s cubic-bezier(0.9, 0.14, 0.15, 0.86) 0s;
}

.box-servicios h4 {
  padding-top: 10px !important;
  font-size: 18px !important;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
}

.box-servicios i {
  color: #a681cc !important;
  font-size: 30px !important;
  background: transparent !important;
}

/*FIN DE ESTILOS GENERALES*/

#slide {
  background-image: url(../imagenes/imagen-portada.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-width: 100%;
  background-position: center;
  height: 600px;
  padding-top: 120px;
}

#slide h4 {
  font-size: 20px !important;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0px 4px 6px #000;
  margin-top: 100px;
}

#slide h5 {
  color: #fff !important;
  text-shadow: 0px 4px 6px #000;
}

#slide h2 {
  color: #fff;
  letter-spacing: 0px;
  text-shadow: 0px 2px 1px #000;
}

#slide h1 {
  color: #fff;
  letter-spacing: 0px;
  text-shadow: 0px 2px 1px #000;
}

#slide p {
  color: #fff;
  letter-spacing: 0px;
  font-size: 18px !important;
  text-shadow: 0px 1px 2px #000;
}

#quienessomos,
#servicios,
#contacto {
  padding-top: 10px !important;
}

#quienessomos h6 {
  margin-top: 20px !important;
  margin-bottom: 0px !important;
}

#servicios h2,
#quienessomos h2 {
  padding-top: 15px !important;
  padding-bottom: 10px !important;
}

#quienessomos img {
  margin-top: 20px !important;
}

/*ESTILOS DEL MENU SUPERIOR*/
.menuLogo img {
  height: 55px;
  margin-left: 0px;
  opacity: 1;
  margin-top: -15px;
}

.menuLogo img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.96) 0s;
}

.menuSuperior {
  padding-top: 30px;
  padding-bottom: 20px;
  position: fixed;
  background: #a681cc;
  z-index: 1;
}

.menuDerecha {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.menuDerecha li a {
  font-family: "Poppins", sans-serif !important;
  color: #fff;
  text-decoration: none;
  padding-right: 0px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.menuDerecha i {
  font-size: 19px;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  padding-left: 2px;
}

.menuDerecha i:hover {
  opacity: 0.6;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.toogle:hover {
  cursor: pointer;
}

#toggle {
  font-family: "Roboto" !important;
  font-weight: 100 !important;
  letter-spacing: 0.2px !important;
  text-decoration: none;
  opacity: 1;
  margin-left: 30px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

#toggle:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.txtoogle {
  font-family: "gotham_lightregular" !important;
  font-size: 13px !important;
  font-weight: 400;
  color: #121212 !important;
}

/*FIN DEESTILOS DEL MENU SUPERIOR*/

/*ESTILOS PARA EL MEGAMENU*/
.megamenu {
  background: #a681cc;
  height: 100%;
  padding-bottom: 40px;
  padding-top: 20px;
}

.megamenu img {
  margin-top: -45px !important;
  opacity: 1;
  padding-bottom: 25px;
}

.col-megamenu {
  padding-left: 10px;
  padding-top: 40px;
}

.megamenu h6 {
  font-family: "gotham_boldregular" !important;
  font-size: 11px;
  border-bottom: 1px dotted rgb(216, 236, 238, 0.5);
  padding-bottom: 15px;
  letter-spacing: 0.6px;
  font-weight: 400;
  padding-top: 50px;
  color: #d8eeef;
}

li {
  list-style: none;
}

a.megalink {
  font-family: "gotham_boldregular" !important;
  font-size: 13px;
  letter-spacing: 1.3px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  padding: 10px 20px;
  border-bottom: 0.1px solid rgb(255, 255, 255, 0.15);
  margin-top: 10px;
}

a.megalink:hover {
  color: rgb(0, 0, 0, 1) !important;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.25s cubic-bezier(0.9, 0.14, 0.15, 0.86) 0s;
  padding: 10px 23px;
}

a.megalink:active,
a.megalink:focus {
  color: rgb(216, 236, 238, 1);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.megalinkServicios:hover {
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.megalinkServicios h2 {
  font-family: "Poppins" !important;
  display: block;
  margin-left: 60px;
  margin-top: -5px;
  font-weight: 600;
  font-size: 33px !important;
  letter-spacing: -1px;
  color: #cca876;
}

.megalinkServicios span {
  color: #c2ccc6;
  letter-spacing: 0.3px;
  font-weight: 400;
  margin-top: -48px;
  display: block;
  margin-left: 60px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.megalinkServicios i {
  font-size: 40px !important;
  color: #d8eeef;
  display: flex;
  justify-content: flex-start;
  opacity: 0.3;
}

.megalinkServiciosCuenta i {
  font-size: 35px !important;
  background: rgb(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 5px;
  opacity: 1;
}

a.megalinkServicios {
  font-family: "Poppins", sans-serif !important;
  color: #112022;
  text-decoration: none;
  padding-top: 12px;
  display: inline-block;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

a.megalinkServicios:hover {
  opacity: 0.7 !important;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.megalinkServiciosCuenta {
  font-family: "gotham_lightregular" !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #d8eeef;
  text-decoration: none;
  padding-top: 5px;
  display: block;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.megalinkServiciosCuenta:hover {
  opacity: 0.7 !important;
  color: #ccc;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
}

.megalinkServiciosCuenta span {
  color: #777;
  letter-spacing: 0.1px;
  font-weight: 400;
  margin-top: -44px;
  display: block;
  margin-left: 63px;
  position: absolute;
}

.megalinkServiciosCuenta i {
  color: #d8eeef;
  opacity: 0.3;
}

.megalinkServiciosCuenta p {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  color: #d8eeef;
  letter-spacing: 0.01px;
  font-weight: 500;
  margin-top: -25px;
  display: block;
  margin-left: 63px;
}
/*FIN ESTILOS PARA EL MEGAMENU*/

/*FOOTER*/
#pie {
  background: #112022;
  padding: 50px 50px;
}

textarea:focus,
input:focus,
input[type]:focus {
  background: #d8eeef;
  color: #000;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.99, 0.14, 0.15, 0.96) 0s;
  border-color: rgb(255, 255, 255, 0.2);
  outline: 0 none;
}

input {
  border: 1px solid rgb(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  padding-left: 10px;
  border-radius: 0px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.99, 0.14, 0.15, 0.96) 0s;
}

input:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px !important;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s cubic-bezier(0.99, 0.14, 0.15, 0.96) 0s;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}

#pie h6 {
  font-family: "Oswald", sans-serif !important;
  font-size: 14px !important;
  color: #cca876;
  font-weight: 400;
  border-bottom: 1px solid rgb(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

#pie p {
  font-family: "Roboto", sans-serif;
  font-size: 14px !important;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.3px;
}

#pie i {
  color: #cca876;
}

#pie a {
  font-family: "Roboto", sans-serif;
  font-size: 13px !important;
  padding-bottom: 2px;
  letter-spacing: 0.13px !important;
  font-weight: 500;
  color: #fff !important;
}

#pie a:hover {
  color: #d8fffe !important;
}
/*FIN DE FOOTER*/

/*scrolltop*/
#scrolltop {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s ease-in-out;
  position: fixed;
  bottom: 40px;
  width: 50px;
  height: 50px;
  left: 20px;
  background: #a681cc;
  border-radius: 50%;
}

#scrolltop:hover {
  transition: all 0.35s cubic-bezier(0.9, 0.14, 0.15, 0.96) 0s;
  background: #c681cc;
}

.top-button {
  text-decoration: none;
  color: #222;
  transition: all 0.5s ease-in-out;
  padding: 7px;
  display: block;
}

#scrolltop i {
  font-size: 30px !important;
  color: #fff !important;
  transform: translate(25%, 30%);
}

/*ANIMACIONES*/
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  transition: all 0.5s cubic-bezier(0.69, 0.14, 0.15, 0.99) 0s;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  transition: all 1.2s cubic-bezier(0.39, 0.14, 0.15, 0.99) 0s;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*RESPONSIVE*/
@media (max-width: 983px) {
  .menuCentro {
    display: none;
  }
  .menuDerecha {
    margin-top: -35px;
  }
}

@media (min-width: 980px) {
  .menuDerecha {
    display: none;
    justify-content: flex-end;
    position: relative;
  }
}

#socios img,
#cv img {
  margin-top: 10px !important;
}

.mapa {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-filter: grayscale(100%) !important;
  filter: grayscale(100%);
}

.footer {
  background: #f9f9f9;
  padding-top: 70px;
  padding-bottom: 70px;
  margin: 0px;
}

.footer i {
  font-size: 25px;
  color: #000 !important;
}

.footer h3 {
  font-family: "gotham_boldregular" !important;
  font-size: 18px !important;
  text-transform: uppercase;
  color: #000 !important;
  letter-spacing: 0.1px;
}

.footer h3::after {
  height: 1px;
  background: #000;
  bottom: 1;
  width: 10px;
}

.wrap-footer {
  background: rgba(166, 129, 204, 0.7);
  border: 2px solid rgba(166, 129, 204, 0.9);
  padding: 25px;
  min-height: 230px;
}

.footer p {
  font-family: "gotham_lightregular";
  color: #000;
  line-height: 1.2;
  font-size: 17px !important;
  text-rendering: optimizelegibility;
  letter-spacing: 0.3px;
}

.wt {
  width: auto !important;
  padding: 0em;
  border-radius: 50%;
  margin-bottom: 3em;
  margin-right: 1em;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9;
  visibility: visible;
  z-index: 1000;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  transition: all 1.2s cubic-bezier(0.39, 0.14, 0.15, 0.99) 0s;
}

.wt:hover {
  background: #fff;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  transition: all 1.2s cubic-bezier(0.39, 0.14, 0.15, 0.99) 0s;
  opacity: 0.6 !important;
}
