@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


/* TIPOGRAPHY */

:root {
  --base: 18px;
  --scale-factor: .28;
  --rhythm: 24px;
}

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  font-size: calc(var(--base) + (var(--base) * var(--scale-factor) * var(--font-increase, 0)));
  line-height: calc(var(--rhythm) + (var(--rhythm) * var(--rhythm-increase, 0)));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: calc(var(--base) + (var(--base) * var(--scale-factor) * var(--font-increase, 0)));
  line-height: calc(var(--rhythm) + (var(--rhythm) * var(--rhythm-increase, 0)));
}

p {
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 2rem;
}

h1 {
  --font-increase: 2;
  --rhythm-increase: 0.8;
  color: white;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0;
}

.h1-load {
  opacity: 1;
  transition: opacity 2s;
}

h2 {
  --font-increase: 3.7;
  --rhythm-increase: 0.5;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  --font-increase: 1;
  --rhythm-increase: 0;
  color: #D13262;
  text-transform: uppercase;
  font-weight: 700;
  margin: 1rem 0;
}

h4 {
  --font-increase: 1;
  --rhythm-increase: 1;
  font-weight: bold;
  font-size: 20px;
}

h5 {
  --font-increase: 1;
  --rhythm-increase: 0.2;
  margin-bottom: 2rem;
}


.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  background-color: black;
  padding: 0 40px;
}

.header-bar-logo {
  width: 60px;
}

.header-bar-share {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-bar-share span {
  letter-spacing: 3px;
  font-size: 14px;
  margin-right: 24px;
  position: relative;
  top: 2px;
}

.header-bar-share ul {
  display: flex;
  gap: 20px;
  position: relative;
  top: -3px;
}

.header-bar-share img {
  width: 20px;
}

.header-main-container {
  padding: 100px 0px 200px 0;
  padding-left: 10%;
}

.header-main-content {
  width: 30%;
}

.header-logo {
  width: 250px;
  margin-bottom: 2rem;
}

.white-text {
  color: white;
}


.pink-text {
  color: #D13262;
}

.btn {
  display: inline-flex;
  background-color: #F8E600;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: black;
  transition: background-color 1s;
}

.btn a {
  padding: 16px;
  text-decoration: none;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.btn a:hover {
  color: #F8E600;
}

.bold {
  font-weight: 700;
}

/*se cambia en responsive */
.content-wrapper {
  padding: 5% 20%;
}

.content-wrapper-big {
  padding: 2% 10% 5%;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.img-bg-1 {
  background: url(./../assets/bg-1.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.img-bg-2 {
  background: url(./../assets/bg-1.2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.degraded-bg {
  background: url(./../assets/degraded-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.steps ul {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.steps li {
  width: 20%;
}

.underline {
  text-decoration: underline;
}

.job-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 2rem 0;
}

.job-categories a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  width: 200px;
  height: 200px;
  padding: 30px;
}

.job-categories li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .6);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
  line-height: 1.2;
  border: none;
  position: relative;
  z-index: 1;
}

.job-categories:hover::before {
  opacity: 1;
}

.job-categories li a:hover {
  color: white;
}

.job-categories li::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 32, 61, 1) 0%, rgba(244, 0, 183, 1) 100%);
}

.job-categories li:hover::before {
  opacity: 1;
  border-radius: 20px;

}

.job-categories li:hover {
  color: white;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

/* DROPDOWN MENU */

.dropdown-menu {
  position: static;
  background-color: rgba(255, 255, 255, .1);
  box-shadow: none;
  border: none;
  margin-bottom: 1rem;
  border-radius: 20px;
  padding: 16px 24px;
  height: 330px;
}

.dropdown#active .fa-caret-down {
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.dropdown#not-active .fa-caret-down {
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.dropdown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .7);
  border-radius: 10px;
  color: black;
  margin-bottom: 1rem;
  cursor: pointer;
}

.active-view {
  background-color: white !important;
  color: #004245 !important;
}

.active-view .dropdown-menu {
  background-color: white !important;
}

.active-view .apply-button.white a {
  color: #004245;
}

.fa-caret-down {
  color: #D13262;
  font-size: 28px;
  margin-left: 8px;
}

.advantages-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 5%;
}

.advantege {
  width: 20%;
}

.advantege img {
  margin-bottom: 24px;
  width: 40px;
}

.img-categories {
  width: 100%;
  margin: 2rem 0;
}

.smartgreen {
  color: white;
}

/* FOOTER */

.footer {
  background-color: #222222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3% 0;
}

.social-links {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.social-links img {
  width: 25px;
}

.logo-green {
  display: flex;
  gap: 2rem;
  color: white;
  margin: 2rem 0;
}

.legal-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.legal-links a {
  color: white;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

.tkt {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

@media screen and (min-width: 1700px) {
  .header-main-container {
    padding-left: 15%;
  }

  .header-main-content {
    width: 25%;
  }

  .job-categories {
    padding: 2rem 6rem;
  }

  .dropdown-menu {
    height: 250px
  }
}

@media screen and (max-width: 1350px) {
  .content-wrapper {
    padding: 8% 15%;
  }

  .content-wrapper-big {
    padding: 0% 10% 5%;
  }
}

@media screen and (max-width: 1200px) {

  .advantege {
    width: 25%;
  }

  .dropdown-menu {
    height: 380px;
  }

  h4 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1100px) {

  .header-main-content {
    width: 40%;
  }
}

@media screen and (max-width: 1000px) {

  .header-main-content {
    width: 40%;
  }

  .advantages-container {
    gap: 1rem;
  }

  .advantege {
    width: 80%;
  }

  .advantege img {
    margin-bottom: 16px;
    width: 30px;
  }

  .dropdown-menu {
    height: auto;
  }

}

@media screen and (max-width: 600px) {

  .header-bar {
    padding: 0 20px;
  }

  .header-bar-share span {
    display: none;
  }

  .header-main-content {
    width: 60%;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 22px;
    text-align: left;
  }

  h4 {
    font-size: 18px;
  }

  p {
    text-align: left;
  }

  .header-logo {
    width: 120px;
  }

  .btn a {
    padding: 14px;
    font-size: 14px;
  }

  .content-wrapper {
    padding: 10%;
  }

  .job-categories {
    flex-direction: row;
  }

  .job-categories {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .job-categories li {
    font-size: 18px;
    width: 48%;
  }

  .job-categories a {
    padding: 0;
    width: 20%;
    height: 100px;

  }

  .steps ul {
    flex-direction: column;
  }

  .steps li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .steps li img {
    width: 40px;
  }

  .footer {
    padding: 10%;
  }

  .logo-green {
    margin-top: 0;
    gap: 1rem;
  }

  .logo-green img {
    width: 70px;
  }

  .social-links {
    margin-bottom: 3rem;
  }

  .tkt {
    font-size: 14px;
  }

  .legal-links {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 380px) {
  .job-categories li {
    width: 90%;
  }
}