/* ----------------------------------------- */
/* FONTS STACK */
/* ----------------------------------------- */
@font-face {
  font-family: "marcellus";
  src: url("Marcellus-Regular.ttf");
}
@font-face {
  font-family: "albertsansSB";
  src: url("AlbertSans-SemiBold.ttf");
}
@font-face {
  font-family: "roboto";
  src: url("Roboto-Regular.ttf");
}
@font-face {
  font-family: "robotoL";
  src: url("Roboto-Light.ttf");
}
@font-face {
  font-family: "robotoSB";
  src: url("Roboto-SemiBold.ttf");
}
/* ----------------------------------------- */
/* variables */
/* ----------------------------------------- */
:root {
  /* typography */
  --marcellus: "marcellus", "sans-serif";
  --albertsansSB: "albertsansSB", "sans-serif";
  --roboto: "roboto", "sans-serif";
  --robotoL: "robotoL", "sans-serif";
  --robotoSB: "robotoSB", "sans-serif";
  /* section heading */
  --section-heading: 40px/50px var(--marcellus);

  --color-primary: #517957;
  --color-secondary: #d0a330;

  --color-black: #111d15;
  --color-white: #fff;
  --text-color-01: #565656;
  --section-spacing: 64px 64px;
  --section-spacing-unit: 64px;
  --transition: all 0.4s ease;
  --gradient-primary: linear-gradient(
    270deg,
    rgba(57, 142, 128, 0.2484) 36.77%,
    rgba(31, 94, 84, 0.92) 95.96%
  );
  /* --box-shadow-primary: rgba(16, 176, 215, 0.35) 0px 5px 15px; */
}
/* ----------------------------------------- */
/* MISC */
/* ----------------------------------------- */
body {
  background: #fff;
  margin: 0;
  max-width: 1920px;
  margin: 0 auto;
}

html,
body {
  scroll-behavior: smooth;
  font: 18px/31px var(--robotoL);
  color: var(--text-color-01);
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
/* ----------------------------------------- */
/* 100% WIDTH */
/* ----------------------------------------- */
.navbar > .navbar-header,
.navbar > .navbar-collapse {
  margin: 0;
}

.container {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.navbar.container {
  max-width: 100%;
}

.row {
  margin: 0;
}

div[class*="banner"] {
  padding: 0;
}
/* ----------------------------------------- */
/* MAIN NAVIGATION */
/* ----------------------------------------- */

.navbar-default {
  background-color: var(--color-white);
  border: 0;
}

#navbar {
  /* padding: 22px var(--section-spacing-unit) !important; */
  padding: 0 0 0 var(--section-spacing-unit) !important;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  background-color: var(--color-white);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  background: var(--gradient-primary);
  background: linear-gradient(to bottom, #517957 0%, #537759 100%);
}
.path-frontpage #navbar {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.navbar {
  margin: 0;
}

/* #navbar:hover {
} */

.navbar-header {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

.navbar .logo {
  padding: 0;
  margin: 0;
}

/* .navbar .logo img {
  width: 188px;
} */

.navbar-collapse {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  width: 100%;
}

.navbar-nav {
  margin: 0;
  padding: 0;
  text-align: right;
  float: right;
}

.navbar-default .navbar-nav > li {
  margin: 0;
  display: inline-block;
  float: none;
  padding: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.navbar-default .navbar-nav > li > a {
  font: 18px / auto var(--roboto);
  color: var(--color-white);
  transition: var(--transition);
  text-transform: capitalize;
  position: relative;
}
.navbar-default .navbar-nav > li > a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  color: var(--color-white);
  /* color: var(--color-primary); */
}
.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after,
.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > .active > a:hover::after,
.navbar-default .navbar-nav > .active > a:focus::after {
  opacity: 1;
  width: 50%;
}
.navbar-default .navbar-nav > .dropdown > a .caret {
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.navbar-nav .dropdown-menu > li > a {
  font: 18px / auto var(--roboto);
  color: var(--color-white);
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-align: left;
  padding: 5px 10px;
}
.navbar-nav > li > .dropdown-menu {
  background: var(--color-secondary);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
}

.navbar-nav .dropdown-menu > li.active > a {
  color: var(--color-white);
}

.navbar-default .navbar-nav li.last .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar-default .navbar-nav > li > a {
  font-size: 18px;
}

.navbar-nav {
  background: var(--color-secondary);
  border-radius: 0 0 0 24px;
}

@media screen and (max-width: 767px) {
  #navbar {
    flex-wrap: wrap;
    padding: var(--section-spacing) !important;
  }
  #navbar-collapse {
    width: 100% !important;
  }
  .path-frontpage #navbar {
    position: relative;
    background: linear-gradient(to bottom, #517957 0%, #537759 100%);
    padding: 15px 0 0 !important;
    flex-wrap: wrap;
  }
  .navbar-header {
    width: 100% !important;
    padding: 15px 10px;
  }
  .navbar-nav {
    float: none;
    text-align: center;
  }
  .navbar-nav {
    float: none;
    width: 100%;
    border-radius: 0;
    text-align: left;
  }
  .navbar-default .navbar-nav > li {
    display: block;
    width: 100%;
  }
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus,
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    background: var(--color-primary);
    color: white;
  }
  .navbar-default .navbar-nav > li > a::after {
    background: transparent;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    font: 18px / auto var(--robotoL);
    color: var(--color-white) !important;
  }
}

