/******************************************
 *
 * STRUCTURE 
 *
 ******************************************/

.no-mobile {
  display: block;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #091f29;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
@media (min-width: 980px) {
  .no-mobile {
    display: none;
  }
}
.main-content,
.main-wrapper {
  background-color: #0a1f29;
}
.single .main-content,
.single .main-wrapper {
  background-color: #fff;
}
.container {
  max-width: 82rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

body {
  font-size: 1rem;
  font-family: "ReithSans", Helvetica, Arial, sans-serif;
  /* line-height: 1.5; */
  line-height: inherit;
  word-break: break-word;
  overflow-wrap: break-word;
  color: rgb(255, 255, 255);
  background-color: rgb(9, 31, 41);
}
* {
  font-family: "ReithSans", Helvetica, Arial, sans-serif;
}
h1,
h2,
h3,
h4,
.rating-title p,
.single-left .title-meta {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.text-title,
a.text-title,
a:visited.text-title,
a:hover.text-title,
.list-article .list-article-content p {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
}
.text-title,
a.text-title,
a:visited.text-title,
a:hover.text-title {
  font-weight: 600;
}
b,
strong {
  font-weight: 700;
}

.sidebar:after {
  display: none;
}

.layout-entry {
  display: flex;
  grid-template-columns: 2fr 1fr;
  grid-gap: 1em;
}
.layout-entry .content {
  width: 70%;
}
.layout-entry aside.sidebar {
  width: 30%;
  padding: 4em 1em;
}
.layout-sidebar {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-gap: 3em;
}
.layout-sidebar aside.sidebar {
  background-color: #fff;
  padding: 2em !important;
}

#specs .layout-sidebar aside.sidebar {
  background-color: rgb(13, 46, 61);
  padding: 1em !important;
}

.layout-entry aside.sidebar {
  background-color: rgb(13, 46, 61);
  margin-top: 4em;
  padding: 2em;
}

/* Reset */
.bg-pattern:hover {
  background-position: center;
  background-size: cover;
  transform: scale(1);
}

/******************************************
 *
 * HEADER / FOOTER 
 *
 ******************************************/

/******************************************
 * Header 
*********************/
header.site-header {
  background-color: #0d2e3d;
  border-bottom: none;
  height: min-content;
}
header.site-header.sticky {
  position: sticky;
  top: 0;
}
.pre-header {
  background-color: #0d2e3d;
}
.branding {
  align-items: center;
  display: grid;
  justify-content: space-between;
  margin-bottom: -3px;
  grid-template-columns: 230px 1fr 170px;
}

/* Logo */
.header-logo img {
  max-width: 295px;
  max-height: 97px;
}
/* Logo nav */
.header-logo img {
  max-width: 295px;
  max-height: 97px;
}

/* Banner */
.header-banner img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.header-banner {
  position: relative;
  line-height: 0;
}
.header-banner:before,
.header-banner:after {
  width: 30px;
}
.header-banner:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    to left,
    rgba(13, 46, 61, 0) 0%,
    rgb(13, 46, 61) 100%
  );
  z-index: 1;
}
.header-banner:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  display: inline-block;
  background: linear-gradient(
    to right,
    rgba(13, 46, 61, 0) 0%,
    rgb(13, 46, 61) 100%
  );
}

/* Menu */

header .menu-main {
  position: relative;
  /* overflow-y: visible; */
  height: auto;
  background-color: rgb(13, 46, 61);
}

header .menu-main:before {
  content: "";
  position: absolute;
  background-color: rgba(157, 157, 157, 0.2);
  height: 1px;
  width: 100%;
  z-index: 1;
}
header .menu-main:after {
  content: "";
  position: absolute;
  background-color: rgba(157, 157, 157, 0.2);
  height: 1px;
  width: 100%;
  top: 50px;
}
header .menu-main ul {
  max-width: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-color: rgb(13, 46, 61);
  white-space: nowrap;
  display: flex;
  min-height: 51px;
  flex-direction: row;
  align-items: center;
}
header .menu-main ul li {
  list-style-type: none;
}
/* header .menu-main ul li:first-child {
  margin-right: 0.75rem;
} */
header .menu-main ul li {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}

header .menu-main ul li a {
  position: relative;
  align-items: center;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-transform: capitalize;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.95rem 0.5rem;
  background-color: rgb(13, 46, 61);
  color: rgb(255, 255, 255);
}
header .menu-main ul li a:hover,
header .menu-main ul li.current-menu-item a {
  text-decoration: underline;
  color: rgb(13, 46, 61);
  background-color: rgb(121, 214, 242);
}
header .menu-main ul li.well a {
  background-color: rgb(39, 82, 101);
}
header .menu-main ul li.well a:hover {
  color: rgb(13, 46, 61);
  background-color: rgb(121, 214, 242);
}

header .nav-container {
  padding: 0 1.8em;
  display: flex;
  align-items: center;
  gap: 1em;
}

header .nav-logo {
  margin-left: calc(-108px - 1em);
  opacity: 0;
  transition: all ease 0.2s;
  width: calc(108px - 0.5em);
}
header .nav-logo.active {
  margin-left: 0;
  width: 60%;
  opacity: 1;
}
header .nav-logo a {
  display: flex;
  align-items: center;
}
header .nav-logo img {
  max-height: 43px;
  max-width: 100px;
  margin-left: 0;
}

