/*=========== VARIABLES CSS =========*/
:root {
  --header-height: 4rem;
  /*=========== colores =========*/
  --first-color: hsl(214, 72%, 48%);
  --first-color-alt: hsl(216, 82%, 45%);
  --first-color-dark: hsl(220, 80%, 25%);
  --first-color-light: hsl(214, 72%, 95%);
  --accent-color: hsl(210, 100%, 56%);
  --black-color: hsl(0, 0%, 100%);
  --card-color: rgb(255, 255, 255);
  --title-color: hsl(220, 20%, 15%);
  --text-color: hsl(220, 10%, 35%);
  --text-color-light: hsl(220, 10%, 55%);
  --body-color: hsl(220, 20%, 98%);
  --container-color: hsl(0, 0%, 100%);
  --border-color: hsl(220, 15%, 90%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  /*=========== tipografía =========*/
  --body-family: 'Inter', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*============= font weight =========*/
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  /*========== spacing ==========*/
  --mb-0-5: .5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /*========== border radius ==========*/
  --radius-sm: .375rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.75rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*============ BASE ===========*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-family);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.3;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/*=========== CONTAINER GENERAL =========*/
.container {
  max-width: 1200px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 5rem 0 3rem;
}

.section__title {
  position: relative;
  font-size: var(--h1-font-size);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.section__title::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--first-color), var(--accent-color));
  border-radius: 2px;
}

/*=========== HEADER & NAV =========*/
.header {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: all .35s ease;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: #fff;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-bold);
}

.nav__logo-img {
  width: 4.5rem;
  border-radius: var(--radius-sm);
}

.nav__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: inline-flex;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
  transition: color .3s;
}

.button--header {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: #fff;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 200;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: left;
  row-gap: 0;
  padding-top: 5rem;
  padding-left: 2rem;
}

.nav__item {
  border-bottom: 1px solid var(--border-color);
}

.nav__link {
  display: block;
  padding: 1rem 0;
  color: var(--title-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semibold);
  transition: color .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  font-size: 1.8rem;
  color: var(--title-color);
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  cursor: pointer;
  transition: color .3s;
}

.nav__close:hover {
  color: var(--first-color);
}

.show-menu {
  right: 0 !important;
}

/* Scroll header */
.scroll-header {
  background-color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

.scroll-header .button--header {
  background-color: var(--first-color);
  color: #fff;
}

/* Active link */
.active-link {
  color: var(--first-color) !important;
}

/*=========== HERO / HOME =======*/
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(3, 34, 99, .92) 0%, 
    rgba(53, 100, 201, .82) 50%,
    rgba(30, 80, 180, .75) 100%);
  z-index: 1;
}

.home__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.home__content {
  max-width: 640px;
}

.home__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}

.home__badge i {
  font-size: 1.1rem;
}

.home__title {
  font-size: var(--biggest-font-size);
  color: #fff;
  font-weight: var(--font-extrabold);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home__description {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.home__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/*=========== BUTTONS =======*/
.button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-color: #fff;
  font-size: var(--normal-font-size);
  font-family: var(--body-family);
  font-weight: var(--font-semibold);
  color: var(--first-color-dark);
  padding: .875rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  border: 2px solid transparent;
}

.button:hover {
  background-color: var(--first-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 100, 201, .3);
}

.button i {
  font-size: 1.1rem;
  transition: transform .3s;
}

.button:hover i {
  transform: translateX(3px);
}

.button--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}

.button--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  box-shadow: none;
}

.button--small {
  padding: .6rem 1.5rem;
  font-size: var(--small-font-size);
}

