* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none !important;
  scroll-behavior: smooth;
}

/*Variables*/
:root {
  --bgyellow: #fffdee;
  --blue: #035094;
  --blueText: #1a3967;
  --aqua: #62849b;
  --gray: #5a5a5a;
  --mamey: #faa489;
  --green: #41b49d;
  --light-green: #92cfc0;
  --black: #000000;
  --white: #ffffff;
  --dark-green: #004036;
  --nav-green: #006958;
  --red: #ea5539;
  --destello: #befede;
  --rosa: #fadcd2;
  --cielo: #c4f4ff;
  --degradado: linear-gradient(90deg, #4e93ac 0%, #56a2a8 35%, #65bda4 100%);
  --animTransition: all ease-out 0.3s;
  --fs-1: 12px;
  --fs-2: 14px;
  --fs-3: 16px;
  --fs-4: 18px;
  --fs-5: 20px;
  --fs-6: 24px;
  --fs-7: 30px;
  --fs-8: 36px;
  --fs-9: 56px;
  --fs-10: 82px;
  --fs-11: 96px;
}

@media (max-width: 900px) {
  :root {
    --fs-1: 12px;
    --fs-2: 14px;
    --fs-3: 14px;
    --fs-4: 16px;
    --fs-5: 16px;
    --fs-6: 20px;
    --fs-7: 24px;
    --fs-8: 32px;
    --fs-9: 36px;
    --fs-10: 42px;
    --fs-11: 52px;
  }
}

@media (max-width: 550px) {
  :root {
    --fs-1: 12px;
    --fs-2: 14px;
    --fs-3: 14px;
    --fs-4: 16px;
    --fs-5: 16px;
    --fs-6: 20px;
    --fs-7: 22px;
    --fs-8: 26px;
    --fs-9: 30px;
    --fs-10: 38px;
    --fs-11: 42px;
  }
}

body {
  background-color: var(--bgyellow);
}

.non-scroll {
  overflow: hidden;
}

/*Layout Clases*/
section {
  width: 100%;
}
.normal-padd {
  padding: 0px 50px;
}
.section-vertical-padd {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}
.full-row {
  width: 100%;
}
.center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex.align-top {
  align-items: flex-start;
}
.flex.align-center {
  align-items: center;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.column {
  flex-direction: column;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.start-bottom {
  align-items: flex-end;
}

.flex .col1 {
  width: 10%;
}
.flex .col2 {
  width: 20%;
}
.flex .col3 {
  width: 30%;
}
.flex .col4 {
  width: 40%;
}
.flex .col45 {
  width: 45%;
}
.flex .col5 {
  width: 50%;
}
.flex .col6 {
  width: 60%;
}
.flex .col7 {
  width: 70%;
}
.flex .col8 {
  width: 80%;
}
.flex .col9 {
  width: 90%;
}
.full-img {
  width: 100%;
}
img {
  max-width: 100%;
}
@media (min-width: 1600px) {
  .normal-padd {
    padding: 0px 100px;
  }
  .header-wapper {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .section-vertical-padd {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media (max-width: 900px) {
  .normal-padd {
    padding: 0px 25px;
  }
  .section-vertical-padd {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .center-mobile {
    text-align: center;
  }
  .justify-center-mobile {
    justify-content: center;
  }
  .no-lm-mobile {
    margin-left: 0px !important;
  }
  .mobile-column {
    flex-direction: column;
  }
  .reverse-mobile-column {
    flex-direction: column-reverse;
  }
  .mobile-column .col1,
  .mobile-column .col2,
  .mobile-column .col3,
  .mobile-column .col4,
  .mobile-column .col45,
  .mobile-column .col5,
  .mobile-column .col6,
  .mobile-column .col7,
  .mobile-column .col8,
  .mobile-column .col9,
  .reverse-mobile-column .col1,
  .reverse-mobile-column .col2,
  .reverse-mobile-column .col3,
  .reverse-mobile-column .col4,
  .reverse-mobile-column .col45,
  .reverse-mobile-column .col5,
  .reverse-mobile-column .col6,
  .reverse-mobile-column .col7,
  .reverse-mobile-column .col8,
  .reverse-mobile-column .col9 {
    width: 100% !important;
  }
}

/*margins*/
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mr-1 {
  margin-right: 10px;
}
.mr-2 {
  margin-right: 20px;
}
.mr-3 {
  margin-right: 30px;
}
.mr-4 {
  margin-right: 40px;
}

/*max-widths*/
.max-8 {
  max-width: 800px;
}
.max-9 {
  max-width: 1000px;
}

/*!Main*/
main {
  width: 100%;
  overflow-x: hidden;
}

textarea:focus,
input:focus {
  outline: none;
}

/*? Botones*/
.btn {
  /* text-transform: uppercase; */
  padding: 1rem 2rem;
  border-radius: 20px;
  transition: var(--animTransition);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  border: 0px;
  display: inline-block;
  font-size: var(--fs-3);
}
.btn:hover {
  text-decoration: none !important;
}
.btn.degradado {
  background: var(--degradado);
}
.btn.degradado:hover {
  color: var(--blue);
}
.btn.white-btn {
  border: 3px solid var(--white);
}
.btn.btn.white-btn:hover {
  color: var(--green);
  border-color: var(--green);
}
.btn.green {
  background-color: var(--light-green);
  border: 3px solid var(--light-green);
  color: var(--white);
}
.btn.green:hover {
  color: var(--blue);
}
.btn.green-border {
  border: 3px solid var(--light-green);
  color: var(--light-green);
}
.btn.green-border:hover {
  color: var(--blue);
}

.btn.blue {
  background-color: var(--blue);
  color: var(--white);
}
.btn.blue:hover {
  color: var(--green);
}

.btn.mamey {
  background-color: var(--red);
  color: var(--rosa);
}
.btn.mamey:hover {
  background-color: var(--white);
  color: var(--red);
}

/*? Grids */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 32px;
}
.grid-3-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 32px;
}
.grid-4-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 32px;
}

@media (max-width: 900px) {
  .grid-4-col {
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
  }
}

.grid-3-col a:hover,
.grid-4-col a:hover {
  text-decoration: underline;
}

@media (max-width: 550px) {
  .grid-4-col,
  .grid-3-col,
  .grid-2-col {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}

/*?Items*/
.very-big .item-img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1 !important;
}
.item-img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.5;
}
.item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item {
  width: 100%;
}

.auto-grid .item-img-wrapper {
  aspect-ratio: auto !important;
}

/*?Images*/
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------------------------------------------*/
/*loading*/
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: var(--green) 1.5em 0 0 0, var(--green) 1.1em 1.1em 0 0,
    var(--green) 0 1.5em 0 0, var(--green) -1.1em 1.1em 0 0,
    rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0,
    var(--green) 0 -1.5em 0 0, var(--green) 1.1em -1.1em 0 0;
  box-shadow: var(--green) 1.5em 0 0 0, var(--green) 1.1em 1.1em 0 0,
    var(--green) 0 1.5em 0 0, var(--green) -1.1em 1.1em 0 0,
    var(--green) -1.5em 0 0 0, var(--green) -1.1em -1.1em 0 0,
    var(--green) 0 -1.5em 0 0, var(--green) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
