/**************************
  Wrappers
**************************/
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.wrapper .wrapper-inner {
  padding-left: 35px;
  padding-right: 35px;
}

.wrapper.full {
  max-width: 100%;
}
.wrapper.full .wrapper-inner {
  padding-left: 35px;
  padding-right: 35px;
}

.wrapper.sidebar {
  display: flex;
  justify-content: space-between;
}
.wrapper.sidebar .wrapper-inner {
  width: calc(100% - 400px);
}
.wrapper.sidebar .wrapper-sidebar {
  width: 350px;
  margin-right: 10px;
}

.gap {
  padding-top: 5rem;
}

.gap-b {
  padding-bottom: 5rem;
}

.no-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/**************************
  Containers, Columns
**************************/
.one-col {
  max-width: 900px;
  margin: 0 auto;
}

.two-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.two-col :first-child {
  -ms-grid-column: 1;
}
.two-col :last-child {
  -ms-grid-column: 2;
}

.three-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.three-col :first-child {
  -ms-grid-column: 1;
}
.three-col :nth-child(2) {
  -ms-grid-column: 2;
}
.three-col :last-child {
  -ms-grid-column: 3;
}

.two-col-grid {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.two-col-grid .col {
  width: 49%;
}

.three-col-grid {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.three-col-grid .col {
  width: 32%;
}

.col.center {
  display: flex;
  justify-content: center;
}

.col.right {
  display: flex;
  justify-content: flex-end;
}

.align-c {
  align-items: center;
}

.align-r {
  text-align: right;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .two-col, .three-col {
    grid-template-columns: 1fr;
  }
}
/**************************
  Hero
**************************/
.hero-large {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0;
}
.hero-large h1 {
  background-color: white;
  padding: 15px 25px;
  display: inline-block;
}

input.search-field {
  border: none;
  padding: 10px 20px;
  height: 50px;
  min-width: 300px;
  font-size: 14px;
  background-color: #efefef;
}

form.search-form {
  background-color: #ffffff;
  padding: 2rem;
  display: inline-block;
}
form.search-form label {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  display: table;
  color: black;
}

button.search-submit {
  border: none;
  font-size: 14px;
  height: 50px;
}

.hero-boxes .col {
  background-color: #f6f6f6;
  padding: 2rem;
}
.hero-boxes .col:nth-child(1) {
  border-top: 10px solid darkred;
}
.hero-boxes .col:nth-child(2) {
  border-top: 10px solid green;
}
.hero-boxes .col:nth-child(3) {
  border-top: 10px solid darkblue;
}
.hero-boxes .col .h3 {
  border-bottom: 1px solid rgb(225, 225, 225);
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 28px;
}
.hero-boxes .col p:last-child {
  margin-bottom: 0;
}

.menu-important-pages {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}
.menu-important-pages a {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(225, 225, 225);
  display: block;
}

@media screen and (max-width: 767px) {
  input.search-field {
    min-width: 200px;
  }
}
/**************************
  2024 New Sitewide
**************************/
.service-boxes {
  margin-top: 3rem;
}
.service-boxes .service-box {
  background-color: #f6f6f6;
  padding: 2rem;
}

.page-list {
  margin-top: 2rem;
}
.page-list .page-list-inner {
  margin-bottom: 1rem;
  background-color: #f6f6f6;
  padding: 20px 25px;
}
.page-list .page-list-inner .post-cat a {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
}
.page-list .page-list-inner h3.post-title {
  font-size: 16px;
  line-height: 24px;
}
.page-list .page-list-inner span.item-date {
  font-size: 12px;
  font-weight: 300;
}

.social-icon img {
  width: 44px;
  height: auto;
}

/**************************
  Sitewide
**************************/
body.logged-in.admin-bar #mainNav {
  margin-top: 32px;
}

#adminmenu div.wp-menu-name {
  padding-right: 5px;
}

