@import "fonts.css";
@import "reset.css";

@media screen and (max-width: 1220px) {
    main {
        padding-top: 50px !important;
    }
}


body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  padding-top: 120px;
}
@media screen and (max-width: 1220px) {
  main {
    padding-top: 90px;
  }
}

[class$=container] {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1280px) {
  [class$=container] {
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  [class$=container] {
    padding: 0 15px;
  }
}

.home {
  background: linear-gradient(270deg, #0C2763 0%, #123D9B 50%, #0C2763 100%);
}

.single-review {
  background-color: #fff;
}

.primary-btn, .review-red-link, .secondary-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.47619px;
  transition: all 0.3s ease-in;
}
.primary-btn:focus, .review-red-link:focus, .secondary-btn:focus {
  box-shadow: 0 0 0 3px #6694FF;
}
.primary-btn:disabled, .primary-btn.disable, .review-red-link:disabled, .review-red-link.disable, .secondary-btn:disabled, .secondary-btn.disable {
  opacity: 0.4;
  pointer-events: none;
}

.primary-btn, .secondary-btn {
  border-radius: 30px;
  padding: 19px 21px;
}

.primary-btn {
  min-width: 290px;
  color: #F9FAFB;
  background-color: #F6A627;
}
.primary-btn:hover {
  background-color: #F59A0A;
}

.secondary-btn {
  border: 1px solid #F6A627;
  background-color: #fff;
  color: #F6A627;
}
.secondary-btn:hover {
  color: #F59A0A;
  border-color: #F59A0A;
}

.review-red-link {
  width: fit-content;
  color: #F6A627;
}
.review-red-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #F6A627;
  transition: all 0.3s linear;
}
.review-red-link:hover {
  color: #F59A0A;
}
.review-red-link:hover:before {
  color: #F59A0A;
}
.review-red-link:focus {
  color: #6694FF;
}
.review-red-link:focus:before {
  background-color: #6694FF;
}

.logo, .main-logo, .other-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.other-logos img{
 padding-left: 10px;
padding-right: 10px;
}





.menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 2;
  color: #fff;
}

/** Filter **/
.container-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  grid-gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .container-filter {
    grid-gap: 10px;
  }
}

.filter-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: fit-content;
  border-radius: 30px;
}
.filter-radio .filter-label img {
  display: block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.filter-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.filter-radio input[type=radio] + .filter-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 25px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #F9FAFB;
  position: relative;
  border-radius: 30px;
  background: rgba(18, 36, 77, 0.5);
}
.filter-radio input[type=radio]:checked + .filter-label {
  background-color: #FFFFFF;
  color: #19336C;
}
.filter-radio input[type=radio]:focus + .filter-label {
  box-shadow: 0 0 0 0.2rem rgba(25, 51, 108, 0.3);
}
.filter-radio input[type=radio]:disabled + .filter-label {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .filter-radio input[type=radio] + .filter-label {
    padding: 14px 18px;
  }
}
@media screen and (max-width: 767px) {
  .filter-radio input[type=radio] + .filter-label {
    padding: 10px 8px;
    font-size: 0;
  }
  .filter-radio .filter-label:after {
    content: attr(data-content);
    display: block;
    font-size: 14px;
  }
  .filter-radio .filter-label img {
    margin-right: 4px;
    width: 14px;
    height: 14px;
  }
}

