@charset "UTF-8";
/*
Theme Name: Starter Theme ©2023 Tous droits réservés
Theme URI: https://thomasaudibert.fr/
Author: Thomas AUDIBERT - Webdesigner et intégrateur web WordPress freelance
Author URI: https://thomasaudibert.fr/
Description: Réglage par défaut du site
Version: 2023.v1
Text Domain: 
Tags:
*/
/*--------------------------------------------------------------
1.0 Initialization
--------------------------------------------------------------*/
/*---------------------------------------
Colors du Thème thatstudio.fr
---------------------------------------*/
.fc-color1 {
  color: #ff9100;
}

.bgcolor-dark {
  background: #000000;
  color: #ffffff;
}
.bgcolor-dark a {
  color: #ffffff;
}

.bgcolor-light {
  background: #ff9100;
  color: #000000;
}
.bgcolor-light a {
  color: #000000;
}

.bgcolor-dark-gradient {
  color: #ffffff;
  background: linear-gradient(45deg, rgba(15, 4, 11, 0.7), rgba(70, 13, 44, 0.7)), #000000;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Default Settings
    1.1 Global Setting
    1.2 Column
    1.3 Espacement
    1.4 Alignement
    1.5 Container
    1.6 Image
    1.7 Titrage & corps de texte
2.0 Components
    2.1 Button
    2.3 Breadcrumb
    2.4 Formulaire
    2.6 Navbar
    2.7 Banner
    2.8 Cards
    2.9 Social media
    2.10 Carousel
    2.11 Badge
    2.12 Tableau
3.0 Header
4.0 Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Default Settings
--------------------------------------------------------------*/
/*---------------------------------------
1.1 Global Setting
---------------------------------------*/
body.fixed_head ._homepage,
body.fixed_head ._page {
  padding-top: 80px;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #000000;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big,
blockquote, body, canvas, caption, center, cite, code, dd, del,
details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure,
footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe,
img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output,
p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub,
summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul,
var, video {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
main, menu, nav, section {
  display: block;
}

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

::-moz-selection {
  color: #ffffff;
  background: #ff9100;
}

::selection {
  color: #ffffff;
  background: #ff9100;
}

@media screen and (max-width: 680px) {
  body {
    font-size: 14px;
  }
}
/*---------------------------------------
1.2 Column
---------------------------------------*/
.row {
  width: 100%;
  max-width: 1460px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto;
}

.row-reverse {
  flex-direction: row-reverse !important;
}

.w20, .w25, .w30, .w33, .w40, .w45, .w50, .w60, .w66, .w70, .w80, .w100 {
  padding: 20px;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.33%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w66 {
  width: 66.66%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .w20, .w25, .w30, .w33, .w40, .w45, .w50, .w60, .w66, .w70, .w80 {
    width: 50%;
  }
  .w100 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .row {
    padding: 15px;
  }
  .w20, .w25, .w30, .w33, .w40, .w45, .w50, .w60, .w66, .w70, .w80, .w100 {
    width: 100%;
  }
}
/*---------------------------------------
1.3 Espacement
---------------------------------------*/
.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

/*---------------------------------------
1.4 Alignement
---------------------------------------*/
.align-between {
  display: flex;
  flex-wrap: wrap;
  align-items: space-between;
}

.align-around {
  display: flex;
  flex-wrap: wrap;
  align-items: space-around;
}

.align-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.align-start {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.align-end {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

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

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

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

.left {
  float: left;
}

.right {
  float: right;
}

/*---------------------------------------
1.5 Container
---------------------------------------*/
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 60px 0;
  margin: 0 auto;
}
.container .content-block {
  max-width: 1460px;
  padding: 20px;
}

.container-fluid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container-fluid .row {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.container-fluid .content-block {
  padding: 60px 40px;
}
.container-fluid .content-block .inner-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 0;
}

.content-intro {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-block {
  max-width: 1460px;
  padding: 60px 20px;
}

.inner-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 0;
}
.inner-content h3, .inner-content h4 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .content-block {
    padding: 15px;
  }
  .container .content-block {
    padding: 15px;
  }
  .inner-content {
    padding: 80px 15px;
  }
  .container-fluid .content-block {
    padding: 60px 30px;
  }
  .container-fluid .inner-content {
    padding: 30px 30px;
  }
  .container-fluid .content-block .inner-content {
    max-width: 100%;
  }
}
/*---------------------------------------
1.6 Image
---------------------------------------*/
figure {
  display: block;
}
figure img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  margin: 0 auto;
}

figure.fig-background {
  display: block;
  min-height: 60vh;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
figure.fig-background img {
  display: block;
  visibility: hidden;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  figure.fig-background {
    min-height: 40vh;
  }
}
/*---------------------------------------
1.7 Titrage & corps de texte
---------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
}

h1 {
  font-size: 2.4rem;
  line-height: 2.6rem;
}

h2 {
  font-size: 2rem;
  line-height: 2.2rem;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.3rem;
}

p {
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 0 0 20px;
}
p:last-child {
  margin: 0;
}

a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #ff9100;
}

a.link {
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
}
a.link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 980px) {
  h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  h4 {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
}
@media screen and (max-width: 680px) {
  p {
    font-size: 14px;
    line-height: 1.3rem;
  }
}
/*--------------------------------------------------------------
2.0 Components
--------------------------------------------------------------*/
/*---------------------------------------
Fonts du Thème thatstudio.fr
---------------------------------------*/
/*@font-face {
    font-family: "Migra Bold";
    src: url('fonts/migra/eot/Migra-Bold.eot');
    src: url('fonts/migra/eot/Migra-Bold.eot') format('embedded-opentype'),
         url('fonts/migra/woff2/Migra-Bold.woff2') format('woff2'),
         url('fonts/migra/woff/Migra-Bold.woff') format('woff'),
         url('fonts/migra/woff2/Migra-Bold.ttf') format('truetype');
}*/
body {
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.65rem;
  line-height: 3.05rem;
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.8rem;
  text-transform: none;
}

.btn {
  font-family: "Work Sans", sans-serif;
}

#main-menu li.menu-item a {
  font-family: "Work Sans", sans-serif;
}

footer .footer-content,
footer .footer-baseline .baseline-content {
  font-family: "Work Sans", sans-serif;
}

@media screen and (max-width: 1280px) {
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  h3 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 980px) {
  h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 680px) {
  h1 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  h3 {
    font-size: 1.15rem;
    line-height: 1.35rem;
  }
}
/*---------------------------------------
Cursor du Thème thatstudio.fr
---------------------------------------*/
.cursor {
  position: absolute;
  z-index: 99999;
  width: 22px;
  height: 22px;
  background-color: #000000;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: transform 0.5s ease, background-color 0.25s ease;
  -moz-transition: transform 0.5s ease, background-color 0.25s ease;
  -o-transition: transform 0.5s ease, background-color 0.25s ease;
  transition: transform 0.5s ease, background-color 0.25s ease;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.cursor.hovered {
  background-color: #7717ff;
}

/* Hover blur effect on clickable elements */
.contact-mail,
.social-item a {
  -webkit-transition: -webkit-filter 0.3s ease;
  -moz-transition: filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
}

.contact-mail:hover,
.social-item a:hover {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

/* Hide cursor only on touch devices, not on small desktop screens */
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none;
  }
}
/*---------------------------------------
1.8 Responsive shortcode
---------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 980px) {
  .order-tablet-1 {
    order: 1;
  }
  .order-tablet-2 {
    order: 2;
  }
  .order-tablet-3 {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-2 {
    order: 2;
  }
  .order-mobile-3 {
    order: 3;
  }
}
/*--------------------------------------------------------------
2.0 Components
--------------------------------------------------------------*/
/*---------------------------------------
2.1 Bouton
---------------------------------------*/
.button-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px auto 0;
}

.btn {
  display: inline-block;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  text-transform: none;
  border-radius: 0;
  width: auto;
  padding: 10px 20px;
  margin: 0;
  font-family: sans-serif;
  text-align: center;
  letter-spacing: 3px;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}

.btn-dark {
  border: 1px solid #000000;
  color: #ffffff;
  background: #000000;
}
.btn-dark:hover {
  border: 1px solid #000000;
  color: #ffffff;
  background: #000000;
}
.btn-dark.active {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-light {
  border: 1px solid #ffffff;
  color: #000000;
  background: #ffffff;
}
.btn-light:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn-light.active {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn + .btn {
  margin-left: 16px;
}

p ~ .btn {
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  .btn {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 13px 25px;
  }
  .btn + .btn {
    margin-top: 16px;
    margin-left: 0;
  }
}
/*---------------------------------------
> 2.3 Breadcrumb
---------------------------------------*/
.breadcrumb {
  text-align: left;
  display: block;
}

.breadcrumb ul {
  list-style: none;
}

.breadcrumb ul li {
  position: relative;
  display: inline;
}

.breadcrumb ul li::before {
  content: ">";
  vertical-align: middle;
  display: inline-block;
  margin: -2px 5px;
}

.breadcrumb ul li:first-child::before {
  display: none;
}

.breadcrumb ul li {
  color: #ffffff;
  font-size: 0.85rem;
}

.breadcrumb ul li a {
  color: #ffffff;
  text-decoration: none;
}
.breadcrumb ul li a:hover {
  color: #ff9100;
}

/*---------------------------------------
> 2.4 Formulaire
---------------------------------------*/
#filter {
  display: none;
}

label.w50,
label.w100 {
  display: block;
  margin: 0;
}

label.w50.left,
label.w50.right,
label.w100 {
  padding: 5px;
}

label textarea {
  height: auto;
  min-height: 150px;
}

.form-action {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 15px 5px 0;
}

input[type=text], input[type=email],
input[type=tel], input[type=password], select, textarea {
  display: block;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  height: 45px;
  font-size: 0.85rem;
  color: #949494;
  border: 1px solid #b4b4b4;
  border-radius: 0;
  background: transparent;
  padding: 10px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #949494;
}

input[type=text]::placeholder, input[type=email]::placeholder,
input[type=tel]::placeholder, input[type=password]::placeholder, select::placeholder, textarea::placeholder {
  color: #949494;
}

input[type=text]:hover, input[type=email]:hover,
input[type=tel]:hover, input[type=password]:hover, select:hover, textarea:hover,
input[type=text]:focus, input[type=email]:focus,
input[type=tel]:focus input[type=password]:focus, select:focus, textarea:focus {
  border: 1px solid #000000;
}

input[type=submit] {
  border-style: solid;
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 2px;
  border-radius: 0px;
  padding: 10px 30px;
  margin: 0 auto;
  transition: ease-in-out 0.3s;
}
input[type=submit]:hover {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.error_message {
  width: 100%;
  font-size: 0.85rem;
  background-color: #AD0E09;
  padding: 15px 20px;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.error_message p {
  margin: 0;
}

.checkbox-privacy {
  display: block;
  position: relative;
  padding-left: 24px;
  text-align: justify;
  margin: 15px 5px 25px;
  font-size: 12px;
  line-height: 0.9rem;
  color: #949494;
}
.checkbox-privacy a {
  text-decoration: underline;
  font-weight: 300;
  color: #949494;
  font-weight: 400;
  font-size: 12px;
  line-height: 0.9rem;
  transition: ease-in-out 0.3s;
}

.checkbox-privacy input {
  position: absolute;
  top: 2px;
  left: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  label.w50.left,
  label.w50.right {
    width: 50%;
  }
  label.w50, label.w100 {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  label.w50.left, label.w50.right,
  label.w50, label.w100 {
    width: 100%;
    padding: 5px 0;
  }
  .checkbox-privacy {
    margin: 15px 0 25px;
  }
  .form-action {
    padding: 15px 0 0;
  }
  input[type=submit] {
    width: 100%;
  }
}
/*----------------------------
2.4.1 Formulaire de contact
----------------------------*/
#contact #contact-form {
  max-width: 980px;
  padding: 20px;
  margin: 0 auto;
}

/*---------------------------------------
> 2.6 Navbar
---------------------------------------*/
/*----------------------------
2.6.1 Navbar Main
----------------------------*/
.menu-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

#main-menu {
  width: 80%;
  max-width: 100%;
  height: 80px;
}
#main-menu ul.menu-item-list {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#main-menu li.menu-item {
  list-style: none;
  padding: 0 1vw;
}
#main-menu li.menu-item:last-child {
  padding: 0 0 0 1vw;
}
#main-menu li.menu-item a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff;
  mix-blend-mode: inherit;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
  transition: all ease-in-out 0.3s;
}
#main-menu li.menu-item a:hover {
  color: #ff9100;
  mix-blend-mode: inherit;
}

