@font-face {
  font-family: "londonbetweenregular";
  src: url("/fonts/londonbetween-webfont.woff2") format("woff2"), url("/fonts/londonbetween-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "londonmmregular";
  src: url("/fonts/londonmm-webfont.woff2") format("woff2"), url("/fonts/londonmm-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "londontworegular";
  src: url("/fonts/londontwo-webfont.woff2") format("woff2"), url("/fonts/londontwo-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --animate-delay: 0.5s;
}

@media screen and (max-width: 768px) {
  .xs-flex-col {
    flex-direction: column;
  }
}

body {
  background: #2F2F2D;
  font-family: "londonbetweenregular";
  overflow-x: hidden;
}

#contHeader {
  background: rgba(101, 20, 14, 0.8);
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

#headerTop {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 18px;
}

#headerTitle {
  background: rgba(85, 18, 13, 0.8);
  padding: 25px 0;
  align-items: center;
}
#headerTitle h1 {
  font-size: 36px;
  line-height: 50px;
  color: #FFFFFF;
}
#headerTitle .headerTitle-ico {
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-right: 22px;
}

.logoHeader {
  max-width: 162px;
}

#menuTop ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
#menuTop ul li a {
  color: #ffffff;
  transition: color 200ms ease-in-out;
}
#menuTop ul li a:hover {
  color: #F7AA27;
}
#menuTop ul li a.active {
  font-size: 24px;
  color: #F7AA27;
}

.page-inicio #menuTop .menu-inicio,
.page-nosotros #menuTop .menu-nosotros,
.page-area-de-negocios #menuTop .menu-areas-de-negocios,
.page-contacto #menuTop .menu-contacto {
  font-size: 24px;
  color: #F7AA27;
}

.btnMenuMobile {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 2;
}
.btnMenuMobile .icon {
  font-size: 20px;
}

.menuheaderMobileCont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(85, 18, 13, 0.97);
  z-index: 50;
  transform: scale(0);
  transition: 0.5s;
  transform-origin: 50% 50%;
  opacity: 0;
}
.menuheaderMobileCont nav.menuheaderMobile {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
}
.menuheaderMobileCont nav.menuheaderMobile ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 30% 0;
}
.menuheaderMobileCont nav.menuheaderMobile ul li a {
  font-family: "londontworegular";
  font-size: 20px;
  color: #FFFFFF;
}
.menuheaderMobileCont nav.menuheaderMobile ul li.menu-logo {
  margin-bottom: 40px;
}
.menuheaderMobileCont nav.menuheaderMobile .btnMenuMobile {
  right: 0;
  left: 50%;
  top: 60px;
  margin-left: -20px;
}
.menuheaderMobileCont.active {
  transform: scale(1);
  opacity: 1;
}

.redesTop a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.redesTop a img {
  fill: #3C3C3B;
}

#footer {
  color: #ffffff;
}
#footer #footerTop {
  background: #3C3C3B;
  border-top: 10px solid #F7AA27;
  padding: 40px 0;
}
#footer #footerTop .footerTop-ico {
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer #footerTop .footerTop-descr {
  font-size: 13px;
  line-height: 150%;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
#footer #footerDown {
  background: #2F2F2D;
  padding: 40px 0;
}

.bannerFullWidth {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 966px;
}
.bannerFullWidth #content {
  width: 100%;
  position: absolute;
  z-index: -1;
}
.bannerFullWidth .slide {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100vh;
  min-height: 1024px;
}
.bannerFullWidth .slide .slide-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  justify-content: center;
  position: relative;
}
.bannerFullWidth .slide .slide-info p {
  font-size: 60px;
  font-weight: 900;
  color: #FFFFFF;
  max-width: 100%;
  opacity: 0;
  top: -100px;
  position: relative;
}
.bannerFullWidth .slide .slide-info .btn-rojo {
  margin-top: 40px;
  opacity: 0;
  top: 50px;
  position: relative;
}
.bannerFullWidth .slide img {
  max-width: 100%;
}
.bannerFullWidth .glide__bullet {
  background-color: white;
  width: 20px;
  height: 20px;
}
.bannerFullWidth .glide__bullet--active {
  background-color: red;
}

.page-inicio #contHeader, .page-inicio #headerTitle {
  background: transparent;
}
.page-inicio .glide__bullets {
  bottom: 16em;
}

