/*

Theme Name: ARTGO Média Base
Description: Template de base Artgo Média, sans partials.
Author: ARTGO Média
Author URI: http://www.artgomedia.com
Version: 1.0
*/

/****************** FONTS *****************/

@font-face {
  font-family: "Ubuntu";
  src: url(assets/fonts/Ubuntu-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url(assets/fonts/Ubuntu-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url(assets/fonts/Ubuntu-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/****************** VARIABLES *****************/

:root {
  /* COULEURS */

  --primary-500: #125493;
  --primary-800: #1d2446;
  --secondary-400: #e00713;
  --light-100: #fff;
  --dark-200: #f5f5f5;
  --dark-300: #bbb;
  --dark-400: #222;

  /* TAILLES POLICES */

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-medium: 18px;
  --font-size-xl: 20px;

  --font-size-h1: clamp(35px, 2.604vw, 50px);
  --font-size-h2: clamp(30px, 2.083vw, 40px);
  --font-size-h3: 25px;

  /* MARGES */

  --gutter-blocks: 40px;
  --gutter-section: 80px;

  /* FONTS */

  --main-font: "Ubuntu", sans-serif;
}

/****************** RESET *****************/

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth;
  /* outline: 1px solid red; */
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  display: block;
}

p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

/****************** GLOBAL *****************/

body {
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: var(--main-font);
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--dark-400);
  background: #0f1327;
  overflow-x: hidden;
}

#content-wrapper {
  position: relative;
  background-color: var(--light-100);
  transition: transform 0.6s cubic-bezier(0.15, 0.2, 0.1, 1);
}

#content-wrapper.menu-is-open {
  overflow: hidden;
  border-radius: 10px;
  height: 100vh;
  transform: scale(0.8) translateX(-32vw) translateZ(0);
}

#content-wrapper.popup-is-open {
  filter: brightness(0.5) blur(8px);
  pointer-events: none;
}

#close-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1;
  right: calc(32vw + 48px);
  top: 25%;
  transform: translateY(-50%) translateX(50px);
}

#close-menu.menu-is-open {
  transform: translateY(-50%) translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* BOXING */

.boxed-xl {
  width: 90vw;
  max-width: 1720px;
  margin: 0 auto;
}

.boxed-base {
  width: 90vw;
  max-width: 1520px;
  margin: 0 auto;
}

.boxed-sm {
  width: 90vw;
  max-width: 1320px;
  margin: 0 auto;
}

section {
  padding: var(--gutter-section) 0;
}

section > :last-child {
  margin-bottom: 0;
}

.section-gradient {
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  color: var(--light-100);
}

.section-logo {
  background: url(assets/images/bg-logo.svg) no-repeat, var(--primary-800);
  background-position: bottom -150px left -100px, 0 0;
  color: var(--light-100);
}

.section-gray {
  background-color: var(--dark-200);
}

.section-gradient :is(.artgo-h2, .content h2),
.section-logo :is(.artgo-h2, .content h2) {
  color: var(--light-100);
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.section-gradient
  :is(.artgo-h3, .content h3, .text-img-block__pictos__item__legend),
.section-logo
  :is(.artgo-h3, .content h3, .text-img-block__pictos__item__legend) {
  color: var(--light-100);
}

.section-gradient .artgo-btn,
.section-logo .artgo-btn {
  background: var(--secondary-400);
  color: var(--light-100);
}

.section-gradient .artgo-btn:hover,
.section-logo .artgo-btn:hover {
  background: transparent;
  color: var(--light-100);
  border-color: var(--secondary-400);
}

/* STYLING TEXTS */

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.content {
  font-weight: 400;
  line-height: 1.5;
}

.content :is(p, ul, ol) {
  margin-bottom: var(--font-size-base);
}

.content :is(ul, ol) {
  padding-left: 25px;
}

.content p:last-child {
  margin-bottom: 0;
}

.content :is(ul li, ol li) {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.content ul li::before {
  content: "•";
  color: var(--dark-400);
  position: absolute;
  left: 0;
}

.content ol {
  counter-reset: item;
}

.content ol li::before {
  position: absolute;
  content: counter(item) ".";
  counter-increment: item;
  color: var(--dark-400);
  left: 0;
}

.content a {
  color: var(--primary-500);
}

.content a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content :is(h2, h3) {
  margin: var(--gutter-blocks) 0;
}

.content :is(h2:first-child, h3:first-child) {
  margin-top: 0;
}

.artgo-icon {
  width: 15px;
  height: 15px;
}

.artgo-icon--lg {
  width: 20px;
  height: 20px;
}

.artgo-icon--xl {
  width: 40px;
  height: 40px;
}

.artgo-img {
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px var(--secondary-400);
}

/* HEADINGS */

.artgo-h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: var(--gutter-section);
}

.artgo-h2,
.content h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.artgo-h2--secondary {
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--light-100);
}

.content h2[style="text-align: center"] {
  margin-left: auto;
  margin-right: auto;
}

.content h2[style="text-align: right"] {
  margin-left: auto;
}

.artgo-h2::after,
.content h2::after {
  content: url(assets/images/deco.svg);
  line-height: 0;
}

.artgo-h3,
.content h3 {
  font-size: var(--font-size-h3);
  color: var(--primary-500);
  font-weight: 500;
}

/* BUTTONS */

.artgo-btn {
  display: flex;
  padding: 15px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 2px 20px;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  color: var(--light-100);
  font-weight: 500;
  width: fit-content;
  cursor: pointer;
  border: 1px solid transparent;
}

.artgo-btn:hover {
  background: var(--secondary-400);
}

.artgo-btn > img {
  height: 18px;
  width: 20px;
}

/* .artgo-btn:hover > img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(17%) saturate(6941%)
    hue-rotate(217deg) brightness(91%) contrast(88%);
} */

.artgo-btn--outline {
  background: transparent;
  color: var(--primary-800);
  border: 1px solid var(--primary-800);
}

.artgo-btn--outline:hover {
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  color: var(--light-100);
}

.artgo-btn--secondary {
  color: var(--light-100);
  background: var(--secondary-400);
}

.artgo-btn--secondary:hover {
  background: transparent;
  color: var(--light-100);
  border-color: var(--secondary-400);
}