body.fixed_head #main-menu li.menu-item a {
  font-size: 1rem;
  color: #000000;
  mix-blend-mode: inherit;
}
body.fixed_head #main-menu li.menu-item a:hover {
  color: #ff9100;
  mix-blend-mode: inherit;
}
body.fixed_head #menu-mobile .menu-icon-bar {
  display: block;
  margin: 6px auto;
  height: 2px;
  width: 20px;
  background: #000000;
  mix-blend-mode: inherit;
  transition: all ease-in-out 0.3s;
}

#menu-mobile {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  margin-top: -10px;
  position: absolute;
  top: 25px;
  right: 10px;
}
#menu-mobile .menu-icon-bar {
  display: block;
  margin: 6px auto;
  height: 2px;
  width: 20px;
  background: #ffffff;
  mix-blend-mode: inherit;
}
#menu-mobile .menu-icon-bar.bar-top,
#menu-mobile .menu-icon-bar.bar-bottom {
  transition: transform ease-in-out 0.3s, margin ease-in-out 0.3s;
}

@media screen and (max-width: 980px) {
  #menu-mobile {
    display: block;
    border: 1px solid transparent;
  }
  #main-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -45vw;
    width: 45vw;
    height: 100vh;
    padding: 0 0 60px;
    background: #000000;
    overflow-y: hidden;
    transition: left linear 0.3s;
  }
  #main-menu ul.menu-item-list {
    display: block;
    padding: 100px 0 0;
  }
  #main-menu li.menu-item {
    display: block;
    z-index: 10;
  }
  #main-menu li.menu-item:hover {
    background: #ff9100;
    color: #ffffff;
  }
  #main-menu li.menu-item a {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    padding: 20px 40px;
  }
  #main-menu li.menu-item a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  body.menu_open .menu-overlay {
    display: block;
    opacity: 1;
    z-index: 1;
  }
  body.menu_open #main-menu {
    left: 0;
    z-index: 9999;
  }
  body.menu_open #main-menu li.menu-item a {
    display: block;
    font-size: 1rem;
    padding: 20px 40px;
    mix-blend-mode: inherit;
  }
  body.menu_open #main-menu li.menu-item a:hover {
    text-decoration: none;
    mix-blend-mode: inherit;
  }
  body.menu_open #menu-mobile {
    z-index: 99999;
    background: #ffffff;
    border: 1px solid #000000;
  }
  body.menu_open #menu-mobile .menu-icon-bar {
    background: #000000;
    mix-blend-mode: inherit;
  }
  body.menu_open #menu-mobile .menu-icon-bar.bar-top {
    margin: 14px auto;
    transform: rotateZ(45deg);
  }
  body.menu_open #menu-mobile .menu-icon-bar.bar-middle {
    opacity: 0;
  }
  body.menu_open #menu-mobile .menu-icon-bar.bar-bottom {
    margin: -24px auto;
    transform: rotateZ(-45deg);
  }
  body.menu_open #menu-mobile:hover {
    background: #ff9100;
  }
  body.menu_open #menu-mobile:hover .menu-icon-bar {
    background: #ffffff;
  }
  body.fixed_head.menu_open #main-menu li.menu-item a {
    font-size: 1rem;
    color: #ffffff;
    mix-blend-mode: inherit;
  }
  body.fixed_head.menu_open #main-menu li.menu-item a:hover {
    color: #ffffff;
    mix-blend-mode: inherit;
  }
  body.fixed_head.menu_open #menu-mobile {
    z-index: 9999;
    background: #ffffff;
    mix-blend-mode: inherit;
  }
  body.fixed_head.menu_open #menu-mobile .menu-icon-bar.bar-top {
    margin: 14px auto;
    transform: rotateZ(45deg);
  }
  body.fixed_head.menu_open #menu-mobile .menu-icon-bar.bar-middle {
    opacity: 0;
  }
  body.fixed_head.menu_open #menu-mobile .menu-icon-bar.bar-bottom {
    margin: -24px auto;
    transform: rotateZ(-45deg);
  }
  body.fixed_head.menu_open #menu-mobile:hover {
    background: #ff9100;
  }
  body.fixed_head.menu_open #menu-mobile:hover .menu-icon-bar {
    background: #ffffff;
  }
}
@media screen and (max-width: 680px) {
  #main-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -60vw;
    width: 60vw;
  }
  body.menu_open #main-menu ul.menu-item-list {
    padding: 100px 0;
  }
  body.menu_open #main-menu li.menu-item a {
    font-size: 1rem;
  }
}
/*----------------------------
2.6.3 Navbar Footer
----------------------------*/
#footer-nav {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px;
}
#footer-nav ul.menu-item-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#footer-nav li.menu-item {
  list-style: none;
  padding: 5px 10px;
}
#footer-nav li.menu-item a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #000000;
  mix-blend-mode: inherit;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
}
#footer-nav li.menu-item a:hover {
  color: #000000;
  mix-blend-mode: inherit;
}

