* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

body {
  font-family: "Roboto", sans-serif; }

#main-container .tap-headline-to-expand {
  display: none;
  max-width: 100%;
  border: 2px dashed #e93d3d;
  padding: 12px;
  margin: 20px 0 8px 0; }
  #main-container .tap-headline-to-expand h2 {
    font-size: 23px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    margin: 0 auto; }

#main-container .section .list-container.expandable .title i {
  display: none; }

#main-container b {
  font-weight: 700; }

#main-container.backdrop {
  pointer-events: none;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none; }
  #main-container.backdrop::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; }

#advertorial-disclosure-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 550px;
  min-height: 280px;
  width: 100%;
  z-index: 1001;
  transform: translate(-50%, -50%);
  border: none;
  background-color: #fff; }
  #advertorial-disclosure-popup.show {
    display: block; }
  #advertorial-disclosure-popup .content {
    padding: 20px 30px;
    position: relative;
    width: 100%;
    height: 100%; }
    #advertorial-disclosure-popup .content .close-btn {
      position: absolute;
      right: -22px;
      top: -22px;
      z-index: 1002;
      padding: 0;
      outline: none;
      border: none;
      background-color: transparent;
      box-shadow: none;
      cursor: pointer;
      padding: 7px; }
    #advertorial-disclosure-popup .content h4 {
      font-size: 18px;
      text-align: center;
      margin-bottom: 20px; }
    #advertorial-disclosure-popup .content p {
      font-size: 16px;
      line-height: 1.3em;
      margin-bottom: 16px; }

nav {
  padding: 5px 15px; }
  nav .content {
    max-width: 1130px;
    margin: 0 auto; }
    nav .content .logo-container {
      max-width: 150px;
      height: auto; }
      nav .content .logo-container img {
        max-width: 100%;
        height: auto; }