/* ----------------------------------------- */
/* SEARCH */
/* ----------------------------------------- */
/* static search bar */
.region.region-navigation-collapsible {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  row-gap: 24px;
}

.navbar .search-block-form .form-group .input-group #edit-keys {
  background: transparent;
  color: var(--color-white);
  font: 18px / auto var(--robotoL);
  /* width: 180px; */
  width: auto;
  padding: 0;
  border: none;
  border-bottom: 2px solid var(--color-white);
  border-radius: 0;
  box-shadow: unset;
}

#edit-keys::placeholder {
  font: 18px / auto var(--robotoL);
  color: var(--color-white);
}

.navbar-default input[type="search"]::-webkit-input-placeholder {
  font: 18px / auto var(--robotoL);
  color: var(--color-white);
}

.navbar-default input[type="search"]::-moz-placeholder {
  font: 18px / auto var(--robotoL);
  color: var(--color-white);
}

.navbar-default input[type="search"]:-ms-input-placeholder {
  font: 18px / auto var(--robotoL);
  color: var(--color-white);
}

.navbar-default input[type="search"]:-moz-placeholder {
  font: 18px / auto var(--robotoL);
  color: var(--color-white);
}

.navbar-default .btn-primary {
  background: url("../images/searchicon.png") no-repeat center center;
  border-color: transparent;
  border: none;
  padding: 8px 12px;
  color: transparent;
  position: relative;
  z-index: 10 !important;
}

#block-bootstrap-subtheme-search {
  width: fit-content;
  display: block;
  max-width: 230px;
}

#block-bootstrap-subtheme-main-menu {
  width: calc(100%);
}

@media screen and (max-width: 768px) {
  #block-bootstrap-subtheme-search {
    width: 100% !important;
    max-width: 100% !important;
  }
  .navbar .search-block-form .form-group .input-group #edit-keys {
    width: 95% !important;
  }
}
/* ----------------------------------------- */
/* MAIN BANNER - HOME */
/* ----------------------------------------- */
div[id*="views_slideshow_cycle_div_main_banner-block_1_"],
#views_slideshow_cycle_teaser_section_main_banner-block_1 {
  width: 100% !important;
}
#mb-wrap {
  position: relative;
}
#mb-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: 1;
}
.mbtext-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.tagline {
  font: 60px / auto var(--albertsansSB);
  color: var(--color-white);
  margin: 0;
  text-transform: capitalize;
  padding: 0 0 0 var(--section-spacing-unit);
}
.tagline > span {
  font: 60px/70px var(--albertsansSB);
  display: block;
  /* animation */
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
.mbimg-wrap > img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 992px) {
  .mbtext-wrap {
    top: unset;
    bottom: -10%;
  }
  .tagline {
    font: 48px/70px var(--albertsansSB);
  }
  .tagline > span {
    font: 48px/70px var(--albertsansSB);
  }
}
@media screen and (max-width: 992px) {
  .mbtext-wrap {
    bottom: 10%;
    transform: unset;
  }
  .tagline {
    font: 36px / 46px var(--albertsansSB);
  }
  .tagline > span {
    font: 36px / 46px var(--albertsansSB);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------- */
/*       LATEST NEWS - HOME */
/* ----------------------------------------- */

#block-views-block-latest-news-block-1 {
  padding: 0;
}
#block-views-block-latest-news-block-1 .view-content {
  padding: 24px 0;
  margin: 0 auto;
  width: calc(100%);
  background: var(--color-white);
  /* box-shadow: 0px 11px 10px rgba(81, 81, 81, 0.08); */
  /* blur the area behind this element */
  /* backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.4); 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);*/
}

/* fallback for browsers without backdrop-filter */
@supports not (
  (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))
) {
  #block-views-block-latest-news-block-1 .view-content {
    /* increase opacity a bit since there will be no blur */
    background: rgba(255, 255, 255, 0.78);
    /* optional: slightly blur a pseudo-element instead */
  }
}
.notification-item-wrap {
  padding: 4px 0;
}
.notification-item-wrap a {
  display: block;
  color: #333;
  font: 22px/30px var(--roboto);
  transition: var(--transition-04);
}
.notification-item-wrap a:hover,
.notification-item-wrap a:focus {
  text-decoration: none;
  color: var(--color-primary);
  /* color: var(--color-white); */
}
.view-latest-news .view-content {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.view-latest-news .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 120s linear infinite;
}

.view-latest-news .notification-item {
  display: inline-block;
  padding: 0 2rem;
  position: relative;
}
/* .view-latest-news .notification-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
} */
/* Pause on hover */
.view-latest-news .view-content:hover .marquee-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive speed */
@media (max-width: 768px) {
  .view-latest-news .marquee-track {
    animation-duration: 70s; /* slower on small screens */
  }
}

