.wrapper {
    display: flex;
    flex-direction: column;
}

.wrapper .header {
    width: 100%;
    display: flex;
    background-color: var(--main);
    border-bottom-left-radius: 80% 25%;
    border-bottom-right-radius: 80% 25%;
    padding-top: 2%;
    text-align: center;
}

.wrapper .header .header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin-bottom: 2rem;
    color: white !important;
}

.wrapper .header .header-content .header-heading {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.wrapper .header .header-content .header-title {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.wrapper .header .header-subtitle {
    font-size: 1rem;
    margin: 1rem 0;
}

.select-region {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    text-align: center;
    gap: 2.5rem;
    margin-bottom: 20px;
}

.regionHeader{
    color: var(--fontAccent);
    font-size: 1.8rem;
}

.region {
    display: flex;
    flex-wrap: row wrap;
    align-items: center;
    justify-content: center;
}

.region-map path{
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    column-gap: 25px;
}

.region-item{
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  color: var(--fontAccent);
}

.region-item:hover i{
    background-color: var(--main) !important;
    color: white !important;
}

.region-item i{
    font-size: 1.2rem;
    color: var(--main);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #13388125;
    border-radius: 20px;
    padding: 5px;
    transition: all 0.3s ease;
}