/*----------------------------
2.6.3 Navbar Baseline
----------------------------*/
#baseline-nav ul.menu-item-list {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#baseline-nav li.menu-item {
  list-style: none;
  padding: 0 10px;
}
#baseline-nav li.menu-item:last-child {
  padding: 0 0 0 10px;
}
#baseline-nav li.menu-item a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  mix-blend-mode: inherit;
  text-decoration: none;
  font-family: sans-serif;
}
#baseline-nav li.menu-item a:hover {
  color: #000000;
}

@media screen and (max-width: 768px) {
  #baseline-nav {
    width: 100%;
  }
  #baseline-nav ul.menu-item-list {
    text-align: center;
    justify-content: center;
  }
  #baseline-nav li.menu-item {
    list-style: none;
    padding: 0 10px;
  }
  #baseline-nav li.menu-item:last-child {
    padding: 0 10px;
  }
}
/*---------------------------------------
2.8 Cards
---------------------------------------*/
.card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 30.33%;
  margin: 0 auto 20px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
.card .card-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.card .card-header {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #ffffff;
  background: #000000;
  color: #ffffff;
  padding: 15px 25px;
}
.card .card-header .card-header-title {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
}
.card .card-body {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 40px 25px;
}
.card .card-body .card-title {
  margin: 0 0 10px;
}
.card .card-footer {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  background: #000000;
}
.card .card-footer .card-footer-item {
  align-items: center;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  color: #ffffff;
  background: #000000;
  padding: 15px 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.card .card-footer .card-footer-item:hover {
  color: #000000;
  background: #ffffff;
}

@media screen and (max-width: 860px) {
  .card {
    width: 45%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 680px) {
  .card {
    width: 100%;
    margin: 0 auto 20px;
  }
}
/*---------------------------------------
2.9 Social media
---------------------------------------*/
#social-link {
  margin: 0 auto;
}
#social-link ul.social-link_group {
  list-style: none;
  text-align: center;
}
#social-link li.social-item {
  display: inline-block;
  margin: 0 5px 0 0;
}
#social-link li.social-item:last-child {
  margin: 0;
}
#social-link li.social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  border: 1px solid #000000;
  transition: ease-in-out 0.3s;
}
#social-link li.social-item a:hover {
  background-color: #000000;
  border: 1px solid #000000;
}
#social-link li.social-item a svg {
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  fill: #ffffff;
  transition: ease-in-out 0.3s;
}
#social-link li.social-item a svg:hover {
  fill: #ffffff;
}