@media (min-width: 1200px) {
  .view-latest-news .marquee-track {
    animation-duration: 50s; /* faster on wide screens */
  }
}
/* ----------------------------------------- */
/*       LATEST NEWS - HOME */
/* ----------------------------------------- */
#home-section {
  padding: var(--section-spacing);
}
#home-section .text-wrapper,
#home-section .text-wrapper > p {
  font: 20px/30px var(--robotoL);
  color: var(--text-color-01);
  margin: 0 0 30px;
}
.about-section {
  background: url("../images/about-section-bg.png") no-repeat center center /
    cover;
}
.section-subtitle {
  font: 18px/20px var(--roboto);
  color: var(--color-secondary);
  margin: 0;
  padding: 0 0 0 24px;
  position: relative;
}
.section-subtitle::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/subheading-before.svg") no-repeat center center /
    cover;
  position: absolute;
  top: 0;
  left: 0;
}
.section-title {
  font: 40px/62px var(--marcellus);
  color: var(--color-primary);
  margin: 0;
  text-transform: uppercase;
}
.about-section .section-title {
  margin: 0 0 30px;
}
.btn-outline {
  width: 154px;
  height: 47px;
  border-radius: 80px;
  transition: var(--transition);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font: 16px var(--roboto);
}
.btn-outline.color-primary {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-outline.color-primary:hover,
.btn-outline.color-primary:focus {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

/* ----------------------------------------- */
/*       MESSAGE - HOME */
/* ----------------------------------------- */
#home-section.message-section {
  padding: 0;
}
.message-section {
  background: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.message-section .section-title {
  position: relative;
}
.message-section .section-title::before {
  content: "";
  width: 105px;
  height: 17px;
  background: url(../images/messages-title-before.png) no-repeat center center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-125px, -50%);
}
.section-title-secondary {
  font: 28px/62px var(--marcellus);
  color: var(--color-primary);
  margin: 0;
}
.message-section .text-col {
  padding: 0 0 0 64px;
}
.btn-fill.color-secondary {
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  color: var(--color-white);
  border-radius: 80px;
  transition: var(--transition);
  width: 154px;
  height: 47px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font: 16px var(--roboto);
}

.btn-fill.color-secondary:hover,
.btn-fill.color-secondary:focus {
  background: transparent;
  color: var(--color-secondary) !important;
}
#home-section.message-section .img-wrap > img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message-section .text-col {
    padding: 15px 15px 48px 48px;
  }
  #home-section.message-section .img-wrap > img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* ----------------------------------------- */
/*       Functions of Inspectorate - HOME */
/* ----------------------------------------- */
.functions-section {
  position: relative;
}
.functions-section::before {
  content: "";
  width: 378px;
  height: 207px;
  background: url("../images/func-section-top.png") no-repeat center center;
  position: absolute;
  top: 0;
  left: 64px;
  z-index: -1;
}
.functions-section::after {
  content: "";
  width: 170px;
  height: 415px;
  background: url("../images/func-section-rt.png") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.functions-section .section-title {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0 48px;
}

.functions-section .section-title::before,
.functions-section .section-title::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../images/subheading-before.svg") no-repeat center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.functions-section .section-title::before {
  left: 0;
}
.functions-section .section-title::after {
  right: 0;
}
.functions-section .section-subtitle {
  width: fit-content;
  padding: 0;
  margin: 0 auto;
}
.section-subtitle.color-primary {
  color: var(--color-primary);
}
.functions-section .section-subtitle::before {
  background: transparent;
}
.functions-section .header-wrap {
  margin: 0 0 48px;
}
.func-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.func-items > li {
  width: 33.333%;
}
.func-items > li > a {
  display: block;
  transition: var(--transition);
  padding: 24px;
  min-height: 135px;
  position: relative;
}
.func-items > li > a::before {
  content: "";
  width: 46px;
  height: 46px;
  background-size: 100% 100%;
  position: absolute;
  top: 24px;
  left: 24px;
}
.func-items > li > a.monitoring::before {
  background: url("../images/icon-monitoring.svg") no-repeat center center;
}
.func-items > li > a.inspection::before {
  background: url("../images/icon-inspection.svg") no-repeat center center;
}
.func-items > li > a.adv-to-govt::before {
  background: url("../images/icon-adv-to-govt.svg") no-repeat center center;
}
.func-items > li > a.snr::before {
  background: url("../images/icon-snr.svg") no-repeat center center;
}
.func-items > li > a.eos::before {
  background: url("../images/icon-eos.svg") no-repeat center center;
}
.func-items > li > a.ocf::before {
  background: url("../images/icon-ocf.svg") no-repeat center center;
}
.func-items > li > a:hover,
.func-items > li > a:focus {
  text-decoration: none;
}

.func-items > li .func-title {
  font: 22px/29px var(--roboto);
  margin: 0 0 8px;
}
.func-inr {
  padding: 0 0 0 56px;
}
.featured-func {
  margin: 0 0 48px;
}
.featured-func > li:nth-child(1) a {
  background: var(--color-primary);
}
.featured-func > li:nth-child(1) a:hover,
.featured-func > li:nth-child(1) a:focus {
  background: var(--text-color-01);
}
.featured-func > li:nth-child(2) a {
  background: var(--color-secondary);
}
.featured-func > li:nth-child(2) a:hover,
.featured-func > li:nth-child(2) a:focus {
  background: transparent;
}
.featured-func > li:nth-child(2) a:hover .func-title,
.featured-func > li:nth-child(2) a:focus .func-title {
  color: var(--text-color-01);
}
.featured-func > li:nth-child(2) a:hover p,
.featured-func > li:nth-child(2) a:focus p {
  color: var(--text-color-01);
}
.featured-func > li:nth-child(2) a.inspection:hover::before,
.featured-func > li:nth-child(2) a.inspection:focus::before {
  background: url("../images/icon-inspection-hvr.svg") no-repeat center center;
}

