/* =========================
   PROFILE BANNER
========================= */

.profile-banner{
  position:relative;

  padding:170px 0 110px;

  overflow:hidden;

  background:
  radial-gradient(
    circle at top left,
    rgba(212,175,55,0.07),
    transparent 30%
  ),

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 26%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* =========================
   BREADCRUMB
========================= */

.profile-breadcrumb{
  display:flex;
  align-items:center;

  gap:12px;

  margin-bottom:50px;

  flex-wrap:wrap;
}


/* LINKS */

.profile-breadcrumb a{
  color:#bdbdbd;

  font-size:14px;
  font-weight:500;

  transition:0.3s ease;
}


/* HOVER */

.profile-breadcrumb a:hover{
  color:#d4af37;
}


/* SEPARATOR */

.profile-breadcrumb span{
  color:#777777;

  font-size:13px;
}


/* ACTIVE */

.profile-breadcrumb .active{
  color:#d4af37;

  font-weight:600;
}


/* =========================
   WRAP
========================= */

.profile-banner-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* =========================
   CONTENT
========================= */

.profile-banner-content{
  width:58%;
}


/* SUBTITLE */

.profile-subtitle{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:42px;

  padding:0 22px;

  margin-bottom:28px;

  border-radius:50px;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.12),
    rgba(212,175,55,0.03)
  );

  border:1px solid rgba(212,175,55,0.12);

  color:#d4af37;

  font-size:13px;
  font-weight:600;

  letter-spacing:1px;

  text-transform:uppercase;
}


/* HEADING */

.profile-banner-content h1{
  margin-bottom:28px;

  max-width:720px;
}


/* TEXT */

.profile-banner-content p{
  margin-bottom:36px;

  color:#d0d0d0;

  max-width:640px;
}


/* BUTTONS */

.profile-banner-btns{
  display:flex;
  align-items:center;

  gap:18px;

  flex-wrap:wrap;
}


/* =========================
   IMAGE
========================= */

.profile-banner-image{
  width:42%;

  overflow:hidden;

  border-radius:34px;

  position:relative;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.45);
}


/* IMAGE */

.profile-banner-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:34px;

  transition:0.5s ease;
}


/* HOVER */

.profile-banner-image:hover img{
  transform:scale(1.04);
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .profile-banner{
    padding:140px 0 70px;
  }


  /* WRAP */

  .profile-banner-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .profile-banner-content,
  .profile-banner-image{
    width:100%;
  }


  /* CONTENT */

  .profile-banner-content{
    text-align:center;
  }


  /* BREADCRUMB */

  .profile-breadcrumb{
    justify-content:center;

    margin-bottom:40px;
  }


  /* BUTTONS */

  .profile-banner-btns{
    justify-content:center;
  }


  /* IMAGE */

  .profile-banner-image{
    max-width:520px;

    margin:0 auto;
  }

}


@media(max-width:576px){

  .profile-banner{
    padding:120px 0 60px;
  }


  /* SUBTITLE */

  .profile-subtitle{
    font-size:12px;
  }

}
/* =========================
   PROFILE ABOUT
========================= */

.profile-about{
  padding:100px 0;

  overflow:hidden;

  background:
  radial-gradient(
    circle at top left,
    rgba(212,175,55,0.06),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* =========================
   TOP
========================= */

.profile-about-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:60px;

  margin-bottom:100px;
}


/* IMAGE */

.profile-about-image{
  width:40%;

  overflow:hidden;

  border-radius:30px;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.45);
}


/* IMAGE */

.profile-about-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;
}


/* DETAILS */

.profile-about-details{
  width:60%;
}


/* HEADING */

.profile-about-details h2{
  margin-bottom:30px;
}


/* =========================
   META GRID
========================= */

.profile-meta-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:20px;

  margin-bottom:40px;
}


/* ITEM */

.profile-meta-item{
  padding:24px;

  border-radius:24px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(212,175,55,0.10);
}


/* LABEL */

.profile-meta-item span{
  display:block;

  margin-bottom:10px;

  color:#a0a0a0;

  font-size:14px;
}


/* VALUE */

.profile-meta-item strong{
  color:#ffffff;

  font-size:18px;
  font-weight:600;
}


/* =========================
   RATE BOX
========================= */

.profile-rate-box{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:30px;

  padding:34px;

  border-radius:30px;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

  border:1px solid rgba(212,175,55,0.14);
}


/* TEXT */

.profile-rate-content span{
  display:block;

  margin-bottom:10px;

  color:#d4af37;

  font-size:14px;
}


/* PRICE */

.profile-rate-content h3{
  color:#ffffff;

  font-size:4rem;
}


/* =========================
   ABOUT CONTENT
========================= */

.profile-about-content{
  max-width:800px;

  margin:0 auto 100px;

  text-align:center;
}


/* HEADING */

.profile-about-content h2{
  margin-bottom:30px;
}


/* TEXT */

.profile-about-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* =========================
   SERVICES
========================= */

.profile-services{
  max-width:900px;

  margin:0 auto;

  text-align:center;
}


/* HEADING */

.profile-services h2{
  margin-bottom:40px;
}


/* GRID */

.profile-services-grid{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:18px;

  flex-wrap:wrap;
}


/* BUTTON */

.profile-service-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;

  padding:0 26px;

  border-radius:60px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(212,175,55,0.12);

  color:#d4af37;

  font-size:14px;
  font-weight:500;

  transition:0.3s ease;
}


/* HOVER */

.profile-service-btn:hover{
  transform:translateY(-4px);

  border-color:rgba(212,175,55,0.35);

  box-shadow:
  0 14px 30px rgba(212,175,55,0.08);
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .profile-about{
    padding:70px 0;
  }


  /* TOP */

  .profile-about-top{
    flex-direction:column;

    margin-bottom:70px;
  }


  /* WIDTH */

  .profile-about-image,
  .profile-about-details{
    width:100%;
  }


  /* ABOUT */

  .profile-about-content{
    margin-bottom:70px;
  }

}


@media(max-width:576px){

  /* GRID */

  .profile-meta-grid{
    grid-template-columns:1fr;
  }


  /* RATE */

  .profile-rate-box{
    flex-direction:column;

    text-align:center;
  }


  /* PRICE */

  .profile-rate-content h3{
    font-size:3.2rem;
  }

}