/*---------------------------------------
> 2.11 Badge
---------------------------------------*/
.badge {
  display: inline-block;
  font-size: 0.65rem;
  padding: 5px 8px;
  margin: 0 0 10px;
  border-radius: 3px;
  text-transform: uppercase;
}

.badge-light {
  background: #ffffff;
  color: #000000;
}

.badge-dark {
  background: #000000;
  color: #ffffff;
}

.badge-success {
  background: #68E888;
  color: #2B4F34;
}

.badge-info {
  background: #99CFEC;
  color: #2E4754;
}

.badge-warning {
  background: #ECD68E;
  color: #544B2E;
}

.badge-danger {
  background: #EE96A3;
  color: #693A3E;
}

/*---------------------------------------
2.12 Tableau
---------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #000000;
}
table th, table td {
  padding: 10px;
  border: 1px solid #000000;
}

thead.thead-dark {
  color: #ffffff;
  background: #000000;
}

/*---------------------------------------
2.13 Accordion
---------------------------------------*/
.accordion .accordion-item .accordion-head {
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px dotted #ffffff;
  position: relative;
  transition: ease-in-out 0.3s;
}
.accordion .accordion-item .accordion-head .accordion-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 auto 0 0;
}
.accordion .accordion-item .accordion-head:hover {
  color: #ff9100;
}
.accordion .accordion-item .accordion-head.active {
  color: #ff9100;
}
.accordion .accordion-item .accordion-head::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.01 17.01'%3E%3Cpath fill='%23ffffff' d='M15.59,8.45v.12c0,.43-.36,.79-.79,.79h-5.45v5.44c0,.44-.36,.79-.79,.79h-.12c-.43,0-.79-.35-.79-.79v-5.44H2.21c-.44,0-.79-.36-.79-.79v-.12c0-.44,.35-.79,.79-.79H7.65V2.21c0-.43,.36-.79,.79-.79h.12c.43,0,.79,.36,.79,.79V7.66h5.45c.43,0,.79,.35,.79,.79Z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  right: 0;
}
.accordion .accordion-item .accordion-head.active + .accordion-body {
  margin-bottom: 15px;
}
.accordion .accordion-item .accordion-head.active::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.01 17.01'%3E%3Crect fill='%23ffffff' x='7.65' y='1.42' width='1.7' height='14.17' rx='.85' ry='.85' transform='translate(0 17.01) rotate(-90)'/%3E%3C/svg%3E");
}
.accordion .accordion-item .accordion-body {
  max-height: 0;
  overflow: hidden;
  font-size: 0.875rem;
  transition: max-height 0.4s ease-out;
}

