/* base.css --- 2024-09-08 11:56:32 */
html,
body {
    height: 100%;
    background: #282726;
    font-family: 'Work Sans', sans-serif;
    font-size: 100%;

}

#content {
    overflow-x: hidden;
}

.work-sans {
    font-family: 'Work Sans', sans-serif;
}


.ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

@media (min-width: 992px) and (max-width: 1199px) {

    html,
    body {
        font-size: 96%;
    }
}



@media (min-width: 768px) and (max-width: 991px) {

    html,
    body {
        font-size: 92%;
    }
}

@media (min-width: 500px) and (max-width: 767px) {

    html,
    body {
        font-size: 90%;
    }
}

@media (max-width: 499px) {

    html,
    body {
        font-size: 90%;
    }
}

* {
    outline: none !important;
}



.form-control {
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #ccc !important
}

.clearfix {
    clear: both;
    width: 100%;
    height: 1px;
}

.pull-left {
    margin: 0 5px 0 0;
}

.btn {
    box-shadow: none !important;
    outline: none;
    cursor: pointer
}

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

.pointer {
    cursor: pointer
}



.small {
    font-size: 90%;
}

.width-100pc {
    width: 100%;
}

.upper {
    text-transform: uppercase;
}

.relative {
    position: relative !important;
}

.rajdhani {
    font-family: Rajdhani, sans-serif;
}

.light {
    font-weight: lighter;
}


.container-fluid {
    padding: 0;
    max-width: 96%;
    width: 96%;
    margin: 0 auto;
}



.container {
    padding: 0 !important;
    max-width: 1200px !important;
    width: 96% !important;
    margin: 0 auto !important;
}



#above-all {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(90, 90, 90, 0.2);
    z-index: 999;
    display: none;
}

/* menu.css --- 2024-09-08 12:02:32 */
@media screen and (min-width: 992px) {
    #menu-wrapper {
        /* background-color: #8bbdc4; */
        background-color: var(--blue);
    }

    #menu-wrapper>div {
        max-width: 1200px;
        margin: 0 auto;
    }

    #menu-burger {
        margin-left: 15px;
        font-size: 2rem;
        color: white;
        display: none;
    }

    header #menu a {
        display: block;
        text-decoration: none;
    }

    header #menu {
        display: block;
        position: relative;
        padding: 0 0;
        z-index: 1002;
        font-family: 'Ubuntu', sans-serif;
    }

    header #menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    header #menu ul.level0 {
        display: flex;
        align-items: stretch;
        justify-content: center;
        text-align: center;
    }

    header #menu li.level0 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        position: relative;
    }

    header #menu li.level0:last-child {
        border-right: none;
    }

    header #menu li.level0>a {
        margin: 0;
        height: 50px;
        padding: 20px;
        display: block;
        font-size: 0.85rem;
        color: white;
        text-transform: uppercase;
        display: flex;
        /* background-color: #9abec4; */
        align-items: center;
        transition: all 300ms;
        line-height: 1.1;
        font-size: 0.95rem;
        border-right: 1px solid rgba(220, 220, 220, 0.8);
    }

    header #menu ul.level1 {
        display: block;
        position: absolute;
        max-height: 0;
        left: 0;
        top: 100% !important;
        top: calc(100% - 2px);
        min-width: 230px;
        background-color: white;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        overflow: hidden;
        transition: all 700ms;
        border-top: none;
    }

    header #menu li:hover>ul.level1 {
        transition: all 700ms;
        max-height: 400px;
        border: 1px solid #eee;
        border-top: none;
    }

    header #menu li.level1>a {
        display: block;
        padding: 10px 25px;
        border-bottom: 1px solid #eee;
        color: #111111;
        font-size: 100%;
    }

    header #menu li.level1:last-child>a {
        border-bottom: none;
    }

    header #menu li:hover {
        background-color: var(--blue);
    }

    header #menu li:hover>a {
        color: white;
    }

    header #menu li.level0.invert {
        background-color: var(--green);
        background-color: white;
        border-top: 1px solid var(--blue);
        border-bottom: 1px solid var(--blue);
    }

    header #menu li.level0.invert a {
        color: var(--blue);
    }

    header #menu li.level0.invert:hover {
        background-color: var(--blue);
    }

    header #menu li.level0.invert:hover a {
        color: white;
    }
}

