/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Keeps it above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* placeholder */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  -moz-animation-duration: 1000ms;
  -o-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: -o-transform 100ms ease;
  -moz-transition: transform 100ms ease, -moz-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease, -moz-transform 100ms ease, -o-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

html {
  font-size: 14px;
}

.node__content,
body {
  font-size: 1rem;
}

body {
  font-family: "Roboto", sans-serif;
  color: #404040;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1170px;
  width: 100%;
}

.sidebar .block,
.main-content {
  padding-top: 45px;
}

@media (max-width: 767px) {
  .main-content {
    padding-top: 20px;
  }
}

#main {
  margin-bottom: 40px;
}

a:hover {
  color: #0562A2;
}

a:focus {
  outline: none;
}

a {
  color: #226490;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

.block-title,
.block-page-title-block .title,
.sidebar .block .sidebar-block-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.78571rem;
}

.block-title,
.block-page-title-block .title {
  text-transform: uppercase;
}

.block-page-title-block .title {
  overflow: hidden;
}

.block-page-title-block .title span {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.block-page-title-block .title span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: -webkit-calc(100% + 200px);
  width: -moz-calc(100% + 200px);
  width: calc(100% + 200px);
  background-color: rgba(59, 146, 27, 0.4);
}

.block-title {
  color: #3B921B;
}

.block-title--light {
  color: #fff;
}

.block-title--dark {
  color: #404040;
}

.sidebar .sidebar-block-title {
  border-bottom: 1px solid rgba(59, 146, 27, 0.4);
}

.download-pdf {
  display: block;
  position: relative;
  padding-right: 45px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.download-pdf:after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  background-image: url("../images/pdf.svg");
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 21px;
  height: 27px;
}

@media (max-width: 767px) {
  .download-pdf:after {
    width: 25px;
    height: 32px;
  }
}

