@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap');

:root {
  --primary-color: #008fd6;
  --text-shadow-color: rgba(0, 143, 214, 0.3);
  --border-color: #97d3ff;
  --gray-color: #4f4f4f;
  --soft-gray-color: #f7f7f9;
  --gray2-color: #93a6b4;
  --gray3-color: #f2f2f2;
  --gray4-color: #dddddd;
  --gray5-color: #828282;
  --gray6-color: #bdbdbd;
  --background-color: #f1faff;
}

* {
  font-family: 'Poppins', sans-serif;
}

section {
  padding-top: 70px;
  padding-bottom: 120px;
}

.title {
  color: var(--primary-color);
  font-size: 48px;
  text-shadow: 50px 20px 40px var(--text-shadow-color);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px;
}

.title-white {
  color: white;
  font-size: 48px;
  text-shadow: 50px 20px 40px var(--text-shadow-color);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px;
}

.btn-primary {
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--gray3-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  border: none;
}

.input-group-text {
  background-color: white;
  border-right: none;
}

input {
  border-left: none !important;
}

.btn-primary:hover {
  background: var(--primary-color);
  opacity: 0.8;
}

.news .container,
.bureaucratic .container {
  z-index: 10;
  position: relative;
}

.news,
.bureaucratic {
  position: relative;
  overflow: hidden;
}

.news .imgTop {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
}

.news .imgBottom {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 250px;
}

.bureaucratic .imgTop {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
}

.bureaucratic .imgBottom {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
}

.navbar {
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 143, 214, 0.1);
}