.button--header {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.button--header:hover {
  background: #fff;
  color: var(--first-color-dark);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-color: var(--first-color);
  color: #fff;
  border: none;
  padding: .875rem 2rem;
}

.button--flex:hover {
  background-color: var(--first-color-alt);
  color: #fff;
}

/*=========== ABOUT / HISTORIA =======*/
.about__container {
  row-gap: 2rem;
  align-items: center;
}

.about__img-wrapper {
  justify-self: center;
}

.about__img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__description {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
}

.about__details {
  display: grid;
  row-gap: .75rem;
  margin-bottom: 2rem;
}

.about__details-description {
  display: inline-flex;
  align-items: flex-start;
  column-gap: .75rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

.about__details-icon {
  font-size: 1.1rem;
  color: var(--first-color);
  margin-top: .15rem;
  flex-shrink: 0;
}

/*=========== TIMELINE =======*/
.hexa {
  border: 0;
  float: left;
  text-align: center;
  height: 35px;
  width: 60px;
  font-size: 22px;
  background: var(--first-color-light);
  color: #3c3c3c;
  position: relative;
  margin-top: 15px;
}

.hexa:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--first-color-light);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  top: -15px;
}

.hexa:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 15px solid var(--first-color-light);
  bottom: -15px;
}

.timeline {
  position: relative;
  padding: 0;
  width: 100%;
  margin-top: 20px;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  margin-left: -1.5px;
  background: linear-gradient(to bottom, transparent 0%, var(--border-color) 8%, var(--border-color) 92%, transparent 100%);
  z-index: 5;
  border-radius: 2px;
}

.timeline li {
  padding: 2em 0;
}

.timeline .hexa {
  width: 16px;
  height: 10px;
  position: absolute;
  background: linear-gradient(135deg, var(--first-color), var(--accent-color));
  z-index: 5;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: -30px;
  margin-top: 0;
  border-radius: 2px;
}

.timeline .hexa:before {
  border-bottom: 4px solid var(--first-color);
  border-left-width: 8px;
  border-right-width: 8px;
  top: -4px;
}

.timeline .hexa:after {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top: 4px solid var(--first-color);
  bottom: -4px;
}

.direction-l,
.direction-r {
  float: none;
  width: 100%;
  text-align: center;
}

.flag-wrapper {
  text-align: center;
  position: relative;
}

.flag {
  position: relative;
  display: inline;
  background: #fff;
  font-weight: var(--font-semibold);
  z-index: 15;
  padding: 8px 14px;
  text-align: left;
  border-radius: var(--radius-sm);
  color: var(--title-color);
}

.direction-l .flag:after,
.direction-r .flag:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  height: 0;
  width: 0;
  margin-left: -8px;
  border: solid transparent;
  border-bottom-color: #fff;
  border-width: 8px;
  pointer-events: none;
}

.direction-l .flag,
.direction-r .flag {
  box-shadow: var(--shadow-md);
}

.time-wrapper {
  display: block;
  position: relative;
  margin: 6px 0 0 0;
  z-index: 14;
  line-height: 1em;
  vertical-align: middle;
  color: #fff;
}

.direction-l .time-wrapper,
.direction-r .time-wrapper {
  float: none;
}

.time {
  background: linear-gradient(135deg, var(--first-color), var(--accent-color));
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
}

.desc {
  position: relative;
  margin: 1em 0 0 0;
  padding: 1.25em;
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 15;
  border-radius: var(--radius-md);
  color: var(--text-color);
  line-height: 1.7;
  font-size: var(--small-font-size);
}

.direction-l .desc,
.direction-r .desc {
  position: relative;
  margin: 1em 1em 0 1em;
  padding: 1.25em;
  z-index: 15;
}

