/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap");

/* Generals styles */
:root {
  background-color: #f5f5f5;

  /* Customs properties */
  /* ---- colors ---- */
  --primary-color: #0069e1;
  --secondary-color: #0f73e6;
  --color-lines: rgba(17, 0, 116, 0.2);
  --color-text: rgba(0, 1, 37, 0.8);

  /* ---- sizes ---- */
  --size-nav: 1.125rem;
  --size-title-hero: clamp(1.5rem, 0.9875rem + 2.5625vw, 4.0625rem);
  --size-section-title: 1.25rem;
  --size-btn: clamp(1rem, 0.886rem + 0.303vw, 1.25rem);
  --size-text: clamp(1.125rem, 0.983rem + 0.379vw, 1.438rem);
  --size-feat: clamp(1.7rem, 1.382rem + 0.848vw, 2.4rem);

  /* ---- weights ---- */
  --mont: 300;
  --mont-bold: 600;
  --syne-bold: 700;
  --syne-semibold: 600;
  --syne-medium: 500;

  /* ----- margins ---- */
  --mb-sections: 200px;
}

html,
body {
  height: 100%;
  /* Soft scroll */
  scroll-behavior: smooth;
}

/* ---- General styles ---- */
a {
  text-decoration: none;
}

h1,
h2,
h3,
a {
  font-family: Syne, sans-serif;
}

/* ----- Customs classes ----- */
.br {
  display: block;
}

p .dest {
  font-weight: 600;
}

.dest {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  border: 2px solid var(--primary-color);
  padding: 15px 20px;
  min-width: 300px;
  text-align: center;
  font-family: Syne, sans-serif;
  font-size: var(--size-btn);
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  /* button reset */
  outline: none;
  background: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color);
  color: #f5f5f5;
  transform: translateY(-2px);
}

.socials {
  display: flex;
  gap: 1rem;
}

.social {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social:hover {
  transform: translateY(-3px) rotate(8deg);
}

.social:first-child {
  background-image: url(../img/insta.svg);
}
.social:nth-child(2) {
  background-image: url(../img/behance.svg);
}
.social:last-child {
  background-image: url(../img/twitter.svg);
}

/* ---------- HERO STYLES ------------- */
header {
  width: 100%;
  height: 100vh;
  background: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: var(--mb-sections);
  display: flex;
  flex-flow: column;
}

/* ---- MENU ---- */
.menu {
  width: 95%;
  margin: 0 auto;
  height: 6rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  z-index: 99999;
}

.logo {
  width: 200px;
}

.logo img {
  transition: 0.3s ease-in-out;
}

.logo img:hover {
  opacity: 1;
}

.list-nav {
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
}

.nav-item a {
  text-decoration: none;
  color: rgba(0, 1, 37, 0.8);
  font-family: Syne, sans-serif;
  font-size: var(--size-nav);
  font-weight: var(--syne-semibold);
  padding-bottom: 2px;
  position: relative;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.05rem;
}

.nav-item a:hover {
  color: var(--secondary-color);
}

.activeMenu a {
  color: var(--secondary-color);
}

/* HERO CONTENT */
.hero-content {
  margin: auto;
  width: 90%;
}

h1 {
  font-family: Syne, sans-serif;
  font-weight: var(--syne-bold);
  font-size: var(--size-title-hero);
  margin-bottom: 50px;
}

h1 > span {
  color: var(--primary-color);
  /* display: block; */
  /* line-height: clamp(5rem, 1.5rem + 11.2vw, 12rem); */
}

header .btn {
  min-width: clamp(12.5rem, 9.659rem + 7.576vw, 18.75rem);
}

/* --------- HOME SECTION ---------- */
.whoami {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;

  margin-bottom: var(--mb-sections);
}

.whoamiText {
  flex: 2;
  border-right: 1px solid var(--color-lines);
}

.whoamiText h3 {
  font-size: clamp(1.9rem, 1.485rem + 1.107vw, 2.813rem);
  font-weight: var(--syne-semibold);
  padding-right: 75px;
  line-height: 3.5rem;
}

.whoamiTitle {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  padding-left: 6.25rem;
}

.whoamiTitle h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
}