@media screen and (max-width: 991px) {
    #menu-wrapper {
        background-color: transparent;
    }

    #menu-burger {
        display: block;
        position: fixed;
        top: 20px;
        right: 2%;
        z-index: 1010;
        cursor: pointer;
    }


    #menu-burger img {
        display: none;
    }

    #menu-burger:after,
    #menu-burger:before {
        position: absolute;
        top: 0px;
        right: 0;
        font-family: "FontAwesome";
        font-size: 2.5rem;
        background: none;
        color: #eee;
        padding: 5px 8px;
        line-height: 1;
        transition: all 1000ms;
    }

    #menu-burger:before {
        content: "\f0c9";
    }

    #menu-burger:after {
        content: "\f00d";
        opacity: 0;
    }

    .menu-on #menu-burger:before {
        opacity: 0;
    }

    .menu-on #menu-burger:after {
        opacity: 1;
    }

    #menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1002;
        height: 100vh;
        width: 400px;
        max-width: 0;
        overflow-y: auto;
        transition: all 200ms;
        background: #111111;
        border-left: 1px solid white;


    }

    #menu ul {




        margin: 0 0 0 15px;
        padding: 0;
        list-style: none;
    }

    #menu ul.level0 {
        width: 400px;
        margin: 0;
        padding: 180px 50px 50px 50px;

        background-image: url(/img/lorain-boutik-menu.png);
        background-position: center 25px;
        background-repeat: no-repeat;

        list-style: none;
        font-size: 1.2rem;
    }

    #menu li.level0 {
        margin: 0 0 15px;
    }

    #menu li.level1 {
        padding-left: 15px;
        position: relative;
    }

    #menu li.level1:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: "\f054";
        position: absolute;
        top: 1px;
        left: 0;
        color: white;
        font-size: 90%
    }

    #menu ul.level1 {
        padding-top: 5px;
    }

    #menu li.level1 {
        padding-bottom: 3px;
    }

    #menu a {
        color: white !important;
    }

    #menu li.level0>a {
        font-weight: 900;
    }

    body.menu-on #above-all {
        display: block;
    }

    body.menu-on #menu {
        max-width: 90%;
        transition: all 1000ms;
    }

    body.menu-on {
        overflow: hidden;
        height: 100%;
    }
}

@media screen and (max-width: 576px) {}

/* homepage-univers.css --- 2024-09-08 12:07:35 */
.homepage-univers-title,
.homepage-univers-group {
  background-color: #333;
}



.homepage-univers-title h2 span {
  color: white;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.homepage-univers-title h2 span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 5px;
  content: ' ';
  background-color: var(--orange) !important;

  transform: translateX(-50%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.homepage-univers-group {
  padding: 70px 0 90px;
  margin-top: -10px;
}

.homepage-univers-group .articles-group-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
  border: 0px solid pink;
}

.homepage-univers-group article {
  flex: 0 0 20%;
  margin: 0 0px;
  transition: transform 1000ms;
}

.homepage-univers-group article .inner {
  display: flex;
  flex-direction: column;
  align-items: center;

}



.homepage-univers-group article .contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.homepage-univers-group article .attachment {
  margin: 0 auto;
  border-bottom-right-radius: 50px;
  transition: all 700ms;
  width: 80%;
  padding-top: 80%;
  background-size: cover;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--orange);


  /* Maintient un ratio 1:1 pour le cercle */
  position: relative;
}