/* Form Popup */

#popup-cart,
#popup-form {
  display: none;
  flex-direction: column;
  gap: var(--gutter-blocks);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--gutter-section);
  border-radius: 10px;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  color: var(--light-100);
  z-index: 9999;
  max-width: 1024px;
}

#popup-cart.active,
#popup-form.active {
  display: flex;
}

#popup-cart .artgo-h2,
#popup-form .artgo-h2 {
  color: var(--light-100);
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

#popup-cart .artgo-h3 {
  color: var(--light-100);
}

#close-popup-cart,
#close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
}

/****************** HEADER *****************/

.home header {
  background: url(assets/images/bg-logo.svg) no-repeat,
    linear-gradient(88deg, var(--primary-800) 0%, var(--primary-500) 100%);
  background-position: bottom -150px left -100px, 0 0;
}

header {
  position: relative;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  min-height: var(--top-page-min-height);
  display: flex;
  flex-direction: column;
}

.top-bar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--secondary-400);
  height: 40px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.top-bar a {
  color: var(--light-100);
}
.top-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar__left,
.top-bar__center,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-100);
}

.top-bar__right > * {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__right .wc-block-mini-cart__button {
  padding: 0;
}

.header__menu {
  position: relative;
  background-color: var(--light-100);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

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

#open-menu,
#close-menu,
#close-popup,
#close-popup-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-400);
  border-radius: 100%;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.header__banner {
  display: flex;
  gap: clamp(25px, 4.167vw, 80px);
  margin-top: clamp(25px, 3.385vw, 65px);
}

.header__banner-left {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-blocks);
  color: var(--light-100);
}

.header__banner-left__label {
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  border: 1px solid var(--secondary-400);
  border-radius: 10px;
  padding: 10px;
  width: fit-content;
}

.artgo-h1--home {
  color: var(--light-100);
  font-size: clamp(25px, 3.646vw, 70px);
  line-height: 1.25;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.artgo-h1--home .second-line {
  font-weight: 700;
}

.artgo-h1--home .third-line {
  font-size: clamp(20px, 1.563vw, 30px);
  line-height: 1.5;
  color: var(--light-100);
  text-transform: none;
  font-weight: 400;
  max-width: 620px;
}

.header__banner-right {
  position: relative;
}

.header__banner-right img {
  max-width: 620px;
}

.header__banner-right__content {
  position: absolute;
  right: -120px;
  bottom: -60px;
  background-color: var(--light-100);
  color: var(--primary-800);
  padding: var(--gutter-blocks);
  border-radius: 10px;
}

.header__banner-right__content-title {
  font-size: clamp(20px, 1.302vw, 25px);
  text-transform: uppercase;
  font-weight: 700;
}

.header__banner-right__content-title:first-child {
  font-size: var(--font-size-base);
  font-weight: 400;
}

.header__banner-right__content-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.header__banner-right__content-step {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
}

.header__banner-right__content-step img {
  background-color: var(--secondary-400);
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 5px;
}

#menu-wrapper {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: var(--gutter-blocks);
  width: 32vw;
  background: url(assets/images/bg-logo-menu.svg) no-repeat, #0f1327;
  background-position: bottom -150px left -100px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s ease, transform 0.8s cubic-bezier(0.15, 0.2, 0.1, 1);
  padding: var(--gutter-section);
}

#menu-wrapper.menu-is-open {
  pointer-events: all;
  align-items: center;
  opacity: 1;
  transform: translateX(0);
}

.menu-wrapper__bottom {
  padding: 20px 0;
  width: 100%;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--secondary-400);
  color: var(--light-100);
  gap: 10px;
}

.menu-wrapper__bottom a {
  color: var(--light-100);
}

.menu-wrapper__bottom img,
.menu-wrapper__bottom .cart-icon svg {
  filter: brightness(0) saturate(100%) invert(18%) sepia(80%) saturate(4761%)
    hue-rotate(348deg) brightness(84%) contrast(113%);
}

.menu-wrapper__bottom .wc-block-mini-cart__button {
  padding: 0;
}

.menu-wrapper__bottom a,
.menu-wrapper__bottom .cart-icon {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
}

.top-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-blocks);
  z-index: 1;
}

.top-menu > li > a {
  font-size: var(--font-size-xl);
  color: var(--light-100);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.top-menu > li > a:hover {
  color: var(--secondary-400);
}

.top-menu > li > a::after {
  content: url(assets/images/deco.svg);
  line-height: 0;
}

.top-menu > li > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 0 20px;
}

.top-menu > li > .sub-menu > li > a {
  font-size: var(--font-size-medium);
  color: var(--light-100);
  font-weight: 500;
  line-height: 1.5;
}

.top-menu > li > .sub-menu > li > a:hover {
  color: var(--secondary-400);
}

.top-menu > li > .sub-menu > li > .sub-menu {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-menu > li > .sub-menu > li > .sub-menu > li a {
  color: var(--light-100);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-menu > li > .sub-menu > li > .sub-menu > li a::before {
  content: url(assets/images/sublink.svg);
  margin-top: -4px;
}

.top-menu > li > .sub-menu > li > .sub-menu > li a:hover {
  color: var(--secondary-400);
}

.top-menu > li > .sub-menu > li > .sub-menu > li a:hover::before {
  filter: brightness(0) saturate(100%) invert(83%) sepia(68%) saturate(3787%)
    hue-rotate(6deg) brightness(95%) contrast(101%);
}

.header__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--light-100);
  margin: auto;
}

.header__breadcrumb span a {
  color: var(--light-100);
  font-weight: 500;
}

.header__breadcrumb span a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/****************** HOME *****************/

.home-form {
  position: relative;
  margin-top: -75px;
  display: flex;
}

.home-form .search-cities {
  max-width: 750px;
  margin: 0 auto;
}

#home-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 3px solid var(--primary-800);
  border-radius: 50%;
  cursor: pointer;
  margin-top: auto;
}

#home-content:hover {
  border-color: var(--secondary-400);
  background-color: var(--secondary-400);
}

/****************** INNER BLOCKS *****************/