header .nav-search {
  margin-left: auto;
  display: flex;
}
header .nav-search button {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #ffffff;
  padding: 0 1em;
}
header .nav-search button:hover {
  color: rgb(121, 214, 242);
}
header .search-box {
  background: #0c242f;
  transition: all ease 0.2s;
  padding: 0 2em;
  margin-top: -59px;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
header .search-box.active {
  margin-top: 0px;
  padding-top: 1em;
  padding-bottom: 1em;
  opacity: 1;
  visibility: visible;
}

header .search-box input[type="text"] {
  background: rgb(255, 255, 255);
  padding: 0px 2rem 0px 0.5rem;
  color: rgb(13, 46, 61);
  border: none;
  transition: width 0.3s ease 0s;
  height: 2.75rem;
  margin-top: 0px;
  width: 96.5%;
  border-radius: 0;
}
header .search-box input[type="text"]:focus {
  outline: rgb(121, 214, 242) solid 2px;
  border: 2px solid rgb(121, 214, 242);
  outline-offset: -1px;
}
header .search-box__container {
  padding: 0.5em 2.5em;
}
.search-box .searchandfilter ul {
  display: grid;
  grid-template-columns: 6fr 1fr;
  align-items: center;
}
.search-box .searchandfilter ul li {
  padding: 0;
}

.header-links {
  flex-direction: column;
}
.header-links .link {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 16px 1fr;
  grid-gap: 8px;
  align-items: center;
  justify-content: end;
  padding-left: 8px;
  margin-bottom: 0.5em;
  border: none;
  cursor: pointer;

  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: none;
  color: rgb(255, 255, 255);

  background-color: rgb(13, 46, 61);
  transition: all ease 0.3s;
}
.header-links .link svg {
  max-width: 100%;
  margin-top: -3px;
}
.header-links .link.login {
  /* color: rgb(121, 214, 242);
  fill: rgb(121, 214, 242); */
}
.header-links .link:hover,
.header-links .link:hover svg {
  /* text-decoration: underline; */
  color: rgb(121, 214, 242);
  fill: rgb(121, 214, 242);
}
.header-mag {
}

.site-footer .international-editions {
  max-width: 880px;
  margin: 3em auto;
}
.site-footer .international-editions ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(5, 1fr);
}
.site-footer .international-editions ul a {
  color: #fff;
  text-decoration: none;
}

/* Big Reads */

#site-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(13, 46, 61);
}
#site-navigation.sticky a {
  position: relative;
  align-items: center;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-transform: capitalize;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  background-color: rgb(13, 46, 61);
  color: rgb(255, 255, 255);
}
#site-navigation.sticky ul {
  max-width: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-color: rgb(13, 46, 61);
  white-space: nowrap;
  display: flex;
  min-height: 51px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2em;
}
#site-navigation .header-container {
  display: flex;
  align-items: center;
  gap: 2em;
  justify-content: center;
}

#site-navigation.sticky .logo-sticky .logo-site,
#site-navigation.sticky .logo-sticky .logo-site img {
  max-height: 50px;
  max-width: 100px;
}

/******************************************
 *
 * LISTS
 *
 ******************************************/

/******************************************
 * Articles 
*********************/

.bg-pattern {
  padding-top: 53%;
}

.slider-left .content a.text-title,
.list-article a.tile-link,
.text-title,
a.text-title,
a:visited.text-title,
a:hover.text-title {
  color: #fff;
}
.list-article .list-article-content {
  background-color: transparent;
  min-height: inherit;
}
.slider-left .content {
  position: relative;
}
.slider-left .content:after {
  display: none;
}

.list-article {
  margin-bottom: 1em;
}
.list-article header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: none;
  position: relative;
}

.list-article header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0a1f29;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}

.list-article header h2 {
  font-size: 2.75rem;
  color: #fff;
  line-height: 3rem;
  width: fit-content;
  margin-top: 0px;
  margin-bottom: 2rem;
  padding-top: 16px;
  text-transform: uppercase;
  border-top: 8px solid rgb(121, 214, 242);
}

.list-article:after {
  display: none;
}

.list-article:hover header:before {
  opacity: 0.3;
}
.list-article:hover a.text-title {
  color: rgb(121, 214, 242);
  text-decoration: underline;
  background-color: inherit;
}

.list-article,
.list-article:hover,
.list-article-content,
.list-article-content:hover,
.list-article:hover .list-article-content {
  box-shadow: none;
}
.list-article .list-article-content:before,
.list-article .list-article-content:after {
  display: none;
}
.list-article .list-article-content .content {
  margin-top: 8px;
  width: 100%;
  padding: 8px 0;
}
.list-article .list-article-content.slider-left .content {
  height: auto;
}

.list-article .single-meta {
  margin-bottom: 16px;
  position: relative;
  margin-top: 12px;
}
.list-article .single-meta:after {
  content: "";
  position: absolute;
  display: block;
  top: inherit;
  left: 0px;
  bottom: -10px;
  width: 25px;
  min-width: none;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}
.list-article .single-meta .author,
.list-article .single-meta .date {
  font-size: 13px;
  color: #cccccc;
}

.list-article .main-tag a,
.section-related .list-article .main-tag a {
  display: inline-block;
  position: relative;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: -6px;
  margin-bottom: 4px;
  padding: 0;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgb(121, 214, 242);
}
.list-article .main-tag a:hover {
  text-decoration: underline;
}

