* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none !important;
  scroll-behavior: smooth !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -o-font-smoothing: antialiased !important;
}

/*Variables*/
:root {
  --turquesa: #91dbd2;
  --naranja: #e7511b;
  --naranja-deem: #d55e35;
  --page-bg: #fffef2;
  --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-85: 42px;
  --fs-9: 55px;
  --fs-10: 72px;
  --fs-11: 96px;
  --fs-12: 130px;
}

@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-85: 34px;
    --fs-9: 36px;
    --fs-10: 56px;
    --fs-11: 56px;
    --fs-12: 80px;
  }
}

@media (max-width: 450px) {
  :root {
    --fs-1: 12px;
    --fs-2: 14px;
    --fs-3: 14px;
    --fs-4: 16px;
    --fs-5: 16px;
    --fs-6: 18px;
    --fs-7: 20px;
    --fs-8: 22px;
    --fs-85: 25px;
    --fs-9: 28px;
    --fs-10: 30px;
    --fs-11: 36px;
    --fs-12: 40px;
  }
}

.non-scroll {
  overflow: hidden;
}

/*Layout Clases*/
.main-wrapper {
  width: 100%;
  overflow: hidden;
}
.section {
  width: 100%;
  position: relative;
}
.anim-section {
  overflow: hidden;
}
.padding-global {
  padding: 0px 3rem;
}
.container-medium {
  width: 100%;
  margin: auto;
  max-width: 64rem;
}
.container-large {
  width: 100%;
  margin: auto;
  max-width: 80rem;
}
.container-small {
  width: 100%;
  margin: auto;
  max-width: 52rem;
}
.padding-section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.padding-section.no-b {
  padding-bottom: 0rem !important;
}
.padding-section.no-t {
  padding-top: 0rem !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 (max-width: 768px) {
  .padding-global {
    padding: 0px 2rem;
  }
  .padding-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .center-mobile {
    text-align: center;
  }
  .justify-center-mobile {
    justify-content: center;
  }
  .no-lm-mobile {
    margin-left: 0px !important;
  }
  .mobile-column {
    flex-direction: column;
    row-gap: 2rem;
  }
  .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;
  }
}

@media (max-width: 450px) {
  .padding-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .padding-global {
    padding: 0px 1.5rem;
  }
}

/*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;
}
.mb-20 {
  margin-bottom: 80px;
}
.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;
}

/*!Main*/
.main-wrapper {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--page-bg);
}

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

/*? Botones*/
.btn {
  width: auto;
  padding: 0.5rem 2rem 0.5rem 2rem;
  border-radius: 5rem;
  display: inline-block;
  transition: var(--animTransition);
  background-color: var(--turquesa);
  border: 2px solid var(--turquesa);
  color: black;
  font-size: var(--fs-6);
  font-weight: bold;
}
.btn.is-orange {
  background-color: var(--naranja);
  border: 2px solid var(--naranja);
  color: white;
}
.btn:hover {
  color: var(--turquesa);
  background-color: var(--page-bg);
}
.btn.is-orange:hover {
  color: var(--naranja);
  background-color: var(--page-bg);
}

/*? max-widths */
.max-400 {
  max-width: 400px;
}
.max-500 {
  max-width: 500px;
}
.max-600 {
  max-width: 600px;
}
.max-700 {
  max-width: 700px;
}
.max-800 {
  max-width: 800px;
}
.max-900 {
  max-width: 900px;
}
.max-1000 {
  max-width: 1000px;
}