.breadcrumb-container > ul > li > a {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.breadcrumb-container ol {
  padding: 0;
}

.breadcrumb-container {
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 5px;
}

.footer-help-notice {
  background-color: #f1f1f1;
  padding: 15px 0;
}
.footer-help-notice p {
  margin: 0;
}
.footer-help-notice p span {
  font-weight: 600;
  margin-right: 10px;
}

@media screen and (max-width: 782px) {
  body.logged-in.admin-bar #mainNav {
    margin-top: 46px;
  }
}
img {
  height: auto;
  max-width: 100%;
}

body {
  font-family: "Lexend", arial, helvetica, sans-serif;
}

h1 {
  font-size: 30px;
  color: #37263c;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 26px;
  color: #37263c;
  line-height: 36px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  color: #37263c;
  line-height: 28px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  color: #37263c;
  line-height: 26px;
  font-weight: 500;
}

h5 {
  font-size: 18px;
  color: #37263c;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 16px;
  color: #212121;
  line-height: 24px;
  font-weight: 300;
}

p > a {
  font-size: 16px;
  color: #212121;
  line-height: 24px;
  font-weight: 300;
}

strong {
  color: #212121;
}

a {
  color: #212121;
  text-decoration: underline;
}

a:hover {
  color: #70467A;
  text-decoration: underline;
}

.btn, button {
  background-color: #70467A;
  padding: 15px 25px;
  color: #ffffff;
  border-radius: 0;
}

.btn:hover, button:hover {
  background-color: #212121;
  padding: 15px 25px;
  color: #fff;
  text-decoration: underline;
}

.btn.light {
  background-color: #ffffff;
  padding: 15px 25px;
  color: #70467A !important;
}

.btn.light:hover {
  background-color: #EDEDED;
  padding: 15px 25px;
  color: #70467A !important;
}

.btn.download {
  background-color: #f6f6f6;
  border-radius: 0;
  color: #38263c;
}

.btn.download:hover {
  background-color: #38263c;
  border-radius: 0px;
  color: #ffffff;
}

.btn.download:after {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f56d";
  padding-left: 10px;
}

a[target=_blank]:after {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f35d";
  padding-left: 10px;
}

.addtoany_content a[target=_blank]:after, footer a[target=_blank]:after {
  display: none;
}

.addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
  background-color: #EDEDED;
  padding: 20px 20px 17px 20px;
  border-radius: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 26px;
    color: #37263c;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 20px;
    color: #37263c;
    line-height: 30px;
    font-weight: 700;
  }
  h3 {
    font-size: 18px;
    color: #37263c;
    line-height: 26px;
    font-weight: 500;
  }
  h4 {
    font-size: 16px;
    color: #37263c;
    line-height: 22px;
    font-weight: 500;
  }
  h5 {
    font-size: 14px;
    color: #37263c;
    line-height: 20px;
    font-weight: 500;
  }
}
/**************************
  Header
**************************/
header {
  border-bottom: 1px solid rgba(112, 70, 122, 0.2);
  padding: 10px 0;
}

header .htc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .htc-navbar .htc-navbar-logo {
  width: 200px;
}

header .htc-navbar .htc-navbar-logo img {
  width: 100%;
}

header .htc-navbar .htc-navbar-nav {
  width: calc(100% - 200px);
}

header .htc-navbar .htc-navbar-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

header .htc-navbar .htc-navbar-nav ul li a {
  text-transform: uppercase;
}

/* Mega Menu */
.mega-menu-intro p {
  margin: 0 !important;
  font-size: 18px;
  font-weight: 600;
  color: #37263c;
  padding-bottom: 5px;
}

.mega-menu-intro .textwidget {
  border-bottom: 1px solid white !important;
}

ul.mega-sub-menu > li a {
  background-color: #f8f8f8 !important;
  color: #37263c !important;
  padding: 10px !important;
  border-radius: 0px !important;
}

ul.mega-sub-menu > .mega-menu-item {
  padding: 5px 5px !important;
}

span.mega-menu-description {
  display: none !important;
}

li#mega-menu-item-text-4 {
  padding: 15px 25px 0 !important;
  display: inline-block;
}

li#mega-menu-45-1 {
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-bottom: 15px !important;
}

