body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mukta", sans-serif;
  background: #F4F4F4;
}

.border-red{
  border: 1px solid red;
}

.read-more {
  text-align: right;
}
.read-more a {
  color: #1876d2;
  font-size: 13px;
  text-decoration: none;
}

.pagination-wrapper {
  margin-top: 45px;
}
.pagination-wrapper nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-navbar {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 3px solid #F87171;
  box-shadow: 0px 5px 20px rgba(30, 78, 172, 0.1215686275);
  padding: 15px 10px;
}
.my-navbar .navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.my-navbar .logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.my-navbar .logo-wrapper img {
  height: 60px;
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.my-navbar .logo-wrapper a {
  text-decoration: none;
}
.my-navbar .logo-wrapper .title {
  font-size: 20px;
  color: #EF4444;
  font-weight: 600;
}
.my-navbar .logo-wrapper .address {
  font-size: 15px;
  color: #2a76d2;
  font-weight: 500;
}
.my-navbar .logo-wrapper .hamburger {
  display: none;
}
.my-navbar .info-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.my-navbar .right-content-wrapper {
  display: flex;
  justify-content: flex-end;
}
.my-navbar .right-content-wrapper img {
  margin-left: 10px;
  height: 60px;
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.my-navbar .login {
  background-color: #1876d2;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  padding: 6px 26px;
}
.my-navbar .telephone {
  background: #d51b1b;
  color: #ffffff;
  padding: 5px 15px;
  font-size: 15px;
  border-radius: 4px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  background-color: rgba(33, 150, 243, 0.9803921569);
  overflow-x: hidden;
  transition: 0.5s;
}
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}
.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 45px;
  font-size: 60px;
  text-decoration: none;
  color: #fff;
}

.overlay-content {
  position: relative;
  list-style: none;
  padding: 0;
  top: 10%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}
.overlay-content li button {
  padding: 0;
  border: none;
  color: #fff;
  background: #2897f2;
  font-size: 26px;
}
.overlay-content li a {
  padding: 8px;
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}
.overlay-content .dropdown-item {
  line-height: 36px;
  padding: 0 15px;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #4494d5;
}
.overlay-content .dropdown-item:hover {
  background: #2897f2;
}
.overlay-content .dropdown-menu {
  position: relative !important;
  transform: none !important;
  background: #2581cb;
  border-radius: 0;
  text-align: center;
}

.mobile {
  display: none;
}

.secondary-nav {
  background-color: #fff;
  height: 44px;
  width: 100%;
  border-top: 2px solid #c6c6c6;
  padding: 0;
}
.secondary-nav .menu {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
  list-style: none;
  line-height: 40px;
  padding: 0;
}
.secondary-nav .menu li button {
  padding: 0;
  border: none;
  color: #1876d2;
  font-size: 16px;
  background-color: #fff;
}
.secondary-nav .menu li a {
  color: #1876d2;
  text-decoration: none;
  font-size: 16px;
}
.secondary-nav .menu .dropdown-item {
  line-height: 36px;
  padding: 0 15px;
  font-size: 16px;
}