.homepage-univers-group article .attachment img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 2px);
  height: calc(100% - 2px) !important;
  object-fit: cover;
  border-radius: 50%;
  /* Remplace également le clip-path par border-radius */
  filter: saturate(1);
}

.homepage-univers-group article .attachment:hover {
  transform: scale(1.1);
  z-index: 10;

}

.homepage-univers-group article:hover .attachment img {
  filter: grayscale(0);
  opacity: 1;
}

.homepage-univers-group article:hover .attachment img {
  filter: grayscale(0);

  opacity: 1;
}





.homepage-univers-group article .wordings {

  margin: 0 auto;
  flex: 0 0 90%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  text-transform: uppercase;

}


.homepage-univers-group article h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;

}

.homepage-univers-group .article-text {
  font-size: 0.9rem;
}


.homepage-univers-group article:nth-child(1) {
  padding-top: 0
}







.homepage-univers-group article:nth-child(2) {
  padding-top: 00px
}

.homepage-univers-group article:nth-child(3) {
  padding-top: 0px
}


.homepage-univers-group article.focus {
  transform: scale(1.5);

}

/* colors.css --- 2024-09-08 12:43:27 */
:root {
  --gray: rgba(150, 150, 150, 1);
  --gray-9: rgba(192, 189, 196, 0.9);
  --gray-8: rgba(192, 189, 196, 0.8);
  --gray-7: rgba(192, 189, 196, 0.7);
  --gray-6: rgba(192, 189, 196, 0.6);
  --gray-5: rgba(192, 189, 196, 0.5);
  --gray-4: rgba(192, 189, 196, 0.4);
  --gray-3: rgba(192, 189, 196, 0.3);
  --gray-2: rgba(192, 189, 196, 0.2);
  --gray-1: rgba(192, 189, 196, 0.1);
  --white: #fff;
  --black: #000;
  --orange: #f07d00;
  --orange-hover: rgb(185, 90, 11);


}

a,
.text-red {
  color: var(--orange);
}

a:hover,
.text-red:hover {
  color: var(--orange-hover);
}


.text-white {
  color: var(--white) !important;
}

.bg-red {
  background-color: var(--orange) !important;
  color: white !important;
}



.btn-red {
  background-color: var(--orange);
  color: white;
}


.btn-red-outline {
  border-color: var(--orange);
  color: var(--orange) !important;
}

.btn-red-outline-2 {
  border: 2px solid var(--orange);
  color: var(--orange) !important;
  font-weight: bold;
}



.btn-red-outline:hover,
.btn-red-outline-2:hover {
  /*background-color: rgba(255, 255, 255, 0.9);*/

}



.btn-red:hover {

  color: var(--orange-hover);
  background-color: white;
  border-color: var(--orange-hover);
}










.dark-gray-bg {
  background-color: #8bbdc4 !important;
}

.text-white,
.text-white * {
  color: white !important;
}

.text-green,
.text-green * {
  color: var(--green) !important;
}

.bg-gray {
  background-color: #8bbdc4;
}

.btn-warning {
  color: #000;
  /* couleur du texte */
  background-color: var(--orange);
  /* couleur de fond */
  border-color: var(--orange);
  /* couleur de bordure */
}

.btn-warning:hover {
  color: #000;
  /* couleur du texte au survol */
  background-color: #e69500;
  /* remplace var(--orange) par une couleur plus foncée */
  border-color: #e69500;
  /* remplace var(--orange) par une couleur plus foncée */
}

.btn-warning:focus,
.btn-warning.focus {
  color: #000;
  background-color: #cc8400;
  /* encore plus foncée */
  border-color: #cc8400;
  /* encore plus foncée */
  box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.5);
  /* couleur de l'ombre focus */
}

.btn-warning:disabled {
  color: #000;
  background-color: var(--orange);
  border-color: var(--orange);
}

/* article-full-width.css --- 2024-09-04 19:09:36 */
article-full-width {}

