@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Ubuntu:ital,wght@0,500;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,638;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Montserrat);
:root {
  --body: rgb(255, 255, 255);
  --font-size: 16px;
}

@font-face {
  font-family: "primary";
  src: url("../../font/Roboto-Bold.woff") format("woff");
  font-weight: bold;
}
:root {
  --fuente--primar:"Teko", sans-serif;
  --font-family: "Poppins", sans-serif;
  /* --fuente--secundary:'Ubuntu', sans-serif;
   --fuente--third:'Montserrat', sans-serif;
   --fuente--title:'Playfair Display', serif;
   --fuente--title-alt:'Yeseva One', cursive;*/
}

body {
  margin: 0;
  background: var(--body);
  font-family: var(--font-family);
}

/*hr{
  width: 100%;
  margin: 20px auto;
  height: 3px;
  border:none;
  margin: 0;
  border-radius: 20px;
  //background: rgb(252,252,252);
  background: linear-gradient(90deg, rgba(252,252,252,1) 4%, rgba(151,147,233,1) 51%, rgba(241,75,54,1) 100%);  
}*/
h2, h1, h3 {
  margin: 0;
}

P {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #072e69;
  font-size: 1em;
  font-weight: 500;
}

.titulo {
  flex-direction: column;
  color: #072e69;
}
.titulo hr {
  width: 35px;
  height: 4px;
  background: #FFB703;
  border-style: solid;
  border: none;
}

/*MIXIN PARA BANNER NOTIFICACIONES
@mixin notification {
  padding: 15px;   
 // background: $color-white;
  font-size: 0.99em;
  background-color: rgba($color-white, .7);
  border-radius: 10px;    
  font-family: var(--fuente--secundary);
  box-shadow: -2px 24px 21px -16px rgba(40,106,136,0.40);

}
//mixin para de degradados con  transition 
@mixin gradient-animation( $start, $end, $transTime ){
  background-size: 100%;
  background-image: linear-gradient($start, $end);
  position: relative;
  z-index: 100;
  &:before {
    background-image: linear-gradient($end, $start);
    content: '';    
    display: block;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    width: 100%;
    z-index: -100;
    transition: opacity $transTime;
  }
  &:hover {
     &:before {
       opacity: 1; 
     }
  }
}*/
.grid {
  display: grid;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  overflow: hidden;
}

