/* MAIN STYLES FILE */
/**
* UTILITIES
*/
/**
* BASE
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Zona Pro', sans-serif;
  font-size: 16px;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1450px) {
  body {
    font-size: 14px;
  }
}

/**
* COMPONENTS
*/
section.hero {
  width: 100%;
  max-width: 100%;
  height: 55vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

section.hero #hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

section.hero #hero .hero-swiper,
section.hero #hero .hero-swiper-container {
  height: 100%;
}

section.hero #hero .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev-white.png");
  z-index: 1;
  color: white;
  font-size: 20px !important;
  position: relative;
}

section.hero #hero .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next-white.png");
  z-index: 1;
  color: white;
  font-size: 20px !important;
  position: relative;
}

section.hero #hero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.hero .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000036;
  opacity: 0.5;
  z-index: 0;
}

section.hero .inner {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
  color: white;
  height: 100%;
}

section.hero .inner .hero-header {
  padding-top: 10%;
  max-width: 50%;
  min-height: 250px;
}

section.hero .inner .hero-header .title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
}

section.hero .inner .hero-header .text {
  font-size: 0.9rem;
  line-height: 1.4;
}

section.hero .inner .cta-boxes {
  position: absolute;
  bottom: 0;
  margin-bottom: 45px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

section.hero .inner .cta-boxes .box {
  background-color: #de9c38;
  padding: 20px 25px;
  border-radius: 5px;
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  min-height: 140px;
  font-size: 1rem;
}

section.hero .inner .cta-boxes .box:hover {
  -webkit-box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.2);
}

section.hero .inner .cta-boxes .box .icon {
  height: 80px;
}

section.hero .inner .cta-boxes .box .box-details .box-title {
  text-align: center;
  line-height: 1.2;
}

section.hero .inner .cta-boxes .box .box-details hr {
  margin: 12px auto;
  width: 75%;
  border-style: outset;
}

section.hero .inner .cta-boxes .box .box-details .box-text {
  text-align: center;
  font-size: 0.9em;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  section.hero .inner .hero-header {
    padding-top: 9%;
    max-width: 70%;
  }
  section.hero .inner .cta-boxes .box {
    font-size: 0.9rem;
  }
  section.hero .inner .cta-boxes .box .icon {
    height: 60px;
  }
}

@media (max-width: 1050px) {
  section.hero .inner .cta-boxes .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  section.hero .inner .cta-boxes .box .icon {
    height: 55px;
    margin-bottom: 15px;
  }
}

