/*=====FONTS==========*/
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/**variables***/
/**MIXINS*/
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/*=========HEADER==========*/
.header {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.menu_langues.navbar-nav .nav-link:hover {
  color: #000000;
  text-decoration: none;
}

.menu_langues.navbar-nav .nav-link {
  color: #000000;
  text-decoration: underline;
}

/* navbar */
.navbar.fixed-top {
  -webkit-box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
  padding-bottom: 0px;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}

.navbar.fixed-top img {
  width: auto;
  max-height: 65px;
}

nav.navbar {
  padding: 0px;
}

.navbar-nav > .menu-item > .nav-link:hover {
  border-bottom: 6px solid #aaa;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.navbar {
  background: #fff;
  padding: 0;
}

.navbar-nav > .menu-item.active > .nav-link,
.navbar-nav > .menu-item.current_page_parent > .nav-link {
  background: rgba(255, 255, 255, 0.3);
  border-bottom-color: #1d72e3;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.navbar-nav .nav-link {
  margin: 0;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  font-family: "Ubuntu", sans-serif;
  color: #505050;
  border-bottom: 6px solid transparent;
  padding: 15px 10px;
  padding-bottom: 4px;
  font-size: 1.2em;
}

/* dropdown */
.dropdown-menu {
  min-width: 15rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.dropdown-menu .nav-link {
  display: block;
  padding: 0px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
}

.dropdown-menu .nav-link:hover,
.dropdown-menu .menu-item.active .nav-link {
  background: #c7c7c7;
  color: #262626;
}

ul.dropdown-menu.depth_0 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

ul.dropdown-menu.depth_0.show {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/*Icon menu toggle*/
/* Icon  */
button.navbar-toggler.menu-button {
  padding: 0.8rem;
  border: none;
}

button.navbar-toggler.menu-button .menu-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

button.navbar-toggler.menu-button .menu-icons span.button-label {
  padding-right: 5px;
  font-size: 0.9em;
  margin-top: 3px;
  font-family: "Ubuntu", sans-serif;
}

button.navbar-toggler.menu-button:focus {
  outline: none;
}

.animated-icon {
  width: 25px;
  height: 15px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.animated-icon span {
  background: #293462;
}

.animated-icon span:nth-child(1) {
  top: 0px;
}

.animated-icon span:nth-child(2) {
  top: 10px;
}

.animated-icon span:nth-child(3) {
  top: 20px;
}

.animated-icon.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon.open span:nth-child(2) {
  opacity: 0;
}

.animated-icon.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*==========GENERAL==========*/
/*CONTAINER*/
html {
  scroll-behavior: smooth;
}

main.main .container, main.main .container-lg, main.main .container-md, main.main .container-sm, main.main .container-xl, header.header .container, header.header .container-lg, header.header .container-md, header.header .container-sm, header.header .container-xl, footer.footer .container, footer.footer .container-lg, footer.footer .container-md, footer.footer .container-sm, footer.footer .container-xl {
  max-width: 1070px;
}

/* general */
.scroll-top {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  bottom: 2em;
  color: #ffffff;
  opacity: 0;
  padding: .5em;
  position: fixed;
  right: 2em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.visible-fixed {
  opacity: 0;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}

.visible-fixed img {
  height: 100%;
}

body {
  background: #fff;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
}

p, span {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.2;
  font-size: 14px;
}

main {
  background: lightblue;
  padding-bottom: 2em;
}

.page-title {
  color: #e8a912;
  font-size: 3.2em;
  line-height: 0.9376;
  margin: 0.5em 0;
}

h1.page-title.thin {
  font: normal 45px/1em 'Ubuntu', helvetica, sans-serif;
  color: #e8a912;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.content {
  background: #ffffff;
  margin: 0;
}

.content .nav-archives a {
  background: grey;
  color: #000000;
  margin: 0 .5em;
  padding: .5em;
}

.content h1 {
  color: #000000;
  font-weight: normal;
  margin: 0;
  padding: .5em;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
}

.content h3 {
  font-size: 1.3em;
  margin-bottom: .5em;
  padding-top: .2em;
  font-family: 'Ubuntu', sans-serif;
}

.content a:hover {
  background: #fff;
}

.content a {
  color: blue;
  padding: .2em;
  font-family: 'Ubuntu', sans-serif;
}

/* archives */
.box-article {
  padding: 1em;
  position: relative;
}

.box-article_title {
  font-size: 1.5rem;
  margin: 0;
}

.box-article:hover {
  background: greylight;
  text-decoration: none;
}

.box-article > a {
  background: #4394ed;
  border: 1px solid #4394ed;
  color: #fff;
  border-radius: 3px;
  font-family: 'Ubuntu', sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 12px;
}

.box-article > a:hover {
  background: #1261b8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #ffffff;
}

.post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-categories li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.post-categories li + li:before {
  content: " - ";
}

.post-categories a[rel$=tag] {
  color: #fff;
  display: inline-block;
  font-size: .8rem;
  font-weight: bold;
  margin: .5em 0;
  position: relative;
  text-transform: uppercase;
}

.post-categories a[rel$=tag]:hover {
  color: grey;
}

article .post-categories {
  text-align: center;
}

.article-intro {
  font-style: italic;
  font-size: 1.4rem;
  margin: 1em 0;
}

main.main {
  background: #0054AE url(/wp-content/uploads/2020/04/background.jpg) top center no-repeat;
  /* background-size: cover; */
  padding-bottom: 3em;
  padding-top: 8em;
}

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

img {
  vertical-align: middle;
}

/*=======SLIDER====== */
div#carouselControls {
  padding-top: 50px;
  padding-left: 0px;
  min-height: 175px;
}

div#carouselControls .carousel {
  z-index: 0;
}

div#carouselControls .carousel-inner .carousel-item {
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 2s ease;
  transition: opacity 0.5s ease-out, -webkit-transform 2s ease;
  transition: transform 2s ease, opacity 0.5s ease-out;
  transition: transform 2s ease, opacity 0.5s ease-out, -webkit-transform 2s ease;
  position: relative;
}

div#carouselControls .carousel-inner .carousel-item .carousel-caption {
  position: inherit;
  text-align: left;
  padding-left: 15px;
  min-height: 300px;
  padding-top: 2.5em;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0.3;
}

div#carouselControls .carousel-inner .carousel-item .carousel-caption h1 {
  color: #e8a912;
  font-size: 50px;
  font-weight: normal;
  font-family: "Ubuntu", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

div#carouselControls .carousel-inner .carousel-item .carousel-caption.anime {
  opacity: 1;
  left: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-animation-name: fade-in-right;
          animation-name: fade-in-right;
  margin-right: -30%;
}