.slider-notice {
  background: #1876d2;
  box-shadow: 0px 10px 10px rgba(2, 55, 106, 0.2705882353);
}
.slider-notice .slider-notice-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 38px;
  width: 100%;
}
.slider-notice .title {
  padding-right: 30px;
  color: #fff;
  font-size: 17px;
  margin-right: 30px;
  border-right: 2px solid white;
}
.slider-notice .date {
  padding-left: 30px;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 30px;
  border-left: 2px solid white;
}
.slider-notice .marquee-wrapper {
  overflow: hidden;
  flex: 1;
  display: flex;
}
.slider-notice .description {
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

@media screen and (max-width: 992px) {
  .secondary-nav {
    display: none;
  }
  .my-navbar {
    padding: 10px 0;
  }
  .my-navbar .navbar-wrapper {
    display: block;
  }
  .my-navbar .navbar-wrapper .logo-wrapper {
    width: 100%;
  }
  .my-navbar .navbar-wrapper .logo-wrapper .hamburger {
    display: block;
    text-align: right;
    flex: 1;
    font-size: 24px;
    color: #2a76d2;
  }
  .my-navbar .navbar-wrapper .info-wrapper {
    margin-top: 15px;
  }
  .my-navbar .navbar-wrapper .info-wrapper .login {
    flex: 1;
  }
  .my-navbar .navbar-wrapper .info-wrapper .telephone {
    flex: 1;
  }
  .my-navbar .navbar-wrapper .right-content-wrapper {
    display: block;
  }
  .slider-notice .date {
    display: none;
  }
  .slider-notice .title {
    font-size: 14px;
  }
  .slider-notice .description {
    color: #fff;
    font-size: 13px;
    animation: marquee 10s linear 0s infinite;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .my-navbar .navbar-wrapper .info-wrapper .login {
    width: 140px;
    flex: none;
  }
  .my-navbar .navbar-wrapper .info-wrapper .telephone {
    text-align: center;
  }
}
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
.banner-slider {
  height: 100%;
  width: 100%;
  margin-top: 30px;
}
.banner-slider .slider-item {
  border-radius: 10px;
  overflow: hidden;
}
.banner-slider .slick-next {
  right: 20px;
}
.banner-slider .slick-prev {
  left: 20px;
  z-index: 9;
}
.banner-slider img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-slider .slick-next:before, .banner-slider .slick-prev:before {
  font-size: 30px;
}
.banner-slider .title {
  background: #1876d2;
  color: #fff;
  font-size: 15px;
  padding: 10px;
  text-align: center;
}

.local-representative-side {
  margin-top: 30px;
}
.local-representative-side .nav {
  border-bottom: none;
}
.local-representative-side .nav .nav-item {
  flex: 1;
}
.local-representative-side .nav .nav-item .nav-link {
  margin-bottom: 0;
  position: relative;
}
.local-representative-side .nav .nav-item .nav-link.active {
  background-color: #c5def7;
  color: #0d5499;
}
.local-representative-side .nav .nav-item .nav-link.active::before {
  content: "";
  height: 24px;
  position: absolute;
  bottom: -10px;
  background-color: #c5def7;
  width: 24px;
  left: 0;
  transform: rotate(45deg);
  z-index: -1;
  right: 0;
  margin: 0 auto;
}
.local-representative-side .title {
  color: #0a5095;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  border: 1px solid white;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 5px 15px;
  background: rgba(255, 0, 0, 0.1215686275);
}
.local-representative-side .local-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 0px;
       column-gap: 0px;
  border: 1px solid white;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-top: 30px;
}
.local-representative-side .local-item .info-wrapper {
  margin-left: 10px;
}
.local-representative-side .local-item img {
  height: 80px;
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.local-representative-side .local-item .name {
  font-size: 18px;
  font-weight: 600;
  color: #d51b1b;
}
.local-representative-side .local-item .designation {
  font-size: 16px;
}
.local-representative-side .local-item .office-status {
  margin-right: 30px;
}
.local-representative-side .local-item .office-status .office {
  font-size: 14px;
  text-align: center;
}
.local-representative-side .local-item .office-status .current {
  color: #fff;
  padding: 5px 15px;
  font-weight: 500;
  width: 120px;
  border-radius: 4px;
  text-align: center;
}
.local-representative-side .local-item .office-status .current.in {
  background: #1876d2;
}
.local-representative-side .local-item .office-status .current.out {
  background: #d51b1b;
}

@media screen and (max-width: 992px) {
  .banner-slider img {
    height: 200px;
  }
  .local-representative-side {
    margin-top: 30px;
  }
  .local-representative-side .local-item {
    margin-top: 10px;
  }
  .local-representative-side .local-item img {
    height: 60px;
    width: 60px;
  }
  .local-representative-side .local-item .name {
    font-size: 16px;
    font-weight: 500;
  }
  .local-representative-side .local-item .designation, .local-representative-side .local-item .phone {
    font-size: 13px;
  }
  .local-representative-side .local-item .office-status .current {
    font-size: 13px;
    width: 100px;
    padding: 5px;
  }
}
.intro-wrapper {
  border: 2px solid #fff;
  margin-top: 60px;
  background-color: #F9F9FB;
  border-radius: 8px;
}

.mayor-words {
  text-align: center;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  background: rgba(225, 245, 255, 0.2);
  border-top: 2px solid #dadada;
}
.mayor-words .title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #1876d2;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
}
.mayor-words .img-wrapper {
  text-align: center;
}
.mayor-words .img-wrapper img {
  height: 120px;
  width: 120px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mayor-words .name {
  font-size: 18px;
  font-weight: 600;
}
.mayor-words .designation {
  font-size: 15px;
}
.mayor-words .content-wrapper {
  flex: 1;
}
.mayor-words .description {
  text-align: justify;
  font-size: 17px;
  line-height: 180%;
  font-weight: 300;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.introduction-wrapper {
  padding: 30px 30px;
}
.introduction-wrapper .title {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #1876d2;
}
.introduction-wrapper .description {
  text-align: justify;
  font-size: 17px;
  font-weight: 300;
  line-height: 180%;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .introduction-wrapper .description {
    font-size: 15px;
  }
  .mayor-words .description {
    font-size: 15px;
  }
  .mayor-words .img-wrapper img {
    height: 80px;
    width: 80px;
  }
  .mayor-words .name {
    font-size: 15px;
  }
  .mayor-words .designation {
    font-size: 13px;
  }
}
.dynamic-section {
  margin-top: 60px;
  border: 2px solid white;
  border-radius: 6px;
}
.dynamic-section .list-item {
  padding: 10px 15px;
  background: #F9F9FB;
  border-bottom: 1px solid #e6e6e6;
}
.dynamic-section .list-item .title {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 300;
  height: 46px;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dynamic-section .list-item .date {
  font-size: 12px;
  color: gray;
  text-align: right;
}
.dynamic-section .nav-tabs {
  background: #F3F3F6;
  border-radius: 4px;
}
.dynamic-section .nav-tabs .nav-link.active {
  color: #fff;
  background: #1876d2;
  border-radius: 4px;
}
.dynamic-section .nav-link {
  color: #1876d2;
  min-width: 120px;
  padding: 12px 10px;
  text-align: center;
  border-radius: 0;
  border-right: 2px solid #f4f4f4;
}
.dynamic-section .read-more {
  background: #F9F9FB;
  line-height: 48px;
  text-align: center;
}

.map-wrapper {
  background-color: #f1f3f4;
  margin-top: 60px;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 5px;
}
.map-wrapper .title {
  font-size: 20px;
  color: #1876d2;
  margin-bottom: 15px;
}

.suggestion-box {
  margin-top: 30px;
  background: #fff;
  padding: 30px 45px;
  border-radius: 6px;
}
.suggestion-box .title {
  font-size: 24px;
  color: #1876d2;
  text-align: center;
  margin-bottom: 15px;
}
.suggestion-box form input, .suggestion-box form textarea {
  margin-bottom: 15px;
  background-color: #F9F9FB;
  border: 1px solid #e8e8e8;
}
.suggestion-box form label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #747474;
}
.suggestion-box form .btn-wrapper {
  text-align: right;
  margin-top: 30px;
}
.suggestion-box form .btn-wrapper .submit-btn {
  background-color: #1876d2;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  padding: 6px 26px;
}

.footer {
  background: #1876d2;
  padding-top: 45px;
  margin-top: 90px;
}
.footer .name {
  font-size: 28px;
  color: #ffeb3b;
  font-weight: 500;
}
.footer .address {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.footer .about {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}
.footer .title {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer ul {
  list-style: none;
  padding: 0;
  padding-left: 10px;
}
.footer ul li {
  line-height: 36px;
  color: #fff;
}
.footer ul li i {
  margin-right: 10px;
}
.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}
.footer ul li a:hover {
  color: #fdeb3b;
}
.footer .bottom-footer {
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4588235294);
  color: #fff;
}

.template-pages {
  margin-top: 45px;
}
.template-pages .page-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.template-pages img {
  margin-bottom: 60px;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.template-pages .description {
  font-size: 20px;
  font-weight: 300;
  line-height: 180%;
}

@media screen and (max-width: 768px) {
  .template-pages img {
    height: 250px;
  }
}
.contact-page {
  margin-top: 45px;
}
.contact-page .page-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.contact-page form input {
  margin-bottom: 15px;
}
.contact-page form label {
  font-size: 18px;
  margin-bottom: 5px;
}
.contact-page form .btn-wrapper {
  text-align: right;
  margin-top: 30px;
}
.contact-page form .btn-wrapper .submit-btn {
  background-color: #1876d2;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  padding: 6px 26px;
}
.contact-page .map-wrapper {
  margin-top: 30px;
  padding: 10px 15px;
}

.gallery-page {
  margin-top: 45px;
  /* Create four equal columns that floats next to eachother */
  /* The Modal (background) */
  /* Modal Content */
  /* The Close Button */
  /* Hide the slides by default */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* On hover, add a black background color with a little bit see-through */
  /* Number text (1/3 etc) */
  /* Caption text */
}
.gallery-page .page-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.gallery-page .row > .column {
  padding: 0 8px;
}
.gallery-page img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  width: 100%;
  margin-top: 30px;
}
.gallery-page .mySlides img {
  height: calc(100vh - 360px);
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-page .img-control-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 140px;
  overflow: hidden;
  overflow-x: scroll;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 0 30px;
}
.gallery-page .img-control-wrapper .img-control {
  min-width: 120px;
}
.gallery-page .img-control-wrapper img {
  height: 100px;
  margin-top: 0;
}
.gallery-page .row:after {
  content: "";
  display: table;
  clear: both;
}
.gallery-page .column {
  float: left;
  width: 25%;
}
.gallery-page .modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.gallery-page .modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.gallery-page .close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.gallery-page .close:hover,
.gallery-page .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.gallery-page .mySlides {
  display: none;
}
.gallery-page .prev,
.gallery-page .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.gallery-page .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.gallery-page .prev:hover,
.gallery-page .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.gallery-page .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.gallery-page .caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}
.gallery-page img.demo {
  opacity: 0.6;
}
.gallery-page .active,
.gallery-page .demo:hover {
  opacity: 1;
}
.gallery-page img.hover-shadow {
  transition: 0.3s;
}
.gallery-page .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.side-button {
  position: fixed;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
}
.side-button a {
  padding: 8px 36px 8px 16px;
  border-radius: 6px;
  margin-bottom: 5px;
  position: relative;
  color: #fff;
  background: #d51b1b;
  font-size: 14px;
  text-decoration: none;
  top: 0;
  right: -70px;
  transition: all 0.2s linear;
}
.side-button a:first-child {
  background: #1876d2;
}
.side-button a:hover {
  right: -10px;
}
.side-button a img {
  margin-right: 12px;
  height: 26px;
  width: 26px;
  filter: invert(1);
}

.faq-page {
  margin-top: 45px;
}
.faq-page .page-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}

.services {
  margin-top: 60px;
}
.services .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #0d5499;
  padding: 6px 15px;
  background: #c5def7;
  border-radius: 3px;
  border: 1px solid #fff;
  text-align: center;
  margin-bottom: 10px;
}
.services .service-body .title {
  font-size: 18px;
  color: #1876d2;
  font-weight: 500;
}
.services .service-body .single-value {
  color: #1876d2;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.services .service-body .single-value span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.services .service-body ul, .services .service-body ol {
  font-size: 14px;
  list-style: devanagari;
}
.services .service-body .local-representative-side {
  margin-top: 0;
}
.services .service-body .local-representative-side .local-item {
  margin-top: 5px;
}
.services .service-body .local-representative-side .local-item img {
  height: 60px;
  width: 60px;
}
.services .service-body .local-representative-side .local-item .name {
  font-size: 15px;
}
.services .service-body .local-representative-side .local-item .designation, .services .service-body .local-representative-side .local-item .phone {
  font-size: 13px;
}
.services .read-more {
  background-color: #f1f3f4;
  padding: 5px 10px;
  display: block;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 16px;
  text-decoration: none;
}