.list-article.detailed .text-title {
  position: relative;
  display: block;
  margin-bottom: 0.7em;
  padding-bottom: 0.7em;
  line-height: 1.2;
  padding-top: 0;
}
.list-article.detailed .text-title:after {
  position: relative;
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 10%;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}
.list-article.detailed .text-price {
  font-size: 1rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: rgb(121, 214, 242);
  margin-bottom: 0.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.list-article.detailed .text-body p {
  margin-top: 0.5em;
}
.list-article.detailed .text-body,
.list-article.detailed .text-body p {
  font-family: "ReithSans", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.list-article.detailed .score-box.mini {
  transform: scale(0.8);
}
.text-title,
a.text-title,
a:visited.text-title,
a:hover.text-title {
  line-height: 26px;
}

.section-list.featured {
  margin-bottom: 2em;
}

.list-article .list-article-content.slider-left .text:before {
  content: none;
}

/******************************************
 * Essais 
*********************/
.tile-link {
  position: relative;
}
.score-box {
  background: transparent;
}
.score-box text {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
}
.score-box.mini {
  position: absolute;
  top: inherit;
  z-index: 100;
  transform: scale(1);
  transform-origin: left;
  bottom: 8px;
  left: 8px;
}

/****
 * Essai Header 
*********************/

.single-essais .essai-header {
  background: rgb(9, 31, 41);
}
.single-essais .essai-header .essai-summary {
  background: url("../graphics/weel-section.svg") -20.8rem 2rem no-repeat,
    linear-gradient(to top, rgb(41, 80, 99) 0%, rgb(0, 121, 139) 100%) 0px 0px;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
  margin-top: 3em;
}
.single-essais .essai-entry {
  position: relative;
}
.single-essais .essai-entry .score-box {
  position: absolute;
  z-index: 100;
  transform: scale(1.3);
  transform-origin: left;
  top: 8px;
  right: 2em;
}

.single-essais .essai-header .essai-thumb {
  padding-top: 3em;
}

.single-essais .essai-header .lSSlideOuter {
  margin-bottom: 0;
}
.single-essais .essai-header .main-title,
.single-essais .essai-header .chapo,
.single-essais .essai-header .metas,
.single-essais .essai-header .metas a {
  color: #fff;
}
.single-essais .essai-header .abo-link a span {
  color: rgb(121, 214, 242);
}
.single-essais .essai-header .main-title,
.single-essais .essai-header .chapo {
  max-width: 85%;
}

/* Galery */
.single-essais .essai-header .lSSlideOuter .lSPager.lSGallery {
  background-color: #091f29;
}

/* Review */
.single-essais .essai-header .essai-summary .title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-top: 0rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  color: #fff;
}
.single-essais .essai-header .essai-summary .title p,
.single-essais .essai-header .essai-summary .title span {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-top: 0rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 0rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.single-essais .essai-header .essai-summary .title::after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 12px;
  width: 100%;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
  margin-left: auto;
  margin-right: auto;
  right: 0px;
  text-align: center;
}
.single-essais .essai-header .essai-summary .stuff {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  grid-gap: 1.5em;
  padding: 0em 1em;
  margin-bottom: 2em;
}
.single-essais .essai-header .essai-summary .bagde_review {
  display: block;
  height: 70px;
  width: 70px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.single-essais .essai-header .essai-summary .comment {
  padding-right: 4em;
  color: #fff;
  font-size: 1rem;
  line-height: 1.375rem;
}
.single-essais .essai-header .essai-summary strong {
  display: block;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  margin-bottom: 0.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.single-essais .essai-header .essai-summary .bagde_review.good {
  background-image: url("../graphics/essai-good.svg");
}
.single-essais .essai-header .essai-summary .bagde_review.bad {
  background-image: url("../graphics/essai-bad.svg");
  transform: rotate(180deg);
}

/****
 * Essai Content
*********************/
.single-essais .essai-content h2 {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 0rem;
  padding-top: 3rem;
  margin-bottom: 2rem;
  color: rgb(137, 150, 159);
  font-size: 2.2rem;
  line-height: 2.35rem;
}
.single-essais .essai-content h3 {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: rgb(15, 65, 86);
  font-size: 1.75rem;
  line-height: 2rem;
}
.single-essais .essai-content h3:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 82px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}

/* Spec */

.single-essais #specs {
  background-color: rgb(9, 31, 41);
  padding-top: 3em;
}
.single-essais #specs .table {
  color: #fff;
  max-width: 800px;
}
.single-essais #specs h2 {
  font-size: 2.75rem;
  line-height: 3rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  letter-spacing: -0.0313rem;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 2.5rem;
  margin-top: 0rem;
  padding-top: 0rem;
  padding-bottom: 1.5rem;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.single-essais #specs h2:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}
.single-essais #specs h2,
.single-essais #specs h3 {
  color: #fff;
}
.single-essais #specs .table .line {
  display: grid;
  grid-template-columns: 70% auto;
  padding: 1em;
}
.single-essais #specs .table .line:nth-child(odd) {
  background-color: rgb(13, 46, 61);
}

.essai-header .single-meta,
.top-header .single-meta {
  color: #fff;
}

/******************************************
 *
 * SINGLE
 *
 ******************************************/

.single .main-tag a {
  display: inline-flex;
  cursor: pointer;
  margin: 0.5rem 0px;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
  white-space: nowrap;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  background-color: rgb(9, 31, 41);
  color: rgb(121, 214, 242);
}
.single .main-tag a:hover {
  text-decoration: underline;
}

