* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: nunito;
}

body {
  display: flex;
  flex-direction: column;
  height: auto;
}

.navbar {
  height: auto;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.time-management img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-content video, .offer-content img{
  width: 100%;
  height: 100%;
}

.banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 200px 50px 200px;
}

.banner-image {
  width: 100%;
}

.offer h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #11224E;
}

.search-job {
  padding: 15px;
  border-radius: 15px;
  width: 50vw;
}

.navbar-links {
  display: flex;
  gap: 50px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-auth {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item a {
  margin: 0;
  color: black;
  text-decoration: none;
}

.feature {
  height: 100vh;
}

@font-face {
  font-family: "nunito";
  src: url("../fonts/NunitoSans.ttf");
}

 .about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  height: auto;
}

.about-banner{
  width: 100%;
  height: 100%;
}

.about-header{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.about-header h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #11224E;
}

.about-header p {
  font-size: 2rem;
  font-weight: 500;
}

.about-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-container{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.about-button{
  width: 100%;
}

.contact-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 30px;
}

.contact-container > div > div > h1{
    text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

.contact-container > div > div > p{
    text-align: center;
}

.contact-container > div > div > i{
  display: flex;
  justify-content: center;
  font-size: 7rem;
  color: #3338A0;
  text-align: center;
}



@media (max-width: 575px) {
  #mobile-navbar {
    display: block;
  }
  .navbar-links,
  .navbar-auth {
    display: none;
  }

   .about-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .about-banner {
  order: 1; 
  width: 100%;
}

.about-header {
  order: 2; 
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .offcanvas-navbar-links {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

  .offcanvas-navbar-link {
    margin: 0;
    color: black;
    text-decoration: none;
    width: 100%;
  }

  .banner-image img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
  }

  .banner-text div {
    padding: 25px;
    width: 100%;
    text-align: center;
  }

  .banner-text h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
  }

  .offer-content video{
    height: 30vh;
  object-fit: cover;
  }

  .offer-content img{
     height: 30vh;
  object-fit: cover;
  object-position: left;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

  .offer{
    padding: 10px;
  }

  .offer h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

    .time-management img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: left;
  }

  .offer-container {
    margin: 0px;
  }

  .offer-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    gap: 20px;
  }

 .manage-work-container {
  display: flex;
  flex-direction: column; /* This ensures the children are arranged in a column */
  gap: 20px;
}

.manage-work-card {
  order: 0; /* Default order for all items */
}

.manage-work-card:nth-child(1) {
  order: 2; /* Moves the first card to the second position */
}

.manage-work-card:nth-child(2) {
  order: 3; /* Moves the second card to the last position */
}

.manage-work-card:nth-child(3) {
  order: -1; /* Moves the third card to the first position */
}

  .manage-work-card {
  padding: 50px 20px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  

}

@media (min-width: 576px) and (max-width: 767.98px) {
  #mobile-navbar {
    display: block;
  }
  .navbar-links,
  .navbar-auth {
    display: none;
  }

  .offcanvas-navbar-links {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

   .about-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .about-banner {
  order: 1; 
  width: 100%;
}

.about-header {
  order: 2; 
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .offcanvas-navbar-link {
    margin: 0;
    color: black;
    text-decoration: none;
    width: 100%;
  }

  .banner-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
  }

  .banner-text div {
    padding: 25px;
    width: 100%;
    text-align: center;
  }

  .banner-text h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

  .offer h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

  .offer-container {
    margin: 30px;
  }

  .offer-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    gap: 20px;
  }

  .manage-work-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .manage-work-card {
    padding: 50px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #mobile-navbar {
    display: block;
  }
  .navbar-links,
  .navbar-auth {
    display: none;
  }

  .offcanvas-navbar-links {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

   .about-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .about-banner {
  order: 1; 
  width: 100%;
}

.about-header {
  order: 2; 
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .offcanvas-navbar-link {
    margin: 0;
    color: black;
    text-decoration: none;
    width: 100%;
  }
  .banner-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
  }

  .banner-text div {
    padding: 25px;
    width: 100%;
    text-align: center;
  }

  .banner-text h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

  .offer h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 25px;
  }

  .offer-container {
    margin: 30px;
  }

  .offer-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    gap: 20px;
  }

  .manage-work-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .manage-work-card {
    padding: 50px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  #mobile-navbar {
    display: none;
  }

  .offcanvas-navbar-links {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

  .offcanvas-navbar-link {
    margin: 0;
    color: black;
    text-decoration: none;
    width: 100%;
  }

  .banner-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
  }

  .banner-text div {
    width: 75vw;
    text-align: center;
  }
  .banner-text h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 2rem;
  }

  .offer {
    margin-bottom: 20px;
  }

  .offer-container {
    margin: 100px;
  }

  .offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    padding: 20px;
    gap: 20px;
  }

  .manage-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .manage-work-card {
    padding: 50px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
}

@media (min-width: 1400px) {
  #mobile-navbar {
    display: none;
  }

  .offcanvas-navbar-links {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

  .offcanvas-navbar-link {
    margin: 0;
    color: black;
    text-decoration: none;
    width: 100%;
  }

  .banner-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
  }

  .banner-text div {
    width: 75vw;
    text-align: center;
  }
  .banner-text h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
  }

  .banner-text p {
    text-align: center;
    font-size: 2rem;
  }

  .offer {
    margin-bottom: 20px;
  }

  .offer-container {
    margin: 100px;
  }

  .offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    padding: 20px;
    gap: 20px;
  }

  .manage-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .manage-work-card {
    padding: 50px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
}