@media (min-width: 768px) {
  .timeline {
    width: 660px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .timeline .hexa {
    left: -28px;
    right: auto;
    top: 8px;
  }

  .timeline .direction-l .hexa {
    left: auto;
    right: -28px;
  }

  .direction-l {
    position: relative;
    width: 310px;
    float: left;
    text-align: right;
  }

  .direction-r {
    position: relative;
    width: 310px;
    float: right;
    text-align: left;
  }

  .flag-wrapper {
    display: inline-block;
  }

  .flag {
    font-size: 1rem;
  }

  .direction-l .flag:after {
    left: auto;
    right: -16px;
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: #fff;
    border-width: 8px;
  }

  .direction-r .flag:after {
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: #fff;
    border-width: 8px;
    left: -8px;
  }

  .time-wrapper {
    display: inline;
    vertical-align: middle;
    margin: 0;
  }

  .direction-l .time-wrapper {
    float: left;
  }

  .direction-r .time-wrapper {
    float: right;
  }

  .time {
    padding: 5px 14px;
  }

  .direction-r .desc {
    margin: 1em 0 0 0.75em;
  }
}

@media (min-width: 992px) {
  .timeline {
    width: 800px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .direction-l {
    width: 380px;
  }

  .direction-r {
    width: 380px;
  }
}

/*=============== BENEFICIOS / STEPS ===============*/
.steps__bg {
  background: linear-gradient(135deg,
    hsl(220, 80%, 25%) 0%,
    hsl(214, 72%, 48%) 50%,
    hsl(210, 100%, 56%) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
}

.steps__container {
  gap: 1.25rem;
  padding-top: 1rem;
}

.steps__title {
  color: #fff;
}

.steps__title::before {
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.4));
}

.steps__card {
  background-color: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all .35s ease;
  border: 1px solid transparent;
}

.steps__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-color);
}

.steps__card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--first-color), var(--accent-color));
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.25rem;
  transition: transform .3s;
}

.steps__card:hover .steps__card-number {
  transform: scale(1.1) rotate(-3deg);
}

.steps__card-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semibold);
  margin-bottom: .5rem;
  color: var(--title-color);
}

.steps__card-description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
}

.contact__text {
  color: var(--text-color-light);
  margin-bottom: 2rem;
  font-size: var(--normal-font-size);
}

.contact__data {
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semibold);
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.contact__icon {
  font-size: 1.25rem;
  color: var(--first-color);
}

.contact__form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 2rem;
}

.contact__content {
  position: relative;
  height: 3.5rem;
  border-bottom: 2px solid var(--border-color);
  transition: border-color .3s;
}

.contact__content:focus-within {
  border-color: var(--first-color);
}

.contact__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  background: none;
  color: var(--title-color);
  font-family: var(--body-family);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label {
  position: absolute;
  top: 1rem;
  width: 100%;
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  transition: all .3s ease;
  pointer-events: none;
}

.contact__area {
  height: 8rem;
}

.contact__area textarea {
  resize: none;
}

/* Input focus float label */
.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown) + .contact__label {
  top: -.75rem;
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
}

/*=============== AVISO DE PRIVACIDAD ===============*/
#aviso {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: hsl(220, 20%, 12%);
  color: hsl(220, 10%, 70%);
  padding-top: 4rem;
}

.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 3rem;
  border-radius: var(--radius-sm);
}

.footer__title {
  font-size: var(--h3-font-size);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
}

.footer__description {
  font-size: var(--small-font-size);
  color: hsl(220, 10%, 55%);
  line-height: 1.7;
}

.footer__data {
  display: grid;
  row-gap: .75rem;
}

.footer__link {
  font-size: var(--small-font-size);
  color: hsl(220, 10%, 65%);
  transition: all .3s;
  display: inline-block;
}

.footer__link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer__information {
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer__information i {
  color: var(--first-color);
}

.footer__bottom {
  border-top: 1px solid hsl(220, 15%, 20%);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
}

.footer__copy {
  font-size: var(--smaller-font-size);
  color: hsl(220, 10%, 45%);
}

.footer__copy a {
  color: var(--first-color);
  font-weight: var(--font-medium);
  transition: color .3s;
}

.footer__copy a:hover {
  color: var(--accent-color);
}

/*=============== MODAL ===============*/
.pdfobject-container {
  height: 30rem;
  border: 1rem solid rgba(0, 0, 0, 0.1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0vh;
  background-color: transparent;
  overflow: hidden;
  transition: background-color .3s ease;
  z-index: 9999;
}

.modal.open {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
}

.modal.open > .content-wrapper {
  transform: scale(1);
  opacity: 1;
}

.modal .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 90%;
  max-width: 700px;
  height: 65%;
  overflow: auto;
  margin: 0;
  padding: 2.5rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
  transform: scale(.9);
  opacity: 0;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  transition-delay: .1s;
}

.modal .content-wrapper .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  transition: .25s linear;
}