.breadcrumbs {
  position: relative;
  width: 100%;
  padding: 8px 0;
  background: linear-gradient(270deg, #0C2763 0%, #123D9B 50%, #0C2763 100%);
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-align: right;
  color: #B8C0D1;
}
.breadcrumbs li:not(:last-child):after {
  content: "/";
  display: inline-flex;
  margin: 0 4px;
  position: relative;
}
.breadcrumbs a:hover {
  color: #F6A627;
}

.content-block > * {
  margin-bottom: 40px;
}
.content-block p {
  font-family: "Cabin", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
      color: rgba(255, 255, 255, 0.7);
}


.content-block a {text-decoration: underline #FFF;}

.content-block b {color: #F6A627;}

.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5, .content-block h6 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
      color: #fff;
}
.content-block h2 {
  font-size: 27px;
}
.content-block ul, .content-block ol {
  display: grid;
  row-gap: 10px;
}
.content-block li {
  font-family: "Cabin", "sans-serif";
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}
.content-block li:before {
  position: absolute;
  left: 0;
  color: #F6A627;
  text-align: center;
  display: inline-block;
}

.content-block li strong {
    color: #fff;
    text-decoration: underline #F6A627;
}


.content-block ul li {
  padding-left: 16px;
}
.content-block ul li:before {
  content: "";
  background-color: #F6A627;
  top: 8px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}
.content-block ol {
  list-style: none;
  counter-reset: item;
}
.content-block ol li {
  counter-increment: item;
  padding-left: 28px;
}
.content-block ol li:before {
  content: counter(item) ".";
  --size: 18px;
  left: calc(-1 * var(--size) + 18px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
}



.content-block ul.tick {
  list-style: none; /* Remove list bullets */
  padding: 0;
}

.content-block ul.tick li {padding-left: 36px;}

.content-block ul.tick li::before {
  content: "✅"; /* Insert content that looks like bullets */
    background: none;
    top: 0px;
}






@media screen and (max-width: 1024px) {
  .content-block > * {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .content-block h2 {
    margin-bottom: 15px;
  }
}

/** Header **/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 31px 0 21px;
  background-color: transparent;
  transition: all 0.1s ease-in-out;
  z-index: 22;
}
.header.sticky {
  background: linear-gradient(270deg, #0C2763 0%, #123D9B 50%, #0C2763 100%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 11px 0;
  transition: all 0.1s linear;
}
.header__container {
  padding: 0 25px;
  max-width: 1820px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: clamp(10.75rem, 3.25rem + 10.547vw, 14.5rem);
}
@media screen and (min-width: 1220px) {
  .header__menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 11px 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 11px 0;
  }
  .header__container {
    padding: 0 25px;
  }
}

.header-white {
  background: #FFFFFF;
}
.header-white .menu-btn {
  color: #19336C;
}
.header-white .main-logo {
  color: #19336C;
}
.header-white.sticky {
  background: #fff;
}
.header-white li a {
  color: #19336C;
}
@media screen and (max-width: 1220px) {
  .header-white .responsive-menu li a {
    color: #E8EBF0;
  }
  .header-white .responsive-menu .menu-btn {
    color: #fff;
  }
}

.page-navi {
  background-color: #F3F4F6;
  font-family: "Cabin", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0C2763;
  /*@media screen and (max-width: 1024px) {
    &__list, &__content {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
    &__title {
      cursor: pointer;
      pointer-events: all;
      margin: 0;
    }
    &__title:after {
      content: '';
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 13px;
      width: 24px;
      height: 24px;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 70%;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1.85596L5 5.85596L1 1.85596' stroke='%230C2763' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
      transition: all .3s linear;
    }
    &__title.active:after {
      transform: rotate(180deg);
    }
    &__list {
      width: 100%;
      overflow-x: auto;
      padding: 20px 0;
      li {
        text-align: center;
        width: 100%;
        position: relative;
      }
      li:not(:last-child) {
        margin: 0 0 15px
      }
      li:not(:last-child):before {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: $color-dark-blue;
      }
    }
    a {
      font-size: 18px;
    }
    .navi-toggle-block {
      display: none;
    }
  }*/
}
.page-navi .navi-toggle-block {
  width: 100%;
}
.page-navi a {
  display: flex;
  align-items: center;
}
.page-navi a img {
  display: block;
  margin-right: 5px;
  width: 17px;
  height: 17px;
}
.page-navi a:hover, .page-navi a.active {
  color: #F6A627;
}
.page-navi__content {
  padding: 20px 12px 13px;
}
.page-navi__content, .page-navi__list {
  display: flex;
  align-items: center;
  width: 100%;
}
.page-navi__title {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-bottom: 7px;
  margin-right: clamp(0.625rem, -1.071rem + 4.524vw, 3rem);
  pointer-events: none;
  font-size: 13px;
}
.page-navi__title:after {
  content: ":";
  display: inline-block;
  margin-left: 4px;
}
.page-navi li {
  flex-shrink: 0;
}
.page-navi__list {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 7px;
}
.page-navi__list li:not(:last-child) {
  margin-right: clamp(0.625rem, -1.071rem + 4.524vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .page-navi .navi-toggle-block {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .page-navi {
    /* position: sticky;
     top: 90px;
     width: 100%;
     z-index: 10;*/
    /*&__title {
      display: none;
    }*/
  }
  .page-navi__content {
    padding-left: 0;
    padding-right: 0;
  }
  .page-navi .navi-toggle-block {
    width: calc(100% - 90px);
  }
}

/** Responsive menu (Menu) **/
.responsive-menu {
  transition: all 0.3s linear;
}
.responsive-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
.responsive-menu .icon {
  display: none;
}
.responsive-menu a:hover {
  color: #F6A627;
}
.responsive-menu__head {
  display: none;
}
.responsive-menu__list {
  display: flex;
  align-items: center;
}
.responsive-menu li:not(:last-child) {
  margin-right: clamp(0.938rem, -2.688rem + 5.098vw, 2.75rem);
}
@media screen and (max-width: 1220px) {
  .responsive-menu {
    position: relative;
    right: 0;
    top: 0;
    background-color: #0C2763;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    max-width: 80%;
    min-width: 360px;
    margin-left: auto;
    width: 100%;
    height: 100dvh;
    transform: translateX(100%);
    z-index: 10;
  }
  .responsive-menu a {
    text-transform: capitalize;
    font-family: "Cabin", sans-serif;
    font-weight: 700;
    font-size: 23px;
    letter-spacing: 0.02em;
    color: #E8EBF0;
  }
  .responsive-menu .icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .responsive-menu-js {
    background-color: rgba(15, 23, 42, 0.8);
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100dvh;
    right: 0;
    top: 0;
    z-index: 20;
    transition: all 0.3s linear;
  }
  .responsive-menu .logo {
    width: 60px;
  }
  .responsive-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #475C89;
  }
  .responsive-menu__head, .responsive-menu__nav {
    padding: 25px 20px;
    width: 100%;
  }
  .responsive-menu__nav {
    padding-top: 70px;
    position: relative;
  }
  .responsive-menu__nav:before {
    content: attr(data-info);
    display: block;
    width: fit-content;
    margin-bottom: 45px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 23px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  .responsive-menu__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: calc(100dvh - 280px);
    overflow: hidden;
    overflow-y: auto;
  }
  .responsive-menu li:not(:last-child) {
    margin: 0 0 45px;
  }
}

.show-menu {
  overflow: hidden;
}
.show-menu .responsive-menu {
  transform: translateX(0);
  transition: all 0.3s linear;
}
.show-menu .responsive-menu-js {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}

/** Hero Section **/
.s-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-hero__info {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;

}
.s-hero__title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2.313rem, 1.261rem + 2.803vw, 4.625rem);
}

.s-hero__text {
  font-family: "Cabin", sans-serif;
  font-size: clamp(1.25rem, 1.051rem + 0.53vw, 1.688rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  padding: 10px;
}
.s-hero__title span {
  color: #F6A627;
}
.s-hero__decor {
  max-width: 498px;
}
@media screen and (max-width: 1024px) {
  .s-hero {
    padding: 20px 0;
  }
  .s-hero__title {
    margin-bottom: 16px;
  }
  .s-hero__decor {
    max-width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .s-hero__title {
    margin-bottom: 10px;
  }
  .s-hero__decor, .s-hero__text {
    display: none;
  }
}

/** Casino Card **/
.s-cards {
  padding: 0 0 45px;
}
@media screen and (max-width: 767px) {
  .s-cards .container-filter {
    grid-gap: 4px;
    margin-bottom: 20px;
  }
  .s-cards__container {
    padding: 0 10px;
  }
}


.s-cards__heading {
width: 100%;
    margin: 0 auto;
    padding: 15px;
text-align: center;
background: #fff;
color: #000;
border-top-left-radius: 18px;
border-top-right-radius: 18px;
margin-bottom: 20px;
border: 0.2em solid #f6a627;
}

.s-cards__heading h2 {    
font-size: 30px;
}


.s-cards__heading p {    
padding: 10px;
font-size: 16px;
}




/** Footer **/
.footer {
  background: linear-gradient(270deg, #0C2763 0%, #123D9B 50%, #0C2763 100%);
  padding: 38px 0;
}
.footer__content {
  display: grid;
  justify-content: center;
  text-align: center;
  row-gap: 30px;
}
.footer__top {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.footer__text {
  margin: 0 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #B8C0D1;
}
.footer__text span, .footer__text a:hover {
  color: #F6A627;
}
.footer__text a:hover {
  text-decoration: underline;
}

.footer__text.left
{text-align:left;}

.footer__text.right
{text-align:right;}

.footer__text.right ul li
{display:inline; padding: 0 10px 0 10px; border-right: 1px solid #fff; }


.footer__text.right ul li:last-child {
  border-right: none; 
}


.footer .flag-icon {
  width: 30px;
  height: auto;
}
.footer__logo {
  margin: 0 auto;
}

.footer__logo span {height: 58px;}

.footer__logo img {padding: 10px;     height: revert-layer;}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
  .footer__text {
    max-width: 300px;
    margin: 0 auto;
    font-size: 12px;
  }
  .footer__text span {
    color: #B8C0D1;
  }
  .footer__content {
    row-gap: 15px;
  }
  .footer .flag-icon {
    display: none;
  }

.footer__text.left
{width:100%;}

}



/* Table Header */

  .table-header {
    padding: 0.5rem 0;
    font-family: system-ui, sans-serif;
    text-align: center;
    margin: 0 auto;
  }

   .table-header .features {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 0.75rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    color: #e5e7eb;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

   .table-header .features li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    justify-content: center;
  }

  .table-header .features li:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.25rem;
    background: rgba(229, 231, 235, 0.18);
    margin-right: 1rem;
  }

  .i {
    width: 1.05em;
    height: 1.05em;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    flex: 0 0 auto;
    opacity: 0.9;
  }

  /* Responsive: 2 rows on small screens (3 on top, 2 below) */
  @media (max-width: 640px) {
    .table-header .features {
     /* grid-template-columns: repeat(3, 1fr);  */
      display: unset;
     font-size: 14px; 
    }

    .table-header .features li:not(:first-child)::before {
      display: none;
    }

    .table-header .features li {
      justify-content: center;
     padding-right: 10px;
    }
  }



/**** Casino page ****/


.category_table {
  margin: 0 auto;
  counter-reset: item-counter;
}

/* Each item row */
.category_table .item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 33px 36px rgba(207, 211, 222, 0.2), 0 1px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  overflow: visible; /* Allow pseudo-element to be visible */
}

.category_table .item:hover {  box-shadow: 0 0 0 0.2rem #F6A627;}


/* Left side content */
.category_table .item .content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right side image */
.category_table .item .image {
  position: relative; /* Needed for ::before positioning */
  width: 150px;
  background-color: #18233d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Number badge */
.category_table .item .image::before {
  counter-increment: item-counter;
  content: counter(item-counter);
  position: absolute;
  left: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  background-color: var(--primary-color, #c90838); /* Corrected typo */
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  user-select: none;
  z-index: 2; /* Ensure it's visible above image */
}

/* Responsive image */
.category_table .item .image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Title styling */
.category_table .item .content h3.title {
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
  color: #19336C;
}

/* Paragraph styling */
.category_table .item p {
  margin: 0;
  font-weight: 800;
  line-height: 1.8;
  font-size: 14px;
  color: #95A1BB;
  text-transform: uppercase;
}

.category_table .button {
  padding: 19px 21px;
  text-align: center; /* Better button alignment */
align-content: center;
}

.category_table .button a {
  display: inline-block;
  padding: 19px 21px;
  background-color: #F6A627;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 290px;
  text-align: center;
}

.category_table .button a:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.category_table .button a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive layout */
@media (max-width: 768px) {
  .category_table .item {
    flex-direction: column;
  }

  .category_table .item .image {
    width: 100%;
    height: 100px;
    padding: 0;
  }

  .category_table .item .content {
    padding: 10px;
  }

  .category_table .button {
    padding: 10px 19px 21px;
  }

  .category_table .button a {
    min-width: 100%;
  }

  .category_table .item .image::before {
    top: 4%;
    left: 10px;
  }
}




/* Featured card */
.feature-card {
  grid-template-columns: repeat(auto-fit, minmax(79px, 1fr));
  align-items: center;
}
.feature-card, .feature-card__item {
  display: grid;
}
.feature-card__item {
  grid-template-rows: 56px 75px 38px;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
}
.feature-card .title, .feature-card .thumbnail, .feature-card .value {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.feature-card .title {
  align-items: flex-start;
}
.feature-card .thumbnail {
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
  border-top: 1px solid #E5E7EB;
}
.feature-card .thumbnail img {
  width: 35px;
  height: 35px;
}
.feature-card .value {
  align-items: flex-end;
}
@media screen and (max-width: 992px) {
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card__item {
    padding: 11px 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
  }
  .feature-card .thumbnail {
    align-items: center;
    border: none;
  }
  .feature-card .title, .feature-card .value {
    align-items: center;
    max-width: 100px;
    font-size: 17px;
  }
}


/** button top */
#returntop {
  position: fixed;
  bottom: 180px;
  right: 12px;
  width: fit-content;
  height: auto;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  #returntop {
    bottom: 140px;
  }
}

.back-to-top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(270deg, #0C2763 0%, #123D9B 50%, #0C2763 100%);
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.06) 0 1px 2px 0;
}
.back-to-top-btn svg {
  width: 32px;
  height: auto;
}
.back-to-top-btn svg path {
  stroke: #F6A627;
}

.home #returntop {
  right: 25px;
  bottom: 50px;
}
.home .back-to-top-btn {
  background: #F6A627;
}
.home .back-to-top-btn svg path {
  stroke: #fff;
}

/*# sourceMappingURL=style.css.map */

/* Container for all items */
.special-box {
  margin: 0 auto;
  counter-reset: item-counter;
}

/* Each item row */
.special-box .item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 33px 36px rgba(207, 211, 222, 0.2), 0 1px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
}

/* Left side content */
.special-box .item .content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right side image */
.special-box .item .image {
  width: 150px;
  background-color: #18233d;
  display: flex;
  align-items: center;
  justify-content: center;
 padding: 10px;
}

/* Responsive image */
.special-box .item .image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Title styling */
.special-box .item .content h3.title {
  position: relative;
  padding-left: 45px; /* space for number box */
  margin-bottom: 10px;
  font-size: 20px;
  color: #121c35;
  font-weight: 600;
}

.special-box .item .content h3.title::before {
  counter-increment: item-counter;
  content: counter(item-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: var(--primery-color, #c90838); /* fallback red */
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  user-select: none;
}

/* Paragraph styling */
.special-box .item p {
  margin: 0;
  font-size: 15px;
  color: #5e636f;
  line-height: 1.8;
}

/* Responsive layout */
@media (max-width: 768px) {
  .special-box .item {
    flex-direction: column;
  }

  .special-box .item .image {
    width: 100%;
    height: 180px;
  }
}



/* Base layout: 5 columns */
.info-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px; 
  padding: 10px;
}

.card {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
  text-align: center;
}

.card img {
  width: 50%;
  height: auto;
}

.card .container {
  padding: 10px;
}

/* Responsive: 2 columns below 600px */
@media screen and (max-width: 600px) {
  .info-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 column below 400px */
@media screen and (max-width: 400px) {
  .info-card {
    grid-template-columns: 1fr;
  }
}