@media screen and (max-width: 1280px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 980px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 680px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.15rem;
    line-height: 1.35rem;
  }
}
/*--------------------------------------------------------------
3.0 Header
--------------------------------------------------------------*/
header {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  background: #000000;
  transition: all ease-in-out 0.3s;
}
header .header-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
header .header-content #header-logo {
  display: flex;
  align-items: center;
  width: 20%;
  max-width: 200px;
  height: 100%;
  min-height: 80px;
}
header .header-content #header-logo img {
  display: block;
  width: 100%;
}

body.fixed_head header {
  position: fixed;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  margin-top: 0;
  top: 0;
  right: 0;
  z-index: 10;
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
body.fixed_head header #header-logo img {
  mix-blend-mode: inherit;
}

@media screen and (max-width: 980px) {
  header .header-content #header-logo {
    width: 180px;
  }
}
/*--------------------------------------------------------------
4.0 Main
--------------------------------------------------------------*/
#heading-home {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 80px);
  background: #000000;
  padding-top: 0;
  transition: all ease-in-out 0.3s;
}
#heading-home .heading-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  max-width: 680px;
  height: 100%;
  color: #ffffff;
  margin: 0 auto;
  padding: 80px 40px;
}

#heading-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 40vh;
  background: #000000;
  padding-top: 0;
}
#heading-page .heading-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1460px;
  height: 100%;
  color: #ffffff;
  margin: 0 auto;
  padding: 80px 40px;
}

