@font-face {
  font-family: ubuntuRegular;
  src: url(Ubuntu-Regular.ttf);
}

* {
  font-family: ubuntuRegular;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}


body{
    background-color: white;
    color: black;
    margin: 0;
    height:100%;
    margin-bottom:0px;
}

.title{
  font-size:24px;
  font-weight:400;
}

.buy-box{
  display:block;
  border-radius:16px;
  border:1px solid #2D3142;
  padding:5px;
}

.construction-login {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.jobs-menu{
  border-radius:16px;
  border:1px solid #2D3142;
  padding:5px;
  margin-top:5px;
}
.jobs-menu a{
  display:block;
  width:100%;
  text-decoration:none;
}
.jobs-menu-links{
  margin-bottom:5px;
}
.jobs-menu-links a{
  color:black;
  height:32px;
  line-height:32px;
  border-radius:16px;
  box-sizing: border-box;
}

.task{
  width:100%;
  border: 1px solid #2D3142;
  border-radius: 16px;
  padding: 5px;
  margin-bottom: 5px;
  text-decoration:none;
  box-sizing: border-box;
  color: black;
}


.dashboard-menu{
  display:flex;
  width:100%;
  height:33px;
  gap:5px;
  border: 1px solid #2D3142;
  background-color:transparent;
  border-radius: 16px;
  margin-bottom:5px;
  margin-top:5px;
  box-sizing: border-box;
}
.dashboard-menu a{
  text-decoration:none;
  color:black;
  height:32px;
  width:128px;
  line-height:10px;
  border-radius:16px;
  box-sizing: border-box;
  text-align:center;
  padding:10px;
}
.dashboard-menu a:hover{
  background-color:#2D3142;
  color:white;
  transition:.3s ease;
}


.hero {
  width: 100%;
  height: 512px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px;
  box-sizing: border-box;
  background: #2D3142;
}
.hero-content {
  max-width: 50%;
  z-index: 1;
  color:white;
}
.hero-image {
  max-width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:16px;
}
.hero-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.hero-content .btn-regular + .btn-regular {
  margin-left: 5px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}




.image-box {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
}
.image-box img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
}

.overlay-text {
  padding: 10px;
  color: #000;
}


      .jobs-menu a.selected {
        color: #EF8354;
        font-weight: bold;
      }

      .task-owner-profile-picture{
        display:inline-block;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .job-title{
        font-size: 1.4em;
        font-weight: bold;
        color:black;
        height:64px;
        line-height:53px;
        box-sizing: border-box;
      }




.toplinks{
  margin-top:5px;
}
.toplinks a{
  text-decoration: none;
  color: black;
}
.toplinks a:hover{
  transition: .3s ease;
	color: #EF8354;
}



.info-wrapper {
  display: inline-block;
  position: relative;
}

.info-btn {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #EF8354;
  background: transparent;
  color: black;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  margin-top:5px;
  margin-bottom:5px;
}

.info-popup {
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  transform: translateY(-50%) scale(.96);
  min-width: 200px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  color: #111827;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10;
}

.info-wrapper:hover .info-popup,
.info-wrapper:focus-within .info-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.info-popup .popup-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 13px;
}