@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 Siriusdrone.fr
---------------------------------------*/
.bgcolor-darkblue {
  background: #F3EFE7;
  color: #212121;
}
.bgcolor-darkblue a {
  color: #FE7D56;
}

.bgcolor-bluemoon {
  background: #f6f5f1;
  color: #212121;
}
.bgcolor-bluemoon a {
  color: #F3EFE7;
}

/*--------------------------------------------------------------
>>> 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.3rem;
  font-weight: 400;
  color: #212121;
  background: #F3EFE7;
  overflow-x: hidden;
}

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: #212121;
  background: #f6f5f1;
}

::selection {
  color: #212121;
  background: #f6f5f1;
}

@media screen and (max-width: 680px) {
  body {
    font-size: 14px;
  }
}
/*---------------------------------------
1.2 Column
---------------------------------------*/
.row {
  width: 100%;
  max-width: 1640px;
  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%;
    padding: 15px;
  }
}
/*---------------------------------------
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: 80px 0;
  margin: 0 auto;
}
.container .content-block {
  max-width: 1640px;
  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: 80px 40px;
}
.container-fluid .inner-content {
  padding: 80px 40px;
}
.container-fluid .content-block .inner-content {
  max-width: 600px;
  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: 1640px;
  padding: 80px 20px;
}

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

@media screen and (max-width: 768px) {
  .container {
    padding: 30px 0;
  }
  .content-block {
    padding: 15px;
  }
  .container .content-block {
    padding: 15px;
  }
  .inner-content {
    padding: 80px 15px;
  }
  .container-fluid .content-block {
    padding: 20% 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%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

figure.fig-background {
  display: block;
  max-width: 100%;
  min-height: 60vh;
  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.4rem;
  margin: 0 0 20px;
}
p:last-child {
  margin: 0;
}

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

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;
  }
}
/*---------------------------------------
Fonts du Thème Siriusdrone.fr
---------------------------------------*/
body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.3rem;
}

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

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

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

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

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

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

footer .footer-content,
footer .footer-baseline .baseline-content {
  font-family: "Source Sans Pro", 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.4rem;
    line-height: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 1.15rem;
    line-height: 1.55rem;
  }
}
/*---------------------------------------
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.11 Badge
---------------------------------------*/
.badge {
  display: inline-block;
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0 0 10px;
  border-radius: 10px;
  text-transform: none;
}

.badge-light {
  background: #f6f5f1;
  color: #212121;
}

.badge-dark {
  background: #212121;
  color: #F3EFE7;
}

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

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

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

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

