@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");
: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: #051441;
  font-size: 1em;
  font-weight: 500;
}

.titulo {
  flex-direction: column;
  color: #051441;
}
.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);
  }
}
.nota{
    padding-left:20px;
    color:#FF0000;
    font-size:12px;
    font-weight:400;
}
.menu_fomr {
  width: 100%;
  height: 80px;
  background: #04305c;
  margin-bottom: 30px;
}

.img_content {
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
}
.img_content .mac-logo {
  width: 150px;
  height: 80px;
  padding: 5px;
}
.img_content .mac-logo img {
  width: 100%;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_content .mac-text-menu {
  font-size: 11px;
  font-weight: 400;
  color: rgb(228, 241, 237);
  font-family: "Inter", sans-serif;
}
.img_content .mac-text-menu h1 {
  font-weight: 200;
  font-size:18px;
}

.content-footer {
  width: 100%;
  z-index: 999;
  position: fixed;
  background: azure;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-footer .autor {
  margin: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text_titulo {
  width: 90%;
  background-color: #ccdff8;
  margin: auto;
  padding: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .text_titulo {
    width: 82%;
  }
}
.text_titulo h1 {
  font-weight: 500;
  color: #162152;
  font-family: "Inter", sans-serif;
  padding-left: 20px;
  font-size:25px;
}

.form_content {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: auto;
}
@media (min-width: 768px) {
  .form_content {
    width: 90%;
  }
}
.form_content form {
  width: 90%;
}
@media (min-width: 768px) {
  .form_content form {
    width: 90%;
  }
}
.form_content .form_flex {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  gap: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .form_content .form_flex {
    flex-direction: row;
    padding-bottom: 20px;
  }
}
.form_content .form_flex .form_content_text {
  width: 100%;
}
.form_content .form_flex .form_content_text_mail {
  width: 30%;
}
@media (max-width: 768px) {
  .form_content .form_flex .form_content_text_mail {
   width: 100%;
  }
}
.form_content .formbold-form-btn-wrapper .formbold-btn {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 25px;
  border: none;
  font-weight: 500;
  background-color: #32b853;
  color: white;
  cursor: pointer;
}
.formbold-btn_mac {
    width: 30%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    background-color: #32b853;
    color: white;
    cursor: pointer;
}

.formbold-form-label {
  color: #0f1f3f;
  font-weight: 550;
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.formbold-form-input {
  width: 100%;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid #b5c3cc;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #263c77;
  outline: none;
  font-family: "Inter", sans-serif;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #3677ee;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}/*# sourceMappingURL=style.css.map */