/*--------------------------------------------------------------
5.0 Footer
--------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 40px 20px 20px;
  background: #ffffff;
}
footer .footer-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-content #footer-logo {
  display: block;
  width: 40%;
  max-width: 150px;
  height: 100%;
  margin: 0 auto 20px;
}
footer .footer-content #footer-logo img {
  display: block;
  width: 100%;
}
footer .footer-baseline {
  padding: 60px 20px 0;
}
footer .footer-baseline .baseline-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
footer .footer-baseline .baseline-content .copyright {
  font-size: 0.875rem;
  color: #000000;
  margin: 0;
}

@media screen and (max-width: 768px) {
  footer .footer-baseline .baseline-content {
    justify-content: center;
  }
  footer .footer-baseline .baseline-content .copyright {
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }
}
/*--------------------------------------------------------------
6.0 Privacy Policy
--------------------------------------------------------------*/
.content-policy .date-policy {
  text-align: center;
  margin: 0 auto 120px;
}
.content-policy ul.cookies-group {
  margin: 40px 0 0;
}
.content-policy ul.cookies-group li.cookies-item {
  list-style: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Crect width='3' height='3' /%3E%3C/svg%3E");
  fill: #000000;
  background-repeat: no-repeat;
  background-position: 0 8px;
  padding-left: 20px;
  margin: 10px 0;
}/*# sourceMappingURL=styles.css.map */