/* ----- AWARDS SECTION --------- */
.awards {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-areas:
    "awardsTitle awardsTitle awardsTitle awardsTitle awardsTitle"
    "award1 award2 award3 award4 award5";
  column-gap: 2rem;

  margin-bottom: var(--mb-sections);
}

.awardTitle {
  grid-area: awardsTitle;
  border-bottom: 1px solid var(--color-lines);

  margin-bottom: 6.25rem;
}

.awardTitle h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
  margin-bottom: 1rem;
}

.award {
  text-align: center;
}

.award .awardImage {
  width: 7.813rem;
  height: 6.25rem;
  /* aspect-ratio: 1 / 1; */
  margin: 0 auto;
  opacity: 0.5;
  max-height: 6rem;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  margin-bottom: 1.875rem;
}

.award1 {
  grid-area: award1;
}
.award2 {
  grid-area: award2;
}
.award3 {
  grid-area: award3;
}
.award4 {
  grid-area: award4;
}
.award5 {
  grid-area: award5;
}

.awardImage1 {
  background-image: url(../img/graduation_cap.svg);
}
.awardImage2 {
  background-image: url(../img/hospital.svg);
}
.awardImage3 {
  background-image: url(../img/neightbours.svg);
}
.awardImage4 {
  background-image: url(../img/discoteca.svg);
}
.awardImage5 {
  background-image: url(../img/building.svg);
}

.award h4 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  font-weight: var(--syne-medium);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.award h3 {
  font-family: Syne, sans-serif;
  font-weight: var(--syne-medium);
  font-size: 1.875rem;
  line-height: 2.5rem;
}

.award h3 > span {
  display: block;
}

/* ----- ABOUT ME STYLES --------- */
.aboutme {
  width: 95%;
  padding-top: 10px;
  margin-bottom: var(--mb-sections);
}

.aboutme h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
  margin: 0 auto;
  margin-bottom: 1rem;
  text-align: right;
}

.aboutmeContent {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.875rem;
}

.aboutmeImage {
  flex: 7;
  height: 43.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/about.jpg);
}

.aboutmeText {
  flex: 6;
  border-top: 1px solid var(--color-lines);
  display: flex;
  align-items: center;
}

.aboutmeText p {
  text-align: right;
  color: var(--color-text);
  font-family: Montserrat, sans-serif;
  font-weight: var(--mont);
  font-size: var(--size-text);
  width: 95%;
  margin-left: auto;
  line-height: 2.6rem;
}

/* ---------- features STYLES ---------- */
.features {
  width: 90%;
  margin: 0 auto;
  margin-bottom: var(--mb-sections);

  display: flex;
  flex-flow: row wrap;
}

.featuresTitle {
  grid-area: featuresTitle;
  width: 100%;
  border-bottom: 1px solid var(--color-lines);
  margin-bottom: 9.375rem;
}

.featuresTitle h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
  margin-bottom: 1rem;
}

.featuresContent {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding-block: 1.25rem;
}

.feat {
  padding-inline: 3rem;
  padding-block: 4rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 65px;
}

.feat1, .feat2 {
  border-bottom: 1px solid var(--color-lines);
}

.feat1, .feat3 {
  border-right: 1px solid var(--color-lines);
}

.featText h3 {
  font-size: var(--size-feat);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-semibold);
  margin-bottom: 1.563rem;
  line-height: 2.5rem;
}

.featText p {
  font-size: var(--size-text);
  color: var(--color-text);
  font-family: Montserrat, sans-serif;
  font-weight: var(--mont);
  line-height: 2.6rem;
}

.feat .symbol {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 72px;
  aspect-ratio: 25 / 24;
  opacity: 0.5;
}