.single h2.main-title {
  color: rgb(15, 65, 86);
}
.single h2.main-title:after {
  content: "";
  display: block;
  position: relative;
  top: 8px;
  margin-bottom: 32px;
  left: 0;
  right: auto;
  width: 10%;
  min-width: 65px;
  margin-top: 0.1em;
  height: 2px;
  background-color: rgb(121, 214, 242);
}

.single .chapo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  margin-top: 0rem;
  margin-bottom: 1.5rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: rgb(9, 31, 41);
}

.single .metas {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 16px;
}
.single-meta {
  color: rgb(9, 31, 41);
}

.single .metas .icon-volant {
  height: 50px;
  width: 50px;
}
.single .metas .author,
.single .metas .date {
  font-weight: 400;
  text-transform: inherit;
}
.single .metas .author {
  font-size: 16px;
}
.single .metas .date {
  font-size: 13px;
}
.single .abo-link {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.single .abo-link a {
  text-decoration: none;
}
.single .abo-link a span {
  background-repeat: no-repeat;
  background-size: 100% 0em;
  background-position: 0px 100%;
  text-decoration: none;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  border-bottom: 2px solid;
  cursor: pointer;
  color: rgb(17, 95, 129);
  transition: border-color 0.15s ease 0s, background-image 0.15s ease 0s,
    color 0.15s ease 0s,
    background-size 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}
.single .abo-link a span:hover {
  text-decoration: none;
  background-size: 100% 100%;
  background-image: linear-gradient(
    120deg,
    rgb(75, 75, 75) 0%,
    rgb(75, 75, 75) 100%
  );
  color: rgb(121, 214, 242);
  border-color: rgb(75, 75, 75);
}

.article-main {
  max-width: 88%;
}
.article-main h2 {
  margin-bottom: -12px;
  margin-top: 32px;
  font-size: 32px;
  color: rgb(15, 65, 86);
}
.article-main h3 {
  margin-bottom: -12px;
  margin-top: 32px;
  font-size: 24px;
  color: rgb(15, 65, 86);
}
.single-numeros .article-main h3 {
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 24px;
  color: rgb(15, 65, 86);
}
.article-main h4 {
  margin-bottom: -12px;
  margin-top: 24px;
  font-size: 20px;
  color: rgb(15, 65, 86);
}
.article-main p,
.article-main ul,
.article-main li,
.article-main span,
.article-main a {
  font-size: 16px;
  line-height: 1.55;
  color: rgb(75, 75, 75);
}

.article-main a {
  background-repeat: no-repeat;
  background-size: 100% 0em;
  background-position: 0px 100%;
  text-decoration: none;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  border-bottom: 2px solid;
  cursor: pointer;

  color: rgb(17, 95, 129);
  border-bottom-color: rgb(17, 95, 129);
  transition: border-color 0.15s ease 0s, background-image 0.15s ease 0s,
    color 0.15s ease 0s,
    background-size 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}
.article-main a:focus,
.article-main a:hover {
  text-decoration: none;
  background-size: 100% 100%;
  background-image: linear-gradient(
    120deg,
    rgb(9, 31, 41) 0%,
    rgb(9, 31, 41) 100%
  );
  color: rgb(121, 214, 242);
  border-color: rgb(9, 31, 41);
}

.article-main:after {
  display: none;
}

.thumb-container {
  margin-top: -3px;
  max-width: 100%;
  border: none;
}
.thumb-container li a {
  display: flex;
  border: none;
}
.lSSlideOuter .lSPager.lSGallery {
  background-color: #fff;
}

.section-related {
  background: rgb(9, 31, 41);
  padding: 2em 1em;
}
.section-related h2.main-title {
  color: #fff;
}

/* Big Reads */
#article-long .thumb-container {
  position: relative;
  left: 0%;
}
/* TOP9 */

.single .top-header {
  background: rgb(9, 31, 41);
}
.single .top-header .top-summary {
  background: url("../graphics/weel-section.svg") -20.8rem 2rem no-repeat,
    linear-gradient(to top, rgb(41, 80, 99) 0%, rgb(0, 121, 139) 100%) 0px 0px;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 3em;
}
.single .top-header {
  position: relative;
}
.single .top-header .layout-entry {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.single .top-header .layout-entry .content {
  width: inherit;
  margin-top: -2em;
}
.single .top-header .layout-entry .content .top-entry {
  margin-top: 2em;
  padding-bottom: 3em;
}
.single .top-header .layout-entry aside.sidebar {
  width: inherit;
  background: transparent;
  margin-top: 0;
}

.single .top-header .top-thumb {
  padding-top: 0em;
}

.single .top-header .lSSlideOuter {
  margin-bottom: 0;
}
.single .top-header .main-title,
.single .top-header .chapo,
.single .top-header .metas,
.single .top-header .metas a {
  color: #fff;
}
.single .top-header .abo-link a span {
  color: rgb(121, 214, 242);
}
.single .top-header .main-title,
.single .top-header .chapo {
  max-width: 85%;
}

/* Galery */
.single .top-header .lSSlideOuter .lSPager.lSGallery {
  background-color: #091f29;
}

.single .top-list.article-main.section {
  position: relative;
  padding: 3em 0;
  max-width: 100%;
}

.single .top-list .line .list-number span {
  position: relative;
  padding-bottom: 1.5rem;
  word-break: initial;
  font-size: 8.75rem;
  line-height: 9.25rem;
  margin-top: calc(-0.25em);
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  color: rgb(0, 29, 37);
}
.single .top-list .line .numerotation {
  display: flex;
  flex-direction: row;
}
.single .top-list .line .title {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-top: 0.4em;
  font-weight: bold;
  word-break: break-word;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  color: rgb(0, 29, 37);
  padding-left: 0.7em;
}
.single .top-list .line .list-number span {
  font-weight: 900;
}
.single .top-list .line .list-number span:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 48px;
  width: 100%;
  max-width: 96px;
  height: 8px;
  background-color: rgb(121, 214, 242);
}