/* Title block */
.title-block {
  display: flex;
  justify-content: var(--title-block-alignement);
  margin-bottom: var(--gutter-blocks);
}

.title-block .artgo-h2 {
  align-items: var(--title-block-alignement);
  text-align: var(--title-block-alignement);
}

/* WYSIWYG block */
.text-block {
  display: flex;
  justify-content: center;
  gap: 5vw;
  margin-bottom: var(--gutter-blocks);
}

.text-block__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block__item .content {
  margin-bottom: auto;
}
/* TEXT / IMG BLOCK */

.text-img-block {
  display: flex;
  justify-content: space-between;
  gap: 5vw;
  flex-direction: var(--text-img-block-orientation);
  margin-bottom: var(--gutter-blocks);
}

.text-img-block__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-blocks);
}

.text-img-block__img {
  flex: 1;
}

.text-img-block__img img {
  border-radius: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.text-img-block__img .video-block {
  max-width: 610px;
  aspect-ratio: 610 / 390;
}

.text-img-block__pictos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 40px);
}

.text-img-block__pictos__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-img-block__pictos__item__legend {
  color: var(--primary-500);
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

/* GALLERY BLOCK */

.gallery-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: var(--gutter-blocks);
}

.gallery-block > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.gallery-block__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 400 / 250;
  border-radius: 10px;
}

.gallery-block__item--hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: rgba(30, 30, 59, 0.5);
  transition: opacity 0.3s ease;
}

.gallery-block__item--hover img {
  width: 50px;
}

.gallery-block__item:hover .gallery-block__item--hover {
  opacity: 1;
}

.gallery-block__item > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* LIGHT BOX */

.sl-wrapper {
  z-index: 9999;
}

.sl-overlay {
  background: var(--primary-800);
  z-index: 9400;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter {
  color: var(--light-100);
}

.sl-next div,
.sl-prev div {
  background-color: var(--secondary-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 50px;
  width: 50px;
  transition: 0.3s ease;
}

.sl-next div:hover,
.sl-prev div:hover {
  background-color: var(--primary-800);
}

/* VIDEO BLOCK */

.video-block {
  position: relative;
  aspect-ratio: 16/9;
  margin: 0 auto var(--gutter-blocks);
}

.video-block a,
.video-block iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-block iframe {
  border: 0;
}

.video-block a::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  background-color: var(--secondary-400);
  color: var(--light-100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* filter: brightness(0.8); */
  transition: 0.3s;
}
.video-block img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  filter: brightness(0.5);
  transition: 0.3s;
}
.video-block:hover a::before {
  /* filter: brightness(1); */
  height: 65px;
  width: 65px;
}

.video-block:hover img {
  filter: brightness(1);
}

/* FAQ block */

.faq-block {
  margin-bottom: var(--gutter-blocks);
}

.faq__item {
  border-bottom: 1px solid var(--secondary-400);
  padding: 20px 0;
}

.faq__item:first-child {
  padding-top: 20px;
  border-top: 1px solid var(--secondary-400);
}

.faq__item:has(> .faq__item__question.active) {
  border-bottom-color: var(--secondary-400);
}

.faq__item__question {
  font-size: var(--font-size-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* .faq__item__question.active {
  color: var(--secondary-400);
} */

.faq__item__question::after {
  content: "+";
  font-size: 25px;
  transition: transform 0.3s ease;
}

.faq__item__question.active::after {
  transform: rotate(45deg);
}

.faq__item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item__answer .content {
  margin: 20px 0;
}

/* IMAGE BLOCK */

.image-block {
  margin: 0 auto var(--gutter-blocks);
  display: flex;
  gap: 16px;
}

.image-block__item {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: auto;
}
.image-block__item img {
  border-radius: 10px;
}

/* FORM BLOCK */

.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}

.form-block {
  max-width: 960px;
  margin: auto;
  margin-bottom: var(--gutter-blocks);
  background: url(assets/images/bg-logo.svg) no-repeat, var(--primary-800);
  background-position: bottom -150px left -100px, 0 0;
  color: var(--light-100);
  padding: var(--gutter-section) clamp(16px, 4.167vw, 80px);
  border-radius: 10px;
}

.form-block .artgo-h2 {
  color: var(--light-100);
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.form-block .gform_wrapper .gfield_label {
  color: var(--light-100);
}

.form-block .gform_wrapper .gfield_radio label {
  color: var(--light-100);
}

.form-block .gform_wrapper .gfield_required {
  display: inline-block;
  color: var(--light-100);
}

.form-block .gform_wrapper .ginput_container_email input,
.form-block .gform_wrapper .ginput_container_text input,
.form-block .gform_wrapper .ginput_container_phone input,
.form-block .gform_wrapper .ginput_container_select select,
.form-block .gform_wrapper .ginput_container_textarea textarea,
.form-block .gform_wrapper .ginput_container_number input,
.form-block .gform_wrapper .ginput_container_date input {
  background-color: transparent;
  outline: none;
  color: var(--light-100);
  border: 1px solid var(--light-100);
  border-radius: 5px;
  padding: 10px 15px !important;
}

.form-block .gform_wrapper .ginput_container_select select {
  padding: 0 15px !important;
  cursor: pointer;
  background-image: url(./assets/images/chevron-down.svg);
}

.form-block .gform_wrapper .ginput_container_select select > * {
  background-color: var(--primary-500);
  color: var(--light-100);
}

.form-block .gform_wrapper .ginput_container_textarea textarea {
  min-block-size: 150px !important;
}

.form-block .gform_wrapper .ginput_container_email input::placeholder,
.form-block .gform_wrapper .ginput_container_text input::placeholder,
.form-block .gform_wrapper .ginput_container_phone input::placeholder,
.form-block
  .gform_wrapper
  .ginput_container_select
  select
  option.gf_placeholder,
.form-block .gform_wrapper .ginput_container_textarea textarea::placeholder {
  opacity: 0.8;
}

.form-block .gform_wrapper .ginput_container_email input:focus,
.form-block .gform_wrapper .ginput_container_text input:focus,
.form-block .gform_wrapper .ginput_container_phone input:focus,
.form-block .gform_wrapper .ginput_container_select select:focus,
.form-block .gform_wrapper .ginput_container_textarea textarea:focus {
  outline: 2px solid var(--secondary-400);
}

.form-block .gform_wrapper div.gform_drop_area {
  border: 1px dashed var(--light-100);
  border-radius: 3px;
  background: transparent;
  color: var(--light-100);
}

.form-block .gform_wrapper div.gform_drop_area::before {
  color: var(--light-100);
}

.form-block
  .gform_wrapper
  div.gform_drop_area
  button[type="button"].gform_button_select_files {
  background: transparent;
  color: var(--light-100);
  text-transform: uppercase;
  border: 1px solid var(--light-100);
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
}

.form-block
  .gform_wrapper
  div.gform_drop_area
  button[type="button"].gform_button_select_files:hover {
  background: var(--light-100);
  color: var(--primary-500);
}

.form-block .gform_wrapper span.gfield_description,
.form-block .gform_wrapper .ginput_preview span.gfield_fileupload_percent,
.form-block .gform_wrapper .ginput_preview span.gfield_fileupload_filename,
.form-block .gform_wrapper .ginput_preview span.gfield_fileupload_filesize,
.form-block
  .gform_wrapper
  div.ginput_preview
  button.gform_delete_file
  span.dashicons.dashicons-trash:before {
  color: var(--light-100) !important;
}

.form-block
  .gform_wrapper
  .ginput_preview
  span.gfield_fileupload_progressbar_progress {
  background-color: var(--secondary-400);
}

.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}

.form-block .gform_wrapper .gfield_consent_label {
  color: var(--light-100);
}

.form-block .gform_wrapper .gform_footer.top_label .artgo-btn.artgo-btn--gform {
  font-size: var(--fontSizeBase);
  margin: auto;
  cursor: pointer;
  line-height: 1;
  display: flex;
  padding: 15px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 2px 20px;
  background: var(--secondary-400);
  color: var(--light-100);
  font-weight: 500;
  width: fit-content;
  cursor: pointer;
  border: 1px solid transparent;
}

.form-block
  .gform_wrapper
  .gform_footer.top_label
  .artgo-btn.artgo-btn--gform:hover {
  background: transparent;
  color: var(--light-100);
  border-color: var(--secondary-400);
}

.form-block
  .gform_wrapper
  input[type="checkbox"]:where(
    :not(.gform-theme__disable):not(.gform-theme__disable *):not(
        .gform-theme__disable-framework
      ):not(.gform-theme__disable-framework *)
  )::before {
  color: var(--primary-800);
}

.form-block h2 {
  margin-bottom: var(--gutter-blocks);
  color: var(--light-100);
}

/* STEPS BLOCK */

.steps-block {
  background: url(assets/images/bg-logo.svg) no-repeat, var(--primary-800);
  background-position: bottom -250px left -100px, 0 0;
  border-radius: 10px;
  padding: clamp(50px, 5.208vw, 100px) clamp(20px, 5.208vw, 100px);
  display: flex;
  flex-direction: column;
  gap: var(--gutter-blocks);
}

.steps-block__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.steps-block__item {
  flex: 1;
  color: var(--light-100);
  width: calc(33% - 40px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.steps-block__item__img {
  border: 1px solid var(--secondary-400);
  border-radius: 5px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-block__item__title {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 1.5;
}

.steps-block__item__title span {
  color: var(--light-100);
}

.steps-block__item a {
  color: var(--light-100);
}

.steps-block__item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.steps-block .artgo-btn {
  margin: 0 auto;
}

/* PUSH POSTS */

.push-posts-block {
  background: url(assets/images/bg-logo.svg) no-repeat, var(--primary-800);
  background-position: bottom -250px left -100px, 0 0;
  border-radius: 10px;
  padding: clamp(50px, 5.208vw, 100px) clamp(20px, 5.208vw, 100px);
  display: flex;
  flex-direction: column;
}

.push-posts-block .artgo-btn {
  margin: 20px 0 var(--gutter-blocks) auto;
}

.push-posts-block__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 225px);
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}

.push-posts-block__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.push-posts-block__item__img {
  position: relative;
  height: 100%;
}

.push-posts-block__item__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 36, 70, 0.55);
  transition: background-color 0.3s ease;
}

.push-posts-block__item:hover .push-posts-block__item__img::after {
  background-color: rgba(30, 36, 70, 0.85);
}

.push-posts-block__item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.push-posts-block__item__content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--light-100);
  font-weight: 500;
}

