@font-face {
  font-family: "Gilroy-Black";
  src: url("font/Gilroy-Black.ttf") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("font/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy-Medium", sans-serif;
}

h1 {
  font-family: "Gilroy-Black", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: "Gilroy-Black", sans-serif;
}

:root {
  --header-bg-color: #141414;
  --main-bg-color: #1e1e1e;
  --footer-bg-color: #141414;
  --main-text-color: #ffffff;
  --link-text-color: #1ed760;
  --button-text-color: #000000;
  --button-bg-color: #1ed760;
  --button-second-bg-color: #1ed760;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;

  line-height: 1.6;
  color: var(--main-text-color);
}

button {
  cursor: pointer;
  border: none !important;
}

a {
  color: var(--link-text-color);
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--link-text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--main-text-color);
}

h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 45px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 30px;
    line-height: 44px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 24px;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 14px;
    line-height: 29px;
  }
}

strong {
  font-weight: 600;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  white-space: nowrap;
  display: block;
  overflow-x: auto;
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

table p {
  margin: 0;
}

tbody {
  width: calc(100% - 2px);
  display: table;
}

th {
  background: var(--footer-bg-color);
}

th,
td {
  border: 1px solid var(--main-text-color);
  padding: 8px;
  box-sizing: border-box;
}

th:first-child {
  border-top-left-radius: 10px;
}

th:last-child {
  border-top-right-radius: 10px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
  height: 8px;
}

table::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

footer,
header,
nav,
section,
main {
  display: block;
  position: relative;
}

main {
  flex: 1 0 auto;
  background-color: var(--main-bg-color);
}

section {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  section {
    padding: 20px 0;
  }
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .cs-container {
    max-width: 100%;
    padding: 0 15px;
  }
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cs-col:first-child {
  width: 820px;
}
.cs-col:last-child {
  flex: 0 0 330px;
}
@media (max-width: 1030px) {
  .cs-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cs-col:first-child,
  .cs-col:last-child {
    width: 100%;
    flex: auto;
  }
}

.cs-jc-end {
  justify-content: end !important;
}

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

.cs-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: inherit;
  height: auto;
  padding: 10px 24px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cs-btn__wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .cs-btn__wrapper {
    gap: 20px;
  }
}
.cs-btn-primary {
  color: var(--button-text-color);
  background-color: var(--button-bg-color);
}

.cs-btn-primary:hover {
  color: var(--button-text-color);
  background-color: var(--button-bg-color);
}

.cs-btn-secondary {
  color: var(--button-second-bg-color);
  border: 2px solid var(--button-second-bg-color) !important;
  background-color: var(--button-text-color);
}

.cs-btn-secondary:hover {
  color: var(--button-text-color);
  background-color: var(--button-second-bg-color);
}

.cs-btn-uppercase {
  text-transform: none;
}
.cs-header {
  background-color: var(--header-bg-color);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.cs-header ul,
.cs-header ol,
.cs-header li,
.cs-footer ul,
.cs-footer ol,
.cs-footer li {
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}
.cs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cs-header__inner-primary {
  display: flex;
  align-items: center;
  /*width: 100%;*/
  justify-content: space-between;
  flex: auto;
}

.cs-header__inner-second {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-header__row {
  flex-direction: row;
  height: 80px;
}

.cs-header__inner-second .cs-header__row {
  flex-direction: row;
  gap: 10px;
  height: auto;
}

.cs-header__col {
  flex-direction: column;
}

.cs-header__inner-second.cs-header__col {
  padding: 10px 0;
}

.cs-header__logo {
  display: flex;
  max-height: 60px;
  height: 100%;
}

.cs-header__logo a {
  text-decoration: none;
  display: flex;
}
.cs-header__logo img {
  object-fit: contain;
  border-radius: initial;
  width: 150px;
}

.cs-header__nav {
  display: flex;
}
.cs-header__nav ul {
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
  list-style-type: none;
  padding: 0;
}

.cs-header__nav ul li {
  display: flex;
  align-items: center;
  height: 100%;
}

.cs-header__nav ul li a {
  color: var(--link-text-color);
  text-decoration: none;
  padding: 10px;
}

.cs-header__nav ul li a:hover {
  color: var(--main-text-color);
}

.cs-section img {
  display: block;
  margin: auto;
}

.cs-section--main .cs-container > :not(:last-child) {
  margin-bottom: 30px !important;
}

.cs-container picture,
.cs-container picture img {
  padding-bottom: 20px; /* Ajustez la valeur selon vos besoins */
}

.cs-btn__wrapper-main {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.cs-btn__wrapper-main .cs-btn-primary {
  padding: 20px 70px;
  border-radius: 14px;
}

.cs-burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.cs-burger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--main-text-color);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.cs-burger-menu.cs-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.cs-burger-menu.cs-active span:nth-child(2) {
  opacity: 0;
}

.cs-burger-menu.cs-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.cs-section--content h1:first-of-type,
.cs-section--content h2:first-of-type,
.cs-section--content h3:first-of-type,
.cs-section--content h4:first-of-type {
  margin-top: 0;
  margin-bottom: 30px;
}

.cs-section--content h1:not(:first-of-type),
.cs-section--content h2:not(:first-of-type),
.cs-section--content h3:not(:first-of-type),
.cs-section--content h4:not(:first-of-type) {
  margin: 30px 0;
}

.cs-section--content .cs-update-post {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 20px 0;
}

.cs-section--content .cs-update-post p {
  margin: 0;
}

footer {
  flex-shrink: 0;
  background-color: var(--footer-bg-color);
  color: var(--main-text-color);
}

.cs-footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-self: center;
  padding: 20px 0;
  gap: 17px;
}

.cs-footer__nav,
.cs-footer__icons,
.cs-footer__inner {
  display: flex;
  justify-content: center;
}

.cs-footer__icons--link img {
  border-radius: initial;
  height: 30px;
}

.cs-footer__nav--list {
  display: flex;
  list-style-type: none;
  justify-content: center;
  gap: 42px;
}

.cs-footer__nav--link {
  color: var(--link-text-color);
  text-decoration: none;
}
.cs-footer__nav--link:hover {
  color: var(--main-text-color);
}

.cs-footer__icons {
  gap: 24px;
  flex-wrap: wrap;
}

.cs-footer__inner p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
}

.cs-breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 1em 0;
  font-size: 0.95em;
  gap: 0.5em;
}