@media screen and (max-width: 680px) {
  .badge {
    font-size: 14px;
  }
}
/*---------------------------------------
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: 50px;
  width: auto;
  padding: 10px 25px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1rem;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  border: 1px solid #212121;
  color: #F3EFE7;
  background: #212121;
}
.btn-primary:hover {
  border: 1px solid #212121;
  color: #F3EFE7;
  background: #212121;
}
.btn-primary.active {
  background: #212121;
  color: #F3EFE7;
  border: 1px solid #212121;
}

.btn-secondary {
  border: 1px solid #f6f5f1;
  color: #212121;
  background: #f6f5f1;
}
.btn-secondary:hover {
  border: 1px solid #F3EFE7;
  color: #212121;
  background: #F3EFE7;
}
.btn-secondary.active {
  border: 1px solid #F3EFE7;
  color: #212121;
  background: #F3EFE7;
}

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

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

@media screen and (max-width: 540px) {
  .btn {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 15px 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: #212121;
  font-size: 0.85rem;
}

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

/*---------------------------------------
> 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: 1.25rem;
  font-weight: 700;
  letter-spacing: 0px;
  color: #212121;
  mix-blend-mode: inherit;
  text-transform: none;
  text-decoration: none;
  font-family: sans-serif;
  transition: all ease-in-out 0.3s;
}
#main-menu li.menu-item a:hover {
  color: #FE7D56;
  mix-blend-mode: inherit;
}

body.fixed_head #main-menu li.menu-item a {
  font-size: 1.25rem;
  color: #212121;
  mix-blend-mode: inherit;
}
body.fixed_head #main-menu li.menu-item a:hover {
  color: #FE7D56;
  mix-blend-mode: inherit;
}
body.fixed_head #menu-mobile {
  top: 25px;
}
body.fixed_head #menu-mobile .menu-icon-bar {
  display: block;
  margin: 6px auto;
  height: 2px;
  width: 20px;
  background: #212121;
  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: 45px;
  right: 25px;
  transition: top 0.4s ease-in-out;
}
#menu-mobile .menu-icon-bar {
  display: block;
  margin: 6px auto;
  height: 2px;
  width: 20px;
  background: #212121;
  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: #F3EFE7;
    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: #f6f5f1;
    color: #212121;
  }
  #main-menu li.menu-item a {
    display: block;
    color: #212121;
    font-size: 1rem;
    padding: 20px 40px;
  }
  #main-menu li.menu-item a:hover {
    color: #212121;
    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: #212121;
    border: 1px solid #F3EFE7;
  }
  body.menu_open #menu-mobile .menu-icon-bar {
    background: #F3EFE7;
    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: #212121;
  }
  body.menu_open #menu-mobile:hover .menu-icon-bar {
    background: #212121;
  }
  body.fixed_head.menu_open #main-menu li.menu-item a {
    font-size: 1rem;
    color: #212121;
    mix-blend-mode: inherit;
  }
  body.fixed_head.menu_open #main-menu li.menu-item a:hover {
    color: #212121;
    mix-blend-mode: inherit;
  }
  body.fixed_head.menu_open #menu-mobile {
    z-index: 9999;
    background: #212121;
    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: #212121;
  }
  body.fixed_head.menu_open #menu-mobile:hover .menu-icon-bar {
    background: #212121;
  }
}
@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: #F3EFE7;
  mix-blend-mode: inherit;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
}
#footer-nav li.menu-item a:hover {
  color: #f6f5f1;
  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: #F3EFE7;
  mix-blend-mode: inherit;
  text-decoration: none;
  font-family: sans-serif;
}
#baseline-nav li.menu-item a:hover {
  color: #f6f5f1;
}

@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.13 Accordion
---------------------------------------*/
.accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
}
.accordion .accordion-item .accordion-head {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #f6f5f1;
  background: #f6f5f1;
  position: relative;
  transition: ease-in-out 0.3s;
}
.accordion .accordion-item .accordion-head .accordion-title {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 800;
  margin: 0 auto 0 0;
}
.accordion .accordion-item .accordion-head:hover {
  color: #F3EFE7;
  background: #212121;
  border: 1px solid #212121;
}
.accordion .accordion-item .accordion-head.active {
  color: #F3EFE7;
  background: #212121;
  border: 1px solid #212121;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 15px;
}
.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 15 8.58'%3E%3Cpath fill='%23FE7D56' d='m7.5,5.99L13.17.32c.42-.42,1.09-.42,1.51,0,0,0,0,0,0,0,.42.42.42,1.1,0,1.52l-6.43,6.43c-.41.4-1.06.42-1.48.03L.31,1.84c-.42-.42-.41-1.1,0-1.52.42-.41,1.09-.41,1.51,0l5.68,5.67Z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  right: 20px;
  top: 25px;
}
.accordion .accordion-item .accordion-head:hover::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 15 8.58'%3E%3Cpath fill='%23F3EFE7' d='m7.5,5.99L13.17.32c.42-.42,1.09-.42,1.51,0,0,0,0,0,0,0,.42.42.42,1.1,0,1.52l-6.43,6.43c-.41.4-1.06.42-1.48.03L.31,1.84c-.42-.42-.41-1.1,0-1.52.42-.41,1.09-.41,1.51,0l5.68,5.67Z'/%3E%3C/svg%3E");
}
.accordion .accordion-item .accordion-head.active + .accordion-body {
  margin-top: -15px;
  margin-bottom: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #f6f5f1;
}
.accordion .accordion-item .accordion-head.active + .accordion-body p {
  padding: 30px 20px;
}
.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 15 8.58'%3E%3Cpath fill='%23F3EFE7' d='m7.5,2.59l5.67,5.68c.42.42,1.09.42,1.51,0,0,0,0,0,0,0,.42-.42.42-1.1,0-1.52L8.26.31c-.41-.4-1.06-.42-1.48-.03L.31,6.74c-.4.44-.37,1.12.07,1.51.41.37,1.04.37,1.45,0L7.5,2.59Z'/%3E%3C/svg%3E");
}
.accordion .accordion-item .accordion-body {
  margin-top: -15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  background: #f6f5f1;
  transition: max-height 0.4s ease-out;
}
.accordion .accordion-item .accordion-body p {
  padding: 30px 20px;
}