.mega-current-menu-item a {
  text-decoration: underline !important;
  font-weight: 600 !important;
}

@media only screen and (min-width: 992px) {
  .sticky-on {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    margin: 0 auto;
    padding: 0;
    transition: all 1s ease;
    box-shadow: 0px 0px 6px 6px rgba(111, 70, 122, 0.2);
  }
  .sticky-on #mega-menu-wrap-main-navigation #mega-menu-main-navigation > li.mega-menu-item > a.mega-menu-link {
    color: #37263c !important;
    font-size: 14px;
  }
  .sticky-on #mega-menu-wrap-main-navigation #mega-menu-main-navigation > li.mega-menu-item > a.mega-menu-link:hover {
    color: #37263c !important;
  }
  .sticky-on .htc-navbar-logo img {
    width: auto !important;
    position: unset !important;
    max-height: 60px;
    max-width: unset !important;
    top: 0 !important;
  }
}
li#mega-menu-item-46 .mega-sub-menu li,
li#mega-menu-item-44 .mega-sub-menu li {
  background-color: #ffffff !important;
}

li#mega-menu-item-46 .mega-sub-menu li a,
li#mega-menu-item-44 .mega-sub-menu li a {
  background: #ffffff !important;
  padding: 5px 10px !important;
  color: #37263c !important;
}
li#mega-menu-item-46 .mega-sub-menu li a:hover,
li#mega-menu-item-44 .mega-sub-menu li a:hover {
  font-weight: 600 !important;
}

#mega-menu-item-45 > ul.mega-sub-menu {
  box-shadow: 0px 10px 10px 1px rgba(111, 70, 122, 0.2) !important;
}

/*** Slide Out Nav ***/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  background-color: #56345f;
  overflow-x: hidden;
  padding-top: 3rem;
  transition: 0.5s;
}

.sidenav a {
  padding: 7px 0;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
  font-weight: 300;
}

.sidenav ul li {
  margin-bottom: 0;
}

.sidenav a:hover {
  color: #ffffff;
}

.sidenav .closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  margin-left: 5rem;
  font-weight: 400;
}

.menu-toggle-cont {
  padding: 10px 15px;
  float: right;
  border: none;
  background-color: #ececec;
}
.menu-toggle-cont:hover {
  background-color: #c2c2c2;
  padding: 15px 20px;
}

.bar1,
.bar2,
.bar3 {
  width: 46px;
  height: 5px;
  border-radius: 0px;
  background-color: #27172b;
  margin: 6px 0;
  transition: 0.4s;
}

.sidenav ul {
  list-style-type: none;
  text-align: left;
  padding: 0 !important;
}
.sidenav ul li {
  padding: 0 1.5rem;
}

.htc-navbar-mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .htc-navbar-mobile {
    display: flex;
    min-height: 80px;
    align-items: center;
  }
  .htc-navbar-nav {
    display: none;
  }
  .top-bar ul li a {
    font-size: 12px !important;
    line-height: 12px !important;
  }
}
@media only screen and (max-width: 767px) {
  .top-bar {
    display: none;
  }
  .htc-navbar .htc-navbar-logo img {
    width: auto !important;
    position: unset !important;
    max-height: 60px;
    max-width: unset !important;
    top: 0 !important;
  }
}
/**************************
  Footer
**************************/
footer {
  background-color: #422649;
  padding: 5rem 0;
}

ul#menu-footer-important li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0901960784);
}
ul#menu-footer-important li a {
  font-size: 14px;
  color: white;
}
ul#menu-footer-important li:last-child {
  border-bottom: none;
}

footer h2.widgettitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

footer img.alignnone.wp-image-52 {
  width: 150px;
}

footer a:hover {
  color: #ffffff !important;
}

footer p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

footer strong {
  font-weight: 700;
  color: #ffffff;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer input {
  border: none;
  background-color: #ffffff;
  padding: 10px 10px;
  width: 100%;
  border-radius: 0px;
  margin-bottom: 10px;
}

footer label {
  margin: 0 0 5px 0;
  color: #ffffff;
}