.cs-breadcrumbs li {
  display: flex;
  align-items: center;
}

.cs-breadcrumbs li a {
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.cs-breadcrumbs li::after {
  content: "â€º";
  margin: 0 0.5em;
}

.cs-breadcrumbs li:last-child::after {
  content: "";
  margin: 0;
}

.cs-content__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.cs-content__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1;
}

.cs-content__col.cs-content__col--img {
  max-width: 550px;
}

.cs-error-page {
  align-content: center;
}
.cs-error-page__wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs-error-page .cs-error-page__wrapper h1,
.cs-error-page .cs-error-page__wrapper p {
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .cs-content__wrapper {
    flex-direction: column;
  }

  .cs-content__col.cs-content__col--img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cs-burger-menu {
    display: flex;
    order: 1;
  }
  .cs-header__inner {
    justify-content: space-between;
    gap: 20px;
  }
  .cs-header__logo {
    max-height: 50px;
  }
  .cs-header__logo img {
    max-width: 100px;
  }

  #cs-nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--header-bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start !important;
    display: none;
  }

  .cs-header__nav ul {
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .cs-header__nav ul li {
    padding: 10px 0;
  }

  .cs-header .cs-btn {
    padding: 6px 12px;
  }

  #cs-nav-menu.cs-active {
    display: flex;
  }

  .cs-header__row {
    height: 68px;
  }

  .cs-header__inner-second.cs-header__col {
    flex-direction: row;
  }

  .cs-footer__nav--list {
    gap: 20px;
  }

  .cs-breadcrumbs {
    font-size: 0.75em;
  }
}

/* Random Images Block */
.cs-showcase__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: space-between;
}

.cs-showcase__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 270px;
}

.cs-showcase__image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 270px;
  height: 400px;
}

.cs-showcase__image img {
  max-width: 100%;
  display: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-showcase__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-showcase__image:hover .cs-showcase__image-overlay {
  opacity: 1;
  visibility: visible;
}

.cs-showcase__image .cs-btn__wrapper {
  z-index: 2;
}

.cs-showcase__desc {
  display: flex;
  flex-direction: column;
}
.cs-showcase__desc p,
.cs-showcase__desc span {
  margin: 0;
}
.cs-showcase__desc span {
  font-size: 14px;
}

@media screen and (max-width: 1210px) {
  .cs-showcase__block {
    width: calc(25% - 20px);
  }
  .cs-showcase__image {
    width: auto;
  }
}

@media screen and (max-width: 992px) {
  .cs-showcase__image {
    height: 120px;
  }

  .cs-showcase__desc span {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .cs-showcase__wrapper {
    justify-content: center;
  }
  .cs-showcase__block {
    width: calc(50% - 20px);
  }
  .cs-showcase__image {
    width: auto;
    height: 250px;
  }
}

/* TOC Styles */
.cs-toc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px 0 40px;
  margin: 0;
}

.cs-toc li::marker {
  color: var(--link-text-color);
}

.cs-toc-wrapper {
  margin: 20px auto;
  border-radius: 10px;
  border: 1px solid var(--main-text-color);
}

.cs-toc-title {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}

.cs-toc.cs-is-open {
  margin: inherit;
  margin-top: 0;
}

.cs-toc-arrow {
  width: 8px;
  height: 8px;
  margin-bottom: 4px;
  border: solid var(--main-text-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.cs-toc-arrow.cs-rotated {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}

.trustpilot-widget iframe {
  background-color: #ffffff;
  margin: auto;
  border-radius: 0.5rem;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  pointer-events: none;
}