/* Tamaño SMOLL - CELULARES */
.col-1 {
  grid-template-columns: repeat(1, 1fr);
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.col-9 {
  grid-template-columns: repeat(9, 1fr);
}

.col-10 {
  grid-template-columns: repeat(10, 1fr);
}

.col-11 {
  grid-template-columns: repeat(11, 1fr);
}

.col-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media only screen and (min-width: 576px) {
  .sm-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .sm-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .sm-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .sm-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .sm-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .sm-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .sm-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .med-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .med-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .med-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .med-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .med-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .med-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .med-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .med-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .med-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .med-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .med-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .med-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .med-span-1 {
    grid-column: span 1;
  }
  .med-span-2 {
    grid-column: span 2;
  }
  .med-span-3 {
    grid-column: span 3;
  }
  .med-span-4 {
    grid-column: span 4;
  }
  .med-span-5 {
    grid-column: span 5;
  }
  .med-span-6 {
    grid-column: span 6;
  }
  .med-span-7 {
    grid-column: span 7;
  }
  .med-span-8 {
    grid-column: span 8;
  }
  .med-span-9 {
    grid-column: span 9;
  }
  .med-span-10 {
    grid-column: span 10;
  }
  .med-span-11 {
    grid-column: span 11;
  }
  .med-span-12 {
    grid-column: span 12;
  }
}
@media only screen and (min-width: 992px) {
  .lg-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lg-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .lg-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .lg-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .lg-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .lg-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .lg-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .xl-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .xl-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .xl-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .xl-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .xl-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .xl-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .xl-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
/*para destok nav*/
.mac-header-informacion {
  width: 100%;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  padding-top: 5px;
  background: linear-gradient(to right, #23376b 20%, #2c366d 40%, #2f457a 60%, #0d4185 80%);
}
@media (max-width: 768px) {
  .mac-header-informacion {
    display: none;
  }
}
.mac-header-informacion .mac_contact_header {
  grid-column: 2/8;
  color: #e7eefd;
  transition: 0.7s;
  padding-top: 2px;
  display: flex;
  flex-direction: row;
}
.mac-header-informacion .mac_contact_header span {
  font-size: 30px;
}
.mac-header-informacion .mac_contact_header:hover {
  color: #3dff78;
}
.mac-header-informacion .mac_contact_header p {
  font-size: 20px;
}
.mac-header-informacion .mac_contact_header p:hover {
  color: #daffd0;
}
.mac-header-informacion .mac_icons {
  grid-column: 11/11;
  display: flex;
  flex-direction: row;
}
.mac-header-informacion .mac_icons .icon-facebook-square {
  color: #e7eefd;
  transition: 0.7s;
}
.mac-header-informacion .mac_icons .icon-facebook-square:hover {
  color: #aabcff;
}
.mac-header-informacion .mac_icons .icon-whatsapp {
  transition: 0.7s;
  color: #e7eefd;
}
.mac-header-informacion .mac_icons .icon-whatsapp:hover {
  color: #13a373;
}
.mac-header-informacion .mac_icons .icon-mail {
  transition: 0.7s;
  color: #e7eefd;
}
.mac-header-informacion .mac_icons .icon-mail:hover {
  color: #fd2146;
}
.mac-header-informacion .mac_icons span {
  font-size: 25px;
  border-radius: 5px;
  padding-left: 10px;
  align-items: center;
}

header {
  width: 100%;
  z-index: 999;
  /*width: 100%;
      //height: 100px;
      background: $color-first;  
      position: fixed;
      z-index: 9;  
      border: 1px solid #f5a700; 

  }
  .header-grid{
      width: 90%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(6,1fr);
      margin: auto;
      //background: $color-first; 
      @media (max-width:768px){
          width: 100%;       
      }  */
  /*}
  .tac-redes-sociales{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      grid-column: 2/-1;   
      .footer-contacts{
          height: 50%;
          .footer-{
              height: 100%;
              display: flex;
              flex-direction: row;
              color: $color-text-alt;
              column-gap: 1rem;
              font-size: 1.7em;            
              li{
                  list-style: none;
                  a{
                      color: $color-text-alt;
                      text-decoration: none;
                      transition: 500ms;
                  &:hover{
                      color: $color-card-alt;
                      opacity: 0.5;

                  }    
                  }
              }

          }    
      }       
      @media (max-width:768px){
          display: none;        
      }  
  }*/
  /*.tac-logo{    
      height: 100%;
      //grid-column: 1/span 4;
      grid-column: 1;
      grid-row: 1/span 2;
      img{
          //padding-left: 50px;
          width: 100%;
          height: 100%;

      }
      @media (max-width:768px){
          display: none;       
      }  */
  /*.mac-menu::afte{
      content: "";
      position: absolute;
      display: block;
      width: 170%;
      height: 500px;
      bottom: 0;
      right:0;
      z-index: -1;


      background: #353B51;
      transform-origin: bottom right;
      border: 0px solid #123568; 
      transform: skew(20deg,0deg);
      border-top-left-radius: 50px;
      border-bottom-left-radius: 20px;

  }*/
}
@media (min-width: 768px) {
  header {
    height: 80px;
  }
}
header .header-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (min-width: 768px) {
  header .header-grid {
    width: 100%;
    background: #FFB703;
    z-index: 999;
    background-color: #fff;
  }
}
header .mac-logo {
  display: none;
}
@media (min-width: 768px) {
  header .mac-logo {
    display: block;
    grid-column: 2/4;
  }
  header .mac-logo .img-logo {
    width: 120px;
    height: auto;
    padding: 5px;
  }
}
header .mac-menu {
  grid-column: 1/-1;
  display: flex;
}
@media (min-width: 768px) {
  header .mac-menu {
    grid-column: 5/12;
    display: flex;
  }
  header .mac-menu #mac-stiky.fixed {
    position: fixed;
    height: 50px;
    background: #EDF5FF;
  }
}
@media (min-width: 768px) {
  header #mac-stiky.fixed {
    position: fixed;
    top: 0;
    background: #EDF5FF;
    box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.5);
    animation: header-sticky 0.8s;
    transition: 0.7s;
  }
  header #mac-stiky.fixed .mac-menu {
    height: auto;
    background: #EDF5FF;
  }
  header #mac-stiky.fixed .mac-menu .nav-container {
    background: #EDF5FF;
  }
}
@keyframes header-sticky {
  from {
    padding-bottom: 0px;
    opacity: 0;
  }
  to {
    opacity: 1;
    padding-bottom: 0px;
  }
}
header .nav-container {
  background: #353B51;
  width: 100%;
  position: fixed;
  z-index: 999;
}
@media (min-width: 768px) {
  header .nav-container {
    background: #fff;
    position: initial;
    height: 80px;
  }
}
header .nav-container nav {
  width: 100%;
  height: 100%;
  margin: auto;
}
header .nav-container nav .menu-icon-container {
  width: 20px;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  header .nav-container nav .menu-icon-container {
    display: none;
  }
}
header .nav-container nav .menu-icon-container .menu-icon {
  position: relative;
  width: 100%;
}
header .nav-container nav .menu-icon-container .menu-icon .line-1, header .nav-container nav .menu-icon-container .menu-icon .line-2 {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fff;
  transition-property: transform, top;
  transition-delay: 0ms, 160ms;
  transition-duration: 200ms;
}
header .nav-container nav .menu-icon-container .menu-icon .line-1 {
  top: -4px;
}
header .nav-container nav .menu-icon-container .menu-icon .line-2 {
  top: 4px;
}
header .nav-container nav .mobile-nav {
  display: none;
  width: 100%;
  display: flex;
  width: 80%;
  justify-content: space-between;
  margin: auto;
  list-style: none;
  align-items: center;
  border-left: 50px;
}
header .nav-container nav .mobile-nav img {
  width: 60px;
  height: 40px;
  padding-top: 5px;
}
header .nav-container nav .mobile-nav a {
  color: #FFB703;
  font-size: 20px;
}
@media (min-width: 768px) {
  header .nav-container nav .mobile-nav a {
    display: none;
    color: #353B51;
  }
}
header .nav-container nav .desktop-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  text-align: center;
  height: 80px;
}
@media (max-width: 768px) {
  header .nav-container nav .desktop-nav {
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 0vh;
    background: #032047;
    justify-content: start;
    overflow: hidden;
    z-index: 99;
    transition: all 1000ms ease;
  }
}
header .nav-container nav .desktop-nav img {
  width: 150px;
  height: 100px;
  position: relative;
  top: 0;
}
header .nav-container nav .desktop-nav li {
  width: 100%;
}
@media (max-width: 780px) {
  header .nav-container nav .desktop-nav li {
    padding: 1em 0em;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid #616161;
  }
  header .nav-container nav .desktop-nav li:first-child {
    margin-top: 40px;
  }
}
header .nav-container nav .desktop-nav li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 400ms;
}
header .nav-container nav .desktop-nav li a:hover {
  opacity: 1;
  color: #FFB703;
}
@media (max-width: 780px) {
  header .nav-container nav .desktop-nav li a {
    align-items: flex-start;
    justify-content: left;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 780px) {
  header .nav-container nav .desktop-nav li a {
    color: #072e69;
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  header .nav-container .active .menu-icon .line-1 {
    top: 0;
    transform: rotateZ(45deg);
    transition-property: top, transform;
    transition-delay: 0ms, 160ms;
    transition-duration: 200ms;
  }
  header .nav-container .active .menu-icon .line-2 {
    top: 0;
    transform: rotateZ(-45deg);
    transition-property: top, transform;
    transition-delay: 0ms, 160ms;
    transition-duration: 200ms;
  }
}
@media (max-width: 768px) {
  header .active nav .desktop-nav {
    height: 100vh;
    background: #353B51;
  }
}

#container-slider {
  position: relative;
  display: block;
  width: 100%;
}

#slider {
  position: relative;
  width: 100%;
  min-height: 500px;
}

#slider li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 1s;
  z-index: -1;
  opacity: 0;
}

#container-slider .arrowPrev, #container-slider .arrowNext {
  font-size: 30pt;
  color: rgba(204, 204, 204, 0.65);
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
}

#container-slider .arrowNext {
  left: initial;
  right: 50px !important;
}

.content_slider {
  padding: 15px 30px;
  color: #FFF;
  width: 100%;
  height: 100%;
}

.content_slider div {
  text-align: center;
}

.content_slider h2 {
  font-family: "arial";
  font-size: 30pt;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content_slider p {
  font-size: 15pt;
  font-family: "arial";
  color: #FFF;
  margin-bottom: 20px;
}

#slider li .content_slider {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 125px;
}