/*======HOMEPAGE======*/
section.categories {
  padding-bottom: 1.7em;
}

.inner-category {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
  background-color: #fff;
}

.col-md-2.main-wrapper {
  padding-left: 15px;
  padding-right: 15px;
  min-width: 20%;
}

.col-md-2.main-wrapper .box-content {
  background: #ffffff;
  border-bottom: solid 8px #0053ae;
  margin-bottom: 30px;
  min-height: 275px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.col-md-2.main-wrapper .box-content:hover {
  -webkit-transition: all .35s ease-out;
  transition: all .35s ease-out;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.col-md-2.main-wrapper .box-content a {
  display: block;
  -webkit-transition: color .2s, -webkit-text-decoration .2s;
  transition: color .2s, -webkit-text-decoration .2s;
  transition: color .2s, text-decoration .2s;
  transition: color .2s, text-decoration .2s, -webkit-text-decoration .2s;
}

.col-md-2.main-wrapper .box-content a:before {
  background: rgba(0, 0, 0, 0);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.col-md-2.main-wrapper .box-content a .box-thumb {
  overflow: hidden;
  position: absolute;
  right: 0;
}

.col-md-2.main-wrapper .box-content a .box-thumb img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 100%;
}

.col-md-2.main-wrapper .box-content a .box-title {
  background: rgba(255, 255, 255, 0.9);
  background: #ffffff;
  bottom: 0;
  color: #3160ae;
  left: 0;
  padding: 5px 10px 0;
  position: absolute;
  right: 0;
}

.col-md-2.main-wrapper .box-content a .box-title h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.4em;
  margin: 0 0 5px;
}

/*PAGES*/
.bloc-content {
  background: #fff;
  padding: 2em;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.bloc-style3 {
  border: solid 1px #DADADA;
  -webkit-box-shadow: 0 10px 6px -6px #bbb;
          box-shadow: 0 10px 6px -6px #bbb;
  margin: 1em 0;
  padding: .5em;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
}

/*PAGE COMPANY*/
.wp-block-group.bloc-content {
  background: #fff;
  padding: .5em 2em;
}

.wp-block-group.bloc-content h1 {
  color: #e8a912;
  font-size: 3.2em;
  line-height: 0.9376;
  margin: .4688em 0 0 0;
}

.wp-block-group.bloc-content p {
  font-size: 1em;
  line-height: 1.2;
  margin: 1.5em 0;
}

/*PAGE PRODUCTS*/
.intro-page {
  margin-bottom: 6em;
  color: #fff;
}

/*PAGE CATEGORY*/
.tax-description {
  color: #fff;
  margin-bottom: 6em;
  margin-top: 1em;
}

.tax-description p {
  line-height: 1.2;
  margin: 1.5em 0;
}

.box-content .box-title h2.product-title {
  font-size: 1.1em;
}

.box-content .box-title p.box-product-sub-title {
  font-size: .9em;
  margin: 0 0 .5em;
}

/*PAGE SINGLE PRODUCT*/
ul.breadcrumb {
  background: transparent;
  color: #fff;
  position: relative;
  padding-left: 0px;
}

ul.breadcrumb a {
  color: #fff;
}

ul.breadcrumb span {
  padding: 0 3px;
}

ul.breadcrumb::after {
  content: '';
  display: block;
  margin-top: 15px;
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0px;
}

.bloc-content.single {
  margin-bottom: 15px;
  padding: 0px;
}

.bloc-content.single .col-md-5 {
  border-right: solid 1px #eee;
}

.bloc-content.single .col-md-5 div {
  padding: 15px;
}

.bloc-content.single .col-md-5 div img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bloc-content.single .col-md-7 div {
  padding: 15px;
  font-family: "Ubuntu", sans-serif;
}

.bloc-content.single .col-md-7 div h1.page-title.product {
  margin-bottom: 10px;
}

.bloc-content.single .col-md-7 div p.intro {
  margin-bottom: 0px;
  font-size: 1.1em;
}

.bloc-content.single .col-md-7 div p {
  color: #505050;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  border-radius: 0;
  margin-bottom: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-group .panel-default {
  border-color: #ddd;
}

.panel-group .panel-default .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
}

.panel-group .panel-default .panel-heading .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-group .panel-default .panel-heading .panel-title a {
  color: #505050;
  display: block;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
}

.panel-group .panel-default .panel-heading .panel-title a.collapsed:after {
  content: "\f132";
  font: normal 23px/1 'dashicons';
  float: right;
  width: 17px;
  height: 17px;
  color: #B7B7B7;
}

.panel-group .panel-default .panel-heading .panel-title a:after {
  font: normal 23px/1 'dashicons';
  content: "\f158";
  float: right;
  width: 17px;
  height: 17px;
  color: #B7B7B7;
}

.panel-group .panel-default .panel-body {
  padding: 15px;
}

.panel-group .panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/*PAGE CONTACT*/
.wp-block-group.carte {
  text-align: center;
}

.wp-block-group.carte iframe {
  padding: 10px;
}

/*PAGE USER*/
input.btn.btn-default {
  background: #4394ed;
  border: 1px solid #4394ed;
  color: #fff;
  border-radius: 3px;
  font-family: 'Ubuntu', sans-serif;
  float: right;
  padding: 8px 22px;
}

input.btn.btn-default:hover {
  background: #1261b8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #ffffff;
}

/*FOOTER*/
.footer {
  color: #606060;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: .75em;
  padding: 30px 0;
}

.footer h4.widget-title {
  margin-bottom: 1.5em;
  text-transform: uppercase;
  color: #606060;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: 1em;
}

.footer ul#menu-categories {
  list-style-type: none;
  font-weight: 700;
  padding-left: 0px;
}

.footer ul#menu-categories a {
  color: #606060;
}