.feat:first-child .symbol {
  background-image: url(../img/featureIco1.svg);
}
.feat:nth-child(2) .symbol {
  background-image: url(../img/featureIco2.svg);
}
.feat:nth-child(3) .symbol {
  background-image: url(../img/featureIco3.svg);
}
.feat:last-child .symbol {
  background-image: url(../img/featureIco4.svg);
}

/* ------------ PLANS STYLES -------------- */
.plans {
  width: 90%;
  margin: 0 auto;
  margin-bottom: var(--mb-sections);

  display: grid;
  grid-template-areas:
    "plansTitle plansTitle plansTitle"
    "plan1 plan2 plan3";
  gap: 4rem;
}

.plansTitle {
  grid-area: plansTitle;
  width: 100%;
  border-bottom: 1px solid var(--color-lines);
  margin-bottom: 6.25rem;
  text-align: right;
}

.plansTitle h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
  margin-bottom: 1rem;
}

.plan {
  text-align: center;
  min-width: 230px;
  border: 1px solid var(--color-lines);
  flex: 1 1 300px;
  border-radius: 13px;
  min-height: 600px;
  padding-block: 2rem;
  padding-inline: 2.5rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan1 {
  grid-area: plan1;
}
.plan2 {
  grid-area: plan2;
}
.plan3 {
  grid-area: plan3;
}

.plan.pro {
  flex: 1.25 1 300px;
  transform: translateY(-3rem);
  box-shadow: 0px 5px 13px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.plan.pro::after {
  content: "Más Popular";
  display: block;
  background-color: var(--primary-color);
  color: white;
  font-family: Syne, sans-serif;
  font-weight: var(--syne-medium);
  padding: 10px;
  min-width: 200px;
  position: absolute;
  top: -1rem;
  border-radius: 3px;
  font-size: 1rem;

  right: -60px;
  top: 30px;
  transform: rotate(45deg);
}

.planImage {
  min-height: 12.5rem;
  width: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  margin-bottom: 1.875rem;
}

.planImage1 {
  background-image: url(../img/newBalance.svg);
}
.planImage2 {
  background-image: url(../img/nike.svg);
}
.planImage3 {
  background-image: url(../img/pioneer.svg);
}

.plan h4 {
  font-family: Syne, sans-serif;
  font-weight: var(--syne-medium);
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.9rem;
}

.plan h3 {
  font-size: 2.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: var(--mont-bold);
  letter-spacing: 0.2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.plan .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan .header span {
  display: block;
  font-size: 0.85rem;
  font-family: Montserrat, sans-serif;
  color: var(--color-text);
  line-height: 1.1rem;
  max-width: 80%;
}

.plan .content ul {
  list-style-type: none;
  font-family: Montserrat, sans-serif;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan button {
  min-width: 0 !important;
  width: 94%;
  max-width: 300px;
  margin: 0 auto;
}

.sizer {
  width: 32%;
}

/* ------- CONTACT STYLES ------- */
.contact {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-bottom: var(--mb-sections);
  border-bottom: 1px solid var(--color-lines);
  padding-top: 10px;
}

.oculto {
  display: none;
}

.contactTitle {
  flex: 1 0 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-lines);
  margin-bottom: 6.25rem;
}

.contactTitle h2 {
  font-size: var(--size-section-title);
  font-family: Syne, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: var(--syne-medium);
  margin-bottom: 1rem;
}

.line {
  height: 600px;
  width: 1px;
  background-color: var(--color-lines);
}

.contactInfo {
  flex: 1;
  padding-block: 5rem;
}

.contactInfo p {
  text-align: right;
  color: var(--color-text);
  font-family: Montserrat, sans-serif;
  font-weight: var(--mont);
  font-size: var(--size-text);
  margin-left: auto;
  line-height: 2.6rem;
  max-width: 35rem;
  margin-bottom: 6.25rem;
}

.contactInfo p,
.contactInfo ul {
  margin-right: 100px;
}

.contactInfo ul li {
  text-align: right;
  color: var(--color-text);
  font-family: Montserrat, sans-serif;
  font-weight: var(--mont);
  font-size: var(--size-text);
  margin-left: auto;
  letter-spacing: 0.05rem;
  line-height: 2.6rem;
  margin-right: 60px;
  position: relative;
}

.contactInfo ul li {
  margin-bottom: 1.5rem;
}

.contactInfo ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -60px;
  top: 5px;
}

.contactInfo ul li:first-child::before {
  content: "";
  background-image: url(../img/phone.svg);
}
.contactInfo ul li:nth-child(2)::before {
  content: "";
  background-image: url(../img/mail.svg);
}

.contactInfo > .socials {
  justify-content: flex-end;
  margin-right: 100px;
}

.contactForm {
  flex: 1;
  padding-block: 5rem;
}

form {
  display: flex;
  flex-flow: column wrap;
  margin-left: 6.25rem;
}

input,
textarea,
select  {
  border: none;
  outline: none;
  background: none;
  font-size: var(--size-text);
  border-bottom: 1px solid var(--color-lines);
  margin-bottom: 5rem;
  font-family: Montserrat, sans-serif;
  color: var(--secondary-color);
  padding-left: 1rem;
  padding-bottom: 0.2rem;
  max-width: 35rem;
}

select {
  appearance: none; /* Quita el estilo nativo del select */
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: none;
  min-height: 100px;
}

form > .btn {
  max-width: 18.75rem;
}

form .option-group {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  max-width: 35rem;

  border: none;
  outline: none;
  background: none;
  font-size: var(--size-text);
  margin-bottom: 5rem;
  font-family: Montserrat, sans-serif;
}

form .option-group label {
  flex: 1;
  display: block;
  padding-bottom: 0.2rem;
  padding: .5rem;
  border-radius: 7px;
  border: 2px solid var(--color-lines);
  color: var(--color-lines);
  transition: all 0.3s ease-in-out;
}

form .option-group input:checked + label {
  color: white;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ------------- FOOTER -------------- */
footer {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  padding-block: 100px;
  justify-content: space-between;
  font-family: Syne, sans-serif;
  color: var(--secondary-color);
}

.footerColumn {
  flex: 1;
}

.footerColumn:first-child img {
  max-width: 180px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.footerColumn:first-child img:hover {
  opacity: 1;
}

.footerColumn:first-child ul li {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.footerColumn:nth-child(2) {
  font-size: 1.1rem;
  text-align: center;
}

.footerColumn:nth-child(2) ul li {
  margin-bottom: 1.5rem;
}

.footerColumn:nth-child(2) ul li a {
  letter-spacing: 0.25rem;
  font-weight: var(--syne-medium);
  color: var(--color-text);
  transition: all 0.3s ease-in-out;
}

.footerColumn:nth-child(2) ul li a:hover {
  color: var(--primary-color);
  letter-spacing: 0.3rem;
}

.footerColumn:last-child {
  font-size: 1.1rem;
  text-align: right;
}

.footerColumn:last-child ul li {
  margin-bottom: 1.5rem;
}

.footerColumn:last-child ul li a {
  letter-spacing: 0.25rem;
  font-weight: var(--syne-medium);
  color: var(--color-text);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.footerColumn:last-child ul li a:hover {
  color: var(--primary-color);
  letter-spacing: 0.3rem;
}

/* ------- subfooter --------- */
.subfooter {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}

.subfooter p {
  font-family: Montserrat, sans-serif;
  color: var(--color-text);
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
}

.subfooter p a {
  font-family: Montserrat, sans-serif;
  color: var(--color-text);
  font-size: 0.8rem;
  transition: all 0.3s ease-in-out;
}

.subfooter p a:hover {
  color: var(--primary-color);
}

/* -------------- MEDIA QUERIES ------------ */
@media screen and (max-width: 1600px) {
  .aboutmeImage {
    flex: 4;
  }

  .featuresContent {
    flex: 6;
  }

  .featuresText {
    flex: 4;
  }

  .plans {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 1375px) {
  .plans {
    grid-template-areas:
      "plansTitle plansTitle plansTitle plansTitle"
      ". plan2 plan2 ."
      "plan1 plan1 plan3 plan3";
  }

  .plan.pro {
    transform: translateY(0);
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1325px) {
  .whoamiText {
    flex: 4;
  }

  .awards {
    grid-template-rows: auto 1fr 1fr;
    grid-template-areas:
      "awardsTitle awardsTitle awardsTitle awardsTitle awardsTitle awardsTitle"
      "award1 award1 award3 award3 award5 award5"
      ". award2 award2 award4 award4 .";
  }

  .award2,
  .award4 {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1280px) {
  header {
    background-position: 80% !important;
  }

  .award {
    flex: 1 0 50%;
  }

  .featuresText h3 {
    padding-right: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .featuresContent {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .feat1, .feat3, .feat2 {
    border-right: none;
    border-bottom: 1px solid var(--color-lines);
  }
}

@media screen and (max-width: 1100px) {
  .projectImage {
    aspect-ratio: 4 / 5;
  }
}

@media screen and (max-width: 1060px) {
  .mirror-parallax {
    display: none;
  }

  header {
    background-image: url(../img/alertpoint_hero.png) !important;
    background-attachment: scroll;
  }

  .aboutme {
    width: 100%;
  }

  .aboutme h2 {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid var(--color-lines);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  .aboutmeContent {
    flex-flow: column;
    width: 100%;
  }

  .aboutmeText {
    border: none;
    order: 1;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 3rem;
  }

  .aboutmeText p {
    width: 100%;
  }

  .aboutmeImage {
    order: 2;
    width: 100%;
    aspect-ratio: 5 / 3;
  }

  .galleryImage {
    flex: 1 1 300px;
  }

  .footerColumn:first-child {
    flex: 1 1 100%;
    margin-bottom: 80px;
  }

  .footerColumn:nth-child(2),
  .footerColumn:last-child {
    text-align: left;
  }
}

@media screen and (max-width: 950px) {
  .whoami {
    flex-flow: column;
  }
  .whoamiTitle {
    order: 1;
    margin: 0;
    padding: 0;
    gap: 5rem;
    margin-bottom: 3rem;
  }
  .whoamiTitle h2 {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-lines);
  }
  .whoamiText {
    order: 2;
    margin: 0;
    padding: 0;
    border: none;
  }

  .whoamiText h3 {
    padding: 0;
  }

  .features {
    flex-flow: column;
  }

  .featuresTitle {
    margin-bottom: 80px;
  }

  .featuresContent,
  .featuresText {
    padding: 0;
  }

  .featuresContent {
    width: 95%;
    margin-left: 0;
    margin-inline: auto;
    border: none;
  }

  .feat {
    margin-inline: 0;
    padding-inline: 0;
  }

  .featuresText {
    margin-bottom: 100px;
    border: none;
  }

  .featuresText h3 {
    margin: 0;
    padding: 0;
  }

  .projectTitle {
    flex: 1 0 100%;
    margin-bottom: 3rem;
    order: 1;
  }

  .projectContent {
    flex: 1 0 100%;
    order: 2;
  }

  .projectContent p {
    margin: 0;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }

  .projectImage {
    order: 3;
  }

  .contactInfo p,
  .contactInfo ul,
  .contactInfo .socials {
    margin-right: 50px;
  }

  .contactForm form {
    margin-left: 50px;
  }
}

@media screen and (max-width: 920px) {
  .plans {
    grid-template-areas:
      "plansTitle plansTitle plansTitle plansTitle plansTitle plansTitle plansTitle plansTitle"
      ". plan2 plan2 plan2 plan2 plan2 plan2 ."
      "plan1 plan1 plan1 plan1 plan3 plan3 plan3 plan3";
  }
}

@media screen and (max-width: 825px) {
  header {
    background-position: 65% !important;
  }

  .menu {
    width: 90%;
  }
  .menu-toggle {
    width: 35px;
    height: 25px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
  }

  .menu-toggle .bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .menu-toggle:hover .bar {
    background-color: var(--secondary-color);
  }

  .list-nav {
    display: none;
  }

  .show {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    padding: 3rem;
    box-shadow: 0 0 0 100vmax rgba(21, 21, 21, 0.5);

    animation: menuIn 1s;
  }

  .list-nav-show {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 3rem;
  }

  .hide {
    opacity: 0;
    display: none;
  }
  .rotate-45 {
    transform: rotate(-45deg) translate(0, 14px);
  }
  .rotate45 {
    transform: rotate(45deg) translate(0, -15px);
  }

  @keyframes menuIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .plans {
    column-gap: 3rem;
  }

  .gallery > h3 > .br {
    display: inline;
  }

  .contact {
    flex-flow: column;
  }

  .contact .line {
    display: none;
  }

  .contactInfo p,
  .contactInfo ul,
  .contactInfo .socials {
    margin: 0;
    text-align: left;
    margin-bottom: 3rem;
  }

  .contactInfo ul li {
    text-align: left;
    margin-right: 0;
    margin-left: 60px;
  }

  .contactInfo ul li::before {
    content: "";
    left: -60px;
  }

  .contactInfo > .socials {
    justify-content: flex-start;
  }

  .contactForm form {
    margin: 0;
  }

  .contactForm form > input,
  .contactForm form > textarea {
    width: 100%;
    max-width: none;
  }

  .contactForm form .btn {
    margin-inline: auto;
  }

  .contactForm {
    padding-top: 0;
  }

  .contactTitle {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 800px) {
  .awards {
    grid-template-rows: auto 1fr 1fr 1fr;
    grid-template-areas:
      "awardsTitle awardsTitle awardsTitle awardsTitle awardsTitle awardsTitle"
      "award1 award1 award1 award5 award5 award5"
      ". . award3 award3 . ."
      ". award2 award2 award4 award4 .";
  }

  .award3 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 720px) {
  .plans {
    grid-template-areas:
      "plansTitle"
      "plan2"
      "plan1"
      "plan3";
    gap: 3rem;
  }

  .plan.pro {
    transform: translateY(0);
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  header {
    text-align: center;
    background-position: 85% !important;
  }

  .awards {
    grid-template-rows: auto;
    grid-template-areas:
      "awardsTitle"
      "award1"
      "award2"
      "award3"
      "award4"
      "award5";
    gap: 1rem;
  }

  .award:not(.award:first-child) {
    margin-top: 3rem;
  }

  .aboutmeText p {
    text-align: justify;
  }

  .aboutmeImage {
    aspect-ratio: 3 / 4;
  }

  .featuresContent {
    width: 100%;
  }

  .feat {
    gap: 35px;
  }

  .plansTitle {
    margin-bottom: 75px;
  }

  .plan {
    min-width: 50%;
    margin-inline: auto;
  }

  .projectContent p {
    text-align: justify;
  }

  .projectContent {
    margin-bottom: 3rem;
  }

  .projectImage {
    flex: 1 0 100%;
    aspect-ratio: 4 / 3.5;
    margin: 0;
  }

  .p1pi2 {
    margin-bottom: 100px;
  }

  .galleryNav {
    column-gap: 4rem;
  }

  .gallery > h3 {
    line-height: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  .contactTitle h2 {
    display: none;
  }

  .contactTitle h2.oculto {
    display: inline-block;
  }

  .contactInfo p {
    text-align: justify;
  }
}

@media screen and (max-width: 450px) {
  .feat {
    flex-flow: column;
  }
}

@media screen and (max-width: 480px) {
  footer {
    flex-flow: column;
  }

  .footerColumn {
    text-align: center;
  }

  .footerColumn ul li {
    text-align: center;
  }

  .footerColumn:nth-child(2) {
    margin-bottom: 80px;
  }
}

/* Fix height strechedt hero */
@media screen and (max-height: 600px) {
  header {
    height: 700px;
    background-attachment: scroll;
    background-image: url(../img/alertpoint_hero.png);
  }
  .mirror-parallax {
    display: none;
  }
}
