.breakpointWrapper {
  position: relative;
}
.breakpointWrapper::after {
  content: "desktop";
  position: fixed;
  bottom: 7.5%;
  right: 0;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::after {
    content: "mobile";
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::after {
    content: "tablet";
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::after {
    content: "desktop";
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::after {
    content: "widescreen";
  }
}
@media screen and (min-width: 1408px) and (max-width: 1919px) {
  .breakpointWrapper::after {
    content: "fullhd (1440p)";
  }
}
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .breakpointWrapper::after {
    content: "ultrahd (1080p+)";
  }
}
@media screen and (min-width: 2560px) {
  .breakpointWrapper::after {
    content: "qhd (1440p+)";
  }
}
.breakpointWrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 0, 0, 0.9) calc(8.333% - 1px), rgba(255, 0, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 0, 255, 0.9) calc(8.333% - 1px), rgba(0, 0, 255, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 255, 0, 0.9) calc(8.333% - 1px), rgba(0, 255, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 165, 0, 0.9) calc(8.333% - 1px), rgba(255, 165, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1408px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(128, 0, 128, 0.9) calc(8.333% - 1px), rgba(128, 0, 128, 0.9) 8.333%);
  }
}

.three-button-block {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: auto;
  background-color: #8EBA54;
}
.three-button-block .merak-container {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}
.three-button-block .merak-container.has-title {
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .three-button-block .merak-container.has-title {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .three-button-block .merak-container.has-title {
    padding-bottom: 2.5rem;
  }
}
.three-button-block .three-button-title-section {
  padding: 2rem 0;
  text-align: left;
}
.three-button-block .three-button-title-section .three-button-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Public Sans", sans-serif;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.three-button-block .three-button-title-section .three-button-title .title-image {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .three-button-block .three-button-title-section .three-button-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  .three-button-block .three-button-title-section .three-button-title .title-image {
    height: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .three-button-block .three-button-title-section .three-button-title {
    font-size: 2.25rem;
  }
  .three-button-block .three-button-title-section .three-button-title .title-image {
    height: 2.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .three-button-block .three-button-title-section .three-button-title {
    font-size: 2.75rem;
  }
  .three-button-block .three-button-title-section .three-button-title .title-image {
    height: 2.75rem;
  }
}
.three-button-block .three-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.three-button-block .three-button-wrapper:not(.has-title) {
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .three-button-block .three-button-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .three-button-block .three-button-wrapper {
    gap: 1.75rem;
  }
}
.three-button-block .three-button-item {
  background-color: #00355F;
  color: #F1E7D3;
  border-radius: 10.91px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21.82px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  flex: 1;
  min-height: 60px;
  min-width: 180px;
  transition: all 0.3s ease;
}
.three-button-block .three-button-item:hover, .three-button-block .three-button-item:focus {
  background-color: rgb(0, 95.6789473684, 171.5);
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 53, 95, 0.3);
}
.three-button-block .three-button-item:active {
  transform: translateY(0);
}
.three-button-block .three-button-item:focus {
  outline: 3px solid #F2DC7C;
  outline-offset: 2px;
}
@media screen and (max-width: 768px) {
  .three-button-block .three-button-item {
    font-size: 18px;
    padding: 0.875rem 1.5rem;
    width: 100%;
    height: auto;
    min-width: unset;
    flex: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .three-button-block .three-button-item {
    font-size: 20px;
    min-width: 170px;
  }
}
@media screen and (min-width: 1216px) {
  .three-button-block .three-button-item {
    font-size: 22px;
    min-width: 200px;
  }
}
.three-button-block.alignwide .merak-container {
  max-width: 95% !important;
}
.three-button-block.alignfull .merak-container {
  max-width: 100% !important;
  padding: 0 2rem;
}
@media (prefers-contrast: high) {
  .three-button-block .three-button-item {
    border: 2px solid #FFFFFF;
  }
  .three-button-block .three-button-item:hover, .three-button-block .three-button-item:focus {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #000000;
  }
}
@media (prefers-reduced-motion: reduce) {
  .three-button-block .three-button-item {
    transition: none;
  }
  .three-button-block .three-button-item:hover {
    transform: none;
  }
}
