body {
  background: #c0e683;
  font-family: sans-serif;
  font-size: medium;
  color: #333333;
  font-family: "Poppins", sans-serif;
  padding: 2em 1em 0;
}
a {
  color: #15a3b8;
}
.main-section {
  padding: 20px 30px;
}
.round {
  border-radius: 1rem;
}

footer {
  background: #c0e683;
  padding-top: 1em;
  padding-bottom: 1em;
}

.navbar-default {
  background-color: #c0e683;
  border-color: #e7e7e7;
}

header {
  padding-top: 1em;
}

header h1 {
  color: #333333;
}
header h1 a.logo {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
header h1 a:link {
  color: #333333;
}
header h1 a:visited {
  color: #333333;
}
header h1 a.logo:hover {
  text-decoration: none;
  color: #15a3b8;
}
h2 {
  font-size: x-large;
  font-weight: bold;
}

h3 {
  font-size: medium;
  font-weight: bold;
}
.default-form .form-control {
  border-radius: 0;
  min-height: 45px;
}
.default-form .btn {
  border-radius: 0;
  min-height: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

.default-form .form-group > label {
  font-weight: bold;
}
.radio-group {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}

.radio-group .label {
  color: #191919;
  font-size: 14px;
  font-weight: 400;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-weight: bold;
}

.radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
  width: 30%;
  max-width: 100%;
  min-width: 150px;
}

.radio-group label .radio-control {
  position: absolute;
  top: 5px;
  left: 0;
  opacity: 0;
}

.radio-group label span {
  font-size: 14px;
  /* font-family: "Bai Jamjuree", sans-serif; */
  font-weight: 500;
  color: #191919;
  line-height: 1.4;
}

.radio-group label .check {
  background-color: transparent;
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.radio-group label .check:after {
  position: absolute;
  top: 2px;
  left: 2px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.radio-group label input:checked + .check {
  border: 1px solid #191919;
}

.radio-group label input:checked + .check:after {
  background-color: #191919;
}

.radio-group label:hover .check {
  border: 1px solid #191919;
}

@media screen and (max-width: 575px) {
  .navbar {
    display: block;
    text-align: center;
  }
  .navbar-nav {
    flex-direction: row;
    justify-content: center;
    column-gap: 30px;
  }
}