footer input#cm-privacy-consent {
  display: inline-block;
  width: 25px;
}

footer button {
  border: none;
  background-color: #ffffff;
  color: #70467A;
  border-radius: 5px !important;
}

footer button:hover {
  border: none;
  background-color: #EDEDED;
  color: #70467A;
}

.bottom-bar {
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.4px;
  line-height: 20px;
}

.bottom-bar a {
  color: #FFFFFF;
}

/**************************
  Page
**************************/
.white-banner {
  background-color: #ffffff;
  padding: 5rem 0;
}

.static-banner img {
  width: 100%;
  -o-object-fit: cover;
  -o-object-position: center;
  object-fit: cover;
  object-position: center;
  height: 250px;
}

.main {
  padding: 50px 0;
}

/* Sidebar */
.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar .widget {
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 0px;
  margin-bottom: 20px;
}
.sidebar .widget p#evcal_cur {
  color: black !important;
  font-weight: 300 !important;
  font-family: "Lexend";
}

.sidebar .widget ul > li {
  color: #422649 !important;
  padding: 2px 0 !important;
  display: block !important;
  font-size: 14px !important;
  line-height: 16px !important;
}

.sidebar .widget ul > li > a {
  color: #422649 !important;
  padding: 4px 0 !important;
  display: inline-block !important;
  font-size: 16px;
  line-height: 18px;
}
.sidebar .widget ul > li > a:hover {
  color: #70467A !important;
}

.sidebar .widget .widgettitle,
.sidebar h2.widget-title {
  font-size: 18px;
  line-height: 18px;
  color: #422649;
  border-bottom: 1px solid rgba(66, 38, 73, 0.1215686275);
  text-transform: capitalize;
  font-weight: 400;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.sidebar .widget-flex ul {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
.sidebar .widget-flex ul li a {
  background-color: #70467A;
  padding: 6px 10px !important;
  color: white !important;
  font-weight: 300 !important;
}
.sidebar .widget-flex ul li a:hover {
  background-color: #422649 !important;
  color: white !important;
}

.sidebar .widget .sub-menu > li {
  padding-left: 20px !important;
}

.sidebar .recent-post ul li {
  padding: 5px 0 !important;
}

.sidebar .recent-post ul li a {
  color: #70467A;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
}

.sidebar .recent-post ul li span {
  display: block;
  font-size: 12px;
  line-height: 12px;
}

.sidebar .widget.event {
  background-color: #70467A;
}

.sidebar .widget.event h2.widgettitle {
  color: white !important;
}

.sidebar .widget.event .evo_month_title {
  color: white !important;
}

.sidebar .widget.download {
  background-color: #422649;
}

.sidebar .widget.download .menu > li > a {
  color: #ffffff !important;
}

.sidebar .widget.download .widgettitle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.203);
}

.sidebar .widget .menu > li > a:before,
.sidebar .recent-post ul > li > a:before,
.sidebar .widget .sub-menu > li > a:before {
  content: "> ";
}

.ve-cat-widget-div ul.ve-cat-widget-listing li {
  line-height: 16px !important;
}

.ve-cat-widget-div ul.ve-cat-widget-listing li span.post-count {
  background: transparent !important;
  box-shadow: none !important;
  height: unset !important;
  min-width: unset !important;
  float: unset !important;
  padding-left: 5px !important;
  color: #70467A !important;
}

.ve-cat-widget-div ul.ve-cat-widget-listing li span.post-count:before {
  content: "(" !important;
}

.ve-cat-widget-div ul.ve-cat-widget-listing li span.post-count:after {
  content: ")" !important;
}

/**************************
  Posts - Blog / Agends / Finance
**************************/
.post-container .post {
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 20px;
}
.post-container .post .btn.download {
  background-color: #38263c;
  border-radius: 0;
  color: #f6f6f6;
}
.post-container .post .btn.download:hover {
  background-color: #ffffff;
  color: #38263c;
}

.post-container .post .post-cat a {
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}

.post-container .post .post-title {
  margin: 5px 0 15px;
}