.push-posts-block__item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-xs);
}

.push-posts-block__item__content h3 {
  color: var(--light-100);
  font-size: clamp(25px, 1.563vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

.push-posts-block__item[data-push-post="1"] {
  grid-area: 1 / 1 / 3 / 3;
}

.push-posts-block__item[data-push-post="2"] {
  background-color: var(--primary-500);
  grid-area: 1 / 3 / 2 / 4;
  transition: background-color 0.3s ease;
}
.push-posts-block__item[data-push-post="3"] {
  background-color: var(--primary-500);
  grid-area: 2 / 3 / 3 / 4;
  transition: background-color 0.3s ease;
}

.push-posts-block__item[data-push-post="2"]:hover,
.push-posts-block__item[data-push-post="3"]:hover {
  background-color: #093766;
}

.push-posts-block__item[data-push-post="2"] .push-posts-block__item__meta,
.push-posts-block__item[data-push-post="3"] .push-posts-block__item__meta {
  color: var(--light-100);
}

.push-posts-block__item[data-push-post="2"] .push-posts-block__item__meta svg *,
.push-posts-block__item[data-push-post="3"]
  .push-posts-block__item__meta
  svg
  * {
  stroke: var(--light-100);
}

.push-posts-block__item[data-push-post="2"] h3,
.push-posts-block__item[data-push-post="3"] h3 {
  font-size: clamp(16px, 1.042vw, 20px);
  font-weight: 500;
}

/* SUBPAGES */

.listing-subpages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  margin-bottom: var(--gutter-blocks);
}

.listing-subpages__item {
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px var(--secondary-400);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-100);
  background: url(assets/images/bg-subpage.svg) no-repeat,
    linear-gradient(88deg, var(--primary-800) 0%, var(--primary-500) 100%);
  background-position: center, 0 0;
  background-size: 250px, auto;
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 1.5;
  padding: 30px;
  text-align: center;
  transition: background-size 0.3s ease;
  min-width: 300px;
  width: calc(33.33% - 2vw);
  height: 250px;
  margin-bottom: 2vw;
}