article-full-width .container {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

/* article-default.css --- 2024-09-08 11:21:37 */
article.article-default {}

article.article-default h3 {
  font-size: 1.2rem;
  padding-left: 10px;
  border-left: 10px solid var(--orange);
}

article.article-default h3:before {
  font-size: 1.2rem;
}

body.infos article.article-default {
  margin-bottom: 50px;
}

body.infos article.article-default .article-text {
  font-size: 0.9rem;
}

/* modals.css --- 2024-09-04 19:09:36 */
.modal-content {
  background-color: #111;
  color: white;
  border-radius: 0.5rem;
  border: 1px solid #999;
}

.modal-header {
  border-bottom: 1px solid #333;
}

.modal-title {
  color: white;
}

.modal-content .form-label {
  font-size: 0.775rem;

}

.modal-header .btn-close {
  filter: invert(1);
}

/* breadcrumbs.css --- 2024-09-04 19:09:36 */
.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* footer.css --- 2024-09-08 10:56:00 */
footer {
  color: white;
  padding: 50px 0;
  background-color: #111;
  font-size: 0.8rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: white !important;
  text-decoration: underline;
}


footer .reseaux {
  color: white;
  text-align: right;
}

footer .reseaux img {
  margin-left: 10px;
  filter: invert(1);
  max-width: 48px !important;
}


#footer-bloc-left-inner {
  display: flex;
  flex-direction: row;
  justify-items: flex-start;

}

#footer-bloc-left-inner .logo {
  flex: 0 0 80px;
  height: 80px !important;
}

#menu-footer {
  min-height: 100px;
  flex: 1;
  padding: 0 15px;

}


#menu-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu-footer li {
  padding: 0;
  margin: 0;

}




#footer-bloc-center {}

#footer-bloc-center h3 {
  color: var(--orange);
  font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
  #footer-bloc-left-inner {
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
    align-items: center;

  }

  #menu-footer ul {
    padding-top: 15px;
  }

  #menu-footer li {
    text-align: center;
  }

}

/* homepage.css --- 2024-09-07 10:34:43 */
body.homepage {}

body.homepage h2.article-title {
  text-align: center;
  font-size: 1.5rem
}

body.homepage h2.article-title span {
  color: white;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

body.homepage h2.article-title span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 5px;
  content: ' ';
  background-color: var(--orange);

  transform: translateX(-50%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

body.homepage .vehicles_list-group {
  padding-top: 60px;
}

/* articles-group-column.css --- 2024-09-08 11:01:21 */
.articles-group.column-group {}

.articles-group.column-group .articles-group-wrapper {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto
}

.articles-group.column-group .articles-group-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .articles-group.column-group .articles-group-inner {
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* decoration.css --- 2024-09-04 19:09:36 */
html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

a {
  text-decoration: none;
}



a.arrow {
  position: relative;
  padding-left: 20px;
  text-decoration: none !important;
}

a.arrow::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: -5px;
  transition: all 200ms;
}

a.arrow:hover::before {
  left: 7px;
}

a.carret {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  text-decoration: none;
}

a.carret::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "\f105";

  font-family: 'Font Awesome 6 Free';

  font-weight: 900;

  margin-right: 5px;

}


a.carret:hover::before {
  left: 7px;
}

/* homepage-about-us.css --- 2024-09-08 10:27:03 */
article.homepage-about-us {
  background-color: #fafafa;
  padding: 60px 0px;

}

article.homepage-about-us .article-inner {
  width: 96%;
  margin: 0 auto;
}


article.homepage-about-us h2.article-title {
  margin-bottom: 35px;
}

article.homepage-about-us h2.article-title span {
  color: #111 !important;
}


article.homepage-about-us h2.article-title span::after {
  background-color: var(--orange);
}

article.homepage-about-us .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}



article.homepage-about-us .article-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}

article.homepage-about-us .attachments {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 0 0 40%;
  padding-right: 50px;

}

article.homepage-about-us .att {
  height: 100%;

}