.nav-link {
  color: var(--gray2-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.018px;
  margin-right: 20px;
  text-transform: uppercase;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #fff;
  padding: 14px 8px;
}

.navbar .dropdown-item {
  color: var(--gray2-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.018px;
  text-transform: capitalize;
  margin-top: 10px;
}

.carousel-inner {
  padding-top: 100px;
  background-color: white;
}

.carousel-inner .banner {
  width: 100%;
  height: auto;
}

.carousel-inner .next {
  margin-bottom: 30px;
  height: 20px;
}

.header img {
  width: 80%;
}

.header .col-lg-6:first-child {
  padding-top: 160px;
}

.header .col-lg-6:last-child {
  padding-top: 160px;
}

.carousel-inner h3 {
  color: var(--gray2-color);
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.carousel-inner p {
  color: black;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.carousel-indicators {
  margin-bottom: -2rem;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: var(--gray2-color) !important;
}

.carousel-indicators .active {
  background-color: var(--primary-color) !important;
}

.service {
  background-color: var(--primary-color);
}

.service .wrapper {
  margin-top: 20px;
  border-radius: 20px;
  display: flex;
  padding: 20px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  background-color: white;
}

.service .accordion-collapse {
  margin-top: 20px;
  border-radius: 20px;
  padding: 20px 50px;
  background-color: white;
}

.service .accordion-collapse p {
  margin-top: inherit;
  color: var(--primary-color);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.service .wrapper h4 {
  color: var(--primary-color);
  text-align: center;
  font-size: 20px;
}

.service .image {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.service .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision h4 {
  color: var(--primary-color);
  text-shadow: 50px 20px 40px var(--text-shadow-color);
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
}

.vision .text-vision {
  color: var(--gray-color);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
}

.vision .text-mision {
  color: var(--gray-color);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  margin-top: 80px;
  text-transform: capitalize;
}

.vision .wrapper {
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  padding: 38px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  background-color: white;
  margin-top: 20px;
}

.vision .wrapper h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.vision .wrapper p {
  color: var(--gray-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-transform: capitalize;
}

.vision .wrapper:hover {
  background-color: var(--primary-color);
  cursor: pointer;
}

.vision .wrapper:hover h5,
.vision .wrapper:hover p {
  color: white;
}

.news {
  background-color: var(--background-color);
  margin-top: 80px;
}

.news .image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px !important;
}

.news .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .image .tag {
  border-radius: 10px;
  background: var(--primary-color);
  position: absolute;
  bottom: 30px;
  left: 20px;
  min-width: 45%;
  padding: 12px;
  text-align: center;
  color: var(--gray3-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.news span {
  color: var(--gray2-color);
  font-size: 16px;
  font-weight: 500;
}

.sub-title-section {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 10px;
  padding-bottom: 12px;
}

.news p {
  color: var(--gray4-color);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.news a {
  color: var(--gray2-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.news .item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.news .item .image {
  border-radius: 12px;
  width: 200px;
  height: 95px;
  overflow: hidden;
  position: relative;
}

.news .item .image img {
  width: 200px;
  height: 95px;
  object-fit: cover;
}

.news .item h4 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 10px;
}
.news .cover h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 10px;
}

.news .item p {
  color: var(--gray2-color);
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}

.bureaucratic {
  background-color: var(--background-color);
}

.bureaucratic .cover {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: white;
  padding: 16px;
  border-radius: 12px;
}

.bureaucratic .image {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bureaucratic .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bureaucratic .item .image {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  height: 240px;
  position: relative;
}

.bureaucratic .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bureaucratic .cover .detail {
  display: flex;
}

.bureaucratic .cover .detail .category {
  color: black;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.bureaucratic .cover .detail .time {
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.bureaucratic .cover .strip {
  margin: 0 40px;
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.bureaucratic .cover .content h4 {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.bureaucratic .item {
  background-color: white;
  padding: 16px;
  border-radius: 12px;
}

.bureaucratic .item .detail {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.bureaucratic .item .detail .category {
  color: black;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.bureaucratic .item .detail .time {
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.bureaucratic .item .strip {
  margin: 0 40px;
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.bureaucratic .item .content h4 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 10px 0px;
}

.bureaucratic .item .content p {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}

/* .gallery .content {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 10px;
}

.gallery .image {
  grid-column: 1 / 2;
}

.gallery .image img {
  height: auto;
  width: 100%;
}

.gallery .thumbnails img {
  width: 100%;
  height: auto;
}

.gallery .thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  height: 100%;
} */

.gallery .slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery .cover {
  width: 100%;
  height: 350px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .image-thumb {
  width: 100%;
  height: 135px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery .image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .image {
  width: 100%;
  height: 150px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram .slide {
  display: flex;
  padding-bottom: 20px;
  gap: 20px;
  overflow-x: scroll;
  scrollbar-width: none;
}

.instagram .slide::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.instagram .slide .image {
  min-width: 23.5%;
  height: 300px;
}

.instagram .image {
  width: 100%;
  height: 150px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram .image:hover .content {
  left: 0;
  transition: 0.3s ease-in-out;
}

.instagram .image:hover .logo {
  display: none;
  transition: 0.6s ease-in-out;
}

.instagram .image .content {
  position: absolute;
  transition: 0.3s ease-in-out;
  left: -1010px;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px;
}

.instagram .image .content img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.instagram .image .content h4 {
  margin-bottom: 10px;
  font-size: 15px;
  color: white;
}

.instagram .image .content p {
  margin-bottom: 10px;
  font-size: 12px;
  color: white;
}

.instagram .image .content a {
  width: 100%;
  display: block;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 15px 20px;
  border: 1px solid white;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.instagram .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram .image .logo {
  position: absolute;
  left: 20px;
  transition: 0.6s ease-in-out;
  bottom: 20px;
}

.instagram .image .logo img {
  width: 36px;
  height: 36px;
}

.ring ul {
  width: 70vmin;
  height: 70vmin;
  position: relative;
}

.ring li {
  --h: calc(100% / 3);
  --w: calc(1.15470053838 * var(--h));
  --a: calc(0.28867513459 * var(--h));
  --d: calc(0.57735026919 * var(--h));
  height: var(--h);
  width: var(--w);
  position: absolute;
}

.ring img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  --aw: 24.99999999999%;
  clip-path: polygon(
    var(--aw) 0,
    0 50%,
    var(--aw) 100%,
    calc(100% - var(--aw)) 100%,
    100% 50%,
    calc(100% - var(--aw)) 0
  );
}

.ring li:nth-of-type(1) {
  left: calc(50% - var(--a) - var(--d) * 0.5);
  top: 0;
}
.ring li:nth-of-type(2) {
  left: calc(50% - var(--a) * 2 - var(--d) * 1.5);
  top: calc(var(--h) * 0.5);
}
.ring li:nth-of-type(3) {
  left: calc(50% - var(--a) * 2 - var(--d) * 1.5);
  top: calc(var(--h) * 1.5);
}
.ring li:nth-of-type(4) {
  left: calc(50% - var(--a) - var(--d) * 0.5);
  top: calc(var(--h) * 2);
}
.ring li:nth-of-type(5) {
  left: calc(50% + var(--d) * 0.5);
  top: calc(var(--h) * 0.5);
}
.ring li:nth-of-type(6) {
  left: calc(50% + var(--d) * 0.5);
  top: calc(var(--h) * 1.5);
}

.ring ul {
  filter: drop-shadow(0 0 10px hsla(0, 0%, 0%, 0.3));
}

.ring li:hover {
  filter: drop-shadow(0 0 10px powderblue);
  z-index: 10;
}

.ring ul {
  animation: r 4s forwards;
  list-style: none;
}
@keyframes r {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0);
  }
}

.ring li {
  animation: ir 4s forwards;
}
@keyframes ir {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0);
  }
}

/* news detail */

.detail-news {
  /* margin-top: 100px; */
}

.detail-news .image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.detail-news .description .size-full {
  display: none;
}

.detail-news .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-news .detail .category {
  color: black;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.detail-news .detail .time {
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.detail-news .strip {
  margin: 0 40px;
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.detail-news h4 {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.detail-news .detail {
  display: flex;
  margin-top: 14px;
  align-items: center;
}

.detail-news p {
  color: var(--gray-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 20px;
}

.detail-news .item {
  margin-top: 120px;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.detail-news .item .image {
  border-radius: 20px;
  min-width: min-content;
  overflow: hidden;
  position: relative;
}

.detail-news .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-news .item h4 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.detail-news h5 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.detail-news .item p {
  color: var(--gray4-color);
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}

.news-page {
  /* margin-top: 100px; */
}

.news-page .image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.news-page .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .detail .category {
  color: black;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.news-page .detail .time {
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.news-page .strip {
  margin: 0 40px;
  color: var(--gray5-color);
  font-size: 12px;
  font-weight: 400;
}

.news-page h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.news-page .detail {
  display: flex;
  margin-top: 14px;
  /* align-items: center; */
}

.news-page .item {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.news-page .item .image {
  border-radius: 20px;
  min-width: min-content;
  overflow: hidden;
  position: relative;
}

.news-page .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .item h4 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
}

.news-page h5 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--primary-color);
  text-shadow: 50px 20px 40px rgba(0, 143, 214, 0.3);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06px;
  margin: 34px 0px;
}

.footer .contact .text-1 {
  color: var(--gray6-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08px;
  margin-bottom: 10px;
}

.footer .contact .text-2 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.footer p {
  color: var(--gray2-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.footer a {
  text-decoration: none;
  color: var(--gray2-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer .copyright {
  margin-top: 70px;
  text-align: center;
}

@media (min-width: 992px) {
  .news .col-lg-4 {
    display: flex;
    flex-direction: column;
  }

  .bureaucratic .slide {
    display: flex;
    flex: 1;
    gap: 20px;
  }

  .news .cover {
    height: 100%;
  }

  .news .cover,
  .news-page .card-news {
    /* gap: 20px; */
    margin: 24px 0px;
    align-items: center;
  }

  .news-page .card-news .image {
    height: 200px !important;
    overflow: inherit;
  }

  .news-page .card-news img {
    border-radius: 20px;
  }

  .news-page .card-news h4 {
    margin: 0px 0px !important;
    padding-bottom: 18px;
  }
  .news-page .card-news p, .suggest .item .suggest-subtitle, .bureaucratic .content .suggest-subtitle {
    color: var(--gray2-color);
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
  }

  .news .cover .image {
    width: 100%;
    height: 85%;
  }

  .news .cover .image img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
  }

  .news .column-2 {
    margin-top: 70px;
  }

  .footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 756px) {
  .header .col-lg-6:first-child {
    padding-top: 110px;
  }

  .header .col-lg-6:last-child {
    padding-top: 40px;
  }

  .imgTop,
  .imgBottom {
    display: none;
  }

  .ring ul {
    width: 90vmin;
    height: 90vmin;
    position: relative;
  }

  .news .column-2 {
    margin-top: 20px;
  }

  .gallery .image-thumb {
    width: 100%;
    height: 85px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }

  .gallery .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news .item .image {
    width: 400px;
    height: 105px;
  }

  .news .item .image img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
  }

  .news .image,
  .bureaucratic .image {
    min-width: min-content;
  }

  .carousel-item img {
    height: 140px;
  }

  .carousel-inner .banner {
    margin-bottom: 20px;
  }

  .carousel-indicators {
    right: 0;
    margin-left: 15%;
    bottom: 0;
  }

  .news-page h5 {
    margin-top: 40px !important;
  }

  .gallery .thumbnails {
    grid-template-columns: 1fr;
  }

  .service .wrapper {
    gap: 10px;
    padding: 20px 5px;
  }

  .service .accordion-collapse {
    padding: 20px 0px;
  }

  .service .accordion-collapse p {
    font-size: 12px;
  }

  .service .wrapper h4 {
    font-size: 18px;
  }

  .service .wrapper img {
    width: 100px;
  }

  .carousel,
  .vision {
    background-color: var(--soft-gray-color) !important;
  }

  .bureaucratic .slide {
    display: flex;
    padding-bottom: 20px;
    gap: 20px;
    overflow-x: scroll;
    margin-top: 50px;
  }

  .bureaucratic .slide::-webkit-scrollbar {
    width: 0.5em;
    height: 6px;
  }

  .bureaucratic .slide::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px;
  }

  .bureaucratic .slide::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }

  .gallery .slide {
    display: flex;
    padding-bottom: 20px;
    gap: 20px;
    overflow-x: scroll;
    margin-top: 20px;
  }

  .gallery .slide::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .news a {
    color: var(--primary-color);
  }

  .news .cover .image img {
    min-height: 400px;
  }

  .bureaucratic .slide .item {
    min-width: 90%;
  }

  .gallery .slide .image {
    min-width: 40%;
  }

  .gallery .slide .image-thumb {
    min-width: 40%;
  }

  .carousel-inner {
    padding-top: 30px;
  }

  .instagram .slide .image {
    min-width: 80%;
    height: 300px;
  }
}

.image-video {
    cursor: pointer;
}

.image-thumb-news {
    width: 180px!important;
    height: 145px!important;
    border-radius: 20px;
}


.suggest .item .suggest-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0px!important;
    padding-bottom: 16px;
  }