.listing-subpages__item:hover {
  background-size: 300px, auto;
}

/* Listing posts */

.listing-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(16px, 1.5vw, 30px);
  row-gap: 25px;
}

.listing-posts__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--primary-500);
  border-radius: 10px;
  color: var(--light-100);
  height: auto;
}

.listing-posts__item:hover {
  background-color: var(--primary-800);
}

.listing-posts__item__img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  height: 50%;
}

.listing-posts__item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}

.listing-posts__item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.listing-posts__item__content__meta {
  font-size: var(--font-size-xs);
  color: var(--light-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.listing-posts__item__content h3 {
  display: flex;
  gap: 10px;
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: auto;
}

.listing-posts__item:hover h3 {
  color: var(--secondary-400);
}

.listing-posts__item:hover .listing-posts__item__img img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.listing-posts__item__content__btn {
  font-weight: 500;
  margin-top: auto;
}

.listing-posts__item:hover .listing-posts__item__content__btn {
  color: var(--secondary-400);
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin: var(--gutter-blocks) 0;
}

.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-400);
  font-size: var(--font-size-base);
  font-weight: 500;
}

.wp-pagenavi span.current {
  background: none;
  border-radius: 50%;
  color: var(--primary-500);
}

.wp-pagenavi a:hover {
  text-decoration: underline;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: none;
  padding: 3px 5px;
  margin: 2px;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  content: url(assets/images/right-arrow.svg);
  background: var(--secondary-400);
  border-radius: 50%;
}
.wp-pagenavi .nextpostslink {
  transform: rotate(180deg);
}

/* Listing regions */

.listing-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: max-content;
  gap: 30px;
  margin-bottom: var(--gutter-blocks);
}

.listing-regions__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-regions__item img {
  padding: 10% 15%;
}

.listing-regions__item .offline img {
  opacity: 0.2;
}

.listing-regions__item .label-soon {
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: var(--secondary-400);
  filter: none;
  border-radius: 5px;
  color: var(--primary-800);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  padding: 4px 8px;
  font-weight: 700;
  z-index: 1;
}

.listing-regions__item > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-regions__item h3 {
  margin-top: 20px;
  padding-left: 15px;
  margin-bottom: 0;
}

.listing-regions__item a:not(.offline):hover h3,
.listing-regions__item:hover a:not(.offline) h3 {
  color: var(--secondary-400);
}

.listing-regions__item ul {
  padding-left: 15px;
}

.listing-regions__item ul li a {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--dark-400);
}

.listing-regions__item ul li a:hover {
  color: var(--secondary-400);
}

/* LISTING CITIES */

.listing-cities__index {
  display: flex;
  gap: 1vw;
  justify-content: center;
  font-size: var(--fontSizeBase);
  font-weight: 700;
  margin: var(--gutter-blocks) 0;
}

.listing-cities__index a {
  color: var(--primary-500);
}

.listing-cities__index a:hover {
  color: var(--secondary-400);
}

.listing-cities {
  margin-bottom: 25px;
}

.listing-cities-wrapper {
  columns: 6;
  column-gap: 2vw;
}

.listing-cities__head {
  background-color: var(--primary-500);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-100);
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 25px;
}

.listing-cities__city {
  padding-left: 15px;
}

.listing-cities__city a {
  color: var(--dark-400);
}

.listing-cities__city a:hover {
  color: var(--secondary-400);
}

.listing-regions__item a.offline {
  pointer-events: none;
  filter: grayscale(1);
}

.listing-regions__item__list a.offline,
.listing-cities__city a.offline {
  pointer-events: none;
  color: var(--dark-300);
}

/****************** SINGLE CITY *****************/

#message-alert {
  display: none;
  font-size: var(--font-size-xs);
  border: 1px solid var(--secondary-400);
  border-radius: 5px;
  padding: 5px 10px;
}

#message-alert-type-presta {
  display: flex;
  font-size: var(--font-size-xs);
  border: 1px solid var(--secondary-400);
  border-radius: 5px;
  padding: 5px 10px;
  margin: 25px 0 0 0;
}

#message-alert.active {
  display: block;
}

#message-alert.animate {
  animation: blink-text 1s;
  animation-iteration-count: 2;
}

@keyframes blink-text {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50.01% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.single-city .artgo-h1 {
  margin-bottom: var(--gutter-blocks);
}

.single-city__head {
  display: flex;
  flex-direction: row;
}

.single-city__head__left {
  flex: 1;
  padding: var(--gutter-section) 5%;
}

.single-city__head .form-block {
  flex: 1;
  background: var(--primary-800);
  margin: 0;
  margin-bottom: var(--gutter-blocks);
}

.single-city__head .form-block a:not(.artgo-btn) {
  color: var(--light-100);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.single-city__head__right_promo {
  background-color: var(--red);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: calc(var(--gutter-section) / 2);
}

.single-city__head__right form {
  position: sticky;
  top: 20px;
}

.single-city__head .artgo-h3 {
  color: var(--light-100);
  width: 100%;
  margin-bottom: calc(var(--gutter-blocks) / 2);
}

.single-city__head__right div.fieldset {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: var(--gutter-blocks);
  padding-bottom: var(--gutter-blocks);
  position: relative;
  border-bottom: 1px dashed var(--secondary-400);
}

.single-city__head__right .type-day {
  margin-top: calc(var(--gutter-blocks) * -1);
  margin: var(--gutter-blocks) 0;
}

.single-city__head__right .type-day .fieldset {
  display: none;
  margin-bottom: calc(var(--gutter-blocks) / 2);
  font-size: var(--font-size-xs);
  color: #fff;
}

.single-city__head__right .type-day .fieldset:last-child {
  margin-bottom: 0;
}

.single-city__head__right div.fieldset legend {
  font-size: var(--font-size-base);
  color: #fff;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 0;
}

.single-city__head__right div.fieldset input[type="radio"] {
  display: none;
}

.single-city__head__right div.fieldset input[type="radio"] ~ label {
  cursor: pointer;
  padding: 10px;
  background-color: var(--primary-500);
  border-radius: 5px;
  color: var(--light-100);
}

.single-city__head__right div.fieldset input[type="radio"] + label:hover,
.single-city__head__right div.fieldset input[type="radio"]:checked + label {
  background-color: var(--secondary-400);
  border-color: var(--secondary-400);
  color: var(--light-100);
}

.single-city__head__right div.fieldset input[name="daterange"] {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 7px 15px;
  cursor: pointer;
  width: fit-content;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--secondary-400);
}

.daterangepicker td.start-date {
  border-radius: 10px 0 0 10px;
}

.daterangepicker td.end-date {
  border-radius: 0 10px 10px 0;
}

.daterangepicker .applyBtn {
  background-color: var(--secondary-400);
  border: 1px solid var(--secondary-400);
  border-radius: 5px;
  color: #fff;
}

.daterangepicker .applyBtn:hover {
  background-color: #fff;
  color: var(--secondary-400);
}

.date-text {
  color: #fff;
  font-size: var(--font-size-xs);
  font-style: italic;
  width: 100%;
  font-weight: 400;
}

.single-city__head__right div.fieldset input[name="daterange"]::placeholder,
.single-city__head__right div.fieldset input[type="number"]::placeholder,
.single-city__head__right div.fieldset input[type="text"]::placeholder {
  color: #fff;
}

.single-city__head__right div.fieldset input[type="number"] {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 5px;
}

.single-city__head__right div.fieldset .legend-fullw {
  width: 100%;
  color: #fff;
}

.single-city__head__right__multiple-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  /* padding-left: 25px; */
}