@media (max-width: 650px) {
  section.hero {
    height: auto;
    padding-bottom: 1px;
  }
  section.hero .inner .hero-header {
    margin-bottom: 30px;
    max-width: 100%;
  }
  section.hero .inner .cta-boxes {
    position: relative;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 30px;
    gap: 20px;
  }
  section.hero .inner .cta-boxes .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 180px;
    min-height: 200px;
  }
  section.hero .inner .cta-boxes .box .icon {
    height: 55px;
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  section.hero .inner .cta-boxes .box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

section.greetings {
  color: #000036;
  font-size: 15px;
  background-color: #fafafa;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

section.greetings .wrapper {
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

section.greetings .wrapper .section-title {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
  padding: 0 40px;
}

section.greetings .wrapper .inner {
  display: -ms-grid;
  display: grid;
  justify-items: right;
}

section.greetings .wrapper .inner .text {
  background-color: white;
  padding: 35px 40px;
  padding-left: 80px;
  padding-bottom: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 85%;
  position: relative;
  -webkit-box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, 0.1);
}

section.greetings .wrapper .inner .text .governor {
  position: absolute;
  z-index: 1;
  left: -182px;
  top: 0;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  max-width: 270px;
  max-height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 20px solid #f9f9f9;
  -webkit-box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.3);
}

section.greetings .wrapper .inner .text p {
  margin-bottom: 20px;
  line-height: 1.3;
}

section.greetings .wrapper .inner .text p:last-of-type {
  margin-bottom: 0;
}

section.greetings .wrapper .inner .text .map {
  height: 130px;
  position: absolute;
  right: 40px;
  bottom: -9px;
}

@media (max-width: 1200px) {
  section.greetings .wrapper .inner .text {
    padding-left: 130px;
  }
  section.greetings .wrapper .inner .text .governor {
    width: 180px;
    height: 180px;
    left: -115px;
  }
}

@media (max-width: 850px) {
  section.greetings .wrapper .inner .text {
    padding-left: 35px;
    width: 100%;
    text-align: center;
  }
  section.greetings .wrapper .inner .text .governor {
    position: static;
    margin-bottom: 30px;
  }
  section.greetings .wrapper .inner .text p {
    text-align: left;
  }
}

@media (max-width: 500px) {
  section.greetings .wrapper .inner .text {
    padding-bottom: 20px;
  }
  section.greetings .wrapper .inner .text .map {
    position: static;
  }
}

section.offices-contact {
  color: #000036;
  font-size: 15px;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

section.offices-contact .wrapper {
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

section.offices-contact .wrapper .section-title {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
  padding: 0 40px;
}

section.offices-contact .wrapper .inner #offices .swiper-container {
  width: 100%;
  height: 340px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
  border: 2px solid #000036;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide > * {
  margin-bottom: 20px;
  line-height: 1.3;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide h3 {
  font-size: 1em;
  text-align: center;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide .detail i {
  margin-top: 3px;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide .detail a {
  margin-left: 5px;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-wrapper .swiper-slide:hover {
  -webkit-box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.1);
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-button-prev::before {
  content: '';
  height: 580px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-button-next::before {
  content: '';
  height: 580px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: -5px;
  position: relative;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.offices-contact .wrapper .inner #offices .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 1200px) {
  section.greetings .wrapper .inner .text {
    padding-left: 130px;
  }
  section.greetings .wrapper .inner .text .governor {
    width: 180px;
    height: 180px;
    left: -115px;
  }
}

@media (max-width: 850px) {
  section.greetings .wrapper .inner .text {
    padding-left: 35px;
    width: 100%;
    text-align: center;
  }
  section.greetings .wrapper .inner .text .governor {
    position: static;
    margin-bottom: 30px;
  }
  section.greetings .wrapper .inner .text p {
    text-align: left;
  }
}

@media (max-width: 500px) {
  section.greetings .wrapper .inner .text {
    padding-bottom: 20px;
  }
  section.greetings .wrapper .inner .text .map {
    position: static;
  }
}

section.press-release {
  color: #000036;
  margin-top: 60px;
  margin-bottom: 60px;
}

section.press-release .icons {
  display: inline;
}

section.press-release .icons ul {
  margin-bottom: 40px;
  font-weight: bold;
  color: #707070;
  text-align: center;
}

section.press-release .icons ul li {
  display: inline;
}

section.press-release .icons ul li a {
  display: inline;
  margin-right: 30px;
  -webkit-transition: color 0.15s ease-in;
  transition: color 0.15s ease-in;
}

section.press-release .icons ul li a:hover {
  color: #3d6dff;
}

section.press-release .icons ul li a i {
  margin-right: 5px;
}

section.press-release .wrapper .section-title {
  text-align: center;
  margin-bottom: 20px;
}

section.press-release .wrapper hr {
  border-top: 3px solid #000036;
  max-width: 40%;
  margin-bottom: 50px;
}

section.press-release .wrapper .press-release-swiper .swiper-container {
  width: 100%;
  height: 400px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-button-prev::before {
  content: '';
  height: 580px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-button-next::before {
  content: '';
  height: 580px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: -5px;
  position: relative;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.press-release .wrapper .press-release-swiper .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

section.press-release .cta {
  text-align: center;
  margin: 50px 0;
}

section.press-release .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #000036;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

section.press-release .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 768px) {
  section.press-release .icons ul {
    -webkit-columns: 2;
            columns: 2;
  }
  section.press-release .icons ul li {
    display: block;
    text-align: left;
    margin: 0;
    margin-bottom: 10px;
  }
  section.press-release .icons ul li a {
    margin-right: 0;
  }
}

section.announcements {
  width: 100%;
  max-width: 100%;
  padding: 60px 0;
  background-color: #fafafa;
}

section.announcements .announcements-inner {
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

section.announcements .announcements-inner .tabs .tabs-buttons {
  display: block;
  margin-bottom: 80px;
  position: relative;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper {
  display: inline-block;
  width: 49%;
  text-align: center;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper .tab-title {
  background-color: transparent;
  color: #de9c38;
  border-radius: 2px;
  border: 2px solid #de9c38;
  outline: none;
  cursor: pointer;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-align: center;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper .tab-title:hover {
  background-color: #de9c38;
  color: white;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper.active button {
  background-color: #de9c38;
  color: white;
}

section.announcements .announcements-inner .tabs .tabs-buttons .active-line {
  display: block;
  position: relative;
  top: 35px;
  left: 0;
  width: 45%;
  height: 3px;
  background: #e9b226;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  margin: 0 5%;
  z-index: 1;
}

section.announcements .announcements-inner .tabs .tabs-buttons .bg-line {
  display: block;
  position: relative;
  top: 32px;
  left: 0;
  width: 90%;
  height: 3px;
  background: #e7e7e7;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  margin: 0 5%;
  z-index: 0;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper:nth-child(1).active ~ .active-line {
  left: 0;
}

section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper:nth-child(2).active ~ .active-line {
  left: 45%;
}

section.announcements .announcements-inner .single-tab {
  padding: 6px 12px;
}

section.announcements .announcements-inner #notices .swiper-container {
  width: 100%;
  height: 220px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-button-prev::before {
  content: '';
  height: 170px;
  width: 50px;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-button-next::before {
  content: '';
  height: 170px;
  width: 50px;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: -5px;
  position: relative;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.announcements .announcements-inner #notices .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

section.announcements .announcements-inner #announcements .swiper-container {
  width: 100%;
  height: 200px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-button-prev::before {
  content: '';
  height: 170px;
  width: 50px;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-button-next::before {
  content: '';
  height: 170px;
  width: 50px;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: -5px;
  position: relative;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.announcements .announcements-inner #announcements .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

section.announcements .cta-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

section.announcements .cta-wrapper .cta {
  text-align: center;
  margin: 50px 0;
}

section.announcements .cta-wrapper .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #de9c38;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

section.announcements .cta-wrapper .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 600px) {
  section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  section.announcements .announcements-inner .tabs .tabs-buttons .btn-wrapper:last-of-type {
    margin-bottom: 0;
  }
  section.announcements .announcements-inner .tabs .tabs-buttons .active-line,
  section.announcements .announcements-inner .tabs .tabs-buttons .bg-line {
    display: none;
  }
  section.announcements .announcements-inner .cta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.announcements .announcements-inner .cta-wrapper .cta {
    margin: 20px 0;
  }
}

section.actions {
  color: #000036;
  margin-top: 60px;
  margin-bottom: 60px;
}

section.actions .wrapper .section-title {
  text-align: center;
  margin-bottom: 60px;
}

section.actions .wrapper #actions .swiper-container {
  width: 100%;
  height: 200px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.actions .wrapper #actions .swiper-container .swiper-slide {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

section.actions .wrapper #actions .swiper-container .swiper-slide:hover {
  -webkit-box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
}

section.actions .wrapper #actions .swiper-container .swiper-slide img {
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  height: 160px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section.actions .wrapper #actions .swiper-container .swiper-slide .title {
  font-weight: normal;
  text-align: center;
  margin-top: 20px;
  line-height: 1.3;
}

section.actions .wrapper #actions .swiper-container .swiper-slide:hover img {
  -webkit-box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
}

section.actions .wrapper #actions .swiper-container .swiper-button-prev::before {
  content: '';
  height: 260px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.actions .wrapper #actions .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.actions .wrapper #actions .swiper-container .swiper-button-next::before {
  content: '';
  height: 260px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  top: 0px;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.actions .wrapper #actions .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: 0;
  position: relative;
}

section.actions .wrapper #actions .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.actions .wrapper #actions .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

section.actions .wrapper .cta {
  text-align: center;
  margin-top: 50px;
}

section.actions .wrapper .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #4671b5;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

section.actions .wrapper .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 600px) {
  section.actions .wrapper #actions .swiper-container .swiper-wrapper {
    -webkit-box-pack: initial !important;
        -ms-flex-pack: initial !important;
            justify-content: initial !important;
  }
  section.actions .wrapper #actions .swiper-container .swiper-wrapper .swiper-button-prev,
  section.actions .wrapper #actions .swiper-container .swiper-wrapper .swiper-button-next {
    display: block;
  }
}

section.services {
  background-color: #000036;
  color: white;
  margin: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px 0;
}

section.services .wrapper {
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

section.services .wrapper .section-title {
  text-align: center;
  margin-bottom: 60px;
}

section.services .wrapper .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  -webkit-column-gap: 60px;
          column-gap: 60px;
}

section.services .wrapper .services-grid .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr;
      grid-template-columns: 50px 1fr;
  -ms-grid-rows: 50px 1fr;
      grid-template-rows: 50px 1fr;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

section.services .wrapper .services-grid .box .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border: 1px solid;
  border-radius: 100%;
  font-size: 25px;
  position: relative;
}

section.services .wrapper .services-grid .box .icon a {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}

section.services .wrapper .services-grid .box .icon img {
  width: 50px;
}

section.services .wrapper .services-grid .box .title {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.4;
  display: inline-block;
}

section.services .wrapper .services-grid .box .links {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

section.services .wrapper .services-grid .box .links a {
  text-decoration: underline;
  color: #4671b5;
  margin-bottom: 10px;
  display: block;
  font-size: 0.9em;
  line-height: 1.4;
}

section.services .wrapper .services-grid .box .links a:hover {
  color: #2e589b;
}

@media (max-width: 1200px) {
  section.services .wrapper .services-grid {
    gap: 25px;
  }
}

@media (max-width: 850px) {
  section.services .wrapper .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 40px;
  }
  section.services .wrapper .services-grid .box {
    -ms-grid-rows: 35px 1fr;
        grid-template-rows: 35px 1fr;
    row-gap: 0px;
  }
}

section.calendar .calendar-inner {
  margin-top: 50px;
  margin-bottom: 50px;
}

section.calendar .calendar-inner .section-title {
  text-align: center;
  margin-bottom: 60px;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-search-form {
  display: none;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-previous-month,
section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-next-month {
  background-color: #3366ff;
  color: white;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-previous-month i,
section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-next-month i {
  color: white;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-calendar-table .mec-selected-day,
section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-calendar-table .mec-has-event:hover,
section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-side .mec-calendar-table .mec-has-event:after {
  background: #3366ff;
  background-color: #3366ff;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-color {
  border-color: #3366ff;
  color: #3366ff;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article {
  padding: 25px 15px;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-color {
  color: #000036;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-title .mec-color-hover:hover {
  color: #3366ff;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-title .event-color {
  display: none;
}

section.calendar .calendar-inner .mec-full-calendar-wrap .mec-full-calendar-skin-container .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-image img {
  width: 100%;
  height: 100%;
}

section.calendar .calendar-inner .cta {
  text-align: center;
  margin: 50px 0;
}

section.calendar .calendar-inner .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #000036;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

section.calendar .calendar-inner .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.mec-calendar .mec-event-article .mec-event-image {
  margin-right: 100px !important;
}

.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2 {
  font-size: 30px;
  display: inline-block;
}

.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3 {
  display: inline-block;
  font-size: 30px;
  color: #444 !important;
  margin-left: 10px;
}

.mec-calendar.mec-calendar-daily
.mec-daily-view-date-events:not(.mec-util-hidden) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.map-wrapper {
  position: relative;
}

.map-wrapper .map-filters-wrapper {
  position: absolute;
  z-index: 1;
  background-color: #de9c38;
  padding: 30px 25px;
  color: white;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 240px;
}

.map-wrapper .map-filters-wrapper .map-filters h4 {
  text-align: center;
  margin-bottom: 8px;
}

.map-wrapper .map-filters-wrapper .map-filters p {
  text-align: center;
  font-size: 0.73em;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper {
  margin-top: 32px;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter {
  margin-bottom: 8px;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.85em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label input[type='checkbox']:checked ~ .checkmark {
  background-color: transparent;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label input[type='checkbox']:checked ~ .checkmark:after {
  display: block;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label .checkmark {
  position: absolute;
  top: -2px;
  left: 9px;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 3px;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label .checkmark:after {
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
}

.map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter:last-of-type {
  margin-bottom: 0;
}

.map-wrapper .cta-btn {
  position: absolute;
  z-index: 1;
  background-color: white;
  text-align: center;
  padding: 20px 15px 15px 15px;
  color: darkgray;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 110px;
  -webkit-box-shadow: 0px 0px 8px 0 #00000022;
          box-shadow: 0px 0px 8px 0 #00000022;
}

.map-wrapper .cta-btn img {
  height: 50px;
}

.map-wrapper .cta-btn p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 0.7rem;
  line-height: 1.4;
}

.map-wrapper .cta-btn:hover {
  -webkit-box-shadow: 0px 0px 8px 0 #00000058;
          box-shadow: 0px 0px 8px 0 #00000058;
}

@media (max-width: 850px) {
  .map-wrapper .map-filters-wrapper {
    position: static;
    z-index: 1;
    top: 0%;
    -webkit-transform: initial;
            transform: initial;
    width: initial;
  }
  .map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter {
    text-align: center;
  }
  .map-wrapper .map-filters-wrapper .map-filters .filters-wrapper .filter label {
    display: inline-block;
  }
  .map-wrapper .cta-btn {
    padding: 15px 10px 10px 10px;
    color: darkgray;
    top: initial;
    bottom: 20px;
    right: 10px;
    width: 120px;
    height: 90px;
  }
  .map-wrapper .cta-btn img {
    height: 35px;
  }
  .map-wrapper .cta-btn p {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 0.6rem;
  }
}

@media (max-width: 600px) {
  .map-wrapper .cta-btn {
    padding: 10px;
    width: initial;
    height: initial;
  }
  .map-wrapper .cta-btn img {
    height: 35px;
  }
  .map-wrapper .cta-btn p {
    display: none;
  }
}

section.cta {
  width: 100%;
  max-width: 100%;
  background-color: #fafafa;
}

section.cta .inner {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  width: 1400px;
  padding: 60px 0;
  justify-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

section.cta .inner .box {
  height: 300px;
  width: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: 0 4px 20px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px -7px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section.cta .inner .box > div {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}

section.cta .inner .box > div .btn {
  padding: 6px 18px;
  border-radius: 4px;
}

section.cta .inner .box:hover {
  -webkit-box-shadow: 0 4px 20px -7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px -7px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1450px) {
  section.cta .inner {
    width: 1140px;
    gap: 0;
  }
  section.cta .inner .box {
    height: 220px;
    width: 220px;
  }
}

@media (max-width: 1200px) {
  section.cta .inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 500px) {
  section.cta .inner .box {
    width: 250px;
    height: 250px;
  }
}

section.contact {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

section.contact .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000036;
  opacity: 0.5;
  z-index: 0;
}

section.contact .inner {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

section.contact .inner .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

section.contact .inner .content {
  color: white;
  font-size: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

section.contact .inner .content .cta-section {
  text-align: center;
}

section.contact .inner .content .section-sub-title {
  font-size: 1em;
  margin-bottom: 20px;
  font-weight: normal;
}

section.contact .inner .content p {
  font-size: 0.85em;
  margin-bottom: 10px;
}

section.contact .inner .content img.circle {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

section.contact .inner .content .btn {
  padding: 12px 18px;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  display: inline-block;
  margin-top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(white), to(white));
  background: linear-gradient(to right, white, white);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

section.contact .inner .content .btn:hover {
  color: #000036;
  background-size: 100% 100%;
  -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
}

section.contact .inner .content hr {
  width: 60%;
  margin: 30px auto;
  border-color: white;
  opacity: 0.8;
}

section.contact .inner .content .social-feed {
  display: none;
}

section.contact .inner .content .social-feed .section-sub-title {
  text-align: center;
}

section.contact .inner .content .social-feed #cff .cff-item {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: black;
  margin-bottom: 15px;
}

@media (max-width: 1100px) {
  section.contact .inner .content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 60px;
  }
}

@media (max-width: 850px) {
  section.contact .inner .content .social-feed {
    width: 500px;
    margin: auto;
  }
}

@media (max-width: 500px) {
  section.contact .inner .content .social-feed {
    width: 319px;
  }
}

@media (max-width: 350px) {
  section.contact .inner .content .social-feed {
    width: 300px;
  }
}

section.useful-links {
  color: #000036;
  margin-top: 60px;
  margin-bottom: 60px;
}

section.useful-links .wrapper .section-title {
  text-align: center;
  margin-bottom: 60px;
}

section.useful-links .wrapper #useful-links .swiper-container {
  width: 100%;
  height: 200px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-slide {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-slide:hover {
  -webkit-box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 8px -2px rgba(0, 0, 0, 0.5);
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-button-prev::before {
  content: '';
  height: 300px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  top: 15px;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-button-next::before {
  content: '';
  height: 300px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  top: 15px;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: -5px;
  position: relative;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

section.useful-links .wrapper #useful-links .swiper-container .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

section.useful-links .wrapper .cta {
  text-align: center;
  margin-top: 50px;
}

section.useful-links .wrapper .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #4671b5;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

section.useful-links .wrapper .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 600px) {
  section.useful-links .wrapper #useful-links .swiper-container .swiper-button-prev,
  section.useful-links .wrapper #useful-links .swiper-container .swiper-button-next {
    display: block;
  }
}

.announcements-card {
  height: 100%;
  display: block;
  border-radius: 5px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 6px #cccbcb33;
          box-shadow: 0px 0px 6px #cccbcb33;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.announcements-card:hover {
  -webkit-box-shadow: 0px 0px 6px #6161613d;
          box-shadow: 0px 0px 6px #6161613d;
}

.announcements-card .article-details {
  color: #000036;
  padding: 15px;
}

.announcements-card .article-details .category {
  color: #de9c38;
  font-weight: bold;
  display: inline-block;
  width: 48%;
  font-size: 0.6rem;
}

.announcements-card .article-details .date {
  display: inline-block;
  width: 48%;
  text-align: right;
  font-size: 0.6rem;
  color: #c9c9c9;
}

.announcements-card .article-details .excerpt {
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.announcements-card .article-details .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.announcements-card .article-details .meta .social-sharing {
  display: inline-block;
  font-size: 0.7rem;
  width: 48%;
  color: #3366ff;
}

.announcements-card .article-details .meta .social-sharing .social-icons {
  color: #3366ff;
  font-size: 0.85rem;
  margin-top: 5px;
}

.announcements-card .article-details .meta .social-sharing .social-icons a {
  margin-right: 8px;
}

.announcements-card .article-details .meta .social-sharing .social-icons a:last-of-type {
  margin-right: 0;
}

.announcements-card .article-details .meta .social-sharing .social-icons a:hover {
  color: #000036;
}

.announcements-card .article-details .meta .read-more {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: right;
  width: 48%;
  margin-bottom: 8px;
}

.notices-card {
  height: 100%;
  display: block;
  border-radius: 5px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 6px #cccbcb33;
          box-shadow: 0px 0px 6px #cccbcb33;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.notices-card:hover {
  -webkit-box-shadow: 0px 0px 6px #6161613d;
          box-shadow: 0px 0px 6px #6161613d;
}

.notices-card .article-details {
  color: #000036;
  padding: 15px;
}

.notices-card .article-details .category {
  color: #de9c38;
  font-weight: bold;
  display: inline-block;
  width: 48%;
  font-size: 0.6rem;
  line-height: 1.3;
}

.notices-card .article-details .date {
  display: inline-block;
  width: 48%;
  text-align: right;
  font-size: 0.6rem;
  color: #c9c9c9;
}

.notices-card .article-details .excerpt {
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.notices-card .article-details .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.notices-card .article-details .meta .social-sharing {
  display: inline-block;
  font-size: 0.7rem;
  width: 48%;
  color: #3366ff;
}

.notices-card .article-details .meta .social-sharing .social-icons {
  color: #3366ff;
  font-size: 0.85rem;
  margin-top: 5px;
}

.notices-card .article-details .meta .social-sharing .social-icons a {
  margin-right: 8px;
}

.notices-card .article-details .meta .social-sharing .social-icons a:last-of-type {
  margin-right: 0;
}

.notices-card .article-details .meta .social-sharing .social-icons a:hover {
  color: #000036;
}

.notices-card .article-details .meta .read-more {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: right;
  width: 48%;
  margin-bottom: 8px;
}

.press-release-card {
  height: 100%;
  display: block;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 6px #cccbcb33;
          box-shadow: 0px 0px 6px #cccbcb33;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.press-release-card:hover {
  -webkit-box-shadow: 0px 0px 6px #6161613d;
          box-shadow: 0px 0px 6px #6161613d;
}

.press-release-card::after {
  content: '';
  bottom: 0;
  width: 100%;
  height: 5px;
  border-radius: 0 0 5px 5px;
  position: absolute;
  background-color: #000036;
}

.press-release-card img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.press-release-card .article-details {
  color: #000036;
  padding: 15px;
}

.press-release-card .article-details .category {
  font-weight: bold;
  display: inline-block;
  width: 48%;
  font-size: 0.6rem;
}

.press-release-card .article-details .date {
  display: inline-block;
  width: 48%;
  text-align: right;
  font-size: 0.6rem;
  color: #c9c9c9;
}

.press-release-card .article-details .excerpt {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1.3;
}

.press-release-card .article-details .meta {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.press-release-card .article-details .meta .social-sharing {
  display: inline-block;
  font-size: 0.7rem;
  width: 48%;
  color: #3366ff;
}

.press-release-card .article-details .meta .social-sharing .social-icons {
  color: #3366ff;
  font-size: 0.85rem;
  margin-top: 5px;
}

.press-release-card .article-details .meta .social-sharing .social-icons a {
  margin-right: 8px;
}

.press-release-card .article-details .meta .social-sharing .social-icons a:last-of-type {
  margin-right: 0;
}

.press-release-card .article-details .meta .social-sharing .social-icons a:hover {
  color: #000036;
}

.press-release-card .article-details .meta .read-more {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: right;
  width: 48%;
}

.sticky-deltio {
  border: 3px solid #3366ff;
}

.sticky-deltio::after {
  display: none;
}

header.main {
  height: 80px;
  background-color: #9596ab;
}

header.main .hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

header.main .hamburger.is-active:hover {
  opacity: 1 !important;
}

header.main .activated {
  display: inline-block !important;
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 10;
}

header.main .activated li {
  color: white;
}

header.main .header-outer {
  position: relative;
}

header.main .header-outer .wrapper {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr auto;
      grid-template-columns: 120px 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
  position: static;
}

header.main .header-outer .wrapper .logo-wrapper {
  width: 100%;
}

header.main .header-outer .wrapper .logo-wrapper .logo {
  width: 100%;
}

header.main .header-outer .wrapper #responsive-header-menu-container {
  display: none;
}

header.main .header-outer .wrapper .nav-links .ubermenu-skin-minimal.ubermenu-responsive-toggle {
  font-size: 30px;
  padding-right: 0;
}

header.main .header-outer .wrapper .nav-links .ubermenu-item-level-0 {
  font-size: 1.18em !important;
}

header.main .header-outer .wrapper .nav-links .ubermenu-current-menu-item,
header.main .header-outer .wrapper .nav-links .ubermenu-current-menu-ancestor {
  background: transparent !important;
}

header.main .header-outer .wrapper .nav-links .ubermenu-current-menu-item > a,
header.main .header-outer .wrapper .nav-links .ubermenu-current-menu-ancestor > a {
  background: transparent !important;
  font-weight: bold;
  color: #000036 !important;
}

header.main .header-outer .wrapper .nav-links .ubermenu-item-level-1 .ubermenu-tabs-group li:hover {
  background-color: #f4f4f4 !important;
}

header.main .header-outer .wrapper .weather {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  color: white;
}

header.main .header-outer .wrapper .weather .current-weather > .label {
  font-weight: 500;
  white-space: nowrap;
  display: block;
  text-align: center;
}

header.main .header-outer .wrapper .weather .current-weather .weather-temp {
  white-space: nowrap;
}

header.main .header-outer .wrapper .weather .current-weather .weather-temp span#weather-current-temp {
  font-size: 1.1rem;
}

header.main .header-outer .wrapper .weather .current-weather .weather-temp img {
  width: 32px;
  position: relative;
  top: 3px;
}

header.main .header-outer .wrapper .weather .air-quality > .label {
  color: #b0431e;
  font-weight: 600;
  display: block;
  text-align: center;
}

header.main .header-outer .wrapper .weather .air-quality ul {
  margin-top: 8px;
}

header.main .header-outer .wrapper .weather .air-quality ul li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
}

header.main .header-outer .wrapper .weather .air-quality ul li:last-of-type {
  margin-bottom: 0;
}

header.main .header-outer .wrapper .weather .air-quality ul .weather-no2:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #de9c38;
  position: absolute;
  left: 0;
  top: 1px;
}

header.main .header-outer .wrapper .weather .air-quality ul .weather-co2:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #a1c10f;
  position: absolute;
  left: 0;
  top: 1px;
}

header.main .header-outer .wrapper .weather .air-quality ul .weather-humidity:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #47b7bd;
  position: absolute;
  left: 0;
  top: 1px;
}

header.main section.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 50px;
}

header.main section.content .left {
  width: 45%;
  color: #606060;
  font-size: 1rem;
  padding-top: 30px;
}

header.main section.content .left .menu li {
  margin-bottom: 20px;
  font-weight: bold;
}

header.main section.content .left .menu li:last-of-type {
  margin-bottom: 0;
}

header.main section.content .left .menu li:hover {
  color: #000036;
}

header.main section.content .left .menu li.social-media-label:hover {
  color: #606060;
}

header.main section.content .left .menu li.social-media a {
  margin-right: 5px;
}

header.main section.content .left .menu li.social-media a:last-of-type {
  margin-right: 0;
}

header.main section.content .left .menu li.social-media a:hover {
  color: #000036;
}

header.main section.content .left .menu li.social-media:hover {
  color: #606060;
}

header.main section.content .right {
  width: 55%;
}

header.main section.content .right .title {
  font-size: 1rem;
  color: #000036;
  text-align: center;
}

header.main section.content .right .crowdapps-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

header.main section.content .right .crowdapps-wrapper .crowdapp {
  text-align: center;
  -webkit-box-shadow: 2px 4px 3px 0 #0000000d;
          box-shadow: 2px 4px 3px 0 #0000000d;
  padding: 15px;
}

header.main section.content .right .crowdapps-wrapper .crowdapp img {
  height: 50px;
}

header.main section.content .right .crowdapps-wrapper .crowdapp p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 0.8rem;
  line-height: 1.3;
}

header.main section.content .right .crowdapps-wrapper .crowdapp:hover {
  -webkit-box-shadow: 2px 4px 3px 0 #00000020;
          box-shadow: 2px 4px 3px 0 #00000020;
}

/* Style the header */
.header {
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 192383912;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}

@media (max-width: 1200px) {
  header.main .wrapper .weather {
    display: none !important;
  }
}

@media (max-width: 960px) {
  header.main .nav-links nav.ubermenu-responsive {
    position: absolute;
    top: 80px;
    left: 0;
    background: #9596ab;
  }
}

footer.main {
  background-color: #f7f7f7;
  min-height: 400px;
}

footer.main .logo-wrapper {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

footer.main .logo-wrapper .logo {
  height: 80px;
}

footer.main section.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 50px;
}

footer.main section.content .left {
  width: 45%;
  color: #606060;
  font-size: 1rem;
  padding-top: 30px;
}

footer.main section.content .left .menu li {
  margin-bottom: 20px;
  font-weight: bold;
}

footer.main section.content .left .menu li:last-of-type {
  margin-bottom: 0;
}

footer.main section.content .left .menu li:hover {
  color: #000036;
}

footer.main section.content .left .menu li.social-media-label:hover {
  color: #606060;
}

footer.main section.content .left .menu li.social-media a {
  margin-right: 5px;
}

footer.main section.content .left .menu li.social-media a:last-of-type {
  margin-right: 0;
}

footer.main section.content .left .menu li.social-media a:hover {
  color: #000036;
}

footer.main section.content .left .menu li.social-media:hover {
  color: #606060;
}

footer.main section.content .right {
  width: 55%;
}

footer.main section.content .right .title {
  font-size: 1rem;
  color: #000036;
  text-align: center;
}

footer.main section.content .right .crowdapps-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

footer.main section.content .right .crowdapps-wrapper .crowdapp {
  text-align: center;
  -webkit-box-shadow: 2px 4px 3px 0 #0000000d;
          box-shadow: 2px 4px 3px 0 #0000000d;
  padding: 15px;
}

footer.main section.content .right .crowdapps-wrapper .crowdapp img {
  height: 50px;
}

footer.main section.content .right .crowdapps-wrapper .crowdapp p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 0.8rem;
  line-height: 1.3;
}

footer.main section.content .right .crowdapps-wrapper .crowdapp:hover {
  -webkit-box-shadow: 2px 4px 3px 0 #00000020;
          box-shadow: 2px 4px 3px 0 #00000020;
}

footer.main .copyright-wrapper {
  width: 100%;
  text-align: center;
  padding: 20px 0 25px 0;
  border-top: 1px solid #000036;
  font-size: 15px;
  color: #606060;
  font-weight: bold;
}

footer.main .copyright-wrapper p {
  display: inline-block;
  padding: 0 20px;
}

footer.main .copyright-wrapper p .cp-logo {
  height: 23px;
  position: relative;
  top: 6px;
  margin-left: 3px;
}

@media (max-width: 1200px) {
  footer.main section.content .left {
    width: 30%;
  }
  footer.main section.content .right {
    width: 70%;
  }
}

@media (max-width: 950px) {
  footer.main section.content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer.main section.content .left {
    width: 100%;
    margin-bottom: 70px;
  }
  footer.main section.content .right {
    width: 100%;
  }
}

@media (max-width: 730px) {
  footer.main section.content .right .crowdapps-wrapper {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  footer.main section.content .right .crowdapps-wrapper {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin: 50px auto;
  }
  footer.main section.content .right .crowdapps-wrapper .crowdapp img {
    height: 42px;
  }
}

#sidebar {
  left: 0;
  max-width: 250px;
  width: 250px;
  margin-top: 80px;
}

#sidebar .second {
  background-color: #e0e0e0;
  padding: 17px 10px;
  text-align: center;
  font-size: 0.85em;
  margin-top: 5px;
  line-height: 1.3;
  cursor: pointer;
  display: block;
  position: relative;
}

#sidebar li.hasChild > a:after {
  content: '\f078';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  cursor: pointer;
}

#sidebar li.hasChild .second {
  padding-right: 40px;
}

#sidebar .first,
#sidebar .parent {
  color: #000036;
  font-weight: bold;
  padding: 17px 10px;
  text-align: center;
  font-size: 0.85em;
  line-height: 1.4;
  margin-top: 5px;
  cursor: pointer;
  display: block;
}

#sidebar .parent.lvl-1.hasChild {
  padding-right: 30%;
}

#sidebar .first a,
#sidebar .lvl-1 {
  position: relative;
}

#sidebar .active {
  background-color: #4671b5 !important;
  color: white !important;
}

#sidebar .lvl-1 {
  background-color: #e0e0e0;
  padding: 17px 10px;
  text-align: center;
  font-size: 0.85em;
  margin-top: 5px;
  cursor: pointer;
  display: block;
}

#sidebar .lvl-1.hasChild:after {
  content: '\f078';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  cursor: pointer;
}

#sidebar .lvl-1:hover {
  background-color: #000036;
  color: white;
}

#sidebar .lvl-2-wrapper {
  display: none;
}

#sidebar .lvl-2-wrapper .lvl-2 {
  display: block;
  font-size: 0.75em;
  border-bottom: 1px solid #000036;
  line-height: 1.3;
  padding: 10px 10px;
  text-align: center;
  cursor: pointer;
  color: #000036;
  background-color: #f8f8f8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#sidebar .lvl-2-wrapper .lvl-2:hover {
  color: white;
  background-color: #000036;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild > a {
  display: block;
  position: relative;
  line-height: 1.3;
  padding: 10px 10px;
  padding-right: 40px;
  text-align: center;
  cursor: pointer;
  color: #000036;
  background-color: #f8f8f8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild > a:after {
  content: '\f078';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  cursor: pointer;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild > a:hover {
  background-color: #000036 !important;
  color: white;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild > a:hover ~ .grand-childs {
  display: block;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild .grand-childs {
  display: none;
  border-top: 1px solid #000036;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild .grand-childs:hover {
  display: block;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild .grand-childs li {
  display: block;
  border-bottom: 1px solid #000036;
  line-height: 1.3;
  padding: 10px 10px;
  text-align: center;
  cursor: pointer;
  color: #000036;
  background-color: #ebebeb;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild .grand-childs li:hover {
  background-color: #000036 !important;
  color: white;
}

#sidebar .lvl-2-wrapper .lvl-2.hasChild > a:after {
  content: '\f078';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  cursor: pointer;
}

@media (max-width: 850px) {
  body.page-template-archive-posts #sidebar {
    margin: 0 auto;
  }
}

.pagination {
  text-align: center;
  margin: 60px 0;
}

.pagination .page-numbers {
  background-color: lightgray;
  border-radius: 4px;
  padding: 5px 10px;
  color: #000036;
  margin-right: 5px;
}

.pagination .page-numbers:last-of-type {
  margin-right: 0;
}

.pagination .page-numbers.current {
  color: white;
  background-color: #000036;
}

.pagination .page-numbers:hover {
  background-color: #000036;
  color: white;
}

.pagination .page-numbers.dots:hover {
  color: #000036;
  background-color: lightgray;
}

.share-buttons {
  font-size: 12px;
  margin: 50px 0;
}

.share-buttons .share-button {
  color: #000036;
  margin-right: 10px;
  border-radius: 2px;
  margin-top: 10px;
  display: inline-block;
}

.share-buttons .share-button:last-of-type {
  margin-right: 0;
}

.share-buttons .share-button.facebook:hover {
  color: #1877f2;
}

.share-buttons .share-button.twitter:hover {
  color: #34b3f7;
}

.share-buttons .share-button.viber:hover {
  color: #794f9e;
}

.share-buttons .share-button.whatsapp:hover {
  color: #40c351;
}

body.single-services .share-buttons {
  display: none;
}

.attachments h3 {
  text-align: center;
}

.attachments .media {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.attachments .media .attachment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 15px;
  line-height: 1.3;
  width: 200px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 15px;
  margin-top: 10px;
  position: relative;
}

.attachments .media .attachment:hover {
  background-color: #dfdfdf;
}

.attachments .media .attachment.file img {
  height: 70px;
  margin-left: 2px;
}

.attachments .media .attachment.link i {
  font-size: 20px;
  color: #000036;
}

.attachments .media .attachment p {
  display: inline-block;
  top: -3px;
  position: relative;
  margin-left: 10px;
  overflow-wrap: anywhere;
}

.breadcrumbs {
  color: #000036;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.breadcrumbs .breadcrumb_last {
  color: grey;
}

.breadcrumbs span[typeof='v:Breadcrumb'] a {
  color: #000036;
}

.breadcrumbs span[typeof='v:Breadcrumb'] a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.breadcrumbs span[typeof='v:Breadcrumb'] span[typeof='v:Breadcrumb']:last-of-type {
  color: grey;
}

/**
* PAGES
*/
body.home {
  overflow-x: hidden;
}

body.single-municipality.single .container,
body.single-services.single .container {
  min-height: 550px;
}

body.single-municipality.single .container .grid,
body.single-services.single .container .grid {
  margin-top: 50px;
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
}

body.single-municipality.single .container .grid .blog-main article section,
body.single-services.single .container .grid .blog-main article section {
  width: auto !important;
}

body.single-municipality.single .container .grid .blog-main article .entry-header,
body.single-services.single .container .grid .blog-main article .entry-header {
  text-align: center;
}

body.single-municipality.single .container .grid .blog-main article .entry-header .entry-title,
body.single-services.single .container .grid .blog-main article .entry-header .entry-title {
  text-align: center;
  font-size: 1.85rem;
  line-height: 1.5;
}

body.single-municipality.single .container .grid .blog-main article .entry-header small,
body.single-services.single .container .grid .blog-main article .entry-header small {
  display: inline-block;
  margin-top: 15px;
}

body.single-municipality.single .container .grid .blog-main article .entry-header small ul,
body.single-services.single .container .grid .blog-main article .entry-header small ul {
  display: inline-block;
}

body.single-municipality.single .container .grid .blog-main article > .row,
body.single-services.single .container .grid .blog-main article > .row {
  margin: 50px 0;
  max-width: initial;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content,
body.single-services.single .container .grid .blog-main article > .row .article-content {
  font-size: 0.9rem;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .thumbnail,
body.single-services.single .container .grid .blog-main article > .row .article-content .thumbnail {
  margin-bottom: 30px;
  text-align: center;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .thumbnail img,
body.single-services.single .container .grid .blog-main article > .row .article-content .thumbnail img {
  width: auto;
  max-width: 1200px;
  height: auto;
  max-height: 800px;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article time,
body.single-services.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article time {
  font-weight: bold;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article time:before,
body.single-services.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article time:before {
  font-weight: normal;
  font-family: 'Font Awesome 5 Free';
  content: '\f073';
  display: inline-block;
  font-size: 15px;
  margin-right: 5px;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article .screen-reader-text,
body.single-services.single .container .grid .blog-main article > .row .article-content .ub-block-post-grid article .screen-reader-text {
  display: none;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content p,
body.single-municipality.single .container .grid .blog-main article > .row .article-content div,
body.single-services.single .container .grid .blog-main article > .row .article-content p,
body.single-services.single .container .grid .blog-main article > .row .article-content div {
  margin: 15px 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content a,
body.single-services.single .container .grid .blog-main article > .row .article-content a {
  color: #0000a9;
  overflow-wrap: anywhere;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content a:hover,
body.single-services.single .container .grid .blog-main article > .row .article-content a:hover {
  text-decoration: underline;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content figure figcaption,
body.single-services.single .container .grid .blog-main article > .row .article-content figure figcaption {
  text-align: center;
}

body.single-municipality.single .container .grid .blog-main article > .row .article-content .wp-block-image,
body.single-services.single .container .grid .blog-main article > .row .article-content .wp-block-image {
  margin: 25px 0;
}

body.single .container,
body.page .container {
  min-height: 550px;
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

body.single .container .grid,
body.page .container .grid {
  margin-top: 50px;
  margin-bottom: 50px;
  display: block;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
}

body.single .container .grid .blog-main article section,
body.page .container .grid .blog-main article section {
  width: auto !important;
}

body.single .container .grid .blog-main article ul,
body.single .container .grid .blog-main article ol,
body.page .container .grid .blog-main article ul,
body.page .container .grid .blog-main article ol {
  list-style: disc;
  padding: 20px;
}

body.single .container .grid .blog-main article ul li,
body.single .container .grid .blog-main article ol li,
body.page .container .grid .blog-main article ul li,
body.page .container .grid .blog-main article ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}

body.single .container .grid .blog-main article .entry-header,
body.page .container .grid .blog-main article .entry-header {
  text-align: center;
}

body.single .container .grid .blog-main article .entry-header .entry-title,
body.page .container .grid .blog-main article .entry-header .entry-title {
  text-align: center;
  font-size: 1.85rem;
  line-height: 1.5;
}

body.single .container .grid .blog-main article .entry-header small,
body.page .container .grid .blog-main article .entry-header small {
  display: inline-block;
  margin-top: 15px;
}

body.single .container .grid .blog-main article .entry-header small ul,
body.page .container .grid .blog-main article .entry-header small ul {
  display: inline-block;
}

body.single .container .grid .blog-main article > .row,
body.page .container .grid .blog-main article > .row {
  margin: 50px 0;
  max-width: initial;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

body.single .container .grid .blog-main article > .row .article-content,
body.page .container .grid .blog-main article > .row .article-content {
  font-size: 0.9rem;
}

body.single .container .grid .blog-main article > .row .article-content .thumbnail,
body.page .container .grid .blog-main article > .row .article-content .thumbnail {
  margin-bottom: 30px;
  text-align: center;
}

body.single .container .grid .blog-main article > .row .article-content .thumbnail img,
body.page .container .grid .blog-main article > .row .article-content .thumbnail img {
  width: auto;
  max-width: 1200px;
  height: auto;
  max-height: 800px;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail,
body.page .container .grid .blog-main article > .row .article-content #thumbnail {
  position: relative;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper {
  margin: auto;
  margin-bottom: 40px;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container {
  width: 800px;
  height: 500px;
  padding: 0 50px !important;
  padding-bottom: 40px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img {
  width: 800px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-prev::before,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-prev::before {
  content: '';
  height: 480px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 0;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-prev::after,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-prev::after {
  content: url("../assets/slider-prev.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  position: relative;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-next::before,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-next::before {
  content: '';
  height: 480px;
  width: 50px;
  background-color: white;
  position: absolute;
  top: 0;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-next::after,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-next::after {
  content: url("../assets/slider-next.png");
  z-index: 1;
  color: #000036;
  font-size: 20px !important;
  top: -15px;
  right: 0px;
  position: relative;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-disabled,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-disabled {
  opacity: 1;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-disabled:after,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-button-disabled:after {
  opacity: 0.35;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination {
  bottom: -20px;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: gray !important;
  width: 10px !important;
  height: 10px !important;
}

body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active,
body.page .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

body.single .container .grid .blog-main article > .row .article-content p,
body.single .container .grid .blog-main article > .row .article-content div,
body.page .container .grid .blog-main article > .row .article-content p,
body.page .container .grid .blog-main article > .row .article-content div {
  margin: 15px 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

body.single .container .grid .blog-main article > .row .article-content a,
body.page .container .grid .blog-main article > .row .article-content a {
  color: #0000a9;
  overflow-wrap: anywhere;
}

body.single .container .grid .blog-main article > .row .article-content a:hover,
body.page .container .grid .blog-main article > .row .article-content a:hover {
  text-decoration: underline;
}

body.single .container .grid .blog-main article > .row .article-content figure figcaption,
body.page .container .grid .blog-main article > .row .article-content figure figcaption {
  text-align: center;
}

body.single .container .grid .blog-main article > .row .article-content .wp-block-image,
body.page .container .grid .blog-main article > .row .article-content .wp-block-image {
  margin: 25px 0;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list,
body.page .container .grid .blog-main article > .row .article-content .contact-list {
  margin-top: 50px !important;
  margin-bottom: 0;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list > h2,
body.page .container .grid .blog-main article > .row .article-content .contact-list > h2 {
  color: #000036;
  text-align: center;
  margin-bottom: 40px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search,
body.page .container .grid .blog-main article > .row .article-content .contact-list #search {
  margin-bottom: 50px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form,
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form {
  width: 500px;
  margin: auto;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container,
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container {
  background-color: #f7f7f7;
  border-radius: 50px;
  padding: 0px 10px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container p,
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container p {
  display: inline-block;
  font-size: 0.9rem;
  color: #000036;
  margin-right: 15px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container input[type='text'],
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container input[type='text'] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000036;
  width: 250px;
  margin-right: 15px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container input[type='text']:focus,
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container input[type='text']:focus {
  outline: none;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container button[type='submit'],
body.page .container .grid .blog-main article > .row .article-content .contact-list #search .form #searchbar-container button[type='submit'] {
  background: transparent;
  border: none;
  cursor: pointer;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item {
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
  min-height: 60px;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 0.72fr;
      grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  cursor: default;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left img,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left i,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left i {
  margin-right: 10px;
  font-size: 70px;
  width: 100px;
  text-align: center;
  color: #000036;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .details,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .details {
  display: inline-block;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .details .name,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .details .name {
  color: #000036;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .position,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .left .position {
  margin-top: 9px;
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.2;
  width: 90%;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right {
  margin: 0 !important;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry {
  display: block;
  margin-bottom: 10px;
  color: #000036;
  line-height: 1.4;
  position: relative;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry i,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry i {
  margin-right: 8px;
  display: inline-block;
  position: absolute;
  top: 5px;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry p,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry p {
  display: inline-block;
  padding-left: 27px;
  margin: 0;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry:last-child,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right .entry:last-child {
  margin-bottom: 0;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right a,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right a {
  cursor: pointer;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right a:hover,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .single-item .right a:hover {
  color: #4671b5;
}

body.single .container .grid .blog-main article > .row .article-content .contact-list .results .hide-item,
body.page .container .grid .blog-main article > .row .article-content .contact-list .results .hide-item {
  display: none !important;
}

@media (max-width: 1000px) {
  body.single-municipality .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 30px;
  }
  body.single-municipality .container .row .blog-main {
    margin-left: 0;
  }
}

@media (max-width: 1000px) {
  body.single .article-content #thumbnail .thumbnail-swiper .swiper-container,
  body.page .article-content #thumbnail .thumbnail-swiper .swiper-container {
    width: 100% !important;
    height: 450px !important;
  }
  body.single .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img,
  body.page .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100% !important;
    height: 450px !important;
  }
}

@media (max-width: 680px) {
  body.single .contact-list .form,
  body.page .contact-list .form {
    width: 100% !important;
  }
  body.single .contact-list .form #searchbar-container,
  body.page .contact-list .form #searchbar-container {
    padding: 15px 10px !important;
  }
  body.single .contact-list .form #searchbar-container p,
  body.page .contact-list .form #searchbar-container p {
    display: block !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  body.single .contact-list .form #searchbar-container input[type='search'],
  body.page .contact-list .form #searchbar-container input[type='search'] {
    width: 75% !important;
  }
  body.single .contact-list .results .single-item,
  body.page .contact-list .results .single-item {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

@media (max-width: 850px) {
  body.single .container .grid {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  body.single .container .grid .blog-main article > .row {
    margin: 50px 0;
    max-width: initial;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  body.single .container .grid .blog-main article > .row .article-content {
    font-size: 0.9rem;
  }
  body.single .container .grid .blog-main article > .row .article-content .thumbnail img {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
  }
  body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container {
    height: 300px !important;
  }
  body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img {
    height: 300px !important;
  }
  body.single .container .grid .single-sidebar {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  body.single .container .grid .single-sidebar #sidebar {
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container {
    height: 250px !important;
  }
  body.single .container .grid .blog-main article > .row .article-content #thumbnail .thumbnail-swiper .swiper-container .swiper-wrapper .swiper-slide img {
    height: 250px !important;
  }
}

body.single-municipality .container {
  min-height: 550px;
}

body.single-municipality .container .row {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

body.single-municipality .container .row .blog-main article .entry-header .entry-title {
  text-align: center;
  font-size: 1.85rem;
}

body.single-municipality .container .row .blog-main article > .row {
  margin: 50px 0;
  max-width: initial;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

body.single-municipality .container .row .blog-main article > .row .article-content {
  font-size: 0.9rem;
}

body.single-municipality .container .row .blog-main article > .row .article-content .thumbnail {
  margin-bottom: 30px;
}

body.single-municipality .container .row .blog-main article > .row .article-content .thumbnail img {
  width: 100%;
  height: auto;
}

body.single-municipality .container .row .blog-main article > .row .article-content p {
  margin: 15px 0;
  line-height: 1.5;
}

body.single-municipality .container .row .blog-main article > .row .article-content figure figcaption {
  text-align: center;
}

body.single-municipality .container .row .blog-main article > .row .article-content .wp-block-image {
  margin: 25px 0;
}

@media (max-width: 1000px) {
  body.single-municipality .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 30px;
  }
  body.single-municipality .container .row .blog-main {
    margin-left: 0;
  }
}

body.archive .site-main {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

body.archive .site-main .page-header {
  text-align: center;
  margin-bottom: 30px;
}

body.archive .site-main .page-header .page-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

body.archive .site-main .single-item {
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}

body.archive .site-main .single-item h2 {
  font-size: 1.2rem;
  line-height: 1.4;
}

body.archive .site-main .single-item .meta {
  margin-top: 15px;
  font-size: 1rem;
}

body.archive .site-main .single-item .meta .excerpt {
  display: inline-block;
  font-size: 0.9em;
  color: #949494;
  width: 80%;
  line-height: 1.4;
}

body.archive .site-main .single-item .meta .read-more {
  display: inline-block;
  font-size: 0.8em;
  color: #000036;
  width: 19%;
  text-align: right;
}

body.archive .site-main .single-item:hover {
  border: 1px solid #4671b5;
}

@media (max-width: 1200px) {
  body.archive .site-main .single-item {
    padding: 20px;
  }
  body.archive .site-main .single-item .meta .excerpt {
    width: 100%;
  }
  body.archive .site-main .single-item .meta .read-more {
    width: 100%;
    margin-top: 20px;
  }
}

body.page-template-archive-posts #primary {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
}

body.page-template-archive-posts #primary .site-content .page-header {
  text-align: center;
  margin-bottom: 30px;
}

body.page-template-archive-posts #primary .site-content .page-header .page-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

body.page-template-archive-posts #primary .site-content .page-header .page-content {
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 20px;
}

body.page-template-archive-posts #primary .site-content .single-item {
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}

body.page-template-archive-posts #primary .site-content .single-item .entry-header h1 {
  font-size: 1.2rem;
  line-height: 1.4;
}

body.page-template-archive-posts #primary .site-content .single-item .entry-content .meta {
  margin-top: 15px;
  font-size: 1rem;
}

body.page-template-archive-posts #primary .site-content .single-item .entry-content .meta .excerpt {
  display: inline-block;
  font-size: 0.9em;
  color: #949494;
  width: 80%;
  line-height: 1.4;
}

body.page-template-archive-posts #primary .site-content .single-item .entry-content .meta .read-more {
  display: inline-block;
  font-size: 0.8em;
  color: #000036;
  width: 19%;
  text-align: right;
}

body.page-template-archive-posts #primary .site-content .single-item:hover {
  border: 1px solid #4671b5;
}

@media (max-width: 1200px) {
  body.page-template-archive-posts .site-content .single-item {
    padding: 20px;
  }
  body.page-template-archive-posts .site-content .single-item .entry-content .meta .excerpt {
    width: 100% !important;
  }
  body.page-template-archive-posts .site-content .single-item .entry-content .meta .read-more {
    width: 100% !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 850px) {
  body.page-template-archive-posts #primary {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  body.page-template-archive-posts #primary #sidebar {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 auto;
  }
}

body.post-type-archive-mec-events section.mec-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

body.post-type-archive-mec-events section.mec-container h1 {
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-search-form {
  display: none;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-previous-month,
body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-next-month {
  background-color: #3366ff;
  color: white;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-previous-month i,
body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-next-month i {
  color: white;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-calendar-table .mec-selected-day,
body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-calendar-table .mec-has-event:hover,
body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-side .mec-calendar-table .mec-has-event:after {
  background: #3366ff;
  background-color: #3366ff;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-color {
  border-color: #3366ff;
  color: #3366ff;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article {
  padding: 25px 15px;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-color {
  color: #000036;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-title .mec-color-hover:hover {
  color: #3366ff;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-title .event-color {
  display: none;
}

body.post-type-archive-mec-events section.mec-container .mec-wrap .mec-calendar .mec-calendar-events-side .mec-calendar-events-sec .mec-event-article .mec-event-image img {
  width: 100%;
  height: 100%;
}

body.post-type-archive-mec-events section.mec-container .cta {
  text-align: center;
  margin: 50px 0;
}

body.post-type-archive-mec-events section.mec-container .cta a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #000036;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}

body.post-type-archive-mec-events section.mec-container .cta a:hover {
  -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

body.single-mec-events .event-wrapper .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta {
  font-size: 0.8rem;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta > div {
  padding: 16px 14px;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta i {
  position: relative;
  top: -2px;
  margin-right: 5px;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta i:before {
  font-size: 16px;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta i.mec-sl-home {
  top: 0;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta h3 {
  display: inline-block;
  color: #000036;
}

body.single-mec-events .event-wrapper .grid #sidebar .meta .sidebar-meta .mec-event-meta dd {
  margin-top: 10px;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social {
  margin-top: 30px;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-frontbox-title {
  text-align: center;
  font-weight: 500;
  padding: 0 15px;
  line-height: 1.3;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul {
  text-align: center;
  margin-top: 15px;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul li {
  display: inline-block;
  margin-right: 10px;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul li i {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul li i:before {
  font-size: 20px;
  color: #000036;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul li i:hover:before {
  color: #4671b5;
}

body.single-mec-events .event-wrapper .grid #sidebar .mec-event-social .mec-links-details ul li:last-of-type {
  margin-right: 0;
}

body.single-mec-events .event-wrapper .grid .content .page-header {
  text-align: center;
  margin-bottom: 30px;
}

body.single-mec-events .event-wrapper .grid .content .page-header .page-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

body.single-mec-events .event-wrapper .grid .content .thumbnail {
  margin-bottom: 30px;
}

body.single-mec-events .event-wrapper .grid .content .thumbnail img {
  width: 100%;
  height: auto;
}

body.single-mec-events .event-wrapper .grid .content .description {
  color: #757575;
  line-height: 1.8;
}

body.single-mec-events .event-wrapper .grid .content .description * {
  margin: 15px 0;
}

body.single-mec-events .event-wrapper .grid .content iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 900px) {
  body.single-mec-events .event-wrapper .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body.single-mec-events .event-wrapper .grid #sidebar {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 auto;
  }
}

body.category .page-meta a {
  color: #0000a9;
  overflow-wrap: anywhere;
}

body.category .page-meta a:hover {
  text-decoration: underline;
}

body.category .page-meta p {
  line-height: 2;
}

body.category .page-meta {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

body.category .page-meta img {
  max-width: 100%;
  height: auto;
}

body.category .page-meta .biography-table {
  margin-top: 30px;
}

body.category .page-meta .biography-table td {
  border-color: #bababa;
}

body.category .page-meta .biography-table img {
  width: 100%;
  height: auto;
}

body.category #primary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
  margin-bottom: 60px;
}

body.category #primary .site-content {
  margin-top: 50px;
  margin-bottom: 50px;
}

body.category #primary .site-content ul,
body.category #primary .site-content ol {
  list-style: disc;
  padding: 20px;
}

body.category #primary .site-content ul li,
body.category #primary .site-content ol li {
  margin-bottom: 15px;
  line-height: 1.7;
}

body.category #primary .site-content .page-header {
  text-align: center;
  margin-bottom: 30px;
}

body.category #primary .site-content .page-header .page-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

body.category #primary .site-content .single-item {
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}

body.category #primary .site-content .single-item .entry-header h1 {
  font-size: 1.2rem;
  line-height: 1.4;
}

body.category #primary .site-content .single-item .entry-header small {
  display: block;
  margin-bottom: 10px;
}

body.category #primary .site-content .single-item .entry-header small i {
  margin-right: 5px;
  color: #000036;
}

body.category #primary .site-content .single-item .entry-content .meta {
  margin-top: 15px;
  font-size: 1rem;
}

body.category #primary .site-content .single-item .entry-content .meta .excerpt {
  display: inline-block;
  font-size: 0.9em;
  color: #949494;
  width: 80%;
  line-height: 1.4;
}

body.category #primary .site-content .single-item .entry-content .meta .read-more {
  display: inline-block;
  font-size: 0.8em;
  color: #000036;
  width: 19%;
  text-align: right;
}

body.category #primary .site-content .single-item:hover {
  border: 1px solid #4671b5;
}

@media (max-width: 1200px) {
  body.category .site-content .single-item {
    padding: 20px;
  }
  body.category .site-content .single-item .entry-content .meta .excerpt {
    width: 100% !important;
  }
  body.category .site-content .single-item .entry-content .meta .read-more {
    width: 100% !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 850px) {
  body.category #primary {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  body.category #primary #sidebar {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 auto;
  }
}

body.page-template-template-contact main {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

body.page-template-template-contact main * {
  margin: 20px 0;
  color: #000036;
}

body.page-template-template-contact main h3 {
  font-size: 1.6rem;
}

body.page-template-template-contact main > p {
  line-height: 1.4;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

body.page-template-template-contact main div[role='form'] form {
  width: 50%;
  margin: 0 auto;
  margin-top: 60px;
}

body.page-template-template-contact main div[role='form'] form input {
  outline: none;
  border: none;
  border-bottom: 1px solid #000036;
  height: 40px;
  font-size: 16px;
  width: 100%;
}

body.page-template-template-contact main div[role='form'] form input[type='checkbox'] {
  display: inline-block;
  width: auto;
  position: relative;
  top: 7px;
}

body.page-template-template-contact main div[role='form'] form input[type='checkbox'] ~ span {
  display: inline-block;
  width: 90%;
  margin-left: 20px;
  font-size: 15px;
}

body.page-template-template-contact main div[role='form'] form input[type='submit'] {
  border: none;
  background-color: #000036;
  color: white;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body.page-template-template-contact main div[role='form'] form input[type='submit']:hover {
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
  background-color: #000044;
}

body.page-template-template-contact main div[role='form'] form input[type='submit']:disabled {
  background-color: darkgray;
  cursor: not-allowed;
}

body.page-template-template-contact main div[role='form'] form textarea {
  outline: none;
  border: 1px solid #000036;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  width: 100%;
  padding: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 850px) {
  body.page-template-template-contact main {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  body.page-template-template-contact main > p {
    width: 100%;
    margin-top: 30px;
  }
  body.page-template-template-contact main div[role='form'] form {
    width: 85%;
  }
}

@media (max-width: 500px) {
  body.page-template-template-contact main div[role='form'] form {
    width: 100%;
  }
  body.page-template-template-contact main div[role='form'] form input[type='checkbox'] {
    font-size: 13px;
  }
  body.page-template-template-contact main div[role='form'] form input[type='checkbox'] ~ span {
    width: 85%;
  }
}

body.tax-contact_categories .contacts-page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  gap: 25px;
}

body.tax-contact_categories .contacts-page #sidebar {
  margin-top: 176px;
}

body.tax-contact_categories .contacts-page #sidebar .parent {
  line-height: 1.3;
}

body.tax-contact_categories .contacts-page #sidebar .parent i {
  margin-right: 5px;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li {
  background-color: #e0e0e0;
  padding: 10px;
  text-align: center;
  font-size: 0.8em;
  margin-top: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li .count-wrapper {
  width: 33px;
  height: 27px;
  background-color: darkgray;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li .count-wrapper span {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: white;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-29%);
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li a {
  padding-left: 40px;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li:hover {
  background-color: #000036;
  color: white;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li:hover .count-wrapper {
  background-color: white;
}

body.tax-contact_categories .contacts-page #sidebar .child-ul li:hover .count-wrapper span {
  color: #000036;
}

body.tax-contact_categories .contacts-page .contact-list h1 {
  color: #000036;
  text-align: center;
  margin-bottom: 50px;
}

body.tax-contact_categories .contacts-page .contact-list #search {
  margin-bottom: 50px;
}

body.tax-contact_categories .contacts-page .contact-list #search .form {
  width: 500px;
  margin: auto;
}

body.tax-contact_categories .contacts-page .contact-list #search .form #searchbar-container {
  background-color: #f7f7f7;
  border-radius: 50px;
  padding: 15px 10px;
}

body.tax-contact_categories .contacts-page .contact-list #search .form #searchbar-container p {
  display: inline-block;
  font-size: 0.9rem;
  color: #000036;
  margin-right: 15px;
}

body.tax-contact_categories .contacts-page .contact-list #search .form #searchbar-container input[type='text'] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000036;
  width: 250px;
  margin-right: 15px;
}

body.tax-contact_categories .contacts-page .contact-list #search .form #searchbar-container input[type='text']:focus {
  outline: none;
}

body.tax-contact_categories .contacts-page .contact-list #search .form #searchbar-container button[type='submit'] {
  background: transparent;
  border: none;
  cursor: pointer;
}

body.tax-contact_categories .contacts-page .contact-list .results hr {
  opacity: 0.7;
  margin-bottom: 25px;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item {
  min-height: 60px;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 0.72fr;
      grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  cursor: default;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left i {
  margin-right: 10px;
  font-size: 70px;
  text-align: center;
  color: #000036;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left .details {
  display: inline-block;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left .details .name {
  color: #000036;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .left .position {
  margin-top: 9px;
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.2;
  width: 90%;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right .entry {
  display: block;
  margin-bottom: 10px;
  color: #000036;
  line-height: 1.4;
  position: relative;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right .entry i {
  margin-right: 8px;
  display: inline-block;
  position: absolute;
  top: 5px;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right .entry p {
  display: inline-block;
  padding-left: 27px;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right .entry:last-child {
  margin-bottom: 0;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right a {
  cursor: pointer;
}

body.tax-contact_categories .contacts-page .contact-list .results .single-item .right a:hover {
  color: #4671b5;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item {
  -ms-grid-columns: 1fr 3fr;
      grid-template-columns: 1fr 3fr;
  font-size: 14px;
  gap: 10px;
  padding: 20px;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details i {
  margin-right: 15px;
  font-size: 55px;
  text-align: center;
  color: #000036;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details .name {
  line-height: 1.2;
  margin-bottom: 8px;
  font-size: 1rem;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details .position {
  line-height: 1.3;
  font-size: 0.7rem;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .right .entry p {
  padding-left: 10px;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item a {
  cursor: pointer;
  line-height: 1.3;
}

body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item a:hover {
  color: #4671b5;
}

body.tax-contact_categories .contacts-page .contact-list .results .hide-item {
  display: none !important;
}

@media (max-width: 1200px) {
  body.tax-contact_categories .contacts-page {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  body.tax-contact_categories .contacts-page #sidebar {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 auto;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item {
    -ms-grid-columns: 1fr 0.8fr;
        grid-template-columns: 1fr 0.8fr;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .right {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 680px) {
  body.tax-contact_categories .contacts-page .contact-list .results .single-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 10px;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .single-item .details {
    margin-bottom: 20px;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details {
    margin-bottom: 20px;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .details .position {
    font-size: 14px;
  }
  body.tax-contact_categories .contacts-page .contact-list .results .bottom-list-item .right .entry p {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  body.tax-contact_categories #search .form {
    width: 100% !important;
  }
  body.tax-contact_categories #search .form #searchbar-container p {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  body.tax-contact_categories #search .form #searchbar-container input[type='search'] {
    width: 75%;
  }
  body.tax-contact_categories .contacts-page .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.tax-contact_categories .contacts-page .left img {
    width: 100% !important;
    height: 300px !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
  body.tax-contact_categories .contacts-page .left i {
    margin-right: 10px;
    font-size: 70px;
    text-align: left !important;
    color: #000036;
  }
  body.tax-contact_categories .contacts-page .left .details {
    display: inline-block;
  }
  body.tax-contact_categories .contacts-page .left .details .name {
    color: #000036;
  }
  body.tax-contact_categories .contacts-page .left .position {
    margin-top: 9px;
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.2;
    width: 90%;
  }
}

body.error404 {
  font-size: 16px;
}

body.error404 .page-wrapper {
  height: 50vh;
  margin-top: 80px;
  margin-bottom: 80px;
}

body.error404 .page-wrapper section {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body.error404 .page-wrapper section .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

body.error404 .page-wrapper section .text .inner {
  display: inline-block;
  color: #000036;
}

body.error404 .page-wrapper section .text .inner h1 {
  font-size: 10vw;
  font-weight: 900;
}

body.error404 .page-wrapper section .text .inner h2 {
  font-size: 4vw;
  font-weight: 700;
  text-align: right;
}

@media (min-width: 1950px) {
  body.error404 .page-wrapper section .text .inner h1 {
    font-size: 180px;
  }
  body.error404 .page-wrapper section .text .inner h2 {
    font-size: 80px;
  }
}

@media (max-width: 1200px) {
  body.error404 .page-wrapper section .text .inner h1 {
    font-size: 10em;
  }
  body.error404 .page-wrapper section .text .inner h2 {
    font-size: 3em;
  }
}

@media (max-width: 850px) {
  body.error404 .page-wrapper section .text .inner h1 {
    font-size: 8em;
  }
  body.error404 .page-wrapper section .text .inner h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 500px) {
  body.error404 .page-wrapper section .text .inner h1 {
    font-size: 5em;
  }
  body.error404 .page-wrapper section .text .inner h2 {
    font-size: 1.5em;
  }
}

#search {
  text-align: center;
}

#search form {
  width: 480px;
  margin: auto;
}

#search form #searchbar-container {
  background-color: #f7f7f7;
  border-radius: 50px;
  padding: 15px 10px;
}

#search form #searchbar-container p {
  display: inline-block;
  font-size: 0.9rem;
  color: #000036;
  margin-right: 15px;
}

#search form #searchbar-container input[type='search'] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000036;
  width: 250px;
  margin-right: 15px;
}

#search form #searchbar-container input[type='search']:focus {
  outline: none;
}

#search form #searchbar-container button[type='submit'] {
  background: transparent;
  border: none;
  cursor: pointer;
}

body.search .site-main {
  width: 1140px;
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

body.search .site-main #search-aftermath {
  margin: 30px 0;
  text-align: center;
  line-height: 1.7;
}

body.search .site-main .single-item {
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 20px 30px;
  -webkit-box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}

body.search .site-main .single-item h2 {
  font-size: 1.2rem;
  line-height: 1.4;
}

body.search .site-main .single-item .meta {
  margin-top: 15px;
  font-size: 1rem;
}

body.search .site-main .single-item .meta .excerpt {
  display: inline-block;
  font-size: 0.9em;
  color: #949494;
  width: 80%;
  line-height: 1.4;
}

body.search .site-main .single-item .meta .read-more {
  display: inline-block;
  font-size: 0.8em;
  color: #000036;
  width: 19%;
  text-align: right;
}

body.search .site-main .single-item:hover {
  border: 1px solid #4671b5;
}

body.search .site-main #search-results-pagination .screen-reader-text {
  visibility: hidden;
}

@media (max-width: 1200px) {
  body.search .site-main .single-item {
    padding: 20px;
  }
  body.search .site-main .single-item .meta .excerpt {
    width: 100%;
  }
  body.search .site-main .single-item .meta .read-more {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  body.search .site-main #search form {
    width: 100%;
  }
  body.search .site-main #search form #searchbar-container p {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  body.search .site-main #search form #searchbar-container input[type='search'] {
    width: 75%;
  }
}

body.page-template-template-underconstruction .wrapper {
  width: 100%;
  text-align: center;
  margin: 100px 0;
}

body.page-template-template-underconstruction .wrapper img {
  width: 800px;
}

@media (max-width: 800px) {
  body.page-template-template-underconstruction .wrapper {
    margin: 100px 40px;
    width: auto;
  }
  body.page-template-template-underconstruction .wrapper img {
    width: 100%;
  }
}

section {
  width: 1140px;
  max-width: 90%;
  margin: auto;
}

table td {
  padding: 8px;
  border: 1px solid black;
  line-height: 1.4;
}

.w-100 {
  width: 100%;
}