.home-info {
  background: rgba(101, 20, 14, 0.8);
  padding: 50px 0;
  position: relative;
  margin-top: -231px;
}
.home-info .home-info-ico {
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-info .home-info-ico img {
  height: 36px;
}
.home-info .home-info-title {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 15px;
  color: #fff;
}
.home-info .home-info-descr {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.page-nosotros .area-nosotros {
  background: url("../img/nosotros_img_0244.jpg") no-repeat #2F2F2D;
  background-size: cover;
  position: relative;
  padding: 390px 0 100px 0;
}
.page-nosotros .area-nosotros::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47, 47, 45, 0.8);
  content: "";
}

.page-area-de-negocios .glide__bullets {
  bottom: 130px;
  left: inherit;
  right: 40px;
}
.page-area-de-negocios #slider {
  position: relative;
}
.page-area-de-negocios #slider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47, 47, 45, 0.46);
  content: "";
}
.page-area-de-negocios .areas-negocios {
  background: rgba(101, 20, 14, 0.8);
  padding: 0px 0;
  position: relative;
  margin-top: -90px;
  border-bottom: 10px solid #F7AA27;
}
.page-area-de-negocios .areas-negocios .area a {
  font-size: 30px;
  line-height: 31px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 25px 30px;
  display: block;
}
.page-area-de-negocios .areas-negocios .area.active a {
  background: #F7AA27;
}
.page-area-de-negocios .areas-negocios .infoSeccion {
  position: absolute;
  top: -280px;
  left: 0;
  width: 100%;
}
.page-area-de-negocios .areas-negocios .infoSeccion h2 {
  font-weight: 500;
  font-size: 50px;
  line-height: 51px;
  text-transform: uppercase;
  color: #F2F2F2;
}
.page-area-de-negocios .areas-negocios .infoSeccion h2 span {
  border-bottom: 5px solid #F2F2F2;
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: inline-block;
}
.page-area-de-negocios .areas-negocios .infoSeccion p {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #F2F2F2;
}

.page-contacto .area-contacto {
  background: url("../img/contacto_img_0344.jpg") no-repeat #2F2F2D;
  background-size: cover;
  position: relative;
  padding: 390px 0 100px 0;
}
.page-contacto .area-contacto::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47, 47, 45, 0.8);
  content: "";
}
.page-contacto #areaMapa {
  min-height: 600px;
}

@media screen and (max-width: 1024px) {
  .bannerFullWidth {
    min-height: 760px;
  }
  .bannerFullWidth .slide {
    min-height: 760px;
  }
}
@media screen and (max-width: 768px) {
  #headerTop {
    padding-top: 50px;
    padding-bottom: 50px;
    top: 0;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(101, 20, 14, 0.8);
  }
  #headerTop #redesTop {
    top: 30px;
    position: relative;
  }

  #contHeader {
    position: relative;
  }

  .logoHeader {
    max-width: 130px;
  }

  .bannerFullWidth {
    min-height: 310px;
  }
  .bannerFullWidth .slide {
    min-height: 357px;
    height: auto;
  }

  .home-info .home-info-ico {
    width: 50px;
    height: 50px;
  }
  .home-info .home-info-ico img {
    max-width: 60%;
  }

  #slider canvas {
    height: auto !important;
    max-height: 357px;
    max-width: 100% !important;
  }

  .glide__slide {
    height: auto;
  }

  .glide__slides {
    position: relative;
    max-width: 100%;
  }

  #footer #footerTop .footerTop-ico {
    width: 30px;
    height: 30px;
  }
  #footer #footerTop .footerTop-ico img {
    max-width: 60%;
  }

  .page-inicio .home-info {
    margin-top: 0;
  }
  .page-inicio .glide__bullets {
    bottom: 20px;
  }

  .page-nosotros .area-nosotros {
    background-position: 50% 0;
    padding: 80px 0 40px 0;
  }

  .page-area-de-negocios .areas-negocios .infoSeccion {
    position: absolute;
    top: -300px;
  }

  .home-info-data {
    margin-top: 20px;
  }

  .footerTop-info {
    margin-top: 20px;
  }
  .footerTop-info:first-child {
    margin-top: 0;
  }

  xs:text-center {
    text-align: center;
  }

  .page-area-de-negocios .glide__bullets {
    bottom: 30px;
    left: inherit;
    right: 0;
  }
  .page-area-de-negocios .areas-negocios {
    margin-top: 0;
  }
  .page-area-de-negocios .areas-negocios .infoSeccion {
    position: relative;
    top: 0;
    padding: 40px 0;
  }
  .page-area-de-negocios #headerTitle .headerTitle-ico {
    border: none;
  }

  .page-contacto .area-contacto {
    padding: 80px 0 100px 0;
  }
}

/*# sourceMappingURL=agisa.css.map */