.featured-func > li:nth-child(3) a {
  background: var(--text-color-01);
}
.featured-func > li:nth-child(3) a:hover,
.featured-func > li:nth-child(3) a:focus {
  background: var(--color-primary);
}
.featured-func > li .func-title {
  color: var(--color-white);
}
.featured-func > li p {
  font: 16px/25px var(--robotoL);
  color: var(--color-white);
  margin: 0;
}
.classic-func > li .func-title,
.classic-func > li p {
  color: var(--text-color-01);
}
.classic-func > li a::after {
  content: "";
  width: 2px;
  height: 100%;
  background: rgba(34, 122, 87, 0.24) !important;
  position: absolute;
  left: 0;
  top: 0;
}
.insp-icon {
  margin: 0 0 24px;
}
.classic-func > li {
  position: relative;
}
.classic-func > li::before {
  transition: var(--transition);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.classic-func > li:hover .func-title,
.classic-func > li:focus .func-title,
.classic-func > li:hover p,
.classic-func > li:focus p {
  color: var(--color-white);
}
.classic-func > li:hover a::before,
.classic-func > li:focus a::before {
  filter: brightness(0) invert(1);
}
.classic-func > li:nth-child(1):hover::before,
.classic-func > li:nth-child(1):focus::before {
  background: var(--color-primary);
}

.classic-func > li:nth-child(2):hover::before,
.classic-func > li:nth-child(2):focus::before {
  background: var(--color-secondary);
}

.classic-func > li:nth-child(3):hover::before,
.classic-func > li:nth-child(3):focus::before {
  background: var(--text-color-01);
}
@media screen and (max-width: 767px) {
  .func-items > li {
    width: 100%;
  }
  .functions-section .section-title {
    padding: 0 15px;
  }
  .functions-section::before {
    width: 50%;
  }
}
/* ----------------------------------------- */
/*       INSPECTION - HOME  */
/* ----------------------------------------- */
#block-quicktabsinspections {
  padding: var(--section-spacing);
  background: #f9f9f9;
}
#block-quicktabsinspections .block-title {
  font: 40px / 62px var(--marcellus);
  color: var(--color-primary);
  margin: 0 auto 24px;
  text-align: center;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  margin: 0 0 48px;
}
#block-quicktabsinspections .block-title::before,
#block-quicktabsinspections .block-title::after {
  content: "";
  height: 17px;
  width: calc(50% - 128px);
  background-size: 100% 100% !important;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
#block-quicktabsinspections .block-title::before {
  background: url(../images/gallery-before.svg) no-repeat center center;
  left: 0;
}
#block-quicktabsinspections .block-title::after {
  background: url(../images/gallery-after.svg) no-repeat center center;
  right: 0;
}
#block-quicktabsinspections #quicktabs-inspections > .quicktabs-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 0 48px;
  column-gap: 24px;
  padding: 0;
}

#block-quicktabsinspections #quicktabs-inspections > .quicktabs-tabs > li {
  width: calc(33.33% - 24px);
}
#block-quicktabsinspections #quicktabs-inspections > .quicktabs-tabs > li > a {
  display: block;
  font: 20px / 26px var(--roboto);
  color: #333;
  background: #fff4d9;
  border-radius: 20px;
  padding: 20px 40px;
  text-align: center;
  transition: var(--transition);
  text-wrap: auto;
  white-space: normal;
}
#block-quicktabsinspections
  #quicktabs-inspections
  > .quicktabs-tabs
  > li.active
  a,
#block-quicktabsinspections
  #quicktabs-inspections
  > .quicktabs-tabs
  > li
  a:hover,
#block-quicktabsinspections
  #quicktabs-inspections
  > .quicktabs-tabs
  > li
  a:focus {
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-white);
}
#block-quicktabsinspections .quicktabs-tabpage .quicktabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs {
  width: 30%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 12px;
}
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs
  > li {
  margin: 0 0 24px;
  width: 100%;
}
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs
  > li
  > a {
  font: 20px/26px var(--robotoL);
  color: #333;
  transition: var(--transition);
  padding: 24px;
  border-radius: 24px;
  background: radial-gradient(
    ellipse at center,
    #ffffff 0%,
    #f6f6f6 47%,
    #ededed 100%
  );

  display: block;
  width: 100%;
  text-wrap: auto;
  white-space: normal;
}
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs
  > li
  > a:hover,
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs
  > li
  > a:focus {
  text-decoration: none;
  background: var(--color-secondary);
  color: var(--color-white);
}

#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-main {
  width: 70%;
  padding: 0 15px;
}
#block-quicktabsinspections
  .quicktabs-tabpage
  .quicktabs-wrapper
  .quicktabs-tabs
  > li.active
  > a {
  background: var(--color-secondary);
  color: var(--color-white);
}

