* {
    font-family: 'Varela Round', sans-serif;
}

header {
    padding: 5px 35px;
    background-color: #fff;
    box-shadow: 0 2px 30px 0 rgb(12 53 115 / 10%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 30px 0 rgb(12 53 115 / 10%);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 769px) {
    .header {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 5px 35px;
    }
}

body {
    margin: 0px;
}

.logo {
    height: 120px;
}

@media (min-width: 769px) {
    .logo {
        padding-left: 35px;
    }
}

.logo img {
    height: 100%;
    width: auto;
}

.menu-links__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.menu-links__container a {
    padding: 0px 15px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;

}

/* Fade in */
.menu-links__container a::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #5271ff;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
    display: flex;
    flex-direction: column;
  }
  
  .menu-links__container a:focus::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
  }

  .menu-links__container a:hover::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);  
  }

.menu-buttons__container a:first-child {
    margin-right: 10px;
}

.menu-buttons__container {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

@media (min-width: 769px) {
    .menu-buttons__container {
        display: flex;
        padding-right: 35px;
    }
}

.menu-buttons__container a {
    padding: 10px;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #5271ff;
    cursor: pointer;
    transition: 0.5s;
}

.menu-buttons__container a:hover {
    transform: translate(0, -10px);
    background-color: #5271ff;
    color: white;
}

.hero-image {
    background-image: url("/assets/images/gradient.png"); /* The image used */
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 550px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    text-align: left;
    color: white;
    padding: 20px 50px;
    padding-left: 35px;
}

@media (min-width: 1024px) {
    .hero-image {
        height: 400px;
        padding: 40px 150px;
    }
}

.hero-image h2:first-child {
    color: white;
    font-size: 35px;
}

.hero-image h2:nth-child(2) {
    margin-bottom: 37.5px;
    font-size: 20px;
}

@media (min-width: 1024px) {
    .hero-image h2:first-child {
        color: white;
        font-size: 45px;
    } 

    .hero-image h2:nth-child(2) {
        margin-bottom: 37.5px;
        font-size: 25px;
    }
}

.hero-menu-buttons__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.hero-menu-buttons__container a {
    padding: 10px;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #5271ff;
    cursor: pointer;
    transition: 0.5s;
    background-color: #fff;
    margin-right: 10px;
}

.hero-menu-buttons__container a:hover {
    transform: translate(0, -10px);
}

.featured-jobs__container {
    display: flex;
    flex-direction: column;
    padding: 5px 35px;
}

.featured-jobs__title {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #000;
    
}

.featured-jobs__container div:first-child h2 {
    margin-right: 15px;
    font-size: 45px;
    margin-bottom: 10px;
}

.regular-jobs__container {
    display: flex;
    flex-direction: column;
    padding: 5px 35px;
}

.regular-jobs__title {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #000;  
}

.regular-jobs__container div:first-child h2 {
    margin-right: 15px;
    font-size: 45px;
    margin-bottom: 10px;
}

.featured-jobs__job-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    padding: 25px;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    align-items: flex-start;
    transition: 0.5s;
}
@media (min-width: 769px) {
    .featured-jobs__job-row {
        flex-wrap: nowrap;
    }
}

.featured-jobs__job-row:hover {
    transition: 0.5s;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 15%), 0 2px 6px 0 rgb(21 60 245 / 7%), 0 -2px 4px 0 rgb(21 60 245 / 9%);
    transform: translate(0, -2px);
}

.featured-jobs__image {
    border-radius: 50px;
    background-color: white;
    border: 2px solid #5271ff;
    height: 50px;
    max-width: 50px;
    overflow: hidden;
    flex-basis: 100%;
    margin-right: 100px;
    margin-bottom: 20px;
}

.featured-jobs__image img {
    width: 50px;
}

@media (min-width:769px) {
    .featured-jobs__image {
        flex-basis: unset;
        margin-right: 50px;
    }
}

.featured-jobs__job-details {
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .featured-jobs__job-details {
        min-width: 370px;
    }
}

.featured-jobs__job-details a:first-child {
    font-size: 30px;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
}

.featured-jobs__job-details a:first-child:hover {
    color: #5271ff;
}

.featured-jobs__job-details__company-name {
   margin-bottom: 15px;
}

.featured-jobs__job-details__tags {
    color: gray;
}

.featured-jobs__job-details div:nth-child(2) {
    font-size: 20px;
}

.featured-jobs__job-date-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 210px;
    align-items: flex-start;
    flex-basis: 100%;
    margin-left: -10px;
    margin-top: 20px;
}

.featured-jobs__job-date-container div {
    margin-left: 10px;
}

@media (min-width: 769px) {
    .featured-jobs__job-date-container {
        flex-basis: unset;
        margin: auto;
    }
}

.featured-jobs__job-date__date {
    padding-top: 5px;
}

.featured-jobs__job-date__tag {
    background-color: aliceblue;
    padding: 5px 12px;
    border-radius: 25px;
}

.footer {
    background-color: white;
    color: black;
    padding-top: 50px;
    box-shadow: 0 2px 30px 0 rgb(12 53 115 / 10%);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 100%;
}

@media (min-width: 769px) {
    .footer {
        grid-template-columns: repeat(4,1fr);
    }
}

.footer div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.footer div img {
    max-width: 150px;
}

.footer div ul {
    list-style-type: none;
    padding-left: 0px;
}

.footer-buttons {
    padding: 10px;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #5271ff;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}

.footer-buttons:nth-child(2) {
    margin-top: 30px;
}

@media (min-width: 769px) {
    .footer-buttons {
        display: block;
    }
}

.footer-heading {
    color: #5271ff;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 0px;
}

.footer-link {
    text-decoration: none;
    color: black;
    line-height: 25px;
}