.post-container .post .post-short-des p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 5px;
}

.post-container .post .item-date {
  font-size: 14px;
  line-height: 14px;
}

.post-container .post .read-more-link {
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
}

ul.pager {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

ul.pager > li > a {
  background-color: #70467a;
  padding: 10px 20px;
  color: #fff;
}

ul.pager > li > a:hover {
  background-color: #70467a;
  padding: 10px 20px;
  color: #fff;
}

/* Post Single */
.grey-banner {
  background-color: #ececec;
  padding: 5rem 0;
}

.purple-banner {
  background-color: #70467A;
  padding: 5rem 0;
}

.purple-banner h2, .purple-banner h1 {
  color: #ffffff;
}

.purple-banner p {
  color: #ffffff;
}

.purple-banner * {
  color: #ffffff;
}

.purple-banner .post-cat a {
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}

.post-single table {
  width: 100% !important;
}

/**************************
  Forms
**************************/
.form-container {
  border: 2px solid #70467A;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-container .form-group {
  width: 100%;
}

.form-container .form-group input, .form-container .form-group textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #EDEDED;
  padding: 10px;
}

.form-container .form-group label {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #70467A;
  font-weight: 500;
}

.form-container .form-group.half {
  width: 49%;
}

.form-container select:not([multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: 98% 50%;
  background-repeat: no-repeat;
  background-image: url(https://www.halsteadtowncouncil.org.uk/site/wp-content/uploads/2020/02/dropdown.svg);
  background-size: 12px;
  border-radius: 0;
  background-color: transparent;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #EDEDED;
  border: none;
}

.form-container .btn {
  text-transform: uppercase;
  font-weight: 600;
}

.gfield_label {
  font-size: 14px;
  line-height: 14px;
  text-transform: none;
  color: #000000 !important;
  font-weight: 400 !important;
}

.gform-theme--foundation .gfield .ginput_password.large, .gform-theme--foundation .gfield input.large, .gform-theme--foundation .gfield select.large {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 10px;
  box-shadow: none;
  height: 45px;
}

.gform-theme--foundation .gfield textarea {
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 10px;
  box-shadow: none;
}

input#gform_submit_button_1,
input.gform_button.button {
  background-color: #422649 !important;
  padding: 15px 40px !important;
  color: #ffffff !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

div#gform_drag_drop_area_1_6 {
  padding: 20px !important;
}

.gform_wrapper {
  background: #e9e9e9 !important;
  padding: 2rem !important;
}

button#gform_browse_button_1_6 {
  background-color: #422649 !important;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload, .gfield--input-type-fileupload) .gform_drop_area::before {
  color: #422649 !important;
}

.gform-theme--foundation .gform_fields {
  grid-gap: 20px !important;
}

span#gfield_upload_rules_1_6 {
  color: black !important;
  font-weight: 300 !important;
}

.gform_footer {
  margin: 0 !important;
}

/**************************
  Two Col Boxes
**************************/
.two-col-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.two-col-boxes .two-col-box {
  width: 49%;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #f6f6f6;
}

.two-col-boxes .two-col-box .tcb-image img {
  width: 100%;
  -o-object-fit: cover;
  -o-object-position: top center;
  object-fit: cover;
  object-position: top center;
  height: 300px;
}

.two-col-boxes .two-col-box .tcb-content {
  padding: 20px;
}

.two-col-boxes .two-col-box .tcb-content a {
  display: block;
  margin-bottom: 0;
}
.two-col-boxes .two-col-box .tcb-content a h3:hover {
  color: #70467A !important;
}

