
  /* Variables */
:root {
  --color-def: #fbfbfb;
  --color-2: #9f9f9f;
  --color-1: #2a2832;
  --color-3: #2a1832;
  --color-4: #171521;
  --color-contact: #4c4d51;
}

/* Fonts */
@font-face {
  font-family: 'Roboto';
  src: local('Roboto Bold'), local('Roboto-Bold'), url('../fonts/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto Light'), local('Roboto-Light'), url('../fonts/Roboto-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto Black'), local('Roboto-Black'), url('../fonts/Roboto-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto Medium'), local('Roboto-Medium'), url('../fonts/Roboto-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url('../fonts/Roboto-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto';
  background-color: var(--color-def);
  color: #069bb0;
  line-height: 1.5;
  min-width: 320px;
  position: relative;
  font-weight: 300;
}

input, label, textarea, button {
  font-family: 'Roboto';
  outline: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

p {
  margin-bottom: 20px;
}

h1 {
  font-size: 60px;
  font-weight: 300;
}

h2 {
  font-size: 24px;
  font-weight: 300;
}

a {
  color: #069bb0;
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.content {
  width: 100%;
  padding-left: 85px;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.title-wrapper {
  margin: 0 auto 30px auto;
  max-width: 500px;
}

.title {
  font-size: 46px;
  line-height: 52px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.subtitle {
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #918D8D;
  font-size: 18px;
}

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

.color-white {
  color: #069bb0;
}

.menu-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 29, 37, .8);
  z-index: 9;
  transition: 0.8s ease;
  transform: translateX(100%);
}

.menu-overlay__active {
  transform: none;
}

/* Zoom effect */
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Newspaper effect */
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
  transform: scale(0) rotate(500deg);
  opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Move-horizontal effect */
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Move-from-top effect */
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 3d unfold */
.mfp-3d-unfold .mfp-content {
  perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  transform: rotateY(60deg);
  opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Zoom-out effect */
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  opacity: 0;
  transition: opacity .5s ease-out;
}

.mfp-with-fade.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-with-fade.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Settings */
.settings-wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% - 50px));
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
}

.settings-wrap.is-active {
  transform: translateY(-50%);
}

.settings-btn {
  color: var(--color-1);
  background-color: #FF2A00;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 22px;
}

.settings-btn i {
  animation: rotate 7s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.settings-content {
  background-color: #413f4b;
  color: #FF2A00;
  min-width: 300px;
  padding: 30px 20px;
}

.settings-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.settings-color-wrap {
  display: flex;
  column-gap: 10px;
}

.settings-color-item {
  width: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #FF2A00;
}

.settings-color-item.color-1 {
  background-color: var(--color-1);
}

.settings-color-item.color-2 {
  background-color: var(--color-2);
}

.settings-color-item.color-3 {
  background-color: var(--color-3);
}

.settings-color-item.color-4 {
  background-color: var(--color-4);
}

/* Sidebar */
.sidebar-logo {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 1;
}

.sidebar-logo img {
  max-width: 47px;
}

.menu-wrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #8e9093;
  box-shadow: 0px 0px 15.3px 1.7px rgba(0, 0, 0, 0.34);
  z-index: 11;
  transition: 0.5s ease;
  transform: translateX(-100%);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-nav {
  padding: 50px;
  padding-top: 200px;
  transition: 0.5s ease;
  opacity: 0;
  transform: translateX(-100%);
  z-index: 0;
  position: relative;
}

@media screen and (min-height: 610px) {
  .menu-nav {
    height: 100%;
  }
}

.menu-nav::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-def);
  transition: 0.8s ease;
  transform: translateX(-100%);
  z-index: -1;
}

.menu-nav ul {
  padding: 0;
  margin: 0;
}

.menu-nav ul li {
  list-style-type: none;
}

.menu-nav ul li:nth-last-child(n+2) a {
  margin-bottom: 25px;
}

.menu-nav ul a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  display: block;
  letter-spacing: 2px;
  position: relative;
  transition: 0.5s ease;
}