.footer ul#menu-categories ul.sub-menu {
  list-style-type: none;
  padding-left: 15px;
}

.footer ul#menu-categories ul.sub-menu a {
  font-weight: normal;
}

.footer ul#menu-company, .footer ul#menu-contact {
  list-style-type: none;
  font-weight: normal;
  padding-left: 0px;
}

.footer ul#menu-company a, .footer ul#menu-contact a {
  color: #606060;
}

.footer .col-md-2.col-sm-5 {
  min-width: 22%;
}

.footer .col-md-2.col-sm-5 .footer-title--strong {
  border-bottom: solid 6px #dadada;
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer .col-md-2.col-sm-5 .post-box {
  font-family: Helvetica, Arial, Verdana, sans-serif;
}

.footer .col-md-2.col-sm-5 .post-box h2 {
  font-size: inherit;
  font-weight: bold;
  margin: 1.5em 0 0;
  font-size: 1.2em;
}

.footer .col-md-2.col-sm-5 .post-box p {
  font-family: inherit;
  font-size: 1.1em;
  line-height: 1.3;
}

.footer .col-md-2.col-sm-5 a.read-more {
  color: #505050;
  font-size: 1em;
  font-weight: bold;
}

/*MEDIA QUERIES*/
@media (max-width: 768px) {
  .navbar-nav > .menu-item.active > .nav-link,
  .navbar-nav > .menu-item.current_page_parent > .nav-link {
    background: transparent;
    border-bottom-color: transparent;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show {
    z-index: 999;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters {
    background: #505050;
    padding-left: 15px;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters * {
    background: #505050;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters li.menu-item .dropdown-menu {
    display: block;
    border: none;
    padding-left: 15px;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters li.menu-item.active > a.nav-link {
    color: #E8A912;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters li.menu-item a.nav-link {
    color: #fff;
  }
  nav.navbar.navbar-expand-lg .container .navbar-collapse.justify-content-end.collapse.show ul.navbar-nav.d-flex.flex-md-row.flex-column.justify-content-end.no-gutters li.menu-item a.nav-link:hover {
    border-bottom-color: transparent;
  }
  iframe {
    margin-bottom: 20px;
    width: auto;
  }
  h1.page-title.product {
    font-size: 2em;
  }
}
/*# sourceMappingURL=styles.css.map */