/* Section Colonnes img / texte */
.section-col_txt_img .line {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 2em;
  padding: 0em;
  margin-bottom: 4em;
}
.section-col_txt_img .line .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-col_txt_img .line .txt-left {
  padding-right: 1em;
}
.section-col_txt_img .line .txt-right {
  padding-left: 4em;
}
.section-col_txt_img .line .txt h2 {
  margin-top: 0;
}

.section-col_txt_img .line figure {
  position: sticky;
  top: 4.5em;
}
.section-col_txt_img .line img {
  width: 100%;
}
.section-col_txt_img .line .img-right {
  padding-left: 2em;
}
.section-col_txt_img .line .img-left {
  padding-right: 2em;
}

/******************************************
 *
 * PAGES
 *
 ******************************************/

.header-page {
  padding: 10% 0;
  background-size: cover;
  background-position: 50% 47%;
  margin-bottom: 3em;
  /* background-attachment: fixed; */
}
.header-page.essais {
  padding: 5% 0;
}

.header-page.essais .search {
  background: rgba(255 255 255 / 94%);
  padding: 1em 2em 1em 2em;
  max-width: 500px;
}
.header-page.essais .search h2 {
  color: #000;
}

.entrance-page {
  background: rgb(9, 31, 41);
  margin-top: -3em;
  margin-top: -7em;
  padding-top: 0.5em;
}
.entrance-page .entrance.big {
  border-top: 0;
  margin-bottom: 2em;
}
.entrance-page .entrance.big h1 {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  margin: 0rem;
  margin-bottom: 0.5em;
  position: relative;
  padding-bottom: 1.5rem;
  padding-top: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 3.5rem;
  line-height: 3.75rem;
  border: none;
}
.entrance-page .entrance.big h1:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}
.entrance-page .entrance.big p {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 100;
  color: #fff;
  margin-top: 0rem;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  max-width: 400px;
  text-align: right;
  line-height: 1.2;
}

.entrance {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgb(41, 80, 99);
  margin-top: 1em;
  margin-right: 8px;
  margin-bottom: 0em;
  margin-left: 8px;
}
.entrance h1 {
  font-size: 2.75rem;
  line-height: 3rem;
  letter-spacing: -0.0313rem;
  font-weight: 600;
  width: fit-content;
  margin-top: 0px;
  margin-bottom: 2rem;
  padding-top: 16px;
  text-transform: uppercase;
  border-top: 8px solid rgb(121, 214, 242);
}
.entrance span {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  line-height: 3rem;
  letter-spacing: -0.0313rem;
  font-weight: 600;
  color: rgb(121, 214, 242);
}
.entrance span.page {
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2px;
}
.entrance p {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 100;
  color: #fff;
  text-align: right;

  text-transform: uppercase;
}
.entrance p strong {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  color: rgb(121, 214, 242);
}
.entrance h3 {
  font-size: 2.75rem;
  line-height: 4rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  letter-spacing: -0.0313rem;
  font-weight: 600;
  width: fit-content;
  margin-top: 0px;
  margin-bottom: 0.1em;
  padding-top: 8px;
  text-transform: uppercase;
  border-top: 8px solid rgb(121, 214, 242);
}
.sub-entrance {
  padding: 0;
}
.sub-entrance h4 {
  font-size: 2em;
  margin-bottom: 1em;
  position: relative;
}
.sub-entrance h4:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: -12px;
  width: 100%;
  max-width: 96px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}

a.see-more {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
  width: auto;
  border: none;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 700;
  background: transparent;
  padding: 0rem;
  transition: transform 0.2s ease 0s, opacity 0.5s ease 0s,
    color 0.2s ease-in-out 0s;
  gap: 0.3em;
  align-items: center;
}
a.see-more span svg {
  align-self: center;
  margin-top: 1px;
  font-size: 0.75em;
}
/*
 * Accueil essais
*/

/* Search */
.searchandfilter ul {
  margin: 0;
  padding: 0;
}
.searchandfilter ul li {
  list-style: none;
  display: block;
  padding: 4px 0;
  margin: 0;
}
.searchandfilter label {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.searchandfilter input[type="text"] {
  padding: 1em;
  width: 100%;
}
.searchandfilter .sf-input-select {
  border: 0;
  border-bottom: 1px solid rgb(1, 1, 1);
  color: rgb(1, 1, 1);
  padding: 1em 1em 1em 0em;
  background-color: transparent;
  width: 100%;
}
.searchandfilter .sf-field-submit input {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  justify-content: center;
  width: 100%;
  border: none;
  transition: transform 0.2s ease 0s, opacity 0.5s ease 0s,
    background-color 0.2s ease-in-out 0s;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgb(121, 214, 242);
  color: rgb(9, 31, 41);
}
/* Nav carosserie */
#essais h3 {
  font-size: 2.75rem;
  line-height: 4rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  letter-spacing: -0.0313rem;
  font-weight: bold;
  width: fit-content;
  margin-top: 0px;
  margin-bottom: 0rem;
  text-transform: uppercase;
  border-top: 8px solid rgb(121, 214, 242);
}
.nav-carosserie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
}
.nav-carosserie .block {
  border-bottom: 3px solid rgb(121, 214, 242);
}
.nav-carosserie .block img {
  width: 100%;
}
.nav-carosserie .block a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-align: center;
  width: 100%;
  display: block;
}
.nav-carosserie .block a span {
  background: linear-gradient(
    rgba(227, 231, 232, 0),
    rgba(12, 14, 15, 0.7),
    rgb(9, 31, 41)
  );
  min-height: 4rem;
  border-bottom: 3px solid transparent;
  display: flex;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: -4em;
}

