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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    color: #000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6, .h3, .h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

h1,h2,h3,h4,h5 {
    font-weight: bold;
    color: #212121;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
b,
strong {
  font-weight: bolder;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.homeslider .slider {

}
.Mobile .homeslider .slider {
	box-shadow: none;
    padding: 0;
}
.homeslider .slider-track {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

a {
    background: transparent;
    -webkit-transition: .5s;
    transition: .5s;
    color: #777
    text-decoration: none;
}
a:hover {
    color: #222;
}
a:hover, a:active, a a:focus {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    color: #000;
}
h1 {
    font-size: 27px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin: 10px 0;
}

p {
  font-size: 18px;
}

a,
input[type="submit"],
input[type='submit'],
button {
    cursor: pointer;
}

input,
button,
textarea {
    outline: none;
}

ul {
  list-style: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container {
  padding: 0 12px;
}

a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
b.titre-album {
    width: 100%;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 15px;
    text-align: center;
    text-transform: uppercase;
}

.mentions h2 {
    padding: 20px;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}

.blog_pageIntrouvable {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
  left: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #000;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #333
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #333
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}

div#Messages {
    text-align: center;
    background-color: #d14104;
    padding: 10px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

header {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden;
}

.background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 700px;
}

._bg {
    width: 100%;
    height: 700px;
    position: relative;
}

.Mobile header,
.Mobile .background ,
.Mobile ._bg {
    height: 400px;
}

.Tablet header,
.Tablet .background ,
.Tablet ._bg {
    height: 500px;
}

._bg:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Desktop nav.nav {
    background: #ffff;
}

.nav_content {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 40% auto 40%;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.nav_left a {
    color: #000;
}

.nav_left a:hover {
    color: #bbb;
}

/*.nav_center {
    padding: 20px;
    background: #fff;
}*/

.nav_center a img {
    width: 110px;
    height: 92px;
    object-fit: contain;
}

.Desktop .nav_center a img {
    width: 200px;
    height: 160px;
    object-fit: contain;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.Desktop .nav_right .nav_tel {
    background: #000;
    padding: 5px 20px;
    border-radius: 20px;
}

.nav_right > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav_right svg {
    width: 20px;
    height: 20px;
}

.nav_adr {
    color: #000;
}

.Tablet .nav_adr,
.Mobile .nav_adr {
    color: #fff;
}

.nav_adr svg {
    fill: #000;
}

.nav_right a {
    color: #fff;
}

.nav_right a:hover {
    color: #bbb;
}

.Tablet .nav,
.Mobile .nav {
    position: fixed;
    z-index: 99999;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
}

.Tablet .nav_content,
.Mobile .nav_content {
  display: flex;
  align-items: center;
  width: 100%;
}

.Tablet .navTop_mob,
.Mobile .navTop_mob {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.Tablet .navTop_mob a img {
  width: 130px;
  height: 108px;
  object-fit: contain;
}

.Mobile .navTop_mob a img {
    width: 100px;
    height: 83px;
    object-fit: contain;
}

.burger_menu img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.Tablet .navTop_left {
  position: fixed;
  top: 108px;
  background: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  gap: 20px;
}

.Mobile .navTop_left {
  position: fixed;
  top: 83px;
  background: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  gap: 20px;
}

.Tablet .navTop_left a,
.Mobile .navTop_left a {
  color: #000;
  background: #fff;
  padding: 5px 20px;
  border-radius: 5px;
}

.Tablet .navList {
  position: fixed;
  top: 108px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: #333;
  padding: 20px 50px;
  display: none;
}

.Mobile .navList {
    position: fixed;
    top: 83px;
    grid-template-columns: 1fr;
    width: 100%;
    background: #333;
    padding: 20px;
    display: none;
}

.Tablet .navList.navShow,
.Mobile .navList.navShow {
    display: grid;
}

.Tablet .navItem,
.Mobile .navItem {
  display: grid;
  gap: 10px;
}

.Tablet .navItem a,
.Mobile .navItem a {
  color: #fff;
}

.Mobile .navContact {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f9f9f988;
}

.Tablet .navContact > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
}

.Mobile .navContact > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.Tablet .navContact svg,
.Mobile .navContact svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.Tablet .navContact > div a,
.Mobile .navContact > div a {
  color: #fff;
  font-size: 17px;
}

.hero {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.hero_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: -100px;
}

.Mobile .hero_content {
    top: 45px;
    width: 100%;
}

.Tablet .hero_content {
    top: 50px;
    width: 100%;
}

.hero_nom {
    color: #ffdc90;
    font-size: 17px;
    letter-spacing: 5px;
    font-style: italic;
    font-family: math;
    text-transform: uppercase;
    background: #858181c2;
    padding: 5px 20px;
    border: 1px solid;
    border-radius: 50px;
    line-height: 1;
}

.Mobile .hero_nom {
    font-size: 13px;
}

.hero_h1 {
    font-size: 45px;
    line-height: 1;
    width: 60%;
    text-align: center;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 0;
}

.Mobile .hero_h1 {
    width: 100%;
    font-size: 30px;
}

section {
    position: relative;
    padding: 50px 0;
}

.Tablet section,
.Mobile section {
    padding: 50px 0;
}

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

.Tablet .s1_content {
  gap: 30px;
  grid-template-columns: 30% auto;
  align-items: center;
}

.Mobile .s1_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.s1_left {
    display: flex;
    align-items: start;
    gap: 20px;
    position: relative;
}

.Tablet .s1_left {
  gap: 10px;
  flex-direction: column;
}

.Mobile .s1_left > div,
.Tablet .s1_left > div {
  width: 100%;
}

.s1_img.s1_img_1 img {
    width: 300px;
    height: 430px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 10px;
}

.s1_img.s1_img_2 img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    background: #ddd;
    display: block;
    margin-top: 35px;
    border-radius: 10px;
}

.Tablet .s1_img.s1_img_1 img,
.Tablet .s1_img.s1_img_2 img {
    margin: 0;
    width: 100%;
    height: 220px;
}

.Mobile .s1_img.s1_img_1 img,
.Mobile .s1_img.s1_img_2 img {
    width: 100%;
    height: 250px;
}

.s1_img.s1_img_3 {
    position: absolute;
    top: -20px;
    right: 200px;
}

.s1_img.s1_img_3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.s1_img.s1_img_4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.s1_img.s1_img_4 img {
    width: 285px;
    height: 200px;
    object-fit: contain;
}

.s_nom {
    font-size: 16px;
    letter-spacing: 3px;
    font-family: math;
    text-transform: uppercase;
    color: #d22e2f;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
    padding-right: 45px;
    line-height: 1;
}

.s_nom:before {
    width: 40px;
    height: 2px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #d22e2f;
}

.s1_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.s1_box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s1_icon {
    width: 50px;
    height: 50px;
    background: #f9dbdb;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s1_icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.s1_box_txt {
    font-size: 18px;
}

._s1_horaire {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 17px;
}

.Tablet ._s1_horaire {
  font-size: 15px;
}

.s2_top {
    text-align: center;
    width: 50%;
    margin: auto;
}

.Mobile .s2_top {
    width: 100%;
}

.Tablet .s2_top {
  width: 70%;
}

.s2_top .s_nom {
    margin: 0 auto 6px;
    font-size: 13px;
    color: #4b5f2c;
    padding: 0 50px;
    line-height: 0.8;
}

.s2_top .s_nom:before {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #4b5f2c;
}

.s2_top .s_nom:after {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #4b5f2c;
}

.s2_h1 {
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s2_p {
    font-size: 17px;
    margin-bottom: 30px;
}

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

.Tablet .s2_grid {
  gap: 10px;
}

.Mobile .s2_grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.s2_box {
    display: grid;
    grid-template-columns: 40% auto;
    background: #eee;
    height: 450px;
    gap: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.Mobile .s2_box {
    display: flex;
    flex-direction: column;
    height: auto;
}

.s2_box_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Mobile .s2_box_left img {
    width: 100%;
    height: 150px;
    display: block;
    object-position: top;
}

.s2_box_right {
    padding: 40px 20px;
}

.Mobile .s2_box_right {
    padding: 30px;
}

.s2_h2 {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.Mobile .s2_h2 {
    flex: 22px;
}

.s2_box_p {
    margin: 5px 0 20px;
    line-height: 1.3;
    font-size: 14px;
}

a.s2_box_btn {
    padding: 10px 30px;
    background: #d22e2f;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #d22e2f;
    margin: 0 0 20px;
    display: block;
    width: fit-content;
}

a.s2_box_btn:hover {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.Tablet a.s2_box_btn {
  padding: 5px 15px;
}

.s2_qr img {
    width: 215px;
    height: 215px;
    object-fit: contain;
    display: block;
}

.Tablet .s2_qr img {
  width: 150px;
  height: 150px;
  margin-top: 30px;
}

.section_3:before {
    content: "";
    display: block;
    height: 45px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/img/bg_top.png');
    background-position: top center;
    background-repeat: repeat-x;
    background-size: 100% auto;
}

.section_3:after {
    content: "";
    display: block;
    height: 45px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url('../images/img/bg_bottom.png');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: 100% auto;
}

.s3_content .s_nom {
    margin: 0 auto 6px;
    font-size: 13px;
    color: #ffdc90;
    padding: 0 50px;
    line-height: 0.8;
}

.s3_content .s_nom:before {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffdc90;
}

.s3_content .s_nom:after {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffdc90;
}

.s3_txt {
    text-align: center;
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 50px;
}

.Tablet .s3_txt {
  margin: 30px 0;
  font-size: 40px;
}

.Mobile .s3_txt {
    margin: 20px 0;
    font-size: 30px;
    line-height: 1;
}

.s4_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.Tablet .s4_content {
  gap: 20px;
  display: grid;
  grid-template-columns: 30% auto;
}

.Mobile .s4_content {
    flex-direction: column;
    gap: 30px;
}

.s4_left {
    display: flex;
    gap: 20px;
}

.Tablet .s4_left {
  flex-direction: column;
}

.Tablet .s4_left,
.Mobile .s4_left {
    width: 100%;
}

.s4_img_1 {
    position: relative;
    top: -25px;
}

.s4_img_2 {
    position: relative;
    bottom: -25px;
}

.Mobile .s4_left > div,
.Tablet .s4_left > div {
    width: 100%;
    top: 0;
}

.s4_left img {
    width: 300px;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 10px;
}

.Mobile .s4_left img,
.Tablet .s4_left img {
    width: 100%;
    height: 250px;
}

.s4_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-top: 40px;
}

.s4_box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s4_icon {
    width: 50px;
    height: 50px;
    background: #f9dbdb;
    min-width: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s4_icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.s4_box_txt {
    font-size: 18px;
}

section.section_5 {
    background: #f7f7f7;
}

.s5_content {
    display: grid;
    grid-template-columns: 25% auto 25%;
    gap: 50px;
    align-items: center;
}

.Tablet .s5_content {
  grid-template-columns: 30% auto 30%;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.Mobile .s5_content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.s5_txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.Tablet .s5_txt {
  gap: 30px;
}

.Mobile .s5_txt {
    gap: 30px;
    justify-content: inherit;
}

.s5_box {
    position: relative;
}

.s5_icon {
    position: absolute;
    z-index: 0;
    filter: grayscale(1);
    opacity: 0.1;
    left: -20px;
    top: -15px;
}

.s5_icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.s5_box_h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
}

.Tablet .s5_box_h2 {
  font-size: 23px;
  margin: 7px 0;
}

.Mobile .s5_box_h2 {
    font-size: 19px;
}

.s5_box_p {
    font-size: 17px;
}

.Tablet .s5_box_p,
.Mobile .s5_box_p {
  font-size: 15px;
}

.s5_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s5_img {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/img/circle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.Tablet .s5_img {
  width: 200px;
  height: 200px;
}

.s5_img img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 50%;
}

.Tablet .s5_img img {
    width: 150px;
    height: 150px;
}

.s6_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.Tablet .s6_content {
  gap: 70px;
}

.Mobile .s6_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.Mobile .s6_left {
    order: 2;
}

.s6_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-top: 40px;
}

.Mobile .s6_grid,
.Tablet .s6_grid {
  grid-template-columns: 1fr;
}

.s6_box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s6_icon {
    width: 50px;
    height: 50px;
    background: #f9dbdb;
    min-width: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s6_icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.s6_grid .s6_box_txt {
    font-size: 18px;
}

.s6_right {
    position: relative;
}

.s6_right .s6_txt {
    position: absolute;
    background: #4b5f2c;
    width: 280px;
    padding: 30px;
    color: #fff;
    border-radius: 10px;
    font-size: 17px;
    line-height: 1.4;
    bottom: 50px;
    left: -50px;
}

.Mobile .s6_right .s6_txt {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 93%;
}

.s6_right .s6_txt:before {
    content: '';
    background: url(../images/img/pizza-1.png);
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    z-index: 0;
    filter: grayscale(1) invert(1);
    opacity: 0.1;
    top: 7px;
    left: 7px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.s6_img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 10px;
}

.Mobile .s6_img img {
    height: 350px;
}

.s7_content .s_nom {
    margin: 0 auto 6px;
    font-size: 13px;
    color: #ffdc90;
    padding: 0 50px;
    line-height: 0.8;
}

.s7_content .s_nom:before {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffdc90;
}

.s7_content .s_nom:after {
    width: 40px;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffdc90;
}

.s7_h1 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.Mobile .s7_h1 {
    font-size: 24px;
}

.s7_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.Tablet .s7_grid {
  gap: 10px;
}

.Mobile .s7_grid {
  gap: 10px;
  grid-template-columns: 1fr;
}

.s7_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px;
    border: 2px solid #fff;
    border-radius: 10px;
}

.Tablet .s7_box {
  padding: 40px 10px;
}

.Mobile .s7_box {
    padding: 30px 20px;
}

.s7_icon img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.Tablet .s7_icon img,
.Mobile .s7_icon img {
  width: 50px;
  height: 50px;
}

.s7_h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.Mobile .s7_h2,
.Tablet .s7_h2 {
  font-size: 20px;
}

.s7_p {
    color: #f5f5f5;
}

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

.Mobile .s8_content {
    grid-template-columns: 1fr;
}

.Mobile div#Map {
    width: 100%;
    height: 300px;
}

.s8_h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.s8_p {
    color: #535353;
    margin: 10px 0 40px;
}

.s8_li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.s8_li svg {
    width: 20px;
    height: 20px;
}

.s8_li a {
    font-size: 17px;
    color: #000;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #eee;
    width: fit-content;
}

.social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50%;
    background: transparent;
}

.social a:hover {
    background: #d22e2f;
    border: 1px solid #d22e2f;
}

.social a svg {
    width: 17px;
    height: 17px;
}

.social a:hover svg {
    filter: invert(1);
}

footer {
    background-image: url(../images/img/bg_top.png), url(../images/img/bg_wood.jpg);
    background-position: center top, center top;
    background-repeat: repeat-x, no-repeat;
    background-size: 100% auto, cover;
    padding: 80px 0 20px;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.footer_content > a img {
    background: #fff;
    width: 300px;
    height: 249px;
    object-fit: contain;
    border-radius: 5px;
    padding: 0 10px;
}

.copyright, .copyright a {
    color: #fff;
    font-size: 17px;
}

.s_contnet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.Mobile .s_contnet {
    grid-template-columns: 1fr;
    gap: 30px;
}

.Tablet .s_contnet {
    grid-template-columns: 1fr;
}

.contact_h1 {
    font-weight: 600;
    font-size: 40px;
}

.contact_li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
}

.contact_icon {
    width: 50px;
    height: 50px;
    background: #d22e2f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.contact_icon svg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact_h2 {
    font-weight: 600;
    font-size: 16px;
}

.contact_link {
    display: grid;
}

.contact_link a, .adr {
    color: #000;
    font-size: 19px;
    line-height: 1.4;
}

form#FormDevis {
    display: grid;
    gap: 15px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.04);
    background: #fff;
    border: 1px solid #edebd7;
    border-radius: 20px;
    margin-left: 30px;
    padding: 60px;
}

.Tablet form#FormDevis,
.Mobile form#FormDevis {
    margin: 0;
}

.Mobile form#FormDevis {
    padding: 60px 20px;
}

.form-input {
    padding: 15px 23px;
    background: #f9dbdb;
    border: none;
    border-radius: 6px;
    max-width: 100%;
}

textarea.form-input {
    max-height: 100px;
}

form#FormDevis input.btn.btn-submit {
    background: #d22e2f;
    color: #fff;
    height: 50px;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
}