.multiple-field__item {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: var(--font-size-sm);
}

.field_error {
  border-color: red !important;
}

.vehicule-tooltip {
  color: #fff;
  font-size: var(--font-size-xs);
  font-style: italic;
}

.single-city__head__right__multiple-field input[type="number"] {
  width: 60px;
  padding: 0px 6px;
}

.single-city__head__right input[type="text"] {
  background: transparent;
  color: #fff;
  width: 100%;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
}

.single-city__head__right select {
  background: transparent;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 10px;
  cursor: pointer;
}

.single-city__head__right select * {
  background-color: var(--primary-500);
  padding: 10px;
  cursor: pointer;
}

.single-city__head__right .autocomplete-adress-fields {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

.single-head__right__price {
  margin: var(--gutter-blocks) 0 0 0;
  padding-top: var(--gutter-blocks);
  position: relative;
}

/* .single-head__right__price::before {
  position: absolute;
  top: 0;
  content: "";
  height: 5px;
  width: 100%;
  background: url(assets/images/header-deco.svg);
  background-repeat: repeat-x;
} */

.single-city__head__right .error-tooltip {
  display: none;
  background-color: var(--secondary-400);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.single-city__head__right .error-tooltip.active {
  display: flex;
}

#pds-price small {
  font-size: 16px;
  display: flex;
  line-height: 16px;
  align-items: end;
  padding-bottom: 5px;
  padding-left: 10px;
}

/****************** FOOTER *****************/

.footer__reinsurance {
  display: flex;
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: var(--secondary-400);
  padding: 30px 5vw;
}

.footer__reinsurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--light-100);
}

.footer__reinsurance__item img {
  height: 20px;
  width: auto;
}

.footer__form {
  display: flex;
  gap: 5vw;
  padding: var(--gutter-section) 0;
}

.footer__form h2 {
  max-width: 497px;
}

.search-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--light-100);
  border: 1px solid var(--secondary-400);
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px var(--secondary-400);
  padding: clamp(15px, 1.823vw, 30px) clamp(25px, 2.604vw, 50px);
  width: 100%;
}

.search-cities label {
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-800);
}

.search-cities__input-wrap {
  position: relative;
  display: flex;
  border: 1px solid var(--dark-400);
  border-radius: 10px;
}

.search-cities input {
  padding: 15px 20px;
  border-radius: 10px;
  width: 100%;
}

.search-cities button {
  background: none;
  cursor: pointer;
  margin-right: clamp(0, 1.042vw, 20px);
  aspect-ratio: 1 / 1;
}

.search-cities button img {
  background-color: var(--secondary-400);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-cities ul {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--light-100);
  border: 1px solid var(--secondary-400);
  padding: 10px 15px;
  border-radius: 10px;
  z-index: 500;
  max-height: 250px;
  color: var(--dark-400);
}

.search-cities ul mark {
  background-color: var(--light-100);
  color: var(--dark-400);
  font-weight: 700;
}

.search-cities ul p {
  font-style: italic;
  font-size: var(--font-size-xs);
  margin-bottom: 10px;
}

.search-cities ul li {
  cursor: pointer;
  padding: 3px 6px;
  width: fit-content;
}

.search-cities ul li:hover {
  background: var(--secondary-400);
  border-radius: 5px;
}

.footer__content {
  border-radius: 10px;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  padding: var(--gutter-blocks);
  color: var(--light-100);
  font-weight: 500;
}

.footer__content__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--gutter-blocks);
  width: 100%;
}

.footer__content__left,
.footer__content__center,
.footer__content__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__content__left img {
  max-width: 192px;
}

.footer__content__left p {
  line-height: 1.5;
}

.footer__content__center {
  align-items: center;
}

.footer__content__center a:not(.artgo-btn) {
  color: var(--light-100);
  font-weight: 500;
  text-align: center;
  width: fit-content;
}

.footer__content__center a:not(.artgo-btn):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__content__right,
.footer__content__right__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__content__right__socials__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-100);
  width: fit-content;
}

.footer__content__right__socials__item:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__content__right__socials__item:hover img {
  filter: brightness(0.8);
}

.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.footer__bottom li a {
  font-size: var(--font-size-xs);
  color: var(--primary-800);
  font-weight: 500;
  line-height: 1.5;
}

.footer__bottom li {
  display: flex;
  gap: 10px;
}

.footer__bottom li:not(:last-child)::after {
  content: "-";
}

.footer__bottom li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/****************** WOOCOMMERCE *****************/