.nav-carosserie-text {
  padding: 2em 1em;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 3em;
}
.nav-carosserie-text a,
.nav-carosserie-text a span {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 700;
}
.nav-carosserie-text a:hover,
.nav-carosserie-text a span:hover {
  color: rgb(121, 214, 242);
}

/******************************************
 *
 * ADS
 *
 ******************************************/
.head-announcement {
  position: sticky;
  top: 0;
  background: #0d2e3d;
  z-index: 100;
  padding-bottom: 20px;
  padding-top: 20px;
}
.head-announcement-container {
  max-width: 980px;
  margin: auto;
}

/******************************************
 *
 * MODULES & COMPONENTS
 *
 ******************************************/

.ruler {
  display: block;
  position: relative;
  left: 0px;
  width: 100%;
  height: 13px;
  background-image: linear-gradient(
    to right,
    rgb(41, 80, 99),
    rgb(0, 121, 139)
  );
}

/* Sharer */
.heateor_sss_sharing_container {
  border-left: 1px solid #000;
  padding-left: 10px;
}
.top-entry .heateor_sss_sharing_container,
.essai-entry .heateor_sss_sharing_container {
  border-left: 1px solid #fff;
}
/* Global Search */

/******************************************
 * TABS
*********************/
.tab-titles {
  background-color: rgb(13, 46, 61);
  position: sticky;
  top: -1px;
  z-index: 999;
}

.tab-titles a {
  position: relative;
  display: inline-flex;
  text-align: center;
  vertical-align: middle;
  -moz-box-pack: center;
  justify-content: center;
  width: auto;
  border: none;
  background: transparent none repeat scroll 0% 0%;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: normal;

  color: rgb(255, 255, 255);
  padding: 0.75rem 1rem 0.65rem 1rem;
  text-decoration: none;
  transition: transform 0.2s ease 0s, opacity 0.5s ease 0s,
    color 0.2s ease-in-out 0s;
}
.tab-titles a:hover,
.tab-titles a.active {
  background-color: rgb(121, 214, 242);
  color: #000000;
  outline: none;
}
.tab-titles a:focus,
.tab-titles a:active {
  outline: none;
}
.tab-container {
  display: flex;
  padding-right: 32px;
  padding-left: 32px;
}
/* .b-tab {
  display: none;
}

.b-tab.active {
  display: block;
} */

/* .b-nav-tab {
  display: inline-block;
  padding: 20px;
} */

/* .b-nav-tab.active {
  color: #ff4200;
} */

/******************************************
 * Pagintation
*********************/
.nav-links {
  display: flex;
  margin-bottom: 2em;
  flex-direction: column;
  gap: 1.5em;
}

.nav-links .nav-previous a {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  padding: 0.95rem 0.75rem 0.75rem 0.75rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  border: none;
  transition: transform 0.2s ease 0s, opacity 0.5s ease 0s,
    background-color 0.2s ease-in-out 0s;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgb(121, 214, 242);
  color: rgb(9, 31, 41);
}
.nav-links .nav-next {
  text-align: left;
}
.nav-links .nav-next a {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
  width: auto;
  border: none currentcolor;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  color: currentcolor;
}

.nav-links .nav-previous a svg {
  position: absolute;
  right: 8px;
  top: 17px;
  max-width: 12px;
  max-height: 12px;
}
.nav-links .nav-next a svg {
  margin-top: 2px;
  margin-right: 16px;
  max-width: 12px;
  max-height: 12px;
}

a.more,
.misha_loadmore {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  padding: 0.95rem 2rem 0.75rem 2rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
  border: none;
  transition: transform 0.2s ease 0s, opacity 0.5s ease 0s,
    background-color 0.2s ease-in-out 0s;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgb(121, 214, 242);
  color: rgb(9, 31, 41);
  margin-bottom: 2rem;
}
/******************************************
 * Breadcrumb
*********************/

#breadcrumb-container {
  background: rgb(9, 31, 41);
}
#breadcrumb-container p {
  margin: 0;
  padding: 16px 19px;
}
#breadcrumb-container p,
#breadcrumb-container span,
#breadcrumb-container a {
  color: #fff;
  font-size: 13px;
}

/******************************************
 * Promotion Ad
*********************/
.pb-container {
  display: flex;
  position: sticky;
  align-content: center;
  top: 54px;
  flex-direction: column;
  align-items: center;
}
.pb-container-fx {
  display: flex;
  position: relative;
  align-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 2em;
}

/******************************************
 * Newsletter block 
*********************/

.nl-container {
  margin: 2rem 1rem 5rem 16px;
  max-width: 42em;
  border-width: 0.5rem;
  border-style: solid;
  border-color: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-image-slice: 1;
  border-image-source: linear-gradient(rgb(41, 80, 99), rgb(0, 121, 139));
  background: url("../graphics/roue-nl.svg") 170% 24px / 65% no-repeat;
}

