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

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}


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

.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-content {
  width: 40%;
}

.header-content img {
  width: 250px;
}

h1 {
  color: white;
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 3rem;
  line-height: 1.1;
  opacity: 0;
}

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

h2,
h3 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  color: #D13262;
}

h3 {
  font-size: 24px;
}

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

.content-wrapper {
  padding: 5% 25%;
}

.main-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 4rem;
  justify-content: center;
  /*   background-image: url(./../assets/bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  padding: 10% 5%;
}

.job {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, .8);
  width: 25%;
  border-radius: 20px;
  padding: 32px 24px;
}

.job p {
  color: rgb(68, 67, 67);
}

.btn {
  display: inline-flex;
  background-image: linear-gradient(90deg, rgba(255, 32, 61, 1) 0%, rgba(244, 0, 183, 1) 100%);
  border: none;
  border-radius: 5px;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

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

.btn:hover::before {
  opacity: 1;
}

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

a {
  text-decoration: none;
  font-weight: 700;
  color: #D13262;
}

a:hover {
  text-decoration: underline;
}

button a:hover {
  text-decoration: none;
}

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

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

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

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

/* FOOTER */

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

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

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


@media screen and (max-width: 1200px) {
  .main-section {
    flex-direction: column;
    align-items: center;
  }

  .job {
    width: 50%;
  }

}

@media screen and (max-width: 1040px) {
  h1 {
    font-size: 50px;
  }
}


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

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  .header-content {
    width: 50%;
  }

  .content-wrapper {
    padding: 10%;
  }

  .main-section {
    gap: 2rem;
    padding: 10% 5%;
  }

  .job {
    width: 95%;
  }

  .footer {
    padding: 10%;
  }

  .logo-green {
    margin-top: 0;
  }

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

  .tkt {
    font-size: 14px;
  }

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