.woocommerce-artgo p:not(.wc-block-components-totals-footer-item-tax) {
  color: var(--dark-400);
  line-height: 1.5;
}

.woocommerce-artgo a {
  color: var(--primary-500);
}

.woocommerce-artgo a:hover {
  color: var(--secondary-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-artgo h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(
    88deg,
    var(--primary-800) 0%,
    var(--primary-500) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.woocommerce-artgo h2::after {
  content: url(assets/images/deco.svg);
  line-height: 0;
}

/* WC view order */

.woocommerce-view-order .woocommerce-artgo h2 {
  margin-bottom: var(--gutter-blocks);
}

.woocommerce-view-order .woocommerce-artgo section {
  padding: 0 0 var(--gutter-blocks) 0;
}
/* WC notifications */

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: var(--dark-200);
  color: var(--primary-800);
  max-width: 1200px;
  margin: 0 auto 2em;
}

.woocommerce-info {
  border-top-color: var(--secondary-400);
}

.woocommerce-info::before {
  color: var(--secondary-400);
}

.woocommerce-message {
  border-top-color: var(--secondary-400);
}

/* WC buttons */
.woocommerce :is(a.button, button.button, .wp-element-button),
.woocommerce-page
  :is(.wc-block-components-totals-coupon-link, .wp-element-button),
.wc-block-mini-cart__empty-cart-wrapper .wp-block-button__link {
  position: relative;
  font-weight: 500;
  color: var(--light-100);
  border: 1px solid var(--secondary-400);
  border-radius: 2px 20px;
  padding: 15px 20px;
  width: fit-content;
  background-color: var(--secondary-400);
  cursor: pointer;
  margin: 5px 0 5px;
}

.woocommerce :is(a.button, button.button, .wp-element-button):hover,
.woocommerce-page :is(a.button, button.button, .wp-element-button):hover,
.wc-block-mini-cart__empty-cart-wrapper .wp-block-button__link:hover {
  background-color: var(--light-100);
  color: var(--primary-800);
  text-decoration: none;
}

body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link):focus {
  box-shadow: none;
}

.wc-block-cart__submit-container {
  display: flex;
  justify-content: center;
}

.woocommerce-page
  :is(
    .wc-block-cart__submit-button,
    .wc-block-components-totals-coupon__button
  ) {
  background-color: var(--secondary-400);
}

.woocommerce-page
  :is(
    a.wc-block-cart__submit-button,
    .wc-block-components-totals-coupon__button
  ):after {
  border-color: var(--light-100);
}

.woocommerce-page :is(.wc-block-components-checkout-place-order-button) {
  background-color: var(--secondary-400);
}

/* Account page */

.woocommerce-artgo ul .woocommerce-MyAccount-navigation-link {
  padding: 15px 5vw 15px 0;
  border-bottom: 1px solid var(--secondary-400);
}

.woocommerce-artgo ul .woocommerce-MyAccount-navigation-link::before {
  content: "";
}

.woocommerce-artgo ul .woocommerce-MyAccount-navigation-link a {
  font-size: var(--font-size-h3);
  color: var(--primary-500);
  font-weight: 500;
  line-height: 1.5;
}

.woocommerce-artgo
  ul
  .woocommerce-MyAccount-navigation-link--customer-logout
  a {
  color: red;
}

.woocommerce-artgo ul .woocommerce-MyAccount-navigation-link a:hover {
  color: var(--secondary-400);
  text-decoration: none;
}

.woocommerce-artgo
  ul
  .woocommerce-MyAccount-navigation-link--customer-logout
  a:hover {
  color: var(--secondary-400);
}

.woocommerce form .form-row {
  margin-bottom: var(--gutter-blocks);
}

.woocommerce form .form-row label {
  font-size: var(--font-size-sm);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row input[type="date"] {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 10px;
}

.woocommerce form .form-row .required {
  color: var(--secondary-400);
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ccc;
  height: 45px;
  padding: 10px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 1.5;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce-Address-title.title {
  background: transparent;
  color: var(--primary-800);
  padding: 16px;
  border: 1px solid var(--secondary-400);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.woocommerce-Address-title.title h2 {
  font-size: var(--font-size-medium);
}

.woocommerce-account .addresses .title .edit {
  color: var(--primary-500);
  text-decoration: underline;
  font-style: italic;
}

/* Login page */

.woocommerce form.login,
.woocommerce form.register {
  border: 0;
  margin-top: 0;
}

.woocommerce-privacy-policy-text {
  font-size: var(--font-size-xs);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 30px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  cursor: pointer;
  width: 100%;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
  cursor: pointer;
  accent-color: var(--secondary-400);
  width: 20px;
  height: 20px;
}

/* Mini cart */

.wc-block-mini-cart__template-part .wc-block-components-drawer__close {
  background-color: var(--secondary-400) !important;
  border-radius: 50%;
  right: 18px;
  top: 18px;
}

.wc-block-mini-cart__template-part .wc-block-components-drawer__close svg {
  fill: var(--primary-800) !important;
}

.wp-block-woocommerce-mini-cart-checkout-button-block,
.wp-block-woocommerce-mini-cart-cart-button-block {
  position: relative;
  font-weight: 500;
  color: var(--primary-800);
  border: 1px solid var(--secondary-400);
  border-radius: 2px 20px;
  padding: 15px 20px;
  width: fit-content;
  background-color: var(--secondary-400);
  cursor: pointer;
  margin: 5px 0 5px;
}

.wp-block-woocommerce-mini-cart-checkout-button-block:hover,
.wp-block-woocommerce-mini-cart-cart-button-block:hover {
  background: --transparent;
  color: var(--light-100) !important;
  text-decoration: none;
}

.wc-block-components-button:not(.is-link).outlined:not(:focus) {
  box-shadow: none;
}

.wp-block-woocommerce-mini-cart-title-block.wc-block-mini-cart__title {
  font-size: var(--font-size-medium);
}

.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained {
  padding: 5px !important;
}

.wc-block-components-button:not(.is-link).outlined:hover {
  background-color: transparent;
  color: var(--light-100);
}

.wp-block-woocommerce-mini-cart-checkout-button-block {
  background-color: var(--secondary-400);
  color: var(--primary-800);
}

.wp-block-woocommerce-mini-cart-checkout-button-block:hover {
  background: transparent;
  color: var(--light-100) !important;
  text-decoration: none;
}

table.wc-block-cart-items
  .wc-block-cart-items__row
  .wc-block-components-product-name {
  color: var(--secondary-400);
}

.wc-block-components-button.wc-block-components-drawer__close svg {
  fill: var(--light-100);
}

.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained {
  aspect-ratio: 1 / 1;
}

.wp-block-woocommerce-mini-cart-contents {
  color: var(--light-100);
}

.wp-block-woocommerce-mini-cart-shopping-button-block:hover {
  color: var(--light-100) !important;
}

/* Cart page */

table.wc-block-cart-items .wc-block-cart-items__header th {
  font-weight: 600;
  font-size: var(--font-size-base);
}

table.wc-block-cart-items
  .wc-block-cart-items__row
  .wc-block-components-product-name {
  font-weight: 500;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
  font-weight: 700;
  font-size: var(--font-size-medium);
}

.woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items,
.woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items td {
  border-color: var(--secondary-400);
}

.woocommerce-cart .wc-block-components-sidebar {
  background-color: var(--primary-800);
  border-radius: 10px;
  color: var(--light-100);
  padding: 30px !important;
  height: fit-content;
}

.woocommerce-cart .is-large.wc-block-cart .wc-block-cart__totals-title {
  font-size: var(--font-size-h2);
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  flex-direction: column;
  -webkit-text-fill-color: unset;
  margin: auto;
}

.woocommerce-page
  .wc-block-components-totals-coupon__form
  .wc-block-components-totals-coupon__input
  input,
.woocommerce-page
  .wc-block-components-totals-coupon__form
  .wc-block-components-totals-coupon__input
  input:focus {
  background: none;
  border-color: var(--secondary-400);
  color: var(--light-100);
}
.woocommerce-page
  .wc-block-components-totals-coupon__form
  .wc-block-components-totals-coupon__input
  label {
  color: var(--light-100);
}

.woocommerce-cart .wc-block-components-totals-wrapper {
  border-color: transparent;
}

.woocommerce-cart .wc-block-components-totals-wrapper:last-child {
  border-color: var(--secondary-400);
}

.woocommerce-cart
  .is-large.wc-block-cart
  .wc-block-components-sidebar
  .wc-block-components-totals-item__description.wc-block-components-totals-shipping__via,
.is-large.wc-block-cart
  .wc-block-components-sidebar
  .wc-block-components-totals-shipping__change-address__link {
  color: var(--secondary-400);
}

.wc-block-components-quantity-selector {
  display: none !important;
  visibility: hidden !important;
}

.wc-block-components-product-details.wc-block-components-product-details li {
  margin: 5px 0;
  font-size: var(--font-size-sm);
}

/* Checkout page */

.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  background-color: var(--primary-800);
  color: var(--light-100);
  padding: var(--gutter-blocks);
}

.woocommerce-checkout .wc-block-components-totals-wrapper:last-child {
  border-color: var(--secondary-400);
}

.woocommerce-cart .wc-ppcp-paylater-msg__container,
.woocommerce-checkout .wc-ppcp-paylater-msg__container {
  display: none;
}

.wp-block-woocommerce-checkout-order-summary-block
  .wc-block-components-checkout-order-summary__title
  .wc-block-components-checkout-order-summary__title-text {
  color: var(--light-100) !important;
}

.cmplz-cookiebanner {
  transition: none !important;
}

/****************** RESPONSIVE *****************/

@media only screen and (max-width: 1279px) {
}

@media only screen and (max-width: 991px) {
  #menu-wrapper {
    width: 50vw;
  }

  #content-wrapper.menu-is-open {
    transform: scale(0.8) translateX(-50vw) translateZ(0);
  }

  .header__banner-right > img {
    display: none;
  }
  .header__banner-right__content {
    position: relative;
    inset: unset;
  }
  #home-content {
    display: none;
  }

  .push-posts-block__items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    grid-column-gap: 40px;
    grid-row-gap: 20px;
  }

  .push-posts-block__item[data-push-post="1"] {
    grid-area: 1 / 1 / 3 / 2;
  }
  .push-posts-block__item[data-push-post="2"] {
    grid-area: 3 / 1 / 4 / 2;
  }
  .push-posts-block__item[data-push-post="3"] {
    grid-area: 4 / 1 / 5 / 2;
  }

  .footer__content__inner {
    flex-direction: column;
    align-items: center;
  }

  .footer__content__left,
  .footer__content__center,
  .footer__content__right {
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .single-city {
    flex-direction: column-reverse;
    gap: var(--gutter-blocks);
  }

  .listing-regions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .header__menu__btns > *:not(#open-menu) {
    display: none;
  }
  .top-bar__center,
  .top-bar__right > * > span {
    display: none;
  }

  .text-img-block {
    flex-direction: column;
  }
  .text-block {
    flex-direction: column;
  }
  .gallery-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .listing-posts {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: var(--gutter-section);
  }

  .footer__form {
    flex-direction: column;
  }
}

@media only screen and (max-width: 576px) {
  #menu-wrapper {
    width: 100vw;
    padding: 5vh 5vw;
  }

  #menu-wrapper.menu-is-open {
    overflow: auto;
  }

  #content-wrapper.menu-is-open {
    transform: scale(0.8) translateX(-200%) translateZ(0);
  }

  .top-menu {
    gap: 20px;
  }

  #close-menu.menu-is-open {
    transform: none;
    top: 10px;
    right: 10px;
  }

  .home header {
    padding-bottom: calc(var(--gutter-blocks) + 75px);
  }
  .header__banner {
    flex-direction: column;
  }
  .listing-posts {
    grid-template-columns: 1fr;
  }
  .footer__reinsurance {
    flex-direction: column;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer__bottom li:not(:last-child)::after {
    content: unset;
  }
  .listing-regions {
    grid-template-columns: repeat(1, 1fr);
  }
  .cmplz-cookiebanner .cmplz-message {
    margin-right: 5px;

    height: 80px;

    /* overflow: scroll; */
  }
  .artgo-h1--home .second-line {
    font-size: 22px;
  }
}