@media only screen and (max-width: 767px) {
  .two-col-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .two-col-boxes .two-col-box {
    width: 100%;
  }
  .two-col-boxes .two-col-box .tcb-image img {
    width: 100%;
    -o-object-fit: cover;
    -o-object-position: top center;
    object-fit: cover;
    object-position: top center;
    height: 200px;
  }
}
/**************************
  Links & Orgs
**************************/
.page-template-page-template-financial .post-cat {
  font-size: 14px;
  margin-bottom: 15px;
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.links-container.two-col {
  display: grid;
}
.links-container.two-col .link-single {
  margin-bottom: 0;
}

.links-container .link-single {
  width: 100%;
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 20px;
}

.links-container .link-single .widgettitle {
  font-size: 20px;
  line-height: 24px;
  color: #422649;
  border-bottom: 1px solid rgba(66, 38, 73, 0.1294117647);
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.links-container .link-single ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.links-container .link-single ul li {
  color: #422649;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 0;
}

.links-container .link-single ul li:before {
  content: "> ";
}

.org-grid {
  position: relative;
  margin-left: -15px; /* half gutter to align outer edge */
  margin-right: -15px;
}

.grid-sizer,
.grid-item {
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.grid-item {
  margin-bottom: 30px;
}

/* remove right margin on every 3rd item */
.grid-item:nth-child(3n) {
  margin-right: 0;
}

/* Responsive: 2 columns */
@media (max-width: 991px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}

/* Responsive: 1 column */
@media (max-width: 767px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}

/**************************
  Councillors & Council
**************************/
.councillors-container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.councillor-single {
  width: 49%;
  display: flex;
  margin-bottom: 20px;
  background-color: #f6f6f6;
}

.councillor-content {
  padding: 2rem;
}

.councillor-img img {
  width: 100%;
  -o-object-fit: cover;
  -o-object-position: top center;
  object-fit: cover;
  object-position: top center;
  height: 200px;
}

.councillor-img {
  width: 150px;
}

.councillor-content p:last-child {
  margin-bottom: 0;
}

.council-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.council-container .council-single {
  width: 49%;
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 20px;
}

.council-single .more-info-link {
  display: block;
  font-weight: 600;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .councillor-single {
    width: 100%;
    display: flex;
    background-color: #f6f6f6;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .council-single {
    width: 100% !important;
  }
}
/**************************
  Nav Tabs
**************************/
.facility-tabs {
  background-color: #ffffff;
  border-radius: 0px;
}

.tab-content {
  padding: 1rem;
}

.nav-pills {
  border-bottom: 2px solid rgba(56, 38, 60, 0.0745098039);
  padding: 1rem;
}

.nav-pills > li > a {
  background: #EDEDED !important;
  border: none !important;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 14px;
  color: #38263c;
  border-radius: 0 !important;
}

.nav-pills > li {
  margin-right: 5px;
  margin-bottom: 5px;
}

.nav-pills > li:last-child {
  margin-right: 0;
}

.nav-pills .nav-link.active {
  color: #ffffff;
  background-color: #38263c !important;
  font-weight: 600;
}

.ngg-gallery-thumbnail img {
  width: 100%;
}

.ngg-galleryoverview.default-view {
  margin: 0;
}

/**************************
 Events
**************************/
.widget div#evcal_list {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}

.widget div#evcal_list .event {
  padding: 0 !important;
  margin: 0 !important;
}

.ajde_evcal_calendar.bub #evcal_list .eventon_list_event a {
  padding: 10px;
  border-radius: 0;
}

.widget .eventon_events_list .eventon_list_event .evoet_cx {
  margin-bottom: 0 !important;
}

.widget .evcal_cblock .evo_start {
  font-size: 24px;
}

.evo_month_title {
  color: #70467A !important;
  text-transform: capitalize !important;
  font-size: 26px !important;
}

span.evo_start {
  font-family: "Lexend", sans-serif !important;
}

span.evcal_desc2.evcal_event_title {
  font-family: "Lexend", sans-serif !important;
  text-transform: initial !important;
  font-weight: 500 !important;
}

span.evcal_desc.evo_info.hide_eventtopdata {
  font-family: "Lexend", sans-serif !important;
}

span.evo_above_title {
  font-family: "Lexend", sans-serif !important;
}

span.evo_below_title {
  font-family: "Lexend", sans-serif !important;
}

span.evcal_desc_info {
  font-family: "Lexend", sans-serif !important;
}

span.evcal_desc3 {
  font-family: "Lexend", sans-serif !important;
}

.ajde_evcal_calendar .calendar_header .evcal_arrows {
  color: #70467A;
  border-color: #70467A;
  background-color: #ffffff;
}

.ajde_evcal_calendar .calendar_header .evcal_arrows .fa {
  color: #70467A;
}

.event_description .bordb, #evcal_list .bordb, .eventon_events_list .eventon_list_event .event_description, .bordr, #evcal_list, .evo_pop_body .bordb {
  color: #70467A !important;
}