.landing {
  background-image: url("../img/landing.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 15px 20px 15px;
  color: #fff; }
  .landing .content {
    max-width: 1130px;
    margin: 0 auto; }
    .landing .content .row {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .landing .content .row .date {
        font-size: 14px; }
      .landing .content .row .advertorial {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        text-align: center; }
        .landing .content .row .advertorial #advertorial-disclosure {
          background-color: transparent;
          color: #cbd5e0;
          text-decoration: none;
          padding: 10px 13px;
          font-weight: 700;
          border-color: #707070;
          border-width: 2px;
          border-style: solid;
          border-radius: 22px;
          font-size: 16px;
          cursor: pointer; }
        .landing .content .row .advertorial span {
          color: #D5D3D3; }
    .landing .content h2 {
      font-size: 52px;
      text-align: center;
      max-width: 789px;
      margin: 20px auto;
      font-family: 'Raleway', sans-serif;
      line-height: 1.3em; }
    .landing .content h3 {
      font-size: 27px;
      font-weight: 500;
      color: #FFDA00;
      text-align: center;
      margin: 20px auto;
      line-height: 1.3em; }
    .landing .content .link-btns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px;
      margin: 25px auto 20px auto; }
      .landing .content .link-btns a.btn {
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        padding: 25px 29px;
        border: 2px solid #fff;
        transition: all 150ms; }
        .landing .content .link-btns a.btn:nth-child(2) {
          padding: 35px 25px; }
        .landing .content .link-btns a.btn:hover {
          background-color: #fff;
          color: black; }

.section {
  padding: 40px 20px;
  font-size: 20px;
  color: black;
  line-height: 1.3em; }
  .section h2.center {
    text-align: center; }
  .section h2.bigger {
    font-size: 36px; }
  .section.gray-bg {
    background-color: #F5F9FF; }
  .section h3.center {
    text-align: center;
    font-size: 36px; }
  .section .content {
    max-width: 1130px;
    margin: 0 auto; }
  .section .bordered-1 {
    border: 2px solid black;
    line-height: 1.5em;
    font-size: 22px; }
    .section .bordered-1 .red {
      color: red; }
  .section .image-container {
    padding: 25px 25px 26px;
    margin: 0 auto; }
    .section .image-container.shadow-1 img {
      box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3); }
    .section .image-container.shadow-2 img {
      box-shadow: 0 10px 1px #ddd, 0 10px 20px #ccc; }
    .section .image-container.full-width {
      width: 100%; }
    .section .image-container.center {
      margin-right: auto;
      margin-left: auto;
      text-align: center; }
    .section .image-container.logo {
      max-width: 200px;
      height: auto;
      padding-top: 0; }
    .section .image-container img {
      max-width: 100%;
      height: auto; }
    .section .image-container.dark-border img {
      border: 3px solid rgba(0, 0, 0, 0.7);
      color: #fff; }
  .section .image-text-row {
    display: flex;
    gap: 25px;
    padding: 25px 25px 26px;
    margin: 40px 0; }
    .section .image-text-row .image-container {
      width: 180px;
      height: auto;
      flex-shrink: 0;
      padding: 0; }
      .section .image-text-row .image-container img {
        max-width: 100%;
        height: auto; }
    .section .image-text-row .text h3 {
      margin-bottom: 6px;
      font-size: 30px; }
  .section .list-container {
    max-width: 880px;
    margin: 20px auto;
    border: 3px solid; }
    .section .list-container .title {
      display: flex;
      width: 100%; }
      .section .list-container .title h3 {
        text-align: center;
        margin: 0 auto;
        padding: 20px 15px;
        color: #fff;
        font-size: 28px; }
        .section .list-container .title h3.with-icon {
          display: flex;
          align-items: center; }
          .section .list-container .title h3.with-icon svg {
            width: 34px;
            height: 34px;
            margin-right: 8px; }
    .section .list-container.blue {
      border-color: #3486CA; }
      .section .list-container.blue .title {
        background-color: #3486CA; }
      .section .list-container.blue .list-content ul li::marker {
        color: #3486CA;
        fill: #3486CA; }
    .section .list-container.orange {
      border-color: #FF9900; }
      .section .list-container.orange .title {
        background-color: #FF9900; }
    .section .list-container.red {
      border-color: #FF4A4A; }
      .section .list-container.red .title {
        background-color: #FF4A4A; }
    .section .list-container.alert-red {
      border-color: #e93d3d; }
      .section .list-container.alert-red .title {
        background-color: #e93d3d; }
    .section .list-container.green {
      border-color: #9ae6b4; }
      .section .list-container.green .title {
        background-color: #1BC7B1; }
    .section .list-container .list-content {
      padding: 20px;
      line-height: 1.5em;
      letter-spacing: 0;
      text-align: left; }
      .section .list-container .list-content span.blue {
        color: #3486CA; }
      .section .list-container .list-content ul {
        padding-left: 1.5em; }
        .section .list-container .list-content ul.spaced li {
          margin-bottom: 24px; }
    .section .list-container.human-icon .list-content ul li {
      list-style-image: url("../img/icon/child-reaching.svg"); }
      .section .list-container.human-icon .list-content ul li::marker {
        font-weight: 700;
        margin-right: .5em;
        margin-left: -1.5em; }
    .section .list-container.thumb-up-icon .list-content ul li {
      list-style-image: url("../img/icon/thumb-up.svg"); }
      .section .list-container.thumb-up-icon .list-content ul li::marker {
        font-weight: 700;
        margin-right: 1em;
        margin-left: -1.5em; }
    .section .list-container.circle-xmark-icon .list-content ul li {
      list-style-image: url("../img/icon/circle-xmark-solid.svg"); }
      .section .list-container.circle-xmark-icon .list-content ul li::marker {
        font-weight: 700;
        margin-right: 1em;
        margin-left: -1.5em; }
    .section .list-container.alert-icon .list-content ul li {
      list-style-image: url("../img/icon/triangle-exclamation-solid.svg"); }
      .section .list-container.alert-icon .list-content ul li::marker {
        font-weight: 700;
        margin-right: 1em;
        margin-left: -1.5em; }
    .section .list-container.skull-crossbones-icon .list-content ul li {
      list-style-image: url("../img/icon/skull-crossbones-solid.svg"); }
      .section .list-container.skull-crossbones-icon .list-content ul li::marker {
        font-weight: 700;
        margin-right: 1.5em; }
    .section .list-container.skull-crossbones-icon .list-content .red {
      font-weight: bold;
      color: #e93d3d; }
  .section .more-pad {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto; }
  .section .h5 {
    font-size: 23px;
    margin-bottom: 3px; }
    .section .h5.regular {
      font-weight: 400; }
    .section .h5.with-icon {
      display: flex;
      align-items: center; }
      .section .h5.with-icon svg {
        margin-right: 6px; }
  .section .dashed-border {
    border: 2px dashed black; }
    .section .dashed-border.green {
      background-color: rgba(154, 230, 180, 0.25); }
  .section .comparaison-table-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 0;
    background-color: #fff;
    margin: 50px auto 40px auto;
    padding: 24px 10px 30px 10px;
    box-shadow: 0px 0px 40px #dbdbdb; }
    .section .comparaison-table-grid-container .grid-item {
      padding: 13px 20px;
      font-size: 18px;
      font-weight: 700; }
      .section .comparaison-table-grid-container .grid-item.feature {
        font-size: 20px; }
      .section .comparaison-table-grid-container .grid-item .image-container {
        width: 75px;
        height: auto;
        padding: 5px; }
        .section .comparaison-table-grid-container .grid-item .image-container img {
          max-width: 100%;
          height: auto; }
      .section .comparaison-table-grid-container .grid-item.highlighted {
        background-color: rgba(154, 230, 180, 0.25); }
        .section .comparaison-table-grid-container .grid-item.highlighted:nth-child(1) {
          padding-top: 18px; }
        .section .comparaison-table-grid-container .grid-item.highlighted:last-child {
          padding-bottom: 18px; }
      .section .comparaison-table-grid-container .grid-item:not(.feature) {
        text-align: center; }
      .section .comparaison-table-grid-container .grid-item i.fa-solid {
        font-size: 27px; }
        .section .comparaison-table-grid-container .grid-item i.fa-solid.fa-circle-check {
          color: #1BC7B1; }
        .section .comparaison-table-grid-container .grid-item i.fa-solid.fa-circle-xmark {
          color: #e93d3d; }
  .section .choice {
    padding: 0 15px 0 15px;
    margin: 50px auto;
    border: 10px solid #1BC7B1;
    background-color: #fff;
    position: relative; }
    .section .choice .images-text-row {
      display: flex;
      align-items: flex-start;
      justify-content: center; }
      .section .choice .images-text-row .images {
        flex: 1;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        .section .choice .images-text-row .images .image-container {
          padding: 0; }
          .section .choice .images-text-row .images .image-container.badge {
            max-width: 70px;
            height: auto; }
          .section .choice .images-text-row .images .image-container.logo {
            max-width: 150px; }
          .section .choice .images-text-row .images .image-container.product {
            max-width: 300px;
            margin-top: 25px; }
          .section .choice .images-text-row .images .image-container.rating {
            margin-top: 25px;
            max-width: 120px; }
        .section .choice .images-text-row .images span {
          font-size: 16px;
          font-weight: bold;
          margin-top: 6px; }
      .section .choice .images-text-row .text {
        flex: 1;
        width: 50%;
        padding: 50px 15px; }
        .section .choice .images-text-row .text h3 {
          font-size: 30px;
          font-family: 'Raleway', sans-serif;
          margin-bottom: 5px; }
        .section .choice .images-text-row .text .pros {
          padding-left: 20px;
          margin: 30px auto; }
          .section .choice .images-text-row .text .pros p {
            font-size: 20px;
            margin-bottom: 15px; }
            .section .choice .images-text-row .text .pros p i.fa-circle-check {
              margin-right: 5px;
              font-size: 20px;
              color: #1BC7B1; }
        .section .choice .images-text-row .text a.btn {
          background-color: #FF9900;
          color: #fff;
          text-decoration: none;
          padding: 13px 40px 15px;
          font-weight: 700;
          border-color: #fff;
          border-width: 3px;
          border-style: solid;
          letter-spacing: 0;
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
          border-radius: 50px;
          line-height: normal;
          margin: 20px auto 20px 0;
          display: block;
          width: auto;
          max-width: 220px;
          text-align: center;
          display: flex;
          justify-content: center; }
        .section .choice .images-text-row .text .brand {
          font-size: 18px; }
  .section .product-features {
    padding: 35px 15px;
    margin: 100px auto 50px auto;
    border: 10px solid #3486CA;
    background-color: #fff;
    position: relative; }
    .section .product-features .ranking {
      position: absolute;
      max-width: 200px;
      height: auto;
      top: -80px;
      right: 50px; }
      .section .product-features .ranking img {
        max-width: 100%;
        height: auto; }
    .section .product-features h2 {
      padding-left: 20px;
      font-size: 36px;
      font-family: 'Raleway', sans-serif;
      margin-bottom: 15px; }
    .section .product-features p.author {
      color: #e93d3d;
      font-size: 20px;
      padding-left: 20px;
      font-weight: 500; }
    .section .product-features .stars {
      max-width: 100px;
      margin: 10px 0 10px 20px; }
      .section .product-features .stars img {
        max-width: 100%;
        height: auto; }
    .section .product-features .rating {
      font-size: 16px;
      padding-left: 20px; }
      .section .product-features .rating .fa-circle-check {
        color: #37ca37;
        font-size: 18px;
        margin-right: 4px; }
    .section .product-features .image-rating-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 2px solid #D5D3D3;
      border-bottom: 2px solid #D5D3D3;
      margin: 20px 0; }
      .section .product-features .image-rating-row .image-section {
        flex: 1;
        width: 50%; }
        .section .product-features .image-rating-row .image-section .image-container {
          max-width: 450px;
          height: auto;
          margin: 0 auto;
          text-align: center; }
          .section .product-features .image-rating-row .image-section .image-container.smaller {
            max-width: 270px; }
          .section .product-features .image-rating-row .image-section .image-container img {
            max-width: 100%;
            height: auto; }
      .section .product-features .image-rating-row .rating-column {
        flex: 1;
        width: 50%;
        line-height: normal;
        text-align: center; }
        .section .product-features .image-rating-row .rating-column h2 {
          font-size: 100px;
          margin-bottom: 0; }
        .section .product-features .image-rating-row .rating-column h3 {
          font-size: 38px;
          font-weight: 500;
          display: block; }
        .section .product-features .image-rating-row .rating-column a.btn {
          background-color: #FF9900;
          color: #fff;
          text-decoration: none;
          padding: 13px 40px 15px;
          font-weight: 700;
          border-color: #fff;
          border-width: 3px;
          border-style: solid;
          letter-spacing: 0;
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
          border-radius: 50px;
          line-height: normal;
          margin: 20px auto;
          display: block;
          width: auto;
          max-width: 220px;
          display: flex;
          justify-content: center; }
    .section .product-features .pros-cons-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      border-bottom: 2px solid #D5D3D3;
      margin: 35px 0;
      padding: 0 0 10px 0; }
      .section .product-features .pros-cons-row .pros, .section .product-features .pros-cons-row .cons {
        flex: 1;
        width: 50%; }
        .section .product-features .pros-cons-row .pros h2, .section .product-features .pros-cons-row .cons h2 {
          font-size: 36px;
          margin-bottom: 30px;
          font-weight: 800; }
        .section .product-features .pros-cons-row .pros p, .section .product-features .pros-cons-row .cons p {
          margin-bottom: 16px;
          font-size: 20px;
          padding-left: 1.5em; }
          .section .product-features .pros-cons-row .pros p i, .section .product-features .pros-cons-row .cons p i {
            margin-right: 8px; }
      .section .product-features .pros-cons-row .pros h2 {
        color: #1BC7B1; }
      .section .product-features .pros-cons-row .pros p i.fa-circle-check {
        font-size: 20px;
        color: #1BC7B1; }
      .section .product-features .pros-cons-row .cons h2 {
        color: #FF4A4A; }
      .section .product-features .pros-cons-row .cons p i.fa-circle-xmark {
        font-size: 20px;
        color: #FF4A4A; }
    .section .product-features .images-text-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 30px; }
      .section .product-features .images-text-row .images {
        flex-grow: 1;
        flex-basis: calc(30% - 30px); }
        .section .product-features .images-text-row .images .image-container {
          max-width: 100%;
          height: auto;
          padding: 5px;
          margin-right: auto;
          margin-right: auto;
          text-align: center; }
          .section .product-features .images-text-row .images .image-container.smaller {
            max-width: 180px; }
          .section .product-features .images-text-row .images .image-container.no-border img {
            border: none; }
          .section .product-features .images-text-row .images .image-container img {
            max-width: 100%;
            height: auto;
            border: 3px solid rgba(0, 0, 0, 0.7);
            text-align: center; }
      .section .product-features .images-text-row .text {
        flex-grow: 1;
        flex-basis: calc(70% - 30px); }
        .section .product-features .images-text-row .text.pad-top {
          padding-top: 70px; }
        .section .product-features .images-text-row .text p {
          line-height: 1.5em; }
        .section .product-features .images-text-row .text a.btn {
          background-color: #FF9900;
          color: #fff;
          text-decoration: none;
          padding: 13px 40px 15px;
          font-weight: 700;
          border-color: #fff;
          border-width: 3px;
          border-style: solid;
          letter-spacing: 0;
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
          border-radius: 50px;
          line-height: normal;
          display: block;
          width: auto;
          max-width: 220px;
          text-align: center;
          margin: 20px auto 20px 0;
          display: flex;
          justify-content: center; }
          .section .product-features .images-text-row .text a.btn.gray {
            background-color: #cbd5e0; }
        .section .product-features .images-text-row .text h3 {
          font-size: 32px;
          font-family: 'Raleway', sans-serif; }
  .section.references .content {
    max-width: 900px; }
  .section.references p {
    margin-bottom: 15px; }
    .section.references p.larger {
      font-size: 20px; }
    .section.references p.smaller {
      font-size: 15px; }
  .section.references a {
    word-wrap: break-word;
    font-size: 15px;
    text-decoration: none;
    color: #000;
    margin-bottom: 5px;
    display: block; }
    .section.references a:hover {
      text-decoration: underline; }

footer {
  background-color: #FF4A4A;
  color: #fff; }
  footer .content {
    max-width: 1130px;
    margin: 0 auto; }
    footer .content a {
      color: #fff;
      text-decoration: none; }
    footer .content .links {
      padding: 24px 16px 20px 16px;
      border-bottom: 2px solid #fff; }
      footer .content .links .row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between; }
        footer .content .links .row .column {
          display: flex;
          flex-direction: column;
          align-items: flex-start; }
          footer .content .links .row .column b {
            font-size: 18px;
            margin-bottom: 26px; }
          footer .content .links .row .column a {
            margin-bottom: 15px;
            font-weight: bold;
            font-size: 15px; }
            footer .content .links .row .column a i {
              margin-right: 4px; }
    footer .content .copyright {
      padding: 24px 16px 40px 16px; }
      footer .content .copyright p {
        text-align: center;
        margin-bottom: 20px;
        font-size: 14px; }

@media screen and (max-width: 1000px) {
  .section .product-features .ranking {
    position: absolute;
    max-width: 140px;
    height: auto;
    top: -70px;
    right: 30px; }
  .section .product-features h2 {
    max-width: 80%;
    line-height: normal; } }

@media screen and (max-width: 768px) {
  .section .list-container.expandable .list-content {
    display: none; }
  .section .product-features .images-text-row .text.pad-top {
    padding-top: 0; }
  .comparaison-table-grid-container .grid-item {
    display: flex;
    justify-content: center;
    align-items: center; }
  .section .product-features .pros-cons-row .pros h2, .section .product-features .pros-cons-row .cons h2 {
    padding-left: 0; }
  .section .product-features .pros-cons-row .pros p, .section .product-features .pros-cons-row .cons p {
    padding-left: 0; }
  #main-container .tap-headline-to-expand {
    display: flex; }
  .section .list-container.expandable {
    border-color: #fff;
    border-width: 8px;
    box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3); }
    .section .list-container.expandable .title {
      cursor: pointer; }
      .section .list-container.expandable .title h3 {
        font-size: 21px;
        display: flex;
        align-items: center; }
        .section .list-container.expandable .title h3 i {
          display: inline-block !important;
          font-size: 15px;
          margin-right: 12px; }
    .section .list-container.expandable.red .list-content {
      border: 2px solid #FF4A4A; }
    .section .list-container.expandable.alert-red .list-content {
      border: 2px solid #e93d3d; }
  .section h2.bigger {
    font-size: 28px; }
  .section .product-features .pros-cons-row {
    flex-direction: column;
    gap: 20px; }
    .section .product-features .pros-cons-row .pros {
      width: 100%; }
    .section .product-features .pros-cons-row .cons {
      width: 100%; }
  .section .product-features .images-text-row {
    flex-direction: column; }
    .section .product-features .images-text-row .images {
      width: 100%; }
    .section .product-features .images-text-row .text {
      width: 100%;
      padding-top: 20px; }
  .section .product-features .ranking {
    position: absolute;
    max-width: 110px;
    height: auto;
    top: -50px;
    right: 30px; }
  .section .product-features h2 {
    font-size: 30px; }
  .section .product-features .image-rating-row {
    flex-direction: column; }
    .section .product-features .image-rating-row .image-section .image-container {
      max-width: 550px;
      width: 100%; }
    .section .product-features .image-rating-row .rating-column {
      width: 100%; }
      .section .product-features .image-rating-row .rating-column h2 {
        max-width: unset;
        font-size: 70px; }
      .section .product-features .image-rating-row .rating-column h3 {
        margin-bottom: 40px; }
  .section h3.center {
    font-size: 30px; }
  .landing .content .link-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; }
  .section .image-text-row .image-container {
    width: 100px; }
  .section .comparaison-table-grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
    .section .comparaison-table-grid-container .grid-item {
      padding: 10px 6px;
      font-size: 16px; }
      .section .comparaison-table-grid-container .grid-item.feature {
        font-size: 16px; }
      .section .comparaison-table-grid-container .grid-item i.fa-solid {
        font-size: 22px; }
  footer .content .links .row {
    flex-direction: column; } }

@media screen and (max-width: 560px) {
  .section .product-features .pros-cons-row {
    margin: 10px 0; }
  .section .product-features .images-text-row {
    gap: 5px; }
  #advertorial-disclosure-popup {
    max-width: calc(100% - 20px); }
    #advertorial-disclosure-popup .content {
      padding: 17px 20px; }
      #advertorial-disclosure-popup .content h4 {
        font-size: 17px;
        margin-bottom: 16px; }
      #advertorial-disclosure-popup .content p {
        font-size: 15px;
        margin-bottom: 14px; }
  .landing {
    padding-bottom: 10px; }
  .landing .content .row .date {
    font-size: 15px; }
  .landing .content .row {
    flex-direction: column;
    gap: 14px; }
  .landing .content .link-btns {
    flex-wrap: wrap;
    margin-bottom: 0; }
    .landing .content .link-btns a.btn {
      padding: 9px 13px; }
      .landing .content .link-btns a.btn:nth-child(1) {
        display: none; }
      .landing .content .link-btns a.btn:nth-child(2) {
        display: none; }
  .section {
    padding: 20px 0; }
    .section a.btn {
      text-wrap: nowrap; }
    .section .product-features .ranking {
      position: absolute;
      max-width: 80px;
      height: auto;
      top: -40px;
      right: 20px; }
    .section .product-features h2 {
      font-size: 26px; }
    .section .product-features .image-rating-row {
      flex-direction: column; }
      .section .product-features .image-rating-row .image-section {
        width: 100%; }
        .section .product-features .image-rating-row .image-section .image-container {
          max-width: 100%;
          width: 100%; }
      .section .product-features .image-rating-row .rating-column h2 {
        max-width: unset;
        font-size: 32px;
        padding-left: 0; }
      .section .product-features .image-rating-row .rating-column h3 {
        font-size: 30px;
        margin-bottom: 25px; }
  .section h3.center {
    font-size: 26px; }
  .section .comparaison-table-grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
    .section .comparaison-table-grid-container .grid-item .image-container {
      max-width: 50px; }
  .section .product-features .pros-cons-row .pros h2, .section .product-features .pros-cons-row .cons h2 {
    font-size: 25px; }
  .section .product-features .pros-cons-row .pros p, .section .product-features .pros-cons-row .cons p {
    font-size: 18px; }
  .section .product-features .images-text-row .text h3 {
    font-size: 25px; }
  .section .choice .images-text-row {
    flex-direction: column; }
    .section .choice .images-text-row .images {
      width: 100%; }
    .section .choice .images-text-row .text {
      width: 100%; }
  .section .choice {
    padding: 0 8px 0 8px; }
  .section .choice .images-text-row .text h3 {
    font-size: 25px; }
  .section .choice .images-text-row .text .pros p {
    font-size: 18px; }
  .section .choice .images-text-row .text .pros p i.fa-circle-check {
    font-size: 18px; }
  .section {
    padding: 20px 10px 10px 10px; }
    .section.references {
      padding: 20px 10px; }
      .section.references p {
        font-size: 14px; }
      .section.references a {
        font-size: 14px; }
  .landing .content .link-btns a.btn:nth-child(2) {
    padding: 18px 22px; }
  .landing .content .row .advertorial #advertorial-disclosure {
    font-size: 16px; }
  .landing .content .row .advertorial span {
    display: none; }
  .section .image-text-row {
    flex-direction: column; }
    .section .image-text-row .image-container {
      max-width: 100%;
      min-width: 160px; }
    .section .image-text-row .text {
      max-width: 100%; }
      .section .image-text-row .text h3 {
        font-size: 26px; }
  .section .image-text-row {
    padding-top: 10px; }
  .section .choice .images-text-row .text {
    padding: 20px 0; }
  .section .choice .images-text-row .text .pros {
    margin-top: 20px; } }

@media screen and (max-width: 480px) {
  .landing .content .row .advertorial #advertorial-disclosure {
    font-size: 13px; }
  .landing .content h2 {
    margin-bottom: 5px; }
  .landing .content h3 {
    margin-top: 0; }
  .section.references p.larger {
    font-size: 17px; }
  .section .bordered-1 {
    font-size: 20px; }
  .section .list-container .list-content ul li {
    font-size: 18px; }
  .section h2.bigger {
    font-size: 28px; }
  .section .product-features .pros-cons-row {
    flex-direction: column;
    gap: 15px; }
  .section p {
    font-size: 18px; }
  .section .choice .images-text-row .text {
    padding: 20px 0; }
  .section .choice .images-text-row .text .pros p {
    padding-left: 15px; }
  .section .choice .images-text-row .text a.btn {
    margin-top: 0; }
  .section .choice .images-text-row .text .pros {
    padding-left: 0; }
  .section .list-container.expandable .list-content ul li {
    font-size: 15px;
    margin-bottom: 10px; }
  .section .list-container .title h3 {
    font-size: 25px;
    line-height: 1.3em; }
  .section .list-container.expandable .title {
    cursor: pointer; }
    .section .list-container.expandable .title h3 {
      font-size: 21px;
      display: flex;
      align-items: center; }
      .section .list-container.expandable .title h3 i {
        font-size: 15px;
        margin-right: 12px; }
  .section a.btn {
    text-wrap: wrap; }
  .landing .content h2 {
    font-size: 41px; }
  .landing .content h3 {
    font-size: 24px; }
  .landing .content .link-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; }
  .section .image-container.center {
    padding-right: 10px;
    padding-left: 10px; }
  .section .comparaison-table-grid-container .grid-item .image-container {
    padding: 0; } }

@media screen and (max-width: 380px) {
  .section .comparaison-table-grid-container .grid-item .image-container {
    max-width: unset;
    min-width: unset;
    width: 100%;
    height: 100%; }
  .section .comparaison-table-grid-container .grid-item .image-container img {
    width: 100%;
    max-width: 100%;
    max-height: 100%; }
  .section .comparaison-table-grid-container {
    padding: 15px 5px 20px 5px; }
  .section .comparaison-table-grid-container .grid-item {
    padding: 5px;
    font-size: 13px; }
  .section .comparaison-table-grid-container .grid-item.feature {
    font-size: 14px;
    line-height: 1.5em; }
  .section .comparaison-table-grid-container .grid-item i.fa-solid {
    font-size: 20px; }
  .section .product-features {
    border-width: 6px; }
  .section .product-features h2, .section .product-features p.author, .section .product-features .rating {
    padding-left: 0; }
  .section .product-features .stars {
    margin-left: 0; } }