.menu-nav ul a:hover {
  transform: translateX(15px);
}

.menu-nav ul a:hover:before {
  opacity: 1;
}

.menu-nav ul a::before {
  content: '\f054';
  font: normal normal normal 15px/1 "FontAwesome";
  display: inline-block;
  transition: 0.5s ease;
  opacity: 0;
  margin-left: -15px;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-nav .menu-contacts {
  margin-top: 50px;
}

.menu-nav .menu-contacts .menu-contacts__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0;
  color: #FF2A00;
  opacity: 0.5;
  transition: opacity 0.8s ease;
}

.menu-nav .menu-contacts .menu-contacts__item:hover {
  opacity: 1;
}

.menu-nav .menu-contacts .menu-contacts__icon {
  display: inline-block;
  margin-right: 15px;
  min-width: 20px;
  text-align: center;
}

.menu-nav .menu-contacts .menu-contacts__icon i {
  display: inline-block;
  font-size: 20px;
}

.menu-nav .menu-contacts .menu-contacts__item p {
  margin-bottom: 0;
}

.menu-nav .menu-contacts .menu-contacts__item:nth-last-child(n+2) {
  margin-bottom: 25px;
}

.menu-nav .menu-social {
  display: flex;
  column-gap: 10px;
  margin-top: 50px;
  margin-left: -10px;
}

.menu-nav .menu-social a {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FF2A00;
  transition: 0.7s ease;
  border: 2px solid transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.menu-nav .menu-social a i {
  font-size: 18px;
}

.menu-nav .menu-social a:hover {
  color: #FF2A00;
  border: 2px solid #069bb0F2A00f;
}

.menu-close__wrap {
  margin-top: 30px;
}

.menu-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px;
  width: 70px;
  position: relative;
}

.menu-close:hover img {
  margin-left: -20px;
}

.menu-close img {
  width: 40px;
  transition: 0.5s ease;
}

.menu-active {
  transform: none;
}

.menu-item-active {
  opacity: 1;
  transform: none;
}

.menu-item-active::before {
  transform: none;
}

.def-row {
  display: flex;
}

.sidebar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background-color: var(--color-def);
  height: 100%;
  padding: 30px 20px;
}

.sidebar .logo {
  display: block;
}

.sidebar .logo img {
  width: 47px;
  display: block;
}

.sidebar .hamburger-button {
  display: block;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
}

.sidebar .hamburger-button:hover span:nth-child(1) {
  width: 22px;
}

.sidebar .hamburger-button:hover span:nth-child(2) {
  width: 32px;
}

.sidebar .hamburger-button:hover span:nth-child(3) {
  width: 42px;
}

.sidebar .hamburger-button span {
  display: block;
  height: 1px;
  background-color: #FF2A00;
}

.sidebar .hamburger-button span:nth-last-child(n+2) {
  margin-bottom: 10px;
}

.sidebar .hamburger-button span:nth-child(1) {
  width: 42px;
  transition: 0.3s ease;
}

.sidebar .hamburger-button span:nth-child(2) {
  width: 32px;
}

.sidebar .hamburger-button span:nth-child(3) {
  width: 22px;
  transition: 0.5s ease;
}

/* Banner */
.prelodaer-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8e9093;
  z-index: 99;
  animation: preloader 1.8s 3s ease forwards;
}

.preloader-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 0;
}

.preloader-item::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-def);
  transform: translateX(100%);
  animation: overlay 2s 0.1s ease forwards;
  z-index: -1;
}

.preloader-item img {
  width:800px;
  display: block;
  transform: translateX(100%);
  opacity: 0;
  animation: overlay 2s 0.5s ease forwards;
}

@keyframes overlay {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes img {
  from {
    transform: translateX(100%);
  }
  to {
    transform: none;
  }
}

@keyframes preloader {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.home {
  height: 100vh;
}

.swiper-banner .swiper-slide {
  padding: 70px 70px 70px 0;
}

.banner-item {
  height: calc(100vh - 140px);
  padding: 150px 70px 70px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 4px 4px rgba(34, 32, 32, 0.1);
}

.banner-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 54, 54, 0.5);
  z-index: -1;
}

