@charset "UTF-8";
/*-----------------------GLOBAL STYLES---------------------*/
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

/* Links */
a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

a {
  cursor: pointer;
  /*------------*/
}

/*.font-logo {
    font-family: $font-montserrat;
    font-weight: 500;
    font-size: 72px; 
    letter-spacing: -6px;
    text-transform: uppercase;

    span {
        font-weight: 100;
        font-style: italic;
    }
}*/
html, body {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 5px;
  height: 0px;
  background-color: #000;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}

strong {
  color: #6a5921;
  font-style: italic;
  font-weight: normal;
}

/*---------Containers---------*/
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-2 {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-3 {
  max-width: 980px;
  margin: 0 auto;
}

.container-4 {
  max-width: 982px;
  margin: 0 auto;
}

.container-5 {
  width: 100vw;
  margin: 0 auto;
}

.container-6 {
  max-width: 1650px;
  margin: 0 auto;
}

.container-7 {
  max-width: 870px;
  padding: 0 10px;
  margin: 0 auto;
}

.container-8 {
  max-width: 1007px;
  margin: 0 auto;
}

.container-9 {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-10 {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-11 {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .container-8 {
    padding: 0 10px;
  }
}

/*---------Text Align---------*/
.align-left {
  text-align: left;
}

.centered-text {
  text-align: center;
}

/*-------------Links-----------*/
a {
  cursor: pointer;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

a:hover {
  color: #4D4D4D;
}

.active {
  color: #ff339b !important;
}

a.golden-link {
  color: #6a5921;
}

.animated-link a {
  color: #ff339b !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.animated-link a:hover {
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}

.link-product-desc {
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/*------------img hover-----------*/
img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media (max-width: 768px) {
  img:hover {
    -webkit-filter: unset;
            filter: unset;
  }
}

/*------------Lines------------*/
.line {
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-bottom: 100px;
}

.line-deco {
  height: 0.5px;
  width: 100%;
  background-color: #4D4D4D;
}

/*-------------Highlights------------*/
.exergue {
  color: #ff339b;
  font-weight: bold;
}

.exergue-it {
  color: #6a5921;
  font-style: italic;
}

.it {
  font-style: italic;
}

/*--------------Margins--------------*/
.margintop-5 {
  margin-top: 5px;
}

.margintop-10 {
  margin-top: 10px;
}

.margintop-50 {
  margin-top: 50px;
}

.margintop-25 {
  margin-top: 25px;
}

.margintop-30 {
  margin-top: 30px;
}

.marginbottom-10 {
  margin-bottom: 10px;
  /*------not used yet-----------*/
}

.marginbottom-25 {
  margin-bottom: 25px;
}

.marginbottom-50 {
  margin-bottom: 50px;
}

.notdisplaying {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*--------------general--------------*/
.desktop-not-displaying {
  display: none;
}

@media (max-width: 768px) {
  .desktop-not-displaying {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-not-displaying {
    display: none !important;
  }
}

/*--------------grayscale image thumb--------------*/
.graythumb {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media (max-width: 768px) {
  .font-logo {
    font-size: 52px;
  }
  .line {
    background-color: #4D4D4D;
  }
  .notdisplaying {
    display: none;
  }
  .margintop-25 {
    display: none;
  }
  .margin-bottom-25 {
    display: none;
  }
  .margintop-50 {
    margin-top: unset;
  }
  .margin-top-15-mobileonly {
    margin-top: 15px !important;
  }
  .margin-top-30-mobileonly {
    margin-top: 30px !important;
  }
}

@media (max-width: 768px) {
  .mobile-adapt {
    width: 100% !important;
  }
}

.mobile-adapt-h1 {
  font-size: 60px !important;
}

@media (max-width: 768px) {
  .mobile-adapt-h1 {
    font-size: 28px !important;
  }
}

/*--------------Banner--------------*/
@media (max-width: 1180px) {
  .not-for-mobile {
    display: none !important;
  }
}

/*--------------Articlenslick slider images--------------*/
.img-for-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .img-for-mobile {
    display: block;
    padding: 10px;
  }
}

/*--------------Banner--------------*/
@media (max-width: 768px) {
  .mobile-adapt-long-text {
    font-size: 18px;
  }
}

/*--------------Centered text on mobile--------------*/
@media (max-width: 768px) {
  .text-align-center-on-mobile {
    text-align: center;
  }
}

.btn-moreinfo, .btn-download {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 30px;
}

.btn-download {
  margin-top: 5px;
  color: #ff339b;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.btn-download:hover {
  color: #2e3538;
}

.moving-line {
  width: 15px;
  height: 1px;
  background-color: #4D4D4D;
  margin-top: 30px;
}

.moving-line.effect {
  -webkit-animation: movehorizontal 3s linear infinite;
          animation: movehorizontal 3s linear infinite;
}

@-webkit-keyframes movehorizontal {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(15px);
            transform: translate(15px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes movehorizontal {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(15px);
            transform: translate(15px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@media (max-width: 768px) {
  .btn-download {
    margin-top: 10px;
  }
}

/*--------------------BLOCKS--------------------*/
.logo {
  margin: 15px 0;
  text-align: center;
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.logo img {
  width: 320px;
}

@media (max-width: 764px) {
  .logo {
    margin-top: 60px;
  }
  .logo img {
    width: 350px;
  }
}

@media (max-width: 680px) {
  .logo img {
    width: 300px;
  }
}

@media (max-width: 320px) {
  .logo img {
    width: 250px;
  }
}

@media (max-width: 260px) {
  .logo img {
    width: 200px;
  }
}

@media (max-width: 220px) {
  .logo img {
    width: 180px;
  }
}

.header {
  margin: 54px 0;
  font-family: "Cormorant Garamond", serif;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.header__issu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.header__issu img {
  height: 125px;
  margin-right: 15px;
}

.header__issu-desc {
  width: 150px;
}

.header__issu-desc p {
  font-size: 13px;
}

.header__right {
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__modal {
  width: 32px;
}

.header__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
}

.header__nav-links > * + * {
  margin-left: 55px;
}

.header__nav-links-main {
  font-family: "Open Sans", sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .3em;
}

.header__nav-links-dropdown {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

/*-------------------For Burger-----------------------*/
.header__nav.show-header__nav {
  display: block;
}

.nav__mobile {
  display: none;
}

/*------------------End For Burger----------------------*/
@media (max-width: 1100px) {
  .header {
    padding-bottom: 30px;
  }
  .header__modal {
    display: none;
  }
  .header__socials {
    display: none;
  }
  .header__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav {
    display: none;
    /*--------------for burger-------------*/
    margin-top: 25px;
  }
  .header__nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav-links > * + * {
    margin-left: unset;
  }
  .header__nav-links li {
    padding: 10px;
  }
  .header__nav-links-main {
    font-size: 14px;
  }
  .nav__mobile {
    /*-------------------for burger------------------------*/
    display: block;
    margin-bottom: 10px;
  }
}

.designer {
  margin-top: 45px;
}

.designer__date {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 5px;
}

.designer__credits {
  font-size: 14px;
  letter-spacing: 1px;
  color: #2e3538;
  margin-bottom: 32px;
}

.designer__name {
  letter-spacing: 1px;
  font-size: 24px;
}

.designer__desc-short {
  text-align: center;
  margin-top: 40px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.designer__desc-short a {
  color: #000;
}

.designer__desc-short a:hover {
  color: #4D4D4D;
}

@media (max-width: 764px) {
  .designer {
    padding: 0 10px;
  }
}

.gallery-1col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 65px;
}

.gallery-1col img {
  margin-top: 30px;
}

@media (max-width: 764px) {
  .gallery-1col {
    padding: 0 10px;
  }
}

.cta {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 2;
}

.cta a {
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.cta a:hover {
  color: #4D4D4D;
}

@media (max-width: 764px) {
  .cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 35px 0;
  }
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s transform ease-in-out;
  transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
  display: none;
}

.back-to-top::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("./../../img/elements/up-arrow.svg");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

.back-to-top:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
}

.nav__mobile-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__mobile {
  position: relative;
  width: 30px;
  height: 5px;
  background-color: #000;
}

.nav__mobile::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #000;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #000;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile.nav__mobile-active {
  background-color: transparent;
}

.nav__mobile.nav__mobile-active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.nav__mobile.nav__mobile-active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.about {
  margin: 60px 0;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
}

.about span {
  font-weight: 600;
  text-transform: uppercase;
}

.about h1 {
  margin-bottom: 35px;
}

.about p {
  margin-bottom: 35px;
  padding: 0 20px;
}

.about ul li {
  font-weight: 300;
  text-transform: uppercase;
}

.about__links {
  padding: 0 20px;
}

.about .padding-10 {
  padding: 10px 0;
}

.about .padding-3 {
  padding: 3px 0;
}

@media (max-width: 764px) {
  .about {
    padding: 0 10px;
  }
}

.card {
  margin-top: 45px;
}

.card__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
}

.card__wrapper--4col {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.card__item {
  max-width: 480px;
  border: 1px solid #000;
  /*-----------  p:last-child specification, importance--------------*/
}

.card__item--mxheight-983 {
  max-height: 983px;
}

.card__item--margintop-82 {
  margin-top: -82px;
}

.card__item--margintop-165 {
  margin-top: -165px;
}

.card__item img {
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}

.card__item img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.card__item-footer {
  height: 215px;
  padding: 28px 25px;
}

.card__item p:first-child {
  margin-bottom: 22px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.card__item p:last-child {
  font-weight: 200;
  font-size: 20px;
  text-transform: lowercase;
}

@media (min-width: 764px) {
  .card {
    padding: 0 10px;
  }
  .card__wrapper {
    -webkit-column-gap: 10px;
            column-gap: 10px;
  }
}

@media (max-width: 764px) {
  .card {
    padding: 0 10px;
  }
  .card__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .card__item {
    margin: 0 auto;
    margin-top: 20px;
  }
  .card__item--margintop-82 {
    margin-top: unset;
  }
  .card__item--margintop-165 {
    margin-top: unset;
  }
}

.designerslist {
  margin: 150px 0 200px;
  text-align: center;
}

.designerslist__lettering {
  font-weight: 500;
  font-size: 72px;
}

.designerslist p {
  margin-bottom: 35px;
  padding: 0 20px;
}

.designerslist__lettering {
  font-weight: 500;
  font-size: 24px;
}

.designerslist__desc {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.designerslist__desc strong {
  font-weight: 500;
}

.designerslist__desc a {
  font-weight: 200;
}

@media (max-width: 764px) {
  .designerslist {
    margin: 50px 0;
    padding: 0 10px;
  }
}

.pagenotfound {
  padding: 0 10px;
}

.pagenotfound__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 400px;
}

.pagenotfound__text {
  font-size: 52px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 764px) {
  .pagenotfound__wrapper {
    height: auto;
  }
  .pagenotfound__text {
    font-size: 32px;
  }
}

.designersseason {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  padding: 0 10px;
  margin: 65px 0 75px;
}

.designersseason strong {
  font-weight: 500;
}

.designersseason a {
  font-weight: 200;
}

.gallery-home__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  /*-----------------(4, 1fr) to keep 4 blocks-----------------*/
  /*min-height: 684px;*/
  padding: 25px 0;
  border-top: 0.5px solid #4D4D4D;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.gallery-home .border-top-none {
  border-top: unset;
}

.gallery-home__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  /*height: 583px;*/
  -webkit-transition: all 0.5 ease-in-out;
  transition: all 0.5 ease-in-out;
}

.gallery-home__item img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.gallery-home__item-season {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #4D4D4D;
  margin: 90px 0 10px;
}

.gallery-home__item-collection {
  font-size: 12px;
  font-weight: 200;
  color: #4D4D4D;
  margin-bottom: 55px;
}

.gallery-home__item-designer {
  font-size: 32px;
  line-height: 130%;
  margin-bottom: 10px;
  padding: 0 50px;
  font-family: "Cinzel", serif;
  color: #2e3538;
}

.gallery-home__item-show {
  font-size: 12px;
  font-weight: 200;
  color: #4D4D4D;
}

.gallery-home__item-line {
  width: 0.5px;
  height: 54px;
  background-color: #4D4D4D;
  margin: 100px 0px 40px;
  -webkit-animation: movebounce 3s linear infinite;
          animation: movebounce 3s linear infinite;
}

@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.gallery-home__item-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.gallery-home__date {
  font-size: 15px;
  color: #6a5921;
  margin: 10px 0;
  font-style: italic;
  text-align: left;
}

.gallery-home__desc {
  font-family: "Cinzel", serif;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
}

.gallery-home__line, .robes-line {
  width: 100%;
  height: 0.5px;
  background-color: #000;
  margin: 10px 0;
}

.gallery-home__cat {
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  margin: 5px 0;
  text-transform: uppercase;
  text-align: left;
  color: #6a5921;
}

@media only screen and (min-width: 765px) and (max-width: 1490px) {
  .gallery-home__item-season {
    margin: 70px 0 10px;
  }
  .gallery-home__item-line {
    margin: 70px 0 30px;
  }
  .gallery-home__item-link {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

@media only screen and (min-width: 765px) and (max-width: 1320px) {
  .gallery-home__item-season {
    margin: 50px 0 10px;
  }
  .gallery-home__item-line {
    margin: 50px 0 20px;
  }
}

@media only screen and (min-width: 765px) and (max-width: 1180px) {
  .gallery-home__item-season {
    margin: 35px 0 10px;
  }
  .gallery-home__item-designer {
    font-size: 24px;
  }
}

@media only screen and (min-width: 765px) and (max-width: 1115px) {
  .gallery-home__item-designer {
    font-size: 18px;
  }
  .gallery-home__item-line {
    margin: 30px 0 20px;
  }
}

@media only screen and (min-width: 765px) and (max-width: 940px) {
  .gallery-home__item-collection {
    margin-bottom: 35px;
  }
  .gallery-home__item-line {
    height: 34px;
  }
}

@media only screen and (min-width: 765px) and (max-width: 860px) {
  .gallery-home__item-season {
    margin: 20px 0 10px;
  }
  .gallery-home__item-collection {
    margin-bottom: 25px;
  }
  .gallery-home__item-line {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  .gallery-home__wrapper {
    padding: 10px 0;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .gallery-home__item {
    margin-bottom: 5px;
  }
  .gallery-home__item-season {
    margin: 20px 0 10px;
  }
  .gallery-home__item-line {
    margin: 25px 0;
  }
  .gallery-home__item img:hover {
    -webkit-filter: unset;
            filter: unset;
  }
}

.gallery-footer {
  background-color: #000;
  padding: 72px 0;
}

.gallery-footer a {
  color: #fff;
  display: block;
}

.gallery-footer__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.gallery-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  min-height: 285px;
  max-width: 285px;
}

.gallery-footer__item-cta {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
  color: #c0c0c0;
  margin-bottom: 10px;
  padding: 0 10px;
}

.gallery-footer__item-link {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 764px) {
  .gallery-footer__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .gallery-footer__item {
    margin: 0 auto;
  }
  .gallery-footer__item img {
    padding-bottom: 10px;
  }
}

.inspoboard {
  text-align: center;
  background-color: #000;
  padding: 80px 0 90px;
}

.inspoboard h1, .inspoboard h2 {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 37px;
}

.inspoboard__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.inspoboard__intro-items {
  margin-bottom: 11px;
}

.inspoboard__intro-items a {
  color: #c0c0c0;
  font-family: "Cinzel", serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.inspoboard__intro-items a:hover {
  color: #6a5921;
}

.inspoboard__intro-items div {
  display: inline-block;
  padding-bottom: 5px;
}

.inspoboard h3 {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
  color: #c0c0c0;
  margin-bottom: 5px;
}

.inspoboard h4 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .inspoboard {
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 80px 15px 90px;
  }
  .inspoboard__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inspoboard__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .inspoboard__items img {
    padding: 5px 10px;
  }
  .inspoboard h3 {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .inspoboard h2 {
    font-size: 24px;
    padding: 0 10px;
  }
  .inspoboard h4 {
    margin-top: 5px;
  }
}

.editorials {
  background-color: #f6f6f6;
  padding: 50px 0 80px;
}

.editorials__intro {
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #4D4D4D;
  text-align: center;
  margin-bottom: 50px;
}

.editorials__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.editorials__items-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.editorials__items-cta a {
  display: block;
}

.editorials__item {
  text-align: center;
}

.editorials__item p:first-child {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4D4D4D;
  margin-bottom: 10px;
}

.editorials__item p:nth-child(2) {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #ff339b;
  margin-bottom: 10px;
}

.editorials__item--border-right {
  border-right: 0.5px solid #4D4D4D;
}

.editorials__item--padding-right {
  padding-right: 74px;
}

.editorials__item--padding-left {
  padding-left: 74px;
}

@media (max-width: 764px) {
  .editorials__intro {
    margin-bottom: 20px;
  }
  .editorials__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 70px;
  }
  .editorials__item img {
    padding: 0 10px;
  }
  .editorials__item p:nth-child(2) {
    font-size: 18px;
  }
  .editorials__item--padding-right {
    padding-right: unset;
  }
  .editorials__item--padding-left {
    padding-left: unset;
  }
}

.homeblog {
  padding: 84px 0;
}

.homeblog__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 74px;
          column-gap: 74px;
}

.homeblog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
}

.homeblog__item p {
  text-align: center;
}

.homeblog__item img {
  margin-bottom: 33px;
  max-height: 690px;
}

.homeblog__item-author {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4D4D4D;
}

.homeblog__item-date {
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  color: #4D4D4D;
}

.homeblog__item-title {
  font-size: 28px;
  font-weight: 200;
  line-height: 130%;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-top: 33px;
  font-family: "Cinzel", serif;
}

.homeblog span {
  margin-right: 10px;
}

.homeblog span:last-child {
  margin-right: 0;
}

@media (max-width: 1380px) {
  .homeblog__item-title {
    font-size: 22px;
  }
}

@media (max-width: 764px) {
  .homeblog {
    padding: 0 20px;
  }
  .homeblog__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .homeblog__item-title {
    padding: 0 10px;
    margin-bottom: 30px;
  }
}

.footertop {
  background-color: #000;
  color: #fff;
  padding: 36px 10px;
}

.footertop__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footertop__nav {
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.footertop__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 2px;
  color: #c0c0c0;
}

.footertop__nav-links > * + * {
  margin-left: 20px;
}

.footertop__socials {
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.footertop__socials-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 2px;
  color: #c0c0c0;
}

.footertop__socials-links > * + * {
  margin-left: 20px;
}

.footertop__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

@media (max-width: 1078px) {
  .footertop__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footertop__nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .footertop__nav-links > * + * {
    margin-left: unset;
  }
  .footertop__nav-links li {
    padding: 10px 0;
  }
  .footertop__socials-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .footertop__socials-links > * + * {
    margin-left: unset;
  }
  .footertop__socials-links li {
    padding: 10px 0;
  }
  .footertop__logo {
    padding: 20px 0;
    margin-right: unset;
  }
}

.footerbottom {
  background-color: #000;
  color: #fff;
  padding: 27px 10px;
}

.footerbottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footerbottom__nav {
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
}

.footerbottom__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 2px;
  color: #c0c0c0;
}

.footerbottom__nav-links li:first-child {
  margin-right: 30px;
}

.footerbottom__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.5px;
  color: #c0c0c0;
}

.footerbottom__madeby {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 33.3%;
      -ms-flex: 33.3%;
          flex: 33.3%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.5px;
  color: #c0c0c0;
}

@media (max-width: 1078px) {
  .footerbottom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerbottom__nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footerbottom__nav-links li:first-child {
    margin-right: unset;
    margin-left: unset;
  }
  .footerbottom__nav-links li {
    padding: 10px 0;
  }
  .footerbottom__copyright {
    padding: 10px 0;
  }
  .footerbottom__madeby {
    padding: 10px 0;
  }
}

.article {
  padding: 105px 10px;
}

.article-strong {
  font-weight: 400;
  color: #000;
  font-style: italic;
}

.article__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 45px;
          column-gap: 45px;
}

.article-col1 {
  max-width: 662px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-col1 ul, .article-col1 ul li {
  list-style: disc;
}

.article-col1 ul {
  padding-left: 10px;
}

.article-col1 li {
  margin-bottom: 5px;
}

.article-col1 ul li::marker {
  font-size: 11px;
  color: #6a5921;
}

.article-col1 h1 {
  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 15px;
}

.article-col1 h2 {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 200;
  color: #6a5921;
  margin-bottom: 25px;
}

.article-col1 h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 19px;
  color: #6a5921;
  margin-bottom: 15px;
  margin-top: 15px;
}

.article-col1 h4 {
  font-family: "Cinzel", serif;
  color: #4D4D4D;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 10px;
}

.article-col1-intro {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 19px;
  color: #6a5921;
  margin-bottom: 30px;
  margin-top: 30px;
}

.article-col1-date {
  font-family: "Playfair Display", serif;
  color: #6a5921;
  margin-top: 25px;
  font-style: italic;
}

.article-col1-quote {
  font-family: "Playfair Display", serif;
  color: #6a5921;
  font-style: italic;
  margin-bottom: 30px;
  margin-left: 30px;
  border-left: 1px solid #6a5921;
  padding-left: 30px;
}

.article-col1-text, .article-col1-text-exergue, .article-col1-linktoproduct {
  color: #4D4D4D;
  margin-bottom: 30px;
  text-align: justify;
  /*padding: 0 10px;*/
  letter-spacing: .05em;
}

.article-col1-text-exergue {
  font-size: 24px;
  line-height: 120%;
  font-weight: 400;
  color: #000;
}

.article-col1-linktoproduct {
  margin-bottom: unset;
  font-size: 14px;
  color: #4D4D4D;
  font-weight: 100;
  letter-spacing: .1em;
}

.article-col1-bio {
  color: #4D4D4D;
  text-align: justify;
  /*padding: 0 10px;*/
  letter-spacing: .05em;
  font-style: italic;
}

.article-col1-credits {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #4D4D4D;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 20px 20px;
}

.article-col1__credits-team {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 200;
  font-style: italic;
  color: #4D4D4D;
  text-align: justify;
}

.article-col1__credits-team p:nth-child(1) {
  margin-top: 30px;
}

.article__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__list-desc {
  font-size: 17px;
  line-height: 130%;
  font-family: "Cinzel", serif;
  padding-right: 50px;
}

.article__list-desc--min-height {
  min-height: 85.78px;
  /*------------does 85.77-------------*/
}

.article-col1__dontmiss {
  margin-top: 30px;
  padding: 0 10px;
}

.article-col1__dontmiss-intro {
  color: #ff339b;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
}

.article-col1__dontmiss-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.article-col1__dontmiss-items p {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  padding: 10px 0 20px;
}

.article-col2 {
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
}

.article-col2-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: #6a5921;
  font-style: italic;
}

.article-col2-title--bigger {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 5px 0;
  /*---------OPERA-------*/
}

.article-col2__viewmore-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  -webkit-column-gap: 15px;
          column-gap: 15px;
  row-gap: 20px;
  margin: 5px 0;
  /*----------OPERA----------*/
}

.article-col2__viewmore-items--fontsmaller {
  font-size: 17px;
}

@media (max-width: 764px) {
  .article {
    padding: 45px 10px;
  }
  .article-col1 h1 {
    font-size: 28px;
  }
  .article-col1__dontmiss-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .article-col1-linktoproduct {
    padding: 0 10px;
    font-size: 11px;
  }
  .article-col2-title:first-child {
    margin-top: 20px;
  }
  .article__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article__list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .article__list-desc {
    padding-right: unset;
  }
  .article__list-desc--min-height {
    min-height: unset;
  }
  .article__list div {
    margin-bottom: 10px;
  }
}

.dropbtn {
  position: relative;
}

.dropbtn img {
  vertical-align: middle;
  margin: -2px 0 0 3px;
  width: 8px;
}

.dropdown-content {
  display: none;
  color: #fff;
  background-color: #000;
  font-weight: 400;
  z-index: 99;
  position: absolute;
}

.dropdown-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dropdown-content ul li {
  margin-left: 0;
  padding: 10px 30px;
}

.dropdown-content a:hover {
  color: #ff339b;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .dropdown-content {
    right: 50%;
    -webkit-transform: translate(50%, 8%);
            transform: translate(50%, 8%);
  }
}

.text {
  padding: 45px 0;
  line-height: 130%;
  text-align: justify;
}

.text-title {
  font-size: 18px;
}

.text-bold {
  font-weight: 500;
}

.text p {
  margin-bottom: 30px;
  font-weight: 300;
}

.text ul {
  padding-left: 50px;
}

.text ul li {
  list-style-type: disc;
  font-weight: 300;
}

.text ul li:last-child {
  margin-bottom: 30px;
}

@media (max-width: 764px) {
  .text {
    padding: 20px;
  }
}

.designersdirectory {
  text-align: center;
  /*background-color: #f6f6f6;*/
  padding: 120px 20px 120px;
}

.designersdirectory h1 {
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  padding-bottom: 37px;
}

.designersdirectory-exergue, .designersdirectory strong {
  font-weight: 200;
  text-transform: capitalize;
  letter-spacing: 3px;
  line-height: 180%;
  color: #000;
  cursor: pointer;
}

.designersdirectory-exergue a:hover, .designersdirectory strong a:hover {
  color: #ff339b;
}

.designersdirectory strong {
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 764px) {
  .designersdirectory-exergue, .designersdirectory strong {
    font-size: 18px;
  }
}

.modal-about.visible {
  display: block;
}

.modal-about {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 500px;
  height: 100vh;
  padding: 30px;
  background-color: #000;
  color: #fff;
  font-weight: 200;
  display: none;
}

.modal-about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-about__wrapper p:nth-child(2) {
  font-size: 24px;
  margin: 50px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-about__wrapper p:nth-child(3) {
  line-height: 28px;
}

.modal-about__wrapper p:nth-child(4) {
  line-height: 28px;
  margin-bottom: 50px;
}

.modal-about__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 30px;
  margin-right: 20px;
}

.modal-about a {
  color: #ff339b;
}

.modal-about a:hover {
  color: #4D4D4D;
}

@media (max-width: 764px) {
  .modal-about {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.inspiration {
  margin-top: 162px;
}

.inspiration__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.inspiration__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 105px;
          column-gap: 105px;
}

.inspiration__filter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 18px;
}

.inspiration__filter-item p:first-child {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
}

.inspiration__filter-item p:last-child {
  font-size: 17px;
  color: gray;
}

.inspiration__title {
  font-family: "Cinzel", serif;
  font-size: 48px;
  margin: 40px 0 30px;
}

.inspiration__intro {
  font-family: "Cinzel", serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: gray;
}

.inspiration__text {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: gray;
}

.inspiration__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.inspiration__credits {
  margin: 120px 0 80px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.inspiration__credits-01 {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inspiration__credits-02 {
  font-size: 12px;
  letter-spacing: 1px;
  color: gray;
}

@media (max-width: 768px) {
  .inspiration {
    margin-top: 20px;
  }
  .inspiration__wrapper {
    text-align: center;
  }
  .inspiration__title {
    font-size: 24px;
    margin: 40px 0 15px;
  }
  .inspiration__intro {
    font-size: 18px;
  }
  .inspiration__filter {
    -webkit-column-gap: 55px;
            column-gap: 55px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .inspiration__credits {
    margin: 80px 0 80px;
  }
}

.cats {
  padding: 105px 10px;
}

.cats__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
}

.cats__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}

.cats__thumb-item {
  position: relative;
  width: 316px;
  height: 177px;
}

.cats__imgcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  z-index: 99;
}

.cats__imgcaption:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.cats__imgcaption-par {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.cats__desc {
  display: none;
}

.cats__desc-par {
  color: #000;
  font-size: 22px;
  line-height: 130%;
  font-family: "Cinzel", serif;
}

@media (max-width: 768px) {
  .cats {
    padding: 45px 10px;
  }
  .cats__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cats__thumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cats__desc {
    display: block;
    text-align: center;
  }
}

.hslider__wrapper {
  height: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hslider__item {
  height: 100%;
  width: 500%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.hslider__item::after {
  content: 'Photos de mariage \A de Luxe - Le Guide';
  white-space: pre;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 48px;
  position: absolute;
  bottom: 100px;
  left: 50px;
  z-index: 99;
  width: 100%;
  height: 10%;
}

.hslider__item-img {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
  -webkit-animation: slide 20s infinite ease-in-out;
          animation: slide 20s infinite ease-in-out;
}

.hslider .hslider__item:hover .hslider__item-img {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes slide {
  0% {
    left: 0;
  }
  20% {
    left: -20%;
  }
  40% {
    left: -40%;
  }
  60% {
    left: -60%;
  }
  80% {
    left: -80%;
  }
  100% {
    left: -100%;
  }
}

@keyframes slide {
  0% {
    left: 0;
  }
  20% {
    left: -20%;
  }
  40% {
    left: -40%;
  }
  60% {
    left: -60%;
  }
  80% {
    left: -80%;
  }
  100% {
    left: -100%;
  }
}

@media (max-width: 768px) {
  .hslider {
    display: none;
  }
}

.hslider-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hslider-mobile {
    display: block;
  }
  .hslider-mobile img {
    max-width: 100%;
  }
}

.pagination {
  display: inline-block;
  margin-top: 215px;
}

.pagination a {
  color: #000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border: 1px solid #ddd;
  margin: 0 4px;
}

.pagination a.active {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

@media (max-width: 768px) {
  .pagination {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.breadcrumbs__wrapper {
  margin: 55px 0 15px;
  padding: 15px 0 15px 20px;
  border-top: 0.5px solid #4D4D4D;
  border-bottom: 0.5px solid #4D4D4D;
}

.breadcrumbs__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs__links > * + * {
  margin-left: 35px;
}

.breadcrumbs__links-item {
  font-family: "Open Sans", sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .3em;
}

@media (max-width: 768px) {
  .breadcrumbs__wrapper {
    padding-left: unset;
  }
  .breadcrumbs__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .breadcrumbs__links > * + * {
    margin-left: unset;
  }
  .breadcrumbs__links-item {
    padding: 5px 0;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }
}

.cartesinvitation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  border-top: unset;
}

@media (max-width: 768px) {
  .cartesinvitation {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bridalpedia-list h1 {
  text-align: center;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 35px 0 25px;
  font-size: 28px;
  line-height: 1.5;
}

.bridalpedia-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 55px 0 35px;
}

.bridalpedia-list__wrapper > * + * {
  margin-left: 15px;
}

.bridalpedia-list__wrapper a:hover {
  color: #ff339b;
}

.bridalpedia {
  padding: 50px 0 150px;
}

.bridalpedia__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.bridalpedia__item {
  text-align: center;
}

.bridalpedia__item ul li:first-child {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  margin-bottom: 30px;
}

.bridalpedia__item ul li + li {
  margin-bottom: 7px;
}

@media (max-width: 768px) {
  .bridalpedia-list h1 {
    padding-top: 37px;
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
  }
  .bridalpedia-list__wrapper > * + * {
    margin-left: unset;
    padding: 10px 15px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
  }
  .bridalpedia {
    padding: 25px 0px 100px;
  }
  .bridalpedia__wrapper {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.bridalpedia-designer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bridalpedia-designer__wrapper {
  padding: 50px 0 50px;
}

.bridalpedia-designer h1 {
  font-family: "Cinzel", serif;
  color: #ff339b;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bridalpedia-designer img {
  float: left;
  padding: 0 20px 20px 0;
}

.bridalpedia-designer p {
  max-width: 800px;
  margin-bottom: 20px;
  text-align: justify;
}

.bridalpedia-designer a {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-text-decoration-color: lightgray;
          text-decoration-color: lightgray;
  display: block;
  margin-top: 55px;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.bridalpedia-designer a:hover {
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}

.bridalpedia-designer__apropos {
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-decoration-color: lightgray;
          text-decoration-color: lightgray;
}

.bridalpedia-designer__line-deco {
  height: 0.5px;
  width: 100%;
  background-color: gray;
  margin-top: 50px;
}

a.bridalpedia-designer__link-normal {
  font-family: unset;
  text-transform: unset;
  letter-spacing: unset;
  font-weight: unset;
  text-decoration: unset;
  text-underline-offset: unset;
  -webkit-text-decoration-color: unset;
          text-decoration-color: unset;
  display: unset;
  margin-top: unset;
  -webkit-transition: unset;
  transition: unset;
  color: #ff339b;
}

@media (max-width: 768px) {
  .bridalpedia-designer h1 {
    text-align: center;
  }
  .bridalpedia-designer img {
    float: none;
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-right: unset;
  }
}

.bridalpedia-collections {
  padding-bottom: 100px;
}

.bridalpedia-collections h1 {
  font-family: "Cinzel", serif;
  color: #ff339b;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 40px 0 20px;
}

.bridalpedia-collections__intro {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.bridalpedia-collections__intro p {
  color: #ff339b;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
}

.bridalpedia-collections__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.bridalpedia-collections__item h2 {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.bridalpedia-collections__item h3 {
  font-size: 16px;
  color: #4D4D4D;
  letter-spacing: 1px;
}

.bridalpedia-collections__desc {
  margin: 10px 0 20px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #4D4D4D;
  border-bottom: 1px solid #4D4D4D;
}

@media (max-width: 768px) {
  .bridalpedia-collections__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bridalpedia-collections__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bridalpedia-collections h1 {
    text-align: center;
  }
}

.robes {
  margin: 0 0 100px;
}

.robes .robes__filter-item.active {
  color: #ff339b;
  /* color for the active filter */
}

.robes__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.robes__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 35px 126px;
  line-height: 1.8;
}

.robes__filter > * + * {
  margin-left: 25px;
}

.robes__filter-item {
  font-size: 14px;
  color: #4D4D4D;
  font-weight: 100;
  letter-spacing: .1em;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.robes__filter-item:hover {
  color: #ff339b;
  cursor: pointer;
}

.robes__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.robes__items img {
  height: 520px;
  width: 390px;
}

.robes h1 {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 35px 0 20px;
}

.robes h2 {
  font-size: 15px;
  color: #6a5921;
  margin: 10px 0;
  font-style: italic;
  text-align: left;
}

.robes__items-price {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
}

.robes__items-desc {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 5px 0 0;
  text-transform: uppercase;
  color: #6a5921;
  min-height: 40px;
}

.robes-line {
  margin-top: unset;
}

@media (max-width: 768px) {
  .robes h1 {
    font-size: 28px;
  }
  .robes__items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .robes__items img {
    height: unset;
    width: unset;
    height: auto;
    width: 100%;
  }
  .robes__filter-item {
    padding: 7px 0;
  }
  .robes__filter {
    line-height: unset;
    margin: 35px 0;
  }
  .robes__filter > * + * {
    margin-left: unset;
  }
  .robes__filter div {
    padding: 10px 15px;
  }
}

.robe-detail {
  margin: 40px 0;
}

.robe-detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.robe-detail__gallery {
  min-width: 780px;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.robe-detail__gallery img {
  margin-bottom: 10px;
  width: 95%;
}

.robe-detail__desc {
  margin-top: 20px;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  font-family: "Cinzel", serif;
}

.robe-detail__desc h1 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.robe-detail__desc h2 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 25px;
}

.robe-detail__desc h3 {
  margin-bottom: 45px;
}

.robe-detail__desc-text {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  color: gray;
  border-top: 0.3px solid #2e3538;
  border-bottom: 0.3px solid #2e3538;
  padding: 20px 0;
  margin-bottom: 20px;
}

.robe-detail__desc-text span {
  display: block;
  margin-top: 10px;
}

.robe-detail__desc-sticky {
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  top: 0;
  /* Adjust this value based on where you want it to stick */
  background-color: #fff;
  /* Ensure background is solid for readability */
  z-index: 100;
  /* Ensure it stays above other content */
}

.robe-detail__desc-vente {
  margin: 20px 0;
}

.robe-detail__desc-site {
  color: #ff339b;
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

@media (max-width: 768px) {
  .robe-detail__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .robe-detail__gallery {
    min-width: unset;
  }
  .robe-detail__gallery img {
    width: 100%;
  }
  .robe-detail__desc-site {
    margin-bottom: 20px;
  }
}

.kc-title {
  font-size: 60px !important;
}

.kc-title--fortin {
  font-size: 56px !important;
}

.link {
  max-width: 662px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.link a {
  color: #ff339b;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
}

@media (max-width: 768px) {
  .kc-title {
    font-size: 42px !important;
  }
}

.swiper {
  width: 100%;
  max-width: 720px;
  margin: 50px auto;
  /* Center the slider */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 355px !important;
  }
}

/* Slider Images */
.single-item {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
  /* Center the slider */
}

.single-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slider Images TENDANCES MODE*/
.single-item--trend {
  width: 100%;
  max-width: 662px;
  margin: 0 auto;
  /* Center the slider */
}

.single-item--trend img {
  width: 100%;
  height: auto;
  display: block;
}

/* END Slider Images TENDANCES MODE*/
.single-item--rel {
  position: relative;
}

.single-item--desc {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px;
}

.slick-dots li button:before {
  font-size: 8px !important;
}

.slick-dots li {
  margin: 0 -1px !important;
  /* Adjust the margin to bring dots closer */
}

@media (max-width: 768px) {
  .single-item {
    width: 100%;
  }
  .single-item img {
    max-width: 100%;
  }
}

.top {
  background-color: #000;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 1px;
  position: fixed;
  bottom: 320px;
  /* distance from bottom */
  right: 20px;
  /* distance from right */
  width: 220px;
  /* circle width */
  height: 120px;
  /* circle height */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* to center content */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  z-index: 10;
  padding: 0;
  /* remove padding */
  margin: 0;
  /* remove margin */
}

@media (max-width: 768px) {
  .top {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 1px;
    padding: 10px 0;
    margin-bottom: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: unset;
    width: unset;
    height: unset;
    z-index: 10;
  }
}

.dropbtn {
  position: relative;
  text-align: center;
}

.dropbtn img {
  vertical-align: middle;
  margin: -2px 0 0 3px;
  width: 8px;
}

.dropdown-mb-visible-content {
  display: none;
  color: #fff;
  background-color: #000;
  font-weight: 400;
  z-index: 99;
  position: absolute;
}

.dropdown-mb-visible-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dropdown-mb-visible-content ul li {
  margin-left: 0;
  padding: 10px 30px;
  text-align: center;
}

.dropdown-mb-visible-content a:hover {
  color: #ff339b;
}

.dropdown-mb-visible:hover .dropdown-mb-visible-content {
  display: block;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .dropbtn img {
    display: none;
  }
  .dropdown-mb-visible-content {
    display: block;
    position: relative;
    color: #000;
    background-color: unset;
  }
  .dropdown-mb-visible-content ul li {
    font-size: 12px;
    padding: 12px 30px;
    font-style: italic;
  }
}

.contribution h1 {
  font-family: "Cinzel", serif;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.contribution p {
  color: #4D4D4D;
  margin-bottom: 30px;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .contribution h1 {
    font-size: 32px;
  }
}

.magazine__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .magazine {
    padding: 0 10px;
  }
}

.vertical-submission {
  position: relative;
}

.vertical-submission::after {
  content: 'Recherche photos de mariage';
  color: #fff;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  position: absolute;
  display: block;
  width: 150px;
  height: 300px;
  top: 5%;
  left: 5%;
  z-index: 99;
}

.vertical-editorials-en {
  position: relative;
}

.vertical-editorials-en::after {
  content: 'Submit Your Bridal Editorial';
  color: #fff;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  position: absolute;
  display: block;
  width: 150px;
  height: 300px;
  top: 5%;
  left: 5%;
  z-index: 99;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Pour un défilement plus fluide sur iOS */
  font-size: 13px;
}

.table-responsive th {
  padding: 2px;
  text-align: left;
}

.table-responsive td {
  padding: 2px;
  text-align: left;
}
/*# sourceMappingURL=style.css.map */