.about-page {
  margin-top: 45px;
}
.about-page .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.about-page .about-content p {
  font-size: 18px;
  line-height: 150%;
}
.about-page .side-info img {
  width: 100%;
}
.about-page .side-info .main-title {
  font-size: 20px;
  font-weight: 500;
  color: #1876d2;
  margin: 30px 0;
  text-align: center;
}
.about-page .side-info ul {
  list-style: none;
  padding: 0;
}
.about-page .side-info ul li {
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
}
.about-page .side-info ul li .title {
  width: 40%;
}
.about-page .side-info ul li .value {
  flex: 1;
}

.staff-page {
  margin-top: 45px;
}
.staff-page .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.staff-page img {
  height: 80px;
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-page .current {
  color: #fff;
  padding: 5px 15px;
  font-weight: 500;
  width: 120px;
  border-radius: 4px;
  text-align: center;
}
.staff-page .current.in {
  background: #1876d2;
}
.staff-page .current.out {
  background: #d51b1b;
}
.staff-page td {
  vertical-align: middle;
}
.staff-page table {
  border-radius: 5px;
  overflow: hidden;
}
.staff-page table th {
  min-width: 120px;
}
.staff-page table td span {
  padding: 5px 15px;
}
.staff-page thead {
  background: #cfe7ff;
}

.structure-page {
  margin-top: 45px;
}
.structure-page .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.structure-page img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.structure-page .description {
  margin-top: 60px;
  font-size: 18px;
  line-height: 150%;
}

.archieve-page {
  margin-top: 45px;
}
.archieve-page .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.archieve-page .archieve-item {
  text-decoration: none;
  color: #343434;
  margin-bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  display: block;
  transition: all 0.2s linear;
}
.archieve-page .archieve-item:hover {
  box-shadow: 5px 5px 20px rgba(128, 128, 128, 0.2784313725);
}
.archieve-page .archieve-item .title {
  font-size: 17px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.archieve-page .archieve-item .date {
  font-size: 13px;
  text-align: right;
  font-weight: 400;
}

.department-page {
  margin-top: 45px;
}
.department-page .page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 30px;
}
.department-page .services {
  margin-top: 0;
}
.department-page .department-list {
  flex-direction: column;
  border-bottom: none;
  background: #c5def7;
  overflow: hidden;
  border-radius: 6px;
}
.department-page .department-list button {
  color: #000;
  border-bottom: 1px solid white;
  width: 100%;
}/*# sourceMappingURL=style.css.map */