.content_slider {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnSlider {
  color: #FFF;
  font-size: 15pt;
  font-family: "arial";
  letter-spacing: 1px;
  padding: 10px 50px;
  border: 1px solid #CCC;
  background: rgba(13, 13, 13, 0.55);
  border-radius: 31px;
  text-decoration: none;
  transition: 0.5s all;
}

.btnSlider:hover {
  background: #111;
  border: 1px solid #111;
}

.listslider {
  position: absolute;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 50%;
  bottom: 5%;
  list-style: none;
  z-index: 2;
  transform: translateX(-50%);
}

.listslider li {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin: 0 5px;
}

.listslider li a {
  background: #CCC;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}

.item-select-slid {
  background: #FFF !important;
}

@media screen and (max-width: 460px) {
  .content_slider h2 {
    font-size: 15pt !important;
  }
  .content_slider p {
    font-size: 12pt !important;
  }
  #container-slider .arrowPrev, #container-slider .arrowNext {
    font-size: 20pt;
  }
  #container-slider .arrowPrev {
    left: 15px;
  }
  #container-slider .arrowNext {
    right: 15px !important;
  }
  #slider {
    height: 400px;
    min-height: 400px;
  }
  #slider li .content_slider {
    padding: 10px 35px;
  }
  .btnSlider {
    padding: 10px 30px;
    font-size: 10pt;
  }
}
.content-banner {
  padding-top: 44px;
}
@media (min-width: 768px) {
  .content-banner {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content-banner .banner-img {
  width: 100%;
  height: auto;
}
.content-banner .banner-img img {
  width: 100%;
  min-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .content-banner .banner-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content-banner .banner {
  position: absolute;
  display: grid;
  grid-gap: 10px;
  top: 100px;
  padding-left: 50px;
  justify-content: center;
}
@media (min-width: 768px) {
  .content-banner .banner {
    top: 200px;
  }
}
.content-banner .banner h1 {
  color: #FFB703;
  font-weight: 500;
}
.content-banner .banner span {
  font-size: 2.7em;
  font-weight: 700;
  color: #072e69;
}
@media (min-width: 768px) {
  .content-banner .banner span {
    font-size: 3.7em;
  }
}
.content-banner .banner p {
  font-size: 1.2em;
  color: #072e69;
  width: 60%;
}
.content-banner .banner button {
  display: inline-block;
  width: 150px;
  padding: 1rem 1rem;
  background-color: #FFB703;
  color: #072e69;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  border-radius: 0.5rem;
  transition: transform 0.9s;
  border: 0px solid var(--color);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 400ms;
}
.content-banner .banner button:hover {
  text-decoration: inherit;
  color: #fff;
}
.content-banner .banner button:active {
  transform: scale(0.99);
}

.content-sectioninfo {
  margin-top: 50px;
  display: grid;
  justify-content: center;
  place-items: center;
}
.content-sectioninfo .sectioninfo-text {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #353B51;
  color: #FFB703;
  position: relative;
}
.content-sectioninfo .sectioninfo-text:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/banner-1.jpg") center/cover;
  opacity: 0.2;
}
.content-sectioninfo .sectioninfo-text span {
  font-size: 3em;
  position: relative;
}
.content-sectioninfo .sectioninfo-text p {
  position: relative;
  width: 80%;
  color: #EEF5FF;
  font-size: 1.3em;
}
.content-sectioninfo .sectioninfo-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .content-sectioninfo .sectioninfo-img {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
  }
}
.content-sectioninfo .sectioninfo-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .content-sectioninfo .sectioninfo-img img {
    width: 50%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    justify-content: center;
    align-items: center;
  }
}