div[class*="view-display-id-block_"].view-ambit-of-inspection,
div[class*="view-display-id-block_"].view-modes-of-inspection,
div[class*="view-display-id-block_"].view-inspection-methodology {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
div[class*="view-display-id-block_"].view-ambit-of-inspection .view-content,
div[class*="view-display-id-block_"].view-modes-of-inspection .view-content,
div[class*="view-display-id-block_"].view-inspection-methodology .view-content,
div[class*="view-display-id-block_"].view-inspection-methodology .view-header,
div[class*="view-display-id-block_"].view-ambit-of-inspection .view-header,
div[class*="view-display-id-block_"].view-modes-of-inspection .view-header {
  padding: 0 15px;
  width: 70%;
}
div[class*="view-display-id-block_"].view-ambit-of-inspection .view-footer,
div[class*="view-display-id-block_"].view-modes-of-inspection .view-footer,
div[class*="view-display-id-block_"].view-inspection-methodology .view-footer {
  width: 30%;
}
.ambit-header > img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  #block-quicktabsinspections #quicktabs-inspections > .quicktabs-tabs > li {
    width: 100%;
  }
  #block-quicktabsinspections #quicktabs-inspections > .quicktabs-tabs {
    gap: 24px;
  }
  #block-quicktabsinspections
    .quicktabs-tabpage
    .quicktabs-wrapper
    .quicktabs-tabs {
    padding: 12px;
    background: #f6f6f6;
    border-radius: 12px;
    margin: 0 0 24px;
  }
  #block-quicktabsinspections
    .quicktabs-tabpage
    .quicktabs-wrapper
    .quicktabs-tabs,
  #block-quicktabsinspections
    .quicktabs-tabpage
    .quicktabs-wrapper
    .quicktabs-main {
    width: 100%;
  }
  #block-quicktabsinspections
    .quicktabs-tabpage
    .quicktabs-wrapper
    .quicktabs-main {
    padding: 0;
  }
  div[class*="view-display-id-block_"].view-ambit-of-inspection .view-content,
  div[class*="view-display-id-block_"].view-modes-of-inspection .view-content,
  div[class*="view-display-id-block_"].view-inspection-methodology
    .view-content {
    width: 100%;
    margin: 0 0 24px;
  }
  div[class*="view-display-id-block_"].view-ambit-of-inspection .view-footer,
  div[class*="view-display-id-block_"].view-modes-of-inspection .view-footer,
  div[class*="view-display-id-block_"].view-inspection-methodology
    .view-footer {
    width: 100%;
  }
}
/* ----------------------------------------- */
/*       NEWS & EVENTS - HOME  */
/* ----------------------------------------- */
#block-views-block-latest-news-block-2 {
  padding: var(--section-spacing);
  background: url("../images/news_and_events_bg.png") no-repeat center center /
    cover;
}
.news-and-events-header {
  margin: 0 0 96px;
}
.news-and-events-header .section-title {
  color: var(--color-white);
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0 48px;
}
.news-and-events-header .section-title::before,
.news-and-events-header .section-title::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url(../images/subheading-before.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.news-and-events-header .section-title::before {
  left: 0;
}
.news-and-events-header .section-title::after {
  right: 0;
}

.news-title {
  font: 20px/34px var(--roboto);
  color: #030303;
  margin: 0;
  text-wrap: auto;
  min-height: 68px;
}
.news-text,
.news-text > * {
  font: 18px/30px var(--robotoL);
  color: #505050;
  margin: 0;
}
.news-date-wrap {
  color: #273868;
  font: 16px/24px var(--roboto);
  margin: 0;
}
.news-img {
}
.news-img img {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.news-content {
  position: relative;
}
.news-content::after {
  content: "";
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  background: url("../images/link-arrow-icon.svg") no-repeat center center;
  position: absolute;
  top: -12px;
  right: 0;
}
/* Basic placeholder (responsive) */
.no-img-found {
  /* easy themeable variables */
  --bg-1: #f6f6f7;
  --bg-2: #ececec;
  --border: #ddd;
  --fg: #8b8b8b;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* adjust or use fixed width if needed */
  max-width: 480px; /* optional cap */
  aspect-ratio: 4 / 3; /* modern browsers: keeps shape */
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  /* border: 1px solid var(--border); */
  border-radius: 6px;
  color: var(--fg);
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  box-sizing: border-box;
  padding: 0.5rem;
  height: 220px;
  border-radius: 20px;
}

/* SVG camera / image icon shown in center */
.no-img-found::before {
  content: "";
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8b8b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><circle cx='12' cy='11' r='2.5'/><path d='M21 15l-5-5-4 4-3-3-4 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
  display: block;
  flex: 0 0 auto;
}

/* optional small caption (e.g. "No image available") */
.no-img-found .placeholder-label {
  position: absolute;
  bottom: 6px;
  left: 8px;
  right: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--fg);
  opacity: 0.9;
  pointer-events: none;
}

/* make it look good when used as a fixed thumbnail */
.no-img-found.thumbnail {
  width: 160px;
  max-width: none;
  aspect-ratio: 1 / 1; /* square thumb */
}

/* Fallback for older browsers without aspect-ratio */
.no-img-found.fallback {
  height: 0;
  padding-top: 75%; /* 4:3 ratio */
  position: relative;
}
.no-img-found.fallback::before,
.no-img-found.fallback .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-img-found.fallback .placeholder-label {
  bottom: 6px;
  left: 8px;
  right: 8px;
  justify-content: center;
  align-items: flex-end;
  font-size: 12px;
}
.news-img {
  margin: 0 0 24px;
}
#block-views-block-latest-news-block-2 .slick-initialized .slick-slide {
  margin: 0 15px;
}
.news-text {
  min-height: 90px;
}
.news-text,
.news-text > * {
  text-wrap: auto;
}
.news-evt-item {
  padding: 20px 24px 24px;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  margin: 15px 0;
  display: block;
  transition: var(--transition);
}
.news-evt-item:hover,
.news-evt-item:focus {
  text-decoration: none;
  transform: translateY(-4px);
}
.news-evt-item:hover .news-content::after,
.news-evt-item:focus .news-content::after {
  background-color: #273868;
  border-color: #273868;
}
#block-views-block-latest-news-block-2 .slick__arrow .slick-arrow {
  background-color: var(--color-secondary) !important;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-secondary) !important;
  border-radius: 50%;
  background: url(../images/link-arrow-icon.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#block-views-block-latest-news-block-2 .slick__arrow {
  width: 100% !important;
}
#block-views-block-latest-news-block-2 .slick__arrow .slick-arrow.slick-prev {
  left: 0;
  background: var(--color-secondary) url("../images/link-arrow-white-prev.svg")
    no-repeat center center;
}
#block-views-block-latest-news-block-2 .slick__arrow .slick-arrow.slick-next {
  right: 0;
  background: var(--color-secondary) url("../images/link-arrow-white-next.svg")
    no-repeat center center;
}
/* ----------------------------------------- */
/*       FAQ - HOME  */
/* ----
------------------------------------- */
.faq-section {
  background: url("../images/faq-bg.png") no-repeat center center / cover;
  padding: var(--section-spacing) !important;
}
#faq-header {
  margin: 0 0 96px;
}
#block-quicktabsfaqsfront .ui-state-default a,
#block-quicktabsfaqsfront .ui-state-default a:link,
#block-quicktabsfaqsfront .ui-state-default a:visited,
#block-quicktabsfaqsfront a.ui-button,
#block-quicktabsfaqsfront a:link.ui-button,
#block-quicktabsfaqsfront a:visited.ui-button,
#block-quicktabsfaqsfront .ui-button,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  font: 20px/27px var(--roboto);
  color: #333;
  margin: 0;
  padding: 0;
  border-bottom: unset;
}