.section_g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 10px;
}

.Mobile .section_g {
    grid-template-columns: 1fr 1fr;
}

.section_g img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 5px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
}

.item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #ddd;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.item:hover::before {
    opacity: 1;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item:hover img {
    transform: scale(1.1);
}

/* Effet de cadre lumineux */
.item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
    transform: scale(0.95);
}

.item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Différentes tailles d'items */
.item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.item-horizontal {
    grid-column: span 2;
    grid-row: span 1;
}

.item-vertical {
    grid-column: span 1;
    grid-row: span 2;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 3;
}

.item-mega {
    grid-column: span 3;
    grid-row: span 2;
}

/* Animation d'entrée sophistiquée */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.item {
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

/* Délais d'animation */
.item:nth-child(1) { animation-delay: 0.05s; }
.item:nth-child(2) { animation-delay: 0.1s; }
.item:nth-child(3) { animation-delay: 0.15s; }
.item:nth-child(4) { animation-delay: 0.2s; }
.item:nth-child(5) { animation-delay: 0.25s; }
.item:nth-child(6) { animation-delay: 0.3s; }
.item:nth-child(7) { animation-delay: 0.35s; }
.item:nth-child(8) { animation-delay: 0.4s; }
.item:nth-child(9) { animation-delay: 0.45s; }
.item:nth-child(10) { animation-delay: 0.5s; }

@media (max-width: 992px) {
    body {
        padding: 20px;
    }
    
    .gallery-container {
        padding: 20px;
        border-radius: 30px;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .item-horizontal {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .item-wide {
        grid-column: span 2;
    }
    
    .item-vertical {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .item-horizontal,
    .item-wide {
        grid-column: span 1;
    }
    
    .item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .gallery-container {
        padding: 12px;
        border-radius: 20px;
    }
    
    .gallery {
        gap: 10px;
        grid-auto-rows: 220px;
    }
    
    .item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

a.Webkom img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 4px;
}

.Mobile .copyright {
    flex-direction: column;
    gap: 7px;
}