.banner-content {
  max-width: 650px;
}

.banner-title-mini {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.banner-title-mini::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 30px;
  background-color: #FF2A00;
  margin-right: 20px;
  vertical-align: middle;
}

.banner-title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-desc {
  color: #f0eded;
  font-size: 16px;
  line-height: 24px;
  max-width: 550px;
}

.animeslide-slide.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}

.animeslide-slide.swiper-slide-active .banner-title-mini {
  transition-delay: 0.3s;
}

.animeslide-slide.swiper-slide-active .banner-title {
  transition-delay: 0.6s;
}

.animeslide-slide.swiper-slide-active .banner-desc {
  transition-delay: 0.9s;
}

.animeslide-slide.swiper-slide-active .banner-btn {
  transition-delay: 1.2s;
}

.animeslide-slide.swiper-slide-active .banner-right img {
  transition-delay: 1.6s;
}

.animeslide-slide.swiper-slide-active .banner-right::before {
  transition-delay: 1.8s;
  transition-duration: 0.8s;
  opacity: 1;
}

[data-animate] {
  opacity: 0;
  transition: all 0.8s ease-out;
}

[data-animate="bottom"] {
  transform: translate3d(0, 15px, 0);
}

.banner-nav-wrap {
  background-color: var(--color-def);
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: absolute;
  bottom: 70px;
  right: 70px;
  z-index: 1;
  height: 60px;
  width: 400px;
  padding: 0 20px;
}

.banner-btn a {}

.swiper-banner .swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-banner .swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-banner .swiper-scrollbar {
  color: #FF2A00;
  position: static;
  margin: 0;
}

.swiper-banner .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after,
.swiper-banner .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  font-size: 22px !important;
}

.swiper-banner .swiper-scrollbar-drag {
  background-color: #c5c5ca;
}

/* Contact page */
.contact-title {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 100px 0 100px 88px;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.contact-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-def);
  opacity: 0.7;
}

.contact-content .title-center {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.s-contact .left {
  padding: 60px 40px 40px 40px;
  background-color: #ffffff;
  width: 400px;
  font-weight: 300;
}

.s-contact .left label,
.s-contact .left input,
.s-contact .left textarea {
  display: block;
  font-size: 16px;
  color: #FF2A00;
  font-weight: 300;
  transition: 0.35s ease;
}

.s-contact .left input,
.s-contact .left textarea {
  background-color: transparent;
  border: 1px solid #797a7d;
  padding: 10px 20px;
  width: 100%;
  margin-bottom: 10px;
}

.s-contact .left label {
  background-color: #3c3a3a;
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 10px;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.5s ease;
  color: #bab9b9;
  font-size: 14px;
}

.input-field {
  position: relative;
  margin-bottom: 30px;
}

.input-field:hover input,
.input-field:hover textarea {
  border-color: #069bb0;
}

.input-field:hover label {
  color: #069bb0;
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: #069bb0;
}

.input-field input:focus ~ label,
.input-field textarea:focus ~ label {
  color: #069bb0;
}

.input-field.is-active label {
  color: #069bb0;
}

.input-field.is-active input,
.input-field.is-active textarea {
  border-color: #069bb0;
}

.s-contact .button-field {
  text-align: center;
}

.s-contact .left button {
  background-color: #707174;
  color: #069bb0;
  border: none;
  display: inline-block;
  font-weight: 300;
  padding: 15px 50px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 0;
  transition: 0.5s ease;
}

.s-contact .left button:hover::after {
  transform: none;
}

.s-contact .left button::after {
  content: '';
  display: block;
  position: absolute;
  background-color: ##ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.5s ease;
  transform: translateY(-100%);
}

.contact-info-item {
  display: flex;
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}

.contact-info-icon {
  margin-right: 15px;
  min-width: 24px;
  text-align: center;
  font-size: 20px;
}

.contact-social {
  margin-top: 50px;
}

.contact-social-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
}

