.header {
  background-color: rgba(197, 17, 25, 1);
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.Header-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.font-bold {
    font-weight: 700;
}
.header__title {
    font-size: 41px;
    margin: 0;
    color: white;
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;

}
.intro__uptitle {
    display: inline-block;
    font-weight: 700;
    background: rgba(197, 17, 25, 1);
    padding: 5px;
    margin-top: 30px;
    color: white;
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
.font-bold {
    font-weight: 700;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}
.intro__title {
    text-align: center;
    font-size: 45px;
    line-height: 1.4;
    margin-top: 20px;
    color: white;
    
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
}

.p-2 {
    padding: 0.5rem;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.max-w-screen-2xl {
    max-width: 1536px;
}

.flex {
    display: flex
;
}
.w-full {
    width: 100%;
}

.intro {
    background-color: rgba(30, 54, 90, 1);
}

.m-auto {
    margin: auto;
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
.intro__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #ff0000;
}


*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;

}
.intro__update {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}
.button-text__title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin: 40px 0;
    color:  #e5e7eb ;
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
.bar__text {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
}
.bar__wrapper {
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 45px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 70%);
    border-radius: 5px;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 20px;
    position: relative;
    margin: 0 auto 30px;
    z-index: 5;
}

.select {
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    padding: 30px;
    margin-top: 50px;
}
.bar {
    width: 90%;
    height: 45px;
    background-color: #cf1313;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .bar__lines {
    width: 200%;
    height: 100%;
    background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent
    );
    background-size: 40px 40px;
    animation: progress-bar 5s linear infinite reverse;
  }
  
  @keyframes progress-bar {
    100% {
      margin-left: -360px;
    }
  }
  @-webkit-keyframes progress-bar {
    100% {
      margin-left: -360px;
    }
  }
  @-moz-keyframes progress-bar {
    100% {
      margin-left: -360px;
    }
  }
  @-ms-keyframes progress-bar {
    100% {
      margin-left: -360px;
    }
  }
  @-o-keyframes progress-bar {
    100% {
      margin-left: -360px;
    }
  }
  
  .select {
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    padding: 30px;
    margin-top: 50px;
  }
  .select__title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
  }
  .select__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px auto 0;
  }
  .select__item {
    text-align: center;
    width: 31%;
    background: #3699ff;
    border-radius: 8px;
    margin-right: 14px;
    margin-bottom: 14px;
  }
  .select__item:nth-child(3n) {
    margin-right: 0;
  }
  .select__item:hover {
    background-color: #266cb3;
  }
  .select__item-link {
    font-size: 26px;
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }
  
  .select__button {
    width: 100%;
    font-size: 28px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #3699ff;
    border-radius: 8px;
    padding: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto;
  }
  .select__button:hover {
    background-color: #266cb3;
  }
  .bg-\[\#F4F4F4\] {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
}


.bg-\[\#F4F4F4\] {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
}
.bg-custom {
    background-color: #F4F4F4;
}
.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}


.font-semibold {
    font-weight: 800;
}


.mr-10 {
    margin-right: 2.5rem;
}
.font-bold {
    font-weight: 700;
    color: white;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}


.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.text-center {
    text-align: center;
}
.button {
    text-decoration: none;
    background-color: rgb(4, 161, 24);
    padding: 12px 35px;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 35px;
    border-left: 6px solid #145021;
    border-bottom: 6px solid #145021;
   
}