@media screen and (max-width: 1280px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 980px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 680px) {
  .accordion .accordion-item .accordion-head .accordion-title {
    font-size: 1.15rem;
    line-height: 1.35rem;
  }
  .accordion .accordion-item .accordion-head::after {
    background-size: 60% auto;
    top: 24px;
    right: 10px;
  }
}
/*--------------------------------------------------------------
3.0 Header
--------------------------------------------------------------*/
header {
  width: 100%;
  height: 120px;
  padding: 0 60px;
  background: transparent;
  transition: all ease-in-out 0.3s;
}
header .header-content {
  width: 100%;
  max-width: 100%;
  height: 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: 60px;
  min-height: 60px;
}
header .header-content #header-logo img {
  display: block;
  width: 100%;
}

body.fixed_head header {
  position: fixed;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  margin-top: 0;
  top: 0;
  right: 0;
  z-index: 10;
  background: #f6f5f1;
  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: 1640px) {
  header {
    padding: 0 40px;
  }
}
@media screen and (max-width: 980px) {
  header .header-content #header-logo {
    width: 180px;
  }
}
/*--------------------------------------------------------------
4.0 Main
--------------------------------------------------------------*/
#heading-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 30vh;
  background: #e6e4dc;
  padding-top: 0;
}
#heading-page .heading-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1640px;
  height: 100%;
  color: #212121;
  margin: 0 auto;
  padding: 80px 40px;
}

/*---------------------------------------
5.0 Page 404
---------------------------------------*/
#page_404 {
  height: 80vh;
}
#page_404 #content-404 {
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
  padding: 80px 30px;
  height: 100%;
}
#page_404 #content-404 h1 {
  margin-bottom: 40px;
}
#page_404 #content-404 h2 {
  color: #212121;
  font-size: 1.2rem;
  line-height: 1.3rem;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  #page_404 #content-404 {
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
6.0 Footer
--------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 40px 20px 20px;
  background: #f6f5f1;
}
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: #212121;
  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;
  }
}
/*--------------------------------------------------------------
6.0 Privacy Policy
--------------------------------------------------------------*/
.content-policy .date-policy {
  text-align: center;
  margin: 0 auto 60px;
}
.content-policy ul.cookies-group, .content-policy ul.list-group {
  margin: 25px 0;
}
.content-policy ul.cookies-group li.cookies-item, .content-policy ul.cookies-group li.list-item, .content-policy ul.list-group li.cookies-item, .content-policy ul.list-group li.list-item {
  list-style: none;
  background: 0 8px no-repeat;
  background-image: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='6' height='6' fill='rgb(0,0,0)'%3E%3Cpath d='M3.000,-0.000 C4.657,-0.000 6.000,1.343 6.000,3.000 C6.000,4.657 4.657,6.000 3.000,6.000 C1.343,6.000 -0.000,4.657 -0.000,3.000 C-0.000,1.343 1.343,-0.000 3.000,-0.000 Z'/%3E%3C/svg%3E");
  padding-left: 15px;
  margin: 0 0 10px;
}/*# sourceMappingURL=styles.css.map */