.contact-social-row {
  display: flex;
  column-gap: 10px;
  margin-left: -10px;
}

.contact-social-row a {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(200, 200, 200, 0.7);
  transition: 0.7s ease;
  border: 2px solid transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.contact-social-row a i {
  font-size: 18px;
}

.contact-social-row a:hover {
  color: #FF2A00;
  border: 2px solid #069bb0;
}

.mfp-bg {
  opacity: .6;
}

.form-alert {
  max-width: 370px;
  margin: auto;
  text-align: center;
  background: #39393c;
  padding: 50px 30px;
  position: relative;
}

.form-alert p {
  margin-bottom: 0;
}

.mfp-close-btn-in .mfp-close {
  color: #069bb0 !important;
}

/* Album */
.gallery-content {
  min-height: 1000px;
  overflow: hidden;
}

.grid-album {
  display: none;
}

.grid-album.is-active {
  display: block;
}

.album-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 15px;
  margin-bottom: 30px;
}

.album-tab a {
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  display: inline-block;
  padding: 5px 25px;
  transition: 0.5s ease;
  margin-bottom: 15px;
}

.album-tab a:hover {
  background-color: #069bb0;
  color: #000;
}

.album-tab a.is-active {
  background-color: #069bb0;
  color: #000;
  font-weight: 500;
}

.album-item a:hover .album-thumb img {
  transform: scale(1.1);
}

.album-thumb {
  margin-bottom: 10px;
  overflow: hidden;
}

.album-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1s ease;
}

.album-name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}

.album-desc {
  color: #c8c6c6;
  margin-bottom: 20px;
}

.grid-album::after {
  content: '';
  display: block;
  clear: both;
}

.grid-album .grid-sizer,
.grid-album .grid-item {
  width: calc(33% - 15px);
  margin-bottom: 15px;
}

.grid-album .grid-item {
  float: left;
  z-index: 0;
  overflow: hidden;
}

/* Gallery */
.grid-single {
  border-bottom: 1px solid #464545;
  padding-bottom: 50px;
}

.grid-single::after {
  content: '';
  display: block;
  clear: both;
}

.grid-single .grid-sizer,
.grid-single .grid-item {
  width: calc(25% - 15px);
  margin-bottom: 15px;
}

.grid-single .grid-item {
  float: left;
  z-index: 0;
  overflow: hidden;
}

.grid-single .grid-item:hover a::before,
.grid-single .grid-item:hover a::after {
  opacity: 1;
}

.grid-single .grid-item img {
  display: block;
  width: 100%;
  transition: 0.35s ease;
}

.gallery-wrap {
  margin-left: 100px;
  padding: 100px 0;
}

.gallery-wrap .def-title-wrapper {
  text-align: center;
}

.b-lazy {
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  opacity: 0;
}

.b-lazy.b-loaded {
  opacity: 1;
}

.grid-nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  column-gap: 30px;
}

.grid-nav-wrap a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #383636;
  font-weight: 300;
  font-size: 16px;
  transition: background-color 0.35s ease;
  vertical-align: middle;
}

.grid-nav-wrap a:hover {
  background-color: #545050;
}

/* About page */
.about-content {
  padding: 60px 0 100px 100px;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-def);
  opacity: 0.8;
}

.about-content .content-inner {
  max-width: 1000px;
  padding: 0 20px;
}

.s-about .sub-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-desc {
  line-height: 1.7;
  color: #ccc9c9;
}