#block-quicktabsfaqsfront .ui-state-default,
#block-quicktabsfaqsfront .ui-widget-content .ui-state-default,
#block-quicktabsfaqsfront .ui-widget-header .ui-state-default,
#block-quicktabsfaqsfront .ui-button,
#block-quicktabsfaqsfront html .ui-button.ui-state-disabled:hover,
#block-quicktabsfaqsfront html .ui-button.ui-state-disabled:active,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #d5ecb8;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--color-primary);
}
#block-quicktabsfaqsfront .ui-accordion-header-collapsed,
.ui-accordion-header-collapsed {
  margin: 0 0 24px;
}
#block-quicktabsfaqsfront .ui-accordion .ui-accordion-content {
  margin: 0 0 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font: 18px/28px var(--robotoL);
  padding-top: 0;
}
#block-quicktabsfaqsfront .ui-state-active,
#block-quicktabsfaqsfront .ui-widget-content .ui-state-active,
#block-quicktabsfaqsfront .ui-widget-header .ui-state-active,
#block-quicktabsfaqsfront a.ui-button:active,
#block-quicktabsfaqsfront .ui-button:active,
#block-quicktabsfaqsfront .ui-button.ui-state-active:hover,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: var(--color-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#block-quicktabsfaqsfront .ui-state-active a,
#block-quicktabsfaqsfront .ui-state-active a:link,
#block-quicktabsfaqsfront .ui-state-active a:visited,
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: var(--color-white);
}
.ui-accordion-content-active,
.ui-accordion-header-collapsed {
  margin: 0 0 2em !important;
}
#block-quicktabsfaqsfront .ui-state-active a,
#block-quicktabsfaqsfront .ui-state-active a:hover,
#block-quicktabsfaqsfront .ui-state-active a:focus,
#block-quicktabsfaqsfront .ui-state-active a:link,
#block-quicktabsfaqsfront .ui-state-active a:visited,
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: var(--color-white) !important;
}
/* .ui-accordion .ui-accordion-content,
.ui-accordion .ui-accordion-header {
  margin: 0 0 2em;
} */
/* ----------------------------------------- */
/*       GALLERY  -HOME*/
/* ----------------------------------------- */

#block-quicktabsgalleryfront {
  padding: var(--section-spacing);
}
#block-quicktabsgalleryfront .block-title {
  font: 40px/62px var(--marcellus);
  color: var(--color-primary);
  margin: 0 auto 24px;
  text-align: center;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  margin: 0 0 48px;
}

#block-quicktabsgalleryfront .block-title::before,
#block-quicktabsgalleryfront .block-title::after {
  content: "";
  height: 17px;
  width: calc(50% - 128px);
  background-size: 100% 100% !important;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
#block-quicktabsgalleryfront .block-title::before {
  background: url("../images/gallery-before.svg") no-repeat center center;
  left: 0;
}
#block-quicktabsgalleryfront .block-title::after {
  background: url("../images/gallery-after.svg") no-repeat center center;
  right: 0;
}

