@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: "Poppins", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');


/*   font-family: "Judson", serif; */






/* layout */
.forfreelance-container {

  max-width: 1030px;
  width: 100%;
  margin: 80px auto;

}

/* card */
.card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);

  position: relative;
  text-align: center;
}

/* close button */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid black;
  line-height: 30px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in;
}

.close:hover {
  background-color: #f08526;
  color: white;
  border: 1px solid black;
}

/* logo */
.logo {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* options */
.options-row {
  margin-bottom: 30px;
}

.option {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option img {
  width: 24px;
  height: 24px;
  margin-bottom: 50px;
}

.option p {
  color: black;
  text-align: start;
}

.option p span {
  display: block;
}

/* hover */
.option:hover {
  border-color: #f08526;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* active */
.option.active {
  border-color: #f08526;
  background: #fff3ea;
}

/* button */
.btn-orange {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 34px;
  background: #f08526;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
  border: 2px solid transparent;
}


.btn-orange:hover {

  background: white;
  color: #f08526;
  border: 2px solid #f08526;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);

}

/* sign in */
.signin {

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 50px;
}

.signin a {
  color: #0b125a;
  text-decoration: underline;
  margin-left: 5px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Sign in link */
.dropdown-trigger {
  color: #0B125A;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s all ease;
}

.dropdown-trigger:hover {
  color: #f08526;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0b1a6d;
  border-radius: 10px;
  padding: 8px 0;
  min-width: 160px;
  width: 100%;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Menu items */
.dropdown-menu li a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Hover effect */
.dropdown-menu li a:hover {
   color: var(--orange);
}

/* ================= Responsive ================= */

@media (max-width: 767px) {

  .container {
    margin: 30px 15px;
  }

  .col50 {
    width: 100%;
    padding: 0;
  }

  .option {
    margin-bottom: 15px;
  }

  .card {
    padding: 30px 20px;
  }

  .logo {
    width: 50px;
  }

  .options-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .option img{
    margin-bottom: 10px;
  }

}

@media (max-width: 480px) {

  .option {
    font-size: 13px;
    padding: 22px 12px;
  }

  .btn-orange {
    padding: 12px 26px;
  }
}