#evcal_list {
  border-right: 1px solid #70467A;
  border-top: 1px solid #70467A;
}

.eventon_events_list .eventon_list_event .evcal_list_a:after, .evcal_list_a:after {
  background-color: #70467A;
}

span.evo_start {
  color: #212121;
}

.ajde_evcal_calendar {
  margin-top: 50px !important;
}

span.evcal_desc_info > em {
  display: block !important;
}

.sidebar .ajde_evcal_calendar {
  margin-top: 20px !important;
}

.sidebar .evo_month_title {
  line-height: 16px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

/**************************
 Jobs
**************************/
.job-item {
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 0px;
  margin-bottom: 20px;
}

/**************************
 Flickity Sliders
**************************/
.outline-slider {
  padding-left: 3rem;
  padding-right: 3rem;
}

.outline-slider .flickity-button-icon {
  fill: #ffffff !important;
}

.outline-slider .post-cat a {
  text-align: left !important;
}

.outline-slider .slider-inner {
  margin-left: 1%;
  margin-right: 1%;
  width: 31%;
}

.outline-slider .slider-inner .slider-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  min-height: 200px;
}

.outline-slider .slider-inner .slider-content h3 a {
  text-align: left;
}

.outline-slider .slider-inner .slider-content a.read-more-link {
  display: block;
  text-align: right;
}

.outline-slider .slider-inner .slider-content a, .outline-slider .slider-inner .slider-content span, .outline-slider .slider-inner .slider-content h3, .outline-slider .slider-inner .slider-content p {
  color: #70467A;
}

.outline-slider ol.flickity-page-dots li {
  background: white !important;
}

.outline-slider .flickity-viewport {
  margin-bottom: 30px !important;
}

.outline-slider ol.flickity-page-dots {
  bottom: -40px !important;
}

.outline-slider button.flickity-button {
  background: none !important;
}

.white-banner .outline-slider .flickity-button-icon {
  fill: #70467A !important;
}

.white-banner .outline-slider .post-cat a {
  text-align: left !important;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}

.white-banner .outline-slider .slider-inner {
  margin-left: 1%;
  margin-right: 1%;
  width: 31%;
}

.white-banner .outline-slider .slider-inner .slider-content {
  background: none;
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 5px;
  min-height: 200px;
}

.white-banner .outline-slider .slider-inner .slider-content h3 a {
  text-align: left;
}

.white-banner .outline-slider .slider-inner .slider-content a.read-more-link {
  display: block;
  text-align: right;
}

.white-banner .outline-slider .slider-inner .slider-content * {
  color: #422649;
}

.white-banner .outline-slider ol.flickity-page-dots li {
  background: #422649 !important;
}

.white-banner .outline-slider .flickity-viewport {
  margin-bottom: 30px !important;
}

.white-banner .outline-slider ol.flickity-page-dots {
  bottom: -40px !important;
}

.white-banner .outline-slider button.flickity-button {
  background: none !important;
}

@media only screen and (max-width: 991px) {
  .slider-inner {
    margin-left: 0% !important;
    margin-right: 0% !important;
    width: 100% !important;
  }
  .slider-content {
    min-height: unset !important;
  }
}
@media (max-width: 767px) {
  .page-template-page-template-councillinks .links-container .link-single {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .outline-slider {
    padding-left: 0;
    padding-right: 0;
  }
  .outline-slider button.flickity-button {
    display: none;
  }
  .councillor-single {
    flex-direction: column;
  }
  .councillor-img {
    width: 100%;
  }
  .councillor-img img {
    object-fit: contain;
  }
}


/*# sourceMappingURL=main.css.map */