.about-content .left-avatar {
  height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.about-content .right {
  max-width: 800px;
}

.about-content .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-portfolio {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-top: 40px;
  border-left: 1px solid #069bb0;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  width: 200px;
  overflow: hidden;
}

.link-portfolio:hover img {
  transform: translateX(40%);
}

.link-portfolio:hover::before, .link-portfolio:hover::after {
  width: 100%;
}

.link-portfolio:hover .right-border {
  height: 100%;
}

.link-portfolio img {
  margin-left: 15px;
  width: 35px;
  transition: 0.5s ease;
}

.link-portfolio::before, .link-portfolio::after {
  content: '';
  display: block;
  position: absolute;
  transition: 0.5s ease;
  height: 1px;
  width: 0;
  background-color: #069bb0;
}

.link-portfolio::before {
  top: 0;
  left: 0;
}

.link-portfolio::after {
  bottom: 0;
  right: 0;
}

.link-portfolio .right-border {
  display: block;
  position: absolute;
  transition: 0.5s ease;
  height: 0;
  width: 1px;
  background-color: #069bb0;
  right: 0;
  bottom: 0;
}

/* Footer */
.site-footer {
  padding: 20px 20px 20px 110px;
  background-color: var(--color-def);
  filter: brightness(0.9);
}

.footer-copyright {
  text-align: center;
  color: #bab7b7;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .container-full {
    padding: 0 20px;
  }

  .grid-single .grid-sizer,
  .grid-single .grid-item {
    width: calc(33% - 15px);
  }
}