article.homepage-about-us .att img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}




article.homepage-about-us .wordings {
  flex: 1;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.5;

}

article.homepage-about-us .article-text {
  max-width: 800px;
}


@media screen and (max-width: 1200px) {
  article.homepage-about-us .wordings {
    font-size: 1rem;

  }
}

@media screen and (max-width: 991px) {
  article.homepage-about-us .attachments {
    padding-right: 20px;
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 767px) {
  article.homepage-about-us .attachments {

    flex: 0 0 100%;
    padding-right: 0px;
    margin-bottom: 25px;

  }

  article.homepage-about-us .wordings {
    text-align: justify;

  }
}

/* infos.css --- 2024-09-08 11:27:28 */
body.infos header {
  border-bottom: 1px solid #333;
}

#page-cms {
  color: white;
}

body.infos .page-title {
  padding: 25px;

}

body.infos .page-title h1,
body.infos .page-title .h1 {

  font-size: 2rem;
  text-align: center;
}

body.infos .page-title span {}

body.infos .page-title span::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 3px;
  background-color: var(--orange);
  margin-top: 5px;
  /* Optionnel, pour espacer légèrement du texte */
}

body.infos #infos-main {
  min-height: 60vh;
}

body.infos #infos-main a:hover {
  text-decoration: underline;
}

/* prehome.css --- 2024-09-04 19:09:36 */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;

}

body.no-scroll {
  overflow-y: hidden;

}

#pre-homepage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  z-index: 10000;
}

#pre-homepage .top-section,
#pre-homepage .bottom-section {
  background-color: black;
  transition: transform 1s ease-in-out;
  text-align: center;
  height: 50vh;
}



#pre-homepage .top-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #cf1519;
}

#pre-homepage .bottom-section {

  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 25px;
  border-top: 1px solid #cf1519;
}



#pre-homepage.ready .top-section {
  transform: translateY(-100%);
}

#pre-homepage.ready .bottom-section {
  transform: translateY(100%);
}

#pre-homepage .logo {
  max-width: 90%;
  width: 600px;
}

#pre-homepage .baseline {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  /* Adjust based on your preference */
}

#pre-homepage.baseline::after {
  content: '';
  display: none;
  width: 120px;
  height: 3px;
  background-color: #cf1519;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

#pre-homepage .scroll-btn {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  animation: blinkPreHome 2s infinite;
}

@keyframes blinkPreHome {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* homepage-carrousel.css --- 2024-09-04 19:09:36 */
#homepage-carrousel {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 70vh;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

#homepage-carrousel .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-top: 70vh;
  background-color: white;
  min-width: 1300px;
}

#homepage-carrousel .bg img {
  width: 100% !important;


  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 2000ms;
}

#homepage-carrousel.ready img.current {
  opacity: 1;
}

#homepage-carrousel .content {
  position: absolute;
  left: 50%;
  bottom: 0%;
  max-width: 650px;
  width: 90%;
  transform: translate(-50%, 100%);
  /* transform: translate(-50%, 0%); */

  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 25px 25px 25px 35px;
  font-size: 1.2rem;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  transition: all 1000ms;
  color: white;
}





#homepage-carrousel h1 {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding: 0;
}

#homepage-carrousel .baseline {
  font-size: 1.2rem;
  margin: 25px 0;
}




#homepage-carrousel.ready .content {
  transform: translate(-50%, 0%);

}

#homepage-carrousel .btn {
  margin: 15px 0 0;
}




@media screen and (min-width: 1023px) and (max-width: 1290px) {



  #homepage-carrousel .content {
    padding: 25px 25px 25px 25px;
    font-size: 1.1rem;
  }

  #homepage-carrousel .bg {
    left: -20%
  }
}



@media screen and (max-width: 1290px) {
  #homepage-carrousel .bg {
    left: -20%
  }
}

@media screen and (max-width: 991px) {
  #homepage-carrousel .bg {
    left: -40%
  }
}