.nl-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column dense;
  gap: 1rem;
  background: linear-gradient(to right, white 228px, transparent 228px);
  position: relative;
  top: -20px;
  left: -0.5rem;
  color: rgb(15, 65, 86);
}

.nl-section h2 {
  margin: 0px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 3rem;
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
  letter-spacing: -0.0313rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.nl-section h2:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 82px;
  height: 2px;
  background-color: rgb(121, 214, 242);
}

.nl-section-right {
  padding-top: 5rem;
}
.nl-section-right .form-input-container {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1.5rem;
  color: rgb(118, 118, 121);
}

.nl-section-right .form-input-container label {
  display: block;
  transform-origin: left top;
  pointer-events: none;
  color: rgb(15, 65, 86);
  top: 0rem;
  left: 0rem;
  position: absolute;
  transform: translate(0px, 0px);
  padding: 0rem;
  font-size: 1rem;
  line-height: 1.25rem;
}

.nl-section-right .form-input-container input {
  margin-top: 1em;
  padding-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
  display: block;
  min-height: 2rem;
  background-color: transparent;
  width: 100%;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  appearance: none;
  border-bottom: 2px solid currentcolor;
  color: rgb(15, 65, 86);
  outline: none;
}
.nl-section-right .form-input-container input.nl-submit {
  background: #2c7a8b;
  color: #fff;
  font-size: 0.9em;
  border-radius: 0;
}

/******************
* Forms
******************/

input::placeholder {
  font-family: "Industry TG", Helvetica, Arial, sans-serif;
}

.with_frm_style .frm_top_container .frm_primary_label,
.with_frm_style .frm_hidden_container .frm_primary_label,
.with_frm_style .frm_pos_top,
.with_frm_style .vertical_radio .frm_checkbox label,
.with_frm_style .vertical_radio .frm_radio label {
  display: block;
  float: none;
  width: auto;
  color: #fff;
}