#block-quicktabsgalleryfront .quicktabs-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 0 48px;
  column-gap: 24px;
}
#block-quicktabsgalleryfront .quicktabs-tabs > li {
  width: calc(25% - 24px);
}

#block-quicktabsgalleryfront .quicktabs-tabs > li a {
  display: block;
  font: 20px/26px var(--roboto);
  color: #333;
  background: #fff4d9;
  border-radius: 20px;
  padding: 20px 40px;
  text-align: center;
  transition: var(--transition);
}
#block-quicktabsgalleryfront .quicktabs-tabs > li a:hover,
#block-quicktabsgalleryfront .quicktabs-tabs > li a:focus {
  text-decoration: none;
}
#block-quicktabsgalleryfront .quicktabs-tabs > li.active a,
#block-quicktabsgalleryfront .quicktabs-tabs > li a:hover,
#block-quicktabsgalleryfront .quicktabs-tabs > li a:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.gal-img-warp {
  display: block;
  overflow: hidden;
}
.gal-img-warp > img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

.gal-item {
  display: block;
  overflow: hidden;
  position: relative;
}
.gal-title {
  font: 22px/29px var(--roboto);
  color: var(--color-white);
  margin: 0;
  padding: 24px;
  opacity: 0;
  transition: var(--transition04);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(100%);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.83) 81.55%
  );
  border-radius: 12px;
  transition: var(--transition);
  /* background: linear-gradient(
    to bottom,
    rgb(0, 0, 0, 0.2) 100%,
    rgb(69, 72, 77, 0.2) 0%
  ); */
}
.gal-item:hover,
.gal-item:focus {
  text-decoration: none;
}
.gal-item:hover .gal-title,
.gal-item:focus .gal-title {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  #block-quicktabsgalleryfront .quicktabs-tabs > li {
    width: calc(50% - 24px);
  }
  #block-quicktabsgalleryfront .quicktabs-tabs {
    padding: 0;
    gap: 24px;
  }
  div[class*="view-display-id-block_"].view-picture-gallery
    .view-content
    > div {
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 480px) {
  #block-quicktabsgalleryfront .quicktabs-tabs > li {
    width: calc(100% - 24px);
  }
}
/* ----------------------------------------- */
/*       FOOTER  */
/* ----------------------------------------- */
footer {
  border: unset !important;
}
.footer-columns {
  background: #323232;
  padding: var(--section-spacing);
}
.footer-title {
  font: 20px/130% var(--robotoSB);
  color: var(--color-white);
  margin: 0 0 16px;
}
.footer-nav {
  list-style-image: url("../images/footer-nav.svg");
}
.footer-nav > li {
  margin: 0 0 6px;
}
.footer-nav > li > a {
  display: block;
  transition: var(--transition);
  font: 16px/130% var(--robotoL);
  color: var(--color-white);
}
.footer-nav > li > a:hover,
.footer-nav > li > a:focus {
  text-decoration: none;
  color: var(--color-secondary);
}
.footer-contact-wrap {
  list-style: none;
}
.footer-contact-wrap > li {
  margin: 0 0 12px;
}
.footer-contact-wrap > li > a {
  position: relative;
  display: block;
  font: 16px/130% var(--robotoL);
  color: var(--color-white);
}
.footer-contact-wrap > li > a:hover,
.footer-contact-wrap > li > a:focus {
  text-decoration: none;
  color: var(--color-secondary);
}
.footer-contact-wrap > li > a::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -34px;
}
.footer-contact-wrap > li > a.location::before {
  background: url("../images/icon-location.svg") no-repeat center center;
}
.footer-contact-wrap > li > a.phone::before {
  background: url("../images/icon-phone.svg") no-repeat center center;
}
.non-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 120px;
  margin: 0 auto;
}
.socials-list > li {
  width: calc(50% - 16px);
}
.socials-list > li > a {
  display: block;
  transition: var(--transition);
}
.socials-list > li > a img {
  display: block;
  transition: var(--transition);
}
.socials-list > li > a:hover,
.socials-list > li > a:focus {
  text-decoration: none;
}
.socials-list > li > a:hover img,
.socials-list > li > a:focus img {
  filter: drop-shadow(2px 4px 6px black);
  transform: translateY(-4px);
}
.footer-bottom {
  background: var(--color-primary);
  padding: 18px var(--section-spacing-unit);
}

.footer-bottom,
.footer-bottom a {
  font: 16px/130% var(--robotoL);
  color: var(--color-white);
}

.copy-section,
.copy-section a,
.power-sec,
.power-sec a {
  color: var(--color-white);
  opacity: 1;
}

.power-sec {
  text-align: right;
}
.footer-overview > img {
  margin: 0 0 24px;
  display: block;
}
.footer-text {
  font: 16px/130% var(--robotoL);
  color: var(--color-white);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .copy-section,
  .copy-section a,
  .power-sec,
  .power-sec a {
    padding: 0;
    text-align: center;
    margin: 0 0 12px;
  }
}
/* ----------------------------------------- */
/* INTERNAL PAGES  */
/* ----------------------------------------- */
.inner-page {
  background: #ededed8f url("../images/inner-page-bg.png") no-repeat center
    center / cover;
  background-size: 100% 100% !important;
  /* padding: var(--section-spacing); */
  min-height: calc(100vh) !important;
  background-attachment: fixed;
  padding-top: 0;
  padding-bottom: 2em;
}
.breadcrumb {
  padding: 15px 15px;
  /* background: var(--color-primary); */
  color: var(--color-white);
  width: calc(100% + 30px);
  transform: translateX(-15px);
  border-radius: 0;
  background: var(--color-secondary);
}
.breadcrumb > li a {
  color: var(--color-white);
  border: none !important;
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  color: var(--color-black);
  text-decoration: none;
}
.breadcrumb > .active {
  color: var(--color-black);
}
.breadcrumb > li + li:before {
  color: var(--color-white);
}
#page-title {
  font: var(--section-heading);
  color: var(--color-primary);
  margin: 24px 0;
  border: none;
  padding: 0;
}