@media screen and (max-width: 516px) {
  #homepage-carrousel .bg {
    left: -80%
  }
}

/* header.css --- 2024-09-08 11:31:07 */
/* header */
#header {
    background: transparent;
    padding: 10px 0 10px;
    position: relative;
    background-color: #1D1D1D;

}

#header-wrapper {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

#header .row,
#header .row>div {
    height: 80px;
    background-color: white;
}

#header-liens {}

.top-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.top-links li {
    margin-left: 20px;
}

.top-links li a {
    color: #111;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 300ms;
    text-transform: uppercase;
}

.top-links li:hover a {
    opacity: 1;
}

.header-col {}

#header p,
#header .row {
    margin: 0;
    padding: 0;
}

#header-wrapper {
    height: 70px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    align-items: center;
}

#header-logo {
    z-index: 998;
    flex: 0 0 235px;
    position: relative;
    height: 100%;
    overflow: visible;
}

header .logo {
    /*
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 998;
    padding-top: 120px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    background-color: white;
    */
}

header .logo img {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#header-user {
    /*
    position: absolute;
    top: 8px;
    right: 0px;
    */
    display: flex;
    justify-content: flex-end;
    z-index: 10001;
    height: 100%;
    align-items: stretch;
}


#header-user a {
    cursor: pointer;
    text-decoration: none !important;
}

#header-user div>a {
    display: block;
    margin-left: 35px;
    font-size: 1.6rem;
    color: #212529;
    opacity: 0.8;
    text-decoration: none;
    position: relative;
    cursor: pointer;

}

#header-user .user>a::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

#header-user .user>a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
}

#header-user .cart>a::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


#header-user div ul {
    position: absolute;
    top: 100%;
    right: -20px;
    width: 220px;
    background-color: rgba(255, 255, 255, 1);
    max-height: 0;
    transition: all 300ms;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;


}



#header-user div.opened ul {
    max-height: 300px;
    transition: all 300ms;
    padding: 10px 0 10px 0;
    border: 1px solid #212529;

}

#header-user div ul li {
    font-size: 0.8rem;
    padding: 7px 10px;
    margin: 0;
    text-align: right;
}

#header-user div ul li a:hover {
    text-decoration: underline;
}

#header-user div ul li:hover {
    background-color: rgba(240, 240, 240, 1);


}




#header-user div ul a {
    color: #111;
}


#header-user a .badge {
    display: none !important;
    position: absolute;
    top: 5px;
    right: -5px;
    background-color: red;
    font-size: 0.6rem;
    color: white;

}


body.infos header .logo img {
    max-width: 102px !important;
}

@media screen and (max-width: 1023px) {
    #header-user {
        position: absolute;
        top: 38px;
        right: 80px;
    }
}

@media screen and (max-width: 991px) {
    header .col-sm-4 {
        width: 33.33333% !important;
    }

    #header-wrapper {
        justify-content: center !important;
    }

    header .container-fluid {}

    #header .languages {
        padding-top: 25px
    }
}

@media screen and (max-width: 767px) {
    header img {
        max-width: 60%;
    }

    #header-logo {
        flex: 0 0 200px;
        flex-direction: row;
        display: flex;
        justify-content: center;
        text-align: center;
    }


    #header-logo div,
    #header-logo a {
        display: inline-block;

        width: 100%;
        text-align: center;
    }

    #header .logo img {
        position: relative !important;
    }
}

/* fonts.css --- 2024-09-07 16:08:51 */
.roboto-slab {
  font-family: "Roboto Slab", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: normal !important;
}

body {
  font-family: 'Roboto', sans-serif;
}

.fs-7 {
  font-size: 0.90rem !important;
}

.fs-8 {
  font-size: 0.80rem !important;
}

.fs-9 {
  font-size: 0.70rem !important;
}

/* responsive.css --- 1970-01-01 01:00:00 */