.content-product {
  width: 100%;
  height: auto;
  display: grid;
  background: rgb(229, 247, 255);
  grid-template-columns: repeat(4, 1fr);
  padding-top: 150px;
  justify-content: center;
  align-items: center;
  justify-items: center;
  text-align: center;
  row-gap: 20px;
}
.content-product h1 {
  grid-column: 1/-1;
  font-size: 2.5em;
}
.content-product p {
  width: 80%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.2em;
  grid-column: 1/-1;
  position: relative;
}
.content-product .product-calaminon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  grid-column: 1/-1;
  background: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  .content-product .product-calaminon {
    flex-direction: row;
  }
}
.content-product .product-calaminon .product-info {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #e7eefd;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .product-info {
    width: 50%;
  }
}
.content-product .product-calaminon .product-info:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/curvo-tr5.jpg") center/cover;
  opacity: 0.2;
}
.content-product .product-calaminon .img-1 {
  height: 100%;
  position: relative;
  background: #e7eefd;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img-1:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../public/img/tac-instalacion.jpg") center/cover;
    opacity: 0.25;
  }
}
.content-product .product-calaminon .img-2 {
  background: #072e69;
  position: relative;
  color: #fff;
}
.content-product .product-calaminon .img-2 span {
  color: #fff;
}
.content-product .product-calaminon .img-2 h1 {
  color: #fff;
}
.content-product .product-calaminon .img-2 ul li {
  color: #fff;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img-2:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../public/img/tac-trabajando.jpg") center/cover;
    opacity: 0.25;
  }
  .content-product .product-calaminon .img-2 span {
    color: #fff;
  }
  .content-product .product-calaminon .img-2 h1 {
    color: #fff;
  }
  .content-product .product-calaminon .img-2 ul li {
    color: #fff;
  }
}
.content-product .product-calaminon .img-3 {
  position: relative;
  background: #e7eefd;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img-3:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../public/img/tac-melaminon.jpg") center/cover;
    opacity: 0.25;
  }
}
.content-product .product-calaminon .img-0 {
  background: #072e69;
  position: relative;
  color: #fff;
}
.content-product .product-calaminon .img-0 span {
  color: #fff;
}
.content-product .product-calaminon .img-0 h1 {
  color: #fff;
}
.content-product .product-calaminon .img-0 ul li {
  color: #fff;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img-0:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../public/img/techo-con-aluzinc.jpg") center/cover;
    opacity: 0.25;
  }
  .content-product .product-calaminon .img-0 span {
    color: #fff;
  }
  .content-product .product-calaminon .img-0 h1 {
    color: #fff;
  }
  .content-product .product-calaminon .img-0 ul li {
    color: #fff;
  }
}
.content-product .product-calaminon .img-4 {
  background: #072e69;
  position: relative;
  color: #fff;
  height: 100%;
}
.content-product .product-calaminon .img-4 span {
  color: #fff;
}
.content-product .product-calaminon .img-4 h1 {
  color: #fff;
}
.content-product .product-calaminon .img-4 ul li {
  color: #fff;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img-4:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../public/img/techo-con-aluzinc.jpg") center/cover;
    opacity: 0.25;
  }
}
.content-product .product-calaminon h1 {
  width: 80%;
  grid-column: 1/-1;
  font-size: 2.5em;
  position: relative;
  text-align: left;
}
.content-product .product-calaminon p {
  width: 80%;
  position: relative;
}
.content-product .product-calaminon ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.8em;
  width: 80%;
  text-align: left;
  padding-top: 10px;
}
.content-product .product-calaminon ul .icon-check-square {
  list-style: none;
  color: #010d14;
}
.content-product .product-calaminon ul .icon-check-square::before {
  color: #FFB703;
  font-weight: 200;
  padding: 10px 10px 12px 1px;
}
.content-product .product-calaminon span {
  width: 80%;
  color: #072e69;
  font-size: 1.5em;
  position: relative;
  text-align: left;
}
.content-product .product-calaminon .product-calaminon-img {
  width: 80%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .product-calaminon-img {
    width: 50%;
    height: 300px;
  }
}
.content-product .product-calaminon .product-calaminon-img img {
  width: 100%;
  min-height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .content-product .product-calaminon .product-calaminon-img img {
    width: 100%;
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) {
  .content-product .reverse {
    flex-direction: row-reverse;
  }
  .content-product .reverse .img4 {
    width: 50%;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-product .reverse .img4 img {
    width: 50%;
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) {
  .content-product .product-calaminon .img3 {
    width: 50%;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-product .product-calaminon .img3 img {
    width: 50%;
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mac_content_servicios {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  color: #353B51;
  row-gap: 50px;
}
@media (min-width: 780px) {
  .mac_content_servicios {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mac_content_servicios h1 {
  grid-column: 1/-1;
  text-align: center;
}
.mac_content_servicios h2 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.mac_content_servicios .mac_botton {
  width: 100px;
  height: 50px;
  display: inline-block;
  width: 150px;
  padding: 1rem 1rem;
  background-color: #FFB703;
  color: #072e69;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  border-radius: 0.5rem;
  transition: transform 0.9s;
  border: 0px solid var(--color);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 400ms;
  /*&::before{
      content: '';
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      background: url("../public/img/logo-mac-boton.png") center/cover;
      //opacity: 0.3; 
    }*/
}
.mac_content_servicios .mac_botton:hover {
  text-decoration: inherit;
  color: #fff;
}
.mac_content_servicios .mac_botton:active {
  transform: scale(0.99);
}
.mac_content_servicios .mac_service_one {
  text-align: center;
  width: 90%;
}
.mac_content_servicios .mac_service_one .mac_content_img {
  width: 100%;
  height: auto;
}
.mac_content_servicios .mac_service_one .mac_content_img img {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-nosotros {
  padding-top: 60px;
  width: 100%;
  display: grid;
  grid-row-gap: 50px;
  grid-template-columns: repeat(4, 1fr);
}
.content-nosotros h1 {
  grid-column: 1/span 4;
  margin: auto;
  color: #072e69;
}
.content-nosotros h1 hr {
  width: 35px;
  height: 4px;
  background: #FFB703;
  border-style: solid;
  border: none;
}
.content-nosotros p {
  width: 80%;
  grid-column: 1/span 4;
  margin: auto;
  text-align: center;
  color: #010d14;
  font-size: 1.3em;
}
.content-nosotros .tac-center {
  display: flex;
  width: 80%;
  padding: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFB703;
  transition: all 0.8s ease-in-out;
  opacity: 1;
  box-shadow: 0px 0px 75px -30px rgb(0, 0, 0);
}
.content-nosotros .tac-center:hover {
  background: #072e69;
  opacity: 0.9;
}
.content-nosotros .tac-center h1 {
  color: #072e69;
}
.content-nosotros .tac-center span {
  display: block;
  color: #072e69;
  font-size: 3em;
  font-weight: 600;
  transition: all 0.8s ease-in-out;
}
.content-nosotros .tac-center span:hover {
  color: #fff;
}
.content-nosotros .tac-vision {
  grid-column: 1/5;
  margin: auto;
}
@media (min-width: 768px) {
  .content-nosotros .tac-vision {
    grid-column: 1/3;
    height: 100%;
  }
}
.content-nosotros .tac-mision {
  margin: auto;
  grid-column: 1/5;
}
@media (min-width: 768px) {
  .content-nosotros .tac-mision {
    grid-column: 3/5;
    height: 100%;
  }
}

.content-footer {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 25rem), 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: flex-start;
  background: #353B51;
  background: url("../public/img/bg_footer.png") center/cover;
  width: 100%;
  height: auto;
  justify-content: center;
}
.content-footer .mac_content_footer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #fff;
  font-weight: 250;
}
.content-footer .mac_content_footer .mac_logo {
  width: 50%;
  height: 150px;
  margin: auto;
  background: #EDF5FF;
  border-radius: 25px;
  box-shadow: 4px 13px 15px 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}
.content-footer .mac_content_footer .mac_logo img {
  padding: 15px;
  width: 100%;
  height: auto;
}
.content-footer .mac_content_footer p {
  padding-top: 0px;
}
.content-footer .mac_content_footer p strong {
  font-weight: 500;
}
.content-footer .mac_content_footer span {
  font-weight: 500;
  padding-bottom: 10px;
  font-size: 1.3em;
  margin: auto;
}
.content-footer .mac_content_footer li {
  text-decoration: none;
  list-style: none;
  padding: 4px;
  border-bottom: 1px solid #ddd;
}
.content-footer .mac_content_footer li a {
  color: #fff;
  font-weight: 300;
  opacity: 0.8;
  transition: opacity 400ms;
}
.content-footer .mac_content_footer li a:hover {
  color: #FFB703;
}
@media (min-width: 768px) {
  .content-footer .add {
    padding-top: 70px;
  }
}
.content-footer .autor {
  width: 100%;
  grid-column: 1/-1;
  text-align: center;
  color: #EDF5FF;
  padding: 20px;
  border-top: solid 1px #EDF5FF;
}
.content-footer .autor p {
  font-weight: 300;
  font-size: 0.8em;
}

.mac_h1_themes {
  padding: 20px 20px 3px 20px;
  text-align: center;
  margin: auto;
  color: #353B51;
}
@media (min-width: 768px) {
  .mac_h1_themes {
    padding: 50px 50px 3px 50px;
    font-size: 2.5em;
  }
}

.mac_img_maquina {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mac_img_maquina img {
  width: 80px;
  height: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .mac_img_maquina img {
    width: 120px;
    height: auto;
  }
}

.mac_content_service {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
@media (min-width: 768px) {
  .mac_content_service {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
.mac_content_service .mac_content_serivice_img {
  height: auto;
}
.mac_content_service .mac_content_serivice_img .mac_img {
  width: 100%;
  height: auto;
  margin: auto;
  padding-bottom: 20px;
  transition: 0.6s;
  transition: opacity 0.35s, transform 0.35s;
}
.mac_content_service .mac_content_serivice_img .mac_img:hover {
  opacity: 0.9;
  box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
  -webkit-box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
  -moz-box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
}
@media (min-width: 768px) {
  .mac_content_service .mac_content_serivice_img .mac_img {
    width: 100%;
    height: 500px;
  }
}
.mac_content_service .mac_content_serivice_img .mac_img img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
  -webkit-box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
  -moz-box-shadow: 0px 0px 26px -3px rgba(0, 0, 0, 0.64) inset;
}
@media (min-width: 768px) {
  .mac_content_service .change_position {
    grid-row: 1;
  }
}
.mac_content_service .mac_content_service_description_bg {
  width: 100%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-flex-align: center;
  background: #353B51;
  position: relative;
  grid-column: 1/-1;
  width: 100%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-flex-align: center;
  background: #353B51;
  position: relative;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .mac_content_service .mac_content_service_description_bg {
    grid-column: auto;
  }
}
.mac_content_service .mac_content_service_description_bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/fondo_mac3.png") center/cover;
  opacity: 0.5;
}
.mac_content_service .mac_content_service_description_bg h1 {
  font-weight: 500;
  font-size: 22px;
  display: flex;
  align-items: center;
}
.mac_content_service .mac_content_service_description_bg h1 .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  font-weight: 200;
  font-size: 30px;
}
@media (min-width: 780px) {
  .mac_content_service .mac_content_service_description_bg h1 {
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 40px;
  }
}
.mac_content_service .mac_content_service_description_bg p {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.mac_content_service .mac_content_service_description_bg p .icon-check {
  color: #FFB703;
  padding: 2px;
  font-size: 16px;
}
.mac_content_service .mac_content_service_description_bg h1, .mac_content_service .mac_content_service_description_bg p {
  position: relative;
  color: #fff;
}
.mac_content_service .mac_content_service_description_bg .mac_content_service_description {
  padding: 20px;
}
@media (min-width: 768px) {
  .mac_content_service .mac_content_service_description_bg {
    grid-column: auto;
  }
}
.mac_content_service .mac_content_service_description_bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/fondo_mac3.png") center/cover;
  opacity: 0.5;
}
.mac_content_service .mac_content_service_description_bg h1 {
  font-weight: 500;
  font-size: 22px;
  display: flex;
  align-items: center;
}
.mac_content_service .mac_content_service_description_bg h1 .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  font-weight: 200;
  font-size: 30px;
}
@media (min-width: 780px) {
  .mac_content_service .mac_content_service_description_bg h1 {
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 40px;
  }
}
.mac_content_service .mac_content_service_description_bg p {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.mac_content_service .mac_content_service_description_bg p .icon-check {
  color: #FFB703;
  padding: 2px;
  font-size: 16px;
}
.mac_content_service .mac_content_service_description_bg h1, .mac_content_service .mac_content_service_description_bg p {
  position: relative;
  color: #fff;
}
.mac_content_service .mac_content_service_description_bg .mac_content_service_description {
  padding: 20px;
}
.mac_content_service .add_grid {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-flex-align: center;
  background: #353B51;
  position: relative;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .mac_content_service .add_grid {
    grid-column: 1/-1;
  }
}
.mac_content_service .add_grid::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/fondo_mac3.png") center/cover;
  opacity: 0.5;
}
.mac_content_service .add_grid h1 {
  font-weight: 500;
  font-size: 22px;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.mac_content_service .add_grid h1 .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  font-weight: 200;
  font-size: 30px;
}
@media (min-width: 780px) {
  .mac_content_service .add_grid h1 {
    font-size: 35px;
    font-weight: 400;
    padding: 30px;
  }
}
.mac_content_service .add_grid h2 {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #FFB703;
}
.mac_content_service .add_grid h2 .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  padding-right: 30px;
  font-weight: 200;
  font-size: 25px;
}
@media (min-width: 768px) {
  .mac_content_service .add_grid h2 .icon-chevron-right {
    padding-right: 20px;
  }
}
@media (min-width: 780px) {
  .mac_content_service .add_grid h2 {
    font-size: 25px;
    font-weight: 400;
    padding: 30px;
  }
}
.mac_content_service .add_grid hr {
  margin: 20px;
  background: #aabcff;
  height: 1px;
  border: none;
}
.mac_content_service .add_grid p {
  display: flex;
  align-items: center;
  align-items: center;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .mac_content_service .add_grid p {
    padding-left: 50px;
  }
}
.mac_content_service .add_grid p .icon-check {
  color: #FFB703;
  padding: 2px;
  font-size: 16px;
  padding-right: 10px;
}
.mac_content_service .add_grid h1, .mac_content_service .add_grid p {
  position: relative;
  color: #fff;
}
.mac_content_service .add_grid h2 {
  position: relative;
}
.mac_content_service .add_grid .mac_content_img {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .mac_content_service .add_grid .mac_content_img {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mac_content_service .add_grid .mac_content_img .mac_content_serivice_img {
  height: 500px;
}
@media (min-width: 768px) {
  .mac_content_service .add_grid .mac_content_img .mac_content_serivice_img {
    height: auto;
  }
}
.mac_content_service .add_grid .mac_content_img .mac_content_serivice_img .mac_img {
  width: 90%;
  height: auto;
  margin: auto;
  padding-bottom: 20px;
  transition: 0.6s;
  transition: opacity 0.35s, transform 0.35s;
}
.mac_content_service .add_grid .mac_content_img .mac_content_serivice_img .mac_img:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .mac_content_service .add_grid .mac_content_img .mac_content_serivice_img .mac_img {
    width: 100%;
    height: 500px;
  }
}
.mac_content_service .add_grid .mac_content_img .mac_content_serivice_img .mac_img img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
}
.mac_content_service .add_grid .mac_content_service_description {
  padding: 20px;
}
.content-contact {
  display: flex;
  width: 60%;
  margin: auto;
  padding-top: 20px;
}

.form-contact {
  width: 80%;
}
.form-contact .form {
  display: flex;
  flex-direction: column;
}
.form-contact input {
  padding: 10px;
  margin: 5px;
  border: solid 1px rgb(30, 66, 131);
  border-radius: none;
  font-size: 14px;
  font-weight: 300;
  color: rgb(0, 0, 0);
}

.mac_card_informacion {
  padding: 25px;
  display: grid;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  /*grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 50rem), 1fr));*/
  row-gap: 40px;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media (min-width: 780px) {
  .mac_card_informacion {
    padding-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
  }
}
.mac_card_informacion .mac_nosotros {
  display: block;
  color: #fff;
  font-family: var(--font-family);
  padding: 15px;
  text-align: center;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #3F4C50;
  border-radius: 10px;
  border: solid 1px #9EEB47;
  box-shadow: 0px 0px 17px 0px rgba(37, 46, 51, 0.75);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(37, 46, 51, 0.75);
  -moz-box-shadow: 0px 0px 17px 0px rgba(37, 46, 51, 0.75);
  transition: all 0.8s ease-in-out;
}
@media (min-width: 780px) {
  .mac_card_informacion .mac_nosotros {
    padding: 50px;
  }
}
.mac_card_informacion .mac_nosotros:hover {
  background-color: #D15D2A;
  color: #141618;
}
.mac_card_informacion .mac_nosotros:hover:hover hr {
  background: #353B51;
}
.mac_card_informacion .mac_nosotros h1 {
  font-weight: 600;
}
.mac_card_informacion .mac_nosotros hr {
  height: 4px;
  width: 30%;
  background: #FFB703;
  border: none;
  align-self: center;
  margin: 15px;
  transition: all 0.8s ease-in-out;
}

@keyframes anim-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mac_animacion {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes mac_animacio {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes anim-left {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes anim-right {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.mac_animacion, .mac_animacio, .anim-left, .anim-right, .anim-fade-in {
  animation-duration: 1s; /* la animacion dura X segundos */
  animation-delay: 0.5s; /* esperamos X segundos antes de hacer la animacion */
  animation-fill-mode: both; /* aplica estilos de la animacion antes y despues de reproducirla */
}

.mac_animacion {
  animation-name: mac_animacion;
}

.mac_animacio {
  animation-name: amac_animacion;
}

.anim-left {
  animation-name: anim-left;
}

.anim-right {
  animation-name: anim-right;
}

.anim-fade-in {
  animation-name: anim-fade-in;
}

.anim-pause-2 {
  animation-delay: 2s;
} /* la animacion empieza en 2 seg. */
.anim-pause-3 {
  animation-delay: 3s;
} /* la animacion empieza en 3 seg. */
.anim-pause-4 {
  animation-delay: 4s;
} /* la animacion empieza en 4 seg. */
.anim-pause-5 {
  animation-delay: 5s;
} /* la animacion empieza en 5 seg. */
/* todas las animaciones pausadas */
.paused * {
  animation-play-state: paused;
  animation-play-state: paused;
}

.mac_homologaciones {
  padding-top: 20px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-auto-flow: dense;
  row-gap: 20px;
}
@media (min-width: 780px) {
  .mac_homologaciones {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mac_homologaciones h1 {
  grid-column: 1/-1;
  align-self: center;
  margin: auto;
  font-size: 40px;
  font-weight: 800;
  color: #353B51;
  text-align: center;
}
@media (min-width: 780px) {
  .mac_homologaciones h1 {
    font-size: 50px;
  }
}
.mac_homologaciones span {
  margin: auto;
  font-size: 30px;
  font-weight: 600;
}
@media (min-width: 780px) {
  .mac_homologaciones span {
    font-size: 40px;
  }
}
.mac_homologaciones .mac_h {
  padding: 30px;
  width: 80%;
  height: auto;
  margin: auto;
  background: #e7eefd;
  box-shadow: 0px 10px 13px -7px #053068, -1px -1px 14px -7px rgba(0, 0, 0, 0);
  transition: all 0.8s ease-in-out;
}
.mac_homologaciones .mac_h:hover {
  background: #EDF5FF;
}
.mac_homologaciones .mac_h img {
  width: 80%;
  height: auto;
  display: flex;
  margin: auto;
}
@media (min-width: 780px) {
  .mac_homologaciones .mac_h img {
    font-size: 40px;
  }
}

.mac_section_servicio {
  width: 100%;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  box-shadow: 0 5px 5px -5px #000;
  background: #353B51;
  position: relative;
}
.mac_section_servicio::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/proyecto_okey_lubriexpress.jpg") center/cover;
  opacity: 0.3;
}
.mac_section_servicio h1 {
  padding-bottom: 30px;
  font-weight: 600;
}
@media (min-width: 780px) {
  .mac_section_servicio h1 {
    font-size: 40px;
    font-weight: 700;
  }
}
@media (min-width: 780px) {
  .mac_section_servicio p {
    width: 70%;
    font-size: 20px;
  }
}
.mac_section_servicio h1, .mac_section_servicio p {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.mac_section_servicio_home {
  padding-top: 50px;
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #353B51;
  position: relative;
}
.mac_section_servicio_home::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/home_mac_ingenieros.jfif") center/cover;
  opacity: 0.8;
}
.mac_section_servicio_home h1 {
  font-weight: 600;
}
@media (min-width: 780px) {
  .mac_section_servicio_home h1 {
    font-size: 40px;
    font-weight: 700;
  }
}
@media (min-width: 780px) {
  .mac_section_servicio_home p {
    width: 70%;
    font-size: 20px;
  }
}
.mac_section_servicio_home h1, .mac_section_servicio_home p {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.mac_home {
  width: 100%;
  padding: 30px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, #B9D2F0 -35%, #EDF5FF 50.11%, #F5FAFF 100%);
}
@media (min-width: 780px) {
  .mac_home {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 70px;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
.mac_home .mac_home_img {
  width: 100%;
}
.mac_home .mac_home_img img {
  width: 100%;
}

.container {
  left: 50%;
  top: 50%;
  transform: translate(0%, 0%);
  width: 90%;
  height: 500px;
  padding: 50px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

#slide {
  width: -moz-max-content;
  width: max-content;
  margin-top: 50px;
}

.item {
  width: 200px;
  height: 300px;
  background-position: 50% 50%;
  display: inline-block;
  transition: 0.5s;
  background-size: cover;
  position: absolute;
  border-radius: 20px;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
}
@media (max-width: 768px) {
  .item {
    width: 100px;
    height: 150px;
    bottom: 50%;
    transform: translate(-100%, 100%);
  }
}

.item2 {
  width: 200px;
  height: 300px;
  background-position: 50% 50%;
  display: inline-block;
  transition: 0.5s;
  background-size: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
}

.item:nth-child(1),
.item:nth-child(2) {
  left: 0;
  top: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border-radius: 20px;
}

.item:nth-child(3) {
  left: 50%;
  border-radius: 20px;
}

.item:nth-child(4) {
  left: calc(50% + 220px);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .item:nth-child(4) {
    left: calc(10% + 220px);
  }
}

.item:nth-child(5) {
  left: calc(50% + 440px);
}

.item:nth-child(n+6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.item .content {
  position: absolute;
  background: url("../public/img/fondo_mac3.png") center/cover;
  top: 50%;
  left: 50px;
  width: 40%;
  text-align: left;
  padding: 30px;
  border-radius: 20px;
  color: #eee;
  transform: translate(0, -50%);
  display: none;
  font-family: system-ui;
  animation: showcontent2 1s ease-in-out 1 forwards;
}
@media (max-width: 768px) {
  .item .content {
    width: 90%;
    top: 40%;
    left: 20px;
  }
}

.item:nth-child(2) .content {
  display: block;
  z-index: 11111;
}

hr {
  width: 30px;
  height: 3.5px;
  border: none;
  background: #FFB703;
  animation: showcontent 1s ease-in-out 1 forwards;
}

.item .name {
  font-size: 40px;
  font-weight: 800;
  color: linear-gradient(to right, #25e7d8 20%, #82f07d 40%, #82f07d 60%, #25e7d8 80%);
  background: #ff4415;
  background: linear-gradient(to right, #f7e011 0%, #fa6108 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  font-family: "Nunito", sans-serif;
  animation: showcontent 1s ease-in-out 1 forwards;
}

.item .des {
  margin: 20px 0;
  opacity: 0;
  animation: showcontent 1s ease-in-out 0.3s 1 forwards;
}

.item button {
  padding: 10px 20px;
  border: none;
  opacity: 0;
  animation: showcontent 1s ease-in-out 0.6s 1 forwards;
}

@keyframes showcontent {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
@keyframes showcontent2 {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(50, 50);
    filter: blur(0);
  }
}
.buttons {
  position: absolute;
  bottom: 30px;
  z-index: 222222;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .buttons {
    bottom: -110px;
    margin: auto;
    width: 100%;
  }
}
.buttons #prev i, .buttons #next i {
  color: #eee;
  font-size: 30px;
}

.buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #555;
  transition: 0.5s;
}
@media (min-width: 768px) {
  .buttons button {
    padding-left: 0px;
    padding-right: 0px;
    background: #353B51;
    opacity: 0.8;
  }
}

.buttons button:hover {
  background-color: #bac383;
}

.blog-slider {
  width: 80%;
  position: relative;
  min-width: 80%;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: 400px;
  transition: all 0.3s;
  background: url("../public/img/fondo_mac3.png") center/cover;
}

@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 90%;
    height: 500px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: auto;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #2253ad 0%, #07122e 74%);
  box-shadow: 4px 13px 30px 1px rgba(3, 5, 43, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #102449 0%, #142a66 74%);
  border-radius: 20px;
  opacity: 0.3;
}

.blog-slider__img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
.blog-slider__content .mac_home_text {
  display: flex;
  flex-direction: column;
}
.blog-slider__content .mac_home_text h1 {
  color: #ffbd43;
  padding: 5px;
  font-weight: 500;
  background: linear-gradient(to right, #23376b 20%, #2c366d 40%, #2f457a 60%, #0d4185 80%);
  border-radius: 10px;
}
.blog-slider__content .mac_home_text h1 span {
  padding: 5px;
  font-weight: 600;
  color: #0d4185;
  background: #e9f0f3;
  border-radius: 10px;
}
.blog-slider__content .mac_home_text p {
  padding-top: 20px;
  color: #e7eefd;
}

@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}

.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}
.mac_section_politicas {
  padding-top: 50px;
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #353B51;
  position: relative;
}
@media (min-width: 768px) {
  .mac_section_politicas {
    padding-top: 0px;
  }
}
.mac_section_politicas::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/coberturas.jpg") center/cover;
  opacity: 0.5;
}
.mac_section_politicas h1 {
  font-weight: 600;
  text-align: center;
}
.mac_section_politicas h1 hr {
  width: 40px;
  height: 4px;
  background: #d8bb38;
  border-style: solid;
  border: none;
}
@media (min-width: 780px) {
  .mac_section_politicas h1 {
    font-size: 45px;
    font-weight: 600;
  }
}
.mac_section_politicas h1, .mac_section_politicas p {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.mac_pol_container {
  display: grid;
  justify-content: center;
  align-content: center;
  justify-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #001955 -3.6%, #004BCD 184.39%);
}
@media (min-width: 780px) {
  .mac_pol_container {
    width: 100%;
  }
}
.mac_pol_container .mac_pol_container_1 {
  width: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  justify-items: center;
  row-gap: 30px;
}
@media (min-width: 780px) {
  .mac_pol_container .mac_pol_container_1 {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    justify-items: center;
    justify-content: center;
  }
}
.mac_pol_container .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  font-weight: 400;
}
.mac_pol_container h1 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  width: 90%;
}
@media (min-width: 780px) {
  .mac_pol_container h1 {
    grid-column: 1/-1;
    font-size: 28px;
  }
}
.mac_pol_container .mac_pol_container_card {
  width: 90%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .mac_pol_container .mac_pol_container_card {
    padding: 30px;
  }
}
.mac_pol_container .mac_pol_container_card .mac_bottonn {
  padding-bottom: 50px;
  margin: auto;
}
.mac_pol_container .mac_pol_container_card .mac_botton {
  width: 100px;
  height: 50px;
  border-radius: 5px;
  display: inline-block;
  width: 150px;
  padding: 1rem 1rem;
  background-color: #FFB703;
  color: #072e69;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  border-radius: 0.5rem;
  transition: transform 0.9s;
  border: 0px solid var(--color);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 400ms;
  /*&::before{
      content: '';
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      background: url("../public/img/logo-mac-boton.png") center/cover;
      //opacity: 0.3; 
    }*/
}
.mac_pol_container .mac_pol_container_card .mac_botton:hover {
  text-decoration: inherit;
  color: #fff;
}
.mac_pol_container .mac_pol_container_card .mac_botton:active {
  transform: scale(0.99);
}
.mac_pol_container .mac_pol_container_card .mac_img {
  width: 100%;
  border-radius: 15px;
}
.mac_pol_container .mac_pol_container_card .mac_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.mac_pol_container .mac_pol_container_card h2 {
  padding: 30px;
  color: #353B51;
}
.mac_pol_container .mac_pol_container_card hr {
  width: 85%;
  text-align: center;
  padding-left: 30px;
  margin: auto;
}
.mac_pol_container .mac_pol_container_card p {
  padding: 30px;
}
.mac_pol_container .mac_pol_container_card ul {
  padding: 30px 50px 30px 50px;
}
.mac_pol_container .theme_second {
  background: #EDF5FF;
}
.mac_pol_container .theme_one {
  background: #fff;
}
.mac_pol_container .theme_one p {
  padding: 10px 30px 0px 20px;
  text-align: justify;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .mac_pol_container .theme_one hr {
    width: 80%;
    background: #FFB703;
    margin: auto;
    height: 2px;
    border: none;
  }
}
.mac_pol_container .theme_one .icon-check {
  color: #FFB703;
  padding: 10px;
  font-size: 20px;
}

.one {
  background: linear-gradient(180deg, #B9D2F0 -35%, #EDF5FF 50.11%, #F5FAFF 100%);
}
@media (min-width: 780px) {
  .one .one_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.one .mac_pol_container_1 .mac_h1_theme {
  color: #353B51;
}
@media (min-width: 768px) {
  .one .mac_pol_container_1 .mac_h1_theme {
    font-size: 28px;
    font-weight: 600;
  }
}

a {
  color: #333333;
  font-weight: 400;
  outline: none;
  text-decoration: none;
  transition: 0.5s;
}

.container {
  width: 100%;
  width: 90%;
  margin: auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 868px) {
  .row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.column {
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px;
}

.section-title {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 45px 0 30px 0;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  background: #eeeeee;
}

.effect {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
}

.effect .effect-img {
  font-size: 0;
  overflow: hidden;
}

.effect .effect-img img {
  width: 100%;
  height: 400px;
  transition: all 0.3s;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.effect:hover .effect-img img {
  transform: scale(1.2);
}

.effect .effect-text {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.effect .effect-text .inner {
  position: absolute;
  padding: 15px;
  z-index: 1;
}

.effect .effect-text:before,
.effect .effect-text:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  content: "";
}

.effect .effect-text:before {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  left: -100%;
  top: 0;
}

.effect .effect-text:after {
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  left: 100%;
  bottom: 0;
}

.effect:hover .effect-text {
  opacity: 1;
}

.effect:hover .effect-text:after,
.effect:hover .effect-text:before {
  animation-delay: 0.1s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.effect:hover .effect-text:after {
  animation-name: left-up;
}

.effect:hover .effect-text:before {
  animation-name: right-dn;
}

@keyframes left-up {
  0% {
    left: 100%;
    height: 0;
  }
  50% {
    left: 0;
    height: 0;
  }
  100% {
    height: 100%;
    left: 0;
  }
}
@keyframes right-dn {
  0% {
    left: -100%;
    height: 0;
  }
  50% {
    left: 0;
    height: 0;
  }
  100% {
    height: 100%;
    left: 0;
  }
}
.effect .effect-text h2 {
  height: 45px;
  color: #ffffff;
  font-size: 25px;
  margin: 0;
}

.effect .effect-text p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}

.effect .effect-btn .btn {
  display: inline-block;
  height: 35px;
  padding: 7px 15px;
  color: #333333;
  background: #ffffff;
}

.mac_content_boock {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  background-color: powderblue;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  background: #353B51;
  position: relative;
}
@media (min-width: 768px) {
  .mac_content_boock {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.mac_content_boock::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/fondo_mac3.png") center/cover;
  opacity: 0.5;
}
.mac_content_boock .prev-btn {
  transform: translateX(0%);
}
@media (min-width: 768px) {
  .mac_content_boock .prev-btn {
    transform: translateX(-180%);
  }
}
.mac_content_boock .next-btn {
  transform: translateX(0%);
}
@media (min-width: 768px) {
  .mac_content_boock .next-btn {
    transform: translateX(180%);
  }
}
.mac_content_boock .book {
  position: relative;
  width: 400px;
  height: 500px;
  margin: auto;
  transition: transform 0.5s;
  transform: translate(0%);
}
@media (min-width: 768px) {
  .mac_content_boock .book {
    transform: translate(50%);
  }
}
.mac_content_boock .book .paper .front .front-content .mac_img_boock {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mac_content_boock .book .paper .front .front-content .mac_img_boock img {
  width: 100%;
  height: auto;
}
.mac_content_boock .book .paper .back .back-content .mac_img_boock {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mac_content_boock .book .paper .back .back-content .mac_img_boock img {
  width: 100%;
  height: auto;
}

.paper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  perspective: 1500px;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: left;
  transition: transform 0.5s;
}

.front {
  z-index: 1;
  backface-visibility: hidden;
}

.back {
  z-index: 0;
}

.front-content,
.back-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-content {
  transform: rotateY(90deg);
}
@media (min-width: 768px) {
  .back-content {
    transform: rotateY(180deg);
  }
}

/* Paper flip effect */
.flipped .front,
.flipped .back {
  transform: rotateY(-180deg);
}
/* Controller Buttons */
button {
  position: relative;
  border: none;
  font-size: 22px;
  color: #353B51;
  background-color: transparent;
  cursor: pointer;
  margin: 10px;
  transition: transform 0.5s;
  transition: 0.5s;
  z-index: 99;
}
@media (min-width: 768px) {
  button {
    padding-left: 130px;
    padding-right: 130px;
  }
}
button:hover {
  font-size: 25px;
  color: #FFB703;
}
button #prev-btn {
  transform: translateX(0px);
}

button:focus {
  outline: none;
}

i {
  font-size: 50px;
  color: gray;
}

/* Paper stack order */
#p1 {
  z-index: 7;
}

#p2 {
  z-index: 6;
}

#p3 {
  z-index: 5;
}

#p4 {
  z-index: 4;
}

#p5 {
  z-index: 3;
}

#p6 {
  z-index: 2;
}

#p7 {
  z-index: 1;
}

.evento_titulo {
  margin: auto;
  color: #041227;
  text-align: center;
}
@media (max-width: 768px) {
  .evento_titulo {
    padding-top: 50px;
  }
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-top-big {
  margin-top: 5rem !important;
}

main {
  background: #041227;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}

.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */
}

.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInRight 1s ease-out;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: transparent;
  letter-spacing: 0.2rem;
  line-height: 1;
  transition: all 0.2s;
  color: #eee;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 0.5rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}

.btn--white::after {
  background-color: #fff;
}

.btn--green {
  background: linear-gradient(to right, #fc466b, #3f5efb);
  color: #fff;
}

.btn--green::after {
  background-color: #55c57a;
}

.section-plans {
  padding: 4rem 0 4rem 0;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 35rem;
}

.card__side {
  height: 35rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side .img_card {
  width: 100%;
  height: auto;
}
.card__side .img_card img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__side--front {
  background-color: #fff;
}

.card__side--front-1 {
  background: linear-gradient(-45deg, #f403d1, #64b5f6);
}

.card__side--front-2 {
  background: linear-gradient(-45deg, #f321d7, #ffec61);
}

.card__side--front-3 {
  background: linear-gradient(-45deg, #24ff72, #9a4eff);
}

.card__side--back {
  transform: rotateY(180deg);
}

.card__side--back-1 {
  background: linear-gradient(-45deg, #64b5f6, #f403d1);
}

.card__side--back-2 {
  background: linear-gradient(-45deg, #ffec61, #f321d7);
}

.card__side--back-3 {
  background: linear-gradient(-45deg, #9a4eff, #24ff72);
}

.card:hover .card__side--front-1,
.card:hover .card__side--front-2,
.card:hover .card__side--front-3 {
  transform: rotateY(-180deg);
}

.card:hover .card__side--back {
  transform: rotateY(0);
}

.card__title {
  height: 15rem;
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card__title--1 .fas {
  font-size: 5rem;
}

.card__title--2 .fas {
  font-size: 5rem;
}

.card__title--3 .fas {
  font-size: 5rem;
}

.card__heading {
  font-size: 3.5rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 75%;
  font-family: "Berkshire Swash", cursive;
}

.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.card__details {
  padding: 0 2rem 2rem;
}

.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}

.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}

.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__cta .img_card_back {
  width: 80%;
  margin: auto;
}
.card__cta .img_card_back img {
  width: 50%;
  height: auto;
}
.card__cta .card__price-cant {
  font-family: "Fredericka the Great", cursive;
  font-size: 30px;
}
.card__cta .card__price-descripcion {
  font-family: "Fredericka the Great", cursive;
  font-size: 30px;
  color: #e8f808;
}

.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-family: "Montserrat";
  text-align: center;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.card__price-only {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 200;
  color: #e8f808;
  font-family: "Fredericka the Great", cursive;
  font-size: 2.7em;
}

.card__price-value {
  font-size: 3rem;
  font-weight: 700;
  background-image: url(https://media4.giphy.com/media/3oEdv1GbekAakxXO8g/giphy.gif?cid=ecf05e47dm7h08mlw3dt8kd30k3ltlpi4c7egcswigf82fnz&ep=v1_gifs_search&rid=giphy.gif&ct=g);
  background-size: cover;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 10px 0;
  font-size: 2.5em;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media (min-width: 576px) {
  .row {
    flex-direction: row;
    gap: 30px;
  }
}

.row:not(:last-child) {
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.row [class^=col-] {
  float: left;
}

.row .col-1-of-3 {
  width: calc((100% - 12rem) / 3);
  margin: auto;
  width: 80%;
  padding-bottom: 20px;
}

.containerrr {
  display: flex;
  /*   border:1px solid red; */
  height: 100%;
  height: 80px;
  align-items: center;
}

svg {
  display: block;
  font: 8.5em "Montserrat";
  width: 960px;
  height: auto;
  margin: 0 auto;
  font-size: 7em;
}

.text-copy {
  fill: none;
  stroke: white;
  stroke-dasharray: 6% 29%;
  stroke-width: 2px;
  stroke-dashoffset: 0%;
  animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
  stroke: #f88629;
  animation-delay: -1;
}

.text-copy:nth-child(2) {
  stroke: #bd3309;
  animation-delay: -2s;
}

.text-copy:nth-child(3) {
  stroke: #f02308;
  animation-delay: -3s;
}

.text-copy:nth-child(4) {
  stroke: #BD0034;
  animation-delay: -4s;
}

.text-copy:nth-child(5) {
  stroke: #dd9207;
  animation-delay: -5s;
}

@keyframes stroke-offset {
  100% {
    stroke-dashoffset: -35%;
  }
}
.contenedor_mac {
  background: #d5fcff;
}

#lista3 {
  width: 80%;
  margin: auto;
  counter-reset: li;
  list-style: none;
  *list-style: decimal;
  font: 15px "trebuchet MS", "lucida sans";
  padding: 0;
  margin-bottom: 4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
#lista3 body {
  background: #64b5f6;
}

#lista3 ol {
  margin: 0 0 0 2em;
}

#lista3 li {
  position: relative;
  display: block;
  padding: 0.4em 0.4em 0.4em 0.8em;
  *padding: 0.4em;
  margin: 0.5em 0 0.5em 2.5em;
  background: #ddd;
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

#lista3 li:hover {
  background: #fa8072;
}

#lista3 li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -2.5em;
  top: 50%;
  margin-top: -1em;
  background: #fa8072;
  height: 2em;
  width: 2em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
}

#lista3 li:after {
  position: absolute;
  content: "";
  border: 0.5em solid transparent;
  left: -1em;
  top: 50%;
  margin-top: -0.5em;
  transition: all 0.3s ease-out;
}

#lista3 li:hover:after {
  left: -0.5em;
  border-left-color: #fa8072;
}/*# sourceMappingURL=style.css.map */