body {
  font-family: "DM Sans", sans-serif;
  margin: 0 100px;
}

p,
ul,
h2 {
  margin: 0;
}

a {
  text-decoration: none;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.header__anchor {
  height: 50px;
}
.header__logo {
  height: 50px;
}
.header__heading {
  color: #901c1c;
}

.main {
  margin: 0 -100px;
}

.photographers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  margin: 100px 0;
}

.works_display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 95px;
  margin: 60px 0;
}

.modal {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.modal__content {
  position: relative;
  top: 63px;
  border-radius: 5px;
  background-color: #db8876;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  padding: 15px 35px 35px;
  margin: auto;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.modal__title {
  font-size: 64px;
  font-weight: normal;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 35px;
  margin-top: 20px;
  cursor: pointer;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  width: 100%;
}
.form__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: self-start;
  margin-bottom: 26px;
}
.form__label {
  color: #312e2e;
  font-size: 36px;
}
.form__input {
  width: 100%;
  height: 68px;
  border: none;
  border-radius: 5px;
  font-size: 36px;
}
.form__input::placeholder {
  opacity: 0.3;
}
.form__message {
  width: 100%;
  height: 170px;
  border: none;
  border-radius: 5px;
  font-size: 36px;
}
.form__message::placeholder {
  opacity: 0.3;
}

.lightbox {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.lightbox__container {
  position: absolute;
  top: 10vh;
  left: 30vw;
  height: 80vh;
  width: 40vw;
}
.lightbox__previous {
  position: relative;
  top: calc(40vh - 30px);
  left: -54px;
  color: #901c1c;
  cursor: pointer;
}
.lightbox__next {
  position: absolute;
  top: calc(40vh - 30px);
  right: -54px;
  color: #901c1c;
  cursor: pointer;
}
.lightbox__closing-cross {
  position: absolute;
  top: 0;
  right: -54px;
  color: #901c1c;
  cursor: pointer;
}
.lightbox__div {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.lightbox__media {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.lightbox__title {
  font-size: 24px;
  color: #901c1c;
}

.photographer__anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.photographer__portrait {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: cover;
}
.photographer__heading {
  color: #d3573c;
  font-size: 36px;
  text-align: center;
}
.photographer__description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.photographer__location {
  font-size: 13px;
  color: #901c1c;
}
.photographer__tagline {
  font-size: 10px;
}
.photographer__price {
  font-size: 9px;
  color: #757575;
}

.photographer-header__infos, .photographer-header__description {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.photographer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  height: 300px;
  padding: 0 50px;
}
.photographer-header__heading {
  font-size: 64px;
  line-height: 1;
  color: #d3573c;
  margin: 0;
}
.photographer-header__location {
  font-size: 24px;
  color: #901c1c;
}
.photographer-header__tagline {
  font-size: 18px;
  color: #525252;
}
.photographer-header__portrait {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.photographer-header__likes-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.photographer-header__likes {
  width: 46px;
}
.photographer-header__insert {
  position: fixed;
  bottom: 0;
  right: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  padding: 0 26px;
  width: 280px;
  height: 54px;
  border-radius: 5px 5px 0 0;
  background-color: #db8876;
}

.mediaCard {
  display: flex;
  flex-direction: column;
  height: 340px;
  row-gap: 4px;
}
.mediaCard__media {
  width: 100%;
  height: 80%;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
}
.mediaCard__description {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.mediaCard__title {
  margin: 0;
  font-size: 24px;
  color: #901c1c;
}
.mediaCard__likeDiv {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: #901c1c;
  padding-right: 4px;
}
.mediaCard__nbLikes {
  font-size: 24px;
  height: 30px;
}
.mediaCard__likeIcon {
  font-style: normal;
  cursor: pointer;
}

.modal-button {
  font-size: 20px;
  color: white;
  padding: 11px;
  width: 170px;
  height: 70px;
  border: none;
  background-color: #901c1c;
  border-radius: 5px;
  cursor: pointer;
}
.modal-button:hover, .modal-button:focus {
  background-color: #d3573c;
  color: black;
}

.sorting {
  display: flex;
  column-gap: 25px;
  margin-top: 20px;
}
.sorting__label {
  font-size: 18px;
  font-weight: 700;
  align-self: center;
}
.sorting__div {
  position: relative;
  height: 56px;
  width: 170px;
}
.sorting__select {
  position: absolute;
  left: 200px;
  font-size: 18px;
  text-align: left;
  width: 170px;
  margin: 0;
  color: white;
  border-radius: 5px;
  padding: 0;
  cursor: pointer;
}
.sorting__select:focus {
  padding: 0;
}
.sorting__icon {
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 3;
}
.sorting__icon--hidden {
  display: none;
}
.sorting__option {
  box-sizing: border-box;
  list-style: none;
  background-color: #901c1c;
  border-top: solid 1px white;
  border-image: linear-gradient(to right, transparent 5%, white 5%, white 95%, transparent 5%) 100% 1;
  height: 56px;
  padding: 16px 20px;
  cursor: pointer;
  /* Chrome : avoid selection of video when option overflow on it */
  position: relative;
  z-index: 1;
}
.sorting__option:focus-visible {
  outline: 1px solid black;
  outline-offset: -5px;
}
.sorting__option--no-border {
  border: none;
}
.sorting__option--top-border {
  border-top: 1px solid #901c1c;
  border-radius: 5px 5px 0 0;
}
.sorting__option--radius-border {
  border-radius: 0 0 5px 5px;
}
.sorting__option--all-border {
  border: 1px solid #901c1c;
  border-radius: 5px;
}
.sorting__option--hidden {
  display: none;
}

/*# sourceMappingURL=style.css.map */
