body {
    font-optical-sizing: auto;
    color: #212529;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: radial-gradient(circle at top, #e9fff7, #f5fffc);
    margin: 0;
    padding: 0;
    font-family: REM, sans-serif;
    font-size: 14px;
    line-height: 1.75;
}
.pd-sm{
    padding: 30px 0px;
}

h1 { margin: 0; font-size: 32px;}
p  { margin: 0;}
.position-relative { position: relative ;}
.al-center{align-items: center;}
h6 {
    font-size: .875rem;
    line-height: 1.25rem;
    margin: 0;
    color: #00a884;
}
a{text-decoration: none; color: #333}
li{list-style-type: none;}
ul{margin: 0; padding: 0}


header {
    padding: 10px 0px;
}
.hero-header{
    background: #00a884 url(map-bg.svg) no-repeat;
    color: #fff;
    background-position: right;
    background-size: 190px;
    padding: 30px 0;
}

a.logo {
    color: #666;
    text-decoration: none;
    font-size: 12px;
}
a.logo img {
    display: block;
    width: 200px;
}

.tc{margin-bottom: 20px}
ul.list-group {
    column-count: 2;
}
.list-group li a {
    background: #fffafb;
    display: block;
    margin-bottom: 5px;
    border-radius: 6px;
    padding: 5px 10px;
    border: solid 1px #e1d9da;
    font-size: 15px;
}

footer {
    padding-top: 50px;
}
.select {
    border-radius: 18px;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    margin-top: 10px;
    color: #545454;
}
.copyright{
    background: linear-gradient(135deg,#00a884,#1dd3a7);
    padding: 30px 0px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}
.back-to-top {
    background: #00a884;
    border: 1px solid #00a884;
    border-radius: 10px;
    color: #ffffff;
    padding: 5px 1rem;
    position: absolute;
    right: 1rem;
    top: -30px;
    transform: translateY(-50%);
    font-weight: 400;
    text-decoration: none;
}




  .gg-chevron-down {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
}
.gg-chevron-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}
.accordion {
  width: 100%;
  max-width:100%;
  overflow: hidden;
  margin-top: 10px;
  background-color: #fff;
  border: 2px solid #fff9fa;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.accordion__intro {
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
    background: #ffffff;
}
.accordion__intro span{
  position: absolute;
  right: 30px;
  top: 35%;
  transition: all 0.3s ease-in-out;
}
.accordion.accordion__active .accordion__intro span{
  transform: rotate(180deg);
}
.accordion__content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
}
.accordion h4,
.accordion p {
  margin: 0;
}
.accordion h4 {
    color: #00a884;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 10px;
}
.accordion h4 img{
   width: 25px;
}
.accordion p {
  color: #6c6d6e;
  font-size: 15px;
  margin: 0;
  line-height: 28px;
}
.accordion__active .accordion__content {
  padding:20px;
  opacity: 1;
}



.container {
    max-width: 992px;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.col-md-4{
    flex: 0 0 auto;
    width: 25%;
}
.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-md-8 {
    flex: 0 0 auto;
    width: 75%;
}
.col-md-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
}

@media (max-width: 767px) {
    ul.list-group {
        column-count: 1;
    }
    .row{
        padding: 0px 10px;
    }
    .col-md-4, .col-md-6, .col-md-8 {
        width: 100%;
    }
    a.logo img {
        margin: 0 auto;
    }
    header {
        text-align: center;
    }
}