/******************
* Responsive
******************/
@media (max-width: 980px) {
  .bg-pattern {
    padding-top: 59%;
  }
  .container {
    max-width: 82rem;
    padding-left: 0rem;
    padding-right: 0rem;
  }
  /* Menu mobile */
  .mob-menu-header-holder {
    font-weight: bold;
    top: 0px;
    right: 0px;
    background: rgb(13, 46, 61) !important;
    display: block;
    z-index: 9999;
  }
  .mob-menu-header-holder .mob-menu-logo-holder {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    height: 40px;
    padding: 0 16px;
  }
  .mob-menu-header-holder .mob-menu-logo-holder .mob-standard-logo {
    padding: 8px 0;
  }
  .mobmenur-container {
    padding: 10px 19px;
  }
  .mobmenu-right-panel {
    background-color: #0d2e3d !important;
    width: 270px;
  }

  /* New mobile menu */
  header .nav-container {
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 1em;
    flex-direction: column;
  }
  header .nav-logo {
    margin-left: 0;
    opacity: 1;
    padding-top: 5px;
    transition: all ease 0.2s;
    width: 100%;
  }
  header .menu-main ul {
    max-width: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: rgb(13, 46, 61);
    white-space: nowrap;
    display: flex;
    min-height: 51px;
    flex-direction: column;
    align-items: center;
  }
  header .menu-main ul li a {
    display: block;
  }
  header .nav-search {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-bottom: 16px;
  }
  header .search-box.active {
    margin-top: 0px;
    padding-top: 1em;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1em;
    opacity: 1;
    visibility: visible;
    background: #0d2e3d;
  }

  header .menu-menu-1-container,
  header .nav-search {
    display: none;
  }
  header .menu-menu-1-container.active,
  header .nav-search.active {
    display: block;
  }
  header .menu-main {
    padding-bottom: 2px;
  }

  #news {
    overflow: hidden;
  }

  .menu-toggle,
  .main-navigation.toggled ul {
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    color: #fff;
    border: none;
  }
  header .nav-logo.active {
    margin-left: 0;
    width: 100%;
    opacity: 1;
  }

  .section-list article .text-title {
    font-size: 1.125rem;
    line-height: 1.2rem;
  }
  .section-list article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
  }
  .section-list.featured article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8em;
  }
  article.list-article.featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8em;
    margin-bottom: 0;
  }

  .list-article .list-article-content .content {
    margin-top: 0;
    padding-top: 0;
  }
  .article-main {
    max-width: 100%;
    padding: 0 18px;
  }

  .single h2.main-title {
    color: rgb(15, 65, 86);
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .header-page {
    padding: 30% 0 26% 0;
    background-size: cover;
    background-position: bottom;
    margin-bottom: 3em;
  }
  .entrance-page h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .entrance-page .entrance.big h1 {
    display: none;
  }
  .entrance-page .entrance.big {
    border-top: 0;
    margin-bottom: 2em;
    justify-content: center;
  }
  .entrance-page .entrance.big p {
    text-align: center;
    margin-bottom: 0.2em;
  }
  .entrance-page .entrance p {
    font-family: "Industry TG", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-transform: uppercase;
  }
  .entrance p {
    margin-bottom: 0;
  }
  .icon-volant img {
    max-width: 100%;
  }
  .slider-left .content a.text-title {
    font-size: 32px;
    margin-top: 16px;
    margin-bottom: 0px;
    line-height: 32px;
  }
  .list-article .list-article-content.slider-left p:not(.single-meta) {
    display: none;
  }
  .list-article .main-tag a,
  .section-related .list-article .main-tag a {
    margin-top: 4px;
    margin-bottom: 6px;
  }
  .list-article .single-meta .author,
  .list-article .single-meta .date {
    font-size: 11px;
    color: #cccccc;
  }
  .list-article .single-meta {
    margin-bottom: 16px;
    position: relative;
    margin-top: 6px;
  }
  .list-article-content .main-tag {
    margin-top: -5px;
  }
  .list1 .list-article-content .main-tag {
    margin-top: 4px;
  }

  .entrance-page .entrance {
    padding: 0;
  }

  .section-list.featured h2,
  .section-list h2 {
    padding: 0 8px;
  }
  .nl-section {
    display: block;
  }
  .nl-section h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .nl-section-right {
    padding-top: 0rem;
  }

  .single .abo-link a span {
    line-height: 1.6;
  }
  .nav-carosserie {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8em;
  }
  .nav-carosserie-text {
    padding: 2em 1em;
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.5em;
  }
  #essais h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    padding-top: 6px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .layout-entry {
    display: flex;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    flex-direction: column;
  }
  .layout-entry .content {
    width: 100%;
  }
  .single .top-header .layout-entry {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .single .top-header .layout-entry .content {
    width: inherit;
    margin-top: -2em;
  }
  .single .top-header .layout-entry .content .top-entry {
    margin-top: 2em;
    padding-bottom: 0;
  }
  .single .top-header .layout-entry aside.sidebar {
    width: inherit;
    background: transparent;
    margin-top: 0;
    padding: 1em;
  }
  .single-essais .essai-header .main-title,
  .single-essais .essai-header .chapo {
    max-width: 70%;
  }
  .single-essais .essai-entry .score-box {
    position: absolute;
    z-index: 100;
    transform: scale(1.1);
    transform-origin: left;
    top: 11px;
    right: 25px;
  }
  #tab-triggers {
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  #tab-triggers::-webkit-scrollbar {
    display: none;
  }

  #tab-triggers .tab-container.container {
    width: max-content;
    max-width: max-content;
  }
  .layout-entry aside.sidebar {
    width: 100%;
    background-color: rgb(13, 46, 61);
    margin-top: 0em;
    padding: 2em;
  }

  #tab.essai-content {
    overflow: hidden;
  }

  .single-essais .essai-header .essai-summary .title p,
  .single-essais .essai-header .essai-summary .title span {
    padding: 0 16px;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .single-essais .essai-header .essai-summary .comment {
    padding-right: 0.2em;
    color: #fff;
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .single-essais .essai-header .essai-summary strong {
    margin-bottom: 3px;
  }
  .layout-sidebar {
    display: block;
  }

  .single .top-list.article-main.section {
    position: relative;
    padding: 3em 1em;
    max-width: 100%;
  }
  .single .top-list.article-main.section .line p {
    margin-bottom: 0;
  }

  .section-col_txt_img .line {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0em;
    padding: 0em;
    margin-bottom: 2.5em;
  }

  .section-col_txt_img .line .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-col_txt_img .line .txt-left {
    padding-right: 0em;
  }
  .section-col_txt_img .line .txt-right {
    padding-left: 0em;
  }
  .section-col_txt_img .line .txt h2 {
    margin-top: 0;
  }

  .section-col_txt_img .line figure {
    position: sticky;
    top: 4.5em;
  }
  .section-col_txt_img .line img {
    width: 100%;
  }
  .section-col_txt_img .line .img-right {
    padding-left: 0em;
    grid-row: 1;
  }
  .section-col_txt_img .line .img-left {
    padding-right: 0em;
  }

  .section-related h2.main-title {
    color: #fff;
  }

  .score-box.mini {
    position: absolute;
    top: inherit;
    z-index: 100;
    transform: scale(0.65);
    transform-origin: right;
    bottom: inherit;
    right: inherit;
    left: -22px;
    top: -12px;
  }
  .score-box.mini.featured {
    left: inherit;
    right: 10px;
    top: 3em;
  }
  .entrance h3 {
    font-size: 2.1rem;
    line-height: 4rem;
    font-family: "Industry TG", Helvetica, Arial, sans-serif;
    letter-spacing: -0.0313rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 0px;
    margin-bottom: 0.1em;
    padding-top: 4px;
    text-transform: uppercase;
    border-top: 6px solid rgb(121, 214, 242);
  }
  a.see-more {
    font-size: 0.85rem;
  }
  .sub-entrance {
    padding: 0 8px;
  }
  /* Sharer */
  .heateor_sss_sharing_container {
    border-left: 1px solid #000;
    padding-left: 10px;
  }
  .top-entry .heateor_sss_sharing_container,
  .essai-entry .heateor_sss_sharing_container {
    border-left: 1px solid #fff;
  }
  .header-page.essais .search {
    background: rgb(255 255 255 / 80%);
    padding: 1.5em 2em 0.5em 2em;
    max-width: 300px;
    margin: 2em auto;
  }
  .header-page.essais .search h2 {
    color: #000;
    font-size: 1.2em;
    margin: 0.5em 0;
  }
  #article-long .bg-full {
    margin-top: 42px;
    padding-top: 54%;
  }
  #article-long .top-entry .metas {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 16px;
  }
  .site-footer .international-editions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(2, 1fr);
  }
}