@media screen and (max-width: 992px) {
  .menu-nav {
    padding-top: 120px;
  }

  .swiper-banner .swiper-slide {
    padding: 30px 30px 30px 0;
  }

  .banner-item {
    padding: 150px 50px 70px 50px;
    height: auto;
  }

  .banner-nav-wrap {
    bottom: 30px;
    right: 30px;
  }

  .about-content {
    padding: 40px 0 100px 100px;
  }

  .contact-row {
    flex-direction: column;
  }

  .s-contact .left {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    height: auto;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sidebar .hamburger-button {
    top: 0;
    right: 0;
    transform: none;
    position: static;
  }

  .sidebar .logo {
    position: static;
  }

  .content {
    padding-left: 0;
    margin-top: 52px;
  }

  .swiper-banner .swiper-slide {
    padding: 0;
  }

  .banner-nav-wrap {
    bottom: 0;
    right: 0;
  }

  .banner-title {
    font-size: 32px;
    line-height: 42px;
  }

  .banner-item {
    padding: 100px 40px 150px 40px;
    height: calc(100vh - 52px);
    background-position: center center;
  }

  .gallery-wrap {
    margin-left: 0;
  }

  .gallery-wrap .content-inner {
    padding: 0 40px;
  }

  .grid-album .grid-sizer,
  .grid-album .grid-item {
    width: calc(50% - 10px);
  }

  .contact-content {
    padding: 100px 40px;
  }

  .site-footer {
    padding: 20px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .title {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
  }

  .preloader-item img {
    max-width: 80px;
  }

  .grid-single .grid-sizer,
  .grid-single .grid-item {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }

  .about-content .left-avatar {
    height: 340px;
  }

  .gallery-wrap .content-inner {
    padding: 0 20px;
  }

  .grid-album .grid-sizer,
  .grid-album .grid-item {
    width: 100%;
  }

  .grid-single {
    padding-bottom: 50px;
  }

  .contact-content {
    padding: 110px 20px 50px 20px;
  }

  .s-contact .left {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  .sidebar {
    padding: 8px 20px;
  }

  .sidebar-logo {
    top: 20px;
    left: 25px;
  }

  .sidebar .logo img {
    width: 80px;
  }

  .sidebar .hamburger-button span:nth-last-child(n+2) {
    margin-bottom: 9px;
  }

  .menu-nav {
    padding: 130px 25px 25px 25px;
  }

  .menu-nav ul a {
    font-size: 18px;
  }

  .menu-close__wrap {
    left: 25px;
  }

  .menu-nav .menu-contacts {
    margin-top: 50px;
  }

  .menu-nav .menu-social {
    margin-top: 50px;
  }

  .banner-item {
    padding: 60px 30px 100px 30px;
  }

  .banner-nav-wrap {
    width: 100%;
    max-width: 400px;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cookie-consent-content {
  display: inline-block;
  padding: 20px;
  border-radius: 5px;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-options label {
  display: block;
  margin: 5px 0;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

#learnMore {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

/* Achat */
:root {
    --pp-orange: #FF8C00;
}

/* Style de l'icône panier sous chaque tableau */
.achat {
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    padding: 5px;
}

/* On ne scale que très peu pour éviter l'effet "trop large" */
.achat:hover {
    transform: translateX(-50%) scale(1.1) !important;
}

/* Changement de couleur de l'icône SVG en orange au survol */
.achat:hover img {
    filter: invert(56%) sepia(90%) saturate(1538%) hue-rotate(3deg) brightness(103%) contrast(106%);
}

/* BOUTON FLOTTANT ORANGE */
#pp-cart-btn {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--pp-orange); color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer; z-index: 9999;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

#pp-cart-count {
    position: absolute; top: 0; right: 0;
    background: #333; color: white;
    font-size: 11px; min-width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 2px solid white;
}

/* PANNEAU LATÉRAL */
#pp-side-cart {
    position: fixed; right: -400px; top: 0;
    width: 350px; height: 100%; background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: 0.4s ease; z-index: 10001;
    display: flex; flex-direction: column;
}
#pp-side-cart.active { right: 0; }

#pp-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: none; z-index: 10000;
}

.pp-cart-content { padding: 20px; flex-grow: 1; overflow-y: auto; }
.pp-cart-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }

/* ANIMATION PULSE */
.pp-pulse { animation: pulse-orange 0.5s ease-in-out; }
@keyframes pulse-orange {
    0% { transform: scale(1); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Grid Item 
.grid-single .grid-item {
  flex: 1 1 calc(25% - 20px);
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 20px;
}*/
.grid-single .grid-item {
    flex: 1 1 calc(25% - 20px); /* Ajustez la largeur de base */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    position: relative; /* Assurez-vous que les éléments sont positionnés correctement */
    overflow: hidden; /* Empêche le débordement du contenu */
    display: flex;
    flex-direction: column;
}

.grid-single .grid-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.grid-img {
    max-width: 270px; /* Correction de la syntaxe */
}

.grid-single .grid-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.grid-single {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  gap:20px;
  justify-content: center;
}
.grid-single {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* Ajustez les marges négatives pour compenser les marges internes */
    gap: 20px; /* Espace entre les éléments */
    justify-content: center;
}
/*
.grid-single.grid-item {
  padding: 10px;
  margin: 0 0 40px 0; /* Ajout d'un espace en dessous de chaque produit */
}*/
.grid-single .grid-item {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  position: relative;
}

.content-inner {
  margin-bottom: 0;
  border: none;
}

.grid-nav-wrap {
  border-top: none;
  border: none;
  padding-top: 0;
  margin-top: 20px;
}






.pointrouge {
    position: absolute;
    top: 5px; /* Essayer une valeur positive pour le descendre légèrement */
    right: 5px; /* Essayer une valeur positive pour le rentrer légèrement */
    background-color: #ff0000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 1;
}



/* Pour tablettes */
@media (max-width: 1024px) {
  .grid-single .grid-item {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Pour téléphones */
@media (max-width: 600px) {
  .grid-single .grid-item {
    flex: 1 1 100%;
  }
}

 iframe[src*="cart"] {
      width: 400px !important;
      max-width: 400px !important;
      height: 100vh !important;
      position: fixed !important;
      top: 0;
      right: 0;
      border: none;
      box-shadow: -2px 0 8px rgba(0,0,0,0.2);
      z-index: 9999;
      background: white;
    }
    body > div[style*="background-color: rgba(0, 0, 0"] {
      background-color: rgba(0,0,0,0.3) !important;
    }

.prix {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.current-price {
  font-size: 20px;
  color: black;
  font-weight: bold;
}
.compare-price {
  font-size: 16px;
  color: grey;
  text-decoration: line-through;
  margin-left: 8px;
}

/* Variables de couleurs */
:root {
    --pp-orange: #FF8C00;
    --pp-orange-dark: #e67e00;
    --pp-dark: #333333;
    --pp-white: #ffffff;
}

/* Croix de fermeture Magnific Popup */
.mfp-close {
	position: fixed;
	top: 15px;
	right: 20px;
	font-size: 42px;
	color: #ffffff !important;
	opacity: 1 !important;
	z-index: 9999;
	cursor: pointer;
}

/* FORCE LA CROIX À RESTER SUR LA PHOTO */
.mfp-container {
    text-align: center;
}

/* On force le bouton de fermeture à se mettre dans le coin en haut à droite de l'image */
button.mfp-close {
    position: absolute !important;
    top: 10px !important; 
    right: 10px !important;
    /* On lui donne un look de "petite croix" constante */
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    background: rgba(255, 255, 255, 0.8) !important; /* Fond blanc semi-transparent */
    color: #000 !important; /* Croix noire */
    border-radius: 50% !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 9999 !important;
}

/* On s'assure que la zone de l'image est le point de repère */
.mfp-figure {
    position: relative;
}

/* Si vous voulez que la croix soit un peu plus petite */
button.mfp-close:active {
    transform: scale(0.9);
}

/* Cache la barre d'outils Google qui bloque le haut de page */
.goog-te-banner-frame.skiptranslate, .goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
}

/* Style des drapeaux GTranslate */
.gtranslate_wrapper {
    display: block;
    z-index: 9999;
}

.gtranslate_wrapper a {
    transition: transform 0.2s;
    display: inline-block;
    margin-right: 5px;
}

.gtranslate_wrapper a:hover {
    transform: scale(1.2);
}


.album-actions {
	text-align: center;
	margin-top: 8px;
}


/* --- PRIX --- */
.price-new {
    color: #069bb0;
    font-size: 18px;
    font-weight: 900;
}
.price-old {
    text-decoration: line-through;
    opacity: 0.6;
}

/* --- BOUTONS RONDS --- */
.btn-heart,
.btn-message,
.bouton-achat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* couleurs */
.btn-offre { background-color: #f57f17; }
.btn-message { background-color: #FF8C00; }
.bouton-achat { color: #FF8C00; }

/* icônes visibles */
.btn-heart i,
.btn-message i,
.bouton-achat i {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

/* --- ZONE ACHAT --- */
.achat-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.art-price {
    display: flex;
    gap: 8px;
    min-width: 50px;
}

/* --- IMAGE --- */
.album-thumb a {
    cursor: zoom-in;
    position: relative;
}

/* --- POINT ROUGE VENDU --- */
.badge-vendu {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    display: none;
}
.album-item.vendu .badge-vendu {
    display: block;
}

/* --- DEBUG (optionnel) --- */
.debug-state {
    font-size: 11px;
    margin-top: 6px;
    padding: 4px 6px;
    border-radius: 4px;
    font-family: monospace;
}
.debug-prix { background: #e0f7fa; }
.debug-noprix { background: #fff3e0; }
.debug-vendu { background: #fdecea; }


/* FORCE Font Awesome sur les icônes */

.bouton-achat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	color: #FF8C00;
	background: transparent;
	font-size: 16px;
	cursor: pointer;
}


.btn-heart,
.btn-message,
 {
	color: #fff !important;
}

/* FIX FONT AWESOME MASONRY (OBLIGATOIRE) */
.bouton-achat,
.btn-heart,
.btn-message {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	font-family: FontAwesome;
	font-size: 14px;
	cursor: pointer;
	color: #fff;
}

.btn-offre { background:#f57f17; }
.btn-message { background:#FF8C00; }
.bouton-achat {
	color:#FF8C00;
	background: transparent;
}


.btn-heart i::before,
.btn-message i::before,
.bouton-achat i::before {
	display: inline-block !important;
}
img {
  pointer-events: none;
}


img {
  -webkit-user-drag: none;
  user-select: none;
}


.footer-mentionleg {
  text-align: center;
  padding-left: 0;
  margin-right: 110px; /* compense le padding-left du footer */
}