@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
/* Carousel wrapper */
.gw-carousel {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
}

.gw-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gw-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.gw-slide img {
  width: 100%;
  height: 100%;
}

.gw-dots {
  position: absolute;
  bottom: 15px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.gw-dot {
  width: 38px;
  height: 8px;
  border: none;
  background: #E0E4EC;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gw-dot.active {
  background: #E0B516;
}

/* Random List */
.gw-list-container {
  display: grid;
  grid-template-rows: repeat(2, auto);
  row-gap: 40px;
  max-width: 1320px;
  justify-content: center;
  align-items: center;
}

.gw-list-container .gw-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.gw-list-container .gw-header .gw-header-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 34px;
  font-size: clamp(14px, calc(1vw + 1rem), 30px);
  color: #6E7DA8;
  font-weight: 600;
  letter-spacing: 0px;
  font-family: 'Open Sans', Tahoma;
}

.gw-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  justify-content: center;
}

.gw-item:nth-child(1),
.gw-item:nth-child(2),
.gw-item:nth-child(3) {
  grid-column: span 4;
}

.gw-item:nth-child(4),
.gw-item:nth-child(5),
.gw-item:nth-child(6),
.gw-item:nth-child(7) {
  grid-column: span 3;
}


.gw-item {
  text-align: center;
  min-width: 200px;
}
@media (max-width: 1000px) {
  .gw-item {
    max-width: 160px;
    min-width: 100%;
  }
}
@media (max-width: 600px) {
  .gw-item {
    max-width: 120px;
    min-width: 100%;
  }
  .gw-header-text {
    gap: 14px !important;
  }
  .gw-header-text svg {
    width: 34px;
    height: 34px;
  }
}

.gw-item img {
  width: 100%;
  border-radius: 8px;
}

.gw-item a {
  text-decoration: none;
}

.gw-item-name {
  font-weight: 600;
  color: #303881;
  font-size: clamp(14px, calc(1vw + 10px), 30px);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Open Sans', Tahoma;
}

.gw-paginator {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.gw-page {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  color: #656565;
  font-weight: bold;
  transition: all 0.2s ease;
}

.gw-page:hover {
  border-color: #6E7DA8;
}

.gw-page.active {
  background: #6E7DA8;
  color: #fff;
  border-color: #6E7DA8;
}

.gw-button {
  display: inline-block;
  line-height: 36px;
  padding: 0 5px;
  color: #656565;
}

.gw-header .gw-header-text .svg-gog {
  background-color: #303881;
}

.wp-image-44 {
  position: relative;
  bottom: 4px;
}

.wp-block-navigation .gw_menu_button {
  padding: 10px 24px;
  background-color: #0E1431;
  border-radius: 10px;
  cursor: pointer;
}

.wp-block-navigation .gw_menu_button:hover {
  background-color: #303881;
}

.wp-block-navigation .gw_menu_button .wp-block-navigation-item__content{
  text-decoration: none;
  font-weight: 500;
  color: #E0E4EC;
  padding: 0;
}

.wp-block-navigation .gw_menu_button:hover .wp-block-navigation-item__content{
  background-color: #303881;
}

.wp-block-navigation .gw_highlight_menu_button {
  padding: 10px 24px;
  background-color: #e0b516;
  border-radius: 10px;
  cursor: pointer;
  display: none;
}

.gw_highlight_menu_button .wp-block-navigation-item__content::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url('../images/download-icon.png') no-repeat center / contain;
}

.gw_highlight_menu_button:hover .wp-block-navigation-item__content::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url('../images/download-icon-hover.png') no-repeat center / contain;
}

.wp-block-navigation .gw_highlight_menu_button:hover {
  background-color: #303881;
}

.wp-block-navigation .gw_highlight_menu_button .wp-block-navigation-item__content{
  text-decoration: none;
  color: #303881;
  font-weight: 600;
  padding: 0;
}

.wp-block-navigation .gw_highlight_menu_button:hover .wp-block-navigation-item__content {
  background-color: #303881;
  color: #E0E4EC;
}


.wp-site-blocks {
  padding-top: 0;
  padding-bottom: 0;
}

.hidden {
  display: none !important;
}