/* [project]/app/photographer/[slug]/components/PhotographerHeader/PhotographerHeader.module.css [app-client] (css) */
.PhotographerHeader-module__b-4qFa__photographerHeader {
  height: 315px;
  font-family: var(--font-dm-sans);
  background-color: #fafafa;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 25px 50px;
  display: flex;
}

.PhotographerHeader-module__b-4qFa__photographerHeader > div {
  flex-direction: column;
  justify-content: center;
  width: 33%;
  display: flex;
}

.PhotographerHeader-module__b-4qFa__photographerPresentation {
  gap: 20px;
  height: 100%;
  align-items: flex-start !important;
}

.PhotographerHeader-module__b-4qFa__photographerName {
  color: #d3573c;
  margin: 0;
  font-size: 64px;
  font-weight: normal;
}

.PhotographerHeader-module__b-4qFa__photographerLocation {
  color: #901c1c;
  margin: 0;
  font-size: 36px;
  font-weight: normal;
}

.PhotographerHeader-module__b-4qFa__photographerTagline {
  color: #525252;
  margin: 0;
  font-size: 24px;
}

.PhotographerHeader-module__b-4qFa__contactButton {
  color: #fff;
  width: 200px;
  font-size: 24px;
  font-family: var(--font-dm-sans);
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 5px;
  padding: 20px 10px;
}

.PhotographerHeader-module__b-4qFa__contactButtonWrapper {
  align-items: center !important;
}

.PhotographerHeader-module__b-4qFa__photographerPortrait {
  object-fit: cover;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.PhotographerHeader-module__b-4qFa__portraitWrapper {
  align-items: flex-end !important;
}

/* [project]/app/photographer/[slug]/components/PhotographerMedias/PhotographerMedias.module.css [app-client] (css) */
.PhotographerMedias-module__wDPCaG__tags {
  font-size: 20px;
  font-family: var(--font-dm-sans);
  font-weight: 700;
}

.PhotographerMedias-module__wDPCaG__tagsSelect {
  cursor: pointer;
  color: #fff;
  background-color: #901c1c;
  border: none;
  margin-left: 15px;
  padding: 10px;
  font-size: 18px;
}

.PhotographerMedias-module__wDPCaG__tagsSelect option {
  background-color: #901c1c;
  position: absolute;
}

.PhotographerMedias-module__wDPCaG__mediasGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 100px;
  margin-top: 60px;
  display: grid;
}

.PhotographerMedias-module__wDPCaG__mediaPicture {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 500px;
}

.PhotographerMedias-module__wDPCaG__mediaContent {
  color: #901c1c;
  width: 100%;
  height: 50px;
  font-family: var(--font-dm-sans);
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  display: flex;
}

.PhotographerMedias-module__wDPCaG__mediaContent p {
  margin: 0;
  padding: 0;
}

.PhotographerMedias-module__wDPCaG__mediaLikes {
  background-color: #0000;
  border: none;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.PhotographerMedias-module__wDPCaG__liked {
  color: #901c1c;
}

.PhotographerMedias-module__wDPCaG__heartIcon {
  width: 22.5px;
  height: 22.5px;
}

/* [project]/app/photographer/[slug]/components/DropdownTags/DropdownTags.module.css [app-client] (css) */
.DropdownTags-module__nR2y7q__label {
  font-family: var(--font-dm-sans);
  margin-right: 30px;
  font-size: 22px;
  font-weight: 700;
}

.DropdownTags-module__nR2y7q__dropdown {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.DropdownTags-module__nR2y7q__selected {
  font-family: var(--font-dm-sans);
  color: #fff;
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  min-width: 180px;
  padding: .8rem 1.2rem;
  font-size: 18px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.DropdownTags-module__nR2y7q__icon {
  z-index: 3;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: .6rem;
  transition: transform .3s;
  display: flex;
}

.DropdownTags-module__nR2y7q__icon.DropdownTags-module__nR2y7q__open {
  transform: rotate(180deg);
}

.DropdownTags-module__nR2y7q__svgIcon {
  stroke: #fff;
  width: 1rem;
  height: 1rem;
}

.DropdownTags-module__nR2y7q__menu {
  z-index: 2;
  background-color: #901c1c;
  border-radius: 5px;
  width: 100%;
  margin-top: .4rem;
  padding: 0;
  list-style: none;
  animation: .15s ease-in-out DropdownTags-module__nR2y7q__fadeIn;
  position: absolute;
  top: -12%;
  left: 0%;
  box-shadow: 0 4px 10px #00000026;
}

.DropdownTags-module__nR2y7q__menu li {
  color: #fff;
  width: 80%;
  text-align: calc(left + 5px);
  cursor: pointer;
  border-bottom: 1.5px solid #fff;
  margin: 0 auto;
  padding: .8rem 1.2rem;
}

.DropdownTags-module__nR2y7q__menu li:last-child {
  border-bottom: none;
}

@keyframes DropdownTags-module__nR2y7q__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* [project]/app/photographer/[slug]/components/BottomAside/BottomAside.module.css [app-client] (css) */
.BottomAside-module___9N0Ua__sideInfos {
  color: #000;
  width: 330px;
  height: 80px;
  font-family: var(--font-dm-sans);
  background-color: #db8876;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  position: fixed;
  bottom: -5px;
  right: 50px;
}

.BottomAside-module___9N0Ua__mediaLikes {
  background-color: #0000;
  border: none;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.BottomAside-module___9N0Ua__heartIcon {
  width: 22.5px;
  height: 22.5px;
}

/* [project]/app/photographer/[slug]/components/ContactForm/ContactForm.module.css [app-client] (css) */
.ContactForm-module__AGd1Rq__modalWrapper {
  z-index: 50;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.ContactForm-module__AGd1Rq__modal {
  color: #000;
  background-color: #db8876;
  border-radius: 8px;
  width: 400px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 20px #0000004d;
}

.ContactForm-module__AGd1Rq__closeButton {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.ContactForm-module__AGd1Rq__form {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.ContactForm-module__AGd1Rq__form label {
  font-weight: 500;
}

.ContactForm-module__AGd1Rq__form input, .ContactForm-module__AGd1Rq__form textarea {
  border: none;
  border-radius: 4px;
  padding: .5rem;
  font-size: 1rem;
}

.ContactForm-module__AGd1Rq__submitButton {
  color: #fff;
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 4px;
  align-self: flex-start;
  padding: .6rem 1.2rem;
}

.ContactForm-module__AGd1Rq__submitButton:hover {
  background-color: #b02020;
}

/*# sourceMappingURL=app_photographer_%5Bslug%5D_components_ac8b795a._.css.map*/