.inner-page h2 {
  font: 36px/46px var(--robotoSB);
  color: var(--color-primary);
}

.inner-page h3 {
  font: 28px/38px var(--robotoSB);
  color: var(--color-secondary);
}

.inner-page h4 {
  font: 20px/24px var(--robotoSB);
  color: var(--color-secondary);
}
.inner-page ul li {
  margin: 0 0 12px;
}
.inner-page a {
  font: 16px/22px var(--poppins);
  color: #333;
  border-bottom: 1px dashed #333;
  width: fit-content;
}
.inner-page a:hover,
.inner-page a:focus {
  text-decoration: none;
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}
/* sitemap */
/*** Sitemap ***/

.sitemap {
  padding: 0 1em;
}
.sitemap h2 {
  display: none;
}
.sitemap-item {
}

.sitemap-item ul {
  padding: 0 0 0 1.5em;
  margin: 0 !important;
  float: none;
  text-align: start;
  list-style: disc;
  display: block;
  background: transparent !important;
  border: 0;
  border-radius: 0;
}

.sitemap-item ul li {
  float: none;
  display: list-item;
}

.sitemap-item ul li a {
  text-decoration: none;
  display: initial;
  font: 16px/22px var(--roboto);
  color: #333333;
  padding: 0;
}

.sitemap-item ul li a:hover,
.sitemap-item ul li a:focus {
  text-decoration: underline;
  background: transparent;
}

.sitemap .caret {
  display: none;
}

.sitemap-item ul li ul {
  position: initial;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  background: transparent;
  background-clip: inherit;
  list-style: circle;
}

.sitemap-item ul li ul li {
  display: list-item;
}

.sitemap-item ul li ul li a,
.sitemap-item .navbar-nav .dropdown-menu > li > a {
  text-decoration: none;
  display: initial;
  font: 16px/22px var(--roboto);
  color: #333333;
  padding: 0;
}

.sitemap-item ul li ul li a:hover,
.sitemap-item ul li ul li a:focus,
.sitemap-item .navbar-nav .dropdown-menu > li > a:hover,
.sitemap-item .navbar-nav .dropdown-menu > li > a:focus {
  text-decoration: underline;
  background: transparent;
}

.sitemap-item ul li ul li ul {
  display: none;
}

.sitemap-item ul li ul li.expanded ul {
  display: block;
  list-style: square;
}

/* 
      MESSAGES view
*/
.msg-prof-pic {
  overflow: hidden;
  display: block;
}
.msg-prof-pic > img {
  display: block;
  border-radius: 12px;
  height: 320px;
  width: 320px;
  margin: 0 auto 24px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(2px 4px 6px black);
}
.msg-name {
  font: 22px/25px var(--marcellus);
  margin: 0 0 6px;
  text-align: center;
}
.msg-designation {
  font: 18px/24px var(--robotoSB);
  color: var(--color-primary);
  margin: 0 0 24px;
  text-align: center;
}
.lat-news-item {
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  :root {
    --section-spacing-unit: 30px;
    --section-spacing: 30px;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --section-spacing-unit: 30px;
    --section-spacing: 30px 15px;
  }
}
/* 
      GALLERY view
*/
.view-picture-gallery[class*="view-display-id-page_"] .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.view-picture-gallery[class*="view-display-id-page_"] .view-content > div {
  margin: 0 0 48px;
}
.gallery-img {
  overflow: hidden;
  width: 100%;
  height: 210px;
  transition: var(--transition);
  margin: 0 0 24px;
}
.gallery-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;

  transition: var(--transition);
}
.gallery-title {
  text-align: center;
}

.view-picture-gallery[class*="view-display-id-page_"]
  .view-content
  > div:hover
  .gallery-img
  img,
.view-picture-gallery[class*="view-display-id-page_"]
  .view-content
  > div:focus
  .gallery-img
  img {
  transform: scale(1.2);
}

/* 
      GALLERY view
*/
.view-picture-gallery[class*="view-display-id-page_"] .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.view-picture-gallery[class*="view-display-id-page_"] .view-content > div {
  margin: 0 0 48px;
}
.gallery-img {
  overflow: hidden;
  width: 100%;
  height: 210px;
  transition: var(--transition);
  margin: 0 0 24px;
}
.gallery-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;

  transition: var(--transition);
}
.gallery-title {
  text-align: center;
}

.view-picture-gallery[class*="view-display-id-page_"]
  .view-content
  > div:hover
  .gallery-img
  img,
.view-picture-gallery[class*="view-display-id-page_"]
  .view-content
  > div:focus
  .gallery-img
  img {
  transform: scale(1.2);
}