.green-bg-gradient {
  background: #3b921b;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #3b921b 0%, #68bb4d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(315deg, #3b921b 0%, #68bb4d 100%);
  background: -moz- oldlinear-gradient(315deg, #3b921b 0%, #68bb4d 100%);
  background: -o-linear-gradient(315deg, #3b921b 0%, #68bb4d 100%);
  background: linear-gradient(135deg, #3b921b 0%, #68bb4d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b921b', endColorstr='#68bb4d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

html[lang="gu"] .block-page-title-block .title span {
  line-height: 1.4;
}

ul {
  padding-left: 0;
  list-style: none;
}

#cboxTitle {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.green-text {
  color: #3B921B;
}

.font-size-zero {
  font-size: 0;
}

.section-divider {
  border-bottom: 1px solid #DEDEDE;
  display: block;
  padding-top: 10px;
  margin-bottom: 20px;
  font-size: 0;
}

.border-right-divider li {
  position: relative;
}

.border-right-divider li:after {
  content: "|";
  padding-left: 0.5rem;
}

.border-right-divider li:last-child:after {
  display: none;
}

.arrow {
  position: relative;
}

.arrow:before {
  position: absolute;
  content: "";
  padding: 5px;
  -webkit-box-shadow: 2px -2px 0 0 #404040 inset;
  -moz-box-shadow: 2px -2px 0 0 #404040 inset;
  box-shadow: 2px -2px 0 0 #404040 inset;
}

.arrow--left:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow--right:before {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.arrow--up:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.arrow--down:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.bullet-lists>li {
  margin: 13px 0;
  position: relative;
  padding-left: 25px;
}

.bullet-lists>li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #3B921B;
}

.bullet-lists--white>li:before {
  background-color: #fff;
}

.bullet-lists--blue>li:before {
  background-color: #0562A2;
}

.bullet-lists--grey>li:before {
  background-color: rgba(0, 0, 0, 0.2);
}

.bullet-lists--green>li:before {
  background-color: rgba(59, 146, 27, 0.2);
}

.counter-list-style-1 {
  counter-reset: counter-list-style-1;
}

.counter-list-style-1>li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
  /* &::before {
      counter-increment: counter-list-style-1;
      content: "0"counter(counter-list-style-1);
      @include background-color-rgba($success-bg, 0.2);
      left: 0;
      position: absolute;
      height: 20px;
      width: 20px;
      @include border-radius(100%);
      font-weight: 600;
    } */
}

.counter-list-style-1>li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #0562A2;
}

.view-latest-tenders .view-content,
.view-latest-notices .view-content,
.view-contact-info .view-content,
.view-latest-recruitment .view-content,
.view-circulars .view-content,
.view-offices .view-content {
  display: block;
}

.view-latest-tenders .views-label,
.view-latest-notices .views-label,
.view-contact-info .views-label,
.view-latest-recruitment .views-label,
.view-circulars .views-label,
.view-offices .views-label {
  display: none;
}

.view-latest-tenders .list-group,
.view-latest-notices .list-group,
.view-contact-info .list-group,
.view-latest-recruitment .list-group {
  list-style: none;
}

.view-latest-tenders .list-group-item,
.view-latest-notices .list-group-item,
.view-contact-info .list-group-item,
.view-latest-recruitment .list-group-item {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0;
}

.view-latest-tenders .item-list>ul>li,
.view-latest-notices .item-list>ul>li,
.view-contact-info .item-list>ul>li {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.view-latest-tenders .item-list>ul>li+li,
.view-latest-notices .item-list>ul>li+li,
.view-contact-info .item-list>ul>li+li {
  margin-top: 25px;
}

.view-latest-tenders .views-field-title,
.view-latest-notices .views-field-title,
.view-contact-info .views-field-title {
  font-size: 1.14286rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.view-latest-tenders .views-field-counter,
.view-latest-notices .views-field-counter,
.view-contact-info .views-field-counter {
  display: none;
}

.view-latest-tenders .file,
.view-latest-notices .file,
.view-contact-info .file {
  padding-left: 0;
}

.view-latest-tenders .views-label-field-documents,
.view-latest-notices .views-label-field-documents,
.view-contact-info .views-label-field-documents {
  font-weight: 500;
}

.view-circulars,
.view-latest-recruitment {
  margin-top: 65px;
}

.view-circulars .item-list>ul,
.view-latest-recruitment .item-list>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.view-circulars .item-list>ul>li,
.view-latest-recruitment .item-list>ul>li {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 100px;
  margin-bottom: 100px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.view-circulars .views-field-field-date .field-content,
.view-circulars .views-field-field-image .field-content,
.view-latest-recruitment .views-field-field-date .field-content,
.view-latest-recruitment .views-field-field-image .field-content {
  position: absolute;
  top: -65px;
  left: 25px;
  background-color: #ececec;
  width: 130px;
  height: 130px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.view-circulars .views-field-field-documents a,
.view-latest-recruitment .views-field-field-documents a {
  font-size: 1.14286rem;
  color: #404040;
}

.view-circulars .views-field-field-documents a:hover,
.view-circulars .views-field-field-documents a:focus,
.view-latest-recruitment .views-field-field-documents a:hover,
.view-latest-recruitment .views-field-field-documents a:focus {
  color: #226490;
}

dt {
  font-weight: 400;
}

.ckeditor-accordion-container>dl {
  border: 1px solid #dddddd;
}

.ckeditor-accordion-container>dl dt>a,
.ckeditor-accordion-container>dl dt.active>a,
.ckeditor-accordion-container>dl dt>a:hover {
  background: #f1f1f1;
  font-size: 1.1rem;
  color: #404040 !important;
  font-weight: 500;
  padding: 10px 50px 10px 15px;
  border-bottom: 1px solid #dddddd;
  margin: 0 !important;
}

.ckeditor-accordion-container>dl dd {
  margin-top: 1rem;
}

.ckeditor-accordion-container>dl dt>.ckeditor-accordion-toggle {
  left: auto;
  right: 11px;
}

.ckeditor-accordion-container>dl dt>.ckeditor-accordion-toggle:before,
.ckeditor-accordion-container>dl dt>.ckeditor-accordion-toggle:after {
  background: #404040;
}

.sidebar-menu-list li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.13);
  position: relative;
  padding-left: 30px;
  font-size: 1.28571rem;
  line-height: 70px;
}

.sidebar-menu-list li:last-child {
  border-bottom: none;
}

.sidebar-menu-list li:before {
  content: "";
  background: #226490;
  width: 9px;
  height: 9px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar-menu-list a {
  font-size: 1.28571rem;
  line-height: 70px;
  color: #404040;
}

.sidebar-menu-list a:hover {
  color: #226490;
}

.common-pdf_lists>li {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.common-pdf_lists>li+li {
  margin-top: 25px;
}

.common-pdf_lists>li a {
  color: #404040;
}

.common-pdf_lists>li a:hover {
  color: #226490;
}

.common-pdf_lists>li a {
  color: #404040;
}

.common-pdf_lists>li a:hover {
  color: #226490;
}

.common-pdf_lists>li .field-title {
  font-size: 1.14286rem;
  font-weight: 700;
  display: block;
}

.common-pdf_lists>li .field-info {
  display: block;
  margin-top: 15px;
}

.view-contact-info .item-list>ul>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.view-contact-info .views-field-title,
.view-contact-info .views-field-field-address {
  width: 100%;
}

.view-contact-info .views-field-title a {
  color: #404040;
}

.view-contact-info .views-field-title a:hover,
.view-contact-info .views-field-title a:focus {
  color: #226490;
}

.view-contact-info .views-field-field-address .field-content,
.view-contact-info .views-field-field-telephone-no .field-content,
.view-contact-info .views-field-field-fax-no .field-content,
.view-contact-info .views-field-field-email .field-content {
  position: relative;
}

.view-contact-info .views-field-field-address .field-content:before,
.view-contact-info .views-field-field-telephone-no .field-content:before,
.view-contact-info .views-field-field-fax-no .field-content:before,
.view-contact-info .views-field-field-email .field-content:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.view-contact-info .views-field-field-address {
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 15px;
}

.view-contact-info .views-field-field-address .field-content {
  padding-left: 40px;
}

.view-contact-info .views-field-field-address .field-content:before {
  height: 29px;
  width: 29px;
  background-image: url("../images/building.svg");
}

.view-contact-info .views-field-field-telephone-no,
.view-contact-info .views-field-field-fax-no,
.view-contact-info .views-field-field-email {
  width: 33.33%;
}

.view-contact-info .views-field-field-telephone-no .field-content,
.view-contact-info .views-field-field-fax-no .field-content,
.view-contact-info .views-field-field-email .field-content {
  padding-left: 30px;
}

.view-contact-info .views-field-field-telephone-no .field-content a,
.view-contact-info .views-field-field-fax-no .field-content a,
.view-contact-info .views-field-field-email .field-content a {
  color: #404040;
}

.view-contact-info .views-field-field-telephone-no .field-content a:hover,
.view-contact-info .views-field-field-telephone-no .field-content a:focus,
.view-contact-info .views-field-field-fax-no .field-content a:hover,
.view-contact-info .views-field-field-fax-no .field-content a:focus,
.view-contact-info .views-field-field-email .field-content a:hover,
.view-contact-info .views-field-field-email .field-content a:focus {
  color: #226490;
}

@media (max-width: 991px) {

  .view-contact-info .views-field-field-telephone-no,
  .view-contact-info .views-field-field-fax-no {
    width: 50%;
  }
}

@media (max-width: 575px) {

  .view-contact-info .views-field-field-telephone-no,
  .view-contact-info .views-field-field-fax-no {
    width: 100%;
  }
}

.view-contact-info .views-field-field-telephone-no .field-content:before {
  height: 19px;
  width: 19px;
  background-image: url("../images/phone.svg");
}

@media (max-width: 575px) {
  .view-contact-info .views-field-field-fax-no {
    margin-top: 10px;
  }
}

.view-contact-info .views-field-field-fax-no .field-content:before {
  height: 24px;
  width: 24px;
  background-image: url("../images/fax.svg");
  top: -1px;
}

@media (max-width: 991px) {
  .view-contact-info .views-field-field-email {
    margin-top: 10px;
    width: 100%;
  }
}

.view-contact-info .views-field-field-email .field-content:before {
  height: 16px;
  width: 21px;
  background-image: url("../images/mail.svg");
  top: 2px;
}

.table-responsive table,
table {
  border: 1px solid #D5D5D5;
  width: 100%;
  margin-bottom: 30px;
  font-size: 1rem;
  border-bottom: 1px solid #D5D5D5;
}

.table-responsive table thead th,
.table-responsive table tr th,
table thead th,
table tr th {
  background: #E9E9E9;
  font-weight: bold;
}

.table-responsive table tr,
table tr {
  background: transparent;
  padding: 0;
  border-bottom: none;
}

.table-responsive table tr td,
.table-responsive table tr th,
table tr td,
table tr th {
  border: 0.6px solid #D5D5D5;
  padding: 6px;
  line-height: 1.42857;
  text-align: left !important;
  color: #404040;
}

.table-responsive table div,
table div {
  text-align: left !important;
}

.table-responsive table p,
table p {
  margin: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #F8F8F8;
}

.table-hover tbody tr:hover {
  color: #404040;
  background-color: #F8F8F8;
}

.tab-menu-links ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tab-menu-links ul li a {
  display: block;
  padding: 13px 20px;
  background-color: #fff;
  color: #404040;
  font-size: 1.28571rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tab-menu-links ul li a:hover {
  color: #226490;
}

.form-group .form-control {
  padding: 24px;
  font-size: 14px;
  background-color: #E2E7E9;
}

.submit_btn {
  font-weight: 500;
}

.field--name-field-section-block {
  counter-reset: counter-list-style-1;
}

.field--name-field-section-block>.field__item {
  border-bottom: 1px solid #DEDEDE;
  margin-left: 40px;
}

.field--name-field-section-block>.field__item+.field__item {
  margin-top: 50px;
}

.field--name-field-section-block>.field__item:last-child {
  border-bottom: none;
}

.field--name-field-section-block>.field__item .field--name-field-block-title {
  font-family: "Roboto", sans-serif;
  color: #404040;
  font-size: 1.57143rem;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 575px) {
  .field--name-field-section-block>.field__item .field--name-field-block-title {
    font-size: 1.42857rem;
  }
}

.field--name-field-section-block>.field__item .field--name-field-block-title:before {
  counter-increment: counter-list-style-1;
  content: "0" counter(counter-list-style-1);
  position: absolute;
  left: -40px;
  color: rgba(64, 64, 64, 0.16);
}

.field--name-field-section-block>.field__item .field--name-field-block-contents {
  padding-bottom: 40px;
}

.field--name-field-section-block>.field__item .field--name-field-block-contents p {
  font-size: 1.07143rem;
  margin-bottom: .5rem;
}

.field--name-field-section-block>.field__item .field--name-field-block-contents li {
  margin-bottom: 0;
  font-size: 1.07143rem;
  margin-bottom: .5rem;
}

.field--name-field-section-block>.field__item .field--name-field-block-contents a {
  display: block;
  color: #404040;
  font-size: 1.07143rem;
  margin-bottom: .5rem;
}

.field--name-field-section-block>.field__item .field--name-field-block-contents a:hover {
  color: #226490;
}

.field--name-field-archive-link {
  text-align: right;
}

.field--name-field-archive-link a {
  border: 1px solid #226490;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  border-radius: 27px;
  font-family: "Roboto", sans-serif;
  font-size: 1.28571rem;
  font-weight: 600;
  padding: 7px 28px;
}

body.ie .row.region,
body.ie .row.view-content {
  display: block;
}

.para-align {
  text-align: justify;
}

.selection-box--focus-effect input,
.selection-box--focus-effect select {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #3B921B;
}

.btn {
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 15px 50px;
  letter-spacing: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .btn {
    padding: 10px 30px;
  }
}

.btn:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn:not(:disabled):not(.disabled).active:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-primary {
  background: -webkit-gradient(linear, left top, right top, from(#3B921B), to(#69BD4E));
  background: -webkit-linear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: -moz- oldlinear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: -o-linear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: linear-gradient(to right, #3B921B 0%, #69BD4E 100%);
}

.btn-primary:hover,
.btn-primary:focus {
  background: -webkit-gradient(linear, left top, right top, from(#69BD4E), to(#3B921B));
  background: -webkit-linear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: -moz- oldlinear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: -o-linear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: linear-gradient(to right, #69BD4E 0%, #3B921B 100%);
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: #fff;
  color: #226490;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000;
  color: #fff;
}

.btn-info {
  background: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding: 8px 30px;
  color: #0562A2;
  text-transform: uppercase;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #0562A2;
  border-color: #0562A2;
}

.btn.form-control {
  padding: .375rem .75rem;
}

@media (max-width: 991px) {
  .navigation-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .navigation-box {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.navigation-box__top {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .navigation-box__top {
    margin-top: 0;
  }
}

.navigation-box__top .region {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .navigation-box__top .region {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.navigation-box__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .navigation-box__bottom {
    margin-left: 10px;
  }
}

.inc-dec-fonts-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .inc-dec-fonts-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.inc-dec-fonts-box a {
  text-transform: uppercase;
  color: #404040;
}

.inc-dec-fonts-box a:hover,
.inc-dec-fonts-box a:focus {
  color: #0562A2;
}

.inc-dec-fonts-box>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.inc-dec-fonts-box .contact-us {
  margin-left: 25px;
}

@media (max-width: 575px) {
  .inc-dec-fonts-box .contact-us {
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .inc-dec-fonts-box .contact-us+.inc-dec-fonts-box .contact-us {
    margin-left: 12px;
  }
}

.inc-dec-fonts-box__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 30px;
}

@media (max-width: 575px) {
  .inc-dec-fonts-box__lists {
    margin-left: 5px;
  }
}

.inc-dec-fonts-box__lists>li>a {
  font-weight: 700;
  padding: 5px 10px;
}

.inc-dec-fonts-box__lists>li>a.active {
  color: #0562A2;
}

.inc-dec-fonts-box__lists .dec-fonts {
  font-size: 13px;
}

.inc-dec-fonts-box__lists .default-fonts {
  font-size: 14px;
}

.inc-dec-fonts-box__lists .inc-fonts {
  font-size: 15px;
}

@media (min-width: 576px) {
  .language-switcher-language-url {
    border-left: 1px solid #707070;
  }
}

.language-switcher-language-url .links {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 575px) {
  .language-switcher-language-url .links {
    margin-left: 5px;
  }
}

.language-switcher-language-url .links>li {
  list-style: none;
}

.language-switcher-language-url .links>li>a {
  padding: 5px 12px;
  text-transform: uppercase;
  color: #404040;
}

.language-switcher-language-url .links>li>a:hover,
.language-switcher-language-url .links>li>a:focus,
.language-switcher-language-url .links>li>a.is-active {
  color: #0562A2;
}

.language-switcher-language-url .links>li>a.is-active {
  font-weight: 700;
}

#navbar-main {
  background-color: #dff0d3;
  padding: 0 15px;
}

#navbar-main .container {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand {
  font-size: 0;
  margin: 0;
  padding: 0;
  margin-bottom: -15px;
  margin-top: -15px;
}

.navbar-brand img {
  max-width: 300px;
  width: 100%;
}

@media (max-width: 1199px) {
  .navbar-brand {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    max-width: 80px;
    width: 80px;
  }

  .navbar-brand img {
    display: block !important;
    margin: 0 auto;
  }
}

.navbar-collapse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

ul.sf-menu.sf-style-white {
  margin-bottom: 0;
}

ul.sf-menu.sf-style-white li {
  background: transparent !important;
}

ul.sf-menu.sf-style-white li a {
  color: #404040 !important;
}

ul.sf-menu.sf-style-white li a:hover,
ul.sf-menu.sf-style-white li a:focus,
ul.sf-menu.sf-style-white li a.is-active {
  color: #0562A2 !important;
  background: transparent;
}

ul.sf-menu.sf-style-white li.menuparent.sfHover li.menuparent.sfHover .sf-sub-indicator {
  border-width: 2px 2px 0 0;
}

ul.sf-menu.sf-style-white li:hover>ul {
  background: #a5efae;
}

ul.sf-menu.sf-style-white .menuparent ul li a {
  padding: 0.6rem !important;
}

ul.sf-menu.sf-style-white a {
  color: #404040;
  background: transparent;
  text-transform: uppercase;
  padding: 4px !important;
}

ul.sf-menu.sf-style-white .sf-with-ul {
  padding-right: 2em !important;
}

ul.sf-menu.sf-style-white .sf-sub-indicator {
  position: absolute !important;
  top: 4px;
  background: none;
  border: solid #404040;
  border-width: 0 2px 2px 0;
  padding: 1px;
  width: 8px;
  height: 8px;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 1;
}

ul.sf-menu.sf-style-white .sf-sub-indicator:after {
  display: none;
}

ul.sf-menu.sf-horizontal.sf-shadow ul,
ul.sf-menu.sf-vertical.sf-shadow ul,
ul.sf-menu.sf-navbar.sf-shadow ul ul {
  background: #fff !important;
}

@media (max-width: 767px) {
  ul.sf-menu.sf-style-white a {
    padding: 0.95em 1em !important;
  }
}

button.navbar-toggler {
  display: none;
}

#CollapsingNavbar {
  display: block;
}

.sf-accordion-toggle>a {
  position: absolute;
  left: auto;
  top: 8px;
  display: block !important;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.sf-accordion-toggle>a:after {
  display: none;
}

.sf-accordion-toggle>a span {
  position: absolute;
  width: 26px;
  height: 2px;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -moz-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #000;
  right: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.sf-accordion-toggle>a span:before,
.sf-accordion-toggle>a span:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -moz-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #000;
  display: block;
}

.sf-accordion-toggle>a span:before {
  top: 8px;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -moz-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  -moz-transition-property: transform, opacity, -moz-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
}

.sf-accordion-toggle>a span:after {
  top: 16px;
}

.sf-accordion-toggle a.sf-expanded span {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  -moz-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.sf-accordion-toggle a.sf-expanded span:before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  -moz-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.sf-accordion-toggle a.sf-expanded span:after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
  -moz-transform: translate3d(0, -16px, 0) rotate(-90deg);
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

ul.sf-menu.sf-accordion.sf-expanded {
  display: block !important;
  padding: 0px;
  position: fixed;
  width: 100%;
  top: 113px !important;
  z-index: 10;
  padding-top: 0px;
  background: #fff;
  overflow: auto;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: -webkit-calc(100vh - 76px) !important;
  height: -moz-calc(100vh - 76px) !important;
  height: calc(100vh - 76px) !important;
}

.nav-search {
  padding: .7rem 1rem;
  margin-left: 10px;
  font-size: 0;
}

.nav-search__close {
  display: none;
  width: 14px;
  height: 15px;
}

.nav-search.active .nav-search__search {
  display: none;
}

.nav-search.active .nav-search__close {
  display: block;
}

.search-box {
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 15px;
  top: 100%;
  z-index: 100;
  max-width: 300px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

.search-box.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.search-box .button {
  background: none;
  position: absolute;
  padding: 6px 10px;
  right: 16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.search-box .button>span {
  display: none;
}

.pagination {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-link {
  color: #226490;
}

.page-link:hover {
  color: #226490;
}

.page-item.active .page-link {
  background-color: #3B921B;
  border-color: #3B921B;
}

.pager ul li {
  display: inline-block;
}

.pager ul li a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -4px;
  line-height: 1.25;
  color: #226490;
  border: 1px solid #D5D5D5;
}

.sidebar .block {
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.sidebar .vision-box {
  background-image: none;
}

.sidebar p {
  font-size: 1.14286rem;
}

.sidebar .bg-dot-layer {
  background-image: url(../images/dot-bg-layer.png);
}

.sidebar .item-list .bullet-lists>li {
  padding-left: 30px;
}

.sidebar .item-list .bullet-lists>li.singlemenu-active a {
  color: #226490;
}

.sidebar .item-list .bullet-lists>li a {
  color: #404040;
  font-size: 1.14286rem;
  font-weight: 600;
}

.sidebar .item-list .bullet-lists>li a:hover {
  color: #226490;
  font-weight: 600;
}

.sidebar .item-list .bullet-lists>li+li {
  margin-top: 20px;
}

.sidebar .item-list .sidebar-submenu-list>li.submenu-active {
  color: #226490;
}

.sidebar .item-list .sidebar-submenu-list>li:before {
  top: 10px;
}

.sidebar .item-list .sidebar-submenu-list>li a {
  color: #226490;
  font-size: 1.28571rem;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}

.sidebar .item-list .sidebar-submenu-list>li .inner-submenu {
  overflow: hidden;
  display: none;
}

.sidebar .item-list .sidebar-submenu-list>li>ul li {
  padding-left: 30px;
  margin-top: 15px;
}

.sidebar .item-list .sidebar-submenu-list>li>ul li a {
  color: #404040;
  font-size: 1.28571rem;
  font-weight: 300;
}

.sidebar .item-list .sidebar-submenu-list>li>ul li a:hover {
  font-weight: 300;
}

.page-title-row {
  background-image: url("../images/Common_Banner.png");
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  margin-top: 80px;
}

@media (max-width: 575px) {
  .page-title-row {
    padding: 25px 0;
  }
}

.page-title-row .page-title {
  color: #fff;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.21429rem;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 575px) {
  .page-title-row .page-title {
    font-size: 2.14286rem;
  }
}

.field--name-field-sho {
  font-family: "Roboto", sans-serif;
  color: #404040;
  font-size: 1.78571rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
}

@media (max-width: 575px) {
  .field--name-field-sho {
    font-size: 1.57143rem;
  }
}

.breadcrumb {
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  position: relative;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 15px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  top: 2px;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.breadcrumb-item a {
  color: #fff;
}

.vision-box {
  background-image: url("../images/dot-bg-layer.png");
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .vision-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .vision-box__img-box img {
    display: block;
    margin: auto;
    max-width: 200px;
  }
}

.vision-box blockquote {
  border-left: 1px solid #707070;
  padding-left: 10px;
  font-style: italic;
  font-size: 1.21429rem;
  color: #221C1C;
  font-weight: 300;
}

.vision-box blockquote strong {
  font-weight: 600;
  color: #3B921B;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.grid-box-style-1 .title {
  margin-bottom: 65px;
}

.grid-box-style-1 .item-list {
  width: 100%;
}

.grid-box-style-1 .item-list>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid-box-style-1 .item-list>ul>li {
  position: relative;
  padding: 40px 25px 25px 25px;
  margin-bottom: 60px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.grid-box-style-1 .views-field-field-date .field-content,
.grid-box-style-1 .views-field-field-image .field-content {
  position: absolute;
  height: 50px;
  top: -25px;
  left: 25px;
  background-color: #ececec;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-box-style-1 .views-field-field-date .field-content {
  font-family: "Roboto", sans-serif;
  font-size: 1.07143rem;
  font-weight: 600;
  line-height: 1.1;
  padding: 10px;
}

.grid-box-style-1 .views-field-field-documents a,
.grid-box-style-1 .views-field-field-document a {
  font-size: 1.14286rem;
  color: #404040;
}

.grid-box-style-1 .views-field-field-documents a:hover,
.grid-box-style-1 .views-field-field-documents a:focus,
.grid-box-style-1 .views-field-field-document a:hover,
.grid-box-style-1 .views-field-field-document a:focus {
  color: #226490;
}

.grid-box-style-1 .views-field-field-department {
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: -webkit-calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: calc(100% - 50px);
}

.grid-box-style-1 .views-field-field-department .field-content {
  color: #3B921B;
  display: inline-block;
  font-size: 1.64286rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-top: 20px;
  width: 100%;
}

.grid-box-style-1 .views-field-field-department .field-content:before {
  position: absolute;
  content: "";
  border-top: 1px solid rgba(59, 146, 27, 0.4);
  left: 0;
  top: 0;
  width: 150px;
}

@media (max-width: 575px) {
  .grid-box-style-1 .views-field-field-department {
    bottom: 25px;
  }
}

.grid-box-style-1__dept-lbl {
  display: block;
  font-size: 1.28571rem;
  color: #C2C2C2;
  text-transform: capitalize;
  font-weight: 500;
}

.grid-box-style-1--with-dept .item-list>ul>li {
  padding-bottom: 135px;
}

.grid-box-style-1--two-col .item-list>ul>li {
  width: 49%;
  margin-right: 2%;
  margin-top: 30px;
}

.grid-box-style-1--two-col .item-list>ul>li:nth-child(2n) {
  margin-right: 0;
}

@media (max-width: 575px) {
  .grid-box-style-1--two-col .item-list>ul>li {
    width: 100%;
    margin-right: 0;
  }
}

.grid-box-style-1--three-col .item-list>ul>li {
  width: 32%;
  margin-right: 2%;
}

.grid-box-style-1--three-col .item-list>ul>li:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .grid-box-style-1--three-col .item-list>ul>li {
    width: 49%;
    margin-right: 2%;
  }

  .grid-box-style-1--three-col .item-list>ul>li:nth-child(3n) {
    margin-right: 2%;
  }

  .grid-box-style-1--three-col .item-list>ul>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .grid-box-style-1--three-col .item-list>ul>li {
    width: 100%;
    margin-right: 0;
  }
}

body.ie .grid-box-style-1 .view-content.row {
  display: block;
}

.view-list-style-1 .list-group {
  list-style: none;
}

.view-list-style-1 .list-group-item {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0;
}

.view-list-style-1 .view-content {
  display: block;
}


.view-list-style-1 .view-content>.item-list>ul>li {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.view-list-style-1 .view-content>.item-list>ul>li+li {
  margin-top: 15px;
}

.view-list-style-1 .view-content>.item-list>ul>li .views-field-title {
  font-size: 1.14286rem;
  font-weight: 700;
  margin-bottom: 15px;
}


.view-list-style-1 .views-field-title,
.view-list-style-1 .views-field-title-1 {
  font-size: 1.14286rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}

.view-list-style-1 .views-field-field-corrigendum .views-label,
.view-list-style-1 .views-field-field-addendum .views-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.basic-page-accordion-style-1 .card {
  border: none;
}

.basic-page-accordion-style-1 .card+.card {
  border-top: 1px solid #D5D5D5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.basic-page-accordion-style-1 .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}

.basic-page-accordion-style-1 .card-header .btn {
  padding: 0;
  display: block;
  color: #404040;
  font-weight: 600;
  font-size: 1.14286rem;
  letter-spacing: 0;
  width: 100%;
  text-align: left;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 10px 0;
}

.basic-page-accordion-style-1 .card-header .btn:hover {
  text-decoration: none;
}

.basic-page-accordion-style-1 .card-header .btn:before {
  right: 0;
  top: 16px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease;
}

.basic-page-accordion-style-1 .card-header .btn[aria-expanded="true"]:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 20px;
}

.basic-page-accordion-style-1 .card:last-child .card-header .btn {
  border-bottom: none;
}

.basic-page-accordion-style-1 .card-body {
  padding-top: 0;
  padding-bottom: 0;
}

.basic-page-accordion-style-1 .card-body .card-body {
  padding-top: 10px;
}

.basic-page-accordion-style-1 .card-body .card-body .card-header .btn {
  padding: 0;
}

.basic-page-accordion-style-1 .card-body .bullet-lists {
  margin-bottom: 0;
}

.basic-page-accordion-style-1 .card-body .bullet-lists>li {
  margin-top: 0;
}

.basic-page-accordion-style-1 .card-body .card-header .btn:before {
  top: 5px;
}

.basic-page-accordion-style-1 .card-body .card-header .btn[aria-expanded="true"]:before {
  top: 10px;
}

.page-node-5502 .basic-page-accordion-style-1 .card-body,
.page-node-5543 .basic-page-accordion-style-1 .card-body {
  padding-top: 10px;
}

.page-node-5502 .basic-page-accordion-style-1 .card-body .card-header .btn,
.page-node-5543 .basic-page-accordion-style-1 .card-body .card-header .btn {
  padding: 0;
}

.site-footer {
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  padding: 0;
}

.site-footer .content {
  color: inherit;
  font-size: 1rem;
}

.site-footer .content a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem;
  padding-left: 0;
  font-size: 1.07143rem;
  border-bottom: none !important;
}

.site-footer .content a:hover,
.site-footer .content a:focus {
  color: #fff;
}

.site-footer .content ul:not(.menu) {
  padding-left: 0;
}

.site-footer .content ul li a {
  padding: 0.8em 2px 0.8em 19px;
}

.site-footer .block {
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer__top {
  background-color: #113248;
  padding-top: 70px;
  padding-bottom: 60px;
}

@media (max-width: 575px) {
  .site-footer__top {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

@media (min-width: 851px) {
  .site-footer__top .region {
    width: 20%;
  }
}

@media (max-width: 851px) {
  .site-footer__top .region {
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  .site-footer__top .region {
    width: 100%;
    border-bottom: 1px solid rgba(224, 224, 224, 0.2);
    padding-top: 15px;
  }

  .site-footer__top .region:last-child {
    border-bottom: none;
  }

  .site-footer__top .region:nth-child(2n) {
    padding-left: 0px;
  }
}

.site-footer__top h2 {
  margin-bottom: 17px;
  padding-bottom: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.28571rem;
  border: none;
}

.site-footer .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 15px;
}

.site-footer .nav li a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 0;
  font-size: 1.07143rem;
}

.site-footer .nav li a:hover,
.site-footer .nav li a:focus {
  color: #fff;
}

.site-footer .copyright-list>li>a {
  color: #404040;
  display: inline;
}

.site-footer .copyright-list>li>a:hover {
  color: #404040;
}

.copyright-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

@media (max-width: 575px) {
  .copyright-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .copyright-list>li+li {
    margin-top: 15px;
  }
}

.footer-awards-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-awards-img>li {
  margin-right: 3px;
  margin-bottom: 3px;
}

.footer-awards-img>li a {
  border-bottom: none !important;
}

.footer-awards-img>li a:hover {
  background: transparent !important;
}

.footer-address {
  color: #fff;
  position: relative;
  border-bottom: 1px solid rgba(224, 224, 224, 0.2);
  padding-bottom: 25px;
  margin-bottom: 25px;
  padding-top: 40px;
}

.footer-address:before {
  position: absolute;
  content: "";
  background-image: url("../images/location.svg");
  background-repeat: no-repeat;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  height: 35px;
  width: 24px;
  opacity: 0.2;
  top: 0;
}

.footer-address strong {
  font-size: 1.13rem;
  margin-bottom: 0;
  display: block;
}

.footer-address ul li a {
  padding: 0.8em 2px 0.8em 19px;
}

.website-counter {
  color: #fff;
}

.website-counter label,
.website-counter p {
  line-height: 1;
}

.website-counter label {
  margin-bottom: 0;
  font-weight: 700;
}

.website-counter p {
  margin: 0;
  font-size: 2.28571rem;
  font-weight: 300;
}

.footer-social-icon ul li {
  display: inline-block;
}

.footer-social-icon ul li a img {
  width: 50px;
  max-width: 100%;
}

.footer-social-icon ul li a:focus,
.footer-social-icon ul li a:hover {
  color: #fff;
}

.high-contrast-theme {
  color: #fff;
}

.high-contrast-theme a {
  color: #fff;
}

.high-contrast-theme.path-frontpage #main-wrapper {
  background-color: #e9f6e7;
}

.high-contrast-theme.path-frontpage .view-whats-new:before,
.high-contrast-theme.path-frontpage .view-whats-new:after {
  background-color: #777;
}

.high-contrast-theme.path-frontpage .view-whats-new .row ul li {
  border-color: #fff;
}

.high-contrast-theme.path-frontpage .view-whats-new .row ul li a {
  color: #fff;
}

.high-contrast-theme.path-frontpage .view-whats-new .row ul li a:hover {
  color: #4df70f;
}

.high-contrast-theme.path-frontpage .view-whats-new .view-footer a {
  color: #4df70f;
}

.high-contrast-theme.path-frontpage .view-whats-new .view-footer a:hover {
  color: #4df70f;
}

.high-contrast-theme #page,
.high-contrast-theme #navbar-main,
.high-contrast-theme #main-wrapper {
  background-color: #000;
}

.high-contrast-theme .inc-dec-fonts-box a {
  color: #fff;
}

.high-contrast-theme .inc-dec-fonts-box a.active {
  color: #4df70f;
}

.high-contrast-theme .language-switcher-language-url {
  border-color: #fff;
}

.high-contrast-theme .language-switcher-language-url .links>li>a {
  color: #fff;
}

.high-contrast-theme ul.sf-menu.sf-style-white a {
  color: #fff;
}

.high-contrast-theme ul.sf-menu.sf-style-white li a {
  color: #fff !important;
}

.high-contrast-theme ul.sf-menu.sf-style-white li a:focus,
.high-contrast-theme ul.sf-menu.sf-style-white li a.is-active {
  color: #fff !important;
}

.high-contrast-theme ul.sf-menu.sf-style-white li ul {
  background-color: #000 !important;
}

.high-contrast-theme ul.sf-menu.sf-style-white li ul li a:hover {
  background-color: #777;
}

.high-contrast-theme ul.sf-menu.sf-style-white .sf-sub-indicator {
  border-color: #fff;
}

@media (max-width: 767px) {
  .high-contrast-theme ul.sf-menu.sf-style-white .sf-sub-indicator {
    border-color: #707070;
  }
}

@media (max-width: 767px) {
  .high-contrast-theme ul.sf-menu.sf-accordion.sf-expanded {
    background-color: #000;
  }
}

@media (max-width: 767px) {
  .high-contrast-theme .sf-accordion-toggle a span {
    background-color: #F5F5F5;
  }

  .high-contrast-theme .sf-accordion-toggle a span:before,
  .high-contrast-theme .sf-accordion-toggle a span:after {
    background-color: #F5F5F5;
  }
}

.high-contrast-theme .nav-search__search path {
  stroke: #fff;
}

.high-contrast-theme .nav-search__close path {
  fill: #fff;
}

.high-contrast-theme .search-box {
  background-color: #000;
}

.high-contrast-theme .search-box path {
  stroke: #fff;
}

.high-contrast-theme .form-control {
  border-color: #fff;
  background-color: #000;
  color: #fff;
}

.high-contrast-theme .form-control::-webkit-input-placeholder {
  /* Edge */
  color: #fff;
}

.high-contrast-theme .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.high-contrast-theme .form-control::-moz-placeholder {
  color: #fff;
}

.high-contrast-theme .form-control::placeholder {
  color: #fff;
}

.high-contrast-theme .focus-area-wrap a {
  color: #4df70f;
}

.high-contrast-theme .focus-area-wrap .quick-links {
  border-color: #fff;
}

.high-contrast-theme .focus-area-wrap .quick-links a {
  color: #fff;
}

.high-contrast-theme .vision-box blockquote {
  border-color: #fff;
  color: #fff;
}

.high-contrast-theme .vision-box blockquote strong {
  color: #4df70f;
}

.high-contrast-theme .about-us-box {
  background-color: #777;
}

.high-contrast-theme .btn-info {
  background-color: #000;
  color: #fff;
}

.high-contrast-theme .btn-info:hover,
.high-contrast-theme .btn-info:focus {
  color: #4df70f;
  background-color: #000;
}

.high-contrast-theme .waste-management-wrap {
  background-color: #777;
}

.high-contrast-theme .waste-management-wrap h3:after {
  background-image: url("../images/icons/right-indicate-arrow-right.svg");
}

.high-contrast-theme .waste-management-wrap .tab-menu-links ul li a {
  background-color: #000;
  color: #fff;
}

.high-contrast-theme .waste-management-wrap .tab-menu-links ul li a:hover {
  color: #4df70f;
}

.high-contrast-theme .view-consent-status .views-row .field--name-field-block-links {
  background-color: #000;
}

.high-contrast-theme .view-consent-status .views-row .field--name-field-block-links>.field__item a {
  color: #fff;
}

.high-contrast-theme .view-consent-status .views-row .field--name-field-block-links>.field__item a:hover {
  color: #4df70f;
}

.high-contrast-theme .home-whatsnew-block {
  background-color: #000;
}

.high-contrast-theme .home-whatsnew-block:before,
.high-contrast-theme .home-whatsnew-block:after {
  background-color: #777;
}

.high-contrast-theme .home-whatsnew-block h3 {
  color: #4df70f;
}

.high-contrast-theme .compliance-list li.legal:before {
  background-image: url("../images/legal-icon-white.svg");
}

.high-contrast-theme .compliance-list li.lab:before {
  background-image: url("../images/lab-icon-white.svg");
}

.high-contrast-theme .compliance-list li.direction:before {
  background-image: url("../images/direction-icon-white.svg");
}

.high-contrast-theme .compliance-list li.closure:before {
  background-image: url("../images/closure-icon-white.svg");
}

.high-contrast-theme .compliance-list li.consent-mgmt:before {
  background-image: url("../images/comittee-icon-white.svg");
}

.high-contrast-theme .compliance-list li.industry:before {
  background-image: url("../images/industry-icon-white.svg");
}

.high-contrast-theme .compliance-list li.complaint:before {
  background-image: url("../images/complaint-icon-white.svg");
}

.high-contrast-theme .compliance-list li.compliance-order:before {
  background-image: url("../images/gdpr-icon-white.svg");
}

.high-contrast-theme .compliance-list li a {
  color: #fff;
}

.high-contrast-theme .compliance-list li a:hover {
  color: #4df70f;
}

.high-contrast-theme .site-footer__top {
  background-color: #777;
}

.high-contrast-theme .site-footer .copyright-list>li>a {
  color: #fff;
}

.high-contrast-theme .footer-address:before {
  opacity: 1;
  filter: alpha(opacity=100);
}

.high-contrast-theme .counter-list-style-1>li::before {
  background-color: #777;
}

.high-contrast-theme .sidebar .sidebar-block-title {
  border-bottom: 1px solid #4df70f;
}

.high-contrast-theme .sidebar-menu-list li {
  border-bottom: 1px solid #707070;
}

.high-contrast-theme .sidebar-menu-list li:before {
  background-color: #777;
}

.high-contrast-theme .sidebar-menu-list a {
  color: #fff;
}

.high-contrast-theme .sidebar-menu-list a:hover {
  color: #4df70f;
}

.high-contrast-theme .ckeditor-accordion-container>dl dt>a {
  background-color: #777;
  color: #fff !important;
}

.high-contrast-theme .ckeditor-accordion-container>dl dt>a:hover {
  background-color: #777;
  color: #fff !important;
}

.high-contrast-theme .ckeditor-accordion-container>dl dt.active>a {
  background-color: #777;
  color: #fff !important;
}

.high-contrast-theme .ckeditor-accordion-container>dl dt>.ckeditor-accordion-toggle:before,
.high-contrast-theme .ckeditor-accordion-container>dl dt>.ckeditor-accordion-toggle:after {
  background-color: #fff;
}

.high-contrast-theme .ckeditor-accordion-container>dl dd a {
  color: #fff;
}

.high-contrast-theme .grid-box-style-1 .item-list>ul>li {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.high-contrast-theme .grid-box-style-1 .views-field-field-documents a,
.high-contrast-theme .grid-box-style-1 .views-field-field-document a {
  color: #fff;
}

.high-contrast-theme .grid-box-style-1 .views-field-field-documents a:hover,
.high-contrast-theme .grid-box-style-1 .views-field-field-document a:hover {
  color: #4df70f;
}

.high-contrast-theme .grid-box-style-1 .views-field-field-date .field-content,
.high-contrast-theme .grid-box-style-1 .views-field-field-image .field-content {
  background-color: #777;
}

.high-contrast-theme .grid-box-style-1 .views-field-field-department .field-content {
  color: #4df70f;
}

.high-contrast-theme .grid-box-style-1 .views-field-field-department .field-content:before {
  border: 1px solid #4df70f;
}

.high-contrast-theme .view-contact-info .views-field-title a {
  color: #fff;
}

.high-contrast-theme .present-board .item-list>ul>li .views-field-field-designation {
  color: rgba(255, 255, 255, 0.5);
}

.high-contrast-theme .sidebar .item-list .bullet-lists>li a {
  color: #fff;
}

.high-contrast-theme .sidebar .item-list .bullet-lists>li a:hover {
  color: #4df70f;
}

.high-contrast-theme .bullet-lists li a {
  color: #fff;
}

.high-contrast-theme .bullet-lists--blue>li:before,
.high-contrast-theme .bullet-lists--grey>li:before {
  background-color: #777;
}

.high-contrast-theme .table-responsive table thead th {
  background-color: #777;
}

.high-contrast-theme .table-responsive table tr th {
  background-color: #777;
}

.high-contrast-theme .table-responsive table tr td,
.high-contrast-theme .table-responsive table tr th {
  color: #fff;
}

.high-contrast-theme .table-responsive table tr td a,
.high-contrast-theme .table-responsive table tr th a {
  color: #4df70f;
}

.high-contrast-theme table thead th {
  background-color: #777;
}

.high-contrast-theme table tr th {
  background-color: #777;
}

.high-contrast-theme table tr td,
.high-contrast-theme table tr th {
  color: #fff;
}

.high-contrast-theme .table-hover tbody tr:hover {
  background-color: #000;
  color: #fff;
}

.high-contrast-theme .table-striped tbody tr:nth-of-type(odd) {
  background-color: #000;
}

.high-contrast-theme .view-latest-tenders .item-list>ul>li,
.high-contrast-theme .view-latest-notices .item-list>ul>li,
.high-contrast-theme .view-contact-info .item-list>ul>li {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.high-contrast-theme .lab-info .item-list>ul>li .views-field-title {
  color: #4df70f;
}

.high-contrast-theme .lab-info .item-list>ul>li .views-field-field-year-of-establishment {
  background-color: #777;
  color: #fff;
}

.high-contrast-theme .budget-annual-info li p {
  border-color: #fff;
}

.high-contrast-theme .budget-annual-info li span {
  background-color: #777;
}

.high-contrast-theme .common-pdf_lists>li {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.high-contrast-theme .common-pdf_lists>li a {
  color: #fff;
}

.high-contrast-theme .common-pdf_lists>li a:hover {
  color: #4df70f;
}

.high-contrast-theme .download-pdf:after {
  background-image: url("../images/pdf-white.svg");
}

.high-contrast-theme .view-list-style-1 ul li,
.high-contrast-theme .view-public-hearing ul li {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.high-contrast-theme .view-list-style-1 ul li a,
.high-contrast-theme .view-public-hearing ul li a {
  color: #4df70f;
}

.high-contrast-theme .view-list-style-1 a,
.high-contrast-theme .view-public-hearing a {
  color: #4df70f;
}

.high-contrast-theme .field--name-field-archive-link a {
  color: #4df70f;
  border: 1px solid #4df70f;
}

.high-contrast-theme .list-inline>li>a {
  color: #4df70f;
}

.high-contrast-theme .page-item .page-link {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}

.high-contrast-theme .page-item .page-link:hover {
  color: #4df70f;
}

.high-contrast-theme .field--name-field-section-block .field__item .field--name-field-block-title {
  color: #fff;
}

.high-contrast-theme .field--name-field-section-block .field__item .field--name-field-block-title:before {
  color: #777;
}

.high-contrast-theme .field--name-field-section-block .field__item .field--name-field-block-contents a {
  color: #fff;
}

.high-contrast-theme .field--name-field-section-block .field__item .field--name-field-block-contents a:hover {
  color: #4df70f;
}

.high-contrast-theme .view-events .item-list ul li {
  border: 1px solid #fff;
}

.high-contrast-theme .view-events .item-list ul li a {
  color: #4df70f;
}

.high-contrast-theme .node--type-health-and-environment .field--name-field-content-title {
  color: #fff;
  background-color: #777;
}

.high-contrast-theme .node--type-health-and-environment a {
  color: #4df70f;
}

.high-contrast-theme .basic-page-accordion-style-1 .card {
  background-color: #000;
}

.high-contrast-theme .basic-page-accordion-style-1 .card-header .btn {
  color: #fff;
}

.high-contrast-theme .block-page-title-block .title span:after {
  background-color: #4df70f;
}

.path-frontpage #main {
  margin-bottom: 0;
}

.path-frontpage .main-content {
  padding-top: 0;
}

.path-frontpage .title {
  display: none;
}

.path-frontpage .node__content {
  margin-top: 0;
}

.owl-carousel .owl-item img {
  width: 100%;
  height: auto;
  display: block;
}

.owl-theme,
.owl-controls {
  margin-top: 0;
}

.owl-nav,
.owl-pagination {
  position: relative;
}

.owl-pagination {
  z-index: 1;
}

.owl-pagination {
  position: absolute;
  left: 50%;
  top: 80%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 575px) {
  .owl-pagination {
    left: 50%;
  }
}

.owl-pagination .owl-page:focus {
  outline: none;
}

.owl-pagination .owl-page span {
  background-color: #fff !important;
}

.focus-area-wrap {
  background-color: #e2e8e1;
  padding: 35px 0;
}

.focus-area-wrap h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 14px 0;
}

@media (max-width: 575px) {
  .focus-area-wrap h3 {
    font-size: 1.21429rem;
  }
}

.focus-area-wrap p {
  font-size: 15px;
  min-height: 50px;
}

@media (max-width: 575px) {
  .focus-area-wrap p {
    min-height: auto;
  }
}

.focus-area-wrap a {
  text-transform: uppercase;
  font-size: 15px;
  color: #3B921B;
}

.focus-area-wrap .quick-links {
  border-right: 1px solid rgba(112, 112, 112, 0.2);
  padding-left: 0;
  padding-top: 22px;
  padding-right: 40px;
  background-image: url("../images/quick-link.svg");
  background-repeat: no-repeat;
  background-position: top right;
}

@media (max-width: 991px) {
  .focus-area-wrap .quick-links {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .focus-area-wrap .quick-links {
    border-left: 0;
  }
}

.focus-area-wrap .quick-links a {
  display: block;
  text-transform: capitalize;
  line-height: 21px;
  margin-bottom: 15px;
  color: #404040;
}

.about-us-box {
  padding: 50px 60px;
  margin-top: 40px;
  margin-bottom: 5px;
  color: #fff;
  border-radius: 15px;
  background-color: #58db8870;
  height: 570px;
}

@media (max-width: 991px) {
  .about-us-box {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .about-us-box {
    margin: 0 -15px;
    padding: 20px;
    height: 450px;
  }
}

.about-us-box__title {
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.42857rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 30vh; */
}

.aboutus_img {
  width: 60%;
  height: 250px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 991px) {
  .aboutus_img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .aboutus_img {
    display: none;
  }
}

.about-us-box p {
  font-size: 1.14286rem;
  margin-bottom: 30px;
}

.about-us-box .about-us-box__messege-links {
  margin-top: 30px;
}

.about-us-box .about-us-box__messege-links ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  margin-bottom: 0px;
}

.about-us-box .about-us-box__messege-links ul li a {
  letter-spacing: 1px;
  padding: 8px 30px;
  font-size: 12px;
}

@media (max-width: 991px) {
  .about-us-box .about-us-box__messege-links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.about-us-box .about-us-box__messege-links ul li:last-child {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .about-us-box .about-us-box__messege-links ul li:last-child {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.about-us-wrap .vision-box .vision-box__blockquote-text {
  line-height: 2;
}

.waste-management-wrap {
  border-top: 1px solid #aeb3ad;
  border-bottom: 1px solid #aeb3ad;
  background-color: #edf9ec;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .waste-management-wrap {
    padding: 30px 0;
  }
}

.waste-management-wrap .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.waste-management-wrap h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2.57143rem;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

@media (max-width: 991px) {
  .waste-management-wrap h3 {
    font-size: 1.85714rem;
    margin-bottom: 1rem;
  }
}

.waste-management-wrap h3:after {
  content: "";
  background-image: url("../images/right-indicate-arrow.svg");
  background-repeat: no-repeat;
  display: inline-block;
  width: 60px;
  height: 33px;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .waste-management-wrap h3:after {
    display: none;
  }
}

.waste-management-wrap .tab-menu-links {
  padding-left: 50px;
}

@media (max-width: 767px) {
  .waste-management-wrap .tab-menu-links {
    padding-left: 0;
  }
}

.waste-management-wrap .tab-menu-links ul li {
  margin-right: 25px;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .waste-management-wrap .tab-menu-links ul li:nth-child(4) {
    margin-right: 0;
  }
}

.region-featured-bottom-second {
  margin: 0;
}

.view-compliance-enforcement-and-gallery {
  padding: 50px 0;
}

@media (max-width: 991px) {
  .view-compliance-enforcement-and-gallery {
    padding: 30px 0;
  }
}

.view-compliance-enforcement-and-gallery .views-row,
.view-compliance-enforcement-and-gallery .views-field,
.view-compliance-enforcement-and-gallery .field-content {
  width: 100%;
}

.view-compliance-enforcement-and-gallery h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.85714rem;
  line-height: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.view-compliance-and-enforcement .row,
.view-gallery-page,
.view-gallery-page .row {
  margin: 0;
}

.view-gallery-page,
.view-gallery-page .row .col {
  padding: 0;
}

.view-gallery-page,
.view-gallery-page .row {
  margin-bottom: 20px;
}

.view-gallery-page:last-child,
.view-gallery-page .row:last-child {
  margin-bottom: 0;
}

.view-gallery-page img,
.view-gallery-page .row img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.compliance-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.compliance-list li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.compliance-list li:nth-child(2n) {
  margin-right: 0;
}

@media (max-width: 575px) {
  .compliance-list li {
    width: 100%;
    margin-right: 0;
  }
}

.compliance-list li a {
  font-family: "Roboto", sans-serif;
  color: #404040;
}

.compliance-list li a:hover {
  color: #226490;
}

.compliance-list li:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  vertical-align: middle;
  left: 0;
}

.compliance-list li.legal:before {
  background-image: url("../images/legal-icon.svg");
}

.compliance-list li.lab:before {
  background-image: url("../images/lab-icon.svg");
}

.compliance-list li.direction:before {
  background-image: url("../images/direction-status-new.svg");
}

.compliance-list li.closure:before {
  background-image: url("../images/closure-direction.svg");
}

.compliance-list li.consent-mgmt:before {
  background-image: url("../images/comittee-icon.svg");
}

.compliance-list li.industry:before {
  background-image: url("../images/statistics.svg");
  width: 25px;
  height: 25px;
}

.compliance-list li.complaint:before {
  background-image: url("../images/complaint-icon.svg");
}

.compliance-list li.compliance-order:before {
  background-image: url("../images/gdpr-icon.svg");
}

.gallery-home-page .item-list {
  width: 100%;
}

.gallery-home-page ul li {
  margin-bottom: 20px;
  padding: 0;
}

.gallery-home-page ul li .views-field .field-content {
  width: 90%;
  margin: 0 auto;
}

.gallery-home-page ul li .views-field-field-event-images a {
  display: none;
}

.gallery-home-page ul li .views-field-field-event-images a:first-child {
  display: block;
}

.path-frontpage #main-wrapper {
  background-color: #e2e8e1;
}

.view-consent-management-and-whats-new {
  padding: 50px 0;
}

@media (max-width: 991px) {
  .view-consent-management-and-whats-new {
    padding: 30px 0;
  }
}

.view-consent-management-and-whats-new .views-row {
  width: 100%;
}

.view-consent-management-and-whats-new h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.85714rem;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 767px) {
  .view-consent-management-and-whats-new h3 {
    font-size: 1.57143rem;
  }
}

.view-consent-status .row {
  margin: 0;
}

.view-consent-status .views-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .view-consent-status .views-row {
    display: block;
  }

  .view-consent-status .views-row .consent-status-bg-block {
    display: none;
  }
}

.view-consent-status .views-row .field--name-field-block-links {
  padding: 30px;
  background: #3B921B;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 25px;
}

@media (max-width: 767px) {
  .view-consent-status .views-row .field--name-field-block-links {
    padding: 15px;
    position: static;
    height: 100%;
  }
}

.view-consent-status .views-row .field--name-field-block-links>.field__item {
  width: 350px;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .view-consent-status .views-row .field--name-field-block-links>.field__item {
    width: auto;
  }
}

.view-consent-status .views-row .field--name-field-block-links>.field__item:first-child {
  padding: 0;
  width: auto;
  border-bottom: none;
}

.view-consent-status .views-row .field--name-field-block-links>.field__item:last-child {
  border-bottom: none;
}

.view-consent-status .views-row .field--name-field-block-links>.field__item a {
  font-size: 1.14286rem;
  color: #fff;
}

@media (max-width: 767px) {
  .view-consent-status .views-row .field--name-field-block-links>.field__item a {
    font-size: 1.07143rem;
  }
}

.view-consent-status .views-row .field--name-field-block-links>.field__item a:hover {
  color: #226490;
}

.home-whatsnew-block {
  position: relative;
  background: #fff;
  padding: 50px;
  height: 100%;
}

@media (max-width: 575px) {
  .home-whatsnew-block {
    margin-top: 15px;
  }
}

.home-whatsnew-block:before,
.home-whatsnew-block:after {
  content: "";
  position: absolute;
  background: #ddd;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  top: 12px;
  left: 15px;
}

.home-whatsnew-block:after {
  left: auto;
  right: 15px;
}

.home-whatsnew-block h3 {
  color: #3B921B;
}

.path-frontpage .view-whats-new {
  height: 100%;
  position: relative;
}

.path-frontpage .view-whats-new:before,
.path-frontpage .view-whats-new:after {
  content: "";
  position: absolute;
  background: #ddd;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  bottom: 0px;
  left: -35px;
}

.path-frontpage .view-whats-new:after {
  left: auto;
  right: -35px;
}

.path-frontpage .view-whats-new .row {
  margin: 0;
}

.path-frontpage .view-whats-new .row .skin-default {
  width: 100%;
}

.path-frontpage .view-whats-new .row span a {
  display: block;
  font-size: 1.14286rem;
  color: #404040;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  padding: 10px 0;
}

@media (max-width: 767px) {
  .path-frontpage .view-whats-new .row span a {
    font-size: 1.07143rem;
  }
}

.path-frontpage .view-whats-new .row span a:hover {
  color: #226490;
}

.path-frontpage .view-whats-new .row .skin-default .views_slideshow_cycle_main .views_slideshow_cycle_teaser_section {
  height: 284px;
}

.path-frontpage .view-whats-new .view-footer {
  margin-top: 5px;
  text-align: right;
}

.path-frontpage .view-whats-new .view-footer a {
  text-transform: uppercase;
  color: #3B921B;
}

.path-frontpage .view-whats-new .view-footer a:hover {
  color: #226490;
}

.whats-new-page {
  margin-top: 0;
}

.whats-new-page .row ul li {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 15px;
  margin-bottom: 25px;
}

.present-board-wrap .present-board__img-box,
.present-board-wrap .present-board__detail-box {
  margin-top: 20px;
}

.present-board-wrap .present-board__img-box img {
  width: 270px;
  height: auto;
  max-width: 100%;
}

.present-board-wrap .present-board__detail-box h2 {
  color: #226490;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.present-board-wrap .present-board__detail-box .present-board__des-info {
  margin-bottom: 20px;
}

.present-board-wrap .present-board__detail-box .present-board__des-info p {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.present-board-wrap .present-board__detail-box .present-board__contact-telephone-no {
  width: 100%;
  margin-bottom: 15px;
}

.present-board-wrap .present-board__detail-box .present-board__contact-telephone-no:before {
  height: 19px;
  width: 19px;
  background-image: url(../images/phone.svg);
}

.present-board-wrap .present-board__message-text p {
  text-align: justify;
  font-family: "lucinda";
  font-style: italic;
}

.imp-functions {
  margin-top: 40px;
}

.imp-functions__title {
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list {
    padding-left: 0;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li {
  width: 49%;
  margin: 0;
  list-style-type: none;
  padding-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li {
    width: 100%;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image {
  width: 40%;
}

@media (max-width: 767px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image {
    width: 100%;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image .organisation-img-wrap {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@media (max-width: 575px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image .organisation-img-wrap {
    left: 35%;
  }
}

@media (max-width: 359px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image .organisation-img-wrap {
    left: 30%;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .organisation-field-image .organisation-img-wrap img {
  width: 100%;
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-text {
  width: 60%;
}

@media (max-width: 767px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-text {
    width: 100%;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-text p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 767px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-text p {
    text-align: right;
    margin-right: 25px;
  }
}

@media (max-width: 575px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-text p {
    text-align: center;
    padding-top: 60px;
    margin-right: 0;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc {
  border-top: 1px solid #D5D5D5;
  width: 100%;
  margin-top: 35px;
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc {
    margin-top: 15px;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content {
  width: 100%;
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li {
  width: 100%;
  margin-left: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
  }
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li button,
.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li a {
  color: #3B921B;
  border: 1px solid #3B921B;
  background: transparent;
  padding: 5px 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-left: 15px;
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li button.active,
.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li .view-fields-organisation-doc .field-content .list-group li a.active {
  background: #3B921B;
  color: #fff;
  margin-left: 0;
}

.block-organisation-main-block .view-latest-recruitment .item-list>ul.organisation-item-list li.org-mt {
  margin-top: 80px;
}

.budget-annual-info li {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.budget-annual-info li p {
  border: 1px solid #C2C2C2;
  padding: 5px;
}

.budget-annual-info li span {
  position: absolute;
  background: #fff;
  padding: 4px 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  right: 9px;
  font-size: 1.07143rem;
  top: 30px;
  box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.1);
}

.present-board {
  margin: 0;
}

.present-board .item-list>ul>li {
  padding: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.present-board .item-list>ul>li:nth-child(2) {
  margin-top: 0;
}

.present-board .item-list>ul>li .views-field-field-address p br {
  display: none;
}

.present-board .item-list>ul>li .views-field-title {
  width: 35%;
}

@media (min-width: 576px) and (max-width: 1004px) {
  .present-board .item-list>ul>li .views-field-title {
    width: 100%;
  }
}

.present-board .item-list>ul>li .views-field-field-designation {
  position: relative;
  padding-left: 0;
  color: rgba(64, 64, 64, 0.5);
  font-size: 1.14286rem;
  text-align: left;
}

@media (min-width: 576px) and (max-width: 1004px) {
  .present-board .item-list>ul>li .views-field-field-designation {
    margin-bottom: 15px;
  }
}

.lab-info .item-list>ul>li {
  position: relative;
}

.lab-info .item-list>ul>li .views-field-field-year-of-establishment {
  position: absolute;
  right: 10px;
  border: 1.3px solid #D5D5D5;
  padding: 2px 20px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  color: #3B921B;
  background: #e4e3e3;
  font-weight: 500;
}

.lab-info .item-list>ul>li .views-field-title {
  margin-bottom: 5px;
  color: #3B921B;
}

.lab-info .item-list>ul>li .views-field-field-juridiction {
  margin-bottom: 20px;
  width: 80%;
}

.lab-info .item-list>ul>li .views-field-field-juridiction span.views-label {
  display: inline-block;
  font-weight: 600;
  width: 15%;
  float: left;
}

.lab-info .item-list>ul>li .views-field-field-juridiction br {
  display: none;
}

.lab-info .item-list>ul>li .arrow-icon {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 10px;
}

.lab-info .item-list>ul>li .arrow-icon:before {
  content: "";
  height: 20px;
  width: 20px;
  background: url(../images/arrow-right.svg);
  display: block;
  -moz-background-size: 57%;
  -o-background-size: 57%;
  background-size: 57%;
  background-repeat: no-repeat;
}

.path-tenders .title {
  display: none;
}

.page-node-5 .title {
  display: none;
}

.contact-us {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 575px) {
  .contact-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.contact-us__desc {
  max-width: 380px;
  width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .contact-us__desc {
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .contact-us__desc {
    max-width: 220px;
  }
}

@media (max-width: 575px) {
  .contact-us__desc {
    max-width: 100%;
  }
}

.contact-us__address,
.contact-us__call,
.contact-us__fax {
  padding: 40px;
  width: 100%;
}

@media (max-width: 767px) {

  .contact-us__address,
  .contact-us__call,
  .contact-us__fax {
    padding: 20px;
  }
}

.contact-us__address {
  background-color: #3B921B;
  padding-bottom: 110px;
}

@media (max-width: 767px) {
  .contact-us__address {
    padding-bottom: 20px;
  }
}

.contact-us__address address {
  margin-bottom: 0;
}

.contact-us__call a,
.contact-us__fax a {
  color: #fff;
}

.contact-us__call {
  background-color: #226490;
  max-width: 280px;
  margin-top: -70px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .contact-us__call {
    max-width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
  }
}

.contact-us__fax {
  background-color: #07C132;
  max-width: 210px;
  margin-top: -50px;
}

@media (max-width: 767px) {
  .contact-us__fax {
    max-width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
  }
}

.contact-us__map {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.contact-us__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .contact-us__map iframe {
    height: 300px;
  }
}

.path-notices .title {
  display: none;
}

.path-laboratories .title {
  display: none;
}

#block-sidebarmap {
  background-image: none;
}

#block-sidebarmap iframe {
  height: 600px;
  width: 100%;
}

.view-contact-info .views-field-field-email .field-content {
  width: 91%;
  word-break: break-all;
}

.path-circulars .title {
  display: none;
}

.view-circulars .item-list>ul>li {
  width: 24.25%;
  padding-bottom: 185px;
  margin-right: 1%;
}

.view-circulars .item-list>ul>li:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 991px) {
  .view-circulars .item-list>ul>li {
    width: 32.66%;
  }

  .view-circulars .item-list>ul>li:nth-child(4n) {
    margin-right: 1%;
  }

  .view-circulars .item-list>ul>li:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .view-circulars .item-list>ul>li {
    width: 49%;
  }

  .view-circulars .item-list>ul>li:nth-child(4n) {
    margin-right: 1%;
  }

  .view-circulars .item-list>ul>li:nth-child(3n) {
    margin-right: 2%;
  }

  .view-circulars .item-list>ul>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .view-circulars .item-list>ul>li {
    width: 100%;
    margin-right: 0;
    padding-bottom: 125px;
  }
}

.view-circulars .views-field-field-date .field-content {
  font-family: "Roboto", sans-serif;
  font-size: 1.71429rem;
  font-weight: 400;
  line-height: 1.1;
  padding: 0 40px 0 20px;
}

.view-circulars .views-field-field-documents a {
  font-size: 1.14286rem;
  color: #404040;
}

.view-circulars .views-field-field-documents a:hover,
.view-circulars .views-field-field-documents a:focus {
  color: #226490;
}

.view-circulars .views-field-field-department {
  position: absolute;
  bottom: 65px;
  left: 25px;
  width: -webkit-calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: calc(100% - 50px);
}

.view-circulars .views-field-field-department .field-content {
  display: inline-block;
  font-size: 1.71429rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-top: 20px;
  width: 100%;
}

.view-circulars .views-field-field-department .field-content:before {
  position: absolute;
  content: "";
  border-top: 1px solid rgba(59, 146, 27, 0.4);
  left: 0;
  top: 0;
  width: 150px;
}

@media (max-width: 575px) {
  .view-circulars .views-field-field-department {
    bottom: 25px;
  }
}

.view-filters {
  margin: 0 -15px 50px -15px;
}

.view-filters .form-row .form-group {
  padding: 0 10px 0 0;
  margin: 0;
}

.view-filters .form-row label {
  display: none;
}

.view-filters .form-row .form-actions {
  margin: 0;
}

.view-filters .form-row .form-actions .btn-primary {
  padding: 7px 50px;
}

.path-recruitment .title {
  display: none;
}

.view-latest-recruitment .item-list>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.view-latest-recruitment .item-list>ul>li {
  width: 32%;
  margin-right: 2%;
  padding-bottom: 25px;
}

.view-latest-recruitment .item-list>ul>li:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .view-latest-recruitment .item-list>ul>li {
    width: 49%;
  }

  .view-latest-recruitment .item-list>ul>li:nth-child(3n) {
    margin-right: 2%;
  }

  .view-latest-recruitment .item-list>ul>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .view-latest-recruitment .item-list>ul>li {
    width: 100%;
    margin-right: 0;
  }
}

.view-latest-recruitment .views-field-field-image .field-content {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.path-office .title {
  display: none;
}

#block-views-block-offices-block-1 {
  background-image: none;
}

.view-offices .item-list {
  margin-top: 20px;
}

.view-offices .item-list>ul>li {
  padding: 0 0 0 30px;
}

.view-offices .item-list>ul>li+li {
  margin-top: 20px;
}

.view-offices .item-list a {
  font-size: 1.28571rem;
  color: #404040;
}

.view-offices .item-list a:hover,
.view-offices .item-list a:focus {
  color: #0562A2;
}

.main-office {
  margin-bottom: 20px;
}

.regional-office-wrap {
  margin-bottom: 50px;
}

.odr {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.odr+.odr {
  margin-top: 15px;
}

.odr__name {
  font-size: 1.14286rem;
  font-weight: 700;
  margin-bottom: 15px;
  width: 100%;
}

.odr__address,
.odr__numbers,
.odr__fax,
.odr__emails {
  position: relative;
}

.odr__address:before,
.odr__numbers:before,
.odr__fax:before,
.odr__emails:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.odr__address {
  padding-left: 40px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.odr__address p {
  margin-bottom: 0;
}

.odr__address:before {
  height: 29px;
  width: 29px;
  background-image: url("../images/building.svg");
}

.odr__contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.odr__numbers,
.odr__fax,
.odr__emails {
  width: 33.33%;
  padding-left: 30px;
}

@media (max-width: 991px) {

  .odr__numbers,
  .odr__fax,
  .odr__emails {
    width: 50%;
  }
}

@media (max-width: 575px) {

  .odr__numbers,
  .odr__fax,
  .odr__emails {
    width: 100%;
  }
}

.odr__numbers:before {
  height: 19px;
  width: 19px;
  background-image: url("../images/phone.svg");
}

@media (max-width: 575px) {
  .odr__fax {
    margin-top: 10px;
  }
}

.odr__fax:before {
  height: 24px;
  width: 24px;
  background-image: url("../images/fax.svg");
  top: -1px;
}

@media (max-width: 991px) {
  .odr__emails {
    margin-top: 10px;
    width: 100%;
  }
}

.odr__emails a {
  color: #404040;
}

.odr__emails a:hover,
.odr__emails a:focus {
  color: #226490;
}

.odr__emails:before {
  height: 16px;
  width: 21px;
  background-image: url("../images/mail.svg");
  top: 2px;
}

.regional-office-wrap__title {
  font-size: 1.21429rem;
}

.path-billdesk #msg_bildesk {
  max-width: 500px;
}

.path-billdesk #msg_bildesk fieldset {
  padding-left: 0;
  padding-right: 0;
}

.path-billdesk #edit-submit {
  margin-top: 15px;
}

.path-search .title {
  display: none;
}

.path-search #search-form>.container-inline {
  padding-left: 0;
  padding-right: 0;
}

.path-search #search-form>.container-inline>.col-auto {
  padding-left: 0;
  padding-right: 0;
}

.path-search #search-form .form-type-search .form-control {
  padding-right: 40px;
}

.path-search #search-form .form-submit {
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0;
  height: 33px;
  width: 40px;
  background-position: center;
}

.path-search .node_search-results>li {
  padding: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  margin-bottom: 15px;
}

.path-search .item-list ul {
  margin: 0;
}

.path-search .item-list ul li {
  padding: 5px 0 5px 20px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: relative;
}

.path-search .item-list ul li:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #0562A2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  left: 0;
  top: 10px;
}

.view-public-hearing .view-header {
  font-family: "Roboto", sans-serif;
  font-size: 1.78571rem;
  font-weight: 700;
  text-align: center;
}

.view-public-hearing .view-filters .form-row {
  margin-top: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .view-public-hearing .view-filters .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.view-public-hearing .view-filters .form-row label {
  font-weight: 600;
}

.view-public-hearing .view-filters .form-submit {
  padding: 6px 15px;
}

.view-public-hearing .view-content {
  display: block;
}

.view-public-hearing .item-list>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.view-public-hearing .item-list>ul>li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.view-public-hearing .item-list>ul>li:nth-child(2n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .view-public-hearing .item-list>ul>li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .view-public-hearing .item-list>ul>li {
    padding: 10px;
  }
}

.view-public-hearing .views-field-field-public-hearing-date,
.view-public-hearing .views-field-field-public-hearing-date-1 {
  margin-bottom: 10px;
  margin-bottom: auto;
}

.view-public-hearing .views-field-field-public-hearing-date {
  color: #226490;
  margin-right: 10px;
  padding-right: 10px;
}

.view-public-hearing .views-field-title {
  margin-bottom: 15px;
  margin-top: 5px;
  width: 100%;
}

@media (max-width: 767px) {
  .view-public-hearing .views-field-title {
    margin-bottom: 10px;
  }
}

.view-public-hearing .table tr td {
  word-break: break-word;
}

.view-public-hearing .views-field-field-public-hearing-order,
.view-public-hearing .views-field-field-executive-summary,
.view-public-hearing .views-field-field-mom,
.view-public-hearing .views-field-field-remark {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  white-space: nowrap;
  text-align: center;
  border-top: 1px solid #C2C2C2;
  padding-top: 5px;
  margin-top: auto;
}

.view-public-hearing .views-field-field-public-hearing-order a,
.view-public-hearing .views-field-field-public-hearing-order .disable,
.view-public-hearing .views-field-field-executive-summary a,
.view-public-hearing .views-field-field-executive-summary .disable,
.view-public-hearing .views-field-field-mom a,
.view-public-hearing .views-field-field-mom .disable,
.view-public-hearing .views-field-field-remark a,
.view-public-hearing .views-field-field-remark .disable {
  padding: 5px 19px;
}

@media (max-width: 991px) {

  .view-public-hearing .views-field-field-public-hearing-order a,
  .view-public-hearing .views-field-field-public-hearing-order .disable,
  .view-public-hearing .views-field-field-executive-summary a,
  .view-public-hearing .views-field-field-executive-summary .disable,
  .view-public-hearing .views-field-field-mom a,
  .view-public-hearing .views-field-field-mom .disable,
  .view-public-hearing .views-field-field-remark a,
  .view-public-hearing .views-field-field-remark .disable {
    padding: 5px;
    font-size: 0.78571rem;
  }
}

.view-public-hearing .views-field-field-public-hearing-order a,
.view-public-hearing .views-field-field-executive-summary a,
.view-public-hearing .views-field-field-mom a,
.view-public-hearing .views-field-field-remark a {
  display: block;
}

.view-public-hearing .views-field-field-public-hearing-order .disable,
.view-public-hearing .views-field-field-executive-summary .disable,
.view-public-hearing .views-field-field-mom .disable,
.view-public-hearing .views-field-field-remark .disable {
  color: #C2C2C2;
}

.view-public-hearing .views-field-field-public-hearing-order {
  margin-left: -20px;
  padding-left: 20px;
}

@media (max-width: 575px) {
  .view-public-hearing .views-field-field-public-hearing-order {
    margin-left: -10px;
    padding-left: 10px;
  }
}

.view-public-hearing .views-field-field-public-hearing-order a,
.view-public-hearing .views-field-field-public-hearing-order .disable {
  padding-left: 0;
}

.view-public-hearing .views-field-field-remark {
  margin-right: -20px;
  padding-right: 20px;
}

@media (max-width: 575px) {
  .view-public-hearing .views-field-field-remark {
    margin-right: -10px;
    padding-right: 10px;
  }
}

.view-public-hearing .views-field-field-remark a,
.view-public-hearing .views-field-field-remark .disable {
  border-right: none;
}

.view-public-hearing #view-field-public-hearing-order-table-column,
.view-public-hearing #view-field-executive-summary-table-column {
  white-space: normal !important;
}

.view-public-hearing .views-field-field-public-hearing-date,
.view-public-hearing .views-field-field-executive-summary {
  white-space: nowrap;
}

.view-public-hearing #view-field-public-hearing-date-table-column {
  color: #404040;
}

.view-public-hearing .views-field-counter,
.view-public-hearing #view-title-table-column,
.view-public-hearing #view-field-mom-table-column,
.view-public-hearing #view-field-executive-summary-table-column,
.view-public-hearing #view-field-public-hearing-order-table-column,
.view-public-hearing #view-field-remark-table-column {
  text-align: center !important;
}

.node--type-health-and-environment .field--name-field-content-title {
  background-color: #0562A2;
  color: #fff;
  font-size: 1.42857rem;
  font-family: "Roboto", sans-serif;
  padding: 5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.node--type-health-and-environment .field__items p {
  margin-bottom: 0;
}

.node--type-health-and-environment .paragraph--type--link-type-content {
  margin-bottom: 15px;
}

.view-events .view-filters .form-row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .view-events .view-filters .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.view-events .view-filters .form-row label {
  font-weight: 600;
}

.view-events .view-filters .form-submit {
  padding: 6px 15px;
}

.view-events .view-content {
  display: block;
}

.view-events .view-content .text-align-center {
  display: none;
}

.view-events .item-list>h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.78571rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.view-events .item-list>ul>li {
  margin-bottom: 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
  font-size: 1.14286rem;
  font-weight: 600;
}

.view-events .views-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .view-events .views-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.view-events .views-row .views-field-title {
  font-weight: 700;
  font-size: 1.14286rem;
  margin-bottom: 15px;
  width: 100%;
}

.view-events .views-row .views-field-field-event-content {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

@media (min-width: 576px) {
  .view-events .views-row .views-field-field-event-content {
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .view-events .views-row .views-field-field-event-content {
    margin-top: 15px;
  }
}

.view-events .views-row .views-field-field-event-images {
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media (min-width: 576px) {
  .view-events .views-row .views-field-field-event-images {
    max-width: 300px;
  }
}

.view-events .views-row .views-field-field-event-images .field-content>a {
  display: block;
}

.view-events .views-row .views-field-field-event-images .field-content>a>img {
  width: 100%;
  height: auto;
}

.path-photo-gallery .view-events .item-list>h3 {
  display: none;
}

.path-photo-gallery .views-field-field-sub-title {
  font-weight: 700;
  font-size: 1.14286rem;
}

.path-photo-gallery .views-field-field-sub-title>a {
  display: block;
}

.path-photo-gallery .views-field-field-sub-title>a img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.path-photo-gallery .views-field-field-event-images {
  margin-top: 15px;
}

.node--type-workshop .node__content {
  margin-top: 0;
}

.node--type-workshop .node__content>.field {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.node--type-workshop .node__content>.field+.field {
  margin-top: 25px;
}

.node--type-workshop .node__content>.field .file {
  padding-left: 0;
  display: block;
}

.node--type-workshop .node__content>.field .file a {
  position: relative;
  display: block;
  padding-right: 40px;
}

.node--type-workshop .node__content>.field .file a:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  background-image: url("../images/pdf.svg");
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 21px;
  height: 28px;
}

.node--type-workshop .node__content>.field--name-field-day-schedule .field__label,
.node--type-workshop .node__content>.field--name-field-photos .field__label,
.node--type-workshop .node__content>.field--name-field-videos .field__label {
  display: none;
}

.node--type-workshop .node__content>.field--name-field-day-schedule .file a,
.node--type-workshop .node__content>.field--name-field-photos .file a,
.node--type-workshop .node__content>.field--name-field-videos .file a {
  font-size: 1.28571rem;
  font-weight: 700;
  color: #404040;
  padding: 20px;
}

.node--type-workshop .node__content>.field--name-field-letters .field__label,
.node--type-workshop .node__content>.field--name-field-presentation .field__label {
  font-size: 1.28571rem;
  font-weight: 700;
  color: #404040;
  padding: 20px;
}

.node--type-workshop .node__content>.field--name-field-letters .field__items,
.node--type-workshop .node__content>.field--name-field-presentation .field__items {
  padding-left: 30px;
  padding-bottom: 30px;
}

.node--type-workshop .node__content>.field--name-field-letters .file a {
  font-size: 1.14286rem;
  font-weight: 600;
  padding: 10px 40px 10px 10px;
}

.node--type-workshop .node__content>.field--name-field-presentation .paragraph .field__item {
  font-size: 1.14286rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.node--type-workshop .node__content>.field--name-field-presentation .paragraph .field__item:last-child {
  margin-bottom: 0;
}

.node--type-workshop .node__content>.field--name-body {
  padding: 20px;
}

.node--type-workshop .node__content>.field--name-body .workshop-field--image-box {
  margin-top: 40px;
}

.node--type-workshop .node__content>.field--name-body .workshop-field--image-box a {
  margin-right: 20px;
}

.node--type-workshop .node__content>.field--name-body .workshop-field--image-box a img {
  padding: 10px 10px 20px 10px;
  -webkit-box-shadow: 0 0 3px 3px #e1e1e1;
  -moz-box-shadow: 0 0 3px 3px #e1e1e1;
  box-shadow: 0 0 3px 3px #e1e1e1;
}

.node--type-workshop .node__content>.field--name-body .workshop-field--image-box a:last-child {
  margin-right: 0px;
}

.node--type-awareness-print-media-campaign- .field--name-field-images>.field__item {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 20px;
}

.node--type-awareness-print-media-campaign- .field--name-field-images>.field__item+.field__item {
  margin-top: 25px;
}

.node--type-awareness-print-media-campaign- .field--name-field-images>.field__item:last-child {
  border-bottom: none;
}

.node--type-awareness-print-media-campaign- .field--type-yearonly {
  font-size: 1.14286rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.node--type-awareness-print-media-campaign- .field__item .field--type-image {
  float: none;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.node--type-awareness-print-media-campaign- .field__item .field--type-image>.field__item {
  margin-right: 2%;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .node--type-awareness-print-media-campaign- .field__item .field--type-image>.field__item {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}

.node--type-awareness-print-media-campaign- .field__item .field--type-image>.field__item img {
  margin: 0;
}

.festival-link-page li {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin-bottom: 10px;
}

.festival-link-page li .views-field-title span a {
  font-size: 1.14286rem;
  font-weight: 600;
  display: block;
  color: #404040;
}

.festival-link-page li .views-field-title span a:hover {
  color: #226490;
}

.festival-link-page .row {
  display: block;
}

.festival-page--photos-videos .view-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-flow: column !important;
  -moz-box-orient: vertical !important;
  -moz-box-direction: normal !important;
  -ms-flex-flow: column !important;
  flex-flow: column !important;
}

.festival-page--photos-videos .view-content .festival-page--photos-videos__list {
  margin-top: 20px;
}

.festival-page--photos-videos .view-content .festival-page--photos-videos__list:first-child {
  margin-top: 0px;
}

.festival--photos-listing-page .view-content .item-list ul .views-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.festival--photos-listing-page .view-content .item-list ul .views-row .views-field-field-photos-awareness .field-content a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 35%;
  object-position: 0 35%;
  height: 200px;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-caption {
  color: #404040;
  font-size: 1.28571rem;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos {
  padding: 10px 10px 20px 10px;
  position: relative;
  z-index: 99;
  margin-bottom: 35px;
  -webkit-box-shadow: 0 0 3px 3px #e1e1e1;
  -moz-box-shadow: 0 0 3px 3px #e1e1e1;
  box-shadow: 0 0 3px 3px #e1e1e1;
  margin-right: 4%;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:before,
.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 3px 3px 3px 0 #e1e1e1;
  -moz-box-shadow: 3px 3px 3px 0 #e1e1e1;
  box-shadow: 3px 3px 3px 0 #e1e1e1;
  z-index: -1;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:before {
  left: 8px;
  top: 8px;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:after {
  left: 16px;
  top: 16px;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:nth-child(3n) {
  margin-right: 0;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos>div {
  padding: 0px;
}

.festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos>div img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos {
    margin-right: 7%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }

  .festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:nth-child(3n) {
    margin-right: 7%;
  }

  .festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .festival--video-listing-page .view-content .festival--video-list-box ul li>div .field--name-field-videos {
    max-width: 97%;
    width: 97%;
    margin-right: 0 !important;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -moz-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}

.festival--video-listing-page .view-content .festival--video-list-box {
  width: 100%;
}

.gallery-listing-page .item-list ul>.views-row,
.festival--photos-listing-page .item-list ul>.views-row {
  padding: 10px 10px 20px 10px;
  position: relative;
  z-index: 99;
  margin-bottom: 35px;
  -webkit-box-shadow: 0 0 3px 3px #e1e1e1;
  -moz-box-shadow: 0 0 3px 3px #e1e1e1;
  box-shadow: 0 0 3px 3px #e1e1e1;
  margin-right: 4%;
}

@media (min-width: 768px) {

  .gallery-listing-page .item-list ul>.views-row,
  .festival--photos-listing-page .item-list ul>.views-row {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.gallery-listing-page .item-list ul>.views-row:before,
.gallery-listing-page .item-list ul>.views-row:after,
.festival--photos-listing-page .item-list ul>.views-row:before,
.festival--photos-listing-page .item-list ul>.views-row:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 3px 3px 3px 0 #e1e1e1;
  -moz-box-shadow: 3px 3px 3px 0 #e1e1e1;
  box-shadow: 3px 3px 3px 0 #e1e1e1;
  z-index: -1;
}

.gallery-listing-page .item-list ul>.views-row:before,
.festival--photos-listing-page .item-list ul>.views-row:before {
  left: 8px;
  top: 8px;
}

.gallery-listing-page .item-list ul>.views-row:after,
.festival--photos-listing-page .item-list ul>.views-row:after {
  left: 16px;
  top: 16px;
}

.gallery-listing-page .item-list ul>.views-row:nth-child(3n),
.festival--photos-listing-page .item-list ul>.views-row:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 767px) {

  .gallery-listing-page .item-list ul>.views-row,
  .festival--photos-listing-page .item-list ul>.views-row {
    margin-right: 7%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }

  .gallery-listing-page .item-list ul>.views-row:nth-child(3n),
  .festival--photos-listing-page .item-list ul>.views-row:nth-child(3n) {
    margin-right: 7%;
  }

  .gallery-listing-page .item-list ul>.views-row:nth-child(2n),
  .festival--photos-listing-page .item-list ul>.views-row:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {

  .gallery-listing-page .item-list ul>.views-row,
  .festival--photos-listing-page .item-list ul>.views-row {
    max-width: 97%;
    width: 97%;
    margin-right: 0 !important;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -moz-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}

.gallery-listing-page .views-field-field-event-images-1 ul li,
.gallery-listing-page .views-field-field-photos-awareness ul li,
.festival--photos-listing-page .views-field-field-event-images-1 ul li,
.festival--photos-listing-page .views-field-field-photos-awareness ul li {
  display: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  margin: 0;
  padding: 0;
}

.gallery-listing-page .views-field-field-event-images-1 ul li:first-child,
.gallery-listing-page .views-field-field-photos-awareness ul li:first-child,
.festival--photos-listing-page .views-field-field-event-images-1 ul li:first-child,
.festival--photos-listing-page .views-field-field-photos-awareness ul li:first-child {
  display: block;
}

.gallery-listing-page .views-field-field-event-images-1 ul li a,
.gallery-listing-page .views-field-field-photos-awareness ul li a,
.festival--photos-listing-page .views-field-field-event-images-1 ul li a,
.festival--photos-listing-page .views-field-field-photos-awareness ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

.page-node-4819 .node__content .field__item,
.page-node-5502 .node__content .field__item {
  border-bottom: none;
}

.page-node-4819 .node__content .field--name-field-block-contents,
.page-node-5502 .node__content .field--name-field-block-contents {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
}

.page-node-5502 .field--name-field-archive-link {
  margin-top: 1.5rem;
}

.water-quality-maps {
  margin-top: 110px;
}

.water-quality-maps .view-content {
  margin-bottom: 110px;
}

@media (max-width: 767px) {
  .water-quality-maps .view-content .organisation-item-list>li+li {
    margin-top: 110px;
  }
}

.hide-table {
  display: none;
}

#staion_code-listing {
  max-width: 300px;
  width: 100%;
}

#cities-listing,
#staion_code-listing,
.fromdate,
.todate {
  display: block;
  margin: 0px auto 20px auto;
  height: -webkit-calc(1.5em + 0.75rem + 2px);
  height: -moz-calc(1.5em + 0.75rem + 2px);
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  -moz-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
}

#cities-listing:focus,
#staion_code-listing:focus,
.fromdate:focus,
.todate:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #3B921B;
}

.fromdate,
.todate {
  display: inline-block;
  margin: 0px 5px;
}

.water-quality-date-filter,
.airquality-date-filter {
  font-family: "Roboto", sans-serif;
  color: #404040;
  text-align: center;
}

.water-quality-date-filter #fromyw,
.water-quality-date-filter #toyw,
.airquality-date-filter #fromyw,
.airquality-date-filter #toyw {
  display: inline-block;
  margin: 0px 5px;
  height: -webkit-calc(1.5em + 0.75rem + 2px);
  height: -moz-calc(1.5em + 0.75rem + 2px);
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  -moz-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
}

.water-quality-date-filter #fromyw:focus,
.water-quality-date-filter #toyw:focus,
.airquality-date-filter #fromyw:focus,
.airquality-date-filter #toyw:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #3B921B;
}

.show-more,
.cetpbtn {
  border: none;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 6px 15px;
  letter-spacing: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: -webkit-gradient(linear, left top, right top, from(#3B921B), to(#69BD4E));
  background: -webkit-linear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: -moz- oldlinear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: -o-linear-gradient(left, #3B921B 0%, #69BD4E 100%);
  background: linear-gradient(to right, #3B921B 0%, #69BD4E 100%);
}

@media (max-width: 767px) {

  .show-more,
  .cetpbtn {
    padding: 10px 30px;
    margin-top: 20px;
  }
}

.show-more:hover,
.show-more:focus,
.cetpbtn:hover,
.cetpbtn:focus {
  background: -webkit-gradient(linear, left top, right top, from(#69BD4E), to(#3B921B));
  background: -webkit-linear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: -moz- oldlinear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: -o-linear-gradient(left, #69BD4E 0%, #3B921B 100%);
  background: linear-gradient(to right, #69BD4E 0%, #3B921B 100%);
}

.wq-monitor-box {
  display: table;
}

.wq-monitor-box .notetxt {
  color: #0562A2;
}

.wq-monitor-box .subhead_1 {
  color: #0562A2;
}

@media (max-width: 767px) {
  .wq-monitor-box {
    display: block;
  }
}

.ambient-air-text {
  border: none;
  color: #0562A2;
}

.ambient-air-text span {
  color: #0562A2;
  font-weight: 600;
}

.air-table-box--color td,
.air-table-box--color th {
  background-color: #85e5c0;
  color: #fff;
}

.mpcb-cetp-filter {
  text-align: center;
}

.mpcb-cetp-filter .cetp_code_list,
.mpcb-cetp-filter .cetp-date-filter {
  margin-bottom: 10px;
}

.mpcb-cetp-filter .cetp_code_list select,
.mpcb-cetp-filter .cetp_code_list input,
.mpcb-cetp-filter .cetp-date-filter select,
.mpcb-cetp-filter .cetp-date-filter input {
  display: inline-block;
  height: -webkit-calc(1.5em + 0.75rem + 2px);
  height: -moz-calc(1.5em + 0.75rem + 2px);
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  border: 1px solid #ced4da;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
}

.mpcb-cetp-filter .cetp_code_list select:focus,
.mpcb-cetp-filter .cetp_code_list input:focus,
.mpcb-cetp-filter .cetp-date-filter select:focus,
.mpcb-cetp-filter .cetp-date-filter input:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #3B921B;
}

.mpcb-cetp-filter .cetp_code_list {
  margin-bottom: 20px;
}

.mpcb-cetp-filter .cetp_code_list select {
  max-width: 300px;
  width: 100%;
}

.mpcb-cetp-filter .cetp-date-filter input {
  max-width: 200px;
  width: 100%;
  margin: 0px 5px;
}

.mpcb-cetp-filter .cetpbtn {
  padding: 6px 10px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/*our services*/
.hidden-div {
  display: none;
  /* Hide the div by default */
}

.hideCat {
  display: none
}

.showCat {
  display: block
}

.icon-card {
  text-align: center;
  cursor: pointer;
  border: 1px solid #62e61a;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  width: 250px;
  /* background-color: #acefc5; */
}

.icon-card:hover {
  background-color: #acefc5;
}

.icon {
  font-size: 2rem;
  color: green;
  margin-bottom: 2rem;
}

/* Media Query for Tablet Screens */
@media (max-width: 768px) {
  .icon-card {
    width: 80%;
    padding: 8px;
  }

  .icon {
    font-size: 1.8rem;
  }
}

/* Media Query for Mobile Screens */
@media (max-width: 480px) {
  .icon-card {
    width: 100%;
    padding: 6px;
    margin: 8px 0;
  }

  .icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.sub-cards {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.sub-card {
  width: 300px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid green;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  background-color: #acefc5;
}

.sub-card.active {
  background-color: green;
  color: white;
}

/* Media Query for Tablets and Smaller Screens */
@media (max-width: 768px) {
  .sub-cards {
    flex-direction: column;
    gap: 20px;
  }

  .sub-card {
    width: 90%;
    height: 50px;
  }
}

/* Media Query for Mobile Screens */
@media (max-width: 480px) {
  .sub-card {
    width: 100%;
    height: 45px;
    font-size: 14px;
  }
}

#fooMap {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 640 / 220;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #fooMap {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  #fooMap {
    height: 150px;
    aspect-ratio: unset;
    margin-bottom: 16px;
  }
}

/* company slider */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 800px; */
  height: 140px;
  margin: auto;
}

.slider {
  display: flex;
  width: calc(120px * 12);
  animation: slide 20s linear infinite;
}

.slide {
  min-width: 120px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-720px);
  }
}

.featured-top {
  background-color: #e2e8e1;
  padding-top: 85px;
}

/* organic waste */

.organic-waste-box {
  padding: 50px 60px;
  margin-top: 40px;
  margin-bottom: 5px;
  color: #3e3e3e;
  border-radius: 15px;
  background-color: #58db8870;
  height: 300px;
}

.organic-waste-box__title {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  text-transform: uppercase;
  font-size: 2.42857rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.organic_waste_img {
  margin-top: 40px;
  width: 325px;
}

.organic_waste_img img {
  height: 300px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .organic-waste-box {
    padding: 10px 15px;
    height: 250px;
  }

  .organic-waste-box__title {
    font-size: 20px;
  }
}

/* Environment Clearance & Compliance */

.environment-clearance-box {
  padding: 40px 50px;
  margin-top: 40px;
  margin-bottom: 5px;
  color: #3e3e3e;
  border-radius: 15px;
  background-color: #58db8870;
  height: 300px;
}

.environment-clearance-box__title {
  font-family: "Roboto", sans-serif;
  color: #3e3e3e;
  text-transform: uppercase;
  font-size: 2.42857rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.environment_clearance_img {
  margin-top: 40px;
  width: 325px;
}

.environment_clearance_img img {
  height: 300px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .environment-clearance-box {
    padding: 10px 15px;
    height: 300px;
  }

  .environment-clearance-box.mpcb {
    padding: 10px 15px;
    height: auto;
  }

  .environment-clearance-box__title {
    font-size: 20px;
  }
}

/* Meet our Director & Expert */

.team-section {
  text-align: center;
  margin-top: 20px;
}

.team-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.team-member {
  text-align: center;
}

.circle-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.member-title {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}


/* photo-gallery */

.gallery_card {
  text-align: center;
  cursor: pointer;
  border: 1px solid #050e01;
  border-radius: 8px;
  padding: 0px;
  margin: 30px 0px 10px 0px;
  width: 350px;
  height: 400px;
}

.gallery_card img {
  vertical-align: middle;
  border-style: none;
  height: 300px;
  width: 300px;
}

.gallery_card p {
  font-size: large;
  font-weight: 500;
}

@media (max-width: 991px) {
  .gallery_card {
    width: 80%;
    height: auto;
    margin: 20px auto;
  }

  .gallery_card img {
    width: 90%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .gallery_card {
    width: 90%;
    height: auto;
    margin: 20px auto;
  }

  .gallery_card img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* STP & ETP */

.stp_etp_img1 {
  width: 400px;
  height: 300px;
}

.stp_etp_img2 {
  width: 100%;
  height: 400px;
}

.stp_etp_img3 {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .stp_etp_img1 {
    width: 300px;
    height: auto;
  }

  .stp_etp_img2 {
    width: 100%;
    height: auto;
  }

  .stp_etp_img3 {
    width: 100%;
    height: auto;
  }
}

.bullet-lists {
  margin-left: 15px;
}

/* meet our staff */

.staff_card {
  /* text-align: justify; */
  border-radius: 8px;
  padding: 0px;
  margin: 30px 0px 10px 0px;
  width: 100%;
  height: 200px;
}

.staff_card img {
  vertical-align: middle;
  border-style: none;
  height: 150px;
  width: 150px;
}

.staff_card p {
  font-size: large;
  font-weight: 500;
}