.modal .content-wrapper .close:before,
.modal .content-wrapper .close:after {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 1px;
}

.modal .content-wrapper .close:before {
  transform: rotate(-45deg);
}

.modal .content-wrapper .close:after {
  transform: rotate(45deg);
}

.modal .content-wrapper .close:hover {
  transform: rotate(90deg);
}

.modal .content-wrapper .close:hover:before,
.modal .content-wrapper .close:hover:after {
  background-color: #ef4444;
}

.modal .content-wrapper .modal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.modal .content-wrapper .modal-header h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
}

.modal .content-wrapper .content {
  position: relative;
  display: flex;
  padding-top: 1rem;
}

.modal .content-wrapper .content p {
  font-size: var(--small-font-size);
  line-height: 1.8;
  color: var(--text-color);
}

.modal .content-wrapper .modal-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-color);
  gap: .75rem;
}

.modal .content-wrapper .modal-footer .action {
  padding: .75rem 1.5rem;
  border: none;
  background-color: var(--first-color);
  border-radius: 50px;
  color: white;
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
  font-family: var(--body-family);
  cursor: pointer;
  transition: all .3s;
}

.modal .content-wrapper .modal-footer .action:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.modal .content-wrapper .modal-footer .action:first-child {
  background-color: var(--first-color);
}

.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--small-font-size);
}

.form-check-input {
  accent-color: var(--first-color);
  width: 1rem;
  height: 1rem;
}

/*=============== BREAKPOINTS ===============*/
/* Small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .home__title {
    font-size: 2rem;
  }

  .steps__bg {
    padding: 2rem 1rem;
  }

  .steps__card {
    padding: 1.5rem;
  }

  .about__img {
    max-width: 250px;
  }

  .contact__form {
    padding: 1.5rem;
  }
}

/* Medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__img {
    max-width: 300px;
  }
}

@media screen and (min-width: 767px) {
  .section {
    padding: 6rem 0 3rem;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    padding-top: 0;
    flex-direction: row;
    column-gap: 2.5rem;
  }

  .nav__item {
    border-bottom: none;
  }

  .nav__link {
    position: relative;
    font-size: var(--normal-font-size);
    color: rgba(255,255,255,.85);
    font-weight: var(--font-medium);
    padding: .25rem 0;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: width .3s ease;
  }

  .nav__link:hover::after {
    width: 100%;
  }

  .nav__link:hover {
    color: #fff;
  }

  .scroll-header .nav__link {
    color: var(--text-color);
  }

  .scroll-header .nav__link::after {
    background: var(--first-color);
  }

  .scroll-header .nav__link:hover {
    color: var(--first-color);
  }

  .button--header {
    display: inline-flex;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__img {
    max-width: 380px;
  }

  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
}

@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__content {
    max-width: 580px;
  }

  .section__title {
    padding-left: 1.75rem;
  }

  .section__title::before {
    height: 32px;
    width: 4px;
    top: 6px;
  }

  .steps__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps__bg {
    padding: 3.5rem 2.5rem;
  }

  .steps__card-title {
    font-size: var(--normal-font-size);
  }

  .footer__container {
    grid-template-columns: 1.5fr .75fr .75fr .75fr;
  }
}

@media screen and (min-width: 1200px) {
  .home__content {
    max-width: 640px;
  }

  .about__container {
    column-gap: 4rem;
  }

  .about__img {
    max-width: 450px;
  }
}